/* Slider */
.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-slider div {
  display: block !important;
}

.slick-slider div.row {
  display: flex !important;
  justify-content: space-between;
}
.slick-slider div.row img {
  width: calc(50% - 20px);
}

.g-slider .slick-list {
  overflow: initial;
}

.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;
}

.slick-arrow {
  font-family: inherit;
  position: absolute;
  width: -moz-max-content;
  width: 30px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  transform: none;
  display: block;
  left: 0;
  border: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 4;
  transform: translateX(-200%);
  background-image: url(/images/buttons/prev.svg);
  font-size: 0;
  -webkit-transform: translateX(-200%);
  -moz-transform: translateX(-200%);
  -ms-transform: translateX(-200%);
  -o-transform: translateX(-200%);
}
.slick-arrow.slick-next {
  left: auto;
  right: 0;
  background-image: url(/images/buttons/next.svg);
  transform: translateX(200%);
  -webkit-transform: translateX(200%);
  -moz-transform: translateX(200%);
  -ms-transform: translateX(200%);
  -o-transform: translateX(200%);
}

.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);
  }
}
@font-face {
  font-family: "TheFutureRegular";
  src: url("/fonts/TheFutureRegular.woff2") format("woff2"), url("/fonts/TheFutureRegular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "TheFutureMedium";
  src: url("/fonts/TheFutureMedium.woff2") format("woff2"), url("/fonts/TheFutureMedium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Centra No2 TRIAL";
  src: url("/fonts/CentraNo2TRIAL-Medium.woff2") format("woff2"), url("/fonts/CentraNo2TRIAL-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Centra No2 TRIAL";
  src: url("/fonts/CentraNo2TRIAL-Light.woff2") format("woff2"), url("/fonts/CentraNo2TRIAL-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MessinaSansLight";
  src: url("/fonts/MessinaSansLight.eot");
  src: url("/fonts/MessinaSansLight.eot") format("embedded-opentype"), url("/fonts/MessinaSansLight.woff2") format("woff2"), url("/fonts/MessinaSansLight.woff") format("woff"), url("/fonts/MessinaSansLight.ttf") format("truetype"), url("/fonts/MessinaSansLight.svg#MessinaSansLight") format("svg");
}
@font-face {
  font-family: "MessinaSans-SemiBold";
  src: url("/fonts/MessinaSans-SemiBold.eot");
  src: url("/fonts/MessinaSans-SemiBold.eot?#iefix") format("embedded-opentype"), url("/fonts/MessinaSans-SemiBold.woff2") format("woff2"), url("/fonts/MessinaSans-SemiBold.woff") format("woff"), url("/fonts/MessinaSans-SemiBold.ttf") format("truetype"), url("/fonts/MessinaSans-SemiBold.svg#MessinaSans-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MessinaSans-Regular";
  src: url("/fonts/MessinaSans-Regular.eot");
  src: url("/fonts/MessinaSans-Regular.eot?#iefix") format("embedded-opentype"), url("/fonts/MessinaSans-Regular.woff2") format("woff2"), url("/fonts/MessinaSans-Regular.woff") format("woff"), url("/fonts/MessinaSans-Regular.ttf") format("truetype"), url("/fonts/MessinaSans-Regular.svg#MessinaSans-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --header-height: 110px;
  --gap: 40px;
  --light: #ffffff;
  --orange: #D47643;
  --dark: #000;
  --cream: #F5DFD1;
  --heading-font: "TheFutureRegular";
  --body-font: "TheFutureRegular";
  --TheFutureRegular: "TheFutureRegular";
  --semi-font: "TheFutureMedium";
  --no2: "Centra No2 TRIAL";
  --royal: "Royal Theatre Serif";
  --royalLight: "Royal Theatre Serif Lt";
  --MessinaSansLight: "MessinaSansLight";
  --MessinaSans-Regular: "MessinaSans-Regular";
  --MessinaSans-SemiBold: "MessinaSans-SemiBold";
  --xxs: 5px;
  --xs: 15px;
  --s: 30px;
  --m: 50px;
  --l: 100px;
  --xl: 150px;
  --xxl: 250px;
  --grey: #bcbdc2;
  --white: #F5F1EE;
}

body {
  background: var(--light);
  margin: 0;
  padding: 0;
  text-align: center;
  overflow-x: hidden;
  font-family: var(--body-font);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.38;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--m);
  letter-spacing: 0.14em;
  border-bottom: 1px solid var(--orange);
  transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -ms-transition: opacity 1s;
  -o-transition: opacity 1s;
}
header > div {
  width: 33.3333333333%;
  display: flex;
  align-items: center;
  z-index: 2;
}
header > div:nth-child(2) {
  justify-content: flex-start;
}
header > div:nth-child(2) a {
  margin: auto;
}
header > div:last-child {
  justify-content: flex-end;
}
header .logo svg {
  margin: auto;
}
header.menuvisible, header.touchEnq {
  background-color: var(--orange);
  border-bottom: 1px solid var(--white);
}
header.menuvisible #navToggle, header.touchEnq #navToggle {
  color: var(--white);
}
header.menuvisible .logo svg path, header.touchEnq .logo svg path {
  fill: var(--white);
}
header.menuvisible #call, header.touchEnq #call {
  color: var(--white);
}
header.menuvisible .red-btn, header.touchEnq .red-btn {
  background-color: var(--light);
  color: var(--orange);
}
header #navToggle {
  font-family: var(--MessinaSans-SemiBold);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 3em;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  cursor: pointer;
}
header #navToggle span {
  display: none;
}
header #navToggle span:first-child {
  display: block;
}
header #navToggle.menuvisible span {
  display: block;
}
header #navToggle.menuvisible span:first-child {
  display: none;
}
header #actionWrapper a:first-child {
  margin-right: var(--s);
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  /* or filter if using an img */
  background: inherit;
  /* re-use parent bg */
  z-index: 1;
}

