@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
@font-face {
  font-family: "HW Cigars Medium";
  src: url("../fonts/HWCigarsTrial-Medium.eot");
  src: url("../fonts/HWCigarsTrial-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/HWCigarsTrial-Medium.woff2") format("woff2"), url("../fonts/HWCigarsTrial-Medium.woff") format("woff"), url("../fonts/HWCigarsTrial-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HW Cigars Regular";
  src: url("../fonts/HWCigarsTrial-Regular.eot");
  src: url("../fonts/HWCigarsTrial-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/HWCigarsTrial-Regular.woff2") format("woff2"), url("../fonts/HWCigarsTrial-Regular.woff") format("woff"), url("../fonts/HWCigarsTrial-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Plak";
  src: url("../fonts/NeuePlak-CondSemiBold.eot");
  src: url("../fonts/NeuePlak-CondSemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/NeuePlak-CondSemiBold.woff2") format("woff2"), url("../fonts/NeuePlak-CondSemiBold.woff") format("woff"), url("../fonts/NeuePlak-CondSemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --NeuePlak: "Neue Plak";
  --CigRegular: "HW Cigars Regular";
  --CigMedium: "HW Cigars Medium";
  --inter: "Inter, sans-serif";
  --brown: #2D2523;
  --light: #F2F2F2;
  --white: #ffffff;
  --black: #2D2523;
  --olive: #D7D1BE;
  --dark: #020303;
  --headerheight: 90px;
  --xl: 100px;
  --l: 80px;
  --m: 50px;
  --s: 30px;
  --xs: 20px;
  --xxs: 10px;
  --plrXS: 20px;
  --headerA: 90px;
  --headerB: 50px;
  --transition-speed: 0.3s;
  --active-area-opacity: 0.6;
  --inactive-area-opacity: 0;
  --button-hover-opacity: 0.9;
}

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

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

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

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: var(--olive);
  color: var(--brown);
  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;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.fullwidth {
  width: 100%;
}

.fullheight {
  height: 100%;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.container {
  width: 100%;
  padding-left: var(--plrXS);
  padding-right: var(--plrXS);
}

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

.disclaimers {
  font-size: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fitcontent {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

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

.mw {
  width: 100%;
}

.mw350 {
  max-width: 350px;
}

.medium {
  font-family: var(--CigMedium);
}

.fullyvideo {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}

.bg-dark {
  position: relative;
}
.bg-dark::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.btn {
  display: block;
  padding: 6px 16px;
  font-size: 14px;
  line-height: 1.1em;
  letter-spacing: 0.02em;
  text-align: center;
  background-color: var(--brown);
  color: var(--white);
  font-family: var(--CigMedium);
  min-width: 162px;
  width: -moz-fit-content;
  width: fit-content;
  transition: opacity 1s, transform 1s, background-color 250ms, color 250ms;
}
.btn.white {
  background-color: var(--white);
  color: var(--brown);
}
.btn.white:hover {
  background-color: var(--brown);
  color: var(--white);
}
.btn:hover {
  background-color: var(--white);
  color: var(--brown);
}

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

.bb-brown {
  border-bottom: 1px solid var(--brown);
}

.gap10 {
  gap: 10px;
}

.gap20 {
  gap: 20px;
}

.col-gap30 {
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.row-gap20 {
  row-gap: 20px;
}

.row-gap40 {
  row-gap: 40px;
}

.thirds {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--xl) 20px;
}
.thirds .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.thirds p {
  max-width: 480px;
  width: 100%;
}

.corner-caption {
  color: var(--white);
  position: absolute;
  left: 20px;
  bottom: 20px;
}

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

h1 {
  text-align: center;
  font-family: var(--CigMedium);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3em;
  letter-spacing: 0.8px;
  font-weight: normal;
  width: calc(100% - 40px);
}

h2 {
  text-align: center;
  font-family: var(--CigMedium);
  font-size: 30px;
  line-height: 1.1em;
  letter-spacing: 0.6px;
  font-weight: normal;
}

h3 {
  font-size: 24px;
  text-align: center;
  font-family: var(--CigMedium);
  line-height: 1.1em;
  letter-spacing: 0.6px;
  font-weight: normal;
}

h4 {
  font-size: 18px;
  font-family: var(--CigRegular);
  font-weight: 300;
}
h4.medium {
  padding-bottom: 10px;
  font-family: var(--CigMedium);
  font-weight: 500;
  font-size: 24px;
}

.underline {
  text-decoration: underline;
  text-underline-offset: 4px;
}

p {
  text-align: center;
  font-family: var(--CigRegular);
  font-size: 15px;
  line-height: 1.25em;
  font-weight: normal;
}
p.grab-line {
  font-size: 18px;
}

header {
  position: absolute;
  top: 0;
  background-color: transparent;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
  z-index: 100;
}
header .wrapper {
  height: var(--headerA);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
header .phone, header .enq {
  position: absolute;
  font-family: var(--CigRegular);
}
header .phone {
  left: 20px;
}
header .enq {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  right: 20px;
}

nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 30px;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  height: var(--headerB);
}
nav a {
  font-family: var(--CigRegular);
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 150ms;
}
nav a:hover {
  text-decoration-color: var(--white);
}

#page-masterplan .masterplan-nav,
#page-land .land-nav,
#page-golf .golf-nav,
#page-location .location-nav,
#page-curators .curators-nav,
#page-news .news-nav {
  text-decoration: underline;
}

#landing {
  height: 100vh;
  height: 100svh;
  width: 100%;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#landing .wrapper {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
#landing:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
#landing h1 {
  color: var(--white);
}

#page-home h1 {
  position: static;
  transform: translate(0, 0);
}
#page-home .scroll {
  gap: 30px;
  width: 100%;
  cursor: initial;
}
#page-home .scroll img {
  cursor: pointer;
}

#landing:not(#page-home #landing) h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scroll {
  position: absolute;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
  gap: 10px;
  cursor: pointer;
}
.scroll p {
  font-family: var(--inter);
  font-size: 16px;
  color: #fff;
}

.nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 20px;
}
.nav-grid .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
}
.nav-grid p {
  width: 100%;
  max-width: 560px;
}

.quarter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.quarter-grid .wrapper {
  position: relative;
}
.quarter-grid .wrapper div {
  position: absolute;
  width: 100%;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.quarter-grid h4 {
  color: var(--white);
}

.see-all {
  border-top: 1px solid var(--brown);
  border-bottom: 1px solid var(--brown);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  color: var(--brown);
}

.master-slider {
  width: 100%;
}
.master-slider .wrapper {
  display: grid !important;
  grid-template-columns: 1fr 350px;
  gap: 20px;
  width: 100%;
}
.master-slider .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.aerial-content p {
  text-transform: capitalize;
}

.map-holder {
  aspect-ratio: 3/2;
  max-height: 80vh;
  width: 100%;
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 350px;
}

#map {
  height: 100%;
  width: 100%;
}

.map-link {
  font-size: 16px;
  text-align: left;
  line-height: 1.2em;
  margin-bottom: var(--xxs);
  display: block;
  position: relative;
  font-family: var(--CigMedium);
  color: var(--brown);
}

.map-link:after, .map-link:before {
  background-color: var(--dark);
  position: absolute;
  display: block;
  content: "";
}

.map-link:after {
  width: 11px;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  height: 1px;
}

.map-link:before {
  width: 1px;
  right: 5px;
  top: 50%;
  transform: translate(0, -50%);
  height: 11px;
  transition: transform 0.4s;
}

.map-link.active::before {
  display: none;
}

.map-inner {
  height: 0;
  overflow: hidden;
  transition: height 0.5s;
}
.map-inner p {
  font-family: var(--CigRegular);
  text-align: left;
}
.map-inner p:last-child {
  padding-bottom: 10px;
}

.map-cat {
  position: relative;
  background-repeat: no-repeat;
  background-position: right 12px;
  background-size: 10px;
  margin-bottom: 10px;
}

.map-cat::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.news {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.news-tile .date,
.news-tile p {
  color: var(--brown);
}
.news-tile .zoom-in {
  display: block;
  overflow: hidden;
}
.news-tile .zoom-in img {
  transition: 3s;
  -webkit-transition: 3s;
  -moz-transition: 3s;
  -ms-transition: 3s;
  -o-transition: 3s;
}
.news-tile:hover .zoom-in img {
  scale: 1.05;
}

#news-module img {
  margin-top: var(--xs);
  margin-bottom: var(--xs);
}

#news-details-arrows {
  padding: 10px 0;
  border-bottom: 1px solid var(--brown);
  position: fixed;
  top: calc(var(--headerA) + 30px);
  background-color: var(--olive);
  z-index: 99;
  transition: 1s;
}
#news-details-arrows div a {
  color: var(--brown);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

#news-filter-key {
  display: none;
  position: sticky;
  top: var(--headerheight);
  background-color: var(--olive);
  z-index: 99;
  padding: 10px 0;
  border-bottom: 1px solid var(--brown);
}
#news-filter-key .filter-key {
  color: var(--brown);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin: auto 20px;
}

#share p,
#share a {
  color: var(--brown);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6em;
  /* 160% */
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
#share a {
  margin: auto 10px;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media (hover: hover) {
  #share a:hover {
    border-bottom: 1px solid var(--brown);
  }
}

.toAnimate:not(.btn) {
  transition: opacity 1s, transform 1s;
}

img.toAnimate:not(.container .toAnimate) {
  opacity: 1;
  transform: translateY(0);
}

img.toAnimate {
  width: 100%;
}

.toAnimate {
  opacity: 0;
  transform: translateY(15px);
}
.toAnimate.animated {
  opacity: 1;
  transform: translateY(0);
}

#preloader {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--brown);
  overflow: hidden;
  transition: height 1s ease;
  -webkit-transition: height 1s ease;
  -moz-transition: height 1s ease;
  -ms-transition: height 1s ease;
  -o-transition: height 1s ease;
}
#preloader img {
  margin: auto;
  width: 500px;
  max-width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.para {
  overflow: hidden;
  position: relative;
}
.para .wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 2;
  width: calc(100% - 40px);
}
.para .wrapper h2, .para .wrapper p {
  color: var(--white);
  max-width: 540px;
  width: 100%;
}
.para video {
  width: 100%;
}

.inner-para {
  height: 120%;
}
.inner-para img, .inner-para video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.schemes {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  width: 100%;
}
.schemes .line {
  width: 1px;
  background-color: var(--brown);
  height: 20px;
}
.schemes .options {
  position: relative;
}
.schemes .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  transition: opacity 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
.schemes .wrapper:first-child {
  opacity: 1;
}

.selector-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.selectors, .presets {
  display: flex;
  gap: 0 20px;
  justify-content: center;
}
.selectors a, .presets a {
  text-align: center;
  font-family: var(--CigRegular);
  font-size: 15px;
  line-height: 1.25em;
  font-weight: normal;
  color: var(--brown);
  cursor: pointer;
}
.selectors a.activebtn, .selectors a.active-preset, .presets a.activebtn, .presets a.active-preset {
  text-decoration: underline;
  text-underline-offset: 3px;
  pointer-events: none;
}

.of-hidden {
  overflow: hidden;
}

.masterplan-wrapper {
  width: 100%;
  position: relative;
}

#masterplan {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.scroll-indicator {
  position: sticky;
  bottom: 20px;
  left: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -50px;
  background: rgba(255, 255, 255, 0.8);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  z-index: 98;
  pointer-events: none;
  display: none;
}
@media screen and (max-width: 680px) {
  .scroll-indicator {
    display: block;
  }
}

.map-marker {
  transform: translateY(15px);
}

.map-area,
.map-marker,
.map-vertical {
  transition: 600ms;
}

#insta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#insta-content a {
  width: calc(10% - 18px);
}
#insta-content a img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

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

.vbox-child {
  max-width: 1400px !important;
  width: 95%;
}

.mob-menu {
  display: none;
}

.link {
  display: block;
  background: #fff;
  width: 1.43%;
  height: 2.49%;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  animation: pulse-animation 4s infinite;
}
.link::before, .link::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  background-color: #2D2523;
  transform: translate(-50%, -50%);
}
.link::before {
  width: 40%;
  height: 2.5%;
}
.link::after {
  width: 2.5%;
  height: 40%;
}

.pop-holder {
  position: absolute;
  color: #2D2523;
  width: -moz-max-content;
  width: max-content;
  top: -170%;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  pointer-events: none;
}
.pop-holder .pop-det {
  display: block;
  padding: 0.33vw 0.45vw;
  background-color: #d8bb94;
  transition: transform 0.5s, opacity 0.5s;
  transform: translateY(100%);
  font-size: clamp(2px, 0.75vw, 12px);
  opacity: 0;
}
.pop-holder .pop-det:after {
  position: absolute;
  bottom: -49%;
  width: 1vw;
  height: 50%;
  content: "";
  display: block;
  background-color: #d8bb94;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.link.active {
  background-color: #d8bb94;
  animation: pulseGold-animation 4s infinite;
}
.link.active .pop-holder {
  overflow: initial;
}
.link.active .pop-holder .pop-det {
  transform: translateY(0%);
  opacity: 1;
}

.link.active:after {
  height: 0;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
  }
  100% {
    box-shadow: 0 0 0 2vw rgba(255, 255, 255, 0);
  }
}
@keyframes pulseGold-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(216, 187, 148, 0.6);
  }
  100% {
    box-shadow: 0 0 0 2vw rgba(216, 187, 148, 0);
  }
}
.holder {
  padding: var(--plrXS) var(--plrXS) 0 var(--plrXS);
}

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

.register {
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
}

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

form {
  padding-top: 40px;
}

input,
select,
textarea,
select {
  font-size: 16px;
  margin: 0 auto;
  padding: 10px 0;
  width: 100%;
  border: 0 none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border-bottom: 1px solid var(--white);
  text-align: left;
  font-family: var(--CigRegular);
  line-height: 1.4;
  color: var(--white);
}

textarea {
  resize: none;
}

select option {
  background: #fff;
  color: #000 !important;
}

.privacy {
  font-size: 13px;
  padding: 10px 0 0;
  text-decoration: underline;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 30px;
}

.chk_holder {
  margin: 10px auto 0 auto;
}

#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: 25px;
  width: 20px;
  text-align: center;
}

#chkInternational + label {
  padding: 2px 0 2px 26px;
  position: relative;
  text-align: center;
  display: block;
  font-size: 16px;
  display: inline;
  margin: auto;
  font-family: var(--CigRegular);
  color: var(--light);
}

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

#chkInternational + label:after {
  position: absolute;
  left: 0;
  width: 5px;
  height: 11px;
  top: 50%;
  left: 8px;
  transform: translateY(-60%) rotate(45deg) scale(0);
  border-bottom: 2px solid var(--light);
  border-right: 2px solid var(--light);
  content: "";
  display: block;
  transition: all 0.4s ease-in-out;
  -moz-transform: translateY(-60%) rotate(45deg) scale(0);
  -ms-transform: translateY(-60%) rotate(45deg) scale(0);
  -o-transform: translateY(-60%) rotate(45deg) scale(0);
}

#chkInternational:checked + label:after {
  transform: translateY(-60%) rotate(45deg) scale(1);
}

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

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

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

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

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

/*footer*/
footer {
  width: 100%;
}
footer * {
  color: var(--white);
}
footer .btb1w {
  border-bottom: 1px solid var(--white);
  border-top: 1px solid var(--white);
}
footer .bb1w {
  border-bottom: 1px solid var(--white);
}
footer .bl1b {
  border-right: 1px solid var(--white);
}
footer .fss {
  font-size: 16px;
}
footer .footer-logo {
  margin-right: var(--s);
  margin-bottom: 20px;
}
footer .footer-logo img {
  max-width: 100%;
}
footer .footer-logo:last-child {
  margin-right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

div.token-input-dropdown-project ul li.token-input-selected-dropdown-item-project {
  background-color: #ccc;
  color: #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;
}

.parallax-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  will-change: transform;
}
.parallax-section .wrapper {
  gap: 30px;
}
.parallax-section .wrapper h2, .parallax-section .wrapper p {
  color: var(--white);
  max-width: 540px;
  width: 100%;
}
.parallax-section.full-height {
  height: 100vh;
  width: 100%;
}
.parallax-section.fixed-height {
  height: 600px;
}
@media screen and (max-width: 768px) {
  .parallax-section.fixed-height {
    height: 400px;
  }
}
.parallax-section .parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.dark {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.light {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.4) 100%);
}

.parallax-content {
  position: absolute;
  height: 140%;
  top: -20%;
  left: 0;
  width: 100%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.parallax-content img {
  display: block;
  width: 100%;
  height: 125%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-top: -7.5%;
}
.parallax-content .video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 125%;
  overflow: hidden;
  margin-top: -7.5%;
}
.parallax-content .video-container video,
.parallax-content .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.parallax-section[data-parallax-speed="0.2"] .parallax-content {
  height: 120%;
  top: -10%;
}
.parallax-section[data-parallax-speed="0.3"] .parallax-content {
  height: 130%;
  top: -15%;
}
.parallax-section[data-parallax-speed="0.5"] .parallax-content {
  height: 150%;
  top: -25%;
}
.parallax-section[data-parallax-speed="1"] .parallax-content {
  height: 200%;
  top: -50%;
}

