/* 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;
  position: relative;
}
.slick-slider div .caption {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.slick-slider div .caption p {
  font-family: "p22-underground", sans-serif;
  color: var(--light);
  text-transform: uppercase;
  margin: 0;
  text-align: right;
  letter-spacing: 0.2em;
  font-size: 9px;
}

.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.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: clamp(40px, 8vw, 60px);
  height: clamp(40px, 8vw, 60px);
  background: none;
  border: none;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  font-size: 0;
  opacity: 1;
}
.slick-arrow:before {
  content: "";
  width: clamp(20px, 4vw, 30px);
  height: clamp(20px, 4vw, 30px);
  border-right: clamp(2px, 0.4vw, 3px) solid white;
  border-top: clamp(2px, 0.4vw, 3px) solid white;
  transform: rotate(45deg);
}
.slick-arrow.slick-prev {
  left: clamp(20px, 4vw, 40px);
}
.slick-arrow.slick-prev:before {
  transform: rotate(-135deg);
}
.slick-arrow.slick-next {
  right: clamp(20px, 4vw, 40px);
}
.slick-arrow.slick-next:before {
  transform: rotate(45deg);
}

.slick-dots {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  display: flex !important;
  justify-content: center;
  list-style: none;
  gap: 9px;
  z-index: 5;
}

.slick-dots button {
  font-size: 0;
  width: clamp(6px, 1vw, 10px);
  height: clamp(6px, 1vw, 10px);
  border: 1px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  background-color: #383838;
}

.slick-dots .slick-active button {
  background-color: var(--light);
}

.slider-2 .zoom {
  animation: zoom-in-zoom-out 35s infinite forwards;
}

@keyframes zoom-in-zoom-out {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.2;
  }
}
.slider img {
  -o-object-position: bottom;
     object-position: bottom;
}

@font-face {
  font-family: "Reckless Neue";
  src: url("RecklessNeue-Light.woff2") format("woff2"), url("RecklessNeue-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABC Diatype";
  src: url("/fonts/ABCDiatype-Regular.woff2") format("woff2"), url("/fonts/ABCDiatype-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --header-height: 80px;
  --gap:40px;
  --light: #FFFFFF;
  --beige:#E4D7C9;
  --alt-dark:#1E1E1E;
  --dark:#000000;
  --xs: 10px;
  --s: 20px;
  --m:40px;
  --l:60px;
  --xl: 80px;
  --xxl: 120px;
  --xxxl: 200px;
}

body {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  color: var(--dark);
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  background-color: var(--beige);
}

p {
  font-family: "ABC Diatype";
  font-weight: 450;
  font-style: normal;
  font-size: clamp(1rem, 1.5vw, 1rem);
  line-height: 1.31em;
  letter-spacing: 0.05em;
}
p.caption {
  font-family: "spectral", sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.small-hero {
  padding: 107px 0 0 0;
}

.height-100 {
  height: 100%;
}

.hero-bottom-text {
  font-family: "p22-underground", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: 450;
}

.target img {
  width: 80%;
}

.small-header {
  font-size: 15px;
  letter-spacing: 0.2em;
  font-weight: 450;
}

.ivyora {
  font-family: "ivyora-display", serif;
  font-weight: 300;
  line-height: 1.2;
}

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

.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

.grid_3 {
  width: 25%;
  padding: 0 15px;
}

.grid_4 {
  width: calc(33.33% - var(--gap) * 1.33);
}

.grid_5 {
  width: 41.67%;
}

.grid_6 {
  width: 50%;
}

.grid_7 {
  width: 58.33%;
}

.grid_8 {
  width: 66.67%;
}

.grid_9 {
  width: 75%;
}

.grid_10 {
  width: 83.33%;
}

.grid_11 {
  width: 91.67%;
}

.grid_12 {
  width: 100%;
}

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

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

.obj-position {
  -o-object-position: bottom;
     object-position: bottom;
}

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

img {
  border: none;
  max-width: 100%;
  display: block;
}

.img-full-hw {
  padding-top: 60px;
  width: calc(100vw - 2 * var(--gap));
  height: calc(100vh - 2 * var(--gap));
  -o-object-position: center bottom;
     object-position: center bottom;
}

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

.full-height {
  position: relative;
  height: 100vh;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: var(--gap);
  color: #fff;
  background-size: cover;
}
body:not(#page-home) .full-height {
  padding: var(--gap) 0 0;
  height: calc(100vh - 15px);
  height: calc(100svh - 15px);
}

.wrapper {
  position: absolute;
  bottom: var(--gap);
  left: 50%;
  transform: translateX(-50%);
}

.z-1 {
  z-index: 1;
}

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

.g-15 {
  gap: 15px;
}

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

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

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

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

.relative {
  position: relative;
}

.center_align {
  text-align: center;
}

.absolute {
  position: absolute;
}

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

.fullwidth {
  width: 100%;
}

.fullheight {
  height: 100vh;
}

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

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

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

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

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

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

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

.mlxs {
  margin-left: var(--xs);
}

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

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

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

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

.mrxs {
  margin-right: var(--xs);
}

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

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

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

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

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

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

.pbxxxl {
  padding-bottom: var(--xxxl);
}

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

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

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

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

.uppercase {
  text-transform: uppercase;
}

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

section {
  position: relative;
  z-index: 1;
  background-size: cover;
}

/* Headings */
h1, h2, h3, h4, h5 {
  font-weight: normal;
}

h1 {
  font-family: "spectral", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  line-height: 1.31em;
}

h2 {
  font-family: "spectral", sans-serif;
  font-weight: 300;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.31em;
}

h3 {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.27em;
}

h4 {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 450;
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
  line-height: 1.31em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h5 {
  font-family: "p22-underground", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.31em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.container {
  width: calc(100% - var(--gap) * 2);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.btn {
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 37.5px;
  flex-wrap: wrap;
  padding: 0 22.5px;
  background-color: var(--alt-dark);
  color: var(--beige);
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 0.5s, color 0.5s, border-color 0.5s, transform 0.5s;
  cursor: pointer;
  font-size: 12.5px;
  line-height: 1;
  border: 1px solid var(--alt-dark);
  letter-spacing: 0.2em;
  font-family: "p22-underground", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.btn-primary {
  height: 50px;
}

@media (hover: hover) {
  .btn:not(.btn-mobile):hover {
    background-color: transparent;
    color: var(--alt-dark);
  }
  .btn-mobile:hover {
    background-color: var(--dark) !important;
    color: var(--beige) !important;
  }
}
.desk {
  display: block;
}

.bg-video {
  background: url("/images/bg-hero-image.webp") no-repeat;
  position: absolute;
  top: 110px;
  left: 40px;
  width: calc(100% - 80px);
  height: calc(100% - 130px);
  z-index: 0;
  overflow: hidden;
}

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

.video {
  width: 100%;
}

@media (min-aspect-ratio: 16/9) {
  .bg-video iframe {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .bg-video iframe {
    width: 177.78vh;
  }
}
.mb40 {
  margin-bottom: 40px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb77 {
  margin-bottom: 77px;
}

.artist-left {
  position: relative;
}

.artist-left:after {
  position: absolute;
  content: "Artist impression";
  display: block;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.2em;
  line-height: 1.31em;
  font-family: "p22-underground", sans-serif;
  text-transform: uppercase;
}

.artist-right {
  position: relative;
}

.artist-right:after {
  position: absolute;
  content: "Artist impression";
  display: block;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.2em;
  line-height: 1.31em;
  font-family: "p22-underground", sans-serif;
  text-transform: uppercase;
}

.award-badge::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 16px;
  width: 8vw; /* Viewport width units */
  height: 8vw; /* Keeps it square */
  max-width: 119px;
  max-height: 119px;
  min-width: 50px;
  min-height: 50px;
  background-image: url("/images/team/awards.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}

.spn {
  position: absolute;
  display: block;
  background-color: var(--dark);
}

.spn-top {
  width: 0;
  height: 1px;
  transition: width 1s;
  left: 0;
  top: 0;
}
.spn-top.animated {
  width: 100%;
}

.spn-bottom {
  bottom: 0;
  left: 0;
  height: 1px;
  transition: width 1s;
}
.spn-bottom.animated {
  width: 100%;
}

.spn-left {
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
  transition: height 1s;
}
.spn-left.animated {
  height: 100%;
}

.spn-right {
  top: 0;
  right: 0;
  height: 0;
  width: 1px;
  transition: height 1s;
}
.spn-right.animated {
  height: 100%;
}

.video-container {
  position: relative;
  display: block; /* or block, depending on your layout needs */
}

.footer-p {
  font-size: 10px;
}
.footer-p:hover {
  -webkit-text-decoration: underline #000000;
          text-decoration: underline #000000;
}

.g-70 {
  gap: 70px;
}

.w-100 {
  width: 100%;
}

iframe {
  pointer-events: none;
}

.grid-video {
  aspect-ratio: 20/25;
}

.fadeIn {
  opacity: 0;
  transition: all 0.5s, opacity 0.7s;
}
.fadeIn.animated {
  opacity: 1;
}

.fit-obj {
  -o-object-fit: cover;
  object-fit: cover;
}

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

.slide-container .disclaimer--bottom-right {
  right: 60px;
  bottom: 20px;
}
.slide-container .disclaimer--bottom-left {
  left: 20px;
  bottom: 15px;
}

.slide-grid .disclaimer--bottom-left {
  left: 10px;
  bottom: 10px;
}

#map {
  width: 100%;
  height: calc(100vh - var(--header-height));
}

.map-inner {
  height: 0;
  overflow: hidden;
  transition: height 0.5s;
}

#map-cats {
  max-width: 460px;
  margin: auto;
  text-align: center;
}

.map-inner p:last-child {
  min-height: 25px;
}

.map-link {
  font-family: "p22-underground", sans-serif;
  font-weight: 500;
  font-size: clamp(0.6875rem, 1.25vw, 0.8125rem);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 0px 20px 7px 0;
  position: relative;
  display: inline-block;
}
.map-link:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 16%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg); /* Down chevron */
  display: block;
}
.map-link.active:after {
  top: 30%;
  transform: translateY(-50%) rotate(-135deg); /* Up chevron */
}

.grid-caption {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.grid-caption p {
  font-family: "p22-underground", sans-serif;
  color: var(--light);
  text-transform: uppercase;
  margin: 0;
  text-align: right;
  letter-spacing: 0.2em;
  font-size: 9px;
}

.grid-caption--left {
  right: auto;
  left: 10px;
}

.hero-background {
  width: 100%;
  position: absolute;
  -o-object-position: bottom;
     object-position: bottom;
}
.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.4) 0%, rgba(102, 102, 102, 0) 100%);
  background-blend-mode: multiply;
  pointer-events: none; /* Allows clicks to pass through */
  z-index: 1;
}

.hero-images-group {
  position: relative;
  z-index: 2;
}

.main-hero {
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.5));
}