#menu {
  width: 100%;
  height: 100%;
  background-color: var(--orange);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  padding: var(--xl) var(--m) var(--xs);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
#menu ul {
  display: flex;
  width: 100%;
  list-style: none;
  margin-top: auto;
  margin-top: auto;
  flex-direction: column;
  opacity: 0;
  transform: translateY(10%);
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -ms-transform: translateY(10%);
  -o-transform: translateY(10%);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
#menu ul li {
  width: 100%;
  border-top: 1px solid var(--white);
  text-align: left;
}
#menu ul li a {
  font-family: "Royal Theatre Serif";
  font-style: normal;
  font-weight: 300;
  font-size: 30px;
  font-size: 4vh;
  line-height: 2em;
  color: var(--white);
}
#menu.menuvisible {
  opacity: 1;
  pointer-events: auto;
}
#menu.menuvisible ul {
  opacity: 1;
  transition-delay: 0.15s;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.call {
  color: var(--orange);
  letter-spacing: 1px;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

#banner {
  position: fixed;
  z-index: 4;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background-color: var(--orange);
  border-top: 1px solid #fff;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.5s;
}
#banner.animated {
  opacity: 1;
}

#f-svg {
  position: absolute;
  left: calc(50vw - 40px);
  top: calc(50vh - 40px);
  transform: rotate(90deg);
  width: 48px;
}

#and-svg {
  position: absolute;
  width: 48px;
  left: calc(50vw - 120px);
  top: calc(50vh + 32px);
  transform: rotate(90deg);
}

#a-svg {
  width: 40px;
  position: absolute;
  left: calc(50vw + 36px);
  top: calc(50vh + 28px);
  z-index: 5;
}

#preloader svg {
  height: auto;
  opacity: 1;
  transition: opacity 0.5s, top 1s, left 1s, transform 1s, width 1s;
  z-index: 5;
}
#preloader svg path {
  transition: fill 0.5s;
}
#preloader svg.faded {
  opacity: 1;
}
#preloader.fadeOut svg {
  opacity: 0;
}
#preloader.animated #bg {
  background-color: var(--white);
}
#preloader.animated path {
  fill: var(--orange);
}
#preloader.animated #a-svg {
  width: 64px;
  left: 55px;
  top: 50px;
}
#preloader.animated #and-svg {
  width: 69px;
  left: 55px;
  top: 153px;
  transform: rotate(0);
}
#preloader.animated #f-svg {
  left: 53px;
  top: 461px;
  transform: rotate(0);
  width: 70px;
}

#logo {
  position: absolute;
  left: var(--m);
  top: calc(var(--header-height) + var(--gap));
  width: 20vw;
  max-height: 20vh;
  display: block;
  z-index: 6;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left top;
     object-position: left top;
}

#bg {
  background-color: var(--orange);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#enterLink {
  transition: opacity 0.5s;
  opacity: 0;
}

#enter {
  position: fixed;
  z-index: 9999;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--white);
  transition: opacity 0.7s;
}

main {
  height: auto;
  overflow: initial;
}

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

.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

.grid_3 {
  width: 25%;
}
.grid_3.small-gap {
  width: calc(25% - var(--xs));
  margin-right: calc(var(--xs) + var(--xxs));
}
.grid_3.small-gap:last-child {
  margin-right: 0;
}
.grid_3.no-margin-right, .grid_3.nmr {
  margin-right: 0;
}

.grid_4 {
  width: calc(33.33% - var(--gap) * 0.67);
  text-align: left;
}

.grid_5 {
  width: 41.67%;
}

.grid_6 {
  width: 50%;
}
.grid_6.small-gap {
  width: calc(50% - var(--xs));
  margin-right: var(--s);
}
.grid_6.small-gap:nth-child(2n) {
  margin-right: 0;
}

.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;
}
.grid_1.block,
.grid_2.block,
.grid_3.block,
.grid_4.block,
.grid_5.block,
.grid_6.block,
.grid_7.block,
.grid_8.block,
.grid_9.block,
.grid_10.block,
.grid_11.block,
.grid_12.block {
  display: block;
}
.grid_1.mr0,
.grid_2.mr0,
.grid_3.mr0,
.grid_4.mr0,
.grid_5.mr0,
.grid_6.mr0,
.grid_7.mr0,
.grid_8.mr0,
.grid_9.mr0,
.grid_10.mr0,
.grid_11.mr0,
.grid_12.mr0 {
  margin-right: 0;
}

.scroll_sec {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
}

.img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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;
}

#hero {
  position: absolute;
  display: flex;
  width: 100%;
  height: calc(100% - 50px);
  top: 0;
  left: 0;
  background-size: cover;
  justify-content: flex-end;
  align-items: center;
  padding: var(--gap);
  gap: 65px;
  z-index: 2;
  transition: opacity 1s;
  flex-direction: column;
  background-position: 90% 50%;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 100%;
     object-position: 100% 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

#enquire-top {
  margin-top: -51px;
  padding-top: 100px;
}

#preloader.fadeOut #hero {
  opacity: 1;
}

.arrow {
  font-family: var(--MessinaSansLight);
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  width: 16px;
  position: absolute;
  bottom: var(--s);
  left: 0;
  right: 0;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  display: flex;
  flex-direction: column;
  z-index: 2;
  align-items: center;
  color: var(--light);
}
.arrow svg {
  display: block;
  margin-top: var(--xs);
}

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

