/* Slider */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  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;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[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-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-child.vbox-inline,
.vbox-child.venoratio {
  max-width: 100%;
}

.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;
  height: 80vh;
}

.vbox-fit .vbox-child img,
.vbox-fit .vbox-child.venoratio {
  max-height: 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);
  }
}
@font-face {
  font-family: "PlayfairDisplay-Regular";
  src: url("/fonts/PlayfairDisplay-Regular.eot");
  src: url("/fonts/PlayfairDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("/fonts/PlayfairDisplay-Regular.woff2") format("woff2"), url("/fonts/PlayfairDisplay-Regular.woff") format("woff"), url("/fonts/PlayfairDisplay-Regular.ttf") format("truetype"), url("/fonts/PlayfairDisplay-Regular.svg#PlayfairDisplay-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PlayfairDisplay-Italic";
  src: url("/fonts/PlayfairDisplay-Italic.eot");
  src: url("/fonts/PlayfairDisplay-Italic.eot?#iefix") format("embedded-opentype"), url("/fonts/PlayfairDisplay-Italic.woff2") format("woff2"), url("/fonts/PlayfairDisplay-Italic.woff") format("woff"), url("/fonts/PlayfairDisplay-Italic.ttf") format("truetype"), url("/fonts/PlayfairDisplay-Italic.svg#PlayfairDisplay-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
:root {
  --Playfairdisplay: "PlayfairDisplay-Regular";
  --PlayfairDisplay-Italic: "PlayfairDisplay-Italic";
  --lato: "Lato", sans-serif;
  --white: #ffffff;
  --off-white: #f6f6f6;
  --black: #2c2c22;
  --tan: #e0c6a3;
  --green: #7e8365;
  --fiddle-leaf: #2c2c22;
  --medium-aquamarine: #9ad3b3;
  --tan-2: #ddbf99;
  --gray: #c4c4c4;
  --accessible-components-dark-grey: #9b9b9b;
  --accessible-components-dodger-blue: #1378d1;
  --accessible-components-white-smoke: whitesmoke;
  --headerheight: 60px;
  --xlarge: 140px;
  --large: 100px;
  --medium: 40px;
  --small: 20px;
  --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;
}

.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

.grid_3 {
  width: 25%;
  width: calc(25% - 15px);
  margin-right: 20px;
  margin-bottom: 20px;
}
.grid_3:nth-child(4n) {
  margin-right: 0;
}

.grid_4 {
  width: calc(33.33% - 20px);
  margin-right: 30px;
  margin-bottom: 30px;
}
.grid_4:nth-child(3n) {
  margin-right: 0;
}

.grid_5 {
  width: 41.67%;
}

.grid_6 {
  width: 50%;
}

.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 {
  display: flex;
  position: relative;
}

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

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

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

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

/* General */
body {
  font-size: 14px;
  line-height: 1.4;
  color: var(--brown);
  background-color: var(--off-white);
  font-family: var(--lato);
  font-weight: 400;
  margin: 0;
  padding: 0;
  font-weight: normal;
  text-align: left;
}

section {
  display: block;
  position: relative;
  width: 100%;
}
section.landing {
  overflow: hidden;
  height: 100vh;
}
section.landing.half {
  height: 70vh;
}
section.landing iframe {
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100vw;
  min-height: 110vh;
  background-position-x: center;
  background-size: cover;
  background-repeat: no-repeat;
  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: 1;
  aspect-ratio: 16/9;
}
section.landing > div {
  z-index: 2;
}
section.landing .container {
  padding-top: var(--headerheight);
}
section.landing .container h1 {
  display: flex;
  color: var(--white);
}
section.landing .container h1 .star {
  width: var(--medium);
  height: var(--medium);
  margin: auto var(--small) auto calc(-1 * var(--medium));
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
section.banner {
  height: 400px;
}
section.banner .container {
  padding-top: var(--headerheight);
}
section.banner .container h1 .star {
  width: var(--medium);
  height: var(--medium);
  margin: auto var(--small) auto calc(-1 * var(--medium));
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.scroll {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--medium);
  margin: auto;
  z-index: 2;
  width: -moz-max-content;
  width: max-content;
}
.scroll img {
  width: 100%;
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  font-family: var(--Playfairdisplay);
}

h1 {
  font-family: var(--Playfairdisplay);
  font-weight: 400;
  z-index: 2;
  font-size: 46px;
  color: var(--off-white);
}
h1.small {
  font-size: 36px;
}
h1.large {
  font-size: 60px;
}

.italic,
em {
  font-family: var(--PlayfairDisplay-Italic);
}
.italic.lato,
em.lato {
  font-family: var(--lato);
}

.italic-2 {
  font-style: italic;
}

h2,
.h2 {
  color: var(--black);
  font-size: 40px;
}
h2.title::after,
.h2.title::after {
  content: "";
  display: block;
  margin: auto;
  width: 120px;
  height: 2px;
  background-color: var(--medium-aquamarine);
  opacity: 0.6;
  margin-top: var(--xsmall);
}
h2.small,
.h2.small {
  font-size: 30px;
}
h2.large,
.h2.large {
  font-size: 46px;
}

p {
  color: var(--fiddle-leaf);
  font-family: var(--lato);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4em;
}
p.large {
  line-height: 150%;
  color: rgba(44, 44, 34, 0.8);
}
p.bold {
  font-weight: 600;
}
p.extra-bold {
  font-weight: 700;
}

.price {
  font-size: 20px;
}

.fs13 {
  font-size: 13px;
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: var(--headerheight);
  display: flex;
  align-items: center;
  padding: 0 5%;
  border-bottom: 1px solid var(--off-white);
  z-index: 99;
}
header .main-logo {
  width: 120px;
}
header menu {
  display: flex;
  margin-left: auto;
  list-style: none;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}
header menu ul {
  list-style: none;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
header menu ul li {
  padding-left: var(--small);
  padding-right: var(--small);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  width: 100%;
}
header menu ul li a {
  text-transform: uppercase;
  font-family: var(--lato);
  font-size: 11px;
  font-weight: 400;
  color: var(--white);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  width: -moz-max-content;
  width: max-content;
}
header menu ul li ol {
  list-style: none;
  width: calc(-moz-max-content + var(--small));
  width: calc(max-content + var(--small));
  padding: var(--small);
  background-color: var(--off-white);
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  width: -moz-max-content;
  width: max-content;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
header menu ul li ol li {
  width: 100%;
  padding: var(--xsmall);
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--xsmall);
  opacity: 0.8;
  border: 1px solid transparent;
}
header menu ul li ol li:last-child {
  margin-bottom: 0;
}
header menu ul li ol li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: default;
}
header menu ul li ol li a span {
  display: flex;
}
header menu ul li ol li a span.project-image-holder {
  position: relative;
  width: 100px;
}
header menu ul li ol li a span.project-image-holder img.ratio65by24 {
  aspect-ratio: 56/24;
  -o-object-fit: cover;
     object-fit: cover;
}
header menu ul li ol li a span.project-image-holder .darklayer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
header menu ul li ol li a span.project-image-holder img.center-position {
  position: absolute;
  margin: auto;
  height: 16px;
  display: none;
}
header menu ul li ol li a span.project-image-holder .comingsoon {
  font-size: 10px;
  line-height: 1;
  font-family: var(--lato);
  font-weight: 600;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 50%;
  text-decoration: underline;
  color: var(--white);
  left: 0;
  right: 0;
  margin: auto;
  display: none;
  z-index: 2;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
header menu ul li ol li a span.project-image-holder .comingsoon.active {
  display: block;
}
header menu ul li ol li a span.project-name {
  display: block;
  color: var(--black);
  font-family: var(--Playfairdisplay);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4em;
  padding: calc(var(--small) / 2) var(--small);
  text-align: left;
  text-transform: initial;
}
header menu ul li ol li a span.project-name small {
  font-size: 0.8em;
  font-style: normal;
}
header menu ul li ol li a span.project-name span {
  font-family: var(--lato);
  color: var(--fiddle-leaf);
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5em;
  text-align: left;
  display: block;
}
header menu ul li ol li.active {
  opacity: 1;
}
header menu ul li ol li.active a {
  cursor: pointer;
}
header menu ul li ol li.active a span img.center-position {
  display: block;
}
header .btn {
  margin-left: var(--large);
}
header._bg {
  background-color: var(--tan);
}
header.fadeIn {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

@media (hover: hover) {
  .no-touch menu ul li:hover {
    background-color: var(--white);
  }
  .no-touch menu ul li:hover a {
    color: var(--black);
  }
  .no-touch menu ul li:hover ol.action-holder {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  .no-touch menu ul li:hover ol li:hover {
    box-shadow: inset 0px 0px 10px 5px rgba(0, 0, 0, 0.4);
  }
}

/* enquiry */
.b_submit {
  padding: 12px 0 11px;
  margin-top: 10px;
  background-color: var(--white);
  color: var(--brown);
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.register {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.register form .grid_6 {
  width: calc(50% - 10px);
  margin-right: 20px;
  margin-bottom: 20px;
  padding: 0 0;
  border: 1px solid var(--black);
  align-items: center;
}
.register form .grid_6 img {
  margin-left: 12px;
}
.register form .grid_6:nth-child(odd) {
  margin-right: 0;
}
.register form .grid_12 {
  border: 1px solid var(--black);
  margin-bottom: 20px;
  align-items: center;
  padding: 0 0;
}

.formbox {
  margin: 0 auto;
  width: 100%;
}

input,
select,
textarea {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0 none;
  width: 100%;
  padding: 8px 0;
  font-family: var(--lato);
  font-weight: 400;
  font-size: 14px;
  display: block;
  height: 52px;
  color: var(--fiddle-leaf);
  position: static;
  padding: 12px;
}
input option,
select option,
textarea option {
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px !important;
}
input option._sub,
select option._sub,
textarea option._sub {
  font-weight: bold;
}
input option._projects,
select option._projects,
textarea option._projects {
  padding-left: var(--xsmall);
}
input[type=submit],
select[type=submit],
textarea[type=submit] {
  border: 1px solid var(--black);
  width: 126px;
  margin: auto;
}

select {
  background-image: url(/images/svg/arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: calc(100% - 4px) center;
}

textarea {
  resize: none;
  width: 100%;
  min-height: 120px;
}

.privacy {
  font-family: var(--lato);
  font-style: italic;
  font-size: 14px;
  padding-bottom: var(--small);
}

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

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

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

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

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  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;
}

/*footer*/
footer {
  width: 100%;
  background-color: var(--white);
  padding: var(--medium) 0 0;
  border-top: 1px solid var(--green);
  overflow: hidden;
  position: relative;
  z-index: 4;
}
footer .footer-acknowledge {
  text-align: center;
  max-width: 960px;
  padding-top: 50px;
  padding-bottom: 50px;
}
footer .bg-fiddle-leaf {
  background-color: var(--fiddle-leaf);
}
footer ._logo {
  display: block;
  margin-right: var(--small);
}
footer ._logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
footer .compo-1 {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--green);
  align-items: center;
}
footer .compo-1 > a {
  color: var(--white);
  margin-right: var(--small);
  letter-spacing: 0.5px;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  text-transform: uppercase;
}
footer .compo-1 > a._logo {
  margin-right: var(--medium);
}
footer .compo-1 > a.social-media img {
  width: 18px;
  height: 18px;
}
footer .compo-1 > a.btn {
  border: 1px solid var(--green);
  color: var(--white);
  margin-left: auto;
  margin-right: 0;
}
@media (hover: hover) {
  footer .compo-1 > a.btn:hover {
    color: var(--fiddle-leaf);
  }
}
footer .compo-2 {
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .compo-2 a,
footer .compo-2 p {
  font-family: var(--PlayfairDisplay-Italic);
  font-size: 10px;
  font-weight: 400;
  color: var(--white);
  padding: 0;
  margin: 0 var(--small) 0 0;
  letter-spacing: 0.1em;
}

/* Token Style */
ul.token-input-list-project {
  border: 0 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: #000;
  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: #fff;
  overflow-x: hidden;
  cursor: default;
  font-size: 11px;
  z-index: 13;
  color: #000000;
}

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: #fff;
  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: #fff;
}

div.token-input-dropdown-project ul li.token-input-dropdown-item2-project {
  background-color: #fff;
}

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(--fiddle-leaf);
}

/* 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: absolute;
  text-align: left;
  bottom: 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;
}

.lazy-fade {
  opacity: 0;
  transition: 1.5s;
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  -ms-transition: 1.5s;
  -o-transition: 1.5s;
}
.lazy-fade.fadeIn {
  opacity: 1;
}

.box {
  width: 100%;
  padding-left: var(--small);
  padding-right: var(--small);
}

.btn {
  gap: 10px;
  border: 1px solid var(--white);
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  justify-content: space-between;
  padding: 14px 26px;
  font-family: var(--lato);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.btn.dark {
  border: 1px solid var(--black);
  color: var(--black);
}
@media (hover: hover) {
  .btn.dark:hover {
    background-color: var(--black);
    color: var(--white);
  }
}
.btn.green {
  border: 1px solid var(--medium-aquamarine);
  color: var(--medium-aquamarine);
}
@media (hover: hover) {
  .btn.green:hover {
    background-color: var(--medium-aquamarine);
    color: var(--white);
  }
}
@media (hover: hover) {
  .btn:hover {
    background-color: var(--off-white);
    color: var(--black);
  }
}
.btn.g-4 {
  width: 25%;
  margin: 0;
  justify-content: center;
  align-items: center;
  font-weight: 900;
}

.view {
  border: 1px solid var(--white);
  color: var(--white);
  background-color: var(--medium-aquamarine);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  font-family: var(--lato);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  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) {
  .search-cat .view {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    overflow: hidden;
  }
  .search-cat:hover .view {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

.backto {
  text-decoration: underline;
}

.fullyvideo {
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.container {
  position: relative;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.container.medium {
  width: 1060px;
}
.container.large {
  width: 1280px;
}
.container.small {
  width: 700px;
}

.pave {
  height: auto;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  overflow: hidden;
}
.pave > div {
  aspect-ratio: 5/4;
  -o-object-fit: cover;
     object-fit: cover;
  width: 50%;
  display: flex;
  justify-content: center;
  height: -moz-max-content;
  height: max-content;
}
.pave > div.two {
  padding: 10%;
  margin-top: 20%;
}
.pave > div.two.column {
  margin: auto;
}
.pave > div.three {
  background-color: var(--fiddle-leaf);
  margin-top: -20%;
}
.pave > div.three .column {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.why {
  list-style: none;
  gap: 20px;
}
.why p {
  width: calc(50% - 20px);
  color: var(--fiddle-leaf);
  border-left: 2px solid var(--gray);
  padding: 8px 0 8px 16px;
  font-family: Lato, sans-serif;
  font-weight: 400;
  margin-bottom: 0;
  line-height: normal;
  letter-spacing: 0;
  min-height: 3em;
  display: flex;
  align-items: center;
}

#page-news .why p,
#page-events .why p {
  width: 100%;
}

.sec-home4-four-compo-1 {
  gap: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sec-home4-four-compo-1 .sec-home4-four-compo-1-1 {
  width: calc(50% - 20px);
  gap: 16px;
  background-color: var(--white);
  color: var(--fiddle-leaf);
  border-radius: 10px;
  align-items: center;
  padding: 10px 16px;
  font-family: Lato, sans-serif;
  font-weight: 400;
  display: flex;
}
.sec-home4-four-compo-1 .sec-home4-four-compo-1-1 .icon-div {
  width: 45px;
  height: 45px;
  background-color: #f6f6f6;
  border-radius: 100px;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
}
.sec-home4-four-compo-1 .sec-home4-four-compo-1-1 .image-hide {
  display: none;
}

#tattoo-holder {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  height: 100%;
  display: flex;
  justify-content: center;
  margin: 0;
}

.slick-arrow {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 4px solid var(--white);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  margin: 40px;
  color: transparent;
  left: 0;
  z-index: 2;
}
.slick-arrow.slick-prev {
  border-top: 0;
  border-right: 0;
}
.slick-arrow.slick-next {
  right: 0;
  left: initial;
  border-bottom: 0;
  border-left: 0;
}

#rolling {
  overflow: hidden;
}
#rolling .content {
  border-top: 0.5px solid rgba(115, 120, 89, 0.5);
  border-bottom: 0.5px solid rgba(115, 120, 89, 0.5);
  display: flex;
  width: -moz-max-content;
  width: max-content;
  color: rgba(115, 120, 89, 0.3);
  white-space: nowrap;
  flex-direction: row;
  padding-top: 8px;
  padding-bottom: 8px;
  font-family: var(--lato);
  font-size: 24px;
  font-weight: 300;
  display: flex;
  overflow: hidden;
  text-transform: initial;
}
#rolling .content * {
  display: flex;
  background-color: transparent !important;
  color: rgba(115, 120, 89, 0.3) !important;
}
#rolling .content.right-moving {
  border-top: 0;
}

.location-tile {
  display: flex;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: calc(25% - 15px);
  margin-right: 30px;
  position: relative;
  cursor: default;
}
.location-tile:last-child {
  margin-right: 0;
}
.location-tile .n {
  width: 37px;
  z-index: 2;
}
.location-tile .project-name {
  color: var(--white);
  font-family: var(--lato);
  font-size: 16px;
  font-weight: 400;
  z-index: 2;
  padding-bottom: var(--xsmall);
}
.location-tile .project-location {
  z-index: 2;
  color: var(--white);
  font-family: Playfair Display, sans-serif;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 120%;
}
.location-tile .h3-v4 {
  color: #2c2c22;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Playfairdisplay, Times New Roman, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}
.location-tile::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: hard-light;
}
.location-tile .btn {
  width: 170px;
  text-align: center;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
}
.location-tile.active {
  cursor: pointer;
}
.location-tile.active .btn {
  background-color: var(--medium-aquamarine);
  color: var(--black);
  border: 1px solid var(--black);
}
@media (hover: hover) {
  .location-tile:hover .btn {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

.stay-in-touch {
  background-color: var(--fiddle-leaf);
  border-top: 2px solid var(--white);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  pointer-events: none;
  pointer-events: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.stay-in-touch .close-stay {
  background-color: #1d281f;
  padding: 10px;
  position: absolute;
  top: 5%;
  bottom: auto;
  left: auto;
  right: 5%;
  z-index: 2;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
.stay-in-touch .close-stay img {
  vertical-align: middle;
}
.stay-in-touch form {
  background-color: transparent;
}
.stay-in-touch form h2 {
  color: var(--white);
}
.stay-in-touch form input {
  background-color: transparent;
  color: var(--white);
  text-align: left;
}
.stay-in-touch form input[type=submit] {
  text-align: center;
  width: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
@media (hover: hover) {
  .stay-in-touch form input[type=submit]:hover {
    background-color: var(--white);
    color: var(--fiddle-leaf);
  }
}
.stay-in-touch form input:-webkit-input-placeholder,
.stay-in-touch form textarea:-webkit-input-placeholder {
  color: var(--white);
  opacity: 1;
}
.stay-in-touch form input::-webkit-input-placeholder,
.stay-in-touch form textarea::-webkit-input-placeholder {
  color: var(--white);
  opacity: 1;
}
.stay-in-touch form input:-moz-placeholder,
.stay-in-touch form textarea:-moz-placeholder {
  color: var(--white);
  opacity: 1;
}
.stay-in-touch form input::-moz-placeholder,
.stay-in-touch form textarea::-moz-placeholder {
  color: var(--white);
  opacity: 1;
}
.stay-in-touch form .grid_6 {
  border: 1px solid var(--white);
  width: calc(50% - 10px);
  margin-bottom: 20px;
  padding-left: var(--small);
}
.stay-in-touch form .grid_6:last-child {
  padding: 0;
}
.stay-in-touch.visible {
  pointer-events: initial;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.dark-layer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.bg-dark-layer {
  background-color: rgba(0, 0, 0, 0.3);
}

ul.list {
  padding-left: 1em;
}
ul.list * {
  font-family: var(--lato);
  font-weight: 300;
}

.question-wrap {
  border-bottom: 1px solid var(--fiddle-leaf);
  margin-bottom: var(--small);
}
.question-wrap .question {
  position: relative;
  cursor: pointer;
}
.question-wrap .question p {
  max-width: 90%;
  color: var(--black);
  letter-spacing: 0.5px;
  white-space: normal;
  align-items: center;
  font-family: var(--lato);
  font-size: 19px;
  font-weight: 700;
  line-height: 120%;
  display: flex;
  padding-bottom: var(--small);
  margin-bottom: 0;
}
.question-wrap .question::after, .question-wrap .question::before {
  content: "";
  width: 11px;
  height: 1px;
  border-bottom: 1px solid var(--fiddle-leaf);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.question-wrap .question::before {
  border-bottom: 0 none;
  border-right: 1px solid var(--fiddle-leaf);
  right: 15px;
  width: 1px;
  height: 11px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.question-wrap .question.active::before {
  height: 0;
}
.question-wrap .answer {
  display: none;
}
.question-wrap .answer p {
  padding-bottom: var(--small);
}

.ribbon {
  background-color: rgba(221, 191, 153, 0.8);
}
.ribbon .container {
  padding: 0 !important;
}
.ribbon .container * {
  color: var(--fiddle-leaf) !important;
  margin-bottom: 0;
}
.ribbon .container .location-icon {
  margin-right: var(--xsmall);
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}

.gap11 {
  gap: 12px;
}
.gap11 .grid_6 {
  width: calc(50% - 6px);
}

.gap80 {
  gap: 80px;
}
.gap80 .grid_6 {
  width: calc(50% - 40px);
}

.gold-line {
  display: block;
  position: absolute;
  width: 1px;
  height: 240px;
  border-right: 1px solid var(--tan);
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  transform: translateY(-70%);
  -webkit-transform: translateY(-70%);
  -moz-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  -o-transform: translateY(-70%);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition-delay: 0.5s;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}

.gl .gold-line {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

#page-news article,
#page-events article {
  display: flex;
  border-bottom: 1px solid var(--fiddle-leaf);
}
#page-news article img,
#page-events article img {
  width: 260px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: var(--medium);
}
#page-news article .time,
#page-events article .time {
  color: var(--fiddle-leaf);
  letter-spacing: 0;
  font-size: 0.8em;
  font-weight: 300;
  line-height: 1;
}
#page-news article .grab-line,
#page-events article .grab-line {
  margin: 0;
}

#page-news.details article img,
#page-events.details article img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: var(--medium);
}

#page-news.details header,
#page-events.details header {
  background-color: var(--tan) !important;
}

.readarticle {
  color: var(--tan-2);
  text-align: center;
  letter-spacing: 0;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-decoration: none;
  display: flex;
  position: relative;
  padding: var(--xsmall);
  width: -moz-max-content;
  width: max-content;
  position: relative;
  text-transform: uppercase;
}
.readarticle::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--fiddle-leaf);
  top: 0;
  left: 0;
  right: 0;
  -webkit-clip-path: inset(calc(100% - 1px) 0 0 0);
          clip-path: inset(calc(100% - 1px) 0 0 0);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  z-index: -1;
}
.readarticle:hover::before {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.gallery {
  z-index: 1;
  gap: 24px;
  flex-direction: row;
  align-items: center;
  display: flex;
  position: relative;
}
.gallery .col1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  row-gap: 24px;
}
.gallery .col2 {
  display: flex;
  flex-direction: column;
  height: 100%;
  row-gap: 24px;
}
.gallery .col3 {
  display: flex;
  flex-direction: column;
  height: 100%;
  row-gap: 24px;
}
.gallery .slick-arrow {
  display: none !important;
}

.pro-info {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: var(--small);
}
.pro-info p {
  font-size: 19px;
  line-height: 1.7em;
  font-weight: 700;
}

.green-star {
  width: 54px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.eye {
  width: 36px;
}

.eye-holder {
  gap: 24px;
}
.eye-holder p {
  letter-spacing: 0.5px;
  font-size: 11px;
  line-height: 1.8em;
  font-family: var(--lato);
  font-weight: 400;
}

#map {
  height: calc(100vh - var(--headerheight));
  width: 75%;
}
#map.full-width {
  width: 100%;
}

.project-address {
  color: var(--white);
  font-size: 18px;
  width: -moz-max-content;
  width: max-content;
}

.get-direction {
  background-image: url(/images/svg/location-white.svg);
  background-position: 6px center;
  background-repeat: no-repeat;
  background-size: 14px;
}

.map-details-holder {
  padding: var(--medium);
  margin-bottom: 0;
  width: 25%;
}

#mapdetails {
  width: 100%;
}
#mapdetails .map-cat {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.2em;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--white);
}
#mapdetails .inner-poi {
  border-top: 1px solid var(--white);
  padding-top: 10px;
  margin-top: 10px;
}
#mapdetails .inner-poi a {
  font-family: var(--lato);
  font-weight: 300;
  font-size: 13px;
  display: block;
  letter-spacing: 0.05em;
}

.property-search-tile * {
  color: var(--white) !important;
  letter-spacing: 0.025em;
  line-height: 1 !important;
  font-size: 12px !important;
}
.property-search-tile .property-details {
  font-size: 12px;
  font-weight: 400;
  display: flex;
}
.property-search-tile .p-n {
  display: block;
}
.property-search-tile .bb-green {
  border-bottom: 1px solid var(--medium-aquamarine);
}
.property-search-tile .vd {
  font-size: 12px !important;
  text-transform: uppercase;
  padding: 6px 18px;
  border: 1px solid var(--white);
}
.property-search-tile .apply-hover {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media (hover: hover) {
  .property-search-tile:hover .apply-hover {
    background-color: var(--fiddle-leaf);
  }
}

.play-btn {
  width: 80px;
  pointer-events: none;
}

.sticky {
  position: sticky;
  top: calc(var(--headerheight) + var(--large));
}

.sticky-top {
  position: sticky;
  top: var(--headerheight);
}
.sticky-top.top0 {
  top: 0;
}
.sticky-top img {
  height: 100vh;
}

div.login-holder {
  width: -moz-max-content;
  width: max-content;
  position: fixed;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 9;
  background-color: var(--tan-2);
  padding: var(--small);
  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  opacity: 0;
}
div.login-holder ol {
  list-style: none;
  width: -moz-max-content;
  width: max-content;
}
div.login-holder ol li {
  width: 100%;
  padding: var(--xsmall);
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.6;
  margin-bottom: var(--xsmall);
}
div.login-holder ol li:last-child {
  margin-bottom: 0;
}
div.login-holder ol li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: default;
  margin: 0;
  width: 100%;
}
div.login-holder ol li a span {
  display: flex;
}
div.login-holder ol li a span.project-image-holder {
  position: relative;
  width: 100px;
}
div.login-holder ol li a span.project-image-holder img.bg-img {
  width: 100%;
  aspect-ratio: 56/24;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
div.login-holder ol li a span.project-image-holder .darklayer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
div.login-holder ol li a span.project-image-holder img.center-position {
  position: absolute;
  margin: auto;
  height: 16px;
}
div.login-holder ol li a span.project-name {
  display: flex;
  color: var(--black);
  font-family: var(--Playfairdisplay);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4em;
  text-align: left;
  text-transform: initial;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  padding: 0 var(--small);
}
div.login-holder ol li a span.project-name small {
  font-family: var(--lato);
  color: var(--fiddle-leaf);
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5em;
  text-align: left;
  display: block;
}
div.login-holder ol li a .btn-similator {
  border: 1px solid var(--black);
  color: var(--black);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  justify-content: space-between;
  font-family: var(--lato);
  font-size: 12px;
  font-weight: 300;
  text-decoration: none;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  padding: 4px var(--xsmall);
  margin: 8px auto 0;
  line-height: normal;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
div.login-holder ol li.active {
  opacity: 1;
}
div.login-holder ol li.active a {
  cursor: pointer;
}
@media (hover: hover) {
  div.login-holder ol li.active {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
  }
  div.login-holder ol li.active:hover {
    box-shadow: inset 0px 0px 10px 5px rgba(0, 0, 0, 0.6);
  }
  div.login-holder ol li.active:hover .btn-similator {
    background-color: var(--tan);
  }
}
div.login-holder .ls.close {
  text-decoration: underline;
  display: flex;
  margin: auto auto var(--xsmall);
  width: -moz-max-content;
  width: max-content;
  color: var(--fiddle-leaf);
}
div.login-holder.active {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  opacity: 1;
}

.ls.active {
  text-decoration: underline;
}

.state {
  font-size: 0.7em;
}

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

#th {
  position: fixed;
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  color: var(--black);
  top: 0;
  left: 0;
  padding: 20px;
}
#th h2,
#th p {
  text-align: center;
  padding-bottom: var(--medium) !important;
}

.column-2 {
  -moz-column-count: 2;
       column-count: 2;
}

#art-c,
#category1-c {
  background-image: url(/images/svg/Novus_Glyph_Art.svg);
  background-size: 16px;
  background-position: 100% 2px;
  background-repeat: no-repeat;
}

#cafe-c,
#category2-c {
  background-image: url(/images/svg/Novus_Glyph_Cafes.svg);
  background-size: 16px;
  background-position: 100% 2px;
  background-repeat: no-repeat;
}

#bar-c,
#category3-c {
  background-image: url(/images/svg/Novus_Glyph_Bar.svg);
  background-size: 16px;
  background-position: 100% 2px;
  background-repeat: no-repeat;
}

#treasure-c,
#category4-c {
  background-image: url(/images/svg/Novus_Glyph_treasure.svg);
  background-size: 16px;
  background-position: 100% 2px;
  background-repeat: no-repeat;
}

#category5-c {
  background-image: url(/images/svg/category5-c.svg);
  background-size: 16px;
  background-position: 100% 2px;
  background-repeat: no-repeat;
}

#category7-c {
  background-image: url(/images/svg/category7-c.svg);
  background-size: 16px;
  background-position: 100% 2px;
  background-repeat: no-repeat;
}

.close_thankYou {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--medium);
  border: 1px solid var(--black);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.details-icon {
  width: 20px;
  margin: 0 4px;
}
.details-icon.large {
  width: 30px;
}

.center-gold-line {
  width: 1px;
  height: 100%;
  left: 0;
  right: 0;
  background-color: var(--tan);
  z-index: 2;
  position: absolute;
  bottom: 0;
  margin: auto;
  pointer-events: none;
}

.landing .center-gold-line {
  height: 200px;
}

#search-box {
  width: -moz-max-content;
  width: max-content;
  max-width: 98%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
#search-box select,
#search-box input {
  border: 1px solid var(--off-white);
  margin-right: var(--small);
  padding: 4px 32px 4px 8px;
  height: var(--small);
  min-height: 2em;
  text-align: left;
  width: -moz-max-content !important;
  width: max-content !important;
  background-color: var(--fiddle-leaf);
  color: var(--off-white);
  text-transform: uppercase;
  font-size: 12px;
}
#search-box select[type=submit],
#search-box input[type=submit] {
  margin-right: 0;
  color: var(--off-white);
  background-color: var(--fiddle-leaf);
  cursor: pointer;
  text-align: center;
  padding: 4px 16px;
}
#search-box select {
  background-image: url(/images/svg/arrow-down-white.svg);
  background-size: 14px;
}
#search-box option {
  text-transform: initial !important;
}
#search-box input:-webkit-input-placeholder,
#search-box textarea:-webkit-input-placeholder {
  color: var(--white);
  opacity: 1;
}
#search-box input::-webkit-input-placeholder,
#search-box textarea::-webkit-input-placeholder {
  color: var(--white);
  opacity: 1;
}
#search-box input:-moz-placeholder,
#search-box textarea:-moz-placeholder {
  color: var(--white);
  opacity: 1;
}
#search-box input::-moz-placeholder,
#search-box textarea::-moz-placeholder {
  color: var(--white);
  opacity: 1;
}
#search-box input:-ms-input-placeholder,
#search-box textarea:-ms-input-placeholder {
  opacity: 0.5;
}
#search-box input:focus::-webkit-input-placeholder,
#search-box textarea:focus::-webkit-input-placeholder {
  opacity: 0.5;
}
#search-box input:focus:-moz-placeholder,
#search-box textarea:focus:-moz-placeholder {
  opacity: 0.5;
}
#search-box input:focus::-moz-placeholder,
#search-box textarea:focus::-moz-placeholder {
  opacity: 0.5;
}
#search-box input:focus:-ms-input-placeholder,
#search-box textarea:focus:-ms-input-placeholder {
  opacity: 0.5;
}

#page-findyourhome {
  height: auto;
}

#page-contactus header {
  background-color: var(--tan);
}

.info {
  width: 260px;
}
.info .poi-img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.info .poi-img + p {
  font-weight: bold;
  font-size: 12px;
  padding: var(--xsmall);
}

.gm-style-iw-d {
  width: 100% !important;
  max-height: -moz-max-content !important;
  max-height: max-content !important;
  height: -moz-max-content !important;
  height: max-content !important;
  padding: 0;
  overflow: hidden !important;
}

.gm-style .gm-style-iw-c {
  padding: 0 !important;
}

button[title=Close][aria-label=Close] {
  color: var(--white);
  background-color: var(--tan) !important;
  top: 0 !important;
  right: 0 !important;
  position: absolute !important;
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important;
  -moz-border-radius: 6px !important;
  -ms-border-radius: 6px !important;
  -o-border-radius: 6px !important;
  opacity: 0.7 !important;
}

.getDirection {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 10%;
  padding: var(--small);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: var(--white);
}
.getDirection a {
  text-transform: uppercase;
}

#page-find-a-home #map {
  height: 70vh;
  height: 70svh;
}

.addTofavourites img {
  padding-right: 6px;
}

.ofh {
  overflow: hidden;
}

.parallax {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.parallax img {
  width: 100%;
  height: calc(100% + 200px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  /*Startposition*/
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  /*Smoothtransition*/
  transition: transform 0.05s ease;
  -webkit-transition: transform 0.05s ease;
  -moz-transition: transform 0.05s ease;
  -ms-transition: transform 0.05s ease;
  -o-transition: transform 0.05s ease;
}

.calendly-badge-widget .calendly-badge-content {
  display: flex !important;
  width: -moz-max-content !important;
  width: max-content !important;
  justify-content: center !important;
  align-items: center !important;
  font-family: var(--Playfairdisplay) !important;
  font-weight: 500 !important;
  font-size: 16px !important;
}
.calendly-badge-widget .calendly-badge-content span {
  font-family: var(--PlayfairDisplay-Italic);
  font-weight: 300 !important;
  font-weight: 500 !important;
  font-size: 16px !important;
}

.Playfairdisplay {
  font-family: var(--Playfairdisplay);
}

/* ------------------------ */
/* ------------------------ */
/* ------------------------ */
.Playfairdisplay {
  font-family: var(--Playfairdisplay);
}

.uppercase {
  text-transform: uppercase;
}

.space {
  display: block;
  padding: 0 6px;
}
.space.black {
  color: var(--black);
}

.para {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 75vh;
}

.aspect1by1 {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.aspect2by3 {
  aspect-ratio: 2/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.aspect3by2 {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.aspect16by9 {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.z2 {
  z-index: 2;
}

.bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg.bottom {
  background-position: bottom;
}
.bg.para-vission {
  background-attachment: fixed;
}

.center-position {
  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;
}

.row {
  display: flex;
  position: relative;
}
.row.wrap {
  flex-wrap: wrap;
}

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

.col,
.column {
  display: flex;
  flex-direction: column;
  position: relative;
}

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

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

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

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

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

.mla {
  margin-left: auto;
}

.mra {
  margin-right: auto;
}

.mrs {
  margin-right: var(--small);
}

.ma {
  margin: auto;
}

.mta {
  margin-top: auto;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.full-vh {
  height: 100vh;
  height: 100svh;
}

/*colors*/
.white {
  color: var(--white);
}

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

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

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

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

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

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

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

.tan-2 {
  color: var(--tan-2);
}

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

.fiddle-leaf {
  color: var(--fiddle-leaf);
}

.medium-aquamarine {
  color: var(--medium-aquamarine);
}

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

.accessible-components-dark-grey {
  color: var(--accessible-components-dark-grey);
}

.accessible-components-dodger-blue {
  color: var(--accessible-components-dodger-blue);
}

.accessible-components-white-smoke {
  color: var(--accessible-components-white-smoke);
}

/*spaces*/
.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);
}

.ps {
  padding: var(--small);
}

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

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

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

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

.mbxs {
  margin-bottom: var(--xsmall);
}

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

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

.p10 {
  padding: 10%;
}

.plr5 {
  padding-left: 5%;
  padding-right: 5%;
}

.just-mobile {
  display: none;
}

.ofh {
  overflow: hidden;
}

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

@media screen and (max-width: 1000px) {
  :root {
    --headerheight: 82px;
    --xlarge: 82px;
    --large: 40px;
    --medium: 20px;
    --small: 20px;
    --xsmall: 10px;
  }
  .just-desktop {
    display: none !important;
  }
  .just-mobile {
    display: block;
  }
  .just-mobile.row, .just-mobile.column {
    display: flex;
  }
  h1 {
    font-size: 8vw;
  }
  h1 br {
    display: none;
  }
  h2,
  .h2 {
    font-size: 28px;
    line-height: 1.2em;
  }
  h2.small,
  .h2.small {
    font-size: 18px;
    line-height: 1.4em;
  }
  .italic,
  em {
    font-style: italic;
  }
  section.landing {
    height: calc(100vh - 45px);
    height: calc(100svh - 45px);
  }
  section.landing .container h1 {
    display: flex;
    flex-direction: column;
    color: var(--white);
    font-size: 8vw;
    text-align: center;
    line-height: 1.2em;
    margin-bottom: var(--large);
  }
  section.landing .container h1 .star {
    margin: auto;
    width: 50px;
    height: 50px;
    margin-bottom: var(--medium);
  }
  section.banner .container h1 {
    flex-direction: column;
    width: 100%;
    margin: auto auto var(--large) auto;
    text-align: center;
    justify-content: center;
  }
  section.banner .container h1 .star {
    margin: 0 auto;
    width: var(--large);
    height: var(--large);
  }
  header {
    padding: 0;
  }
  header .btn {
    margin: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    background-color: var(--tan);
    text-align: center;
    justify-content: center;
  }
  header menu ul li {
    height: -moz-max-content;
    height: max-content;
  }
  header menu ul li ol {
    position: fixed;
    width: 100%;
    height: calc(100% - var(--headerheight));
    top: initial;
    bottom: 0;
    left: 0;
    z-index: 9;
  }
  header menu ul li ol li.close {
    height: var(--large);
    background-color: var(--black);
    justify-content: center;
    align-items: center;
  }
  header menu ul li ol li.close a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    text-align: center;
    margin: auto;
  }
  header menu ul li.location.show ol {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  header menu ul li.location.show > a {
    border-bottom: 1px solid var(--black);
  }
  .pave {
    flex-direction: column;
  }
  .pave > div {
    width: 100%;
    aspect-ratio: initial;
  }
  .pave > div.two {
    margin: 0;
    padding: var(--large) var(--small);
  }
  .pave > div.three {
    margin: 0;
  }
  .why p {
    width: 100%;
    padding: 4px 0 4px 4px;
    min-height: 2em;
    font-size: 14px;
  }
  #tattoo-holder {
    display: none;
  }
  .location-tile {
    width: 100%;
    margin-right: 0;
    margin-bottom: var(--medium);
  }
  .location-tile .btn {
    opacity: 1;
  }
  .register form .grid_6 {
    width: 100%;
    margin-right: 0;
  }
  footer .compo-1 {
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
  }
  footer .compo-1 a {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--medium);
  }
  footer .compo-1 a:first-child {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
  }
  footer .compo-1 a.btn {
    margin: 30px auto 0;
  }
  footer .compo-2 {
    padding-bottom: 76px;
    flex-direction: column;
  }
  footer .compo-2 p,
  footer .compo-2 a {
    display: block;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  .gold-line {
    height: 130px;
    transform: translateY(-50px);
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
  }
  #rolling .content * {
    font-size: 14px;
  }
  div.login-holder {
    width: 100%;
    height: calc(100% - var(--headerheight));
    position: fixed;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 99;
  }
  div.login-holder ol {
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-bottom: var(--large);
  }
  div.login-holder ol li {
    width: 100%;
    height: -moz-max-content;
    height: max-content;
    padding: var(--xsmall);
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
    margin-bottom: var(--xsmall);
  }
  div.login-holder ol li:last-child {
    margin-bottom: 0;
  }
  div.login-holder ol li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: default;
    margin: 0;
    width: 100%;
  }
  div.login-holder ol li a span.project-image-holder {
    margin-right: 20px;
  }
  div.login-holder ol li a span.project-image-holder + .column {
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% - 120px);
    flex-direction: row;
    justify-content: space-between;
  }
  div.login-holder ol li a span.project-image-holder + .column .m-row.m-space-between {
    display: flex;
    justify-content: space-between;
  }
  div.login-holder ol li a span.project-image-holder + .column * {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  div.login-holder ol li a span.project-image-holder + .column .project-name {
    padding: 0 !important;
  }
  div.login-holder .ls.close {
    color: var(--white);
  }
  .stay-in-touch {
    height: calc(100% - var(--headerheight));
  }
  .stay-in-touch form .grid_6 {
    width: 100%;
  }
  .stay-in-touch .close-stay {
    background-color: #1d281f;
    padding: 10px;
    position: relative;
    top: initial;
    bottom: initial;
    left: initial;
    right: initial;
    z-index: 2;
    width: -moz-max-content;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--white);
    margin: auto;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
  }
  .center-gold-line {
    display: none !important;
  }
  .parallax img {
    -o-object-position: 80%;
       object-position: 80%;
  }
  .m-plr0 {
    padding-left: 0;
    padding-righ: 0;
  }
  .m-br-remove br {
    display: none;
  }
  #page-events {
    padding-top: var(--headerheight);
  }
  #page-events p img {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
    height: auto !important;
    margin-bottom: 30px;
  }
  .gallery {
    flex-direction: column;
    gap: 0;
  }
  .m-gap80 {
    gap: var(--medium);
  }
  .m-mw100 {
    max-width: 100%;
  }
  .m-align-start {
    align-items: flex-start;
  }
  /*------------------------*/
  /*------------------------*/
  /*------------------------*/
  .m-column-reverce {
    flex-direction: column-reverse;
  }
  .m-column {
    flex-direction: column;
  }
  .gap11 .grid_6,
  .gap80 .grid_6,
  .grid_3,
  .grid_5,
  .grid_6,
  .grid_4,
  .grid_7,
  .grid_8,
  .grid_10,
  .grid_11 {
    width: 100%;
    margin-right: 0;
  }
  #page-news article,
  #page-events article {
    flex-direction: column;
    width: 100%;
  }
  #page-news article img,
  #page-events article img {
    width: 100%;
    padding-bottom: 0;
  }
  .pro-info {
    position: relative;
    bottom: initial;
    left: initial;
    z-index: 2;
    padding: var(--small);
  }
  .pro-info p {
    font-size: 14px;
    font-weight: 400;
  }
  .sec-home4-four-compo-1 {
    gap: 0;
    justify-content: flex-start;
  }
  .sec-home4-four-compo-1 .sec-home4-four-compo-1-1 {
    width: 100%;
    margin-bottom: var(--small);
  }
  .column-2 {
    -moz-column-count: 1;
    column-count: 1;
  }
  .map-details-holder {
    width: 100%;
  }
  #map {
    width: 100%;
    margin-top: var(--small);
    height: 80vh;
  }
  .eye-holder {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .eye-holder p {
    width: 40%;
  }
  .calendly-badge-widget {
    overflow: hidden;
    right: 0 !important;
    transform: rotate(-90deg);
    bottom: 220px !important;
    transform-origin: right;
    transform: translate(-14%, -100%) rotate(-90deg);
  }
  .calendly-badge-widget * {
    color: var(--black) !important;
  }
  #page-findyourhome .btn.light {
    display: none;
  }
  .m-aspect1by1 {
    aspect-ratio: 1/1;
  }
  .vbox-child img {
    height: initial;
  }
  #search-box {
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding: var(--small) var(--small) 0 var(--small);
    justify-content: space-between;
  }
  #search-box input,
  #search-box select {
    width: 48% !important;
    max-width: 48% !important;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .m-w100 {
    width: 100%;
  }
  .m-ptl {
    padding-top: var(--large);
  }
  .m-pbl {
    padding-bottom: var(--large);
  }
  .m-mbs {
    margin-bottom: var(--small);
  }
  .m-pb0 {
    padding-bottom: 0;
  }
  .m-pts {
    padding-top: var(--small);
  }
  .m-mbm {
    margin-bottom: var(--medium);
  }
  .m-pbm {
    padding-bottom: var(--medium);
  }
  .m-plrs {
    padding-left: var(--small);
    padding-right: var(--small);
  }
}
/* 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)";
}/*# sourceMappingURL=style.css.map */