/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.vbox-overlay {
  --vbox-tools-color:#fff;
  --vbox-title-background:#101010;
  --vbox-title-width:"auto";
  --vbox-title-radius:0;
  --vbox-share-background:#101010;
  --vbox-share-width:"auto";
  --vbox-share-radius:0;
  --vbox-padding:0;
  --vbox-max-width:100%;
}

.vbox-overlay *, .vbox-overlay :after, .vbox-overlay :before {
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
}

.vbox-overlay * {
  backface-visibility: visible;
}

.vbox-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 999999;
}

.vbox-share, .vbox-title {
  line-height: 1;
  position: fixed;
  z-index: 98;
  text-align: center;
  margin: 0 auto;
  color: var(--vbox-tools-color);
}

.vbox-title {
  font-size: 12px;
  background-color: var(--vbox-title-background);
  width: var(--vbox-title-width);
  border-radius: var(--vbox-title-radius);
  padding: 12px 54px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.vbox-share {
  font-size: 24px;
  padding: 0 0.35em;
  background-color: var(--vbox-share-background);
  width: var(--vbox-share-width);
  border-radius: var(--vbox-share-radius);
}

.vbox-link-btn, button.vbox-link-btn, button.vbox-link-btn:active, button.vbox-link-btn:focus, button.vbox-link-btn:hover {
  border: none !important;
  background: 0 0 !important;
  box-shadow: none !important;
  color: inherit !important;
  padding: 6px 12px;
  outline: 0;
  display: inline-block;
  cursor: pointer;
}

.vbox-share a {
  color: inherit !important;
  padding: 6px 12px;
  display: inline-block;
}

.vbox-share svg {
  z-index: 10;
  vertical-align: middle;
}

.vbox-close {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  padding: 6px 15px;
  color: #000;
  color: var(--vbox-tools-color);
  border: 0;
  font-size: 24px;
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.vbox-close:hover {
  opacity: 1;
}

.vbox-left-corner {
  cursor: pointer;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  line-height: 1;
  font-size: 12px;
  z-index: 99;
  display: flex;
  align-items: center;
  color: var(--vbox-tools-color);
}

.vbox-num {
  display: inline-block;
  padding: 12px 15px;
}

.vbox-left {
  left: 0;
}

.vbox-right {
  right: 0;
}

.vbox-top {
  top: 0;
}

.vbox-bottom {
  bottom: 0;
}

.vbox-next, .vbox-prev {
  position: fixed;
  top: 50%;
  margin-top: -15px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 45px;
  height: 45px;
  z-index: 99;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.vbox-next:hover, .vbox-prev:hover {
  opacity: 1;
}

.vbox-next span, .vbox-prev span {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: var(--vbox-tools-color);
  border-right-color: var(--vbox-tools-color);
  text-indent: -100px;
  position: absolute;
  top: 8px;
  display: block;
}

.vbox-prev {
  left: 15px;
}

.vbox-next {
  right: 15px;
}

.vbox-prev span {
  left: 10px;
  transform: rotate(-135deg);
}

.vbox-next span {
  transform: rotate(45deg);
  right: 10px;
}

.vbox-open {
  overflow: hidden;
}

.vbox-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  z-index: 20;
  max-height: 100%;
  padding: 30px 0;
}

.vbox-content {
  opacity: 0;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.vbox-container img {
  max-width: 100%;
  height: auto;
}

.vbox-child {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  max-width: var(--vbox-max-width);
  text-align: initial;
  padding: var(--vbox-padding);
}

.vbox-child img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: block;
}

.vbox-fit .vbox-child img, .vbox-fit .vbox-child.venoratio {
  max-height: calc(100vh - 60px);
}

.vbox-inline, .venoratio {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.venoratio::before {
  display: block;
  padding-top: var(--vb-aspect-ratio);
  content: "";
}

.venoratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--vbox-padding);
}

.venoratio-1x1 {
  --vb-aspect-ratio:100%;
  max-width: min(var(--vbox-max-width), 100vh - 60px);
}

.venoratio-4x3.vbox-child.venoratio {
  --vb-aspect-ratio:calc(3 / 4 * 100%);
  max-width: min(var(--vbox-max-width), (100vh - 60px) * 4 / 3);
}

.venoratio-16x9.vbox-child.venoratio {
  --vb-aspect-ratio:calc(9 / 16 * 100%);
  max-width: min(var(--vbox-max-width), (100vh - 60px) * 16 / 9);
}

.venoratio-21x9.vbox-child.venoratio {
  --vb-aspect-ratio:calc(9 / 21 * 100%);
  max-width: min(var(--vbox-max-width), (100vh - 60px) * 21 / 9);
}

.venoratio-full {
  --vb-aspect-ratio:calc(100vh - 60px);
}

.vbox-grab .vbox-child img {
  cursor: grab;
}

.vbox-child > iframe {
  border: none !important;
}

.vbox-content.swipe-left {
  margin-left: -200px !important;
}

.vbox-content.swipe-right {
  margin-left: 200px !important;
}

.vbox-preloader {
  transform: translateZ(0);
}

.vbox-preloader .vbox-preloader-inner {
  opacity: 1;
  transition: opacity 0.2s;
}

.vbox-hidden {
  display: none;
}

.vbox-preloader.vbox-hidden .vbox-preloader-inner {
  opacity: 0;
}

.vbox-backdrop {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(-1px);
  z-index: 0;
}

.vbox-tooltip {
  position: relative;
  display: inline-block;
}

.vbox-tooltip .vbox-tooltip-text {
  visibility: hidden;
  color: #fff;
  text-align: center;
  padding: 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
  margin-bottom: 2px;
  font-family: sans-serif;
}

.vbox-top .vbox-tooltip .vbox-tooltip-text {
  bottom: auto;
  top: 100%;
  margin-bottom: 0;
  margin-top: 2px;
}

.vbox-tooltip-inner {
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  font-size: 10px;
}

.vbox-tooltip:hover .vbox-tooltip-text {
  visibility: visible;
  opacity: 1;
}

.vbox-overlay {
  --sk-size:40px;
  --sk-color:#333;
}

.sk-center {
  margin: auto;
}

.sk-plane {
  width: var(--sk-size);
  height: var(--sk-size);
  background-color: var(--sk-color);
  animation: sk-plane 1.2s infinite ease-in-out;
}

@keyframes sk-plane {
  0% {
    transform: perspective(120px) rotateX(0) rotateY(0);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.sk-chase {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot {
  100%, 80% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }
  0%, 100% {
    transform: scale(1);
  }
}
.sk-bounce {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-bounce-dot {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--sk-color);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.sk-bounce-dot:nth-child(2) {
  animation-delay: -1s;
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
  }
  45%, 55% {
    transform: scale(1);
  }
}
.sk-wave {
  width: var(--sk-size);
  height: var(--sk-size);
  display: flex;
  justify-content: space-between;
}

.sk-wave-rect {
  background-color: var(--sk-color);
  height: 100%;
  width: 15%;
  animation: sk-wave 1.2s infinite ease-in-out;
}

.sk-wave-rect:nth-child(1) {
  animation-delay: -1.2s;
}

.sk-wave-rect:nth-child(2) {
  animation-delay: -1.1s;
}

.sk-wave-rect:nth-child(3) {
  animation-delay: -1s;
}

.sk-wave-rect:nth-child(4) {
  animation-delay: -0.9s;
}

.sk-wave-rect:nth-child(5) {
  animation-delay: -0.8s;
}

@keyframes sk-wave {
  0%, 100%, 40% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}
.sk-pulse {
  width: var(--sk-size);
  height: var(--sk-size);
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-pulse 1.2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@keyframes sk-pulse {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.sk-flow {
  width: calc(var(--sk-size) * 1.3);
  height: calc(var(--sk-size) * 1.3);
  display: flex;
  justify-content: space-between;
}

.sk-flow-dot {
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 50%;
  animation: sk-flow 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s infinite both;
}

.sk-flow-dot:nth-child(1) {
  animation-delay: -0.3s;
}

.sk-flow-dot:nth-child(2) {
  animation-delay: -0.15s;
}

@keyframes sk-flow {
  0%, 100%, 80% {
    transform: scale(0.3);
  }
  40% {
    transform: scale(1);
  }
}
.sk-swing {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  animation: sk-swing 1.8s infinite linear;
}

.sk-swing-dot {
  width: 45%;
  height: 45%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-swing-dot 2s infinite ease-in-out;
}

.sk-swing-dot:nth-child(2) {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes sk-swing {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-swing-dot {
  0%, 100% {
    transform: scale(0.2);
  }
  50% {
    transform: scale(1);
  }
}
.sk-circle {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-circle-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle-dot:before {
  content: "";
  display: block;
  width: 15%;
  height: 15%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-circle 1.2s infinite ease-in-out both;
}

.sk-circle-dot:nth-child(1) {
  transform: rotate(30deg);
}

.sk-circle-dot:nth-child(2) {
  transform: rotate(60deg);
}

.sk-circle-dot:nth-child(3) {
  transform: rotate(90deg);
}

.sk-circle-dot:nth-child(4) {
  transform: rotate(120deg);
}

.sk-circle-dot:nth-child(5) {
  transform: rotate(150deg);
}

.sk-circle-dot:nth-child(6) {
  transform: rotate(180deg);
}

.sk-circle-dot:nth-child(7) {
  transform: rotate(210deg);
}

.sk-circle-dot:nth-child(8) {
  transform: rotate(240deg);
}

.sk-circle-dot:nth-child(9) {
  transform: rotate(270deg);
}

.sk-circle-dot:nth-child(10) {
  transform: rotate(300deg);
}

.sk-circle-dot:nth-child(11) {
  transform: rotate(330deg);
}

.sk-circle-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-circle-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-circle-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-circle-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-circle-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-circle-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

.sk-circle-dot:nth-child(7):before {
  animation-delay: -0.5s;
}

.sk-circle-dot:nth-child(8):before {
  animation-delay: -0.4s;
}

.sk-circle-dot:nth-child(9):before {
  animation-delay: -0.3s;
}

.sk-circle-dot:nth-child(10):before {
  animation-delay: -0.2s;
}

.sk-circle-dot:nth-child(11):before {
  animation-delay: -0.1s;
}

@keyframes sk-circle {
  0%, 100%, 80% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.sk-circle-fade {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-circle-fade-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle-fade-dot:before {
  content: "";
  display: block;
  width: 15%;
  height: 15%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-circle-fade 1.2s infinite ease-in-out both;
}

.sk-circle-fade-dot:nth-child(1) {
  transform: rotate(30deg);
}

.sk-circle-fade-dot:nth-child(2) {
  transform: rotate(60deg);
}

.sk-circle-fade-dot:nth-child(3) {
  transform: rotate(90deg);
}

.sk-circle-fade-dot:nth-child(4) {
  transform: rotate(120deg);
}

.sk-circle-fade-dot:nth-child(5) {
  transform: rotate(150deg);
}

.sk-circle-fade-dot:nth-child(6) {
  transform: rotate(180deg);
}

.sk-circle-fade-dot:nth-child(7) {
  transform: rotate(210deg);
}

.sk-circle-fade-dot:nth-child(8) {
  transform: rotate(240deg);
}

.sk-circle-fade-dot:nth-child(9) {
  transform: rotate(270deg);
}

.sk-circle-fade-dot:nth-child(10) {
  transform: rotate(300deg);
}

.sk-circle-fade-dot:nth-child(11) {
  transform: rotate(330deg);
}

.sk-circle-fade-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-circle-fade-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-circle-fade-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-circle-fade-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-circle-fade-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-circle-fade-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

.sk-circle-fade-dot:nth-child(7):before {
  animation-delay: -0.5s;
}

.sk-circle-fade-dot:nth-child(8):before {
  animation-delay: -0.4s;
}

.sk-circle-fade-dot:nth-child(9):before {
  animation-delay: -0.3s;
}

.sk-circle-fade-dot:nth-child(10):before {
  animation-delay: -0.2s;
}

.sk-circle-fade-dot:nth-child(11):before {
  animation-delay: -0.1s;
}

@keyframes sk-circle-fade {
  0%, 100%, 39% {
    opacity: 0;
    transform: scale(0.6);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
.sk-grid {
  width: var(--sk-size);
  height: var(--sk-size);
}

.sk-grid-cube {
  width: 33.33%;
  height: 33.33%;
  background-color: var(--sk-color);
  float: left;
  animation: sk-grid 1.3s infinite ease-in-out;
}

.sk-grid-cube:nth-child(1) {
  animation-delay: 0.2s;
}

.sk-grid-cube:nth-child(2) {
  animation-delay: 0.3s;
}

.sk-grid-cube:nth-child(3) {
  animation-delay: 0.4s;
}

.sk-grid-cube:nth-child(4) {
  animation-delay: 0.1s;
}

.sk-grid-cube:nth-child(5) {
  animation-delay: 0.2s;
}

.sk-grid-cube:nth-child(6) {
  animation-delay: 0.3s;
}

.sk-grid-cube:nth-child(7) {
  animation-delay: 0s;
}

.sk-grid-cube:nth-child(8) {
  animation-delay: 0.1s;
}

.sk-grid-cube:nth-child(9) {
  animation-delay: 0.2s;
}

@keyframes sk-grid {
  0%, 100%, 70% {
    transform: scale3D(1, 1, 1);
  }
  35% {
    transform: scale3D(0, 0, 1);
  }
}
.sk-fold {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  transform: rotateZ(45deg);
}

.sk-fold-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
}

.sk-fold-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--sk-color);
  animation: sk-fold 2.4s infinite linear both;
  transform-origin: 100% 100%;
}

.sk-fold-cube:nth-child(2) {
  transform: scale(1.1) rotateZ(90deg);
}

.sk-fold-cube:nth-child(4) {
  transform: scale(1.1) rotateZ(180deg);
}

.sk-fold-cube:nth-child(3) {
  transform: scale(1.1) rotateZ(270deg);
}

.sk-fold-cube:nth-child(2):before {
  animation-delay: 0.3s;
}

.sk-fold-cube:nth-child(4):before {
  animation-delay: 0.6s;
}

.sk-fold-cube:nth-child(3):before {
  animation-delay: 0.9s;
}

@keyframes sk-fold {
  0%, 10% {
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    transform: perspective(140px) rotateX(0);
    opacity: 1;
  }
  100%, 90% {
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
.sk-wander {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-wander-cube {
  background-color: var(--sk-color);
  width: 20%;
  height: 20%;
  position: absolute;
  top: 0;
  left: 0;
  --sk-wander-distance:calc(var(--sk-size) * 0.75);
  animation: sk-wander 2s ease-in-out -2s infinite both;
}

.sk-wander-cube:nth-child(2) {
  animation-delay: -0.5s;
}

.sk-wander-cube:nth-child(3) {
  animation-delay: -1s;
}

@keyframes sk-wander {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: translateX(var(--sk-wander-distance)) rotate(-90deg) scale(0.6);
  }
  50% {
    transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-179deg);
  }
  50.1% {
    transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-180deg);
  }
  75% {
    transform: translateX(0) translateY(var(--sk-wander-distance)) rotate(-270deg) scale(0.6);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/* CSS Document */
.watermarkify-wrap {
  position: relative;
  overflow: hidden;
}

.watermarkify-watermark {
  position: absolute;
  left: 10px;
  display: block;
  color: #999;
  padding-left: 2px;
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  user-select: none;
  overflow: hidden;
}

.watermarkify-watermark-blurred {
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

@font-face {
  font-family: "DomaineTextLight";
  src: url("/fonts/DomaineTextLight.eot");
  src: url("/fonts/DomaineTextLight.eot?#iefix") format("embedded-opentype"), url("/fonts/DomaineTextLight.woff2") format("woff2"), url("/fonts/DomaineTextLight.woff") format("woff"), url("/fonts/DomaineTextLight.ttf") format("truetype"), url("/fonts/DomaineTextLight.svg#DomaineTextLight") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "omaineTextLight-Italic";
  src: url("/fonts/DomaineTextLight-Italic.eot");
  src: url("/fonts/DomaineTextLight-Italic.eot?#iefix") format("embedded-opentype"), url("/fonts/DomaineTextLight-Italic.woff2") format("woff2"), url("/fonts/DomaineTextLight-Italic.woff") format("woff"), url("/fonts/DomaineTextLight-Italic.ttf") format("truetype"), url("/fonts/DomaineTextLight-Italic.svg#DomaineTextLight-Italic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SofiaProLight";
  src: url("/fonts/SofiaProLight.eot");
  src: url("/fonts/SofiaProLight.eot?#iefix") format("embedded-opentype"), url("/fonts/SofiaProLight.woff2") format("woff2"), url("/fonts/SofiaProLight.woff") format("woff"), url("/fonts/SofiaProLight.ttf") format("truetype"), url("/fonts/SofiaProLight.svg#SofiaProLight") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
:root {
  --header-height: 80px;
  --banner-height: 40px;
  --orange: #DE9155;
  --dark-orange: #C75836;
  --black: #000000;
  --white: #ffffff;
  --xlarge: 200px;
  --large: 100px;
  --medium: 50px;
  --small: 24px;
  --xsmall: 10px;
}

.clear,
* html .clearfix,
*:first-child + html .clearfix {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix:after {
  clear: both;
  content: " ";
  display: block;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

.grid_3 {
  width: 25%;
}
.grid_3.special-style {
  margin-left: auto;
  aspect-ratio: 1/1;
}

.grid_4 {
  width: 33.33%;
}
.grid_4.v2 {
  width: 37%;
}
.grid_4.mrs {
  width: calc(33.333% - 13.3333333333px);
}

.grid_5 {
  width: 41.67%;
}

.grid_6 {
  width: 50%;
}
.grid_6.small-gap {
  width: calc(50% - var(--xsmall));
}

.grid_7 {
  width: 58.33%;
}

.grid_8 {
  width: 66.67%;
}

.grid_9 {
  width: 75%;
}

.grid_10 {
  width: 83.33%;
}

.grid_11 {
  width: 91.67%;
}

.grid_12 {
  width: 100%;
}

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
  position: relative;
  display: flex;
}

a {
  text-decoration: none;
  cursor: pointer;
}

img {
  border: none;
  max-width: 100%;
  display: block;
  align-self: flex-start;
  -o-object-fit: cover;
     object-fit: cover;
}

a,
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  outline: none !important;
}

textarea:focus,
input:focus,
select:focus {
  outline: none !important;
}

/* General */
body {
  font-family: "DomaineTextLight";
  font-weight: normal;
  font-size: 15px;
  line-height: 1.25em;
  text-align: left;
  color: var(--black);
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
  font-family: "DomaineTextLight";
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
}

h1 {
  font-size: 40px;
  line-height: 100%;
}

h2,
.h2 {
  font-size: 40px;
  line-height: 100%;
}
h2 .italic,
.h2 .italic {
  font-family: "omaineTextLight-Italic";
}
h2.small,
.h2.small {
  font-size: 32px;
}
h2 span,
.h2 span {
  display: block;
  font-size: 14px;
  line-height: 1.4em;
  letter-spacing: 5%;
  text-transform: uppercase;
  margin-top: var(--xsmall);
}

h3,
.h3 {
  font-size: 20px;
  line-height: 90%;
}
h3.title,
.h3.title {
  font-weight: normal;
  font-family: "DomaineTextLight";
  font-size: 24px;
  line-height: 1.5;
}

.quote {
  font-size: 32px;
  line-height: 1.25em;
  text-align: left;
  color: var(--orange);
  max-width: 600px;
}
.quote span {
  display: block;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.25em;
  text-align: left;
  margin-top: 22px;
}

p {
  text-align: left;
  margin: 0;
  color: var(--black);
}
p a {
  color: inherit;
}

h4 {
  font-size: 40px;
  color: #2A3851;
}

/* Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--white);
  height: var(--header-height);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
header > * {
  width: 33.3333333333%;
  display: flex;
}
header > *:nth-child(1) {
  justify-content: flex-start;
  align-items: center;
}
header > *:nth-child(2) {
  justify-content: center;
  align-items: center;
}
header > *:nth-child(3) {
  justify-content: flex-end;
  align-items: center;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--dark-orange);
  overflow: hidden;
  padding: 0 0;
  height: 0;
  pointer-events: none;
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
}
header nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  flex-direction: column;
  height: 100vh;
  list-style: none;
}
header nav ul li {
  margin-bottom: var(--small);
}
header nav ul li a {
  font-family: "DomaineTextLight";
  font-weight: 300;
  font-size: 60px;
  line-height: 50px;
  leading-trim: both;
  text-edge: cap;
  color: var(--white);
}
header nav ul li a.active-page {
  color: var(--orange);
}
header #nav-toggle {
  font-family: "DomaineTextLight";
  position: relative;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5em;
  text-align: left;
  color: var(--orange);
  z-index: 10;
  border-bottom: 1px solid transparent;
}
header #nav-toggle span {
  display: inline-block;
}
header #nav-toggle span:last-child {
  display: none;
}
header #nav-toggle.active span:first-child {
  display: none;
}
header #nav-toggle.active span:last-child {
  display: block;
  color: var(--white);
}
@keyframes rotateX {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(-20deg);
    -webkit-transform: rotateX(-20deg);
    -moz-transform: rotateX(-20deg);
    -ms-transform: rotateX(-20deg);
    -o-transform: rotateX(-20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
header .btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: var(--orange);
  color: var(--white);
  font-family: "DomaineTextLight";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  leading-trim: both;
  text-edge: cap;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media (hover: hover) {
  header .btn:hover {
    color: var(--orange);
    background-color: var(--orange);
  }
}
header.active_nav nav {
  height: 100vh;
  z-index: initial;
  pointer-events: initial;
}
header .logo {
  width: 178px;
}
header .logo img {
  width: 100%;
}

.lottie-player {
  width: 400px;
  height: 400px;
}

#page-home header .logo {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  opacity: 1;
}
#page-home section .bottom-text {
  font-size: 20px;
}

/* enquiry */
.register {
  width: 100%;
  margin: 0 auto;
  max-width: 560px;
}
.register form {
  text-align: center;
}
.register input,
.register select {
  font-family: "DomaineTextLight";
  font-size: 16px;
  margin: 0 auto 14px;
  padding: 0 0 6px 0;
  width: 100%;
  color: var(--white);
  border: 0 none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border-bottom: 1px solid var(--white);
  text-align-last: left;
  text-align: left;
  -ms-text-align-last: left;
  -moz-text-align-last: left;
  text-align-last: left;
}
.register input.b_submit,
.register select.b_submit {
  background-color: var(--white);
  color: var(--orange);
  padding: 6px;
  text-align-last: center;
  text-align: center;
  -ms-text-align-last: center;
  -moz-text-align-last: center;
  text-align-last: center;
  cursor: pointer;
  border: 0 none;
  width: 240px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
@media (hover: hover) {
  .register input.b_submit:hover,
  .register select.b_submit:hover {
    background-color: var(--dark-orange);
    color: var(--white);
  }
}
.register option {
  padding: 7px 5px;
  background: var(--dark-orange);
  text-align-last: left;
  text-align: left;
  -ms-text-align-last: left;
  -moz-text-align-last: left;
  text-align-last: left;
}

.privacy {
  font-size: 10px;
  text-decoration: underline;
  margin: auto;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
}

.chk_holder {
  margin: 10px auto 0 auto;
  color: var(--white);
}

#chkInternational {
  border: 0 none;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  cursor: pointer;
  display: inline-block;
  line-height: 25px;
  width: 20px;
  text-align: center;
}

#chkInternational + label {
  padding: 2px 0 2px 26px;
  position: relative;
  text-align: center;
  display: block;
  color: #546670;
  font-size: 18px;
  letter-spacing: 3px;
  font-family: inherit;
  text-transform: uppercase;
  display: inline;
  margin: auto;
}

#chkInternational + label:before {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #546670;
  content: "";
  display: block;
}

#chkInternational + label:after {
  position: absolute;
  left: 0;
  width: 5px;
  height: 11px;
  top: 50%;
  left: 8px;
  transform: translateY(-60%) rotate(45deg) scale(0);
  border-bottom: 2px solid #546670;
  border-right: 2px solid #546670;
  content: "";
  display: block;
  transition: all 0.4s ease-in-out;
}

#chkInternational:checked + label:after {
  transform: translateY(-60%) rotate(45deg) scale(1);
  -moz-transform: translateY(-60%) rotate(45deg) scale(1);
  -ms-transform: translateY(-60%) rotate(45deg) scale(1);
  -o-transform: translateY(-60%) rotate(45deg) scale(1);
}

input:-webkit-input-placeholder,
textarea:-webkit-input-placeholder {
  color: var(--white);
  opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--white);
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--white);
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--white);
  opacity: 1;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0.5;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  opacity: 0.5;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0.5;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0.5;
}

.colliers {
  display: block;
  width: 200px;
  margin: 50px auto 100px;
}

.reeves {
  height: 40px;
}

.display {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.display h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.display p,
.display a {
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: var(--black);
}
.display a {
  text-decoration: underline;
  color: var(--black);
}

/*footer*/
footer {
  padding: 50px 0 0;
}
footer #wg {
  width: 200px;
}
footer ul {
  list-style: none;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
}
footer ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16.6666666667%;
  border-right: 1px solid var(--black);
  padding: 20px 0;
}
footer ul li:last-child {
  border-right: 0 none;
}
footer ul li a {
  font-family: "DomaineTextLight";
  font-weight: normal;
  font-size: 14px;
  line-height: 1.2em;
  text-align: center;
  color: var(--black);
  border-bottom: 1px solid transparent;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media (hover: hover) {
  footer ul li a:hover {
    text-decoration: underline;
  }
}
footer .title {
  font-family: "DomaineTextLight";
  font-weight: normal;
  font-size: 32px;
  line-height: 1.2em;
  text-align: center;
  color: var(--white);
  padding-bottom: 10px;
}
footer .address {
  font-family: "DomaineTextLight";
  font-weight: normal;
  font-size: 14px;
  line-height: 1.8em;
  text-align: center;
  color: var(--black);
}
footer .address a {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-align: inherit;
  color: inherit;
}
@media (hover: hover) {
  footer .address a:hover {
    text-decoration: underline;
  }
}
footer .footer-logo-holder div {
  margin: 0 25px;
  transform: scale(1.2);
}
footer .legal a,
footer .legal span {
  text-align: center;
  color: var(--white);
  font-family: "DomaineTextLight";
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 150%;
}
footer .legal span {
  display: block;
  margin: 0 10px;
}

/* Token Style */
ul.token-input-list-project {
  border: none;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  text-align: left;
  -moz-text-align-last: left;
       text-align-last: left;
  text-align: -moz-left;
  text-align: -webkit-left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border-bottom: 1px solid #525252;
  clear: both;
}

li.token-input-input-token-project {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
}

ul.token-input-list-project li input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 100% !important;
  margin-bottom: 0;
}

li.token-input-token-project p {
  display: inline;
  padding: 0;
  margin: 0 5px 0 0;
  line-height: 20px;
  font-size: 11px;
}

li.token-input-token-project {
  overflow: hidden;
  height: 25px;
  margin: 0;
  padding: 2px 5px;
  background-color: #ccc;
  color: var(--black);
  cursor: default;
  border: 1px solid #525252;
  font-size: 12px;
  white-space: nowrap;
  list-style: none;
  display: inline-block;
}

div.token-input-dropdown-project {
  position: absolute;
  width: 100%;
  background-color: var(--white);
  overflow-x: hidden;
  cursor: default;
  font-size: 11px;
  z-index: 13;
  color: var(--black);
}

div.token-input-dropdown-project ul {
  margin: 0;
  padding: 0;
  display: block !important;
  max-height: 205px;
}

div.token-input-dropdown-project ul li {
  background-color: var(--white);
  font-size: 14px;
  padding: 3px;
  margin: 0;
  list-style-type: none;
  font-weight: 100 !important;
}

div.token-input-dropdown-project ul li.token-input-dropdown-item-project {
  background-color: var(--white);
}

div.token-input-dropdown-project ul li.token-input-dropdown-item2-project {
  background-color: var(--white);
}

div.token-input-dropdown-project ul li em {
  font-weight: bold;
  font-style: normal;
}

div.token-input-dropdown-project ul li.token-input-selected-dropdown-item-project {
  background-color: #ccc;
  color: var(--white);
}

/* Parsley-error */
ul.parsley-errors-list.filled,
ul.parsley-errors-list {
  font-size: 10px;
  list-style: outside none none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: left;
  top: 0;
}

ul.parsley-errors-list.filled li,
ul.parsley-errors-list li {
  padding: 0;
  text-align: left;
  color: #F00D0D;
}

* {
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

#main {
  position: relative;
  z-index: 3;
}

.scroll-content {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

.scroll-content {
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}

.scroll-content::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

section {
  display: block;
  position: relative;
  width: 100%;
}
section.landing {
  height: calc(100svh - var(--header-height));
  background-attachment: fixed;
  transition: linear 0.01s;
  -webkit-transition: linear 0.01s;
  -moz-transition: linear 0.01s;
  -ms-transition: linear 0.01s;
  -o-transition: linear 0.01s;
}
section.landing .flex .main-logo {
  max-width: 80%;
  margin: auto;
}
section .bottom-text {
  font-family: "DomaineTextLight";
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  text-align: center;
  color: var(--white);
  font-family: DomaineTextLight;
  font-weight: normal;
  font-size: 46px;
  line-height: 1.1em;
}

.container {
  display: block;
  position: relative;
  max-width: calc(100% - 160px);
  margin-left: auto;
  margin-right: auto;
}
.container.medium {
  width: 1200px;
}

.box {
  opacity: 0;
  transition: 1.5s;
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  -ms-transition: 1.5s;
  -o-transition: 1.5s;
}
.box.animated {
  opacity: 1;
}

.mw290 {
  max-width: 290px;
}

.nl {
  display: block;
  font-family: "DomaineTextLight";
  font-weight: normal;
  font-size: 16px;
  line-height: 1.25em;
  text-align: left;
  color: var(--black);
  margin-top: 10px;
}

#map {
  width: 100%;
  height: 100%;
  min-height: 80vh;
}

#mapdetails {
  width: 100%;
  width: 100%;
}
#mapdetails .map-cat {
  display: block;
  padding: 16px 0;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "DomaineTextLight";
  font-weight: normal;
  font-size: 16px;
  line-height: 1.25em;
  text-align: left;
  color: var(--black);
  border-bottom: 1px solid var(--black);
}
#mapdetails .map-cat:first-child {
  padding-top: 0;
}
#mapdetails .map-cat .inner-poi {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  font-family: "DomaineTextLight";
  font-weight: normal;
  font-size: 14px;
  line-height: 1.25em;
  text-align: left;
  color: var(--black);
  text-transform: initial;
}
#mapdetails .map-cat .inner-poi:first-child {
  padding-top: 16px;
}

.info {
  font-family: "DomaineTextLight";
  font-weight: normal;
  font-size: 14px;
  line-height: 1.25em;
  text-align: left;
  color: var(--black);
  text-transform: initial;
}

#page-team h2 {
  font-size: 32px;
}

