/* 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-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;
  width: 100%;
}

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

/**
 * https://github.com/nicolafranchini/VenoBox/
 */
.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%;
}

/* ------ venobox.css --------*/
.vbox-overlay *, .vbox-overlay *:before, .vbox-overlay *:after {
  -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:hover,
button.vbox-link-btn:active,
button.vbox-link-btn:focus {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  color: inherit !important;
  padding: 6px 12px;
  outline: none;
  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;
}

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

/* ----- Social share ----- */
.vbox-left {
  left: 0;
}

.vbox-right {
  right: 0;
}

.vbox-top {
  top: 0;
}

.vbox-bottom {
  bottom: 0;
}

/* ----- Navigation arrows ----- */
.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 0px;
}

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

/* ----- Aspect ratio ----- */
.venoratio, .vbox-inline {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: #000 !important;
}

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

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

/* ---------- preloader ----------
 * http://tobiasahlin.com/spinkit/
-------------------------------- */
.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 {
  80%, 100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }
  100%, 0% {
    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%, 40%, 100% {
    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%, 80%, 100% {
    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%, 80%, 100% {
    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%, 39%, 100% {
    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%, 70%, 100% {
    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;
  }
  90%, 100% {
    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);
  }
}
#enquire {
  background-color: var(--brown);
  color: var(--cream);
}

label {
  display: block;
  font-weight: 500;
  width: 100px;
}

.register {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 0 0;
  position: relative;
}

.tel {
  font-size: 20px;
  display: block;
}

input,
textarea,
select,
label,
.upload-holder,
.post-holder {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  color: inherit;
  border: none;
  border-bottom: 1px solid currentColor;
  line-height: 1;
  resize: none;
  width: 100%;
  display: block;
  text-align: left;
  text-transform: uppercase;
  border-radius: 0;
  font-family: "Scto Grotesk A";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 8px 0;
  margin-bottom: 12px;
}

.b_submit {
  background-color: transparent;
  color: var(--light);
  cursor: pointer;
  margin: 20px 0 30px 0;
  padding: 9px 0;
  border: 1px solid var(--cream);
  color: var(--cream);
  text-align: center;
}
@media (hover: hover) {
  .b_submit:hover {
    color: var(--dark);
    background-color: var(--cream);
  }
}
.b_submit {
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}

.privacy {
  font-size: 12px;
}

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

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

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

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

.form-row {
  padding-bottom: 15px;
  position: relative;
}

.err-message {
  color: red;
  font-size: 11px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.spinner {
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.spinner svg {
  animation: loading-rotate 2s linear infinite;
  height: 42px;
  width: 42px;
}

.spinner .path {
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: #fff;
  stroke-linecap: round;
  animation: loading-dash 1.5s ease-in-out infinite;
}

@keyframes loading-rotate {
  to {
    transform: rotate(1turn);
  }
}
@keyframes loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
  }
  to {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
  }
}
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;
}

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

.check-holder {
  position: relative;
  padding: 0;
  border-bottom: 0;
  position: absolute;
  right: 0;
}

.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-left: 30px;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  border: 0 none;
  text-transform: uppercase;
}

.check-holder label:before {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid currentColor;
  opacity: 0.5;
  content: "";
  display: block;
  border-radius: 5px;
}

.check-holder label:after {
  position: absolute;
  left: 4px;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  content: "";
  display: block;
  border-radius: 5px;
}

.token-input-list-project {
  list-style: none;
  width: 100%;
}
.token-input-list-project input {
  width: 100% !important;
}

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

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 110px;
  z-index: 99;
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: all 0.5s;
}
header .menu {
  font-family: var(--Scto);
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2em;
  leading-trim: both;
  text-edge: cap;
  text-align: right;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
}
header .menu .close {
  display: none;
}
header.active-menu .close {
  display: block;
}
header.active-menu .open {
  display: none;
}
header path {
  fill: currentColor;
}
header .btn {
  z-index: 3;
}
header .phone {
  z-index: 50;
}
header.bg, header.active {
  height: var(--header-height);
  background-color: var(--DustyMocha);
  color: var(--cream);
  border-bottom: 1px solid currentColor;
}
header.bg .logo, header.active .logo {
  opacity: 1 !important;
}
header.bg .enq, header.active .enq {
  background-color: var(--DustyMocha);
  color: var(--cream);
}

.b-logo {
  display: block;
  width: 399px;
  max-width: calc(100% - 90px);
  position: relative;
  z-index: 2;
}

