@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Newsreader:ital,opsz,wght@0,6..72,300..500;1,6..72,300..500&family=Work+Sans:ital,wght@0,300;0,400;1,300;1,400&display=swap");
@import url("https://use.typekit.net/ezq6byl.css");
:root {
  --header-height: 75px;
  --gap:20px;
  --light: #FAF7ED;
  --white: #fff;
  --black: #000;
  --creame:#FEF3DD;
  --xxs: 5px;
  --xs: 10px;
  --s: 30px;
  --m: 60px;
  --l: 80px;
  --xl: 123px;
  --xxl: 180px;
}

body {
  font-family: "Newsreader", serif;
  font-optical-sizing: auto;
  background: var(--light);
  color: var(--black);
  margin: 0;
  padding: 0 0 0 0;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.1;
  text-align: center;
  font-weight: 300;
  overflow-x: hidden;
  font-size: 20px;
}

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

.inter {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.31;
}

.f12 {
  font-size: 12px;
}

.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  text-align: center;
}

.min-h {
  height: calc(100vh - var(--header-height));
  padding: var(--gap);
  color: var(--white);
  width: 100%;
}

.fit-obj {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.abs-obj {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}

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

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

.grid_6 {
  width: 50%;
}

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

.underline {
  text-decoration: underline;
}

.middle-h {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

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

.c-a {
  text-align: center;
}

.block {
  display: block;
}

.full-height {
  height: 100vh;
  height: 100svh;
  color: var(--white);
  padding: var(--gap);
  position: relative;
}

.semi-h {
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
}
.semi-h img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

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

a,
button {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  background-color: transparent;
  border: none;
  outline: none;
}

.btn {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  line-height: 0.9;
  padding: 11px 10px 9px 10px;
  font-family: "aviano-sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 15px;
  text-transform: uppercase;
  background-color: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
  transition: all 0.5s;
  cursor: pointer;
}
.btn.light {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn:hover {
  background-color: var(--creame);
  color: var(--black);
  border: 1px solid var(--black);
}

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

.img {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.align-self {
  align-self: stretch;
}

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

.absolute {
  position: absolute;
}

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

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

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

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

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

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

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

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

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

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

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

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

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

.mb10 {
  margin-bottom: 10px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 38px;
}

.mb60 {
  margin-bottom: 59px;
}

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

.uppercase {
  text-transform: uppercase;
}

h1 {
  font-size: 31px;
  font-weight: 300;
  line-height: 1;
}

h2 {
  font-size: 25.76px;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  font-family: "aviano-sans", sans-serif;
  font-weight: 400;
  font-size: clamp(35px, 5.9vw, 250px);
  line-height: 0.8;
  letter-spacing: 0.5em;
  transform: translateX(0.25em);
}

.sml {
  font-size: clamp(35px, 85px, 4vw);
}

.med {
  font-size: clamp(35px, 118px, 6vw);
}

h4 {
  font-family: "aviano-sans", sans-serif;
  font-weight: 400;
  font-size: clamp(23px, 32px, 2vw);
  line-height: 1;
  letter-spacing: 0.4em;
  margin-bottom: 10px;
}

.caption {
  position: absolute;
  left: 0;
  bottom: var(--gap);
  line-height: 1;
  color: var(--white);
  width: -moz-max-content;
  width: max-content;
  right: 0;
  margin: auto;
}

.dists {
  padding: var(--l) var(--gap);
  gap: clamp(25px, 69px, 4vh);
}

.map-holder {
  position: sticky;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
}

#map {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#map img {
  width: 100%;
  max-width: 500%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: width 0.5s;
}

.pois-holder {
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  padding: var(--gap) 5px;
  font-weight: 500;
}
.pois-holder .grid_6 {
  padding-right: var(--gap);
}
.pois-holder h5 {
  font-weight: 600;
  padding: 40px 0 5px 0;
  font-size: 18px;
}
.pois-holder p {
  max-width: 400px;
  display: flex;
  line-height: 1.3;
  padding-left: 10px;
  gap: 4px;
}
.pois-holder p span {
  display: inline-block;
  text-align: right;
}

.zoom {
  width: 29px;
  height: 29px;
  border: 1px solid var(--black);
  background-color: var(--light);
}

.map-control {
  position: absolute;
  padding: var(--gap);
  bottom: 0;
  right: 0;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

footer {
  background-color: var(--light);
  padding: var(--gap) 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.semi-w {
  width: calc(50% - 120px - 8vw);
}

.mob {
  display: none;
}

.br {
  display: block;
}

header {
  width: 100%;
  height: var(--header-height);
  z-index: 99;
  display: flex;
  padding: 0 var(--gap);
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  color: var(--dark);
  background-color: var(--light);
  font-family: "Newsreader", serif;
  font-weight: 500;
  font-size: 17px;
}

#enquire {
  min-height: calc(100vh - var(--header-height));
  padding: var(--gap) 0;
  color: var(--white);
  z-index: 3;
}

.register {
  width: 1118px;
  max-width: calc(100% - 30px);
  margin: 0 auto;
}

.reg-flex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

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

.form {
  position: relative;
}
.form.disable {
  opacity: 0.5;
  pointer-events: none;
}

button {
  cursor: pointer;
  background-color: transparent;
  color: inherit;
  border: none;
  font-size: inherit;
  outline: none;
}

input,
textarea,
select, select-container {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  color: var(--white);
  border: none;
  padding: 7px 0;
  line-height: 1;
  resize: none;
  width: 100%;
  display: block;
  border-bottom: 1px solid var(--white);
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.b_submit {
  background-color: var(--white);
  display: block;
  color: var(--black);
}
.b_submit:hover {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

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

.parsley-errors-list {
  position: absolute;
  bottom: -18px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 11px;
  left: 0;
  list-style: none;
  color: var(--creame);
}

.form-field {
  margin-bottom: 10px;
  position: relative;
}

select {
  width: 100%;
}

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

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

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

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

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

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

.select-container {
  position: relative;
  z-index: 1;
}
.select-container.active {
  z-index: 2;
}

.select-container .select {
  position: relative;
}

.select-container .select::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 18px;
  top: 10px;
  right: 0px;
  background-image: url("../svgs/arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: border-color 0.4s;
}

.select-container.active .select::after {
  transform: rotate(180deg);
}

.select-container .option-container {
  position: absolute;
  background: var(--white);
  color: var(--dark);
  height: 0;
  overflow: hidden;
  width: 100%;
}

.select-container.active .option-container {
  max-height: 240px;
  height: auto;
  overflow: scroll;
}

.select-container .option-container .option.selected {
  background: var(--creame);
}

.select-container .option-container .option:hover {
  background: var(--creame);
}

.select-container .option-container .option label {
  color: #000;
  font-weight: 300;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: block;
  text-align: center;
  cursor: pointer;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider * {
  outline: none;
}

.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;
}
.slick-slide .flex {
  display: flex !important;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

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

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

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  position: absolute;
  padding: var(--gap);
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  transform: none;
  display: flex !important;
  justify-content: flex-start;
  align-items: flex-end;
  cursor: pointer;
  z-index: 4;
}
.slick-arrow.slick-next {
  justify-content: flex-end;
  left: 50%;
}

#semi-slider {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}
#semi-slider .slick-arrow {
  opacity: 0;
  pointer-events: none;
}
#semi-slider .slick-list {
  width: 50%;
}
#semi-slider .slick-dots {
  width: 50%;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  padding: var(--gap);
  max-width: 640px;
  margin: auto;
  flex-wrap: wrap;
}
#semi-slider .slick-dots li {
  list-style: none;
  text-transform: none;
  opacity: 0.5;
  line-height: 1.3;
}
#semi-slider .slick-dots li.slick-active {
  opacity: 1;
}
#semi-slider .slick-dots li:after {
  content: "|";
  display: inline-block;
  margin: 0 5px;
}
#semi-slider .slick-dots li:last-child:after {
  display: none;
}