#page-contact h2 {
  font-size: 46px;
}
#page-contact h2 a {
  font-size: 0.78em;
  display: inline-block;
  margin-bottom: 35px;
}

#anime {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  z-index: 9999;
  padding: 0 15px;
}

.animation {
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
}

.transition {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background-color: var(--orange);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease-out;
}
.transition.is-active {
  pointer-events: all;
  opacity: 1;
}

.banner {
  font-style: normal;
  font-weight: 450;
  font-size: 14px;
  line-height: 24px;
  leading-trim: both;
  text-edge: cap;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  background-color: var(--orange);
  padding: 0 20px;
  height: var(--banner-height);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.banner a {
  position: absolute;
  right: 20px;
}

.btn {
  font-family: "DomaineTextLight";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  padding: 0.5em 1.5em;
  background-color: var(--orange);
  border: 1px solid var(--orange);
  color: var(--white);
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  white-space: nowrap;
  text-decoration: none !important;
  text-transform: uppercase;
  min-width: 180px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media (hover: hover) {
  .btn:hover {
    color: var(--white) !important;
    background-color: var(--dark-orange) !important;
  }
}

#page-home section.landing {
  height: calc(100svh - var(--banner-height) - var(--header-height));
}
#page-home section.landing.hide-banner {
  height: calc(100svh - var(--header-height));
}