.logo {
  transition: all 0.5s;
  width: 188px;
  z-index: 2;
  transition: opacity 0.5s;
}

#page-home .logo {
  opacity: 0;
}

#bg {
  position: absolute;
  background-color: var(--dark);
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.7s;
  transform: translateY(-100%);
  border-bottom: 1px solid currentColor;
  padding: var(--gap);
}

menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  background-color: var(--DustyMocha);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
menu * {
  color: var(--cream);
}
menu > div {
  margin-bottom: auto;
  border-bottom: 1px solid var(--cream);
  padding: var(--s);
}
menu > div img {
  width: 188px;
}
menu li {
  list-style: none;
  padding: 0;
  border-bottom: 1px solid var(--cream);
  text-align: left;
  width: 100%;
  display: flex;
  position: relative;
}
menu li img {
  height: 44vh;
  max-width: 260px;
  max-height: 370px;
  max-width: 100%;
  right: var(--m);
  bottom: 40%;
  position: absolute;
  clip-path: inset(100% 0 0 0);
  transform: translateY(var(--s));
  -webkit-transform: translateY(var(--s));
  -moz-transform: translateY(var(--s));
  -ms-transform: translateY(var(--s));
  -o-transform: translateY(var(--s));
  filter: blur(10px);
  -webkit-filter: blur(10px);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  z-index: 1;
}
@media (hover: hover) {
  menu li:hover img {
    clip-path: inset(0 0 0 0);
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    filter: blur(0);
    -webkit-filter: blur(0);
    z-index: 2;
  }
}
menu li:first-of-type {
  border-top: 1px solid var(--cream);
}
menu li:last-child {
  border-bottom: 0;
}
menu li a {
  font-family: "PP Hatton";
  display: flex;
  align-items: center;
  padding: 3vh var(--s);
  letter-spacing: 0.01em;
  color: var(--cream);
  width: 100%;
  font-weight: 200;
  font-size: 30px;
  line-height: 1.25em;
  leading-trim: both;
  text-edge: cap;
  letter-spacing: 0.01em;
}
menu li a .italic {
  font-style: italic;
  display: block;
  margin-right: var(--xs);
}
menu li a .first {
  font-family: var(--Scto);
  margin-right: var(--m);
  display: block;
  font-size: 12pt;
  margin-top: auto;
  margin-bottom: auto;
}
menu {
  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.active-menu {
  opacity: 1;
  pointer-events: initial;
}

@font-face {
  font-family: "PP Hatton";
  src: url("/fonts/PPHatton-Ultralight.woff2") format("woff2"), url("/fonts/PPHatton-Ultralight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Hatton";
  src: url("/fonts/PPHatton-UltralightItalic.woff2") format("woff2"), url("/fonts/PPHatton-UltralightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Scto Grotesk A";
  src: url("/fonts/SctoGroteskA-Medium.woff2") format("woff2"), url("/fonts/SctoGroteskA-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Hatton";
  src: url("/fonts/PPHatton-UltralightItalic.woff2") format("woff2"), url("/fonts/PPHatton-UltralightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Scto Grotesk A";
  src: url("/fonts/SctoGroteskA-Regular.woff2") format("woff2"), url("/fonts/SctoGroteskA-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Hatton";
  src: url("/fonts/PPHatton-Ultralight.woff2") format("woff2"), url("/fonts/PPHatton-Ultralight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
:root {
  --header-height: 60px;
  --gap: 45px;
  --light: #ffffff;
  --brown: #8f7870;
  --DustyMocha: #8F786F;
  --dark: #200004;
  --cream: #F3E9E2;
  --xxs: 5px;
  --xs: 10px;
  --s: 25px;
  --m: 50px;
  --l: 100px;
  --xl: 150px;
  --xxl: 200px;
  --PP: 'PP Hatton';
  --Scto: 'Scto Grotesk A';
  --scto: 'Scto Grotesk A';
}

body {
  font-size: 14px;
  letter-spacing: 0.01em;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.3;
  margin: 0;
  padding: 0;
  font-family: var(--Scto);
  text-align: center;
  overflow-x: hidden;
}

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

.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

.grid_3 {
  width: calc(25% - var(--gap) * 0.75);
}

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

.grid_5 {
  width: 41.67%;
}

.grid_6 {
  width: 50%;
}
.grid_6.small-gap {
  width: calc(50% - var(--s) / 2);
  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;
}

.img {
  display: block;
  width: 100%;
}

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

#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

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

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

.pad10 {
  padding: 0 10px;
}

#anime {
  width: 250px;
  height: 250px;
  max-width: 80vw;
  max-height: 80vw;
}

.tel {
  font-family: var(--PP);
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 0.01em;
  text-align: center;
}

.loader {
  position: fixed;
  height: 100%;
  width: 100%;
  background: var(--dark);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  top: 0;
}
.loader.disable {
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}

.lazyVideo {
  width: 100%;
}

.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;
  }
}
.desk {
  display: block;
}

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

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

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

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

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

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

.absolute {
  position: absolute;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25,
.mbs {
  margin-bottom: var(--s);
}

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

.mtm {
  margin-top: var(--m);
}

.mta {
  margin-top: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

section {
  position: relative;
  overflow-x: hidden;
}

.sticky {
  position: sticky;
  top: var(--header-height);
}

.has-working {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 10px;
}
.has-working img {
  position: absolute;
  right: -190px;
  bottom: -20px;
  width: 170px;
}

.arrow {
  display: block;
  margin: auto;
  padding-top: 15px;
}

/* Headings */
h1,
h2 {
  font-family: "PP Hatton";
  font-weight: 200;
  letter-spacing: 0.01em;
  font-style: normal;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.1em;
  text-transform: uppercase;
}
h1.sml,
h2.sml {
  font-size: 40px;
}
h1 i,
h2 i {
  text-transform: initial;
}

h3 {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}

.message {
  max-width: 40em;
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}
.container.small {
  max-width: 950px;
}
.container.xsmall {
  max-width: 600px;
}

.container-75 {
  width: calc(100% - 150px);
  margin: 0 auto;
}

.para {
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.para .inner-para {
  position: relative;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

#landing .inner-para {
  position: absolute;
}

.max630 {
  max-width: 565px;
}

.max473 {
  max-width: 473px;
}

.max340 {
  padding-top: 10px;
  max-width: 340px;
  margin: 0 auto;
}

.max450 {
  max-width: 395px;
  margin: 0 auto;
}

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

img.fadeIn {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1s ease-in, filter 0.5s ease-in 1s;
  -webkit-transition: opacity 1s ease-in, filter 0.5s ease-in 1s;
  -moz-transition: opacity 1s ease-in, filter 0.5s ease-in 1s;
  -ms-transition: opacity 1s ease-in, filter 0.5s ease-in 1s;
  -o-transition: opacity 1s ease-in, filter 0.5s ease-in 1s;
}
img.fadeIn.animated {
  opacity: 1;
  filter: blur(0);
  -webkit-filter: blur(0);
}

.trn {
  display: inline-block;
}

.white {
  color: #fff;
}

.btn {
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 30px;
  padding: 0 33.4px;
  color: var(--cream);
  border: 1px solid var(--cream);
  line-height: 1;
  text-transform: uppercase;
  transition: all 0.5s;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
}
.btn.dark {
  border: 1px solid var(--dark);
  color: var(--dark);
}
@media (hover: hover) {
  .btn:hover {
    color: var(--dark);
    background-color: var(--cream);
  }
  .btn.dark:hover {
    color: var(--cream);
    background-color: var(--dark);
  }
}

#map-det {
  width: 300px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 13px;
}

#map {
  height: 672px;
  max-height: calc(100vh - var(--header-height));
  font-family: "Instrument Sans", sans-serif !important;
}

#pois {
  padding-top: 40px;
}

#pois .grid_pois {
  width: calc(33.33% - 10px);
}

.map-link {
  display: block;
  text-align: left;
  line-height: 1.5;
}

.map-cat {
  padding-left: 10px;
  border-left: 1px solid currentColor;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.map-cat .map-link {
  display: block;
  padding-bottom: 10px;
}
.map-cat p {
  display: flex;
  gap: 5px;
  justify-content: flex-start;
  align-items: center;
  padding: 2px 0;
  font-size: 12px;
}
.map-cat span {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light);
}

footer {
  background-color: var(--brown);
  color: var(--cream);
}
footer .container {
  max-width: 700px;
}
footer .logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--m);
}
footer .logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 calc(var(--xs) / 2);
}
footer svg {
  margin-bottom: var(--m);
  width: 100%;
  height: auto;
}
footer svg .logo-path {
  fill: transparent;
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
}
footer svg.animated .logo-path {
  transition-delay: 0.5s !important;
  fill: #F3E9E2;
}

.underline {
  text-decoration: underline;
}

.uppercase {
  text-transform: uppercase;
}

.tsc {
  display: block;
  margin: 30px auto;
}

.links {
  gap: 15px;
  font-size: 12px;
  padding-bottom: 30px;
}

.img-team {
  margin: auto;
  display: block;
}

.mob {
  display: none;
}

.development {
  width: 1500px;
  transform: scale(0.5);
  transform-origin: top left;
}

.site {
  position: absolute;
  width: 1500px;
  transform: translateX(100%);
  right: 0;
  top: 4px;
}

.arrow-down {
  display: block;
  margin: 20px auto 0;
}

.bt1g {
  opacity: 1 !important;
  border-top: 1px solid var(--DustyMocha);
  clip-path: inset(0 50%);
}
.bt1g.animated {
  clip-path: inset(0 0 0 0);
}
.bt1g {
  transition: 1s all;
  -webkit-transition: 1s all;
  -moz-transition: 1s all;
  -ms-transition: 1s all;
  -o-transition: 1s all;
}

.bb1g {
  opacity: 1 !important;
  border-bottom: 1px solid var(--DustyMocha);
  clip-path: inset(0 50%);
}
.bb1g.animated {
  clip-path: inset(0 0 0 0);
}
.bb1g {
  transition: 1s all;
  -webkit-transition: 1s all;
  -moz-transition: 1s all;
  -ms-transition: 1s all;
  -o-transition: 1s all;
}

.slide-arrows,
.slider-counter p {
  font-family: "Scto Grotesk A";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.25em;
  leading-trim: both;
  text-edge: cap;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark);
  cursor: pointer;
}

