/**
 * Swiper 4.1.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 13, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.swiper-invisible-blank-slide {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px; }

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  background-color: #fff;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  z-index: 10;
  cursor: pointer;
  background-size: 10px auto;
  background-position: center;
  background-repeat: no-repeat; }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
  left: 0;
  right: auto; }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
  right: 0;
  left: auto; }

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-lock {
  display: none; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33); }

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #000; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform; }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform; }

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progressbar {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff; }

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000; }

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000; }

.swiper-pagination-lock {
  display: none; }

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube {
  overflow: visible; }

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0; }

.swiper-container-flip {
  overflow: visible; }

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px; }

.bgcolor-1 {
  background-color: #C7C399; }

.textcolor-1 {
  color: #333333; }

.bgtextcolor-1 {
  background-color: #C7C399;
  color: #333333; }

.bgcolor-2 {
  background-color: #1A2135; }

.textcolor-2 {
  color: #F7F7F7; }

.bgtextcolor-2 {
  background-color: #1A2135;
  color: #F7F7F7; }

.bgcolor-3 {
  background-color: #DBD1E0; }

.textcolor-3 {
  color: #333333; }

.bgtextcolor-3 {
  background-color: #DBD1E0;
  color: #333333; }

.bgcolor-4 {
  background-color: #ede8f0; }

.textcolor-4 {
  color: #333333; }

.bgtextcolor-4 {
  background-color: #ede8f0;
  color: #333333; }

.bgcolor-dark {
  background-color: #333333; }

.textcolor-dark {
  color: #F7F7F7; }

.bgtextcolor-dark {
  background-color: #333333;
  color: #F7F7F7; }

.bgcolor-medium {
  background-color: #cbcbcb; }

.textcolor-medium {
  color: #333333; }

.bgtextcolor-medium {
  background-color: #cbcbcb;
  color: #333333; }

.bgcolor-light {
  background-color: #F7F7F7; }

.textcolor-light {
  color: #333333; }

.bgtextcolor-light {
  background-color: #F7F7F7;
  color: #333333; }

.bgcolor-success {
  background-color: #a8c1ae; }

.textcolor-success {
  color: #F7F7F7; }

.bgtextcolor-success {
  background-color: #a8c1ae;
  color: #F7F7F7; }

.bgcolor-warning {
  background-color: #b6b398; }

.textcolor-warning {
  color: #333333; }

.bgtextcolor-warning {
  background-color: #b6b398;
  color: #333333; }

.bgcolor-danger {
  background-color: #b1978c; }

.textcolor-danger {
  color: #F7F7F7; }

.bgtextcolor-danger {
  background-color: #b1978c;
  color: #F7F7F7; }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0; }

img, video, svg {
  width: 100%;
  height: auto;
  display: block; }

a {
  text-decoration: none;
  color: inherit; }

p {
  margin-bottom: 1.8em; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */ }

input:focus {
  outline: none; }

ul li, ol li {
  list-style: none; }

body {
  background-color: white;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.07em;
  overflow-x: hidden; }

.corset-flexible, .corset {
  width: calc( 100% - 100px);
  max-width: 1500px; }
  @media (max-width: 575.99px) {
    .corset-flexible, .corset {
      width: calc( 100% - 30px); } }

@media (min-width: 1601px) and (max-width: 9999px) {
  .corset-stepped {
    width: 1521px; } }

@media (min-width: 1200px) and (max-width: 1600.99px) {
  .corset-stepped {
    width: 1120px; } }

@media (min-width: 992px) and (max-width: 1199.99px) {
  .corset-stepped {
    width: 912px; } }

@media (min-width: 768px) and (max-width: 991.99px) {
  .corset-stepped {
    width: 688px; } }

@media (min-width: 576px) and (max-width: 767.99px) {
  .corset-stepped {
    width: 496px; } }

@media (min-width: 0px) and (max-width: 575.99px) {
  .corset-stepped {
    width: calc( 100% - 60px); } }

.corset {
  margin: 0 auto;
  position: relative; }

.hide {
  display: none; }

.header {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 333; }
  .header .corset {
    height: 100%; }

body.header-scrolled .header {
  background-color: #F7F7F7; }

.header-corset {
  margin: 0 auto;
  width: calc( 100% - 100px);
  position: relative; }
  @media (max-width: 1344px) {
    .header-corset {
      width: calc( 100% - 0px); } }

.headspacer, .header, .header-corset {
  height: 80px; }

@media (max-width: 1344px) {
  .headspacer, .header, .header-corset {
    height: 50px; } }

.header-logo {
  display: inline-block;
  width: 130px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1); }
  .header-logo img {
    width: 100%;
    height: auto;
    display: block; }
  .header-logo:hover {
    -webkit-transform: translate(0, -50%) scale(0.98);
        -ms-transform: translate(0, -50%) scale(0.98);
            transform: translate(0, -50%) scale(0.98);
    opacity: .8; }

@media (max-width: 1344px) {
  .header-logo {
    width: 100px;
    left: 15px;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%); }
    .header-logo:hover {
      -webkit-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
              transform: translate(0, -50%); } }

.header-menu {
  position: absolute;
  white-space: nowrap;
  right: 250px;
  top: 0;
  white-space: nowrap; }
  @media (max-width: 1344px) {
    .header-menu {
      display: none; } }

.header-menu > ul {
  position: relative;
  white-space: nowrap; }

.header-menu > ul > li {
  display: inline-block;
  position: relative;
  float: left; }

.header-menu > ul > li > a {
  color: #F7F7F7;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: .8rem;
  color: #333333;
  padding: 0 1.1em;
  height: 80px;
  line-height: 80px;
  display: inline-block;
  position: relative; }
  .header-menu > ul > li > a:hover:after {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1); }
  .header-menu > ul > li > a:after {
    content: '';
    position: absolute;
    top: 65%;
    left: 1.1em;
    width: 40%;
    max-width: 30px;
    height: 1px;
    background-color: #1A2135;
    -webkit-transition: all 800ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 800ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 800ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0); }

.header-menu > ul > li.menu-item-has-children:hover > a {
  background-color: #DBD1E0;
  color: #1A2135; }
  .header-menu > ul > li.menu-item-has-children:hover > a:after {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1); }

.header-menu > ul > li.menu-item-has-children:hover > ul.sub-menu {
  display: block; }

.header-menu > ul > li.current-menu-item > a:after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1); }

.header-menu > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  max-width: 300px;
  background: yellow;
  display: none;
  -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
  -webkit-animation: a723234 600ms cubic-bezier(0.19, 1, 0.22, 1);
          animation: a723234 600ms cubic-bezier(0.19, 1, 0.22, 1); }

@-webkit-keyframes a723234 {
  from {
    -webkit-transform: scaleY(0.9);
            transform: scaleY(0.9);
    _opacity: 0; } }

@keyframes a723234 {
  from {
    -webkit-transform: scaleY(0.9);
            transform: scaleY(0.9);
    _opacity: 0; } }

.header-menu > ul > li > ul > li {
  display: block;
  position: relative;
  width: 100%; }

.header-menu > ul > li > ul > li > a {
  padding: 1em 1em;
  display: block;
  width: 100%;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: .8rem;
  background-color: #cfc2d6;
  color: #1A2135;
  padding: 1.2em 2.0em;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis; }
  .header-menu > ul > li > ul > li > a:hover {
    background-color: #c3b3cb;
    color: white; }

.header-menu > ul > li > ul > li.menu-item-has-children > a {
  padding-right: 3em; }
  .header-menu > ul > li > ul > li.menu-item-has-children > a:after {
    content: '';
    height: 6px;
    width: 6px;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    position: absolute;
    top: 21px;
    right: 17px;
    pointer-events: none;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg); }

.header-menu > ul > li > ul > li > ul {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-animation: a752345 600ms cubic-bezier(0.19, 1, 0.22, 1);
          animation: a752345 600ms cubic-bezier(0.19, 1, 0.22, 1); }

@-webkit-keyframes a752345 {
  from {
    -webkit-transform: scaleX(0.9);
            transform: scaleX(0.9);
    _opacity: 0; } }

@keyframes a752345 {
  from {
    -webkit-transform: scaleX(0.9);
            transform: scaleX(0.9);
    _opacity: 0; } }

.header-menu > ul > li > ul > li:hover > ul {
  display: block; }

.header-menu > ul > li > ul > li > ul > li {
  display: block;
  position: relative; }

.header-menu > ul > li > ul > li > ul > li > a {
  padding: 1em 1em;
  display: block;
  width: 100%;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: .8rem;
  background-color: #b7a3c1;
  color: #1A2135;
  padding: 1.2em 2.0em;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis; }
  .header-menu > ul > li > ul > li > ul > li > a:hover {
    background-color: #c3b3cb;
    color: white; }

.burger-btn {
  display: none;
  background-color: rgba(26, 33, 53, 0.1);
  height: 50px;
  width: 50px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 4444;
  padding: 14px;
  padding-top: 17px;
  -webkit-transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1); }
  @media (max-width: 1344px) {
    .burger-btn {
      display: block; } }
  .burger-btn div {
    background-color: #333333;
    height: 2px;
    margin-bottom: 5px;
    -webkit-transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1); }
    .burger-btn div:nth-child(1) {
      -webkit-transform-origin: left center;
          -ms-transform-origin: left center;
              transform-origin: left center; }
    .burger-btn div:nth-child(2) {
      -webkit-transform-origin: center center;
          -ms-transform-origin: center center;
              transform-origin: center center; }
    .burger-btn div:nth-child(3) {
      -webkit-transform-origin: right center;
          -ms-transform-origin: right center;
              transform-origin: right center; }
  .burger-btn:hover div:nth-child(1) {
    -webkit-transform: scaleX(0.6);
        -ms-transform: scaleX(0.6);
            transform: scaleX(0.6); }
  .burger-btn:hover div:nth-child(2) {
    -webkit-transform: scaleX(0.8);
        -ms-transform: scaleX(0.8);
            transform: scaleX(0.8); }
  .burger-btn:hover div:nth-child(3) {
    -webkit-transform: scaleX(0.6);
        -ms-transform: scaleX(0.6);
            transform: scaleX(0.6); }
  .burger-btn:active div:nth-child(1) {
    -webkit-transform: scaleX(0.3);
        -ms-transform: scaleX(0.3);
            transform: scaleX(0.3); }
  .burger-btn:active div:nth-child(2) {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1); }
  .burger-btn:active div:nth-child(3) {
    -webkit-transform: scaleX(0.3);
        -ms-transform: scaleX(0.3);
            transform: scaleX(0.3); }

.overlay-menu-dim {
  background-color: rgba(199, 195, 153, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5555;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1); }

.overlay-menu {
  background-color: black;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  z-index: 6666;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1); }

body.overlay-menu-active .overlay-menu {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  pointer-events: all; }