.space {
  display: block;
  width: 100%;
  height: var(--xsmall);
}

.ratio3by2 {
  aspect-ratio: 3/2;
}

.ratio7by5 {
  aspect-ratio: 10/9;
}

.ratio5by7 {
  aspect-ratio: 9/10;
}

.sold-out {
  position: absolute;
  width: 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background-color: var(--orange);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  font-family: "DomaineTextLight";
  font-style: normal;
  font-weight: 300;
  font-size: 30px;
  line-height: 90%;
  text-transform: uppercase;
  right: var(--medium);
  top: var(--medium);
  text-align: center;
}

.bl1 {
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--black);
}

#masterplan {
  position: relative;
}
#masterplan img {
  width: 100%;
}
#masterplan #mb {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
#masterplan #mf {
  position: relative;
  z-index: 2;
  width: 100%;
}
#masterplan .pop-up-btn {
  width: 2%;
  aspect-ratio: 1/1;
  position: absolute;
  background-color: var(--white);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
#masterplan .pop-up-btn::after {
  content: "";
  width: 50%;
  border-bottom: 1px solid var(--black);
  position: absolute;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
#masterplan .pop-up-btn::before {
  content: "";
  height: 50%;
  border-right: 1px solid var(--black);
  position: absolute;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media (hover: hover) {
  #masterplan .pop-up-btn:hover::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }
  #masterplan .pop-up-btn:hover::before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }
}
#masterplan .pop-up-text {
  position: absolute;
  background-color: var(--white);
  padding: 1% 4%;
  text-align: center;
  display: block;
  font-family: "DomaineTextLight";
  font-size: clamp(10px, 0.9vw, 24px);
  line-height: 1.2em;
  z-index: 2;
  opacity: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
