@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");
@font-face {
  font-family: "Mier A";
  src: url("assets/fonts/MierA-Regular.woff2") format("woff2"), url("assets/fonts/MierA-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-size-t: 20px;
  --font-size-b: 18px;
  --font-size-n: 16px;
  --font-size-s: 14px;
}
@media screen and (max-width: 1200px) {
  :root {
    --font-size-t: 18px;
    --font-size-b: 16px;
    --font-size-n: 14px;
    --font-size-s: 12px;
  }
}
html, body {
  height: 100%;
  font-family: "Mier A";
  font-size: var(--font-size-n);
  background-color: #BE966F;
  color: #252525;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-feature-settings: "lnum";
}

p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

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

img {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.gridCtn {
  margin: 0 auto;
  max-width: 1600px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-gap: 40px;
  /*@include small {
      grid-gap: 30px;
  }
  @include tablet {
      grid-gap: 20px;
  }*/
}
@media screen and (max-width: 1640px) {
  .gridCtn {
    width: 92%;
  }
}
@media screen and (max-width: 900px) {
  .gridCtn {
    column-gap: 20px;
  }
}

.bgImg {
  background-size: cover;
  background-position: center;
}

.media {
  position: relative;
  display: block;
}
.media img, .media video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}

.imgCtn {
  position: relative;
}
.imgCtn img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* === === === === === === === === === === --> Form Inputs <-- === === === === === === === === === */
.selectCtn {
  position: relative;
  width: fit-content;
  display: flex;
  width: 100%;
  text-align: center;
}
.selectCtn:after {
  content: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='30' height='30' xml:space='preserve'><circle cx='15' cy='15' r='15' fill='rgb(220, 220, 220)'/><polyline points='10 13 15 19 20 13' fill='rgb(27, 82, 66)' stroke-width='1' /></svg>");
  width: 30px;
  height: 30px;
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  pointer-events: none;
}
.selectCtn p {
  font-size: 12px;
  letter-spacing: 2px;
}
.selectCtn select {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  text-transform: uppercase;
  font-family: "pragmatica-slabserif";
  border: none;
  font-size: 16px;
  padding: 0;
  padding: 14px 26px;
  padding-left: 50px;
  cursor: pointer;
}

input[type=text], input[type=tel], input[type=email], input[type=password], input[type=date], input[type=number], select, textarea, input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 14px 26px;
  outline: none;
  color: #000;
  font-weight: 100;
  resize: none;
  font-size: 16px;
  border-radius: 5px;
  font-family: "pragmatica-slabserif";
}
input[type=radio], input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  outline: none;
  vertical-align: middle !important;
  margin-right: 10px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
/* === === === === === === === === === === --> Button <-- === === === === === === === === === */
.btn, .btnn {
  display: inline;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 18px 32px;
  width: fit-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  transition: background-color 0.6s, color 0.6s;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 1em 1.5em;
  font-size: 16px;
}
.btn:hover, .btnn:hover {
  background-color: #ffffff;
  color: #BE966F;
}
.btn.gold, .btnn.gold {
  color: #BE966F;
  border: 1px solid #BE966F;
  background-color: transparent;
}
.btn.gold:hover, .btnn.gold:hover {
  background-color: #BE966F;
  color: #ffffff;
}
.btn.grey, .btnn.grey {
  color: #aaa;
  border: 1px solid #aaa;
}
.btn.grey:hover, .btnn.grey:hover {
  border: 1px solid #BE966F;
  color: #BE966F;
}

/* === === === === === === === === === === --> Wysiwyg <-- === === === === === === === === === */
.wysiwyg.center {
  text-align: center;
}
.wysiwyg h1 {
  margin-bottom: 60px;
  font-size: var(--font-size-t);
  text-align: center;
}
.wysiwyg h2 {
  margin-bottom: 30px;
  font-size: var(--font-size-t);
  color: #BE966F;
}
.wysiwyg p {
  font-size: var(--font-size-s);
  margin-bottom: 20px;
  letter-spacing: 0;
}
.wysiwyg p + h2, .wysiwyg ul + h2 {
  margin-top: 50px;
}
.wysiwyg a {
  font-size: inherit;
  color: inherit;
  text-decoration: underline;
}
.wysiwyg .btn {
  display: block;
  text-decoration: none;
  margin-top: 40px;
  border: 1px solid #BE966F;
  color: #BE966F;
}
.wysiwyg ul, .wysiwyg ol {
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: var(--font-size-s);
}

navigation-animation {
  z-index: 999;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  pointer-events: initial;
}
navigation-animation .bg {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
navigation-animation .bg.b1 {
  transition: clip-path 0.6s;
  background-color: #F5F0EB;
}
navigation-animation .bg.b2 {
  transition: clip-path 0.6s;
  background-color: #BE966F;
}
navigation-animation .ctn {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 740px;
  height: auto;
  opacity: 1;
  transition: opacity 0.6s 0.2s;
}
navigation-animation.hide {
  pointer-events: none;
}
navigation-animation.hide .bg {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
navigation-animation.hide .bg.b1 {
  transition: clip-path 0.6s 0.2s;
}
navigation-animation.hide .bg.b2 {
  transition: clip-path 0.6s;
}
navigation-animation.hide .ctn {
  opacity: 0;
  transition: opacity 0.6s 0s;
}

.toggleGridLayout {
  cursor: pointer;
}
.toggleGridLayout .largeSvg {
  display: block;
}
.toggleGridLayout .smallSvg {
  display: none;
}
.toggleGridLayout.small .largeSvg {
  display: none;
}
.toggleGridLayout.small .smallSvg {
  display: block;
}

.socialCtn {
  display: flex;
}
.socialCtn a {
  display: block;
}
.socialCtn a svg {
  height: 18px;
  width: auto;
}
.socialCtn a + a {
  margin-left: 16px;
}

.languageCtn {
  text-transform: uppercase;
}
.languageCtn span {
  font-weight: 800;
}

.simpleCtn {
  background-color: #F5F0EB;
  min-height: 100vh;
  padding: calc(2vh + 180px) 8% 10vh;
}
.simpleCtn .wysiwyg {
  max-width: 640px;
  margin: 0 auto;
}
.simpleCtn .wysiwyg h1 {
  font-family: "Tiempos Fine";
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  color: #000000;
}
@media screen and (max-width: 900px) {
  .simpleCtn {
    padding: calc(1vh + 120px) 8% 10vh;
  }
}

.bookingMailto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background-color: #F5F0EB;
  align-items: center;
  justify-items: center;
}
.bookingMailto .left {
  width: 80%;
}
.bookingMailto .left .wysiwyg {
  text-align: left;
}
.bookingMailto .left .wysiwyg h1 {
  font-family: "Tiempos Fine";
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  text-align: left;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}
.bookingMailto .left .wysiwyg p {
  letter-spacing: 0;
  line-height: 1.8;
}
.bookingMailto .right {
  width: 100%;
  height: 100%;
}
.bookingMailto .right .imgCtn {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .bookingMailto .left {
    grid-column: 1/3;
    padding: 100px 0;
  }
  .bookingMailto .right {
    grid-column: 1/3;
    height: 80vh;
  }
}

map-control {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
map-control .cardList {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
}
map-control .cardList .propertyCard {
  grid-column: 1;
  grid-row: 1;
  height: 100%;
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
}
map-control .cardList .propertyCard.active {
  display: flex;
}
map-control .cardList .propertyCard .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
map-control .cardList .propertyCard .content {
  z-index: 2;
  width: 60%;
}
map-control .cardList .propertyCard .content svg, map-control .cardList .propertyCard .content .imgCtn {
  width: 90%;
  max-width: 500px;
  aspect-ratio: 5/3;
  margin: 0 auto;
}
map-control .cardList .propertyCard .content svg img, map-control .cardList .propertyCard .content .imgCtn img {
  object-fit: contain;
}
map-control .cardList .propertyCard .content .btn {
  margin: 0 auto;
  margin-top: 40px;
}
map-control .mapCtn {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
}
map-control .controls {
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  background-color: #F5F0EB;
  align-self: center;
  justify-self: end;
}
map-control .controls div {
  font-weight: 800;
  aspect-ratio: 1/1;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  user-select: none;
}
map-control .controls div svg {
  width: 28px;
}
map-control .controls div svg path {
  stroke: #000000;
  stroke-width: 10px;
  stroke-linecap: round;
}
@media screen and (max-width: 900px) {
  map-control .cardList {
    grid-column: 1/3;
    grid-row: 2;
    height: 50vh;
  }
  map-control .mapCtn {
    grid-column: 1/3;
    grid-row: 1;
    height: 50vh;
  }
  map-control .controls div {
    padding: 8px;
    cursor: pointer;
  }
  map-control .controls div svg {
    width: 20px;
  }
}

booking-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
booking-control .left {
  height: 100%;
  display: grid;
  background-color: #F5F0EB;
}
booking-control .left .bookingForms {
  justify-self: center;
  align-self: center;
  max-width: 500px;
  width: 80%;
}
booking-control .left .bookingForms .ttlState {
  margin: 0;
  margin-top: 34px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: var(--font-size-t);
  text-transform: uppercase;
  color: #BE966F;
  position: relative;
}
booking-control .left .bookingForms .ttlState.active {
  color: #000000;
}
booking-control .left .bookingForms .ttlState span:nth-child(1) {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -50px;
}
@media screen and (max-width: 1200px) {
  booking-control .left .bookingForms .ttlState span:nth-child(1) {
    position: unset;
    top: unset;
    bottom: unset;
    left: unset;
  }
  booking-control .left .bookingForms .ttlState span:nth-child(2) {
    margin-left: 20px;
  }
}
booking-control .left .bookingForms .descState {
  color: #aaa;
  font-size: var(--font-size-s);
  line-height: 1.2;
  letter-spacing: 0;
  font-style: italic;
}
booking-control .left .bookingForms .hideCtn {
  padding-bottom: 20px;
  display: none;
}
booking-control .left .bookingForms .hideCtn.active {
  display: block;
}
booking-control .left .bookingForms .hideCtn .btnn {
  margin-top: 20px;
  display: inline-block;
}
booking-control .left .bookingForms .hideCtn .prev {
  font-size: var(--font-size-s);
  color: #aaa;
  margin-bottom: 40px;
  letter-spacing: 0;
  cursor: pointer;
  width: fit-content;
}
booking-control .left .bookingForms .state1 .descState {
  margin-bottom: 20px;
  font-style: italic;
}
booking-control .left .bookingForms .propertyList button {
  background-color: transparent;
  border: 1px solid #252525;
  display: block;
  color: #000000;
  width: 100%;
  padding: 18px 30px;
  text-align: left;
  line-height: 1.4;
  border-radius: 0;
}
booking-control .left .bookingForms .propertyList button .ttl {
  font-size: var(--font-size-b);
  letter-spacing: 0.2em;
}
booking-control .left .bookingForms .propertyList button .nb {
  text-transform: initial;
  color: #aaa;
  font-size: var(--font-size-s);
}
booking-control .left .bookingForms .propertyList button.active {
  background-color: #BE966F;
  border: 1px solid #BE966F;
  color: #aaa;
}
booking-control .left .bookingForms .propertyList button.active .ttl {
  color: #ffffff;
}
booking-control .left .bookingForms .propertyList button.active .nb {
  color: #ffffff;
}
booking-control .left .bookingForms .propertyList button + button {
  margin-top: 20px;
}
booking-control .left .bookingForms .propertyBookinglist {
  display: none;
}
booking-control .left .bookingForms .propertyBookinglist.active {
  display: block;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline {
  background-color: transparent;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell {
  background-color: transparent;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell a {
  color: #000000;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell.datepick-days-cell-over {
  background-color: #ffffff;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell.datepick-days-cell-over a {
  color: #BE966F;
  text-shadow: none;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell.date2approve {
  background-color: #aaa;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell.date2approve.date_available {
  background-color: transparent;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell.date2approve span, booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell.date2approve a {
  color: #000000;
  text-shadow: none;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell.date2approve.check_in_time .wpbc-diagonal-el svg polygon {
  fill: none;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell.date2approve.check_in_time .wpbc-diagonal-el .wpbc-co-in svg polygon {
  fill: #aaa;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell.date2approve.check_out_time .wpbc-diagonal-el svg polygon {
  fill: none;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell.date2approve.check_out_time .wpbc-diagonal-el .wpbc-co-out svg polygon {
  fill: #aaa;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell.datepick-current-day {
  background-color: #BE966F !important;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell.datepick-current-day a {
  color: #000000;
  text-shadow: none;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell.datepick-current-day.check_in_time .wpbc-diagonal-el svg polygon {
  fill: none;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell.datepick-current-day.check_in_time .wpbc-diagonal-el .wpbc-co-in svg polygon {
  fill: #BE966F;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell.datepick-current-day.check_out_time .wpbc-diagonal-el svg polygon {
  fill: none;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .datepick-inline .datepick td.datepick-days-cell.datepick-current-day.check_out_time .wpbc-diagonal-el .wpbc-co-out svg polygon {
  fill: #BE966F;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_calendar .descState {
  margin-top: 20px;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_travel > div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_travel > div + div {
  margin-top: 20px;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_travel > div p {
  margin-bottom: 0;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_travel > div p span:nth-of-type(2) {
  opacity: 0.4;
  letter-spacing: 0;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_travel > div number-input {
  justify-self: end;
  text-align: end;
  font-size: 18px;
  align-items: center;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_travel > div number-input .navBtn {
  margin-bottom: 4px;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_travel > div number-input .wpdev-form-control-wrap {
  display: block;
  height: fit-content;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_travel .btnn {
  display: inline-grid;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_form .wpdev-form-control-wrap {
  display: block;
  width: 100%;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_form .wpdev-form-control-wrap input[type=text], booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_form .wpdev-form-control-wrap textarea {
  display: block;
  width: calc(100% - 28px);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #000000;
  border-radius: 0;
  padding: 8px 14px;
}
booking-control .left .bookingForms .propertyBookinglist .wpbc_structure_form .wpdev-form-control-wrap.wpdev-form-control-wrap {
  margin-top: 20px;
}
booking-control .right {
  height: 100%;
  display: grid;
  grid-template-columns: 100%;
}
booking-control .right .bg {
  grid-column: 1;
  grid-row: 1;
  height: 100%;
  width: 100%;
  display: none;
}
booking-control .right .bg.active {
  display: block;
}
booking-control .right .summeryCtn {
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  background-color: #fff;
  min-width: 500px;
  width: 60%;
  padding: 100px;
  display: none;
}
booking-control .right .summeryCtn.active {
  display: block;
}
booking-control .right .summeryCtn .logoCtn {
  margin-bottom: 40px;
}
booking-control .right .summeryCtn .logoCtn .logo {
  display: none;
  width: 100%;
}
booking-control .right .summeryCtn .logoCtn .logo.active {
  display: block;
}
booking-control .right .summeryCtn .logoCtn .logo svg, booking-control .right .summeryCtn .logoCtn .logo .imgCtn {
  width: 90%;
  max-width: 400px;
  aspect-ratio: 5/3;
  margin: 0 auto;
}
booking-control .right .summeryCtn .logoCtn .logo svg img, booking-control .right .summeryCtn .logoCtn .logo .imgCtn img {
  object-fit: contain;
}
booking-control .right .summeryCtn .priceCtn {
  padding-top: 40px;
  border-top: 1px solid #000000;
  line-height: 1.6;
  opacity: 0;
}
booking-control .right .summeryCtn .priceCtn.active {
  opacity: 1;
}
booking-control .right .summeryCtn .priceCtn .price {
  display: none;
  font-size: var(--font-size-s);
  letter-spacing: 0;
  opacity: 0.4;
}
booking-control .right .summeryCtn .priceCtn .price.active {
  display: block;
}
booking-control .right .summeryCtn .dateCtn {
  padding-bottom: 40px;
  padding-top: 40px;
  line-height: 1.6;
  opacity: 0;
}
booking-control .right .summeryCtn .dateCtn.active {
  opacity: 1;
}
booking-control .right .summeryCtn .dateCtn .fromto {
  color: rgba(0, 0, 0, 0.4);
}
booking-control .right .summeryCtn .dateCtn .fromDate, booking-control .right .summeryCtn .dateCtn .toDate {
  color: #BE966F;
  font-weight: 600;
}
booking-control .right .summeryCtn .travelCtn {
  padding-bottom: 40px;
  border-bottom: 1px solid #000000;
  line-height: 1.6;
  opacity: 0;
}
booking-control .right .summeryCtn .travelCtn.active {
  opacity: 1;
}
booking-control .right .summeryCtn .travelCtn .total {
  text-transform: uppercase;
  font-weight: 600;
  color: #BE966F;
}
booking-control .right .summeryCtn .travelCtn .details {
  opacity: 0.4;
  letter-spacing: 0;
  font-size: var(--font-size-s);
}
booking-control .right .summeryCtn .travelCtn .details > span {
  display: none;
}
booking-control .right .summeryCtn .travelCtn .details > span.active {
  display: inline;
}
booking-control .right .summeryCtn .travelCtn .details > span .txt {
  display: inline;
}
booking-control .right .summeryCtn .travelCtn .details > span .txt.plural {
  display: none;
}
booking-control .right .summeryCtn .travelCtn .details > span.plural .txt {
  display: none;
}
booking-control .right .summeryCtn .travelCtn .details > span.plural .txt.plural {
  display: inline;
}
@media screen and (max-width: 900px) {
  booking-control .left {
    grid-column: span 2;
    grid-row: 1;
    min-height: 90vh;
  }
  booking-control .left .bookingForms {
    width: 90%;
    min-width: unset;
    padding: 80px 0 40px;
  }
  booking-control .right {
    grid-column: span 2;
    grid-row: 2;
    min-height: 90vh;
  }
  booking-control .right .summeryCtn {
    min-width: unset;
    width: 90%;
    padding: 20px;
  }
}
booking-control .booking_form_div number-input {
  display: grid;
  grid-template-columns: auto min-content auto;
  width: fit-content;
  font-size: 1em;
}
booking-control .booking_form_div number-input .navBtn {
  align-self: center;
  font-size: 1.5em;
  user-select: none;
  cursor: pointer;
}
booking-control .booking_form_div number-input .navBtn[disabled] {
  opacity: 0.4;
}
booking-control .booking_form_div number-input input {
  font-size: 1em;
  width: 24px !important;
  border: none !important;
  outline: none;
  text-align: center;
  background-color: transparent;
}
booking-control .booking_form_div number-input input[type=text] {
  width: 24px !important;
}

image-banner {
  position: relative;
  height: 100vh;
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: 100%;
}
image-banner .bg {
  width: 100%;
  height: 100%;
  grid-column: 1;
  grid-row: 1;
}
image-banner .bg video {
  position: absolute;
  top: 0;
  height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
image-banner .logoCtn {
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  width: 90%;
  max-width: 740px;
  display: none;
}
@media screen and (max-width: 900px) {
  image-banner .logoCtn {
    display: block;
  }
}
image-banner .volumeCtn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
}
image-banner .volumeCtn svg {
  width: 24px;
}
image-banner .volumeCtn svg .muted {
  display: none;
}
image-banner .volumeCtn svg .sound {
  display: block;
}
image-banner .volumeCtn.disabled svg .muted {
  display: block;
}
image-banner .volumeCtn.disabled svg .sound {
  display: none;
}
image-banner .scrollCtn {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  cursor: pointer;
}
.textContent {
  background-color: #BE966F;
  padding: 120px 0;
  color: #ffffff;
}
.textContent .wrap h2 {
  text-align: center;
  width: 90%;
  margin: auto;
  margin-bottom: 30px;
  font-size: 24px;
  letter-spacing: 0;
  font-family: "Tiempos Fine";
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.3;
}
.textContent .wrap p {
  text-align: center;
  margin: auto;
  max-width: 900px;
  width: 80%;
  font-size: 16px;
  letter-spacing: 0;
}

properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
properties-grid.large .propertyCard {
  grid-column: span 3;
}
properties-grid.large .bglarge {
  display: grid;
}
properties-grid.large .bgSmall {
  display: none;
}
properties-grid.small .propertyCard {
  grid-column: span 1;
}
properties-grid.small .bglarge {
  display: none;
}
properties-grid.small .bgSmall {
  display: block;
}
properties-grid .propertyCard {
  display: grid;
  grid-template-columns: 100%;
  gap: 0;
}
properties-grid .propertyCard .bglarge {
  grid-column: 1;
  grid-row: 1;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  aspect-ratio: 1400/900;
}
properties-grid .propertyCard .bglarge .swiper {
  grid-row: 1;
  grid-column: span 1;
  width: 100%;
  height: 100%;
}
properties-grid .propertyCard .bglarge .swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
properties-grid .propertyCard .bglarge .swiper .swiper-slide .bg {
  height: 100%;
}
properties-grid .propertyCard .bgSmall {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 480/745;
}
properties-grid .propertyCard .bgSmall .bg {
  width: 100%;
  height: 100%;
}
properties-grid .propertyCard .content {
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  text-align: center;
  width: 80%;
}
properties-grid .propertyCard .content svg, properties-grid .propertyCard .content .imgCtn {
  width: 90%;
  max-width: 500px;
  aspect-ratio: 5/3;
  margin: 0 auto;
}
properties-grid .propertyCard .content svg img, properties-grid .propertyCard .content .imgCtn img {
  object-fit: contain;
}
properties-grid .propertyCard .content .btn {
  margin: 0 auto;
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  properties-grid.large .bglarge {
    height: 100%;
  }
  properties-grid.large .propertyCard {
    grid-column: span 2;
    aspect-ratio: 390/570;
  }
  properties-grid.large .propertyCard .swiper-left {
    grid-column: span 2;
  }
  properties-grid.large .propertyCard .swiper-right {
    display: none;
  }
  properties-grid.small .propertyCard {
    grid-column: span 1;
  }
}

.blockList .block {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.blockList .block:nth-of-type(n) {
  background-color: #BE966F;
}
.blockList .block:nth-of-type(n) .stxt {
  grid-column: 1;
  color: #ffffff;
}
.blockList .block:nth-of-type(n) .simg {
  grid-column: 2;
}
.blockList .block:nth-of-type(2n) {
  background-color: #F5F0EB;
}
.blockList .block:nth-of-type(2n) .stxt {
  grid-column: 2;
  color: #000000;
}
.blockList .block:nth-of-type(2n) .simg {
  grid-column: 1;
}
.blockList .block .side {
  grid-row: 1;
}
.blockList .block .side.stxt {
  width: 80%;
  justify-self: center;
  align-self: center;
}
.blockList .block .side.stxt .ttl {
  margin-bottom: 60px;
  font-family: "Tiempos Fine";
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  text-align: left;
  letter-spacing: 1.2px;
}
.blockList .block .side.stxt .txt {
  line-height: 1.6;
  letter-spacing: 0.2px;
  font-size: var(--font-size-s);
}
.blockList .block .side.simg {
  min-height: 90vh;
  height: 100%;
  width: 100%;
}
.blockList .block .side.simg .imgCtn {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .blockList .block .side {
    grid-column: span 2 !important;
  }
  .blockList .block .side.stxt {
    grid-row: 1;
    padding: 100px 0;
  }
  .blockList .block .side.simg {
    grid-row: 2;
  }
}

text-animation {
  display: block;
}
text-animation .word:nth-of-type(1) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(2) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(3) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(4) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(5) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(6) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(7) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(8) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(9) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(10) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(11) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(12) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(13) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(14) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(15) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(16) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(17) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(18) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(19) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(20) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(21) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(22) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(23) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(24) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(25) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(26) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(27) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(28) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(29) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(30) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(31) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(32) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(33) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(34) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(35) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(36) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(37) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(38) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(39) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(40) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(41) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(42) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(43) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(44) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(45) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(46) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(47) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(48) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(49) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(50) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(51) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(52) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(53) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(54) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(55) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(56) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(57) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(58) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(59) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(60) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(61) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(62) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(63) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(64) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(65) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(66) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(67) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(68) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(69) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(70) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(71) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(72) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(73) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(74) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(75) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(76) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(77) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(78) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(79) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(80) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(81) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(82) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(83) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(84) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(85) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(86) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(87) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(88) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(89) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(90) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(91) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(92) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(93) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(94) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(95) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(96) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(97) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(98) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(99) .container {
  transition: transform 0.1s 0s;
}
text-animation .word:nth-of-type(100) .container {
  transition: transform 0.1s 0s;
}
text-animation .space {
  display: inline-flex;
}
text-animation .word {
  overflow: hidden;
  display: inline-flex;
  margin: 0 -20px;
}
text-animation .word .container {
  padding: 0 20px;
  display: inline-block;
  transform: translate3d(0, 100%, 0);
}
text-animation[active] .word:nth-of-type(1) .container {
  transition: transform 1.4s 0.06s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(2) .container {
  transition: transform 1.4s 0.12s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(3) .container {
  transition: transform 1.4s 0.18s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(4) .container {
  transition: transform 1.4s 0.24s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(5) .container {
  transition: transform 1.4s 0.3s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(6) .container {
  transition: transform 1.4s 0.36s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(7) .container {
  transition: transform 1.4s 0.42s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(8) .container {
  transition: transform 1.4s 0.48s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(9) .container {
  transition: transform 1.4s 0.54s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(10) .container {
  transition: transform 1.4s 0.6s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(11) .container {
  transition: transform 1.4s 0.66s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(12) .container {
  transition: transform 1.4s 0.72s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(13) .container {
  transition: transform 1.4s 0.78s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(14) .container {
  transition: transform 1.4s 0.84s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(15) .container {
  transition: transform 1.4s 0.9s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(16) .container {
  transition: transform 1.4s 0.96s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(17) .container {
  transition: transform 1.4s 1.02s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(18) .container {
  transition: transform 1.4s 1.08s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(19) .container {
  transition: transform 1.4s 1.14s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(20) .container {
  transition: transform 1.4s 1.2s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(21) .container {
  transition: transform 1.4s 1.26s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(22) .container {
  transition: transform 1.4s 1.32s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(23) .container {
  transition: transform 1.4s 1.38s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(24) .container {
  transition: transform 1.4s 1.44s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(25) .container {
  transition: transform 1.4s 1.5s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(26) .container {
  transition: transform 1.4s 1.56s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(27) .container {
  transition: transform 1.4s 1.62s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(28) .container {
  transition: transform 1.4s 1.68s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(29) .container {
  transition: transform 1.4s 1.74s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(30) .container {
  transition: transform 1.4s 1.8s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(31) .container {
  transition: transform 1.4s 1.86s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(32) .container {
  transition: transform 1.4s 1.92s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(33) .container {
  transition: transform 1.4s 1.98s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(34) .container {
  transition: transform 1.4s 2.04s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(35) .container {
  transition: transform 1.4s 2.1s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(36) .container {
  transition: transform 1.4s 2.16s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(37) .container {
  transition: transform 1.4s 2.22s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(38) .container {
  transition: transform 1.4s 2.28s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(39) .container {
  transition: transform 1.4s 2.34s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(40) .container {
  transition: transform 1.4s 2.4s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(41) .container {
  transition: transform 1.4s 2.46s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(42) .container {
  transition: transform 1.4s 2.52s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(43) .container {
  transition: transform 1.4s 2.58s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(44) .container {
  transition: transform 1.4s 2.64s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(45) .container {
  transition: transform 1.4s 2.7s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(46) .container {
  transition: transform 1.4s 2.76s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(47) .container {
  transition: transform 1.4s 2.82s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(48) .container {
  transition: transform 1.4s 2.88s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(49) .container {
  transition: transform 1.4s 2.94s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(50) .container {
  transition: transform 1.4s 3s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(51) .container {
  transition: transform 1.4s 3.06s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(52) .container {
  transition: transform 1.4s 3.12s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(53) .container {
  transition: transform 1.4s 3.18s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(54) .container {
  transition: transform 1.4s 3.24s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(55) .container {
  transition: transform 1.4s 3.3s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(56) .container {
  transition: transform 1.4s 3.36s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(57) .container {
  transition: transform 1.4s 3.42s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(58) .container {
  transition: transform 1.4s 3.48s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(59) .container {
  transition: transform 1.4s 3.54s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(60) .container {
  transition: transform 1.4s 3.6s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(61) .container {
  transition: transform 1.4s 3.66s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(62) .container {
  transition: transform 1.4s 3.72s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(63) .container {
  transition: transform 1.4s 3.78s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(64) .container {
  transition: transform 1.4s 3.84s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(65) .container {
  transition: transform 1.4s 3.9s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(66) .container {
  transition: transform 1.4s 3.96s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(67) .container {
  transition: transform 1.4s 4.02s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(68) .container {
  transition: transform 1.4s 4.08s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(69) .container {
  transition: transform 1.4s 4.14s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(70) .container {
  transition: transform 1.4s 4.2s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(71) .container {
  transition: transform 1.4s 4.26s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(72) .container {
  transition: transform 1.4s 4.32s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(73) .container {
  transition: transform 1.4s 4.38s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(74) .container {
  transition: transform 1.4s 4.44s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(75) .container {
  transition: transform 1.4s 4.5s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(76) .container {
  transition: transform 1.4s 4.56s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(77) .container {
  transition: transform 1.4s 4.62s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(78) .container {
  transition: transform 1.4s 4.68s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(79) .container {
  transition: transform 1.4s 4.74s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(80) .container {
  transition: transform 1.4s 4.8s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(81) .container {
  transition: transform 1.4s 4.86s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(82) .container {
  transition: transform 1.4s 4.92s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(83) .container {
  transition: transform 1.4s 4.98s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(84) .container {
  transition: transform 1.4s 5.04s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(85) .container {
  transition: transform 1.4s 5.1s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(86) .container {
  transition: transform 1.4s 5.16s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(87) .container {
  transition: transform 1.4s 5.22s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(88) .container {
  transition: transform 1.4s 5.28s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(89) .container {
  transition: transform 1.4s 5.34s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(90) .container {
  transition: transform 1.4s 5.4s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(91) .container {
  transition: transform 1.4s 5.46s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(92) .container {
  transition: transform 1.4s 5.52s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(93) .container {
  transition: transform 1.4s 5.58s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(94) .container {
  transition: transform 1.4s 5.64s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(95) .container {
  transition: transform 1.4s 5.7s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(96) .container {
  transition: transform 1.4s 5.76s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(97) .container {
  transition: transform 1.4s 5.82s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(98) .container {
  transition: transform 1.4s 5.88s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(99) .container {
  transition: transform 1.4s 5.94s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word:nth-of-type(100) .container {
  transition: transform 1.4s 6s cubic-bezier(0.75, 0, 0.25, 1);
}
text-animation[active] .word {
  overflow: auto;
}
text-animation[active] .word .container {
  transform: translate3d(0, 0, 0);
}

html body div.otgs-development-site-front-end {
  display: none !important;
}

html body #cmplz-cookiebanner-container {
  letter-spacing: 0;
}

html body main #mainHeader {
  z-index: 30;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0px 4%;
  height: 100px;
  align-items: center;
  display: grid;
  grid-template-columns: max-content auto max-content;
}
html body main #mainHeader a, html body main #mainHeader p, html body main #mainHeader span, html body main #mainHeader .menu-toggle {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 15px;
  transition: color 0.4s;
}
html body main #mainHeader .toggleGridLayout svg * {
  stroke: #ffffff;
  transition: stroke 0.4s;
}
html body main #mainHeader .map svg * {
  fill: #ffffff;
  transition: fill 0.4s;
}
html body main #mainHeader > * {
  grid-row: 1;
}
html body main #mainHeader .bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #F5F0EB;
  transition: height 0.6s;
}
html body main #mainHeader .left {
  width: fit-content;
  grid-column: 1;
  display: flex;
  align-items: center;
}
html body main #mainHeader .left div + a, html body main #mainHeader .left a + a {
  margin-left: 20px;
}
html body main #mainHeader .left2 {
  width: fit-content;
  grid-column: 2;
}
html body main #mainHeader .left2 div + a, html body main #mainHeader .left2 a + a {
  margin-left: 20px;
}
html body main #mainHeader .logoCtn {
  display: block;
  grid-column: 1/4;
  justify-self: center;
}
html body main #mainHeader .logoCtn svg {
  width: 380px;
}
html body main #mainHeader .logoCtn svg * {
  transition: fill 0.6s;
}
html body main #mainHeader .right {
  grid-column: 3;
  justify-self: end;
}
html body main #mainHeader .right2 {
  display: none;
  color: #ffffff;
}
html body main #mainHeader.active .bg {
  height: 100%;
}
html body main #mainHeader.active p, html body main #mainHeader.active a, html body main #mainHeader.active span {
  color: #BE966F !important;
}
html body main #mainHeader.active .logoCtn svg * {
  fill: #BE966F !important;
}
html body main #mainHeader.active .map svg * {
  fill: #BE966F !important;
}
html body main #mainHeader.active .toggleGridLayout svg * {
  stroke: #BE966F !important;
}
@media screen and (max-width: 900px) {
  html body main #mainHeader .left {
    grid-column: 1;
    grid-row: 2;
    margin-top: 10px;
  }
  html body main #mainHeader .left2 {
    grid-column: 1;
  }
  html body main #mainHeader .logoCtn {
    display: none;
  }
  html body main #mainHeader .right {
    grid-column: 3;
  }
  html body main #mainHeader .right2 {
    display: block;
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
  }
}

.bottomBar {
  z-index: 10;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
  margin: 0 auto;
  padding: 22px 4% 22px;
}
.bottomBar .left {
  grid-column: 1;
}
.bottomBar .left .socialCtn a {
  pointer-events: initial;
}
.bottomBar .left .socialCtn a svg * {
  fill: #ffffff;
}
.bottomBar .right {
  grid-column: 2;
  justify-self: end;
}
.bottomBar .right a, .bottomBar .right span {
  pointer-events: initial;
  color: #ffffff;
}
@media screen and (max-width: 900px) {
  .bottomBar .right {
    display: none;
  }
}

.page-template-grid #mainHeader .logoCtn {
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 0.6s;
}
.page-template-grid #mainHeader .logoCtn.active {
  transform: translate3d(0, calc(50vh - 50% - 40px), 0) scale(2);
}

.page-template-map #mainHeader .right a, .page-template-map #mainHeader .right p, .page-template-map #mainHeader .right span, .page-template-map #mainHeader .right2 a, .page-template-map #mainHeader .right2 p, .page-template-map #mainHeader .right2 span {
  color: #BE966F;
}
.page-template-map #mainHeader .logoCtn svg * {
  fill: #BE966F;
}
.page-template-map .bottomBar .right a, .page-template-map .bottomBar .right span {
  color: #BE966F;
}
@media screen and (max-width: 900px) {
  .page-template-map #mainHeader .left a, .page-template-map #mainHeader .left p, .page-template-map #mainHeader .left span, .page-template-map #mainHeader .left2 a, .page-template-map #mainHeader .left2 p, .page-template-map #mainHeader .left2 span {
    color: #BE966F;
  }
  .page-template-map #mainHeader .left .map svg *, .page-template-map #mainHeader .left2 .map svg * {
    fill: #BE966F;
  }
  .page-template-map #mainHeader .left .toggleGridLayout svg *, .page-template-map #mainHeader .left2 .toggleGridLayout svg * {
    stroke: #BE966F;
  }
}

.page-template-booking #mainHeader .left a, .page-template-booking #mainHeader .left p, .page-template-booking #mainHeader .left span, .page-template-booking #mainHeader .left2 a, .page-template-booking #mainHeader .left2 p, .page-template-booking #mainHeader .left2 span {
  color: #BE966F;
}
.page-template-booking #mainHeader .left .map svg *, .page-template-booking #mainHeader .left2 .map svg * {
  fill: #BE966F;
}
.page-template-booking #mainHeader .left .toggleGridLayout svg *, .page-template-booking #mainHeader .left2 .toggleGridLayout svg * {
  stroke: #BE966F;
}
.page-template-booking #mainHeader .logoCtn svg * {
  fill: #BE966F;
}
.page-template-booking .bottomBar .left .socialCtn svg * {
  fill: #BE966F;
}
@media screen and (max-width: 900px) {
  .page-template-booking #mainHeader .right a, .page-template-booking #mainHeader .right p, .page-template-booking #mainHeader .right2 a, .page-template-booking #mainHeader .right2 p {
    color: #BE966F;
  }
}

.page-template-default #mainHeader .left a, .page-template-default #mainHeader .left p, .page-template-default #mainHeader .left2 a, .page-template-default #mainHeader .left2 p, .page-template-bookingMailto #mainHeader .left a, .page-template-bookingMailto #mainHeader .left p, .page-template-bookingMailto #mainHeader .left2 a, .page-template-bookingMailto #mainHeader .left2 p {
  color: #BE966F;
}
.page-template-default #mainHeader .left .map svg *, .page-template-default #mainHeader .left2 .map svg *, .page-template-bookingMailto #mainHeader .left .map svg *, .page-template-bookingMailto #mainHeader .left2 .map svg * {
  fill: #BE966F;
}
.page-template-default #mainHeader .left .toggleGridLayout svg *, .page-template-default #mainHeader .left2 .toggleGridLayout svg *, .page-template-bookingMailto #mainHeader .left .toggleGridLayout svg *, .page-template-bookingMailto #mainHeader .left2 .toggleGridLayout svg * {
  stroke: #BE966F;
}
.page-template-default #mainHeader .logoCtn svg *, .page-template-bookingMailto #mainHeader .logoCtn svg * {
  fill: #BE966F;
}
.page-template-default #mainHeader .right a, .page-template-default #mainHeader .right p, .page-template-default #mainHeader .right span, .page-template-default #mainHeader .right .menu-toggle, .page-template-default #mainHeader .right2 a, .page-template-default #mainHeader .right2 p, .page-template-default #mainHeader .right2 span, .page-template-default #mainHeader .right2 .menu-toggle, .page-template-bookingMailto #mainHeader .right a, .page-template-bookingMailto #mainHeader .right p, .page-template-bookingMailto #mainHeader .right span, .page-template-bookingMailto #mainHeader .right .menu-toggle, .page-template-bookingMailto #mainHeader .right2 a, .page-template-bookingMailto #mainHeader .right2 p, .page-template-bookingMailto #mainHeader .right2 span, .page-template-bookingMailto #mainHeader .right2 .menu-toggle {
  color: #BE966F;
}
.page-template-default #mainHeader .left .menu-toggle, .page-template-bookingMailto #mainHeader .left .menu-toggle {
  color: #BE966F;
}
.page-template-default .bottomBar .left .socialCtn svg *, .page-template-bookingMailto .bottomBar .left .socialCtn svg * {
  fill: #BE966F;
}
.page-template-default .bottomBar .right a, .page-template-default .bottomBar .right span, .page-template-bookingMailto .bottomBar .right a, .page-template-bookingMailto .bottomBar .right span {
  color: #BE966F;
}

@font-face {
  font-family: "Mier A";
  src: url("assets/fonts/MierA-Regular.woff2") format("woff2"), url("assets/fonts/MierA-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html,
body {
  font-family: "Mier A" !important;
}

properties-grid .propertyCard.no-img .bglarge,
properties-grid .propertyCard.no-img .bgSmall {
  background-color: #F5F0EB;
}
properties-grid .propertyCard.no-img .content .title {
  font-family: "Tiempos Fine";
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
  text-align: center;
  letter-spacing: 0.03em;
}
properties-grid .propertyCard.no-img .content .btn {
  border: none;
  padding: unset;
  color: black;
  cursor: unset;
}
properties-grid .propertyCard.no-img .content .btn:hover {
  background-color: unset;
  color: black;
  cursor: unset;
}
properties-grid .propertyCard.no-img .content .date {
  margin-top: 10px;
}

@media screen and (max-width: 900px) {
  #mainHeader {
    height: 63px !important;
  }
}
#mainHeader.active .left .nav-menu {
  color: #BE966F;
}
@media screen and (max-width: 900px) {
  #mainHeader .left {
    grid-row: 1 !important;
    margin-top: 0 !important;
  }
}
#mainHeader .left .nav-menu {
  color: white;
  margin-right: 20px;
  transition: color 0.4s;
}
#mainHeader .left .nav-menu .menu-toggle {
  cursor: pointer;
  font-family: "Mier A", serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
#mainHeader .left .nav-menu .menu-drawer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  height: 100vh;
  padding: 120px 70px 50px;
  background-color: #F5F0EB;
  color: #BE966F;
  transform: translate3D(-100%, 0, 0);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0s;
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  #mainHeader .left .nav-menu .menu-drawer {
    width: 100%;
  }
}
#mainHeader .left .nav-menu .menu-drawer.active {
  transform: translate3D(0, 0, 0);
  opacity: 1;
  pointer-events: initial;
}
#mainHeader .left .nav-menu .menu-drawer.active .bar {
  display: block;
  width: 100%;
  height: 2px;
  transform-origin: center;
  transform: translateY(0) rotate(0deg);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  background-color: #BE966F;
}
#mainHeader .left .nav-menu .menu-drawer.active .bar.top {
  transform: translateY(9px) rotate(45deg);
}
#mainHeader .left .nav-menu .menu-drawer.active .bar.middle {
  opacity: 0;
}
#mainHeader .left .nav-menu .menu-drawer.active .bar.bottom {
  transform: translateY(-9px) rotate(-45deg);
}
#mainHeader .left .nav-menu .menu-drawer__close {
  -webkit-appearance: none;
  -moz-appearance: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 30px;
  height: 30px;
  padding: 5px 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 100;
  position: absolute;
  top: 32px;
  left: 80px;
}
@media screen and (max-width: 900px) {
  #mainHeader .left .nav-menu .menu-drawer__close {
    left: 15px;
    top: 15px;
  }
}
#mainHeader .left .nav-menu .menu-drawer__close .bar.top {
  transform: translateY(0) rotate(0);
}
#mainHeader .left .nav-menu .menu-drawer__close .bar.middle {
  opacity: 0;
}
#mainHeader .left .nav-menu .menu-drawer__close .bar.bottom {
  transform: translateY(0) rotate(0);
}
#mainHeader .left .nav-menu .menu-drawer #site-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#mainHeader .left .nav-menu .menu-drawer #site-nav .menuCustom {
  color: #BE966F;
  list-style: none;
  text-align: center;
  font-family: "Mier A", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#mainHeader .left .nav-menu .menu-drawer #site-nav .menuCustom li {
  margin-bottom: 10px;
}
#mainHeader .left .nav-menu .menu-drawer #site-nav .menuCustom li span {
  color: #BE966F;
}
#mainHeader .left .nav-menu .menu-drawer #site-nav .menuCustom li:last-child {
  margin-bottom: 30px;
}
#mainHeader .left .nav-menu .menu-drawer #site-nav .separation {
  width: 100%;
  height: 1.5px;
  background-color: #BE966F;
  margin-bottom: 30px;
}
#mainHeader .left .nav-menu .menu-drawer #site-nav .languageCtn {
  text-align: center;
}
#mainHeader .left .nav-menu .menu-drawer #site-nav .languageCtn a {
  color: #BE966F;
}
#mainHeader .left .nav-menu .menu-drawer .drawer-contents--bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 54px;
}
#mainHeader .left .nav-menu .menu-drawer .drawer-contents--bottom svg path {
  fill: black;
}
#mainHeader .left .nav-menu .menu-drawer .drawer-contents--bottom .menu-address * {
  color: black !important;
  font-family: "Mier A";
  font-size: 14px;
  text-align: center;
  text-transform: unset;
  letter-spacing: 0 !important;
}

.bottomBar {
  z-index: 21;
}
.bottomBar .left a,
.bottomBar .left span {
  pointer-events: initial;
  color: white;
}

html body main .home #mainHeader {
  position: fixed;
}

html body main .page-template-talking .aboutUs {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 40px;
  width: 100%;
  max-width: 1400px;
  margin: 50px auto;
  position: relative;
  padding: 30px 30px 0;
}
@media screen and (max-width: 900px) {
  html body main .page-template-talking .aboutUs {
    display: flex;
    flex-direction: column;
    padding: 30px 0 0;
  }
}
html body main .page-template-talking .aboutUs:before {
  content: "";
  width: 100%;
  height: 1.5px;
  background-color: white;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 900px) {
  html body main .page-template-talking .aboutUs:before {
    width: 90%;
  }
}
html body main .page-template-talking .aboutUs .title {
  grid-column: 1/span 12;
}
html body main .page-template-talking .aboutUs .title h2 {
  font-family: "Mier A";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 5px;
}
html body main .page-template-talking .aboutUs .subtitle {
  font-family: "Tiempos Fine";
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.03em;
  color: white;
  margin-bottom: 70px;
  grid-column: 1/span 12;
}
html body main .page-template-talking .aboutUs ul.documents-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 40px;
  width: 100%;
  grid-column: 1/span 12;
  list-style: none;
}
@media screen and (max-width: 900px) {
  html body main .page-template-talking .aboutUs ul.documents-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px !important;
    padding: 0 40px;
  }
}
html body main .page-template-talking .aboutUs ul.documents-list li.document a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
  text-decoration: none;
}
html body main .page-template-talking .aboutUs ul.documents-list li.document a .thumbnail {
  width: 100%;
}
html body main .page-template-talking .aboutUs ul.documents-list li.document a .thumbnail img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
html body main .page-template-talking .aboutUs ul.documents-list li.document a .text-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-grow: 1;
  padding-top: 10px;
}
html body main .page-template-talking .aboutUs ul.documents-list li.document a .text-content .title {
  margin: 0;
  text-transform: uppercase;
  font-family: "Tiempos Fine";
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.03em;
  color: white;
  width: 100%;
}
html body main .page-template-talking .aboutUs ul.documents-list li.document a .text-content .title + time {
  margin-top: 4px;
}
html body main .page-template-talking .aboutUs ul.documents-list li.document a .text-content time {
  display: block;
  font-family: "Mier A";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  width: 100%;
}
@media screen and (max-width: 900px) {
  html body main .page-template-talking .aboutUs ul.documents-list li.document a .text-content time {
    font-size: 12px;
  }
}
html body main .page-template-talking .aboutUs ul.documents-list li.document a .text-content .pseudo-link {
  font-family: "Mier A";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  letter-spacing: 0.03em;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: white;
  margin-top: 20px;
}
@media screen and (max-width: 900px) {
  html body main .page-template-talking .aboutUs ul.documents-list li.document a .text-content .pseudo-link {
    margin-bottom: 4px;
    font-size: 12px;
    letter-spacing: 1px;
  }
}
html body main .page-template-talking .aboutUs ul.documents-list li.document a .text-content .pseudo-link::after {
  content: "";
  margin-right: -2px;
}
@media screen and (max-width: 900px) {
  html body main .page-template-talking .aboutUs ul.documents-list li.document a .text-content .pseudo-link::after {
    margin-right: -1px;
  }
}
html body main .page-template-provence {
  background-color: #F5F0EB;
}
html body main .page-template-provence .bottomBar .left a,
html body main .page-template-provence .bottomBar .left span {
  color: #BE966F;
}
html body main .page-template-provence #mainHeader .nav-menu {
  color: #BE966F;
}
html body main .page-template-provence #mainHeader .nav-menu .menu-toggle {
  color: #BE966F;
}
html body main .page-template-provence #mainHeader .right a {
  color: #BE966F;
}
html body main .page-template-provence #mainHeader .logoCtn svg path,
html body main .page-template-provence #mainHeader .map svg path {
  fill: #BE966F !important;
}
html body main .page-template-provence #mainHeader .toggleGridLayout svg * {
  stroke: #BE966F;
}
html body main .page-template-provence #mainHeader .toggleGridLayout svg path {
  stroke: #BE966F;
}
html body main .page-template-provence .provence {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 40px;
  width: 100%;
  max-width: 1400px;
  margin: 50px auto;
  position: relative;
  padding: 30px 30px 0;
}
@media screen and (max-width: 900px) {
  html body main .page-template-provence .provence {
    display: flex;
    flex-direction: column;
    padding: 30px 0 0;
  }
}
html body main .page-template-provence .provence:before {
  content: "";
  width: 100%;
  max-width: 1400px;
  height: 1.5px;
  background-color: #BE966F;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1400px) {
  html body main .page-template-provence .provence:before {
    width: 90%;
  }
}
html body main .page-template-provence .provence .title {
  grid-column: 1/span 12;
}
html body main .page-template-provence .provence .title h2 {
  font-family: "Mier A";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: black;
  margin-bottom: 5px;
}
html body main .page-template-provence .provence .subtitle {
  font-family: "Tiempos Fine";
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.03em;
  color: black;
  margin-bottom: 70px;
  grid-column: 1/span 12;
}
html body main .page-template-provence .provence .items {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 40px;
  width: 100%;
  grid-column: 1/span 12;
}
@media screen and (max-width: 900px) {
  html body main .page-template-provence .provence .items {
    display: flex;
    flex-direction: column;
    padding: 0 40px;
  }
}
html body main .page-template-provence .provence .items .item {
  grid-column: span 3;
}
html body main .page-template-provence .provence .items img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 3/2;
}
html body main .page-template-provence .provence .items .title {
  margin: 20px 0 50px;
}
html body main .page-template-provence .provence .items .title .primary {
  text-transform: uppercase;
  font-family: "Tiempos Fine";
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.03em;
  color: black;
}
html body main .page-template-provence .provence .items .title .secondary {
  font-family: "Mier A";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: black;
}
html body main .page-template-provence .provence .items .text-content p {
  font-family: "Mier A";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: black;
  letter-spacing: 0;
}
html body main .page-template-activite {
  background-color: #F5F0EB;
}
html body main .page-template-activite .bottomBar .left a,
html body main .page-template-activite .bottomBar .left span {
  color: #BE966F;
}
html body main .page-template-activite #mainHeader .nav-menu {
  color: #BE966F;
}
html body main .page-template-activite #mainHeader .nav-menu .menu-toggle {
  color: #BE966F;
}
html body main .page-template-activite #mainHeader .right a {
  color: #BE966F;
}
html body main .page-template-activite #mainHeader .logoCtn svg path,
html body main .page-template-activite #mainHeader .map svg path {
  fill: #BE966F !important;
}
html body main .page-template-activite #mainHeader .toggleGridLayout svg * {
  stroke: #BE966F;
}
html body main .page-template-activite #mainHeader .toggleGridLayout svg path {
  stroke: #BE966F;
}
html body main .page-template-activite .activites {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  width: 100%;
}
@media screen and (max-width: 900px) {
  html body main .page-template-activite .activites {
    display: flex;
    flex-direction: column-reverse;
    gap: 75px;
    height: auto;
    margin-bottom: 50px;
  }
}
html body main .page-template-activite .activites .block--text {
  grid-row: 1;
  grid-column: 8/span 4;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}
@media screen and (max-width: 900px) {
  html body main .page-template-activite .activites .block--text {
    width: 100%;
    padding: 0 35px;
  }
}
html body main .page-template-activite .activites .block--text .title {
  font-family: "Tiempos Fine";
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.03em;
}
html body main .page-template-activite .activites .block--text .text {
  font-family: "Mier A";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0em;
}
html body main .page-template-activite .activites .block--img {
  grid-row: 1;
  grid-column: 1/span 6;
}
@media screen and (max-width: 900px) {
  html body main .page-template-activite .activites .block--img {
    width: 100%;
  }
}
html body main .page-template-activite .activites .block--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
html body:has(main div.page-template-provence) {
  background-color: #F5F0EB;
}
html body:has(main div.page-template-activite) {
  background-color: #F5F0EB;
}

image-banner .volumeCtn {
  right: 4%;
}

properties-grid .propertyCard .content svg,
properties-grid .propertyCard .content .imgCtn {
  max-width: 400px;
}

footer#mainFooter .lnk.mailto {
  font-size: 12px;
}
@media screen and (max-width: 900px) {
  footer#mainFooter .lnk.mailto {
    font-size: 8px;
  }
}

.popup-settings {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-color: #f5f0eb;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  max-width: 480px;
  width: 100%;
  padding: 11px;
}
@media screen and (max-width: 900px) {
  .popup-settings {
    width: 80%;
  }
}
.popup-settings .container-first {
  display: block;
  border: #be966f solid 1.5px;
  width: 100%;
  height: 100%;
  padding: 6px;
}
.popup-settings .container-first .container-second {
  padding: 30px 14px;
  display: block;
  border: #be966f solid 1.5px;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.popup-settings .container-first .container-second .pre-title {
  text-align: center;
  font-family: Mier A;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}
.popup-settings .container-first .container-second .title {
  font-family: "Pinyon Script", cursive;
  font-size: 46px;
  color: #be966f;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.42px;
}
.popup-settings .container-first .container-second .text-zone {
  text-align: center;
  font-family: Mier A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0 !important;
  padding: 0 40px;
}
.popup-settings .container-first .container-second .picto {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}
.popup-settings .container-first .container-second .popup-link {
  font-family: Mier A;
  font-size: 14px !important;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  color: #be966f !important;
  display: flex;
  justify-content: center;
  text-transform: lowercase !important;
  letter-spacing: 0;
}
.popup-settings .container-first .container-second .popup-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.page-template-soiree {
  background-color: #F5F0EB;
}
.page-template-soiree .bottomBar .left a,
.page-template-soiree .bottomBar .left span {
  color: #BE966F;
}
.page-template-soiree #mainHeader .nav-menu {
  color: #BE966F;
}
.page-template-soiree #mainHeader .nav-menu .menu-toggle {
  color: #BE966F;
}
.page-template-soiree #mainHeader .right a {
  color: #BE966F;
}
.page-template-soiree #mainHeader .logoCtn svg path,
.page-template-soiree #mainHeader .map svg path {
  fill: #BE966F !important;
}
.page-template-soiree #mainHeader .toggleGridLayout svg * {
  stroke: #BE966F;
}
.page-template-soiree #mainHeader .toggleGridLayout svg path {
  stroke: #BE966F;
}
.page-template-soiree .soirees {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .page-template-soiree .soirees {
    display: flex;
    flex-direction: column-reverse;
    gap: 75px;
    height: auto;
    margin-bottom: 50px;
  }
}
.page-template-soiree .soirees .block--text {
  grid-row: 1;
  grid-column: 8/span 4;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 60px;
  margin-top: 60px;
}
@media screen and (max-width: 900px) {
  .page-template-soiree .soirees .block--text {
    width: 100%;
    padding: 0 35px;
  }
}
.page-template-soiree .soirees .block--text .pre-title {
  font-family: "Tiempos Fine";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  text-align: center;
}
.page-template-soiree .soirees .block--text .title {
  font-family: Pinyon Script;
  font-size: 46px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
  color: #BE966F;
  text-align: center;
}
.page-template-soiree .soirees .block--text .text {
  font-family: "Mier A";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0em;
}
.page-template-soiree .soirees .block--text .soiree-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0;
}
.page-template-soiree .soirees .block--text .soiree-cta a {
  padding: 15px 25px;
  border-radius: 1px;
  border: 1px solid #be966f;
  color: #be966f;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.page-template-soiree .soirees .block--img {
  grid-row: 1;
  grid-column: 1/span 6;
}
@media screen and (max-width: 900px) {
  .page-template-soiree .soirees .block--img {
    width: 100%;
  }
}
.page-template-soiree .soirees .block--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

section.program {
  position: relative;
  padding: 80px;
}
section.program::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  width: var(--viewport-width, 100vw);
  height: 100%;
  transform: translateX(-50%);
  background-color: #BE966F;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  section.program {
    padding: 30px;
  }
}
section.program .container-main {
  position: relative;
  z-index: 10;
  background-color: #F5F0EB;
  padding: 13px;
}
section.program .container-main .container-first {
  display: block;
  border: #be966f solid 1.5px;
  width: 100%;
  height: 100%;
  padding: 6px;
}
section.program .container-main .container-first .container-second {
  padding: 60px 120px;
  display: block;
  border: #be966f solid 1.5px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 900px) {
  section.program .container-main .container-first .container-second {
    padding: 120px 20px 20px;
  }
}
section.program .container-main .container-first .container-second .program-title {
  text-align: center;
  font-family: Mier A;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #be966f;
  margin-bottom: 40px;
}
section.program .container-main .container-first .container-second .program-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 0px;
}
@media screen and (max-width: 450px) {
  section.program .container-main .container-first .container-second .program-list {
    display: flex;
    flex-direction: column;
  }
}
section.program .container-main .container-first .container-second .program-list .program-item {
  grid-column: span 3;
  aspect-ratio: 1;
  border: 1.5px solid #be966f;
  border-left: none;
}
@media screen and (max-width: 900px) {
  section.program .container-main .container-first .container-second .program-list .program-item {
    grid-column: span 4;
  }
  section.program .container-main .container-first .container-second .program-list .program-item:nth-child(3n+1) {
    border-left: 1.5px solid #be966f;
  }
  section.program .container-main .container-first .container-second .program-list .program-item:nth-child(4n+1) {
    border-left: none;
  }
  section.program .container-main .container-first .container-second .program-list .program-item:not(:nth-child(-n+3)) {
    border-top: none;
  }
}
@media screen and (max-width: 600px) {
  section.program .container-main .container-first .container-second .program-list .program-item {
    grid-column: span 6;
  }
  section.program .container-main .container-first .container-second .program-list .program-item:nth-child(2n+1) {
    border-left: 1.5px solid #be966f;
  }
  section.program .container-main .container-first .container-second .program-list .program-item:nth-child(3n+1) {
    border-left: none;
  }
  section.program .container-main .container-first .container-second .program-list .program-item:not(:nth-child(-n+2)) {
    border-top: none;
  }
}
section.program .container-main .container-first .container-second .program-list .program-item:nth-child(4n+1) {
  border-left: 1.5px solid #be966f;
}
section.program .container-main .container-first .container-second .program-list .program-item:nth-child(5) {
  border-left: none;
}
section.program .container-main .container-first .container-second .program-list .program-item:not(:nth-child(-n+4)) {
  border-top: none;
}
@media screen and (max-width: 450px) {
  section.program .container-main .container-first .container-second .program-list .program-item {
    grid-column: unset;
    border-left: 1.5px solid #be966f;
  }
  section.program .container-main .container-first .container-second .program-list .program-item:first-child {
    border-bottom: 1.5px solid #be966f;
  }
  section.program .container-main .container-first .container-second .program-list .program-item:nth-child(5) {
    border-left: 1.5px solid #be966f;
  }
  section.program .container-main .container-first .container-second .program-list .program-item:not(:first-child) {
    border-top: none;
    border-bottom: 1.5px solid #be966f;
    border-left: 1.5px solid #be966f;
  }
}
section.program .container-main .container-first .container-second .program-list .program-item .program-day {
  text-align: center;
  font-family: Mier A;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  margin-top: 15px;
  letter-spacing: 0;
}
section.program .container-main .container-first .container-second .program-list .program-item .program-day-number {
  font-family: Tiempos Fine;
  font-size: 60px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-align: center;
  color: #be966f;
  margin: 30px 0;
}
section.program .container-main .container-first .container-second .program-list .program-item .program-detail {
  text-align: center;
  font-family: Mier A;
  font-size: 14px;
  letter-spacing: 0 !important;
  margin-bottom: 15px;
}

/*# sourceMappingURL=selmene_style.css.map */