.total-slides {
  display: none;
}

.internal-location-name {
  display: block;
  margin-top: var(--s);
  margin-left: auto;
  margin-right: auto;
  font-family: "Scto Grotesk A";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.35em;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark);
}

.location-name {
  font-family: "Scto Grotesk A";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.35em;
}
.location-name.ls {
  letter-spacing: 0.25em;
}

.quate-from {
  font-family: "Scto Grotesk A";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2em;
  text-align: center;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark);
}

.scheme {
  position: relative;
}
.scheme img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
.scheme img.active {
  opacity: 1;
}
.scheme img:first-child {
  position: relative;
  top: initial;
  left: initial;
}
.scheme img {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.scheme-action a {
  font-family: "Scto Grotesk A";
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.25em;
  leading-trim: both;
  text-edge: cap;
  display: flex;
  align-items: flex-end;
  text-align: right;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--DustyMocha);
}
.scheme-action a.active {
  color: var(--dark);
}
.scheme-action img {
  margin: auto var(--s);
}

.bb-menu {
  list-style: none;
  text-align: center;
}
.bb-menu li {
  margin-bottom: var(--s);
}
.bb-menu li:last-child {
  margin-bottom: 0;
}
.bb-menu li a {
  color: var(--dark);
  font-family: "PP Hatton";
  font-weight: 200;
  font-size: 30px;
  line-height: 125%;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.bb-menu li a i {
  text-transform: initial;
  font-style: italic;
}

.side-arrows .slide-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.side-arrows .prev-slide {
  left: var(--s);
}
.side-arrows .next-slide {
  right: var(--s);
  left: auto;
}

.bottom-bar {
  display: none;
}

.aerialMap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  clip-path: inset(0 0 100% 0);
}
.aerialMap.animated {
  transition-delay: 1s;
  clip-path: inset(0 0 0 0);
}
.aerialMap {
  transition: 1.5s;
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  -ms-transition: 1.5s;
  -o-transition: 1.5s;
}