@media screen and (max-aspect-ratio: 1920/1080) {
  .fullyvideo {
    height: 100vh;
    height: 100svh;
  }
}
@media screen and (min-aspect-ratio: 1920/1080) {
  .fullyvideo {
    width: 100% !important;
  }
}
.full-height,
.fullheight {
  height: 100vh;
  height: 100svh;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.iframe-holder {
  position: relative;
  padding: 100% 0 0 0;
}
.iframe-holder iframe,
.iframe-holder video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bg-video {
  height: 100%;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.bg-video::after {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  content: "";
  z-index: 2;
}

.bg-video iframe {
  position: absolute;
  top: 50vh;
  left: 50vw;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  z-index: 0;
}

@media (min-aspect-ratio: 16/9) {
  .bg-video iframe {
    height: 56.25vw;
    width: 100vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .bg-video iframe {
    min-height: 100vh;
    min-width: 177.77vh;
  }
}
.bg-cream {
  background-color: var(--cream);
}

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

.dark-bg::after {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  display: block;
  content: "";
  width: 100%;
  height: 100%;
}

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

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

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

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

.max600 {
  max-width: 660px;
  margin: auto;
}

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

.icirt {
  margin: 20px auto 0 auto;
  display: block;
}

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

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

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

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

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

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

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.artist {
  position: relative;
  font-family: var(--MessinaSansLight);
  font-style: normal;
  font-weight: 400;
}
.artist:after {
  position: absolute;
  right: 15px;
  bottom: 15px;
  color: var(--white);
  font-size: 12px;
  content: "Artist impression";
  line-height: 1;
  z-index: 10;
  text-transform: uppercase;
}

.projectName {
  font-family: var(--MessinaSansLight);
  font-style: normal;
  font-weight: 400;
  position: absolute;
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  z-index: 8;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  pointer-events: none;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 40px;
  padding-right: 15px;
}

.lifestyle {
  position: relative;
  font-family: var(--MessinaSansLight);
  font-style: normal;
  font-weight: 400;
}
.lifestyle:after {
  position: absolute;
  right: 15px;
  bottom: 15px;
  color: var(--white);
  font-size: 10px;
  content: "Lifestyle Image";
  line-height: 1;
  z-index: 10;
  text-transform: uppercase;
}

.lf-img {
  position: relative;
}
.lf-img:after {
  position: absolute;
  right: 15px;
  bottom: 15px;
  color: var(--white);
  font-size: 12px;
  content: "Lifestyle image";
  line-height: 1;
}

.caption {
  text-align: left;
  font-size: 12px;
  display: block;
  padding-top: 10px;
}

.relative {
  position: relative;
  z-index: 2;
}

.center_align {
  text-align: center;
}

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

.absolute {
  position: absolute;
}

.ng::after {
  position: absolute;
  left: 0;
  content: "";
  height: 50%;
  bottom: 0;
  width: 100%;
  display: block;
  background: linear-gradient(180deg, rgba(71, 61, 61, 0) 0%, #322927 100%);
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

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

.mla {
  margin-left: auto;
}

.mta {
  margin-top: auto;
}

.mra {
  margin-right: auto;
}

.fullwidth,
.full-width {
  width: 100%;
}

.fullheight,
.full-height {
  height: 100%;
}

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

.ptg {
  padding-top: var(--gap);
}

.pbg {
  padding-bottom: var(--gap);
}

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

.pbxxl {
  padding-bottom: var(--xxl);
}

.ptxxl {
  padding-top: var(--xxl);
}

.pt75 {
  padding-top: 75px;
}

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

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

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

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

.ptxxs {
  padding-top: var(--xxs);
}

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

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

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

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

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

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

.pbxxs {
  padding-bottom: var(--xxs);
}

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

.border-b {
  border-bottom: 1px solid currentColor;
}

.border-t {
  border-top: 1px solid currentColor;
}

.fit-h {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: -moz-max-content;
  width: max-content;
  height: calc(100vh - 160px);
}
.fit-h img {
  height: 100%;
  width: -moz-max-content;
  width: max-content;
}

.fit-aerial {
  width: calc(100% - 120px);
  height: calc(100vh - 120px);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.fake {
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.middle {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section {
  position: relative;
  background-color: var(--light);
  scroll-snap-align: start;
  z-index: 2;
}
section.landing {
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
section.landing h1 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--l);
  z-index: 2;
  color: var(--white);
}

.sticky {
  position: sticky;
  z-index: 1;
  top: var(--header-height);
  height: -moz-max-content;
  height: max-content;
}

.fit-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}

.mx-c {
  height: 100%;
  width: 100%;
}

.fit-holder {
  height: calc(100vh - 160px);
  width: calc(100% - 70px);
  display: flex !important;
  justify-content: center;
  align-items: center;
}

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

.para {
  z-index: 1;
}
.para .inner-para {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.ptb125 {
  padding-top: 125px;
  padding-bottom: 125px;
}

/* Headings */
h1 {
  font-family: var(--royalLight);
  font-style: normal;
  font-weight: 300;
  font-size: 60px;
  line-height: 1.5em;
  text-align: center;
}

h2 {
  font-family: var(--royalLight);
  font-style: normal;
  font-weight: 300;
  font-size: 60px;
  line-height: 1.5em;
  text-align: center;
}
h2.fs30, h2.fs38, h2.sml {
  font-size: 30px;
}
h2.small {
  font-size: 20px;
}

h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5em;
  text-align: center;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -moz-text-decoration-style: solid;
}

h4 {
  font-size: 25px;
}

p {
  font-family: var(--royalLight);
  font-size: 16px;
}
p.large {
  font-size: 22px;
}

.Barnclueth {
  width: 100%;
  position: relative;
  z-index: 2;
}

.container {
  width: calc(100% - var(--m) - var(--m));
  margin: 0 auto;
  max-width: 100%;
  position: relative;
}
.container.w1432m {
  max-width: 1300px;
}
.container.medium {
  max-width: 1500px;
}

.max700 {
  max-width: 690px;
}

.border-t {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  transition: width 1s;
  background-color: currentColor;
  display: block;
  height: 1px;
}

.border-t.animated {
  width: 100%;
}

.border-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  transition: width 1s;
  background-color: currentColor;
  display: block;
  height: 1px;
}

.register.animated .border-bl {
  width: 100%;
}

.fadeInUp {
  opacity: 0;
  transition: opacity 0.7s;
}
.fadeInUp.animated {
  opacity: 1;
}

.img-holder {
  overflow: hidden;
  position: relative;
}

.toAnimate.lazyImg {
  filter: blur(5px);
  transition: opacity 0.7s, filter 1s;
  opacity: 0;
}

.lazyImg.animated {
  opacity: 1;
  filter: blur(0);
}

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

.btn {
  width: -moz-max-content;
  width: max-content;
  position: relative;
  padding: 5px var(--s) 0;
  color: var(--black);
  text-transform: uppercase;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  background-color: var(--cream);
  color: var(--black);
  height: 40px;
  font-family: var(--TheFutureRegular);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 4px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.btn.normal {
  text-transform: none;
  font-weight: 400;
  border: 1px solid var(--light);
}
.btn.red-btn {
  background-color: var(--orange);
  color: var(--white);
  border: none;
}

@media (hover: hover) {
  .btn:hover {
    background-color: var(--orange);
    color: var(--white);
  }
  .btn:hover.red-btn:hover {
    background-color: var(--light);
    color: var(--orange);
  }
}
.w747 {
  width: 747px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.w892 {
  width: 892px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.w837 {
  width: 884px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.w1318 {
  width: 1387px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.logos {
  -moz-column-gap: 45px;
       column-gap: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.links {
  font-size: 12px;
  gap: 5px;
  padding-bottom: 35px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.links p {
  width: 100%;
  padding-top: 5px;
}

.f25 {
  font-size: 25px;
}

.f24 {
  font-size: 24px;
}

#slider-holder {
  overflow: hidden;
}

.t-slider {
  display: flex;
  flex-wrap: nowrap;
  padding-left: 25vw;
}

.g4 {
  min-width: 21vw;
  max-width: 21vw;
  padding: 0 var(--gap) 0 0;
  text-align: left;
}
.g4 .f15 {
  padding-right: 20px;
}

.f14 {
  font-size: 14px;
  margin-bottom: 20px;
  display: block;
}

.asp3-4,
.aspect3by4 {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
}

.aspect4by3 {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.ratio4by5 {
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
}

.aspect1by1 {
  aspect-ratio: 1/1;
}

.f18 {
  font-size: 24px;
}

.odea {
  font-family: var(--no2);
  display: block;
  padding-top: 15px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.pinch-zoom-container {
  overflow: hidden;
  height: 64vw !important;
}

.pad {
  padding: var(--gap);
}

#drag-m {
  overflow: hidden;
}
#drag-m img {
  width: 200vw;
  max-width: 200vw;
}

.drag-holder {
  position: relative;
}

.bar {
  position: absolute;
  width: calc(100% - 80px);
  background-color: rgba(255, 255, 255, 0.8);
  height: 2px;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
}

#status {
  position: absolute;
  height: 100%;
  top: 0;
  background-color: var(--orange);
  min-width: 45%;
  max-width: 100%;
}

.mob {
  display: none;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

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

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

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

.ratoi1by1 {
  aspect-ratio: 1/1;
}

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

.bt1orange {
  border-top: 1px solid var(--orange);
}

.playBtn {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.playBtn img {
  width: 40px;
}

.playFilm {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.playFilm img {
  width: 140px;
}

.opb {
  -o-object-position: bottom;
     object-position: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

.verticalLine {
  border-right: 2px solid var(--orange);
  margin: 0 var(--s);
  clip-path: inset(0 0 100% 0);
  transition: 1.5s;
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  -ms-transition: 1.5s;
  -o-transition: 1.5s;
}
.verticalLine.animated {
  transition-delay: 0.5s;
  clip-path: inset(0 0 0 0);
}

#stoneGalleryAction a {
  font-family: var(--royalLight);
  font-style: normal;
  font-weight: 300;
  font-size: 25px;
  line-height: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--orange);
}
#stoneGalleryAction a.active {
  text-decoration-line: underline;
}

#stoneGallery .stoneImg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
#stoneGallery .stoneImg.active {
  opacity: 1;
  display: block;
  filter: blur(0);
  -webkit-filter: blur(0);
}

/* --- Touch-enabled Image Comparison Slider --- */
.beforeafter {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  pointer-events: auto;
  -ms-touch-action: none;
}

.beforeafter .beforeafter-item {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.beforeafter img {
  width: 100%;
  height: 100%;
}

.icv__theme-wrapper:after {
  content: "Dark";
  position: absolute;
  bottom: var(--s);
  color: var(--white);
  right: var(--m);
  font-size: 20px;
}
.icv__theme-wrapper::before {
  content: "Light";
  position: absolute;
  bottom: var(--s);
  color: var(--white);
  left: var(--m);
  font-size: 20px;
}

.mbm {
  margin-bottom: var(--m);
}

.quote {
  line-height: 1.4em;
}

.quote-name {
  font-family: var(--MessinaSans-SemiBold);
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  text-align: center;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange);
}

.mh50vh {
  min-height: 50vh;
}

#page-crowsNestVillage section {
  background-color: var(--cream);
}
#page-crowsNestVillage section#enquire {
  background-color: var(--orange);
}

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

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

#map {
  min-height: 70vh;
  background-color: lightgoldenrodyellow;
}

.map-cat {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--orange);
  width: 500px;
  max-width: calc(100% - var(--xs));
  padding-top: var(--xs);
}
.map-cat:last-child {
  border-bottom: 1px solid var(--orange);
}
.map-cat .map-link {
  font-family: var(--royalLight);
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 1em;
  display: flex;
  align-items: center;
  color: var(--black);
  background-image: url(/images/arrowDown.svg);
  background-size: 22px;
  background-position: calc(100% - var(--xs)) center;
  background-repeat: no-repeat;
}
.map-cat .map-link.active {
  pointer-events: none;
}
.map-cat .map-link.active + .map-inner {
  margin-bottom: var(--s);
}
.map-cat .map-inner {
  margin-top: var(--xs);
}
.map-cat .map-inner p {
  font-family: var(--royalLight);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  color: var(--black);
}
.map-cat * {
  text-align: left !important;
}

.imageTitle {
  font-family: var(--MessinaSansLight);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
}

.just-mobile {
  display: none;
}

.ratio4by5:has(video) {
  position: relative;
}
.ratio4by5:has(video) video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.metroMap {
  margin: 0 auto;
  max-width: 300px;
  width: 80%;
  transform: translateX(18%);
  -webkit-transform: translateX(18%);
  -moz-transform: translateX(18%);
  -ms-transform: translateX(18%);
  -o-transform: translateX(18%);
}

.plrxs {
  padding-left: var(--xs);
  padding-right: var(--xs);
}

.prxs {
  padding-right: var(--xs);
}

.plrxs {
  padding-left: var(--xs);
  padding-right: var(--xs);
}

label {
  display: block;
  text-transform: uppercase;
  font-family: var(--no2);
  letter-spacing: 0.2em;
  font-size: 12px;
}

input,
textarea,
select,
label {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  color: inherit;
  border: none;
  padding: 25px 0;
  line-height: 1;
  resize: none;
  width: 100%;
  display: block;
  width: 100%;
  text-transform: uppercase;
  border-radius: 0;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
  font-family: var(--MessinaSansLight);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: var(--white);
}
input.b_submit,
textarea.b_submit,
select.b_submit,
label.b_submit {
  background-color: var(--white);
  color: var(--orange);
  width: 130px;
  height: 40px;
  margin-left: auto;
  margin-left: auto;
  padding: 5px var(--s) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: #fff;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  color: #fff !important;
}

.thx {
  height: 100%;
  width: 100;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

option {
  color: var(--dark);
}

.form-row {
  position: relative;
}
.form-row.g6 {
  width: calc(50% - 10px);
}

select {
  -moz-text-align-last: center;
       text-align-last: center;
}

input:-webkit-input-placeholder,
textarea:-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: inherit;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: transparent;
}

.check-holder {
  position: relative;
}

.check-holder input {
  opacity: 0;
  left: 0;
  right: 0;
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  cursor: pointer;
  top: 0;
}

.check-holder input:checked + label:after {
  background-color: currentColor;
}

.check-holder label {
  padding-right: 20px;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  padding: 0;
  padding-right: 20px;
}

.check-holder label:before {
  position: absolute;
  right: -1px;
  width: 15px;
  height: 15px;
  top: -1px;
  border: 1px solid currentColor;
  content: "";
  display: block;
}

.check-holder label:after {
  position: absolute;
  right: 3px;
  width: 7px;
  height: 7px;
  top: 3px;
  content: "";
  display: block;
  border-radius: 5px;
}

.token-input-list-project {
  list-style: none;
  margin: auto;
  text-align: center;
}

.token-input-token-project {
  list-style: none;
  display: inline-block;
  margin: auto;
  text-align: center;
}
.token-input-token-project p {
  display: inline-block;
  padding: 7px 0;
  margin: 0 5px 0 0;
  margin: auto;
  text-align: center;
}

.token-input-input-token-project {
  margin: auto;
  text-align: center;
  display: flex;
  justify-content: center;
}

.token-input-dropdown-project {
  background: var(--light);
}

.parsley-errors-list {
  list-style: none;
  position: absolute;
  bottom: 0px;
  font-size: 10px;
}

.privacy {
  text-decoration: underline;
}

#thank_enq h2 {
  text-align: left;
}

.post-holder {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}

.check-field {
  padding: 25px 0;
}

.post-field {
  width: calc(100% - 130px);
}

.token-input-token-project p {
  display: inline-block;
  padding: 25px 0;
  margin: 0 5px 0 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-align: center;
  font-family: var(--MessinaSansLight);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}

.disclaimer {
  width: 1320px;
  padding-top: 60px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  font-size: 9px;
}

.paivacy {
  padding-top: 30px;
  font-size: 9px;
  max-width: 658px;
  margin: auto;
  line-height: 1.5;
}
.paivacy a {
  text-decoration: underline;
}

@media screen and (max-width: 1440px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 46px;
  }
  h2.fs30, h2.fs38, h2.sml {
    font-size: 26px;
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --header-height: 60px;
    --gap: 40px;
    --xxs: 10px;
    --xs: 15px;
    --s: 20px;
    --m: 40px;
    --l: 60px;
    --xl: 80px;
    --xxl: 120px;
  }
  .just-desktop,
  .desk {
    display: none !important;
  }
  .just-mobile,
  .mob {
    display: block;
  }
  .just-mobile.row, .just-mobile.flex, .just-mobile.column, .just-mobile.row-reverse, .just-mobile.column-reverse,
  .mob.row,
  .mob.flex,
  .mob.column,
  .mob.row-reverse,
  .mob.column-reverse {
    display: flex;
  }
  .grid_1,
  .grid_2,
  .grid_3,
  .grid_4,
  .grid_5,
  .grid_6,
  .grid_7,
  .grid_8,
  .grid_9,
  .grid_10,
  .grid_11,
  .grid_12 {
    width: 100% !important;
    margin-right: 0 !important;
  }
  body {
    padding-top: var(--header-height);
  }
  body:not(#page-home) header {
    background-color: var(--white);
  }
  body:not(#page-home) header.touchEnq {
    background-color: var(--orange);
  }
  body:not(#page-home) header.menuvisible {
    background-color: var(--orange);
  }
  header {
    padding: 0 var(--s);
  }
  header > div {
    width: -moz-max-content;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header > div:nth-child(2) {
    justify-content: flex-start;
  }
  header > div:nth-child(2) {
    justify-content: flex-start;
  }
  header > div:last-child {
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px 0;
    background-color: var(--orange);
    border-top: 1px solid var(--white);
  }
  header .logo svg {
    width: 200px;
  }
  header.menuvisible, header.touchEnq {
    background-color: var(--orange);
    border-bottom: 1px solid var(--white);
  }
  header.menuvisible #navToggle, header.touchEnq #navToggle {
    color: var(--white);
  }
  header.menuvisible .logo svg path, header.touchEnq .logo svg path {
    fill: var(--white);
  }
  header.menuvisible #call, header.touchEnq #call {
    color: var(--white);
  }
  header.menuvisible .red-btn, header.touchEnq .red-btn {
    background-color: var(--orange);
    color: var(--white);
  }
  header #actionWrapper {
    padding: 4px 0;
  }
  header #actionWrapper a {
    padding: 0;
    color: var(--white);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.14em;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    height: initial;
    width: 50%;
    padding-top: 12px;
    padding-bottom: 8px;
  }
  header #actionWrapper a:first-child {
    margin-right: 0;
    border-right: 1px solid var(--white);
  }
  header #actionWrapper a:last-child {
    margin-right: 0;
    border-right: 1px solid var(--white);
  }
  #menu {
    padding: var(--xl) var(--s) var(--l);
  }
  #logo {
    left: var(--s);
    top: var(--s);
    width: 40vw;
    max-height: 40vw;
  }
  #page-home section.landing {
    height: initial;
    aspect-ratio: 443/611;
  }
  section.landing {
    height: initial;
    aspect-ratio: 443/321;
  }
  section.landing img.full-vh {
    height: 100%;
  }
  section.landing h1 {
    padding-left: var(--xs);
    padding-right: var(--xs);
    bottom: var(--m);
  }
  .artist:after,
  .lifestyle:after {
    font-size: 10px;
  }
  .hero__video {
    height: 100%;
    min-height: 100%;
    width: 100%;
  }
  .arrow svg {
    margin-top: var(--s);
  }
  .container {
    width: calc(100% - var(--s) - var(--s));
  }
  h1 {
    font-size: 32px;
    line-height: 1.05em;
  }
  h1 br {
    display: none;
  }
  h2 {
    font-size: 32px;
    line-height: 1.4em;
  }
  h2.fs30, h2.fs38, h2.sml {
    font-size: 32px;
  }
  h2 br {
    display: none;
  }
  .m-h2 {
    font-size: 32px;
    line-height: 1.05em;
  }
  .m-h2.fs30, .m-h2.fs38, .m-h2.sml {
    font-size: 32px;
  }
  .map-cat:last-child {
    border-bottom: 0 none;
  }
  p {
    font-family: var(--royalLight);
    font-size: 16px;
  }
  p.large {
    font-size: 18px;
  }
  .fadeSlide {
    padding-bottom: var(--m);
  }
  .slick-arrow {
    top: auto;
    bottom: 0;
    left: 36%;
    transform: translatex(0);
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -ms-transform: translatex(0);
    -o-transform: translatex(0);
  }
  .slick-arrow.slick-next {
    transform: translatex(0);
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -ms-transform: translatex(0);
    -o-transform: translatex(0);
    left: auto;
    right: 36%;
  }
  #stoneGalleryAction a {
    font-size: 14px;
  }
  .icv__theme-wrapper::before,
  .icv__theme-wrapper::after {
    font-size: 12px;
  }
  .artist:after {
    right: 10px;
    bottom: 10px;
    font-size: 10px;
  }
  .metroMap {
    margin: 0 auto;
    max-width: 200px;
    width: 80%;
    transform: translateX(18%);
    -webkit-transform: translateX(18%);
    -moz-transform: translateX(18%);
    -ms-transform: translateX(18%);
    -o-transform: translateX(18%);
  }
  .sticky {
    position: relative;
    z-index: 1;
    top: initial;
    height: -moz-max-content;
    height: max-content;
  }
  .arrow {
    display: none;
  }
  .btn {
    height: 40px;
    padding-left: var(--m);
    padding-right: var(--m);
  }
  .m-ptm {
    padding-top: var(--m);
  }
  .m-bt1orange {
    border-top: 1px solid var(--orange);
  }
  .m-mbs {
    margin-bottom: var(--s);
  }
  .m-mbm {
    margin-bottom: var(--m);
  }
  .m-pbs {
    padding-bottom: var(--s);
  }
  .m-column {
    flex-direction: column;
  }
  .m-full-width {
    width: 100% !important;
    max-width: 100% !important;
  }
  .m-center-align {
    text-align: center;
  }
  .m-mlra {
    margin-left: auto;
    margin-right: auto;
  }
  .m-pb0 {
    padding-bottom: 0;
  }
  .m-pt0 {
    padding-top: 0;
  }
  .m-pbm {
    padding-bottom: var(--m);
  }
  .m-column-reverse {
    flex-direction: column-reverse;
  }
  .m-height-auto {
    height: auto;
    min-height: auto;
  }
  .m-mx100 {
    max-width: 100% !important;
  }
  .m-plrm {
    padding-left: var(--m);
    padding-right: var(--m);
  }
  .m-pts {
    padding-top: var(--s);
  }
  .projectName {
    padding-bottom: 30px;
    padding-right: 10px;
  }
}/*# sourceMappingURL=style.css.map */