@font-face {
  font-family: "Founders Grotesk Regular";
  src: url("/fonts/FoundersGrotesk-Regular.eot");
  src: url("/fonts/FoundersGrotesk-Regular.eot?#iefix") format("embedded-opentype"), url("/fonts/FoundersGrotesk-Regular.woff2") format("woff2"), url("/fonts/FoundersGrotesk-Regular.woff") format("woff"), url("/fonts/FoundersGrotesk-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABC Arizona Flare Light";
  src: url("/fonts/ABCArizonaFlare-Light.eot");
  src: url("/fonts/ABCArizonaFlare-Light.eot?#iefix") format("embedded-opentype"), url("/fonts/ABCArizonaFlare-Light.woff2") format("woff2"), url("/fonts/ABCArizonaFlare-Light.woff") format("woff"), url("/fonts/ABCArizonaFlare-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABC Arizona Flare Regular";
  src: url("/fonts/ABCArizonaFlare-Regular.eot");
  src: url("/fonts/ABCArizonaFlare-Regular.eot?#iefix") format("embedded-opentype"), url("/fonts/ABCArizonaFlare-Regular.woff2") format("woff2"), url("/fonts/ABCArizonaFlare-Regular.woff") format("woff"), url("/fonts/ABCArizonaFlare-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Founders Grotesk Semibold";
  src: url("/fonts/FoundersGrotesk-Semibold.eot");
  src: url("/fonts/FoundersGrotesk-Semibold.eot?#iefix") format("embedded-opentype"), url("/fonts/FoundersGrotesk-Semibold.woff2") format("woff2"), url("/fonts/FoundersGrotesk-Semibold.woff") format("woff"), url("/fonts/FoundersGrotesk-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --xxl: 200px;
  --xl: 100px;
  --l: 50px;
  --m: 40px;
  --s: 20px;
  --xs: 10px;
  --header: 110px;
  --fs-small: 12px;
  --fs-medium: 18px;
  --horizontal: 30px;
  --halfwidth-padding: 80px;
  --grotesk-regular: "Founders Grotesk Regular";
  --grotesk-semibold: "Founders Grotesk Semibold";
  --arizona-regular: "ABC Arizona Flare Regular";
  --arizona-light: "ABC Arizona Flare Light";
  --olive: #AEAE8C;
  --green: #3C3F2F;
}

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

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

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

.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

.grid_3 {
  width: 25%;
}

.grid_4 {
  width: 33.33%;
}

.grid_5 {
  width: 41.67%;
}

.grid_6 {
  width: calc(50% - 10px);
}

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

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

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

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

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

/* General */
body {
  font-size: 16px;
  background: #fff;
  color: #fff;
  margin: 0;
  padding: 0;
}

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

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

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

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

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.fullwidth {
  width: 100%;
}

.fullheight {
  height: 100vh;
  height: 100svh;
}

.tac {
  text-align: center;
}

.grid-container {
  display: grid;
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  justify-content: space-between;
}
.grid-container .grid-child {
  display: grid;
  grid-template-rows: min-content min-content min-content 1fr;
}

.btn {
  width: 150px;
  padding: 10px 0;
  letter-spacing: 0.05em;
  font-size: var(--fs-small);
  text-align: center;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid;
  font-family: var(--grotesk-semibold);
  transition: color 0.3s, background-color 0.3s;
}
.btn.white {
  border-color: #fff;
  color: #fff;
}
.btn.white:hover {
  background-color: #fff;
  color: var(--green);
}
.btn.dark {
  border-color: var(--olive);
  color: var(--olive);
}
.btn.dark:hover {
  background-color: var(--olive);
  color: #fff;
}
.btn.olive {
  border-color: var(--olive);
  color: var(--olive);
}
.btn.olive:hover {
  background-color: var(--olive);
  color: var(--green);
}
.btn.green {
  border-color: var(--green);
  color: var(--green);
}
.btn.green:hover {
  background-color: var(--green);
  color: var(--olive);
}

.right {
  align-self: flex-end;
}

.toAnimate {
  transform: translateY(45px);
  opacity: 0;
  transition: opacity 1s, transform 1s, background-color 0.4s;
}
.toAnimate.animated {
  transform: translateY(0);
  opacity: 1;
}

.container {
  width: 1080px;
  max-width: 100%;
  padding-left: var(--horizontal);
  padding-right: var(--horizontal);
  margin: 0 auto;
}
.container.large {
  width: 1440px;
}
.container.small {
  width: 578px;
}

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

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

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

.bg-black {
  background-color: #000;
}

.indent {
  text-indent: 80px;
}

.photo {
  font-size: var(--fs-small);
  letter-spacing: 0.05em;
}

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

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

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

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

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

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

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

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

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

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

.pt10 {
  padding-top: 10px;
}

.halfwidth-pl {
  padding-left: var(--halfwidth-padding);
}

.halfwidth-pr {
  padding-right: var(--halfwidth-padding);
}

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

.mw {
  max-width: 100%;
}

.bt-green {
  border-top: 1px solid var(--olive);
}

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

.text-olive {
  color: var(--olive);
}

.bold {
  font-family: var(--grotesk-semibold);
}

.overflow-h {
  overflow: hidden;
}

.footer-link {
  color: var(--olive);
}

.links {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.links h4 {
  text-transform: uppercase;
}
.links h4 span {
  display: inline;
}
.links .bar {
  font-size: 10px;
  display: inline-block;
}

/* Headings */
h1, h2, h3, h4, h5 {
  margin: 0;
  font-weight: normal;
  line-height: 1em;
  text-transform: uppercase;
  font-family: var(--arizona-light);
}

p {
  text-align: left;
  margin: 0;
  font-size: var(--fs-medium);
  font-family: var(--arizona-light);
  line-height: 1.4;
}

h1 {
  font-size: 42px;
  display: flex;
  flex-direction: column;
  width: 326px;
  max-width: 90%;
  z-index: 2;
}

h2 {
  font-size: 70px;
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: var(--fs-small);
  font-family: var(--grotesk-regular);
  letter-spacing: 0.05em;
  text-transform: none;
  display: flex;
  flex-direction: column;
  gap: 4px 0;
}
h4 .indent {
  text-indent: 40px;
}
h4 span {
  display: block;
}
h4.big {
  font-family: var(--grotesk-semibold);
}

.ab-h4 {
  bottom: 30px;
  color: #fff;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
  font-weight: 600;
  width: -moz-max-content;
  width: max-content;
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  z-index: 100;
  height: var(--header);
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15px;
  transition: opacity 0.5s;
  color: #fff;
}
header svg path {
  fill: currentColor;
  transition: 0.3s;
}
header .btn {
  position: absolute;
  right: 40px;
  border-color: currentColor;
  color: currentColor;
}
header.off {
  opacity: 0;
}
header.white {
  color: #fff;
}
header.olive svg path {
  fill: var(--olive);
}
header.green svg path {
  fill: var(--green);
}

#landing {
  height: 100vh;
  height: 100svh;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#landing video {
  position: absolute;
  z-index: 1;
}

.play-video {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}
.play-video p {
  font-size: var(--fs-small);
  font-family: var(--grotesk-regular);
}
.play-video img {
  width: 24px;
}

video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
video.toAnimate {
  transform: translate(0);
  opacity: 1;
}

.slider {
  background-size: cover;
  height: 100vh;
  height: 100svh;
}

.slider-container {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.info-container {
  width: 100%;
  height: 100vh;
  height: 100svh;
  position: relative;
  padding-left: var(--horizontal);
  padding-right: var(--horizontal);
  margin: 0 auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: var(--l);
}
.info-container .wrapper {
  width: 50%;
  max-width: 100%;
  position: absolute;
  left: 0;
  margin: 0 auto;
}
.info-container p {
  padding-top: 6px;
  text-indent: 30px;
  font-family: var(--grotesk-regular);
  font-size: var(--fs-small);
  max-width: 100%;
  line-height: 1.2em;
}
.info-container h4 {
  font-family: var(--grotesk-semibold);
  text-transform: uppercase;
}
.info-container h4, .info-container p {
  font-size: 14px;
}

.room-container {
  min-height: 100vh;
  min-height: 100svh;
}
.room-container .wrapper {
  width: 50%;
  position: relative;
}
.room-container .container {
  padding-top: 150px;
}
.room-container .container p {
  padding-top: var(--l);
  padding-bottom: var(--l);
  width: 412px;
  max-width: 100%;
}
.room-container .btn {
  width: 190px;
}

.room-container:nth-child(1) {
  background-color: #78A08C;
}
.room-container:nth-child(1) .container h3,
.room-container:nth-child(1) .container p,
.room-container:nth-child(1) .container .btn {
  color: #1E3C50;
  border-color: #1E3C50;
}
.room-container:nth-child(1) .container .btn:hover {
  color: #fff;
  background-color: #1E3C50;
}

.room-container:nth-child(2) {
  background-color: #AEAE8C;
}
.room-container:nth-child(2) .container h3,
.room-container:nth-child(2) .container p,
.room-container:nth-child(2) .container .btn {
  color: #3C3F2F;
  border-color: #3C3F2F;
}
.room-container:nth-child(2) .container .btn:hover {
  color: #fff;
  background-color: #3C3F2F;
}

.room-container:nth-child(3) {
  background-color: #B1966B;
}
.room-container:nth-child(3) .container h3,
.room-container:nth-child(3) .container p,
.room-container:nth-child(3) .container .btn {
  color: #504628;
  border-color: #504628;
}
.room-container:nth-child(3) .container .btn:hover {
  color: #fff;
  background-color: #504628;
}

.room-links {
  position: absolute;
  right: 5%;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px 0;
  z-index: 2;
  pointer-events: none;
}
.room-links a {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0 15px;
}
.room-links p {
  font-family: var(--grotesk-regular);
  font-size: var(--fs-small);
  letter-spacing: 0.05em;
}
.room-links img {
  width: 24px;
  height: 24px;
}
.room-links .gallery {
  pointer-events: none;
}
.room-links .vid {
  pointer-events: all;
}

#living h4 {
  pointer-events: none;
}

.vbox-container img {
  max-height: 100vh !important;
  max-height: 100svh !important;
}

.venoratio {
  width: 78% !important;
  margin: 0 auto;
}

.vbox-close {
  right: 20px !important;
  top: 10px !important;
}

#nav {
  height: 30vh;
  height: 30svh;
  min-height: 300px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--green);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition-duration: 0.3s;
  gap: 10px;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
}
#nav .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
}
#nav .wrapper p,
#nav .wrapper span,
#nav .wrapper a {
  color: var(--olive);
  font-family: var(--arizona-light);
  letter-spacing: 0.05em;
  font-size: 16px;
}
#nav .wrapper a {
  text-decoration: underline;
}
#nav .wrapper span {
  padding-left: 10px;
  padding-right: 10px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--m);
}
nav a {
  font-family: var(--arizona-regular);
  font-size: 22px;
  color: var(--olive);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s;
}
nav a:hover {
  text-decoration-color: var(--olive);
}

#nav.active {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.hamburger {
  left: 40px;
  position: absolute;
  width: 30px;
  height: 30px;
  color: inherit;
  z-index: 1000;
  color: currentColor;
}
.hamburger span {
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: currentColor;
}
.hamburger span::before {
  position: absolute;
  content: "";
  top: -8px;
  height: 2px;
  width: 100%;
  background-color: currentColor;
}
.hamburger span::after {
  position: absolute;
  content: "";
  top: 8px;
  height: 2px;
  width: 100%;
  background-color: currentColor;
}
.hamburger span.active {
  background-color: transparent !important;
}
.hamburger span.active::before {
  top: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  background-color: var(--olive) !important;
}
.hamburger span.active::after {
  top: 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  background-color: var(--olive) !important;
}
.hamburger.white span,
.hamburger.white span::before,
.hamburger.white span::after {
  background-color: #fff;
}
.hamburger.olive span,
.hamburger.olive span::before,
.hamburger.olive span::after {
  background-color: var(--olive);
}
.hamburger.green span,
.hamburger.green span::before,
.hamburger.green span::after {
  background-color: var(--green);
}

.mobile {
  display: none;
}

#thank h2 {
  font-size: 40px;
}

/* enquiry */
.register {
  width: 100%;
  margin: 0 auto;
}