@media screen and (max-width: 1700px) {
  .semi-w {
    width: calc(50% - 60px - 4vw);
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --header-height: 48px;
    --gap:15px;
    --l: 40px;
    --xl: 100px;
  }
  body {
    font-size: 15px;
  }
  header {
    font-size: 15px;
  }
  .desk {
    display: none;
  }
  .for-desk {
    opacity: 0;
    overflow: hidden;
    height: 1px;
    width: 1px;
  }
  .mob {
    display: block;
  }
  mb25 {
    margin-bottom: 18px;
  }
  .mb40 {
    margin-bottom: 25px;
  }
  .mb60 {
    margin-bottom: 30px;
  }
  h2 {
    font-size: 23px;
  }
  h3 {
    font-size: clamp(28px, 35px, 4vw);
    line-height: 1;
  }
  .grid_6, .grid_4, .g50 {
    width: 100%;
  }
  .gap {
    gap: 40px;
  }
  .main-site {
    min-width: 10px !important;
  }
  .pb30-m {
    padding-bottom: 30px;
  }
  .asp11-m {
    aspect-ratio: 1.18 !important;
  }
  .full-m {
    width: 100% !important;
  }
  .slick-arrow svg {
    width: 20px;
    height: auto;
  }
  .caption {
    bottom: 10px;
  }
  #semi-slider {
    flex-direction: column-reverse;
  }
  #semi-slider .slick-arrow {
    bottom: 0;
    top: auto;
    height: auto;
    aspect-ratio: 0.4055;
    opacity: 1;
    pointer-events: initial;
    align-items: center;
  }
  #semi-slider .slick-list {
    width: 100%;
  }
  #semi-slider .slick-list {
    width: 100%;
  }
  #semi-slider .slick-dots {
    padding: 50px 15px;
    width: 100%;
  }
  .btn {
    font-size: 14px;
  }
  .semi-h {
    height: auto;
  }
  .asp08-m {
    aspect-ratio: 0.811 !important;
  }
  .map-holder {
    position: relative;
    top: auto;
    height: auto;
    aspect-ratio: 0.7283;
  }
  .pois-holder p {
    font-size: 13px;
  }
  .pois-holder h5 {
    font-size: 13px;
    padding: 15px 0 5px 0;
  }
  #enquire h2.pbl {
    padding: 20px 0 30px 0;
  }
  footer {
    padding: 30px 0;
    font-size: 13px;
  }
  footer .container {
    flex-direction: row-reverse;
    gap: 25px;
  }
  .ordrer1 {
    order: 1;
    width: 100%;
    gap: 30px;
    justify-content: center;
  }
  .ordrer2 {
    order: 2;
    margin: 0 auto;
  }
  .ordrer3 {
    order: 3;
  }
  .semi-w {
    width: 100%;
  }
  .select-container .option-container .option label {
    font-size: 12px;
    padding: 10px;
  }
  .bg-light-m {
    background-color: var(--light);
  }
  #map-m {
    overflow: hidden;
  }
}
@media screen and (max-width: 480px) {
  .br {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */