:root {
  --white: #fff;
  --primary-color: #817665;
}

html{
  scroll-behavior: smooth;
}

body {
  font-family: 'Brooklyn', sans-serif;
  background-color: #fbf7f3;
  padding: 0;
  margin: 0;
  overflow-x: clip;
}

p{
  line-height: 150%;
}

a {
  text-decoration: none;
  transition: 0.15s;
  word-wrap: break-word;
}

a:hover{
  color: var(--white);
  text-decoration: underline;
}

.text-medium{
  font-size: 24px;
}

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

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

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

.section {
  padding-top: 100px;
  padding-bottom: 100px;
  z-index: 1;
}

.section-title {
  font-family: 'Morgan';
  font-size: 38px;
  font-weight: bold;
  letter-spacing: 5px;
  line-height: 150%;
  margin-bottom: 25px;
}

.border-btn {
  padding: 10px 20px;
  border: 1px solid var(--white);
  color: var(--white);
}

.border-btn:hover{
  background-color: rgba(255,255,255,0.25);
  color: var(--white);
}

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

.hero-wrapper {
  position: relative;
  width: 100dvw;
  height: 100dvh;
  max-height: 100vh;
  z-index: -1;
  padding: 0;
}

.hero-wrapper > .row {
  all: unset;
  height: 100%;
  width: 100%;
}

.hero-wrapper video{
  position: absolute;
  height: 105%;
  width: 105%;
  top: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  z-index: -1;
}

.hero-wrapper video::-webkit-media-controls {
  display: none;
}

.hero-wrapper .bi-chevron-double-down{
    position: absolute;
    text-align: center;
    bottom: 50px;
    left: 0;
    right: 0;
    color: var(--white);
    font-size: 48px;
}

.hero-banner {
  position: fixed;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: -1;
  max-height: 100dvh;
  padding-top: 15dvw;
}

.hero-title.on-right {
  position: absolute;
  left: 60%;
  bottom: 20%;
}

.hero-title.on-right h6 {
  color: var(--white);
  letter-spacing: 6px;
  font-size: 24px;
  margin-bottom: 15px;
}

.hero-title.on-right h6.indent {
  margin-left: 165px;
}

.section.with-bg {
  transition: all 8s;
  height: 850px;
  max-height: 100vh;
}

.section.with-bg .card-content {
  text-align: center;
}

.section.with-bg .card-section-title {
  font-family: 'Morgan';
  font-size: 38px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 15px;
  color: var(--white);
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

/* .section.with-bg .card-section-title::first-letter{
  font-size: 54px;
} */

.section.with-bg .card-section-description {
  font-size: 18px;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 25px;
}

.section.with-bg a {
  display: inline-block;
}

.quick-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 24px;
  padding-left: 2px;
  transition: 0.15s;
}

a:has(.quick-link-icon):hover{
  text-decoration: none;
}

.quick-link-icon:hover{
  background-color: rgba(255,255,255,0.25);
  color: var(--white);
  text-decoration: none;
}


.section.with-bg.address {
  background: url("./../../../data/editor/home/aerial-view-extended-sky.jpg?v1.2"),
    rgba(0, 0, 0, 0.3);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.section.with-bg.concept {
  background: url("./../../../data/editor/home/concept.png?v1.1"), rgba(0, 0, 0, 0.3);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
}

.section.with-bg.living {
  background: url("./../../../data/editor/home/living.png?v1.1"), rgba(0, 0, 0, 0.3);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
}

.section.with-bg.experience {
  background: url("./../../../data/editor/home/experience-new.png?v1.1"),
    rgba(0, 0, 0, 0.3);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
}

.section.with-bg.legacy {
  background: url("./../../../data/editor/home/our-story.png?v1.1"), rgba(0, 0, 0, 0.3);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
}

.section.with-bg.concept:hover,
.section.with-bg.living:hover,
.section.with-bg.experience:hover,
.section.with-bg.legacy:hover {
  background-size: 120%;
}

.inner-banner{
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  padding-top: 10dvw;
}

.inner-banner-content{
  text-align: center;
}

.inner-banner-content h1{
  font-family: 'Morgan';
  font-size: 38px;
  font-weight: bold;
  letter-spacing: 5px;
  line-height: 150%;
  margin-bottom: 25px;
  color: var(--white);
  text-transform: uppercase;
}

.inner-banner-content p{
  color: var(--white);
  text-wrap: balance;
}

.site-map-wrapper{
  background-color: #F4F0E9;
}

.site-map-wrapper .nearby-location{
  padding: 100px;
}

.nearby-location img{
  width: 135px;
}

.site-map-wrapper .accordion-item, .accordion-button.collapsed{
  background-color: transparent !important;
  border: 0;
}

.accordion-button{
  font-family: 'Morgan';
}

.site-map-wrapper .accordion-button:not(.collapsed){
  box-shadow: unset;
  color: var(--black) !important;
}

.site-map-wrapper .accordion-button:not(.collapsed)::after{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.site-map-wrapper .accordion-body .description-text ul{
  padding-left: 0;
  list-style-type: none;
}

.site-map-wrapper .accordion-body .description-text ul li{
  margin-bottom: 15px;
  color: #636363;
}

.nearby-location .quotes{
    margin-top: 75px;
}

.nearby-location .quotes h4{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
}


.nearby-location .quotes h6{
  font-size: 14px;
}

.inner-banner.none{
  min-height: unset;
  padding-top: 200px;
  padding-bottom: 200px;
}

.inner-banner.none .inner-banner-content h1, .inner-banner.none .inner-banner-content p{
  color: var(--black);
} 

.render-slider  .swiper  img{
  width: 100%;
}

.inner-banner.temp-bg{
  min-height: unset;
  padding-top: 200px;
  padding-bottom: 200px;
  background-color: rgba(0, 0, 0, 0.4);
}

.swiper-button-next, .swiper-button-prev{
  color: var(--white) !important;
}

/* .section.contact{
  padding-top: 200px;
} */

.form-wrapper .border-mandatory{
  border: 0 !important;
}

.form-wrapper .form-control{
  margin-top: 20px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid var(--black);
  background-color: transparent;
  padding: 5px 0;
  font-size: 14px;
}

.form-wrapper .form-control::placeholder{
  text-transform: uppercase;
}

textarea.form-control{
  border: 1px solid var(--black) !important;
  padding: 15px !important;
}

.form-wrapper .form_1745316826_6_container{
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}

.form-wrapper .form_1745316826_6_container .col-6{
  all: unset;
}

.form-wrapper .border-btn{
  border: 1px solid var(--black);
  color: var(--black);
  width: 100%;
}

.form-wrapper .border-btn:hover{
  color: var(--white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.concept-left-column-wrapper > .row{
  all: unset;
}

.concept-left-column{
  position: sticky;
  top: 0px;
  z-index: 2;
}

.concept-left-column > .row > .col-12 > .row > .col-12{
  padding: 0;
}

.concept-left-column img{
  width: 100%;
  height: 100dvh;
  object-fit: cover;
}

.concept-title-on-top{
  position: sticky;
  top: 0px;
  z-index: 1;
  text-align: center;
  padding: 50px 100px;
  background-color: #fbf7f3;
  margin-left: 1px;
}

.tagline{
  font-family: 'Morgan';
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 5px;
}

.concept-title-on-top .section-title{
  margin-bottom: 20px;
}

.concept-title-on-top h4{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 35px;
}

.concept-title-on-top p{
  max-width: 90%;
  margin: 0 auto;
}

.concept-context-wrapper{
  text-align: center;
  padding: 100px 100px;
}

.concept-context-wrapper h5{
  font-family: 'Morgan';
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
  text-transform: capitalize;
  letter-spacing: 5px;
}

.concept-context-wrapper .swiper{
  max-width: 90%;
}

.concept-context-wrapper img{
  width: 100%;
  margin-bottom: 25px;
  aspect-ratio: 2/1;
  object-fit: cover;
  /* opacity: 0;
  animation: image-fadein linear;
  animation-timeline: view();
  animation-range-start: cover;
  animation-range-end: contain; */

}

.concept-context-wrapper .swiper-slide{
  background: transparent;
}


.concept-context-wrapper .swiper-pagination{
  display: none;
}

.concept-context-wrapper ul{
  text-align: left;
  max-width: 90%;
  margin: 0 auto;
}

.concept-context-wrapper ul li{
  margin-bottom: 15px;
}


.footer-wrapper {
  background-color: #625D57;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-wrapper * {
  color: var(--white);
}

.footer-logo {
  max-width: 175px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.footer-wrapper .address-wrapper h6 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.footer-wrapper .address-wrapper p {
  line-height: 175%;
}

.footer-listing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px 80px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  max-width: 80%;
  margin-left: auto ;
  margin-right: auto;
}

.footer-listing a{
  text-transform: uppercase;
}

.fixed-right-button{
  position: fixed;
  display: flex;
  top: 30%;
  right: 0;
  z-index: 3;
  transform: rotate(270deg);
  transform-origin: bottom right;
}

.fixed-right-button a{
   /* writing-mode: sideways-lr; */
  text-orientation: mixed;
  display: block;
  font-size: 18px;
  min-width: 200px;
  padding: 15px;
  text-align: center;
  transition: 0.15s;
}

/* .fixed-right-button a.register{
  background-color: var(--white);
  color: var(--black);
  border: 1px solid #e5e5e5;
}

.fixed-right-button a.register:hover{
  text-decoration: none;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
} */

.fixed-right-button a.register{
  background-color: #0d3412;
  color: var(--white);
  border: 1px solid #0d3412;
}

.fixed-right-button a.register:hover{
  text-decoration: none;
  background-color: #1eb153;
  border: 1px solid #1eb153;
}

.fixed-right-button a.whatsapp{
  background-color: #0d3412;
  color: var(--white);
  border: 1px solid #0d3412;
}

.fixed-right-button a.whatsapp:hover{
  text-decoration: none;
  background-color: #1eb153;
  border: 1px solid #1eb153;
}

.policy-link-wrapper span {
  margin-left: 50px;
  margin-right: 50px;
}

.copyright-wrapper p{
  font-size: 14px;
  margin-top: 25px;
  margin-bottom: 0;
}

.copyright-wrapper a{
  font-size: 14px;
}

.brown-bg h1{
  font-family: 'Morgan';
  font-weight: bold;
  letter-spacing: 5px;
  font-size: 32px;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 50px;
}

.me-group-logo{
  width: 175px;
}

.text-group{
  text-align: center;
  margin-bottom: 75px;
}

.text-group h4{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
  font-family: 'Morgan';
  font-weight: bold;
  letter-spacing: 5px;
}

.policy-group{
  margin-bottom: 50px;
}

.policy-group h2{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.policy-group ul{
  padding-left: 20px;
}

.policy-group ul li{
  margin-bottom: 15px;
}

.policy-group ul li ul{
  margin-top: 15px;
}

@media (max-width: 1600px) {
  .section.with-bg:not(.address) {
    background-size: 160% !important;
  }

  .section.with-bg.concept:hover,
  .section.with-bg.living:hover,
  .section.with-bg.experience:hover,
  .section.with-bg.legacy:hover {
    background-size: 180% !important;
  }
}

@media (max-width: 1199px){
  .concept-title-on-top, .concept-context-wrapper{
    padding: 50px 50px;
  }
}

@media (max-width: 991px) {
  .section.with-bg {
    height: 600px;
  }

  .site-map-wrapper .nearby-location{
    padding: 25px;
  }

  .concept-left-column img{
    height: auto;
  }
}

@media (max-width: 767px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .section-title, .inner-banner-content h1, .card-section-title {
    font-size: 24px !important;
  }

  .tagline{
    font-size: 20px !important ;
  }

  .concept-title-on-top h4 {
    font-size: 18px !important;
  }

  .concept-context-wrapper h5{
    font-size: 18px;
  }

  .section.with-bg {
    height: auto;
  }

  .section.with-bg{
    aspect-ratio: 1/1;
  }

  .hero-banner {
    display: block;
    padding-top: 40dvw;
  }

  .hero-banner img{
    width: 300px;
    margin:  0 auto;
  }

  .hero-title.on-right{
    position: unset;
    text-align: center;
    margin-top: 35px;
  }

  .hero-title.on-right h6{
    font-size: 20px;
  }

  .hero-title.on-right h6.indent{
    margin-left: 0;
  }

  .quick-link-icon{
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .concept-title-on-top, .concept-context-wrapper{
    position: relative;
    padding: 20px 20px;
  }

  .concept-title-on-top p, .concept-context-wrapper img, .concept-context-wrapper ul{
    max-width: 100%;
  }

  .inner-banner{
    padding-top: 150px;
  }

  .inner-banner.none{
    padding-top: 50px;
  }

  .text-medium{
    font-size: 20px;
  }

  .footer-wrapper *{
    font-size: 14px;
  }

  .policy-link-wrapper span{
    margin-left: 10px;
    margin-right: 10px;
  }

  .fixed-right-button{
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: unset;
  }

  .fixed-right-button a{
    display: inline-block;
    writing-mode: unset;
    min-height: auto;
    width: 50%;
    font-size: 14px;
  }
}



@keyframes image-fadein{
  to {
    opacity: 1
  }
}