.formbox {
  margin: 0 auto;
}

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

.b_submit {
  margin: 50px 0 80px;
  cursor: pointer;
}

.hs-submit {
  border: 1px solid currentColor;
  padding: 10px 30px;
  height: 40px;
}
.hs-submit input {
  border: none;
  padding: 0;
}

input, select {
  font-size: var(--fs-small);
  margin: 0 auto;
  padding: 20px 0;
  width: 100%;
  color: var(--olive);
  border: 0 none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border-bottom: 1px solid var(--olive);
  font-family: var(--grotesk-regular);
  text-align: left;
  line-height: 1.4;
}

select {
  padding: 20px 0;
  text-transform: uppercase;
}

select option {
  padding: 5px 10px;
  background: #fff;
}

.privacy {
  margin-top: 15px;
  font-size: 10px;
}

.chk_holder {
  padding: 20px 0;
  color: #fff;
  border-bottom: 1px solid var(--olive);
}

.chk_holder:has(#chkInternational) {
  border-top: 1px solid var(--olive);
}

.chk_holder:has(#chkTerms) a,
.privacy a {
  text-decoration: underline;
  color: var(--olive);
}

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

#chkInternational + label,
#chkTerms + label {
  padding: 0;
  width: 100%;
  display: block;
  position: relative;
  text-align: left;
  display: block;
  color: var(--olive);
  font-size: var(--fs-small);
  font-family: var(--grotesk-regular);
  line-height: 1.4;
  text-transform: uppercase;
  margin: auto;
}

#chkInternational + label:before,
#chkTerms + label:before {
  position: absolute;
  right: 0;
  width: 10px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  border: 1px solid var(--olive);
  background-color: transparent;
  content: "";
  display: block;
}

#chkInternational:checked + label::before,
#chkTerms:checked + label::before {
  background-color: var(--olive);
}

input:-webkit-input-placeholder, textarea:-webkit-input-placeholder {
  color: var(--olive);
  opacity: 1;
  text-transform: uppercase;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--olive);
  opacity: 1;
  text-transform: uppercase;
}

input:-moz-placeholder, textarea:-moz-placeholder {
  color: var(--olive);
  opacity: 1;
  text-transform: uppercase;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--olive);
  opacity: 1;
  text-transform: uppercase;
}

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

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

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

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

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

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

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

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

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

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

div.token-input-dropdown-project {
  position: absolute;
  width: 100%;
  background-color: #fff;
  overflow-x: hidden;
  cursor: default;
  font-size: 11px;
  z-index: 13;
  color: #000000;
}

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

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

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

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

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

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

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

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

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

.hbspt-form form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.hs-form-field {
  width: calc(50% - 10px) !important;
}

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

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: flex;
  align-items: flex-end;
}

.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-list,
.slick-track {
  height: 100%;
}

.slick-dots {
  position: absolute;
  bottom: 34px;
  display: flex;
  width: 1200px;
  max-width: 90%;
  left: 50%;
  transform: translateX(-50%);
  justify-content: space-between;
  list-style: none;
}
.slick-dots li {
  position: relative;
  width: calc(33.3333333333% - 10px);
  height: 3px;
}
.slick-dots li button {
  top: 0;
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  font-size: 0;
  border: none;
  background-color: #fff;
  opacity: 0.3;
}
.slick-dots .slick-active button {
  opacity: 1;
}

.wrapper-info {
  width: 100%;
}
.wrapper-info .container {
  width: 1200px;
  padding: 0 0 15px 0;
  max-width: 90%;
}

.sliderA {
  aspect-ratio: 5/7 !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
}
.sliderA img {
  -o-object-fit: cover;
     object-fit: cover;
}
.sliderA .slick-dots {
  width: 100%;
  max-width: 100%;
  transform: translate(0);
  left: 0;
  bottom: -30px;
}
.sliderA .slick-dots li {
  width: calc(20% - 8px);
}
.sliderA .slick-dots li button {
  background-color: var(--green);
}

.sliderB {
  aspect-ratio: 5/7 !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
}
.sliderB img {
  -o-object-fit: cover;
     object-fit: cover;
}
.sliderB .slick-dots {
  width: 100%;
  max-width: calc(100% - 16px);
  transform: translateX(-50%);
  left: 50%;
  bottom: 20px;
}
.sliderB .slick-dots li {
  width: calc(16.6666666667% - 5px);
}

.room-container .slick-dots {
  position: absolute;
  bottom: 34px;
  display: flex;
  width: 1200px;
  max-width: 90%;
  left: 50%;
  transform: translateX(-50%);
  justify-content: space-between;
  list-style: none;
}
.room-container .slick-dots li {
  width: calc(16.6666666667% - 7px);
}

.slider:has(.lightbox2) .slick-dots li {
  width: calc(14.2857142857% - 6px);
}

.slider:has(.lightbox1) .slick-dots li,
.slider:has(.lightbox3) .slick-dots li {
  width: calc(12.5% - 6px);
}