.parallax-text-overlay {
  position: absolute;
  z-index: 3;
  width: 100%;
}
.parallax-text-overlay.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.parallax-text-overlay.bottom {
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .parallax-text-overlay.bottom {
    bottom: 15px;
  }
}
.parallax-text-overlay .parallax-title {
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.parallax-text-overlay .parallax-subtitle {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  .parallax-content {
    transition: transform 0.1s linear;
  }
  .parallax-section[data-parallax-speed="0.2"] .parallax-content {
    height: 130%;
    top: -15%;
  }
}
@media screen and (max-width: 1000px) {
  .parallax-section .parallax-content {
    position: relative;
    height: 100% !important;
    top: 0 !important;
    transform: none !important;
  }
  .parallax-section .parallax-content img, .parallax-section .parallax-content video {
    height: 100% !important;
    margin-top: 0;
    -o-object-position: center;
       object-position: center;
  }
  .parallax-section .parallax-content .video-container {
    position: relative;
    height: 100%;
    margin-top: 0;
  }
  .parallax-section .parallax-overlay {
    z-index: 2;
  }
  .parallax-section .parallax-text-overlay {
    position: absolute;
    z-index: 3;
  }
  .parallax-section .parallax-text-overlay.center {
    width: 100%;
    padding: 0 20px;
  }
}
/* 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: 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;
}

/* Rural Slider Navigation Styles */
.slider.captions .slick-dots {
  bottom: 44px;
}
.slider.captions p {
  padding-top: var(--xxs);
}

.slider {
  position: relative;
  width: 70%;
  margin: 0 auto;
  /* Add space for dots */
  /* Dots styling */
  /* Arrow styling */
}
.slider .slick-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex !important;
  /* Force display */
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1;
  /* Ensure dots are above slider */
}
.slider .slick-dots li {
  margin: 0 6px;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid var(--white);
  position: relative;
  border-radius: 100%;
}
.slider .slick-dots li.slick-active {
  background: var(--white);
}
.slider .slick-dots li button {
  width: 12px;
  height: 12px;
  position: relative;
  background: transparent;
  font-size: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  border: none;
}
.slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 0;
  cursor: pointer;
  z-index: 2;
  /* Ensure arrows are above content */
  opacity: 1;
  /* Force visibility */
  display: block !important;
  /* Force display */
}
.slider .slick-prev {
  left: -70px !important;
}
.slider .slick-prev:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-color: var(--brown);
  border-width: 2px 2px 0 0;
  display: block;
  transform: translate(-25%, -50%) rotate(-135deg);
}
.slider .slick-next {
  right: -70px !important;
}
.slider .slick-next:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-color: var(--brown);
  border-width: 2px 2px 0 0;
  display: block;
  transform: translate(-75%, -50%) rotate(45deg);
}

/* Position the slider container as relative for absolute positioning context */
.master-slider {
  position: relative;
}

/* Style and position the info container */
.master-slider .info {
  position: relative;
  padding-top: 60px;
  /* Space for the arrows */
  width: 100%;
  max-width: 350px;
}

/* Create a dedicated container for arrows within the info section */
.master-slider .info:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  /* Height of arrow area */
}

/* Position the slider arrows */
.master-slider .slick-arrow {
  position: absolute;
  top: 10px;
  z-index: 10;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 0;
  cursor: pointer;
}

/* Position arrows at the edges of the info container */
.master-slider .slick-prev {
  right: 340px;
  /* Right edge minus 40px */
  left: auto;
}

.master-slider .slick-next {
  right: 10px;
  /* Right at the right edge */
}

/* For smaller screens, adjust to percentage-based positioning */
/* Style the arrow icons */
.master-slider .slick-arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-color: var(--brown);
  border-width: 2px 2px 0 0;
  display: block;
}

.master-slider .slick-prev:before {
  left: 50%;
  transform: translate(-25%, -50%) rotate(-135deg);
}

.master-slider .slick-next:before {
  left: 50%;
  transform: translate(-75%, -50%) rotate(45deg);
}

/* Media query for mobile */
@media screen and (max-width: 680px) {
  .master-slider .info {
    padding-top: 20px;
    /* Less padding needed when arrows are hidden */
  }
}
.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 (min-width: 1001px) {
  .para {
    aspect-ratio: 16/9;
  }
  header.active {
    position: fixed;
    top: 0;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
    background-color: var(--olive);
  }
  header.active .logo,
  header.active .logo svg {
    height: 40px;
  }
  header.active svg path {
    fill: var(--brown) !important;
  }
  header.active .wrapper {
    height: 70px;
  }
  header.active * {
    color: var(--brown);
  }
  header.active .btn {
    background-color: var(--brown);
    color: var(--white);
  }
  header.active .btn:hover {
    background-color: var(--white);
    color: var(--brown);
  }
  header.active nav {
    border-color: var(--brown);
  }
  header.active nav a:hover {
    text-decoration-color: var(--brown);
  }
  header.active-b {
    transform: translateY(0);
  }
  header.active-initially-hidden {
    transition: none;
  }
  .mobile-only {
    display: none;
  }
  #page-news header,
  #page-news-details header {
    position: fixed;
    top: 0;
    background-color: var(--olive);
    transform: translateY(0);
    transition: none;
  }
  #page-news header .logo,
  #page-news header .logo svg,
  #page-news-details header .logo,
  #page-news-details header .logo svg {
    height: 40px;
  }
  #page-news header svg path,
  #page-news-details header svg path {
    fill: var(--brown) !important;
  }
  #page-news header .wrapper,
  #page-news-details header .wrapper {
    height: 70px;
  }
  #page-news header *,
  #page-news-details header * {
    color: var(--brown);
  }
  #page-news header .btn,
  #page-news-details header .btn {
    background-color: var(--brown);
    color: var(--white);
  }
  #page-news header .btn:hover,
  #page-news-details header .btn:hover {
    background-color: var(--white);
    color: var(--brown);
  }
  #page-news header nav,
  #page-news-details header nav {
    border-color: var(--brown);
  }
  #page-news header nav a:hover,
  #page-news-details header nav a:hover {
    text-decoration-color: var(--brown);
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --headerA: 62px;
  }
  header {
    position: fixed;
    top: 0;
    background-color: var(--olive);
    width: 100%;
    transition: none;
  }
  header .wrapper {
    height: var(--headerA);
    border-bottom: 1px solid var(--brown);
  }
  header .phone,
  header .enq {
    display: none;
  }
  header .logo,
  header .logo svg {
    height: 32px;
  }
  header svg path {
    fill: var(--brown) !important;
  }
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0 30px;
    border: none;
    background-color: var(--brown);
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    transform: translateY(100%);
    transition: transform 1s;
  }
  nav a {
    font-size: 24px;
    width: 100%;
    text-align: left;
    padding: 15px 0;
    color: var(--olive);
    position: relative;
    opacity: 0;
  }
  nav a:last-child::after {
    display: none;
  }
  nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid var(--olive);
  }
  nav.active {
    transform: translateY(0);
  }
  .mob-menu {
    bottom: 0;
    position: fixed;
    height: 70px;
    width: 100%;
    background-color: var(--brown);
    display: flex;
    align-items: center;
    padding: 0 15px;
  }
  .mob-menu .call {
    color: var(--olive);
    font-size: 16px;
  }
  .mob-menu .btn {
    padding: 8px 15px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--olive);
    color: var(--brown);
  }
  #landing {
    height: calc(100vh - 70px);
    height: calc(100svh - 70px);
  }
  .hamburger {
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    position: absolute;
    width: 30px;
    height: 30px;
  }
  .hamburger span {
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--olive);
    transition-duration: 0.3s;
  }
  .hamburger span:before, .hamburger span::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    background-color: var(--olive);
    transition-duration: 0.3s;
  }
  .hamburger span::before {
    top: -7px;
  }
  .hamburger span::after {
    top: 7px;
  }
  .hamburger span.active {
    background-color: transparent;
  }
  .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);
  }
  .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);
  }
  .quarter-grid {
    grid-template-columns: 1fr 1fr;
  }
  .master-slider .slick-prev {
    left: 10px;
    right: initial;
  }
  .master-slider .wrapper {
    grid-template-columns: 1fr;
  }
  .master-slider .wrapper .info {
    grid-row: 1;
    max-width: 100%;
  }
  .t-col {
    flex-direction: column;
  }
  .t-col-rev {
    flex-direction: column-reverse;
  }
  .t-col.gap20,
  .t-col-rev.gap20 {
    gap: 40px;
  }
  .t-col .grid_6,
  .t-col-rev .grid_6 {
    width: 100%;
  }
  .t-align-center {
    align-items: center;
  }
  .thirds {
    grid-template-columns: 1fr;
  }
  .slider {
    width: 90%;
  }
  .slider .slick-prev {
    left: -40px !important;
  }
  .slider .slick-next {
    right: -40px !important;
  }
  .aerial-content p {
    text-transform: capitalize;
  }
  .map-holder {
    height: auto;
    max-height: -moz-max-content;
    max-height: max-content;
    grid-template-columns: 1fr;
    aspect-ratio: initial;
  }
  #map {
    aspect-ratio: 16/9;
    height: auto;
    width: 100%;
  }
  #news .grid_4,
  .news .grid_4 {
    width: 100%;
  }
  .para.fullheight {
    height: 100svh;
  }
  .para .inner-para {
    height: 100%;
  }
  .para img, .para video {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #news-details-arrows {
    top: 62px;
  }
  .t-pbxl {
    padding-bottom: var(--xl);
  }
  .news {
    grid-template-columns: 1fr 1fr;
  }
  #insta-content a {
    width: calc(33.3333333333% - 10px);
  }
  #insta-content a img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
@media screen and (min-width: 681px) {
  .mobile-only {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  h1 {
    font-size: 24px;
  }
  h2,
  h3 {
    font-size: 20px;
  }
  input, select {
    font-size: 15px;
  }
  nav {
    padding-left: 15px;
    padding-right: 15px;
  }
  nav a {
    font-size: 17px;
  }
  .m-col {
    flex-direction: column;
  }
  .m-blrnone {
    border-left: none !important;
    border-right: none !important;
  }
  .m-bb {
    border-bottom: 1px solid var(--white);
  }
  .m-fullwidth {
    width: 100%;
  }
  .slider {
    width: 100%;
  }
  .quarter-grid,
  .nav-grid {
    grid-template-columns: 1fr;
  }
  .m-fullwidth {
    width: 100%;
  }
  #map {
    aspect-ratio: 6/7;
  }
  .aerial-content {
    flex-direction: column;
    gap: 20px;
  }
  .aerial-content .grid_3 {
    width: 100%;
  }
  .aerial-content p {
    text-align: left;
  }
  .m-plr0 {
    padding-left: 0;
    padding-right: 0;
  }
  .schemes {
    gap: 25px;
  }
  .schemes .line {
    height: 1px;
    width: 80%;
  }
  .schemes .wrapper {
    grid-template-columns: 1fr;
  }
  .selectors {
    flex-direction: column;
    gap: 20px;
  }
  .selector-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .news {
    grid-template-columns: 1fr;
  }
  .m-dnone {
    display: none;
  }
  .m-plrxs {
    padding-left: var(--plrXS);
    padding-right: var(--plrXS);
  }
  .map-marker {
    width: 100px !important;
  }
  .map-marker path {
    width: 100px !important;
  }
  .pop-holder {
    top: -230%;
  }
  .pop-holder .pop-det {
    padding: 5px 10px;
    font-size: 12px;
  }
  .pop-holder .pop-det::after {
    width: 10px;
  }
  .masterplan-container {
    width: 100%;
    overflow-x: scroll;
    position: relative;
  }
  .masterplan-wrapper {
    width: 300vw;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .masterplan-wrapper::-webkit-scrollbar {
    display: none;
  }
  .masterplan-wrapper img {
    width: 300vw;
    max-width: none;
  }
  #masterplanContent {
    width: 300vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
  }
  #masterplanContent .link {
    position: absolute;
    width: 1.43%;
    height: 2.49%;
  }
  #masterplanContent .link .dot-pulse {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
  }
  #masterplanContent .link::before, #masterplanContent .link::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  @keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    }
    100% {
      box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
  }
  @keyframes pulseGold-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(216, 187, 148, 0.6);
    }
    100% {
      box-shadow: 0 0 0 15px rgba(216, 187, 148, 0);
    }
  }
}