body.overlay-menu-active .overlay-menu-dim {
  opacity: 1;
  pointer-events: all; }

body.overlay-menu-semi-active .overlay-menu {
  -webkit-transform: translateX(98%);
      -ms-transform: translateX(98%);
          transform: translateX(98%);
  opacity: 1; }

.overlay-menu-closer {
  height: 50px;
  width: 50px;
  position: absolute;
  top: 0;
  left: -50px;
  cursor: pointer;
  -webkit-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 150ms;
  -o-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 150ms;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 150ms;
  background-color: black;
  display: none; }
  .overlay-menu-closer .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 150ms;
    -o-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 150ms;
    transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 150ms; }
  .overlay-menu-closer .inner div {
    height: 2px;
    margin-top: -1px;
    width: 50%;
    left: 25%;
    position: absolute;
    top: 50%;
    pointer-events: none;
    -webkit-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 300ms;
    -o-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 300ms;
    transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 300ms;
    background-color: white; }
    .overlay-menu-closer .inner div:nth-child(1) {
      -webkit-transform: rotate(0deg);
          -ms-transform: rotate(0deg);
              transform: rotate(0deg); }
    .overlay-menu-closer .inner div:nth-child(2) {
      -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
              transform: rotate(90deg); }
  .overlay-menu-closer:hover {
    opacity: .8; }
    .overlay-menu-closer:hover .inner {
      -webkit-transform: rotate(135deg);
          -ms-transform: rotate(135deg);
              transform: rotate(135deg); }
  .overlay-menu-closer:active {
    opacity: .5; }

body.overlay-menu-active .overlay-menu-closer {
  display: block; }

.overlay-menu-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  position: relative; }

.overlay-menu-container::-webkit-scrollbar {
  display: none; }

.overlay-menu-container > li {
  position: relative; }

.overlay-menu-container > li > a {
  color: white;
  text-transform: uppercase;
  padding: 0 0;
  height: 50px;
  line-height: 50px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  font-size: .9rem;
  padding-left: 1.5rem;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 300ms;
  -o-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 300ms;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 300ms; }
  .overlay-menu-container > li > a:hover {
    opacity: .75; }
  .overlay-menu-container > li > a:active {
    opacity: .5; }

.overlay-menu-container > li.current_page_item > a {
  color: #C7C399; }

.overlay-menu-container > li > ul {
  position: relative;
  display: none;
  background-color: rgba(199, 195, 153, 0.05); }

.overlay-menu-container > li > ul.visible {
  display: block; }

.overlay-menu-container > li > ul > li {
  position: relative; }

.overlay-menu-container > li > ul > li > a {
  font-size: .9rem;
  color: white;
  text-transform: uppercase;
  padding: 0 0;
  height: 50px;
  line-height: 50px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  font-size: .75rem;
  padding-left: 2.5rem;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 300ms;
  -o-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 300ms;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 300ms; }
  .overlay-menu-container > li > ul > li > a:hover {
    opacity: .75; }
  .overlay-menu-container > li > ul > li > a:active {
    opacity: .5; }

.overlay-menu-container > li > ul > li.current_page_item > a {
  color: #C7C399; }

.overlay-menu-container > li > ul > li > ul {
  position: relative;
  display: none;
  background-color: rgba(199, 195, 153, 0.05); }

.overlay-menu-container > li > ul > li > ul.visible {
  display: block; }

.overlay-menu-container > li > ul > li > ul > li {
  display: block;
  position: relative; }

.overlay-menu-container > li > ul > li > ul > li > a {
  font-size: .9rem;
  color: white;
  text-transform: uppercase;
  padding: 0 0;
  height: 50px;
  line-height: 50px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  padding-left: 4.0rem;
  font-size: .75rem;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 300ms;
  -o-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 300ms;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 300ms; }
  .overlay-menu-container > li > ul > li > ul > li > a:hover {
    opacity: .75; }
  .overlay-menu-container > li > ul > li > ul > li > a:active {
    opacity: .5; }

.overlay-menu-container > li > ul > li > ul > li.current_page_item > a {
  color: #C7C399; }

.overlay-menu-container .subtoggler {
  height: 50px;
  width: 50px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer; }
  .overlay-menu-container .subtoggler div {
    height: 20%;
    width: 20%;
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
    border-right: 2px solid white;
    border-bottom: 2px solid white; }
  .overlay-menu-container .subtoggler:hover {
    opacity: .7; }
  .overlay-menu-container .subtoggler:active {
    opacity: .5; }

main {
  background-color: white; }

.langswitcher {
  position: absolute;
  top: 0;
  right: 140px;
  height: 80px;
  line-height: 76px;
  margin-right: 30px; }
  .langswitcher a {
    color: #F7F7F7;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-size: .8rem;
    color: #333333;
    -webkit-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
    padding: 0.5em 0.4em; }
    .langswitcher a:hover {
      opacity: .5; }
    .langswitcher a:active {
      opacity: .25; }
    .langswitcher a.current-lang {
      color: #C7C399; }

@media (max-width: 1344px) {
  .langswitcher {
    display: none;
    margin-right: 0;
    height: 50px;
    line-height: 50px;
    right: 180px;
    font-size: .7rem; }
    .langswitcher a {
      padding: 0.5em 0.5em; } }

.bookbtn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #1A2135;
  color: #F7F7F7;
  height: 80px;
  line-height: 80px;
  width: 150px;
  text-align: center;
  font-weight: 400;
  font-size: 0.9rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  -webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer; }
  .bookbtn:hover {
    _opacity: .8;
    background-color: #DBD1E0;
    color: #1A2135; }
  .bookbtn:active {
    opacity: .4; }

body.booking-overlay-active .bookbtn {
  background-color: #DBD1E0;
  color: #1A2135; }

@media (max-width: 1344px) {
  .bookbtn {
    background-color: rgba(219, 209, 224, 0.2);
    color: #1A2135;
    height: 50px;
    line-height: 50px;
    right: 50px;
    width: 100px;
    font-size: .7rem; } }

.booking-overlay {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 148;
  display: none;
  -webkit-animation: a343 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: a343 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top; }

@-webkit-keyframes a343 {
  from {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    opacity: 0; } }

@keyframes a343 {
  from {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    opacity: 0; } }
  .booking-overlay.area-btn-active {
    height: calc( 100vh - 80px); }

body.booking-overlay-active .booking-overlay {
  display: block; }

@media (max-width: 991.99px) {
  .booking-overlay {
    top: 50px; }
    .booking-overlay.area-btn-active {
      height: calc( 100vh - 50px); } }

@media (max-width: 1344px) {
  .booking-overlay {
    top: 50px; } }

.booking-overlay .area-btns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background-color: #d1c5d8; }
  @media (max-width: 991.99px) {
    .booking-overlay .area-btns {
      grid-template-columns: repeat(1, 1fr); } }
  .booking-overlay .area-btns .area-btn {
    background-color: #d1c5d8;
    color: #1A2135;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-weight: 400;
    font-size: 0.9rem;
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    -webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer; }
    @media (max-width: 991.99px) {
      .booking-overlay .area-btns .area-btn {
        height: 52px;
        line-height: 52px;
        font-size: 0.8rem; } }
    .booking-overlay .area-btns .area-btn:hover {
      _opacity: .8;
      background-color: #e5dde8; }
    .booking-overlay .area-btns .area-btn:active {
      opacity: .4; }
    .booking-overlay .area-btns .area-btn.active {
      background-color: #1A2135;
      color: white; }

.booking-overlay .area {
  display: none;
  position: relative;
  text-align: center;
  background-color: #1a2135;
  height: calc( 100vh - 160px); }
  .booking-overlay .area.active {
    display: block; }
  @media (max-width: 991.99px) {
    .booking-overlay .area {
      display: none !important; } }

.booking-overlay .area iframe {
  width: calc( 100% - 200px);
  margin: 0 auto;
  margin-top: 30px;
  height: calc( 100% - 60px);
  border: none;
  position: relative; }

.booking-overlay .area .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  font-size: 2.5rem;
  width: 100px; }
  .booking-overlay .area .loading .inner {
    height: 2px;
    width: 100%;
    background-color: white;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
    -webkit-animation: a23k 2s infinite linear;
            animation: a23k 2s infinite linear; }

@-webkit-keyframes a23k {
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1); } }

@keyframes a23k {
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1); } }

.floating-ornament {
  position: absolute;
  z-index: 55;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-animation: a1212 1500ms cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: a1212 1500ms cubic-bezier(0.215, 0.61, 0.355, 1); }

@-webkit-keyframes a1212 {
  from {
    -webkit-transform: scale(1) translate(-50%, -50%);
            transform: scale(1) translate(-50%, -50%);
    opacity: 0; } }

@keyframes a1212 {
  from {
    -webkit-transform: scale(1) translate(-50%, -50%);
            transform: scale(1) translate(-50%, -50%);
    opacity: 0; } }
  .floating-ornament .inner {
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; }

footer {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #1a1a1a;
  color: white;
  -webkit-box-shadow: 0 200px 0 #1a1a1a, 0 400px 0 #1a1a1a, 0 600px 0 #1a1a1a, 0 800px 0 #1a1a1a, 0 1000px 0 #1a1a1a, 0 1200px 0 #1a1a1a, 0 1400px 0 #1a1a1a;
          box-shadow: 0 200px 0 #1a1a1a, 0 400px 0 #1a1a1a, 0 600px 0 #1a1a1a, 0 800px 0 #1a1a1a, 0 1000px 0 #1a1a1a, 0 1200px 0 #1a1a1a, 0 1400px 0 #1a1a1a;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  -webkit-transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1); }

footer .preendline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1rem;
  margin-bottom: 1rem; }
  @media (max-width: 767.99px) {
    footer .preendline {
      grid-template-columns: 1fr; } }
  @media (max-width: 767.99px) {
    footer .preendline {
      margin-bottom: 0; } }

footer .badges {
  text-align: left;
  margin-bottom: 2rem; }
  @media (max-width: 767.99px) {
    footer .badges {
      text-align: center; } }
  footer .badges a {
    vertical-align: middle;
    display: inline-block;
    width: 2.5rem;
    margin-right: 1rem;
    -webkit-filter: saturate(0);
            filter: saturate(0);
    opacity: .5;
    -webkit-transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1); }
    @media (max-width: 767.99px) {
      footer .badges a {
        margin: .5rem; } }
    footer .badges a img {
      width: 100%;
      height: auto; }
    footer .badges a:hover {
      -webkit-filter: none;
              filter: none;
      opacity: 1; }
    footer .badges a:active {
      opacity: .25; }

footer .socialbtns {
  text-align: right; }
  @media (max-width: 767.99px) {
    footer .socialbtns {
      text-align: center; } }
  footer .socialbtns a {
    display: inline-block;
    width: 2.0rem;
    margin-left: 1rem;
    opacity: .15;
    -webkit-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1); }
    @media (max-width: 767.99px) {
      footer .socialbtns a {
        margin: .5rem; } }
    footer .socialbtns a svg {
      width: 100%;
      height: auto;
      fill: white; }
    footer .socialbtns a:hover {
      opacity: .75; }
    footer .socialbtns a:active {
      opacity: .25; }

.footcols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4rem 1rem;
  margin-bottom: 4rem; }
  @media (max-width: 1199.99px) {
    .footcols {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 767.99px) {
    .footcols {
      grid-template-columns: repeat(1, 1fr); } }

.footcol {
  text-transform: up; }
  .footcol h1, .footcol h2, .footcol h3, .footcol h4 {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: .9em;
    color: white; }
  .footcol a, .footcol p {
    line-height: 1.6; }
  .footcol a {
    margin-bottom: .6em; }
    .footcol a:hover {
      opacity: .5; }
    .footcol a:active {
      opacity: .3; }
  .footcol p {
    margin-bottom: .6em; }

.footer-logo {
  margin: 0 auto;
  margin-bottom: 4rem; }
  .footer-logo img {
    width: auto;
    width: 100%;
    max-width: 250px;
    margin: 0 auto; }

.endline {
  text-align: center;
  margin-top: 6rem;
  font-size: .7em;
  color: rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 100; }
  @media (max-width: 767.99px) {
    .endline {
      margin-top: 2rem; } }
  .endline a:hover {
    color: rgba(255, 255, 255, 0.3); }

.card {
  -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
  margin-bottom: 1.25em;
  background-color: #F7F7F7;
  color: #333333; }

.card-header {
  padding: 1.0rem 1.75rem;
  border-bottom: 1px solid rgba(247, 247, 247, 0.2);
  background-color: #F7F7F7;
  color: #333333;
  -webkit-box-shadow: 0 2px 0 rgba(51, 51, 51, 0.075);
          box-shadow: 0 2px 0 rgba(51, 51, 51, 0.075); }

.card.color-1 > .card-header {
  background-color: #C7C399;
  color: #333333; }

.card.color-body-1 > .card-content {
  background-color: #C7C399;
  color: #333333; }

.card.color-full-1 > .card-header,
.card.color-full-1 > .card-content {
  background-color: #C7C399;
  color: #333333; }

.card.color-2 > .card-header {
  background-color: #1A2135;
  color: #F7F7F7; }

.card.color-body-2 > .card-content {
  background-color: #1A2135;
  color: #F7F7F7; }

.card.color-full-2 > .card-header,
.card.color-full-2 > .card-content {
  background-color: #1A2135;
  color: #F7F7F7; }

.card.color-3 > .card-header {
  background-color: #DBD1E0;
  color: #333333; }

.card.color-body-3 > .card-content {
  background-color: #DBD1E0;
  color: #333333; }

.card.color-full-3 > .card-header,
.card.color-full-3 > .card-content {
  background-color: #DBD1E0;
  color: #333333; }

.card.color-4 > .card-header {
  background-color: #ede8f0;
  color: #333333; }

.card.color-body-4 > .card-content {
  background-color: #ede8f0;
  color: #333333; }

.card.color-full-4 > .card-header,
.card.color-full-4 > .card-content {
  background-color: #ede8f0;
  color: #333333; }

.card.color-dark > .card-header {
  background-color: #333333;
  color: #F7F7F7; }

.card.color-body-dark > .card-content {
  background-color: #333333;
  color: #F7F7F7; }

.card.color-full-dark > .card-header,
.card.color-full-dark > .card-content {
  background-color: #333333;
  color: #F7F7F7; }

.card.color-medium > .card-header {
  background-color: #cbcbcb;
  color: #333333; }

.card.color-body-medium > .card-content {
  background-color: #cbcbcb;
  color: #333333; }

.card.color-full-medium > .card-header,
.card.color-full-medium > .card-content {
  background-color: #cbcbcb;
  color: #333333; }

.card.color-light > .card-header {
  background-color: #F7F7F7;
  color: #333333; }

.card.color-body-light > .card-content {
  background-color: #F7F7F7;
  color: #333333; }

.card.color-full-light > .card-header,
.card.color-full-light > .card-content {
  background-color: #F7F7F7;
  color: #333333; }

.card.color-success > .card-header {
  background-color: #a8c1ae;
  color: #F7F7F7; }

.card.color-body-success > .card-content {
  background-color: #a8c1ae;
  color: #F7F7F7; }

.card.color-full-success > .card-header,
.card.color-full-success > .card-content {
  background-color: #a8c1ae;
  color: #F7F7F7; }

.card.color-warning > .card-header {
  background-color: #b6b398;
  color: #333333; }

.card.color-body-warning > .card-content {
  background-color: #b6b398;
  color: #333333; }

.card.color-full-warning > .card-header,
.card.color-full-warning > .card-content {
  background-color: #b6b398;
  color: #333333; }

.card.color-danger > .card-header {
  background-color: #b1978c;
  color: #F7F7F7; }

.card.color-body-danger > .card-content {
  background-color: #b1978c;
  color: #F7F7F7; }

.card.color-full-danger > .card-header,
.card.color-full-danger > .card-content {
  background-color: #b1978c;
  color: #F7F7F7; }

.card-content {
  padding: 1.75rem; }

.btn-base, .btn1, .btn2, .btn3, .btn4, .btn5, .btn6, .btn7, .btn8 {
  font-family: "Roboto", sans-serif;
  font-size: .9rem;
  text-transform: uppercase;
  padding: .6em 2.7em;
  display: inline-block;
  -webkit-transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: pointer; }

div.btn-base, div.btn1, div.btn2, div.btn3, div.btn4, div.btn5, div.btn6, div.btn7, div.btn8, .btn-base.block, .block.btn1, .block.btn2, .block.btn3, .block.btn4, .block.btn5, .block.btn6, .block.btn7, .block.btn8 {
  display: block;
  text-align: center; }

.btn1 {
  background-color: #1A2135;
  color: #F7F7F7; }
  .btn1:hover {
    opacity: .8; }
  .btn1:active {
    opacity: .5; }

.btn2 {
  background-color: white;
  color: #1A2135;
  opacity: .8; }
  .btn2:hover {
    opacity: 1; }
  .btn2:active {
    opacity: .5; }

.btn3 {
  background-color: #C7C399;
  color: #333333; }
  .btn3:hover {
    opacity: .8; }
  .btn3:active {
    opacity: .5; }

.btn4 {
  background-color: #DBD1E0;
  color: #333333; }
  .btn4:hover {
    opacity: .8; }
  .btn4:active {
    opacity: .5; }

.btn5 {
  border: 2px solid #1A2135;
  color: #1A2135; }
  .btn5:hover {
    background-color: #1A2135;
    color: #F7F7F7; }
  .btn5:active {
    opacity: .6; }

.btn6 {
  border: 2px solid white;
  color: white; }
  .btn6:hover {
    background-color: white;
    color: #1A2135; }
  .btn6:active {
    opacity: .6; }

.btn7 {
  border: 2px solid #C7C399;
  color: #C7C399; }
  .btn7:hover {
    background-color: #C7C399;
    color: #333333; }
  .btn7:active {
    opacity: .6; }

.btn8 {
  border: 2px solid #DBD1E0;
  color: #DBD1E0; }
  .btn8:hover {
    background-color: #DBD1E0;
    color: #333333; }
  .btn8:active {
    opacity: .6; }

.rich-text {
  font-family: "Baskervville", serif;
  font-size: 1.0rem;
  line-height: 1.7em;
  cursor: default; }
  .rich-text h1 {
    font-family: "Roboto", sans-serif;
    font-size: 5.0rem;
    line-height: 1.0em;
    margin-bottom: .45em;
    font-weight: 600;
    word-break: break-word; }
  .rich-text h2 {
    font-family: "Roboto", sans-serif;
    font-size: 3.5rem;
    line-height: 1.0em;
    margin-bottom: .45em;
    font-weight: 600;
    word-break: break-word; }
  .rich-text h3 {
    font-family: "Roboto", sans-serif;
    font-size: 2.3rem;
    line-height: 1.0em;
    margin-bottom: .45em;
    font-weight: 600;
    word-break: break-word; }
  .rich-text h4 {
    font-family: "Roboto", sans-serif;
    font-size: 1.7rem;
    line-height: 1.0em;
    margin-bottom: .45em;
    font-weight: 600;
    word-break: break-word; }
  .rich-text h5 {
    font-family: "Roboto", sans-serif;
    font-size: 1.25rem;
    line-height: 1.0em;
    margin-bottom: .45em;
    font-weight: 600;
    word-break: break-word; }
  .rich-text h6 {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-size: 1.0rem;
    margin-left: .2em;
    line-height: 1.0em;
    margin-bottom: .45em;
    font-weight: 500;
    word-break: break-word; }
  .rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4, .rich-text h5 {
    text-transform: uppercase; }
  .rich-text.custom-color h1, .rich-text.custom-color h2, .rich-text.custom-color h3, .rich-text.custom-color h4, .rich-text.custom-color h5, .rich-text.custom-color h6 {
    color: inherit; }
  @media (max-width: 767.99px) {
    .rich-text h1 {
      font-size: 2.3rem;
      line-height: 1.0em;
      margin-bottom: .3em;
      font-weight: 600;
      word-break: break-word; }
    .rich-text h2 {
      font-size: 2.3rem;
      line-height: 1.0em;
      margin-bottom: .3em;
      font-weight: 600;
      word-break: break-word; } }
  .rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4, .rich-text h5, .rich-text h6, .rich-text p, .rich-text ul, .rich-text li {
    clear: both; }
  .rich-text p {
    margin-bottom: 1.3em;
    max-width: 50em; }
  .rich-text ul, .rich-text ol {
    margin-left: 1.5em;
    margin-bottom: 1.2em; }
    .rich-text ul li, .rich-text ol li {
      list-style: outside; }
  .rich-text p + h1,
  .rich-text p + h2,
  .rich-text p + h3,
  .rich-text p + h4, .rich-text ol + h1,
  .rich-text ol + h2,
  .rich-text ol + h3,
  .rich-text ol + h4, .rich-text ul + h1,
  .rich-text ul + h2,
  .rich-text ul + h3,
  .rich-text ul + h4 {
    margin-top: 0.8em; }
  .rich-text p:last-child, .rich-text ol:last-child, .rich-text ul:last-child, .rich-text h1:last-child, .rich-text h2:last-child, .rich-text h3:last-child {
    margin-bottom: 0; }
  .rich-text b, .rich-text em, .rich-text strong {
    font-family: "Baskervville", serif;
    font-size: 1.0rem;
    line-height: 1.7em;
    font-weight: 900; }
  .rich-text img.size-full {
    width: 100%;
    height: auto;
    display: block;
    float: none;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 2em;
    margin-left: 0; }
  .rich-text img.size-full.alignleft {
    width: 50%;
    height: auto;
    display: block;
    float: left;
    margin-top: 0;
    margin-right: 2em;
    margin-bottom: 2em;
    margin-left: 0; }
  .rich-text img.size-full.aligncenter {
    width: 80%;
    height: auto;
    display: block;
    float: none;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 2em;
    margin-left: auto; }
  .rich-text img.size-full.alignright {
    width: 50%;
    height: auto;
    display: block;
    float: right;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 2em;
    margin-left: 2em; }
  .rich-text img.size-full.alignnone {
    width: 100%;
    height: auto;
    display: block;
    float: none;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 2em;
    margin-left: 0; }
  .rich-text img:not(.size-full) {
    width: auto;
    height: auto;
    display: block;
    float: none;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 2em;
    margin-left: 0; }
  .rich-text img:not(.size-full).alignleft {
    width: auto;
    height: auto;
    display: block;
    float: left;
    margin-top: 0;
    margin-right: 2em;
    margin-bottom: 2em;
    margin-left: 0; }
  .rich-text img:not(.size-full).aligncenter {
    width: auto;
    height: auto;
    display: block;
    float: none;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 2em;
    margin-left: auto; }
  .rich-text img:not(.size-full).alignright {
    width: auto;
    height: auto;
    display: block;
    float: right;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 2em;
    margin-left: 2em; }
  .rich-text img:not(.size-full).alignnone {
    width: 100%;
    height: auto;
    display: block;
    float: none;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 2em;
    margin-left: 0; }
  .rich-text h1.extra-margin-bottom {
    margin-bottom: 1.2em; }
  .rich-text h2.extra-margin-bottom {
    margin-bottom: 1.2em; }
  .rich-text h3.extra-margin-bottom {
    margin-bottom: 1.2em; }
  .rich-text p.extra-margin-bottom {
    margin-bottom: 1.4em; }
  .rich-text table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 4em; }
    .rich-text table th, .rich-text table td {
      padding: 1em 1em;
      text-align: center; }
      .rich-text table th:first-child, .rich-text table td:first-child {
        text-align: left; }
    .rich-text table thead th {
      font-weight: 300;
      color: #333333;
      padding-bottom: .5rem; }
    .rich-text table tbody tr td {
      padding: 1em 1em;
      border: 1px solid #1A2135; }

.block-text {
  background-position: center;
  background-size: cover; }
  .block-text .cols {
    display: grid; }
  .block-text.cols-1 .cols {
    grid-template-columns: repeat(1, 1fr);
    gap: 0; }
  .block-text.cols-2 .cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 6rem; }
  .block-text.cols-3 .cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 7rem; }
  .block-text.cols-4 .cols {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 8rem; }
  @media (max-width: 767.99px) {
    .block-text.cols-1 .cols {
      grid-template-columns: 1fr;
      gap: 0; }
    .block-text.cols-2 .cols {
      grid-template-columns: 1fr;
      gap: 3rem 0; }
    .block-text.cols-3 .cols {
      grid-template-columns: 1fr;
      gap: 3rem 0; }
    .block-text.cols-4 .cols {
      grid-template-columns: 1fr;
      gap: 3rem 0; } }

.block-hero {
  position: relative;
  overflow: hidden;
  width: calc( 100% - 100px);
  margin-left: 50px;
  margin-bottom: 3rem; }
  @media (max-width: 767.99px) {
    .block-hero {
      width: calc( 100% - 20px);
      margin-left: 10px; } }
  .block-hero.size-large {
    height: calc( 100vh - 80px); }
  .block-hero.size-medium {
    height: calc( 50vw - 80px);
    min-height: 550px; }
  .block-hero.size-small {
    height: calc( 30vw - 80px);
    min-height: 550px; }
  @media (max-width: 767.99px) {
    .block-hero.size-large {
      height: calc( 100vh - 20px); }
    .block-hero.size-medium {
      height: calc( 70vh - 20px); }
    .block-hero.size-small {
      height: calc( 70vh - 20px); } }

.block-hero .bgs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc( 100% - 50px);
  background-color: #1A2135;
  z-index: 44; }
  .block-hero .bgs .hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .block-hero .bgs .hero-bg-slider .swiper-slide {
      height: 100%; }
      .block-hero .bgs .hero-bg-slider .swiper-slide .bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      .block-hero .bgs .hero-bg-slider .swiper-slide .bg.bg-img {
        background-position: center;
        background-size: cover;
        opacity: 0;
        -webkit-transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
        -o-transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: opacity 250ms cubic-bezier(0.215, 0.61, 0.355, 1); }
        .block-hero .bgs .hero-bg-slider .swiper-slide .bg.bg-img.loaded {
          opacity: 1; }
      .block-hero .bgs .hero-bg-slider .swiper-slide .bg.bg-video video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }

.block-hero.no-slider .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0) !important;
          transform: translate3d(0px, 0, 0) !important; }

.block-hero.no-slider .swiper-pagination {
  display: none; }

.block-hero .bgs .swiper-pagination {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 23px;
  text-align: center; }
  .block-hero .bgs .swiper-pagination .swiper-pagination-bullet {
    background-color: transparent;
    border: 1px solid white;
    height: 14px;
    width: 14px;
    border-radius: 99px;
    opacity: 1;
    -webkit-transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1); }
  .block-hero .bgs .swiper-pagination .swiper-pagination-bullet-active {
    background-color: white;
    width: 24px; }

.block-hero .contentwrapper {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 45;
  width: 100%; }

.block-hero .pre-headline {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.0rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: .2em;
  text-align: center;
  padding: 0 2rem;
  max-width: 1000px;
  margin: 0 auto; }

.block-hero .headliner.no-fx {
  z-index: 44;
  display: none; }

.block-hero .headliner.has-fx {
  position: relative;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  color: white;
  font-size: 6vw;
  height: 10vw;
  line-height: 10vw;
  font-weight: 900;
  letter-spacing: 0.2em;
  white-space: nowrap;
  overflow: hidden;
  width: 100%; }
  @media (max-width: 991.99px) {
    .block-hero .headliner.has-fx {
      font-size: 9vw;
      height: 16vw;
      line-height: 16vw; } }
  @media (max-width: 767.99px) {
    .block-hero .headliner.has-fx {
      font-size: 12vw;
      height: 20vw;
      line-height: 20vw; } }
  .block-hero .headliner.has-fx .outlined, .block-hero .headliner.has-fx .filled {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden; }
    .block-hero .headliner.has-fx .outlined .inner, .block-hero .headliner.has-fx .filled .inner {
      position: absolute;
      left: 50%;
      top: 0;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      text-align: center;
      -webkit-animation: a3434 30s infinite linear;
              animation: a3434 30s infinite linear; }

@-webkit-keyframes a3434 {
  from {
    -webkit-transform: translateX(-33.333%);
            transform: translateX(-33.333%); }
  to {
    -webkit-transform: translateX(-66.666%);
            transform: translateX(-66.666%); } }

@keyframes a3434 {
  from {
    -webkit-transform: translateX(-33.333%);
            transform: translateX(-33.333%); }
  to {
    -webkit-transform: translateX(-66.666%);
            transform: translateX(-66.666%); } }
    .block-hero .headliner.has-fx .outlined .inner span, .block-hero .headliner.has-fx .filled .inner span {
      margin: 0 .25em; }
  .block-hero .headliner.has-fx .outlined {
    -webkit-text-fill-color: transparent;
    /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white; }
  .block-hero .headliner.has-fx .filled {
    width: 50%;
    left: 25%; }
    @media (max-width: 991.99px) {
      .block-hero .headliner.has-fx .filled {
        width: 70%;
        left: 15%; } }

.block-hero .content {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  padding: 0 2rem;
  max-width: 1000px;
  margin: 0 auto; }

.block-hero .content .btn1, .block-hero .content .btn2, .block-hero .content .btn3, .block-hero .content .btn4, .block-hero .content .btn5, .block-hero .content .btn6 {
  margin-bottom: .8rem; }

.block-hero .fixlot {
  position: absolute;
  z-index: 47; }
  .block-hero .fixlot.s-inside, .block-hero .fixlot.s-outside {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); }
  .block-hero .fixlot.sw-outside, .block-hero .fixlot.s-outside, .block-hero .fixlot.se-outside {
    bottom: 8px; }
  .block-hero .fixlot.sw-outside {
    left: -12px; }
  .block-hero .fixlot.se-outside {
    right: -12px; }
  .block-hero .fixlot.sw-outside-v, .block-hero .fixlot.se-outside-v {
    bottom: 37px; }
  .block-hero .fixlot.sw-outside-v {
    left: -25px; }
  .block-hero .fixlot.se-outside-v {
    right: -25px; }
  .block-hero .fixlot.sw-inside, .block-hero .fixlot.s-inside, .block-hero .fixlot.se-inside, .block-hero .fixlot.sw-inside-v, .block-hero .fixlot.se-inside-v {
    bottom: 75px; }
  .block-hero .fixlot.sw-inside {
    left: 25px; }
  .block-hero .fixlot.se-inside {
    right: 25px; }
  .block-hero .fixlot.sw-outside-v {
    -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-90deg) translateY(50%);
        -ms-transform: rotate(-90deg) translateY(50%);
            transform: rotate(-90deg) translateY(50%); }
  .block-hero .fixlot.se-outside-v {
    -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg) translateY(50%);
        -ms-transform: rotate(90deg) translateY(50%);
            transform: rotate(90deg) translateY(50%); }
  .block-hero .fixlot.sw-inside-v {
    left: 25px; }
  .block-hero .fixlot.se-inside-v {
    right: 25px; }
  .block-hero .fixlot.sw-inside-v {
    -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-90deg) translateY(100%);
        -ms-transform: rotate(-90deg) translateY(100%);
            transform: rotate(-90deg) translateY(100%); }
  .block-hero .fixlot.se-inside-v {
    -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg) translateY(100%);
        -ms-transform: rotate(90deg) translateY(100%);
            transform: rotate(90deg) translateY(100%); }

.block-hero .fixlot {
  text-transform: uppercase; }
  .block-hero .fixlot a, .block-hero .fixlot .link, .block-hero .fixlot .line {
    line-height: 1;
    letter-spacing: .15em;
    font-family: "Roboto", sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    padding: 1.0em 1.0em;
    display: inline-block;
    -webkit-transition: all 300ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 300ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 300ms cubic-bezier(0.19, 1, 0.22, 1); }
    .block-hero .fixlot a:hover, .block-hero .fixlot .link:hover, .block-hero .fixlot .line:hover {
      opacity: .5; }
    .block-hero .fixlot a:active, .block-hero .fixlot .link:active, .block-hero .fixlot .line:active {
      opacity: .25; }
    .block-hero .fixlot a.line, .block-hero .fixlot .link.line, .block-hero .fixlot .line.line {
      pointer-events: none; }

.block-hero .fixlot.s-inside, .block-hero .fixlot.sw-inside-v, .block-hero .fixlot.sw-inside, .block-hero .fixlot.se-inside-v, .block-hero .fixlot.se-inside {
  color: white; }

.block-hero .fixlot.sw-outside-v, .block-hero .fixlot.sw-outside, .block-hero .fixlot.se-outside-v, .block-hero .fixlot.s-outside, .block-hero .fixlot.se-outside {
  color: black; }

@media (max-width: 767.99px) {
  .block-hero .fixlot {
    display: none; } }

.block-text-image .cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 8rem; }
  @media (max-width: 1600.99px) {
    .block-text-image .cols {
      grid-template-columns: 1fr 1fr;
      gap: 0 5rem; } }
  @media (max-width: 1199.99px) {
    .block-text-image .cols {
      grid-template-columns: 1fr 1fr;
      gap: 0 3rem; } }
  @media (max-width: 991.99px) {
    .block-text-image .cols {
      grid-template-columns: 1fr;
      gap: 2rem 0; } }
  .block-text-image .cols .col {
    -ms-flex-item-align: center;
        align-self: center; }

.block-text-image.image_right .cols .col:nth-child(2) {
  grid-row: 1; }

.block-image-image .imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem 10rem;
  padding: 10rem 0; }

.block-image-image .img {
  height: 0;
  padding-top: 150%;
  position: relative; }

.block-image-image .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1); }
  .block-image-image .bg .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover; }

.block-image-image .linker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.block-instas h4 {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: 1.8rem;
  margin-bottom: .3em; }

.block-instas a.sub {
  margin-bottom: 3.3rem;
  display: inline-block; }

.block-instas .swiper-button-prev, .block-instas .swiper-button-next {
  background-image: none !important;
  color: #1A2135;
  -webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1); }
  .block-instas .swiper-button-prev:before, .block-instas .swiper-button-prev:after, .block-instas .swiper-button-next:before, .block-instas .swiper-button-next:after {
    font-size: 20px;
    border: none; }
  .block-instas .swiper-button-prev:hover, .block-instas .swiper-button-next:hover {
    -webkit-transform: scale(1.25);
        -ms-transform: scale(1.25);
            transform: scale(1.25); }
  .block-instas .swiper-button-prev:active, .block-instas .swiper-button-next:active {
    opacity: .4;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8); }

.block-instas .insta {
  height: 0;
  padding-top: 100%;
  background-color: #222;
  display: block;
  position: relative; }
  .block-instas .insta .item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden; }
    .block-instas .insta .item-img .inner {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      display: block;
      -webkit-transition: all 1000ms cubic-bezier(0.215, 0.61, 0.355, 1);
      -o-transition: all 1000ms cubic-bezier(0.215, 0.61, 0.355, 1);
      transition: all 1000ms cubic-bezier(0.215, 0.61, 0.355, 1); }
    .block-instas .insta .item-img .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #C7C399;
      display: block;
      -webkit-transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
      -o-transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
      transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
      -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
              transform: scaleX(0);
      -webkit-transform-origin: bottom left;
          -ms-transform-origin: bottom left;
              transform-origin: bottom left; }
  .block-instas .insta svg {
    width: 30px;
    height: auto;
    position: absolute;
    top: 30px;
    right: 30px;
    fill: white;
    -webkit-transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1); }
  .block-instas .insta:hover .item-img .inner {
    -webkit-transform: scale(1.1) !important;
        -ms-transform: scale(1.1) !important;
            transform: scale(1.1) !important; }
  .block-instas .insta:hover svg {
    -webkit-transform: scale(1.2) !important;
        -ms-transform: scale(1.2) !important;
            transform: scale(1.2) !important; }

.block-instas.notinview .inner .overlay {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1); }

.block-images .images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 1199.99px) {
    .block-images .images {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 767.99px) {
    .block-images .images {
      grid-template-columns: 1fr; } }

.block-images .image {
  position: relative; }
  .block-images .image .imgholder {
    position: relative;
    overflow: hidden; }
  .block-images .image img {
    -webkit-transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1); }
  .block-images .image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1); }
    .block-images .image .overlay.n {
      -webkit-transform-origin: center top;
          -ms-transform-origin: center top;
              transform-origin: center top;
      -webkit-transform: scaleY(0);
          -ms-transform: scaleY(0);
              transform: scaleY(0); }
    .block-images .image .overlay.s {
      -webkit-transform-origin: center bottom;
          -ms-transform-origin: center bottom;
              transform-origin: center bottom;
      -webkit-transform: scaleY(0);
          -ms-transform: scaleY(0);
              transform: scaleY(0); }
    .block-images .image .overlay.w {
      -webkit-transform-origin: left center;
          -ms-transform-origin: left center;
              transform-origin: left center;
      -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
              transform: scaleX(0); }
    .block-images .image .overlay.e {
      -webkit-transform-origin: right center;
          -ms-transform-origin: right center;
              transform-origin: right center;
      -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
              transform: scaleX(0); }
    .block-images .image .overlay.color-1 {
      background-color: #C7C399; }
    .block-images .image .overlay.color-2 {
      background-color: #1A2135; }
    .block-images .image .overlay.color-3 {
      background-color: #DBD1E0; }
    .block-images .image .overlay.color-4 {
      background-color: white; }

.block-images .image.notinview .imgholder img {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2); }

.block-images .image.notinview .overlay.n {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1); }

.block-images .image.notinview .overlay.s {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1); }

.block-images .image.notinview .overlay.w {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1); }

.block-images .image.notinview .overlay.e {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1); }

.block-imageillu {
  position: relative; }

.block-imageillu .image {
  position: relative; }

.block-imageillu .imgholder {
  position: relative; }

.block-imageillu .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #C7C399;
  display: block;
  -webkit-transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1); }
  .block-imageillu .overlay.n {
    -webkit-transform-origin: center top;
        -ms-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
            transform: scaleY(0); }
  .block-imageillu .overlay.s {
    -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
            transform: scaleY(0); }
  .block-imageillu .overlay.w {
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0); }
  .block-imageillu .overlay.e {
    -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
            transform-origin: right center;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0); }

.block-imageillu .notinview .image .overlay.n {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1); }

.block-imageillu .notinview .image .overlay.s {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1); }

.block-imageillu .notinview .image .overlay.w {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1); }

.block-imageillu .notinview .image .overlay.e {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1); }

.block-imageillu .castle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  fill: transparent;
  stroke-width: 0.70;
  stroke-width: 1.00;
  stroke: white; }

.block-spacer {
  height: 5rem;
  padding: 0; }

.block-expandable.type-tabs .tabs {
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.block-expandable.type-tabs .tab {
  cursor: pointer;
  color: black;
  border-bottom: 2px solid black;
  padding-top: 1.0em;
  padding-bottom: .5em;
  -webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1); }
  .block-expandable.type-tabs .tab .item-title {
    font-weight: 600;
    font-size: 1.3em;
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    -webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1); }
  .block-expandable.type-tabs .tab .item-subtitle {
    margin-top: .3em;
    -webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1); }
  .block-expandable.type-tabs .tab .item-img {
    width: 200px;
    height: auto;
    margin-bottom: 1.2em;
    float: left; }
  .block-expandable.type-tabs .tab:hover {
    opacity: .8; }
  .block-expandable.type-tabs .tab:active {
    opacity: .6; }

.block-expandable.type-tabs.bg-white .tab {
  color: rgba(26, 33, 53, 0.2);
  border-bottom: 2px solid rgba(26, 33, 53, 0.2); }

.block-expandable.type-tabs.bg-white .tab.is-active {
  color: #1A2135;
  border-bottom: 2px solid #1A2135; }

.block-expandable.type-tabs.bg-dark .tab {
  color: rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2); }

.block-expandable.type-tabs.bg-dark .tab.is-active {
  color: white;
  border-bottom: 2px solid white; }

.block-expandable.type-tabs.bg-marine .tab {
  color: rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2); }

.block-expandable.type-tabs.bg-marine .tab.is-active {
  color: white;
  border-bottom: 2px solid white; }

.block-expandable.type-tabs.bg-rose .tab {
  color: rgba(26, 33, 53, 0.2);
  border-bottom: 2px solid rgba(26, 33, 53, 0.2); }

.block-expandable.type-tabs.bg-rose .tab.is-active {
  color: #1A2135;
  border-bottom: 2px solid #1A2135; }

.block-expandable.type-tabs.bg-champagne .tab {
  color: rgba(26, 33, 53, 0.2);
  border-bottom: 2px solid rgba(26, 33, 53, 0.2); }

.block-expandable.type-tabs.bg-champagne .tab.is-active {
  color: #1A2135;
  border-bottom: 2px solid #1A2135; }

.block-expandable.type-tabs .tab.is-active {
  color: #333333;
  border-bottom: 2px solid #333333; }
  .block-expandable.type-tabs .tab.is-active:hover {
    opacity: .8; }
  .block-expandable.type-tabs .tab.is-active:active {
    opacity: .6; }

.block-expandable.type-tabs .items .item {
  display: none; }

.block-expandable.type-tabs .items .item.is-active {
  display: block; }

.block-expandable.type-accordian .item {
  border-bottom: 1px solid rgba(51, 51, 51, 0.3); }
  .block-expandable.type-accordian .item:first-of-type {
    border-top: 1px solid rgba(51, 51, 51, 0.3); }

.block-expandable.type-accordian .item-toggler {
  cursor: pointer;
  padding-top: 1.35em;
  padding-bottom: .75em;
  position: relative; }
  .block-expandable.type-accordian .item-toggler .item-title {
    font-size: 1.2rem;
    font-weight: 900;
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase; }
  .block-expandable.type-accordian .item-toggler:after {
    content: '';
    position: absolute;
    display: block;
    top: 1.9rem;
    right: 1em;
    height: 10px;
    width: 10px;
    border: 1px solid #333333;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    pointer-events: none;
    -webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1); }

.block-expandable.type-accordian .item.is-active .item-toggler:after {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg); }

.block-expandable.type-accordian .item-content {
  display: none;
  padding-top: 0.5em;
  padding-bottom: 1.5em;
  -webkit-animation: a7263 500ms cubic-bezier(0.19, 1, 0.22, 1);
          animation: a7263 500ms cubic-bezier(0.19, 1, 0.22, 1); }

@-webkit-keyframes a7263 {
  from {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 0; } }

@keyframes a7263 {
  from {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 0; } }

.block-expandable.type-accordian .item.is-active .item-content {
  display: block; }

.block-expandable.type-accordian.bg-dark .item-toggler:after {
  border-right-color: white;
  border-bottom-color: white; }

.block-expandable.type-accordian.bg-dark .item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); }

.block-expandable.type-accordian.bg-dark .item:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.2); }

.block-expandable.type-accordian.bg-marine .item-toggler:after {
  border-right-color: white;
  border-bottom-color: white; }

.block-expandable.type-accordian.bg-marine .item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); }

.block-expandable.type-accordian.bg-marine .item:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.2); }

.block-contentlinks .title {
  font-size: 1.8rem;
  margin-bottom: .5em;
  font-weight: 600; }

.block-contentlinks .subtitle {
  font-size: 1.0rem;
  margin-bottom: 2.0em; }

.block-contentlinks .item {
  position: relative;
  -webkit-animation: a2313 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: a2313 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

@-webkit-keyframes a2313 {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7);
            transform: scale(0.7); } }

@keyframes a2313 {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7);
            transform: scale(0.7); } }
  .block-contentlinks .item .title {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-size: 1.0rem;
    padding-top: 1.1em;
    display: inline-block;
    -webkit-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1); }
  .block-contentlinks .item .img {
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.1);
    height: 0;
    padding-top: 70%;
    position: relative;
    display: block; }
    .block-contentlinks .item .img .inner {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-position: center;
      background-size: cover;
      -webkit-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
      -o-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
      transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1); }

.block-contentlinks .item:hover .img .inner {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1); }

.block-contentlinks .item:hover .title {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px); }

.block-contentlinks .item:active .img .inner {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1); }