.disclaimer {
  position: relative;
  align-items: center;
  cursor: pointer;
  gap: 8px;
}
.disclaimer:hover .disclaimer-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.disclaimer p {
  font-family: "p22-underground", sans-serif;
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: 0.2em;
  color: var(--light);
  margin-top: 4px;
}
.disclaimer .disclaimer-box {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: calc(100% + 12em);
  background-color: rgba(0, 0, 0, 0.5019607843);
  padding: 10px 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
  margin-bottom: 8px;
}
.disclaimer .disclaimer-box p, .disclaimer .disclaimer-box .disclaimer-text {
  font-family: "ABC Diatype" !important;
  font-size: 9px;
  line-height: 1.31;
  margin: 0;
  letter-spacing: 0;
}

.disclaimer--bottom-left {
  position: absolute;
  align-self: initial;
  bottom: 30px;
  left: 16px;
}
.disclaimer--bottom-left .disclaimer-box {
  bottom: 100%;
  left: 0;
  transform: translateY(10px);
  margin-bottom: 8px;
}
.disclaimer--bottom-left:hover .disclaimer-box {
  transform: translateY(0);
}

.disclaimer--bottom-right {
  position: absolute;
  align-self: initial;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}
.disclaimer--bottom-right .disclaimer-box {
  bottom: 100%;
  right: 0;
  transform: translateY(10px);
  margin-bottom: 8px;
}
.disclaimer--bottom-right:hover .disclaimer-box {
  transform: translateY(0);
}