#pop-up {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  background-color: rgba(143, 120, 111, 0.5);
  clip-path: circle(0%);
  pointer-events: none;
}
#pop-up .pop-up-wrapper {
  width: -moz-max-content;
  width: max-content;
  padding: var(--l) var(--m);
  background-color: var(--cream);
  position: absolute;
  max-width: 100%;
}
#pop-up .pop-up-wrapper p {
  max-width: 40em;
  text-align: center;
}
#pop-up .pop-up-close {
  position: absolute;
  top: var(--s);
  right: var(--s);
  z-index: 2;
  color: var(--dark);
  font-size: 20px;
}
#pop-up.show {
  clip-path: circle(100%);
  pointer-events: initial;
}
#pop-up {
  transition: 0.8s;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}

@media screen and (max-width: 1000px) {
  :root {
    --header-height: 50px;
    --xxs: 5px;
    --xs: 10px;
    --s: 15px;
    --m: 30px;
    --l: 60px;
    --xl: 90px;
    --xxl: 120px;
  }
  .b-logo {
    display: block;
    width: 399px;
    max-width: calc(100% - 90px);
    position: absolute;
    z-index: 2;
    top: var(--s);
  }
  .desk,
  .just-desktop {
    display: none;
  }
  .mob,
  .just-mobile {
    display: block;
  }
  .logo {
    width: 150px;
  }
  .logos {
    flex-wrap: wrap;
    gap: 25px;
    padding: 30px 0;
  }
  .logos img {
    margin: auto;
    transform: scale(0.9);
    transform-origin: center;
  }
  .links {
    padding-bottom: 60px;
  }
  .grid_4 {
    width: 100%;
  }
  .phone {
    position: fixed;
    left: var(--gap);
    bottom: 20px;
    z-index: 50;
  }
  .phone path {
    fill: #fff;
  }
  #landing {
    flex-direction: column;
    padding: 0;
  }
  #landing .inner-para {
    position: relative;
    height: 60vh;
  }
  #landing .inner-para #video {
    height: 100%;
  }
  #landing .inner-para img {
    height: 100%;
  }
  #landing a {
    border-color: var(--DustyMocha);
  }
  #landing .arrow-down svg g path {
    fill: var(--DustyMocha);
  }
  #landing > .relative {
    height: calc(40vh - 50px);
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px var(--m) 0;
  }
  #landing > .relative .message br {
    display: none;
  }
  #landing > .relative * {
    color: var(--DustyMocha);
  }
  h1,
  h2 {
    line-height: 1.25em;
  }
  h1 br,
  h2 br {
    display: none;
  }
  header {
    height: var(--header-height);
  }
  header .bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--s);
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: var(--DustyMocha);
    z-index: 2;
    border-top: 1px solid var(--cream);
  }
  header .bottom-bar .menu,
  header .bottom-bar .call {
    font-family: var(--Scto);
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 14px;
    leading-trim: both;
    text-edge: cap;
    text-align: center;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cream);
    z-index: 2;
    border: 0 none;
  }
  header .bottom-bar .enq {
    background-color: var(--cream);
    color: var(--DustyMocha);
  }
  menu {
    padding-bottom: 50px;
  }
  menu li img {
    display: none !important;
  }
  footer .g4 {
    width: 100%;
  }
  footer .logos {
    flex-direction: column;
    justify-content: center;
  }
  .check-holder {
    width: 50% !important;
  }
  .border-r {
    border-right: none !important;
    border-bottom: none !important;
  }
  .grid_3,
  .grid_6,
  .grid_6.small-gap {
    width: 100%;
  }
  .not-m {
    transform: none !important;
  }
  #map {
    width: 100%;
    height: 100vw;
  }
  .container-75 {
    width: calc(100% - var(--gap) * 2);
    margin: 0 auto;
    padding-top: 10px;
  }
  .g30 {
    gap: 30px;
  }
  .m-column-reverse {
    flex-direction: column-reverse;
  }
  .m-column {
    flex-direction: column;
  }
  .slider-counter p {
    font-size: 10px;
    letter-spacing: 0;
  }
  .side-arrows .slide-arrows {
    position: absolute;
    top: initial;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    bottom: 0;
  }
  .side-arrows .prev-slide {
    left: 0;
  }
  .side-arrows .next-slide {
    right: 0;
    left: auto;
  }
  .m-space {
    padding-left: var(--s);
    padding-right: var(--s);
  }
  .m-space img {
    margin-bottom: var(--s);
  }
  .m-space img:last-child {
    margin-bottom: 0;
  }
  .quate-from {
    font-size: 10px;
  }
  .m-mbm {
    margin-bottom: var(--m);
  }
  .m-mbs {
    margin-bottom: var(--s);
  }
  .m-pts {
    padding-top: var(--s);
  }
  .m-pbs {
    padding-bottom: var(--s);
  }
  .m-pb0 {
    padding-bottom: 0;
  }
  .m-pt0 {
    padding-top: 0;
  }
}
@media screen and (max-width: 560px) {
  .check-holder label {
    width: 256px;
    margin: auto;
  }
}/*# sourceMappingURL=style.css.map */