.block-contentlinks.layout-blocks .block-items-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem 30px; }
  @media (max-width: 1199.99px) {
    .block-contentlinks.layout-blocks .block-items-list {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 767.99px) {
    .block-contentlinks.layout-blocks .block-items-list {
      grid-template-columns: 1fr; } }

.block-contentlinks.layout-slider .swiper-button-prev, .block-contentlinks.layout-slider .swiper-button-next {
  background-image: none;
  -webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
  height: 40px;
  width: 30px;
  margin-top: -20px; }
  .block-contentlinks.layout-slider .swiper-button-prev:hover, .block-contentlinks.layout-slider .swiper-button-next:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1); }
  .block-contentlinks.layout-slider .swiper-button-prev:active, .block-contentlinks.layout-slider .swiper-button-next:active {
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8); }
  .block-contentlinks.layout-slider .swiper-button-prev:after, .block-contentlinks.layout-slider .swiper-button-next:after {
    color: #C7C399;
    font-size: 1.2rem; }
  .block-contentlinks.layout-slider .swiper-button-prev.swiper-button-disabled, .block-contentlinks.layout-slider .swiper-button-next.swiper-button-disabled {
    opacity: 0;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0); }
  .block-contentlinks.layout-slider .swiper-button-prev.swiper-button-next, .block-contentlinks.layout-slider .swiper-button-next.swiper-button-next {
    -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
            transform-origin: right center; }
  .block-contentlinks.layout-slider .swiper-button-prev.swiper-button-prev, .block-contentlinks.layout-slider .swiper-button-next.swiper-button-prev {
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center; }

.block-contentlinks .item .img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #C7C399;
  display: block;
  -webkit-transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left; }

.block-contentlinks.notinview .item .img .overlay {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1); }

.newsletter-box {
  padding: 5rem 0;
  background-color: #222222;
  color: white; }
  .newsletter-box h3 {
    margin-bottom: 2rem;
    text-transform: uppercase; }
  .newsletter-box .text {
    margin-bottom: 2rem; }

.newsletter-box .formarea {
  -webkit-animation: a822f 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: a822f 500ms cubic-bezier(0.215, 0.61, 0.355, 1); }

@-webkit-keyframes a822f {
  from {
    opacity: 0;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px); } }

@keyframes a822f {
  from {
    opacity: 0;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px); } }

.newsletter-box .formarea .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 3rem; }
  @media (max-width: 767.99px) {
    .newsletter-box .formarea .grid {
      grid-template-columns: 1fr; } }

.block-newsletter-signup .newsletter-box {
  background-color: transparent;
  color: inherit; }

.block-contactform h4 {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: 1.8rem;
  margin-bottom: .3em; }

.block-contactform .subtitle {
  margin-bottom: 3rem; }

.block-contactform .contactformbox {
  border: 1px solid black;
  padding: 2rem; }

.block-contactform .fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0rem 2rem; }
  @media (max-width: 1199.99px) {
    .block-contactform .fields {
      grid-template-columns: 1fr 1fr;
      gap: 0 2rem; } }
  @media (max-width: 991.99px) {
    .block-contactform .fields {
      grid-template-columns: 1fr;
      gap: 0rem 0; } }

.block-contactform .field .inputfield .note {
  opacity: .4;
  font-size: .85rem;
  margin-top: .4em; }

.terms-part, .newsletter-part {
  display: inline-block;
  width: 45%;
  font-size: .8rem;
  margin-bottom: 2rem;
  padding-left: 3.0em;
  padding-right: 3em;
  position: relative; }
  .terms-part a, .newsletter-part a {
    text-decoration: underline; }
  .terms-part .checkboxer, .newsletter-part .checkboxer {
    width: 2em;
    height: 2em;
    background: #DDD;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1); }
    .terms-part .checkboxer.checked, .newsletter-part .checkboxer.checked {
      background: #000;
      -webkit-box-shadow: inset 0 0 0 6px #DDD;
              box-shadow: inset 0 0 0 6px #DDD; }

.block-split-content .areas {
  width: 85%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 10rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 1600.99px) {
    .block-split-content .areas {
      grid-template-columns: 1fr 1fr;
      gap: 0 7rem; } }
  @media (max-width: 1199.99px) {
    .block-split-content .areas {
      grid-template-columns: 1fr 1fr;
      gap: 0 5rem; } }
  @media (max-width: 991.99px) {
    .block-split-content .areas {
      grid-template-columns: 1fr;
      gap: 4rem 0; } }

.block-split-content .area {
  position: relative; }

.block-split-content .area.linkable {
  -webkit-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1); }
  .block-split-content .area.linkable:hover {
    opacity: .8;
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02); }
  .block-split-content .area.linkable:active {
    opacity: .6;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1); }

.block-split-content .area .linker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer; }

.block-split-content .imgholder {
  overflow: hidden;
  background-color: white; }
  .block-split-content .imgholder img {
    -webkit-transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1); }
  .block-split-content .imgholder .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    -webkit-transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 1200ms cubic-bezier(0.215, 0.61, 0.355, 1); }
    .block-split-content .imgholder .overlay.r1 {
      -webkit-transform-origin: top left;
          -ms-transform-origin: top left;
              transform-origin: top left;
      -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
              transform: scaleX(0); }
    .block-split-content .imgholder .overlay.r2 {
      -webkit-transform-origin: top right;
          -ms-transform-origin: top right;
              transform-origin: top right;
      -webkit-transform: scaleX(0);
          -ms-transform: scaleX(0);
              transform: scaleX(0); }
    .block-split-content .imgholder .overlay.r3 {
      -webkit-transform-origin: bottom left;
          -ms-transform-origin: bottom left;
              transform-origin: bottom left;
      -webkit-transform: scaleY(0);
          -ms-transform: scaleY(0);
              transform: scaleY(0); }
    .block-split-content .imgholder .overlay.r4 {
      -webkit-transform-origin: bottom left;
          -ms-transform-origin: bottom left;
              transform-origin: bottom left;
      -webkit-transform: scaleY(0);
          -ms-transform: scaleY(0);
              transform: scaleY(0); }

.block-split-content.notinview .imgholder img {
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3); }

.block-split-content.notinview .imgholder .overlay.r1 {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1); }

.block-split-content.notinview .imgholder .overlay.r2 {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1); }

.block-split-content.notinview .imgholder .overlay.r3 {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1); }

.block-split-content.notinview .imgholder .overlay.r4 {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1); }

.block-split-content .area .title {
  position: absolute;
  z-index: 66;
  pointer-events: none; }

.block-split-content .area .subtitle {
  position: absolute;
  z-index: 65;
  pointer-events: none; }

.block-split-content .area.title-color-white .title {
  color: white; }

.block-split-content .area.title-color-white-outline .title {
  color: white;
  -webkit-text-stroke-color: white;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px; }

.block-split-content .area.title-color-black .title {
  color: black; }

.block-split-content .area.title-color-champagne .title {
  color: #C7C399; }

.block-split-content .area.title-color-rose .title {
  color: #DBD1E0; }

.block-split-content .area.title-color-marine .title {
  color: #1A2135; }

.block-split-content .area.subtitle-color-white .subtitle {
  color: white; }

.block-split-content .area.subtitle-color-white-outline .subtitle {
  color: white;
  -webkit-text-stroke-color: white;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px; }

.block-split-content .area.subtitle-color-black .subtitle {
  color: black; }

.block-split-content .area.subtitle-color-champagne .subtitle {
  color: #C7C399; }

.block-split-content .area.subtitle-color-rose .subtitle {
  color: #DBD1E0; }

.block-split-content .area.subtitle-color-marine .subtitle {
  color: #1A2135; }

.block-split-content .area.typo-layout-a .title,
.block-split-content .area.typo-layout-b .title {
  left: -5%;
  top: 30%;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2; }

.block-split-content .area.typo-layout-b .title {
  left: 35%;
  top: 55%; }

.block-split-content .area.typo-layout-c .title {
  left: 0%;
  bottom: 0%;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
  line-height: 1;
  white-space: nowrap;
  -webkit-transform: rotate(-90deg) translate(0%, -0.5rem);
      -ms-transform: rotate(-90deg) translate(0%, -0.5rem);
          transform: rotate(-90deg) translate(0%, -0.5rem); }
  @media (max-width: 767.99px) {
    .block-split-content .area.typo-layout-c .title {
      left: 1%;
      font-size: 2rem; } }

.block-split-content .area.typo-layout-d .title {
  left: 20%;
  bottom: 10%;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
  line-height: 1;
  white-space: nowrap;
  -webkit-transform: rotate(-90deg) translate(0%, -0.5rem);
      -ms-transform: rotate(-90deg) translate(0%, -0.5rem);
          transform: rotate(-90deg) translate(0%, -0.5rem); }
  @media (max-width: 767.99px) {
    .block-split-content .area.typo-layout-d .title {
      font-size: 2.5rem;
      bottom: 6%; } }

.block-split-content .subtitle {
  left: 100%;
  bottom: 100%;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: rotate(90deg) translate(0%, -0.5rem);
      -ms-transform: rotate(90deg) translate(0%, -0.5rem);
          transform: rotate(90deg) translate(0%, -0.5rem); }

.block-split-content .area .floating-ornament, .block-images .imgholder .floating-ornament {
  width: 40%;
  height: 40%; }

.block-split-content .area.orna-pos-none .floating-ornament, .block-images .imgholder.orna-pos-none .floating-ornament {
  display: none; }

.block-split-content .area.orna-pos-n .floating-ornament, .block-images .imgholder.orna-pos-n .floating-ornament {
  left: 50%;
  top: 0; }

.block-split-content .area.orna-pos-s .floating-ornament, .block-images .imgholder.orna-pos-s .floating-ornament {
  left: 50%;
  top: 100%; }

.block-split-content .area.orna-pos-w .floating-ornament, .block-images .imgholder.orna-pos-w .floating-ornament {
  left: 0%;
  top: 50%; }

.block-split-content .area.orna-pos-e .floating-ornament, .block-images .imgholder.orna-pos-e .floating-ornament {
  left: 100%;
  top: 50%; }

.block-instas,
.block-images,
.block-instas,
.block-contactform,
.block-text,
.block-text-image,
.block-image-image,
.block-video,
.block-instas,
.block-expandable,
.block-newsletter-signup,
.block-split-content,
.block-contentlinks {
  padding-top: 7rem;
  padding-bottom: 7rem; }
  @media (max-width: 767.99px) {
    .block-instas,
    .block-images,
    .block-instas,
    .block-contactform,
    .block-text,
    .block-text-image,
    .block-image-image,
    .block-video,
    .block-instas,
    .block-expandable,
    .block-newsletter-signup,
    .block-split-content,
    .block-contentlinks {
      padding-top: 3.5rem;
      padding-bottom: 3.5rem; } }
  .block-instas.bg-white,
  .block-images.bg-white,
  .block-instas.bg-white,
  .block-contactform.bg-white,
  .block-text.bg-white,
  .block-text-image.bg-white,
  .block-image-image.bg-white,
  .block-video.bg-white,
  .block-instas.bg-white,
  .block-expandable.bg-white,
  .block-newsletter-signup.bg-white,
  .block-split-content.bg-white,
  .block-contentlinks.bg-white {
    background-color: white;
    color: black; }
  .block-instas.bg-marine,
  .block-images.bg-marine,
  .block-instas.bg-marine,
  .block-contactform.bg-marine,
  .block-text.bg-marine,
  .block-text-image.bg-marine,
  .block-image-image.bg-marine,
  .block-video.bg-marine,
  .block-instas.bg-marine,
  .block-expandable.bg-marine,
  .block-newsletter-signup.bg-marine,
  .block-split-content.bg-marine,
  .block-contentlinks.bg-marine {
    background-color: #1A2135;
    color: #F7F7F7; }
  .block-instas.bg-dark,
  .block-images.bg-dark,
  .block-instas.bg-dark,
  .block-contactform.bg-dark,
  .block-text.bg-dark,
  .block-text-image.bg-dark,
  .block-image-image.bg-dark,
  .block-video.bg-dark,
  .block-instas.bg-dark,
  .block-expandable.bg-dark,
  .block-newsletter-signup.bg-dark,
  .block-split-content.bg-dark,
  .block-contentlinks.bg-dark {
    background-color: #333333;
    color: #F7F7F7; }
  .block-instas.bg-champagne,
  .block-images.bg-champagne,
  .block-instas.bg-champagne,
  .block-contactform.bg-champagne,
  .block-text.bg-champagne,
  .block-text-image.bg-champagne,
  .block-image-image.bg-champagne,
  .block-video.bg-champagne,
  .block-instas.bg-champagne,
  .block-expandable.bg-champagne,
  .block-newsletter-signup.bg-champagne,
  .block-split-content.bg-champagne,
  .block-contentlinks.bg-champagne {
    background-color: #C7C399;
    color: #333333; }
  .block-instas.bg-rose,
  .block-images.bg-rose,
  .block-instas.bg-rose,
  .block-contactform.bg-rose,
  .block-text.bg-rose,
  .block-text-image.bg-rose,
  .block-image-image.bg-rose,
  .block-video.bg-rose,
  .block-instas.bg-rose,
  .block-expandable.bg-rose,
  .block-newsletter-signup.bg-rose,
  .block-split-content.bg-rose,
  .block-contentlinks.bg-rose {
    background-color: #DBD1E0;
    color: #333333; }

.block-newsletter-signup {
  padding-top: 2.1rem;
  padding-bottom: 2.1rem; }

.e404 {
  text-align: center;
  margin-top: 10rem;
  margin-bottom: 16rem; }
  .e404 h1 {
    font-family: "Roboto", sans-serif;
    font-size: 6rem;
    text-transform: uppercase;
    line-height: 1.4em;
    margin-bottom: 1rem;
    -webkit-text-fill-color: transparent;
    /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #C7C399; }

.pjaxer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #C7C399;
  z-index: 290;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: transform 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 300ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 300ms cubic-bezier(0.215, 0.61, 0.355, 1); }
  .pjaxer.bg-rose {
    background-color: #DBD1E0; }
  .pjaxer.bg-marine {
    background-color: #1A2135; }
  .pjaxer.bg-white {
    background-color: white; }

.pjaxer.on {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1); }

.pjaxer.down {
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom; }

.cookiedimmer {
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 449;
  display: none; }
  .cookiedimmer.active {
    display: block; }

.cookiebox {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 450;
  background-color: white;
  display: none;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  max-width: 500px;
  font-size: 1.0rem;
  text-align: center; }
  .cookiebox.active {
    display: block; }
  .cookiebox .cookieheader {
    background-color: #e6e6e6; }
    .cookiebox .cookieheader .logo {
      width: 50%;
      margin: 0 auto; }
  .cookiebox .cookieheader, .cookiebox .inner1, .cookiebox .inner2 {
    padding: 1.25rem 1.25rem; }
  .cookiebox .text {
    text-align: left; }
    .cookiebox .text a {
      color: #C7C399;
      text-decoration: underline; }
  .cookiebox .btns {
    margin-top: 1.5rem; }
    .cookiebox .btns:after {
      content: '';
      clear: both;
      float: none;
      display: table;
      width: 100%; }
  .cookiebox .okbtn, .cookiebox .nobtn, .cookiebox .readmorebtn, .cookiebox .backbtn {
    float: left;
    text-transform: uppercase;
    padding: 0 1rem;
    height: 3.0rem;
    line-height: 3.0rem;
    font-size: .8rem;
    text-decoration: none;
    white-space: nowrap;
    background-color: black;
    color: #C7C399;
    cursor: pointer;
    display: block; }
    .cookiebox .okbtn:hover, .cookiebox .nobtn:hover, .cookiebox .readmorebtn:hover, .cookiebox .backbtn:hover {
      opacity: .8; }
    .cookiebox .okbtn:active, .cookiebox .nobtn:active, .cookiebox .readmorebtn:active, .cookiebox .backbtn:active {
      opacity: .6; }
    @media (max-width: 767.99px) {
      .cookiebox .okbtn, .cookiebox .nobtn, .cookiebox .readmorebtn, .cookiebox .backbtn {
        width: 100% !important;
        margin-bottom: .5rem; } }
  .cookiebox .readmorebtn {
    width: 35%;
    margin-right: 5%;
    background-color: rgba(26, 33, 53, 0.15);
    color: rgba(26, 33, 53, 0.4); }
  .cookiebox .okbtn {
    width: 60%;
    background-color: black;
    color: #C7C399;
    font-size: 1.1rem; }
  .cookiebox .backbtn {
    width: 47.5%;
    margin-right: 5%;
    background-color: rgba(26, 33, 53, 0.15);
    color: rgba(26, 33, 53, 0.4); }
  .cookiebox .nobtn {
    width: 47.5%;
    background-color: rgba(26, 33, 53, 0.15);
    color: rgba(26, 33, 53, 0.4); }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5555;
  display: none; }
  .modal.active {
    display: block; }

.modal .dim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.3);
  -webkit-animation: a8242 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: a8242 300ms cubic-bezier(0.215, 0.61, 0.355, 1); }

@-webkit-keyframes a8242 {
  from {
    opacity: 0; } }

@keyframes a8242 {
  from {
    opacity: 0; } }

.modal.no-dim-click .dim {
  pointer-events: none; }

.modal .popup {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  max-width: 400px;
  background: #F7F7F7;
  color: #333333;
  -webkit-animation: a8221321 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: a8221321 300ms cubic-bezier(0.215, 0.61, 0.355, 1); }

@-webkit-keyframes a8221321 {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -60%);
            transform: translate(-50%, -60%); } }

@keyframes a8221321 {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -60%);
            transform: translate(-50%, -60%); } }
  .modal .popup .title {
    padding: 1em 1em;
    background-color: #C7C399;
    color: #333333;
    position: relative; }
  .modal .popup .inner {
    padding: 1em 1em; }
  .modal .popup .closer {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: #1A2135;
    color: #F7F7F7;
    cursor: pointer; }
    .modal .popup .closer:hover {
      opacity: .8; }
    .modal .popup .closer:active {
      opacity: .6; }
  .modal .popup .title .closer {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: transparent;
    right: 10px; }

.modal.look-1 .popup .title {
  background-color: #C7C399;
  color: #333333; }

.modal.look-2 .popup .title {
  background-color: #1A2135;
  color: #F7F7F7; }

.modal.look-3 .popup .title {
  background-color: #DBD1E0;
  color: #333333; }

.modal.look-4 .popup .title {
  background-color: #ede8f0;
  color: #333333; }

.modal.look-dark .popup .title {
  background-color: #333333;
  color: #F7F7F7; }

.modal.look-medium .popup .title {
  background-color: #cbcbcb;
  color: #333333; }

.modal.look-light .popup .title {
  background-color: #F7F7F7;
  color: #333333; }

.modal.look-success .popup .title {
  background-color: #a8c1ae;
  color: #F7F7F7; }

.modal.look-warning .popup .title {
  background-color: #b6b398;
  color: #333333; }

.modal.look-danger .popup .title {
  background-color: #b1978c;
  color: #F7F7F7; }

.modal.type-msg .inner {
  text-align: center; }

.modal.type-msg .confirm {
  text-align: center; }

.modal .msg-ok-btn {
  margin-top: 1em;
  padding: .6em .5em;
  background-color: #C7C399;
  color: #333333;
  text-align: center;
  cursor: pointer; }
  .modal .msg-ok-btn:hover {
    opacity: .8; }
  .modal .msg-ok-btn:active {
    opacity: .5; }

.modal .confirm-btns {
  margin-top: 2em;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr; }
  .modal .confirm-btns .confirm-ok-btn, .modal .confirm-btns .confirm-cancel-btn {
    padding: .6em .5em;
    background-color: #C7C399;
    color: #333333;
    text-align: center;
    cursor: pointer; }
    .modal .confirm-btns .confirm-ok-btn:hover, .modal .confirm-btns .confirm-cancel-btn:hover {
      opacity: .8; }
    .modal .confirm-btns .confirm-ok-btn:active, .modal .confirm-btns .confirm-cancel-btn:active {
      opacity: .5; }
    .modal .confirm-btns .confirm-ok-btn.confirm-cancel-btn, .modal .confirm-btns .confirm-cancel-btn.confirm-cancel-btn {
      background-color: #1A2135; }

.spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4444;
  pointer-events: none;
  -webkit-animation: a2f2fa 700ms cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: a2f2fa 700ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  pointer-events: none; }

@-webkit-keyframes a2f2fa {
  from {
    opacity: 0; } }

@keyframes a2f2fa {
  from {
    opacity: 0; } }
  .spinner.active {
    opacity: 1; }
  .spinner.blocking {
    background-color: rgba(247, 247, 247, 0.7);
    pointer-events: all; }
  .spinner .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 50px;
    width: 50px;
    border-radius: 100%;
    background: #F7F7F7;
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, 0.3);
            box-shadow: 0 0 20px rgba(51, 51, 51, 0.3); }
    .spinner .circle div {
      position: absolute;
      top: 10%;
      left: 10%;
      height: 80%;
      width: 80%;
      border-radius: 100%;
      border: 2px solid #333333;
      border-right-color: transparent;
      border-left-color: transparent;
      -webkit-animation: a2321 700ms infinite linear;
              animation: a2321 700ms infinite linear; }

@-webkit-keyframes a2321 {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes a2321 {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
  .spinner .msg {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: .8rem;
    margin-top: 4em;
    pointer-events: none; }

#toast-container > div {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  padding-left: 15px; }
  #toast-container > div:hover {
    -webkit-box-shadow: none;
            box-shadow: none; }
  #toast-container > div:active {
    opacity: .5; }
  #toast-container > div .toast-close-button {
    font-weight: 100; }
  #toast-container > div.toast-info, #toast-container > div.toast-success, #toast-container > div.toast-warning, #toast-container > div.toast-error {
    background-image: none !important; }

.toast-success {
  background-color: #a8c1ae; }
  .toast-success .toast-message, .toast-success .toast-title {
    color: #F7F7F7; }

.toast-info {
  background-color: #C7C399; }
  .toast-info .toast-message, .toast-info .toast-title {
    color: #333333; }

.toast-warning {
  background-color: #b6b398; }
  .toast-warning .toast-message, .toast-warning .toast-title {
    color: #333333; }

.toast-error {
  background-color: #b1978c; }
  .toast-error .toast-message, .toast-error .toast-title {
    color: #F7F7F7; }

.edit-link {
  position: fixed;
  bottom: 40px;
  left: 40px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 10px;
  background-color: black;
  color: white;
  border-radius: 100%;
  z-index: 443244; }

.input-styled, .inputfield input, .inputfield select, .inputfield textarea, .select-wrap select {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  border: none;
  background-color: transparent;
  color: black;
  border: 1px solid black;
  display: block;
  width: 100%;
  padding: .8em 1.0em; }
  .input-styled:focus, .inputfield input:focus, .inputfield select:focus, .inputfield textarea:focus, .select-wrap select:focus {
    outline: none; }

.inputfield {
  position: relative;
  font-size: 1rem;
  margin-bottom: 2em; }
  .inputfield label {
    display: inline-block;
    font-size: .9em;
    margin-bottom: .5em; }

.inputfield.look2 label {
  color: white; }

.inputfield.look2 input, .inputfield.look2 select, .inputfield.look2 textarea {
  color: white;
  background-color: transparent;
  border-color: white; }

.inputfield.look2 .select-wrap .select-arrow {
  border-right-color: white;
  border-bottom-color: white; }

.inputfield.has-error label {
  color: red; }

.select-wrap {
  position: relative; }
  .select-wrap select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none; }
  .select-wrap .select-arrow {
    height: 14px;
    width: 14px;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -5px;
    border: 1px solid white;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: translateY(-50%) rotate(45deg);
        -ms-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    pointer-events: none; }

div[class*="grid-"] {
  display: grid;
  gap: 40px; }

.grid-11 {
  grid-template-columns: 1fr 1fr; }

.grid-111 {
  grid-template-columns: 1fr 1fr 1fr; }

.grid-1111 {
  grid-template-columns: 1fr 1fr 1fr 1fr; }

.grid-211 {
  grid-template-columns: 2fr 1fr 1fr; }

.grid-112 {
  grid-template-columns: 1fr 1fr 2fr; }

.grid-223 {
  grid-template-columns: 2fr 2fr 3fr; }

@media (max-width: 767.99px) {
  .grid-11 {
    grid-template-columns: 1fr; }
  .grid-111 {
    grid-template-columns: 1fr; }
  .grid-1111 {
    grid-template-columns: 1fr; }
  .grid-211 {
    grid-template-columns: 1fr; }
  .grid-112 {
    grid-template-columns: 1fr; }
  .grid-223 {
    grid-template-columns: 2fr 2fr 3fr; } }

.castler {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 40%;
  z-index: 555;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none; }

.hide {
  display: none; }

.relative {
  position: relative; }

.align-c {
  text-align: center; }

.align-l {
  text-align: left; }

.align-r {
  text-align: right; }

.bgcolor-1 {
  background-color: #C7C399; }

.textcolor-1 {
  color: #333333; }

.bgtextcolor-1 {
  background-color: #C7C399;
  color: #333333; }

.bgcolor-2 {
  background-color: #1A2135; }

.textcolor-2 {
  color: #F7F7F7; }

.bgtextcolor-2 {
  background-color: #1A2135;
  color: #F7F7F7; }

.bgcolor-3 {
  background-color: #DBD1E0; }

.textcolor-3 {
  color: #333333; }

.bgtextcolor-3 {
  background-color: #DBD1E0;
  color: #333333; }

.bgcolor-4 {
  background-color: #ede8f0; }

.textcolor-4 {
  color: #333333; }

.bgtextcolor-4 {
  background-color: #ede8f0;
  color: #333333; }

.bgcolor-dark {
  background-color: #333333; }

.textcolor-dark {
  color: #F7F7F7; }

.bgtextcolor-dark {
  background-color: #333333;
  color: #F7F7F7; }

.bgcolor-medium {
  background-color: #cbcbcb; }

.textcolor-medium {
  color: #333333; }

.bgtextcolor-medium {
  background-color: #cbcbcb;
  color: #333333; }

.bgcolor-light {
  background-color: #F7F7F7; }

.textcolor-light {
  color: #333333; }

.bgtextcolor-light {
  background-color: #F7F7F7;
  color: #333333; }

.bgcolor-success {
  background-color: #a8c1ae; }

.textcolor-success {
  color: #F7F7F7; }

.bgtextcolor-success {
  background-color: #a8c1ae;
  color: #F7F7F7; }

.bgcolor-warning {
  background-color: #b6b398; }

.textcolor-warning {
  color: #333333; }

.bgtextcolor-warning {
  background-color: #b6b398;
  color: #333333; }

.bgcolor-danger {
  background-color: #b1978c; }

.textcolor-danger {
  color: #F7F7F7; }

.bgtextcolor-danger {
  background-color: #b1978c;
  color: #F7F7F7; }

body.is-local_ .corset,
body.is-local_ .block,
body.is-local_ .header,
body.is-local_ footer,
body.is-local_ .footcol {
  -webkit-box-shadow: inset 0 0 0 1px green;
          box-shadow: inset 0 0 0 1px green; }

body.is_admin .contentblocks {
  counter-reset: blocks-counter; }
  body.is_admin .contentblocks .contentblock {
    position: relative; }
    body.is_admin .contentblocks .contentblock:before {
      counter-increment: blocks-counter;
      content: "Block " counter(blocks-counter);
      position: absolute;
      top: 1em;
      left: 1em;
      background-color: rgba(0, 0, 0, 0.6);
      color: white;
      padding: .5em 1.5em;
      font-size: 12px;
      pointer-events: none;
      z-index: 999999; }

.home-intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 554;
  pointer-events: none; }

.home-intro .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center; }

.home-intro .bg1 {
  background-color: #C7C399; }

.home-intro .bg2 {
  background-color: white; }

.home-intro .castle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 900px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  pointer-events: none; }
  .home-intro .castle svg {
    fill: transparent;
    stroke-width: 0.70;
    stroke-width: 1.00;
    stroke: white;
    stroke: white;
    stroke: #1A2135;
    -webkit-transition: all 800ms cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 800ms cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 800ms cubic-bezier(0.645, 0.045, 0.355, 1); }

.home-intro.off {
  pointer-events: none; }
  .home-intro.off .bg {
    -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
            transform: scaleY(0); }
  .home-intro.off .castle {
    -webkit-transform: translate(-50%, -55%);
        -ms-transform: translate(-50%, -55%);
            transform: translate(-50%, -55%); }
    .home-intro.off .castle svg {
      stroke: white; }

._home-intro .castle svg path, ._home-intro .castle svg g {
  stroke-dasharray: 100;
  -webkit-animation: a12j3b 20s infinite linear;
          animation: a12j3b 20s infinite linear; }

@-webkit-keyframes a12j3b {
  to {
    stroke-dashoffset: 1000; } }

@keyframes a12j3b {
  to {
    stroke-dashoffset: 1000; } }

.dev-info {
  border-radius: 12px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(0, 128, 128, 0.8);
  color: white;
  padding: 1em;
  width: 100px;
  font-size: 14px;
  font-family: sans-serif;
  z-index: 999999999;
  cursor: default; }
  .dev-info.is-minified {
    height: 10px;
    width: 10px;
    left: -10px;
    color: transparent;
    cursor: pointer;
    opacity: .4; }
    .dev-info.is-minified .inner {
      display: none; }
    .dev-info.is-minified:hover {
      opacity: .6; }

.dev-info .viewrealms .viewrealms {
  display: none; }
  @media (min-width: 1601px) and (max-width: 9999px) {
    .dev-info .viewrealms .viewrealms.xxl {
      display: block; } }
  @media (min-width: 1200px) and (max-width: 1600.99px) {
    .dev-info .viewrealms .viewrealms.xl {
      display: block; } }
  @media (min-width: 992px) and (max-width: 1199.99px) {
    .dev-info .viewrealms .viewrealms.l {
      display: block; } }
  @media (min-width: 768px) and (max-width: 991.99px) {
    .dev-info .viewrealms .viewrealms.m {
      display: block; } }
  @media (min-width: 576px) and (max-width: 767.99px) {
    .dev-info .viewrealms .viewrealms.s {
      display: block; } }
  @media (min-width: 0px) and (max-width: 575.99px) {
    .dev-info .viewrealms .viewrealms.xs {
      display: block; } }