footer p {
  font-size: 12px;
}

.aerial-shadow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(102, 102, 102, 0) 30%), linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(102, 102, 102, 0) 30%);
  background-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.btn-mobile {
  display: none;
}

header {
  height: var(--header-height);
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 10;
  top: 0;
  padding: 0 var(--gap);
  background-color: var(--beige);
  border-bottom: 1px solid var(--dark);
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
nav a {
  color: var(--dark);
  font-family: "spectral", sans-serif;
  font-weight: 300;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 131%;
  text-align: center;
}

/* Hamburger Button */
.hamburger {
  width: 20px;
  height: 16px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: fixed; /* Always fixed to prevent jumping */
  z-index: 1002;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger Animation */
.hamburger.active {
  position: fixed;
  z-index: 1002;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

#enquire {
  padding-top: var(--xl);
  padding-bottom: var(--xl);
}

.bg {
  position: absolute;
  left: 0;
  top: var(--xxl);
  width: calc(100% - var(--xxl));
  z-index: 2;
  background-color: var(--light);
  bottom: 0;
}

.register {
  width: 820px;
  max-width: calc(100% - 40px);
  margin: auto;
  position: relative;
  z-index: 3;
  bottom: 0;
}

input, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: inherit;
  appearance: none;
  background-color: transparent;
  color: var(--grey);
  border: none;
  font-family: "ABC Diatype";
  font-size: 13px;
  padding: 5px 0 19px;
  line-height: 1;
  resize: none;
  display: block;
  width: 100%;
  border-radius: 0;
  font-weight: 300;
  text-align: center;
  width: 100% !important;
  border-bottom: 1px solid currentColor;
  margin: 1px 0 32px;
}
input:not(.b_submit), textarea:not(.b_submit), select:not(.b_submit) {
  opacity: 0.45;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  color: var(--dark) !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;
  width: calc(50% - 10px);
}

.b_submit {
  margin: 60px auto 44px auto;
  width: -moz-max-content !important;
  width: max-content !important;
  cursor: pointer;
  font-size: 14px;
  font-family: "spectral", sans-serif;
  padding: 8px;
  color: var(--dark);
  height: 42px;
  border: 1px solid var(--dark);
  width: 182px !important;
  transition: all 0.4s;
}
.b_submit:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

select {
  -moz-text-align-last: center;
       text-align-last: center;
  background-image: url(/images/buttons/down.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding: 12px 0;
}

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

.token-input-list-project {
  list-style: none;
}

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

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

ul.parsley-errors-list.filled, ul.parsley-errors-list {
  font-size: 10px;
  list-style: outside none none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: left;
  top: 0;
}
ul.parsley-errors-list.filled li, ul.parsley-errors-list li {
  padding: 0;
  text-align: left;
  color: #f00d0d;
  position: absolute;
  bottom: 0;
}

.privacy {
  font-weight: 300;
  letter-spacing: 0;
  font-size: 14px;
}

.token-input-token-project p {
  display: inline-block;
  padding: 7px 0;
  margin: 0 5px 0 0;
  font-size: 12px;
}

.chk_holder {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  font-weight: 300;
  padding-bottom: 23px;
  justify-content: center;
  border-bottom: 1px solid var(--dark);
  margin-bottom: 20px;
  opacity: 0.5;
}

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

ul.parsley-errors-list {
  position: absolute;
  bottom: 8px;
  color: #ff0000;
  left: 0;
  font-size: 12px;
}

.grid_6 .mb20 {
  position: relative;
}

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

#chkInternational + label {
  padding: 0 0 0 38px;
  position: relative;
  text-align: center;
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  font-family: inherit;
  display: block;
  text-align: center;
  margin: a;
}

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

#chkInternational + label:after {
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  background-color: currentColor;
  content: "";
  display: block;
  transition: all 0.2s ease-in-out;
}

#chkInternational:checked + label:after {
  opacity: 1;
}

.tel {
  display: block;
  font-size: 28px;
  font-weight: 300;
  font-family: "Reckless Neue";
}

.token-input-token-project {
  margin-bottom: 40px;
}

/**
 * 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);
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --gap: 20px;
  }
  .grid_5 {
    width: 100%;
  }
  .grid_6 {
    width: 100%;
  }
  .grid_7 {
    width: 100%;
  }
  .main-hero {
    width: 80%;
  }
  .footer-col {
    flex-direction: column;
  }
  .mg-50 {
    gap: 50px;
  }
  .spn-left {
    display: none;
  }
  .spn-right {
    display: none;
  }
  .prs {
    padding-right: 0;
  }
  .mrxs {
    margin-right: 0;
  }
  .mrs {
    margin-right: 0;
  }
  .pls {
    padding-left: 0;
  }
  .mlxs {
    margin-left: 0;
  }
  .full-height {
    height: calc(100vh - 30px);
    height: calc(100svh - 30px);
  }
  body:not(#page-home) .full-height {
    padding: var(--gap) 0 0;
    height: calc(100vh - 25px);
    height: calc(100svh - 25px);
  }
  .img-full-hw {
    padding-top: 80px;
  }
  footer {
    padding-top: 0 !important;
  }
  .nav-btn {
    display: none;
  }
  .bg-video {
    left: 20px;
    height: calc(100% - 115px);
    width: calc(100% - 40px);
  }
  #landing .disclaimer {
    display: none;
  }
  .btn {
    width: 228px !important;
  }
}
@media screen and (max-width: 1000px) and (hover: hover) {
  .btn:hover {
    background-color: transparent;
  }
}
@media screen and (max-width: 1000px) {
  .hero-images-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .address-img {
    width: 70%;
  }
  #map {
    height: 100vw;
    margin-top: 40px;
  }
  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1003;
  }
  .hamburger {
    display: flex;
  }
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--beige);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13px;
    opacity: 0;
    pointer-events: none;
    z-index: 1001;
    display: flex;
  }
  nav.active {
    animation: fadeIn 0.5s ease forwards;
    pointer-events: auto;
  }
  nav.closing {
    animation: fadeOut 0.5s ease forwards;
  }
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  nav a {
    font-size: clamp(2.375rem, 5vw, 2.5rem);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  nav.active a {
    opacity: 1;
    transform: translateY(0);
  }
  .disclaimer .disclaimer-box {
    width: calc(100% + 14em);
  }
  .slide-container .disclaimer--bottom-right {
    right: 30px;
    bottom: 7px;
  }
  .slide-container .disclaimer--bottom-left {
    left: 20px;
    bottom: 35px;
  }
  .slide-grid .disclaimer--bottom-right {
    bottom: 7px;
    right: 10px;
  }
  .slide-grid .disclaimer--bottom-left {
    left: 10px;
    bottom: 10px;
  }
  .btn-mobile {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    padding: 14px 0;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    z-index: 999;
    border: none;
    cursor: pointer;
    background-color: var(--dark);
  }
}/*# sourceMappingURL=style.css.map */