#masterplan .pop-up-text a {
  font-size: 0.6em;
  cursor: default;
}
#masterplan .pop-up-text:after {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-width: 1vw 0.5vw 0 0.5vw;
  border-color: var(--white) transparent transparent transparent;
  transform: rotate(0deg);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
}

#b-video {
  width: 100%;
  display: block;
}

.slick-arrow {
  position: absolute;
  font-size: 0px;
  border: 0 none;
  color: transparent;
  background-color: transparent;
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  cursor: pointer;
  z-index: 2;
}
.slick-arrow.slick-next {
  background-image: url(/images/svg/right-arrow.svg);
  left: auto;
  right: 0;
  transform: translateY(-50%) translateX(150%);
  -webkit-transform: translateY(-50%) translateX(150%);
  -moz-transform: translateY(-50%) translateX(150%);
  -ms-transform: translateY(-50%) translateX(150%);
  -o-transform: translateY(-50%) translateX(150%);
}
.slick-arrow.slick-prev {
  left: 0;
  background-image: url(/images/svg/left-arrow.svg);
  transform: translateY(-50%) translateX(-150%);
  -webkit-transform: translateY(-50%) translateX(-150%);
  -moz-transform: translateY(-50%) translateX(-150%);
  -ms-transform: translateY(-50%) translateX(-150%);
  -o-transform: translateY(-50%) translateX(-150%);
}

