/*! Normalise CSS !*/
@import url(normalize.css);
/*! Google Fonts !*/
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Manrope:wght@200..800&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap");
/*! Google Fonts end !*/
@import url("../fonts/fonts.css");
:root,
:host {
  --fa-style-family-classic: "Font Awesome 7 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 7 Free";
}

* {
  margin: 0rem;
  padding: 0rem;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0rem;
  padding: 0rem;
  scroll-behavior: smooth;
}

body {
  margin: 0rem;
  padding: 0rem;
  color: var(--Black, #000);
  font-family: "Futura Bk BT";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.25rem; /* 150% */
  background: var(--Color-3, #faf7eb);
  background-image: url(../images/body_bg.png);
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

p {
  padding: 0rem;
  margin: 0rem 0 2.5rem;
  color: var(--Black, #000);
  font-family: "Futura Bk BT";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.25rem; /* 150% */
}
p:last-child {
  margin: 0;
}

h1 {
  margin: 0rem 0rem 1.25rem;
  padding: 0rem;
  color: var(--Color-5, #a73e2e);
  font-family: "League Spartan";
  font-size: 17.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

h2 {
  margin: 0rem 0rem 1.25rem;
  padding: 0rem;
  color: var(--Color-2, #314e2e);
  font-family: "League Spartan";
  font-size: 6.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.04px;
  margin: 0 0 2.5rem;
}

h3 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: var(--Black, #000);
  font-family: Merriweather;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.25rem; /* 144.444% */
  margin: 0 0 3.75rem;
}

h4 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: #000;
  font-family: Merriweather;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.25rem; /* 162.5% */
}

h5 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: #000;
  font-family: "League Spartan";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.5rem; /* 142.857% */
}

h6 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: #000;
  font-family: "League Spartan";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem; /* 142.857% */
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-object-fit: cover;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  margin: 0;
  padding: 0;
}

a {
  color: var(--Grey, #333);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #000;
}

.btn {
  position: relative;
  display: inline-flex;
  padding: 0.75rem 0.25rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--Color-1, #c86a1e);
  border: none;
  font-family: "Futura Hv BT";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  background: transparent;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  gap: 0.5rem;
  border-radius: 0;
}
.btn::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 0.375rem;
  background: #c86a1e;
  border-radius: 3.125rem;
  left: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}
.btn:focus, .btn:active:focus {
  outline: 0;
  box-shadow: none;
  color: #000;
}
.btn:focus::before, .btn:active:focus::before {
  background: #000;
}
.btn:hover {
  outline: 0;
  box-shadow: none;
  color: #000;
}
.btn:hover::before {
  background: #000;
}
.btn.whiteBtn {
  color: #fff;
}
.btn.whiteBtn::before {
  background: #fff;
}
.btn.whiteBtn:focus, .btn.whiteBtn:active:focus {
  color: #000;
}
.btn.whiteBtn:focus::before, .btn.whiteBtn:active:focus::before {
  background: #000;
}
.btn.whiteBtn:hover {
  color: #000;
}
.btn.whiteBtn:hover::before {
  background: #000;
}

input:not([type=submit])::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}

input:not([type=submit])::placeholder,
textarea::placeholder,
select::placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}

input:not([type=submit], [type=checkbox], [type=radio]) {
  border-radius: 0;
  padding: 1rem 0.75rem;
  display: block;
  width: 100%;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--Color-3, #faf7eb);
  color: #000;
  font-family: "Futura Bk BT";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.25rem; /* 150% */
  margin: 0 0 2.5rem;
}
input:not([type=submit], [type=checkbox], [type=radio])::-moz-placeholder {
  color: #898989;
  opacity: 1;
}
input:not([type=submit], [type=checkbox], [type=radio])::placeholder {
  color: #898989;
  opacity: 1;
}
input:not([type=submit], [type=checkbox], [type=radio]):focus {
  outline: none;
  border-color: #c86a1e;
}

textarea {
  resize: none;
  overflow: hidden;
  display: block;
  width: 100%;
  /* Desktop/lg/base/Regular */
  padding: 1rem 0.75rem;
  height: 12.5rem;
  box-shadow: none;
  margin-bottom: 0;
  outline: none;
  line-height: normal;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--Color-3, #faf7eb);
  color: #000;
  font-family: "Futura Bk BT";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.25rem; /* 150% */
  margin-bottom: 2.5rem;
}
textarea::-moz-placeholder {
  color: #898989;
  opacity: 1;
}
textarea::placeholder {
  color: #898989;
  opacity: 1;
}
textarea:focus {
  outline: none;
  border-color: #c86a1e;
}

textarea:focus {
  outline: none;
}

select {
  -webkit-appearance: none;
  /* Removes default appearance in Safari */
  -moz-appearance: none;
  /* Removes default appearance in Firefox */
  appearance: none;
  /* Standard */
  outline: none;
  /* Removes the focus outline */
  box-shadow: none;
  /* Removes the box shadow */
  padding: 1.25rem 3.125rem 1.25rem 1.25rem;
  /* Add padding for better UI */
  background-color: transparent;
  /* Background color */
  background-image: url("../images/select-arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  background-size: 0.75rem;
  width: 100%;
  border-radius: 0;
  height: auto;
  background-color: #fff;
  color: #000;
  /* Eye brow text */
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.375rem; /* 183.333% */
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

select:focus {
  border: 0.0625rem solid #cccccc;
  outline: none;
  background-color: transparent;
}

select option {
  color: #a8a8a8;
  font-size: 0.875rem;
  font-weight: normal;
}

label {
  color: var(--Black, #000);
  font-family: "Futura Bk BT";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.25rem; /* 150% */
  margin: 0 0 1.25rem;
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  margin: 0;
  font: inherit;
  color: #c8a96a;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 3px;
  border: 0.125rem solid currentColor;
  background-color: #fff;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  position: relative;
  cursor: pointer;
  transition: all 120ms ease-in-out;
}
input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #fff;
  background-color: #fff;
}
input[type=checkbox]:checked {
  background-color: currentColor;
  border-color: currentColor;
}
input[type=checkbox]:checked::before {
  transform: scale(1);
}
input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 0.15rem rgba(36, 157, 143, 0.25);
}
input[type=checkbox]:disabled {
  color: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
  background-color: #f9f9f9;
}
input[type=checkbox]:disabled:checked {
  background-color: #ccc;
}

input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  margin: 0;
  font: inherit;
  color: #000;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.125rem solid currentColor;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  background-color: #fff;
  cursor: pointer;
  transition: all 120ms ease-in-out;
}
input[type=radio]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em currentColor;
  background-color: currentColor;
}
input[type=radio]:checked::before {
  transform: scale(1);
}
input[type=radio]:focus {
  outline: none;
  box-shadow: 0 0 0 0.15rem rgba(0, 0, 0, 0.25);
}
input[type=radio]:disabled {
  color: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
  background-color: #f9f9f9;
}

section h1,
section h2 {
  margin: 0 0 2.5rem;
}
section.defaultPadding {
  padding: 7.5rem 0;
}

.mb16 {
  margin-bottom: 1rem !important;
}

.mb18 {
  margin-bottom: 1.125rem !important;
}

.mb24 {
  margin: 0 0 1.5rem !important;
}

.mb25 {
  margin: 0 0 1.5625rem !important;
}

.mb28-5 {
  margin-bottom: 1.75rem !important;
}

.mb30 {
  margin-bottom: 1.875rem !important;
}

.mb32 {
  margin-bottom: 2rem !important;
}

.mb36 {
  margin-bottom: 2.25rem !important;
}

.mb40 {
  margin-bottom: 2.5rem !important;
}

.mb50 {
  margin-bottom: 3.125rem !important;
}

.mb60 {
  margin-bottom: 3.75rem !important;
}

.mb66 {
  margin-bottom: 4.125rem !important;
}

.mb70 {
  margin-bottom: 4.375rem !important;
}

.mb80 {
  margin-bottom: 5rem !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb180 {
  margin-bottom: 11.25rem !important;
}

.mt30 {
  margin-top: 1.875rem !important;
}

.mt33 {
  margin-top: 2.0625rem !important;
}

.mt60 {
  margin-top: 3.75rem !important;
}

.mt65 {
  margin-top: 4.0625rem !important;
}

.mt85 {
  margin-top: 5.3125rem !important;
}

.pt-40 {
  padding-top: 2.5rem !important;
}

.pt-48 {
  padding-top: 2.9375rem !important;
}

.pb-60 {
  padding-bottom: 3.75rem !important;
}

.pb-275 {
  padding-bottom: 17.1875rem !important;
}

.pb-300 {
  padding-bottom: 18.75rem !important;
}

.overlayBg {
  position: fixed;
  z-index: 1000;
  background-color: #000;
  inset: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

body:has(.openNav) .overlayBg {
  opacity: 0.8;
  visibility: visible;
  pointer-events: all;
}

header.header_main {
  position: relative;
  width: 100%;
  background: transparent; /* Dark background from screenshot */
  padding: 0;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  padding-top: 1.25rem;
}
header.header_main .d_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 991px) {
  header.header_main .main_nav > ul {
    display: flex;
    align-items: center;
    gap: 8.75rem; /* Spacing between nav items */
  }
  header.header_main .main_nav > ul li a {
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }
  header.header_main .main_nav > ul li a:hover {
    color: #a73e2e;
  }
  header.header_main .main_nav > ul li.current-menu-item a {
    color: #a73e2e;
  }
}
header.header_main .rig-gp {
  margin-left: 8.875rem;
  padding-top: 2rem;
  padding-bottom: 1.125rem;
}
header.header_main .rig-gp a.link-icon {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--Black, #000);
  font-family: Manrope;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 120% */
}
header.header_main .rig-gp a.link-icon span.text-link {
  display: inline-flex;
  margin-bottom: 0.5rem;
}
header.header_main .rig-gp a.link-icon span.icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
}

.stellarnav.mobile.right .close-menu::before,
.stellarnav.mobile.left .close-menu::before {
  content: "\f00d";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 1.25rem;
  color: #a73e2e;
  transition: color 0.3s ease;
  position: relative;
  top: 1px;
}
.stellarnav.mobile.right .close-menu:hover::before,
.stellarnav.mobile.left .close-menu:hover::before {
  color: #a73e2e;
}

.hm_banner {
  position: relative;
  width: 100%;
}
.hm_banner .hero_img_wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.hm_banner .hero_img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.rec_section h1 {
  margin-bottom: 7.1875rem;
}
section.rec_section .logo_icon {
  width: 12.5rem;
  height: 12.5rem;
  aspect-ratio: 1/1;
  margin-bottom: 7.5rem;
}
section.rec_section .logo_icon img {
  width: 100%;
}
section.rec_section .content_txt h2 {
  color: #c86a1e;
}
section.rec_section .content_txt.w672 {
  max-width: 672px;
  width: 100%;
}

section.childhood .grids_p {
  display: grid;
  grid-template-columns: auto 25.15rem;
  gap: 5.6875rem;
}

section.full_bg {
  width: 100%;
}
section.full_bg img {
  width: 100%;
}

.fm_img {
  max-width: 409px;
  width: 100%;
  height: auto;
  aspect-ratio: 409/562;
}

section.people_sec h2 {
  color: var(--Color-2, #314e2e);
  font-size: 9rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.44px;
  margin-bottom: 11rem;
}
section.people_sec .grids_p {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2.125rem;
  margin-bottom: 2.5rem;
}
section.people_sec .grids_p p {
  text-align: justify;
}
section.people_sec .people_img {
  width: 100%;
  aspect-ratio: 321/283;
}
section.people_sec .people_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.spark .stain_img {
  max-width: 33.125rem;
  height: auto;
  aspect-ratio: 530/191;
}
section.spark .stain_img img {
  width: 100%;
}
section.spark h2 {
  color: var(--Color-5, #a73e2e);
}
section.spark .grids_p {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2.125rem;
  margin-bottom: 2.5rem;
}
section.spark p {
  text-align: justify;
}

section.how_it_works h2 {
  text-align: center;
  margin-bottom: 5rem;
}
section.how_it_works .all_wrk {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 18.125rem;
}
section.how_it_works .all_wrk p {
  margin-bottom: 3.75rem;
}
section.how_it_works .all_wrk .icon_img {
  margin-top: auto;
}
section.how_it_works .all_wrk .icon_img img {
  max-width: 7rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

section.shiny_people h2 {
  color: var(--Color-2, #314e2e);
  margin-bottom: 1.5rem;
}
section.shiny_people p.lead_txt {
  font-family: Merriweather;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem;
  color: #000;
  margin-bottom: 2.5rem;
}
section.shiny_people .shiny_img_wrap {
  position: relative;
  aspect-ratio: 222/305;
  max-width: 444px;
  width: 100%;
}
section.shiny_people .shiny_img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.shiny_people .infoSwiper {
  margin-bottom: 0;
}
section.shiny_people .infoSwiper p {
  color: #000;
  text-align: justify;
  margin-bottom: 0;
}
section.shiny_people .infoSwiper .row > [class*=col-] {
  padding-left: 2.5938rem;
  padding-right: 2.5938rem;
}
section.shiny_people .bottom_topic_arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}
section.shiny_people .bottom_topic_arrow .shinySwiper {
  flex: 1;
  min-width: 0;
}
section.shiny_people .bottom_topic_arrow .shinySwiper .author_info h4 {
  color: #000;
  font-family: "League Spartan";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.5rem; /* 142.857% */
  color: #000;
  margin-bottom: 0.25rem;
}
section.shiny_people .bottom_topic_arrow .shinySwiper .author_info p.author_role {
  color: #000;
  font-family: "League Spartan";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem; /* 160% */
  margin: 0;
}
section.shiny_people .bottom_topic_arrow .shiny_nav {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
section.shiny_people .bottom_topic_arrow .shiny_nav .shiny-prev,
section.shiny_people .bottom_topic_arrow .shiny_nav .shiny-next {
  display: flex;
  width: 4rem;
  height: 4rem;
  padding: 1.125rem;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
  transition: all 0.3s ease-in-out;
  background: #fff;
  font-size: 1.25rem;
}
section.shiny_people .bottom_topic_arrow .shiny_nav .shiny-prev:hover,
section.shiny_people .bottom_topic_arrow .shiny_nav .shiny-next:hover {
  background: #000;
  color: #fff;
}
section.shiny_people .quote_mark {
  width: 3.8336rem;
  height: 2.8334rem;
  margin-bottom: 1.25rem;
}
section.shiny_people .quote_mark img {
  width: 100%;
  height: 100%;
}
section.shiny_people .quote_mark.right {
  margin-left: auto;
  margin-bottom: 0;
  transform: rotateY(180deg);
  margin-top: 1.25rem;
}

section.playground_tales h2 {
  color: var(--Color-5, #a73e2e);
  margin-bottom: 2rem;
}
section.playground_tales p.sub_txt {
  font-family: "Futura Bk BT";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.25rem;
  color: #000;
  margin-bottom: 2rem;
}
section.playground_tales p.desc_txt {
  font-family: "Futura Bk BT";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
  color: #000;
  margin-bottom: 2.5rem;
}
section.playground_tales .btn_group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
section.playground_tales .fm_img {
  position: relative;
  aspect-ratio: 443/477;
  max-width: 27.6875rem;
  margin-left: auto;
}

section.how_families_stay {
  background: var(--Color-2, #314e2e);
  background-image: url(../images/families_bg.png);
  background-repeat: repeat;
  background-position: center;
}
section.how_families_stay h2 {
  color: var(--Color-3, #faf7eb);
  margin-bottom: 2rem;
}
section.how_families_stay h3 {
  color: var(--Color-3, #faf7eb);
  margin-bottom: 5rem;
}
section.how_families_stay .stay_cols .each_sty {
  width: 100%;
  max-width: 22.5rem;
}
section.how_families_stay .stay_cols .each_sty h4 {
  color: var(--Color-3, #faf7eb);
  font-family: "League Spartan";
  font-weight: 600;
  line-height: 2.5rem;
  margin-bottom: 0.625rem;
}
section.how_families_stay .stay_cols .each_sty p {
  margin-bottom: 0;
  color: var(--Color-3, #faf7eb);
  text-align: justify;
  margin-bottom: 0;
}

section.resonates_cta {
  background: url(../images/orange-bg.png) repeat, var(--Color-1, #c86a1e);
  background-position: center;
  text-align: center;
}
section.resonates_cta h2 {
  color: #fff;
  margin-bottom: 2.5rem;
}
section.resonates_cta h5 {
  color: #fff;
  font-family: Merriweather;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
section.resonates_cta .btn_group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

footer.site_footer .footer_top {
  padding: 5rem 0 11rem;
}
footer.site_footer .footer_top .foot_logo {
  width: 5.5rem;
  height: 5.5rem;
  aspect-ratio: 1/1;
  margin-bottom: 2.5rem;
}
footer.site_footer .footer_top .foot_logo img {
  max-width: 100%;
  height: auto;
}
footer.site_footer .footer_top .footer_brand p {
  max-width: 21rem;
}
footer.site_footer .footer_top p {
  color: var(--Black, #000);
  font-family: "Futura Bk BT";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 155.556% */
  margin: 0;
}
footer.site_footer .footer_top .foot_match {
  width: 100%;
  max-width: 9.5rem;
  height: auto;
  aspect-ratio: 31/52;
  margin: 0 1.875rem 0 auto;
}
footer.site_footer .footer_top .foot_match img {
  max-height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
footer.site_footer .footer_top .footer_nav {
  text-align: left;
  padding-left: 7rem;
}
footer.site_footer .footer_top .footer_nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer.site_footer .footer_top .footer_nav ul li {
  margin: 0;
  padding: 0;
}
footer.site_footer .footer_top .footer_nav ul li a {
  color: var(--Black, #000);
  font-family: "Futura Bk BT";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
}
footer.site_footer .footer_top .footer_nav ul li a:hover {
  color: var(--Color-5, #a73e2e);
}
footer.site_footer .footer_bottom {
  padding-bottom: 3rem;
}
footer.site_footer .footer_bottom .foot_contact {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #000;
  text-decoration: none;
}
footer.site_footer .footer_bottom .foot_contact i {
  font-size: 1.125rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
footer.site_footer .footer_bottom .foot_contact span {
  color: var(--Black, #000);
  font-family: "Futura Bk BT";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 133.333% */
}
footer.site_footer .footer_bottom .foot_social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  padding-left: 7rem;
}
footer.site_footer .footer_bottom .foot_social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 2.5rem !important;
  border-radius: 50%;
  color: #000;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
footer.site_footer .footer_copy {
  padding: 0 0 1.25rem;
}
footer.site_footer .footer_copy p {
  color: var(--Black, #000);
  font-family: "Futura Bk BT";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin: 0;
}
footer.site_footer .footer_copy a {
  color: var(--Black, #000);
  font-family: "Futura Bk BT";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin-left: 1.5rem;
}
footer.site_footer .footer_copy a:hover {
  color: var(--Color-5, #a73e2e);
}
footer.site_footer .adjust_padding_left {
  padding-left: 8.125rem;
}

section.rec_section.otherPg h3 {
  margin-bottom: 7.5rem;
}

section.apartments_pg h2 {
  color: var(--Color-5, #a73e2e);
}
section.apartments_pg .aps_img {
  max-width: 642px;
  aspect-ratio: 321/320;
}
section.apartments_pg .aps_img img {
  width: 100%;
  height: 100%;
}

section.orangerySec {
  background-image: url(../images/orange-bg.png);
  background-position: center;
}
section.orangerySec h2,
section.orangerySec h4,
section.orangerySec p {
  color: #fff;
}
section.orangerySec h4 {
  margin-bottom: 3.75rem;
}

section.better_way.cafePg h3 {
  max-width: 26.125rem;
}

section.apartments_pg.otherSec h2 {
  max-width: 30.375rem;
}
section.apartments_pg.otherSec .aps_img {
  margin: 0 0 3.75rem;
}
section.apartments_pg.otherSec h3 {
  margin: 0 0 1.25rem;
}

section.places_sec h4 {
  margin: 0 0 2.5rem;
}

section.festival_stays .frame_img {
  width: 100%;
  max-width: 33.125rem;
  aspect-ratio: 53/74;
}
section.festival_stays .frame_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.chapterStays .frame_img {
  width: 100%;
  max-width: 35rem;
  aspect-ratio: 70/67;
}
section.chapterStays h2 {
  color: var(--Color-5, #a73e2e);
}
section.chapterStays h3 {
  max-width: 35.125rem;
}
section.chapterStays ul.triangle_dots {
  margin-bottom: 2.5rem;
}
section.chapterStays .frame_img {
  width: 100%;
  max-width: 35rem;
  aspect-ratio: 70/67;
  height: 100%;
}
section.chapterStays .frame_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

ul.triangle_dots {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
ul.triangle_dots li {
  padding-left: 36px;
  position: relative;
  color: var(--Black, #000);
  font-family: "Futura Bk BT";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.25rem;
}
ul.triangle_dots li::before {
  content: " ";
  position: absolute;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  left: 0;
  top: 0.25rem;
  margin: auto;
  background-image: url(../images/small-tirangle.png);
  background-repeat: no-repeat;
  background-size: contain;
}

section.year_creation .heading_txt {
  text-align: center;
}
section.year_creation .heading_txt h4 {
  margin-bottom: 3.75rem;
}
section.year_creation .year_bx {
  max-width: 21rem;
  margin: 0 0 2.5rem;
}
section.year_creation .year_bx h5 {
  color: var(--Black, #000);
  font-family: "Futura Hv BT";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.25rem; /* 150% */
  margin-bottom: 1.5rem;
}
section.year_creation .year_bx.center {
  margin: 0 auto 2.5rem;
}
section.year_creation .year_bx.right {
  margin: 0 0 2.5rem auto;
}

section.may_makers h2 {
  color: var(--Color-5, #a73e2e);
  font-size: 12.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
section.may_makers .relative {
  position: relative;
}
section.may_makers .stain_mark {
  width: 33.125rem;
  height: 11.9375rem;
  aspect-ratio: 530/191;
  position: absolute;
  right: -1.875rem;
  top: 10rem;
}
section.may_makers .grids_p {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2.125rem;
  margin-bottom: 2.5rem;
}
section.may_makers h3 {
  max-width: 38.125rem;
}

section.storySeason .heading_title {
  max-width: 37.75rem;
}
section.storySeason .grids_p {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2.125rem;
  margin-bottom: 4.125rem;
}
section.storySeason .grids_p p {
  text-align: justify;
}
section.storySeason .frame_img {
  width: 100%;
  max-width: 28rem;
  aspect-ratio: 56/81;
  margin-left: auto;
}

section.better_way h2 {
  color: var(--Color-5, #a73e2e);
}
section.better_way .fm_img {
  height: auto;
  aspect-ratio: 409/480;
}

section.how_families_stay.staysPgs .each_sty {
  margin-bottom: 5rem;
}
section.how_families_stay.staysPgs .each_sty p {
  text-align: left;
}
section.how_families_stay.staysPgs .last_para {
  max-width: 47.125rem;
}
section.how_families_stay.staysPgs .last_para h3 {
  margin: 0;
}

section.villageSec .grids_p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.875rem;
}

section.better_way.staysPg h2 {
  color: var(--Color-5, #a73e2e);
}

section.rec_section.childhoodPg .content_txt h3 {
  margin: 0 0 3.75rem;
}
section.rec_section.childhoodPg .content_txt p {
  max-width: 43.75rem;
  margin: 0 auto 2.5rem;
}

section.better_way.childPg h2 {
  color: var(--Color-5, #a73e2e);
}
section.better_way.childPg .fm_img {
  margin-left: auto;
}

section.apartments_pg.childPg h2 {
  color: #314e2e;
}
section.apartments_pg.childPg h4 {
  color: var(--Black, #000);
  font-family: "Libre Baskerville";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem; /* 142.857% */
  margin: 0;
  padding: 0;
}
section.apartments_pg.childPg p {
  text-align: justify;
}

section.how_families_stay.childPg {
  text-align: center;
}
section.how_families_stay.childPg h3 {
  margin-bottom: 3.75rem;
}
section.how_families_stay.childPg p {
  color: var(--Color-3, #faf7eb);
  max-width: 29.6875rem;
  margin: auto;
}

section.places_sec.childPg {
  text-align: center;
}
section.places_sec.childPg h2 {
  color: var(--Color-5, #a73e2e);
}
section.places_sec.childPg p {
  max-width: 29.6875rem;
  margin: auto;
}

section.rec_section.enquirePg .content_txt.w1090 {
  max-width: 68.125rem;
}
section.rec_section.enquirePg .content_txt.w1090 h3 {
  max-width: 54.125rem;
  margin: 0 auto 3.75rem;
}
section.rec_section.enquirePg .content_txt.w1090 p {
  margin: 0 0 2.5rem;
}
section.rec_section.enquirePg .content_txt.w1090 .btn_group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

section.enquire_contact .btn.submitBtn input[type=submit] {
  position: absolute;
  inset: 0;
  opacity: 0;
}

section.rec_section.apartmentsPgs h2 {
  color: var(--Color-1, #c86a1e);
}
section.rec_section.apartmentsPgs ul.triangle_dots {
  margin: 0 0 2.5rem;
}
section.rec_section.apartmentsPgs .fm_img {
  max-width: 33.125rem;
  aspect-ratio: 53/48;
}
section.rec_section.apartmentsPgs .fm_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.way_stay .heading_main h2 {
  color: var(--Color-5, #a73e2e);
  text-align: center;
}
section.way_stay .group_contents {
  max-width: 35rem;
  width: 100%;
}
section.way_stay .group_contents.w586 {
  max-width: 36.625rem;
}
section.way_stay .group_contents.w684 {
  max-width: 42.75rem;
}
section.way_stay .group_contents.w753 {
  max-width: 47.0625rem;
}
section.way_stay .each_way_content {
  margin-bottom: 6.25rem;
}
section.way_stay .each_way_content h2 {
  color: var(--Color-1, #c86a1e);
  font-family: "Futura Hv BT";
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4.5rem; /* 112.5% */
}
section.way_stay .each_way_content .grids_imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 4.375rem;
  grid-row-gap: 4.375rem;
  margin-top: 6.25rem;
}
section.way_stay .each_way_content .grids_imgs .col_each {
  width: 100%;
  overflow: hidden;
}
section.way_stay .each_way_content .grids_imgs .col_each:nth-child(1) {
  grid-area: 1/1/2/2;
}
section.way_stay .each_way_content .grids_imgs .col_each:nth-child(2) {
  grid-area: 1/2/2/3;
}
section.way_stay .each_way_content .grids_imgs .col_each:nth-child(3) {
  grid-area: 1/3/3/4;
}
section.way_stay .each_way_content .grids_imgs .col_each:nth-child(4) {
  grid-area: 2/1/3/3;
}
section.way_stay .each_way_content .grids_imgs.grid_4_1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 4.375rem;
  grid-row-gap: 4.375rem;
}
section.way_stay .each_way_content .grids_imgs.grid_4_1 .col_each:nth-child(1) {
  grid-area: 1/1/2/2;
}
section.way_stay .each_way_content .grids_imgs.grid_4_1 .col_each:nth-child(2) {
  grid-area: 1/2/2/3;
}
section.way_stay .each_way_content .grids_imgs.grid_4_1 .col_each:nth-child(3) {
  grid-area: 1/3/3/4;
}
section.way_stay .each_way_content .grids_imgs.grid_4_1 .col_each:nth-child(4) {
  grid-area: 2/1/3/2;
}
section.way_stay .each_way_content .grids_imgs.grid_4_1 .col_each:nth-child(5) {
  grid-area: 2/2/3/3;
}
section.way_stay .each_way_content .grids_imgs .grids_gallery a {
  display: block;
  height: 100%;
}
section.way_stay .each_way_content .grids_imgs .grids_gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.way_stay .each_way_content .grids_imgs .grids_gallery.SquareeImg {
  width: 100%;
  height: 100%;
  aspect-ratio: 190/217;
}
section.way_stay .each_way_content .grids_imgs .grids_gallery.recH_img {
  width: 100%;
  height: 100%;
  aspect-ratio: 207/459;
}
section.way_stay .each_way_content .grids_imgs .grids_gallery.recW_img {
  width: 100%;
  height: 100%;
  aspect-ratio: 83/34;
}

.f-counter,
button.f-button[data-panzoom-action],
button.f-button[data-autoplay-action],
button.f-button[data-fullscreen-action],
button.f-button[data-thumbs-action],
.fancybox__thumbs.f-thumbs.is-modern.is-ltr.is-horizontal.is-enabled.is-syncing,
.fancybox__thumbs.f-thumbs.is-modern.is-ltr.is-horizontal.is-enabled {
  display: none;
}

button.f-button[data-fancybox-close] {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.3);
  padding: 0;
}

button.f-button.is-arrow {
  display: flex;
  width: 64px;
  height: 64px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 100px;
  border: 1px solid #fff;
  padding: 0;
  background: transparent;
}/*# sourceMappingURL=style.css.map */