.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-overlay *, .vbox-overlay :after, .vbox-overlay :before {
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

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

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

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

.vbox-left {
  left: 0;
}

.vbox-right {
  right: 0;
}

.vbox-top {
  top: 0;
}

.vbox-bottom {
  bottom: 0;
}

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

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

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

.vbox-prev {
  left: 15px;
}

.vbox-next {
  right: 15px;
}

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

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

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

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

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

.venoratio-1x1 {
  --vb-aspect-ratio:100%;
}

.venoratio-4x3 {
  --vb-aspect-ratio:calc(3 / 4 * 100%);
}

.venoratio-16x9 {
  --vb-aspect-ratio:calc(9 / 16 * 100%);
}

.venoratio-21x9 {
  --vb-aspect-ratio:calc(9 / 21 * 100%);
}

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

.vbox-child.vbox-inline, .vbox-child.venoratio {
  max-width: 100%;
}

.vbox-open {
  overflow: hidden;
}

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

.vbox-content {
  opacity: 0;
}

.vbox-content {
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 20px 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: 100%;
  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-grab .vbox-child img {
  cursor: grab;
}

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

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

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

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

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

.vbox-hidden {
  display: none;
}

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

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

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

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

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

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

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

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

.sk-center {
  margin: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes sk-wander {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: translateX(var(--sk-wander-distance)) rotate(-90deg) scale(0.6);
  }
  50% {
    transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-179deg);
  }
  50.1% {
    transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-180deg);
  }
  75% {
    transform: translateX(0) translateY(var(--sk-wander-distance)) rotate(-270deg) scale(0.6);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --xxl: 100px;
    --xl: 60px;
    --l: 40px;
    --m: 30px;
    --s: 20px;
    --xs: 10px;
    --fs-medium: 16px;
    --halfwidth-padding: 30px;
  }
  h2 {
    font-size: 40px;
  }
  .mw-1 {
    max-width: 280px;
  }
  .mw-2 {
    max-width: 450px;
  }
  .slider:not(.sliderA),
  .slider:not(.sliderB),
  .fullheight {
    height: auto;
    aspect-ratio: 16/9;
  }
  .room-container {
    flex-direction: column;
    min-height: auto;
  }
  .room-container .container {
    padding-top: var(--xl);
    padding-bottom: var(--xl);
  }
  .room-container .wrapper {
    width: 100%;
  }
  .info-container .wrapper {
    width: 100%;
  }
  .container.small {
    width: 100%;
  }
}
@media screen and (max-width: 680px) {
  :root {
    --xxl: 125px;
    --xl: 80px;
    --l: 60px;
    --m: 30px;
    --s: 20px;
    --xs: 10px;
    --fs-medium: 16px;
    --header: 80px;
    --horizontal: 20px;
  }
  header {
    justify-content: flex-start;
  }
  header svg {
    height: 60px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
  }
  header .btn {
    right: 10px;
  }
  h1 {
    font-size: 42px;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  h2 {
    font-size: 50px;
  }
  h2,
  .mw-1,
  .mw-2 {
    width: 100%;
    max-width: 100%;
  }
  .mw-2 {
    font-size: 40px;
  }
  .row {
    flex-direction: column;
  }
  .grid_6 {
    width: 100%;
  }
  .m-col-rev {
    flex-direction: column-reverse;
  }
  .m-col {
    display: flex;
    flex-direction: column;
  }
  .m-pbm {
    padding-bottom: var(--m);
  }
  .m-ptm {
    padding-top: var(--m);
  }
  .m-ptl {
    padding-top: var(--l);
  }
  .m-ptxxl {
    padding-top: var(--xxl);
  }
  .m-ptxl {
    padding-top: var(--xl);
  }
  .m-pbxxl {
    padding-bottom: var(--xxl);
  }
  .m-pbxl {
    padding-bottom: var(--xl);
  }
  .m-pb0 {
    padding-bottom: 0;
  }
  .slider:not(.sliderA),
  .slider:not(.sliderB),
  .fullheight {
    height: 100vh;
    height: 100svh;
    aspect-ratio: initial;
  }
  .sliderA {
    margin-bottom: 30px;
  }
  .chk_holder:has(#chkInternational) {
    border-top: none;
  }
  .vbox-content {
    width: 100% !important;
  }
  .links {
    flex-wrap: wrap;
  }
  .links h4 {
    width: 100%;
  }
  .links .bar {
    display: none;
  }
  .play-video {
    bottom: 50px;
  }
  .grid-container {
    grid-template-columns: 100%;
  }
  #nav {
    height: 70vh;
    height: 70svh;
  }
  #nav .wrapper {
    flex-direction: column;
  }
  #nav .wrapper span {
    display: none;
  }
  header .btn {
    display: none;
  }
  .hamburger {
    right: 20px;
    left: initial;
  }
  nav {
    flex-direction: column;
    gap: 20px 0;
  }
  .play-video {
    right: initial;
  }
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
  .m-bg-olive {
    background-color: var(--olive);
    color: var(--green);
  }
  .ab-h4 {
    left: 20px;
    margin-left: 0;
    margin-right: 0;
    width: 50%;
  }
  .play-video {
    bottom: 30px;
    right: 20px;
    margin-left: 0;
    margin-right: 0;
  }
  .links h4 {
    padding-top: 10px;
  }
  .links h4:nth-child(1) {
    padding-top: 0;
  }
  .hs-form-field {
    width: 100% !important;
  }
}