.doubleSlide .slider-img-holder {
  display: flex;
  justify-content: space-between;
}
.doubleSlide .slider-img-holder img {
  width: calc(50% - var(--xsmall));
}

.unit-details {
  list-style: inside;
  text-align: center;
  list-style: none;
}
.unit-details li {
  font-size: 14px;
  line-height: 1.6em;
  align-items: center;
  text-align: center;
}

#on-the-market {
  flex-wrap: wrap;
}

.bg-video-holder {
  position: relative;
  overflow: hidden;
}
.bg-video-holder .bg-video {
  width: 100%;
  height: initial;
  aspect-ratio: 16/9;
}
.bg-video-holder a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 2;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#preloader .bg-loader {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#preloader .preloader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

#keys-holder p:last-child {
  margin-bottom: 0;
}

.center-center {
  position: absolute;
}

.ih {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--xsmall);
}
.ih img {
  margin-top: auto;
  margin-bottom: auto;
  width: 28px;
  height: auto;
}

/* ----- */
.gap-s {
  gap: var(--small);
}

.relative {
  position: relative;
}

.wmc {
  width: -moz-max-content;
  width: max-content;
}

.hmc {
  height: -moz-max-content;
  height: max-content;
}

.tint {
  background-color: rgba(0, 0, 0, 0.3);
}

.bg {
  background-position-x: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.flex,
.row {
  display: flex;
}

.column {
  display: flex;
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.space-between {
  justify-content: space-between;
}

.reverce,
.row-reverce {
  display: flex;
  flex-direction: row-reverse;
}

.align-center {
  align-items: center;
}

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

.ma {
  margin: auto;
}

.mla {
  margin-left: auto;
}

.mlra {
  margin-left: auto;
  margin-right: auto;
}

.mta {
  margin-top: auto;
}

.ptxl {
  padding-top: var(--xlarge);
}

.pbxl {
  padding-bottom: var(--xlarge);
}

.ptl {
  padding-top: var(--large);
}

.pbl {
  padding-bottom: var(--large);
}

.ptm {
  padding-top: var(--medium);
}

.pbm {
  padding-bottom: var(--medium);
}

.plm {
  padding-left: var(--medium);
}

.prm {
  padding-right: var(--medium);
}

.pts {
  padding-top: var(--small);
}

.pbs {
  padding-bottom: var(--small);
}

.ptxs {
  padding-top: var(--xsmall);
}

.pbxs {
  padding-bottom: var(--xsmall);
}

.plrs {
  padding-left: var(--small);
  padding-right: var(--small);
}

.plrm {
  padding-left: var(--medium);
  padding-right: var(--medium);
}

.mbs {
  margin-bottom: var(--small);
}

.mts {
  margin-top: var(--small);
}

.nowrap {
  white-space: nowrap;
}

.middle-center-position {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.middle-center-position.bottom-position {
  top: auto;
  bottom: 0;
}

.oh {
  overflow: hidden;
}

.btb1g {
  border-top: 1px solid var(--black);
}

.bb1w {
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--white);
}

.bb1b {
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--black);
}

.just-mobile {
  display: none;
}

.white {
  color: var(--white);
}

.orange {
  color: var(--orange);
}

.bg-orange {
  background-color: var(--orange);
}

.black {
  color: var(--black);
}

@media screen and (max-width: 1320px) {
  .plm {
    padding-left: 40px;
  }
  .prm {
    padding-right: 40px;
  }
  .container {
    max-width: calc(100% - 80px);
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --header-height: 80px;
    --banner-height: 40px;
    --orange: #DE9155;
    --dark-orange: #C75836;
    --black: #000000;
    --white: #ffffff;
    --xlarge: 160px;
    --large: 80px;
    --medium: 40px;
    --small: 20px;
    --xsmall: 10px;
  }
  .just-mobile {
    display: block;
  }
  .just-desktop {
    display: none !important;
  }
  header {
    justify-content: center;
  }
  header > div:first-child {
    position: absolute;
    left: var(--small);
  }
  header .call {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 1px solid var(--white);
  }
  header .call a {
    width: 50%;
    height: 100%;
    text-align: center;
    min-width: initial;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: var(--orange);
    color: var(--white);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    align-items: center;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
  }
  header .call a:first-child {
    border-right: 2px solid var(--white);
  }
  header nav ul li {
    margin-bottom: 0;
  }
  header nav ul li a {
    font-size: 20px;
  }
  header .logo {
    width: initial;
  }
  header .btn {
    padding: 4px 0;
    min-width: 200px;
  }
  .plrm {
    padding-left: 0;
    padding-right: 0;
  }
  .banner {
    font-size: 10px;
  }
  section.landing {
    background-attachment: initial;
    height: calc(100svh - var(--header-height) - 40px);
  }
  section .bottom-text {
    font-size: 24px;
  }
  #page-residences section.landing {
    background-position-x: 70%;
  }
  h1 {
    font-size: 30px;
  }
  h2,
  .h2 {
    max-width: 100%;
  }
  .container {
    max-width: 100%;
  }
  .m-plr20,
  .m-plrs {
    padding-left: var(--small);
    padding-right: var(--small);
  }
  .m-full-width {
    width: 100%;
    max-width: 100%;
  }
  .ptl,
  .m-ptl {
    padding-top: var(--large);
  }
  .m-mtl {
    margin-top: var(--large);
  }
  .m-mbm {
    margin-bottom: var(--medium);
  }
  .m-mbs {
    margin-bottom: var(--small);
  }
  .m-mbl {
    margin-bottom: var(--large);
  }
  .pbl,
  .m-pbl {
    padding-bottom: var(--large);
  }
  .ptm,
  .m-ptm {
    padding-top: var(--medium);
  }
  .pbm,
  .m-pbm {
    padding-bottom: var(--medium);
  }
  .plm {
    padding-left: 20px;
  }
  .prm {
    padding-right: 20px;
  }
  .m-column {
    flex-direction: column;
  }
  .grid_6 {
    width: 100%;
  }
  .grid_6.small-gap {
    width: 100%;
  }
  .grid_9,
  .grid_5 {
    width: 100%;
  }
  .grid_3.special-style {
    width: calc(100% - 20px);
    margin-left: auto;
    aspect-ratio: 1/1;
  }
  .grid_4.mrs {
    width: 100%;
  }
  .half-height {
    height: 100%;
  }
  .quote {
    font-size: 24px;
  }
  .quote span {
    font-size: 14px;
  }
  footer {
    padding-bottom: 50px;
  }
  footer #wg {
    width: 133px;
    max-width: 33%;
    margin: auto;
  }
  footer ul {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  footer ul li {
    border-bottom: 1px solid #000000;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  footer ul li:last-child {
    border-bottom: 0;
  }
  footer .footer-logo-holder {
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  footer .footer-logo-holder div {
    margin: 0 auto 40px;
  }
  footer .footer-logo-holder div:last-child {
    margin-bottom: 0;
  }
  footer .legal .flex {
    flex-wrap: wrap;
  }
  footer .legal .flex span:last-of-type {
    display: none;
  }
  footer .legal .flex span:last-of-type + a {
    width: 100%;
    margin-top: 4px;
  }
  .m-ml0 {
    margin-left: initial;
  }
  .mw290 {
    max-width: 100%;
  }
  #map {
    width: 100%;
  }
  #page-contact h2 {
    font-size: 28px;
  }
  .register input,
  .register select {
    font-size: 14px;
  }
  .box.animated {
    transition-delay: 0s;
  }
  .nl {
    padding-left: 20px;
  }
  .doubleSlide .slider-img-holder {
    display: flex;
    justify-content: initial;
  }
  .doubleSlide .slider-img-holder img {
    width: 100%;
  }
  .sold-out {
    width: 80px;
    height: 80px;
    font-size: 16px;
    line-height: 120%;
    right: var(--small);
    top: var(--small);
  }
  p {
    width: 100%;
    max-width: 100%;
  }
  .wmc {
    width: 100%;
  }
  .m-plr0 {
    padding-left: 0;
    padding-right: 0;
  }
  .middle-center-position.m-relative {
    position: relative;
    margin-top: var(--medium);
    padding: 0;
    top: auto;
    left: auto;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    padding-bottom: var(--medium);
  }
  .middle-center-position.m-relative .tint {
    background-color: initial;
  }
  .middle-center-position.m-relative .tint h2,
  .middle-center-position.m-relative .tint p {
    color: var(--black);
  }
  .slick-arrow.slick-prev {
    transform: translateY(-50%) translateX(50%);
    -webkit-transform: translateY(-50%) translateX(50%);
    -moz-transform: translateY(-50%) translateX(50%);
    -ms-transform: translateY(-50%) translateX(50%);
    -o-transform: translateY(-50%) translateX(50%);
  }
  .slick-arrow.slick-next {
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
  }
}
@media screen and (max-width: 760px) {
  #page-home h1 br {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */