@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

@font-face {
  font-family: "HurmeGeometricSans2";
  src: url("./assets/HurmeGeometricSans1-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
} 
@font-face {
  font-family: "HurmeGeometricSans1";
  src: url("./assets/HurmeGeometricSans1-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}


/*@font-face {*/
/*  font-family: "HurmeGeometricSans1";*/
/*  src: url("./assets/HurmeGeometricSans1-Regular.woff2") format("woff2");*/
/*  font-weight: 400;*/
/*  font-style: normal;*/
/*}*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  /* background: #ffffff; */
}

:root {
  --color-brown: #966e41;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "HurmeGeometricSans1", sans-serif;
  font-weight: 300;
}

.container {
  width: 90%;
  margin: auto;
}

.containerSecondary{
  width: 95%;
  margin: auto;
}

/*@media (max-width: 1024px) {*/
/*  .container {*/
/*    width: 90%;*/
/*    margin: auto;*/
/*  }*/
/*}*/
@media (max-width: 767px) {
  .container {
    width: 85%;
    margin: auto;
  }
}

 .contact-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.contact-modal-content {
  background: url(./assets/form-bg-1.webp);
  background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
  margin: 2% auto;
  padding: 0;
  border-radius: 8px;
  width: 80%;
  height: 90%;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  z-index: 10000;
}

#contact-modal iframe {
    /*width: 85vw;*/
    /*height: 100vh;*/
    scale: 1;
    border: none;
    position: absolute;
    top: 12%;
    left: 0;
}

/* ------------ Loader CSS starts ------------ */
.green-curtain {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #F8F6F3;
  top: 0;
  left: 0;
  z-index: 103;
}
.pseudo-table-cell {
  width: 100%;
  height: 100vh;
  display: flex;
  vertical-align: middle;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  align-items: center;
  box-sizing: border-box;
  flex-wrap: wrap;
}
.gc-big-name img {
    width: 100%;
    height: 18vh;
    object-fit: cover;
}
.gc-div-1 {
  width: fit-content;
  margin: auto;
}
.center-title {
  text-align: center;
  font: 26px/36px GothamNarrow-Medium;
  letter-spacing: 0px;
  color: #1d3b27;
  /* margin-bottom: 0; */
  /* margin-top: 0; */
  opacity: 1;
  transition: all 0.7s ease-in-out;
  display: table;
  margin: auto;
  position: absolute;
  bottom: 75px;
  width: 100%;
  left: 0;
  z-index: 2;
}
/* ------------ Loader CSS ends ------------ */
/* ------------ Hero section ------------ */

.video-section {
  height: 100vh;
}
.mobile-hero-video {
  height: 100vh;
  display:none;
}

/* ------------ urban section ------------ */
.homeurban {
  padding: 115px 0;
}

.urbaninfo {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 60px;
  min-height:84vh;
}

.urbanleft {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.urbanleft h3 {
  color: var(--color-brown);
  font-size: 45px;
  font-weight: 300;
}
.urbanright img {
  width: 100%;
  height:100%;
  object-fit:cover;
  border-radius:10px;
}

.urbanleft p {
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 1px;
  color: #000000;
}

/* ------------ essence section ------------ */

/* .essence {
  background: url(./assets/essence-bg-3.png);
  background-size: cover;
  background-position: 0 58%;
  background-repeat: no-repeat;
  padding: 70px 0;
} */

.essence {
  position: relative;
  padding: 70px 0px 120px 0px;
  overflow: hidden;
}

.essence::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background: url(./assets/essence-bg-3.png) no-repeat 0 58%;
  background-size: cover;
  opacity: 0.6;
  z-index: -1;
}

.essenceInfo h2 {
  color: var(--color-brown);
  font-size: 45px;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.essenceInfo p {
  font-size: 18px;
  font-weight: 300;
  color: #253138;
  opacity: 80%;
  margin: 0.5em 0 2.5em;
}

/*.single-row-carousel .carousel-item {*/
/*  position: relative;*/
/*  width: 100%;*/
/*  margin-right: 20px;*/
/*  border-radius: 2px;*/
/*  overflow: hidden;*/
/*}*/

/*.single-row-carousel .carousel-item::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: rgba(0, 0, 0, 0.1);*/
/*  z-index: 1;*/
/*}*/

/*.single-row-carousel .carousel-item img {*/
/*  width: 100%;*/
/*  height: 380px;*/
/*  object-fit: cover;*/
/*  display: block;*/
/*  border-radius: 2px;*/
/*}*/

/*.single-row-carousel .carousel-item p {*/
/*  position: absolute;*/
/*  bottom: 15px;*/
/*  left: 20px;*/
/*  margin: 0;*/
/*  color: #fff;*/
/*  font-family: "HurmeGeometricSans1", sans-serif;*/
/*  font-weight: 300;*/
/*  font-size: 16px;*/
/*  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);*/
/*  z-index: 2;*/
/*}*/

/* second carousel  */

/*.single-row-carousel-2 .carousel-item {*/
/*  position: relative;*/
/*  width: 100%;*/
/*  border-radius: 2px;*/
/*  overflow: hidden;*/
/*  margin: 1.5em 0;*/
/*}*/

/*.single-row-carousel-2 .carousel-item::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: rgba(0, 0, 0, 0.1);*/
/*  z-index: 1;*/
/*}*/

/*.single-row-carousel-2 .carousel-item img {*/
/*  width: 100%;*/
/*  height: 380px;*/
/*  object-fit: cover;*/
/*  display: block;*/
/*  border-radius: 2px;*/
/*}*/

/*.single-row-carousel-2 .carousel-item p {*/
/*  position: absolute;*/
/*  bottom: 15px;*/
/*  left: 20px;*/
/*  margin: 0;*/
/*  color: #fff;*/
/*  font-family: "HurmeGeometricSans1", sans-serif;*/
/*  font-weight: 300;*/
/*  font-size: 16px;*/
/*  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);*/
/*  z-index: 2;*/
/*}*/


.essenceGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}
.ess-row {
  position: relative;
}

.ess-row p {
  position: absolute;
  bottom: 7%;
  left: 7%;
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  font-family: "HurmeGeometricSans1";
}
.ess-row img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.essenceGrid-2 {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 15px;
  margin-top: 10px;
}

/* ------------ Architecture section ------------ */
.architecture {
  padding: 100px 0px 0px 0px;
  /* background: #ffffff; */
}
.archinfo {
  text-align: center;
}
.archinfo h2 {
  font-size: 45px;
  font-weight: 300;
  color: var(--color-brown);
}
.archinfo p {
  font-size: 20px;
  font-weight: 300;
  font-family: "HurmeGeometricSans1", sans-serif;
  margin: 0.5em 0 1.9em;
}
.archinfo {
    margin-bottom:20px;
}

.archi-item {
  width: 100%;
  height: 85vh;
}

.archiSlides .owl-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.archiSlides.owl-carousel .owl-dots {
  margin-top: 30px !important;
}

.archiSlides .owl-dots .owl-dot span {
      background: #5b6f7b !important;
    margin: 5px 5px !important;
    width: 12px !important;
    height: 12px !important;
  
}
.archiSlides .owl-dots .owl-dot.active span {
  background: #253138 !important;
  width: 35px !important;
}

.press-owl-nav button {
  background: #5b6f7b !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.press-owl-nav img {
  height: 1.4em;
}

.archiContainer {
  position: relative;
}

.press-owl-nav {
  position: absolute;
  top: 55%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none; /* Allow clicks to pass through except on buttons */
  z-index: 2;
}

.press-owl-nav button {
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: all;
}

.press-prev,
.press-next {
  position: relative;
  z-index: 2;
}

.press-prev {
  margin-left: -50px;
}

.press-next {
  margin-right: -50px;
}

/* ------------ CEO section ------------ */
.ceo {
  padding: 200px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.ceo img {
  width: 40%;
  height: auto;
}
.ceo-left {
  position: absolute;
  left: -180px;
  top: -40px;
  opacity: 10%;
  transform: rotate(43deg);
}
.ceo-right {
  position: absolute;
  right: -180px;
  top: -40px;
  opacity: 10%;
  transform: rotate(297deg);
}

.ceoinfo p {
  font-size: 60px;
  letter-spacing: -3px;
  color: #5b6f7b;
  font-weight: 300;
  margin-bottom: 0.4em;
}
.ceoinfo span {
  font-weight: 600;
  font-size: 18px;
}
/* ------------ Archi-built section ------------ */
.Archi-built {
  padding: 20px 0px 130px 0px;
}

.Archi-built-info {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 150px;
}

.Archi-built-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.Archi-built-left h3 {
  color: var(--color-brown);
  font-size: 45px;
  font-weight: 300;
  line-height: 51px;
}
.Archi-built-right img {
  width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.Archi-built-left p {
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 1px;
  color: #000000;
}
/* ------------ Location section ------------ */
.location-section {
  padding: 100px 0px 100px 0px;
  background: url(./assets/location-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.location-video {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 80px;
}

.content-column {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content:space-between;
}
h2.location-title {
  font-size: 40px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 1.5em;
}
.content-column span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}

/* .video-column {
  height: 300px;
} */

.dynamic-text {
  position: relative;
  width: 100%;
  height: 100%;
}

.desc-block {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: none;
  color: #fff;
  background: #ffffff00;
  padding: 20px 0 0;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.desc-block.fade-in {
  display: block;
  opacity: 1;
  position: relative;
}

.desc-block.fade-out {
  opacity: 0;
}

.desc-block h3 {
  margin-top: 0;
  color: #d17c46;
}
.desc-block p {
  margin-top: 10px;
  margin-bottom: 25px;
    font-weight: 500;
}

.desc-block ul {
  /* padding-left: 20px; */
  margin: 15px 0 0;
}

.desc-block ul li {
  margin-bottom: 17px;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #ffffff4d;
}

.desc-block li:last-child {
  margin-bottom: 0;
}
.mobile-location-video{
    display:none;
}
.our-legacy{
    padding:120px 0px;
}
/* ------------ Residence section ------------ */
.Residence {
  padding: 100px 0;
  background: #f8f6f3;
}

.Residence-info {
  display: grid;
  grid-template-columns: 1fr 44%;
  gap: 130px;
}

.Residence-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.Residence-right span {
  font-size: 16px;
  font-weight: 400;
  color: #253138;
  letter-spacing:1px;
}

.Residence-right h3 {
  color: var(--color-brown);
  font-size: 45px;
  font-weight: 300;
  line-height: 51px;
  margin-top:-18px;
}
.Residence-left img {
  width: 100%;
  height: 680px;
}

.Residence-right p {
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 1px;
  color: #000000;
  padding-top:20px;
}
.Residence-right a {
  font-family: "HurmeGeometricSans1", sans-serif;
  display: block;
  background: #5b6f7b;
  width: fit-content;
  padding: 15px 25px;
  border-radius: 80px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.96px;
  font-weight: 600;
}

/* ------------ amenities section ------------ */
.amenities {
  padding: 70px 0;
  position: relative;
  justify-content: center;
  height: 500px;
  display: flex;
}

.amenities img {
  width: auto;
  height: 32em;
}

.club-left {
  position: absolute;
  left: 0;
  top: 0px;
}
.club-right {
  position: absolute;
  right: 0;
  top: 0px;
}
.amenitiesInfo {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 1.5em;
}

.amenitiesInfo span {
  font-size: 16px;
  font-weight: 400;
  color: #253138;
  letter-spacing:1px;
}

.amenitiesInfo h3 {
  color: var(--color-brown);
    font-size: 45px;
    font-weight: 300;
    line-height: 51px;
    margin-top: -11px;
    margin-bottom: 20px;
}

.amenitiesInfo p {
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 1px;
  color: #000000;
  padding: 0 10%;
}
.amenitiesInfo a {
  font-family: "HurmeGeometricSans1", sans-serif;
  display: block;
  background: #5b6f7b;
  width: fit-content;
  padding: 15px 25px;
  border-radius: 80px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.96px;
  font-weight: 600;
  cursor: pointer;
  margin: auto;
  margin-top: 20px;
  position:relative;
}

.amenities-image {
  padding: 70px 0 0;
}
.amenities-image img {
  width: 100%;
}

/* ------------ story section ------------ */

.story-info {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 130px;
}

/* ------------ Register section ------------ */
.register {
  background: url(./assets/form-bg-1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0;
}
.registerInfo h2 {
  text-align: center;
  color: #ffffff;
  font-size: 50px;
  font-weight: 300;
  margin-bottom: 0.7em;
}
.register-form {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  background: transparent;
}

.register-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.register-form .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.register-form .input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.register-form .input-group.full-width {
  flex: 100%;
}

.register-form label {
  color: white;
  font-size: 0.85rem;
  margin-bottom: 6px;
  font-weight: 400;
}

.register-form input,
.register-form textarea {
  background-color: rgba(239, 243, 245, 0.6);
  border: none;
  padding: 12px;
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  outline: none;
  backdrop-filter: blur(2px);
}

.register-form input::placeholder,
.register-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.register-form input:focus,
.register-form textarea:focus {
  outline: 2px solid rgba(255, 255, 255, 0.4);
}

.register-form .button-row {
  justify-content: center;
}

.register-form .button-row .input-group {
  flex: 0 0 auto;
}

.register-form button {
  width: auto;
  padding: 10px 40px;
  background-color: #E1DAD2;
  color: #5B6F7B;
  font-size: 14px;
  border: none;
  border-radius: 80px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "HurmeGeometricSans2", sans-serif;
  text-transform:uppercase;
  margin-top:30px;
  letter-spacing: 0.80px;
  
}

.register-form button:hover {
  background-color: rgba(239, 243, 245, 0.8);
  color: #d17c46;
}

/* ------------ Footer section ------------ */
.footer {
  background: #5b6f7b;
  padding: 60px 0px 60px 0px;
}

.footerInfo {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.ft-img img {
  width: 100%;
  height: 2.2em;
  object-fit: contain;
}
.ft-links {
  display: flex;
  gap: 40px;
}

.ft-links li a {
  color: #ffffff;
  display: inline-block;
  transition: transform 0.4s ease;
}

.ft-links li a:hover {
  color: #e95f08;
  transform: translateY(-5px);
}

.ft-social {
  display: flex;
  gap: 30px;
}

.ft-social a {
  display: inline-block;
  transition: transform 0.4s ease;
}

.ft-social a:hover {
  color: #d17c46;
  transform: translateY(-5px);
}
.copyright-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
        margin-top: -45px;
}
.logo-info{
    display:flex;
    gap:10px;
    align-items: center;
    margin-top:-13px;
        margin-left: 68px;
}
.rera-no{
        color: #ffffff;
        font-size: 13px;
}
.logo-info p{
     color: #ffffff;
    font-size: 14px;
    text-transform:uppercase;
}
.logo-info span{
     color: #ffffff;
        font-size: 13px;
}
.logo-info img{
    width:110px;
    height 100%
}
.ld-popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.ld-popup-content {
  background: #fff;
  padding: 50px;
  width: 70%;
  position: relative;
  animation: ld-fade-in 0.3s ease-in-out;
  height: 80vh;
  overflow-y:auto;
}

.ld-popup-content h2 {
  margin-top: 0;
  text-align: center;
  font-size: 36px;
  margin-bottom:30px;
      color: #966E41;
          font-weight: 300;
}
.ld-popup-content p{
        font-size: 16px;
    line-height: 23px;
        color: #000000;
        letter-spacing: 1px;
}
.ld-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
.ld-para {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.understood-btn {
        font-family: "HurmeGeometricSans1", sans-serif;
    display: block;
    background: #5b6f7b;
    width: fit-content;
    padding: 15px 25px;
    border-radius: 80px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1.96px;
    font-weight: 600;
}
.ld-btn
 {
    text-align: -webkit-center;
    margin-top: 15px;
}
.ft-img {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
@keyframes ld-fade-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.tel-mail{
    display: flex;
    flex-direction: column;
    gap:10px;
    align-items:start;
}
.tel-mail a{
        color: #ffffff;
    font-size: 14px;
}
.mobile-tel-info {
    display:none;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }
  .ft-img img {
    width: 100%;
    height: 2em;
    object-fit: contain;
  }
  .ft-links {
    gap: 15px;
  }
  .ft-social {
    gap: 10px;
  }
  .logo-info {
    display: flex;
    gap: 10px;
    align-items: start;
    flex-direction: column;
    margin-top:0px;
    margin-left: 0px;
}
.logo-info span{
    display:none;
}
.logo-info img {
    width: 38%;
    height: auto;
}
.copyright-info {
    gap: 18px;
  margin-top: 35px;
  margin-left:0px;
      align-items: start;
}
.ld-popup-content {
    padding: 30px;
    width: 90%;
}
.ld-popup-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
}
.tel-mail {
    display:none;
}
.mobile-tel-info {
    display:flex;
    gap:5px;
    flex-direction: column;
}
.mobile-tel-info  a{
        color: #ffffff;
    font-size: 15px;
}
.logo-info p{
    font-size:14px;
}
.rera-no {
    color: #ffffff;
    font-size: 14px;
}
}
@media (max-width: 575px) {
  .footer {
    padding: 40px 0;
  }
  .footerInfo {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .ft-social {
    gap: 15px;
  }
}

/* ------------ Home Media query starts ------------ */

@media (max-width: 1024px) {
  .urbanleft h3 {
    font-size: 34px;
  }
  .urbanleft p {
    font-size: 15px;
    margin-top: 1.5em;
    line-height: 23px;
  }
  .essenceInfo h2 {
    font-size: 50px;
  }
  .archinfo h2 {
    font-size: 50px;
  }
  .Residence-right span
 {
    font-size: 15px;
 }
  .archinfo p {
            font-size: 15px;
        line-height: 23px;
  }
  .ceoinfo span
 {
    font-size: 16px;
}
  .press-prev {
    margin-left: -50px;
  }
  .press-next {
    margin-right: -50px;
  }
  .archi-item {
    height: unset;
  }
  .architecture {
    padding: 60px 0;
  }
  .ceoinfo p {
    font-size: 40px;
  }
  .ceo {
    padding: 200px 0 100px;
  }
  .Archi-built-left h3 {
    font-size: 38px;
  }
  .Archi-built-info {
    gap: 30px;
  }

  .Residence-info {
    gap: 30px;
  }
  .Residence-right h3 {
    font-size: 40px;
  }
  .Residence-left img {
    height: 580px;
  }
  .amenitiesInfo h3 {
    font-size: 40px;
  }
  .story-info p {
    font-size: 18px;
    margin-top: 1em;
  }

  .registerInfo h2 {
    font-size: 40px;
  }
}

/* ---------------- Tablet version Home page ----------------  */

@media (max-width: 768px) {
  .urbaninfo {
    grid-template-columns: 1fr;
  }

  .essenceInfo h2 {
    font-size: 40px;
  }

  .archinfo h2 {
    font-size: 40px;
  }

  .archi-item {
    width: 100%;
    margin: auto;
    height: 250px;
  }
  .press-next {
    margin-right: -22px;
  }
  .press-prev {
    margin-left: -26px;
  }

  .archiSlides .owl-item img {
    border-radius: 4px;
  }
  .ceo {
    padding: 100px 0 70px;
  }
  .ceoinfo p {
    font-size: 32px;
  }

  .Archi-built-info {
    grid-template-columns: 1fr;
  }
  .Archi-built-left h3 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 1.2em;
  }
  .Archi-built-right img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 4px;
  }
  .Residence {
    padding: 50px 0;
  }
  .Residence-info {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .Residence-left {
    order: 2;
  }
  .Residence-right {
    order: 1;
  }
  .Residence-right h3 {
    font-size: 30px;
    line-height: 42px;
  }
  .Residence-left img {
    height: 400px;
  }
  .location-video {
    grid-template-columns: 1fr;
  }
  h2.location-title {
    font-size: 28px;
    margin-bottom: 0.7em;
    line-height:34px;
  }
  .location-video {
        display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .location-section {
    padding: 70px 0 70px;
  }
  .desktop-location-video{
      display:none;
  }
  .mobile-location-video{
      display:block;
  }
  .amenitiesInfo h3 {
    font-size: 30px;
    line-height: 40px;
    position: relative;
  }

  .story-info h3 {
    margin-bottom: 0;
  }

  .story-info img {
    width: 100%;
    height: 400px;
  }
  .registerInfo h2 {
    font-size: 30px;
  }
  .register-form {
    padding: 20px 0 0;
  }
}
/* ------------------- mobile version ------------------- */
@media (max-width: 575px) {
    .video-section{
        display:none;
    }
    .mobile-hero-video {
  height: 100vh;
  display:block;
}
  .urbanleft h3 {
    font-size: 28px;
    line-height: 34px;
  }
  .homeurban{
      padding:60px 0px;
  }
  .essenceInfo h2 {
    font-size: 28px;
    margin-bottom: 0.5em;
    line-height:34px;
  }
  .essence {
    padding: 50px 0px;
}
  .essenceGrid {
    grid-template-columns: 1fr;
  }
  .essenceGrid-2 {
    grid-template-columns: 1fr;
  }
  .ess-row img {
    height: 300px;
  }
  .Archi-built
 {
    padding: 50px 0px
}
  .Archi-built-right img {
    height: 400px;
  }
  .Residence-right h3 {
    font-size: 28px;
    line-height:34px;
  }
  .Residence-right p {
    font-size: 15px;
    line-height:23px;
  }
  .content-column span {
    font-size: 15px;
    line-height:23px;
  }
  .essenceInfo p {
    font-size: 15px;
    margin: 0.5em 0 2em;
    line-height: 23px;
  }
  .ess-row p{
      font-size:17px;
  }
  .archinfo h2 {
    font-size: 28px;
  }
  .press-owl-nav {
    opacity: 0;
  }
  .ceo {
    padding: 70px 0 30px;
  }
  .ceoinfo p {
    font-size: 24px;
    letter-spacing: 0;
    line-height: 30px;
    margin-bottom: 1em;
  }
  .ceo-left {
    left: -42px;
    top: -42px;
  }
  .ceo-right {
    right: -42px;
    top: 60px;
  }
  .Archi-built-left h3 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 1em;
  }
  .Archi-built-left p {
    font-size: 15px;
    line-height: 23px;
  }
  .amenities img {
    width: auto;
    height: 20em;
  }
  .amenities {
    height: unset;
  }
  .amenitiesInfo p {
    padding: 0;
    font-size: 15px;
    line-height: 23px;
    position:relative;
  }
  .amenitiesInfo h3 {
    font-size: 28px;
  }
  .club-right {
    top: 50%;
  }
  .amenities-image {
    padding: 40px 0 0;
  }
  .amenities-home-container{
      width:100%
  }
  .amenities-image img
 {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    object-position: center top;
}
  .story-info h3 {
    margin-bottom: 0;
  }
  .residencesInfo span{
      font-size: 11px;
      letter-spacing: 1px;
      
  }
}


/* --------//-------- Residences page -------//---------  */

.residences-section {
  background: url(./assets/residencess-banner-1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position:fixed;
  top:0;
  z-index: -1;
}

.residencesInfo {
  position: absolute;
  top: 40%;
  text-align: center;
  margin: auto;
  width: 100%;
}
.residencesInfo span {
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}
.residencesInfo h1 {
  color: #ffffff;
  font-size: 72px;
  font-weight: 400;
  margin: 0;
  line-height: 65px;
  margin: 0.1em 0 0.4em;
}
.residencesInfo p {
  color: #ffffff;
  font-size: 17.97px;
  line-height: 28px;
  font-weight: 400;
  width: 100%;
  margin-top: 30px;
  width: 40%;
  margin: auto;
}
.resi-scroll{
 margin-top:100vh;
}
/* ---------------- purpose section  ----------------  */
.purpose-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.pur-left {
  position: absolute;
  bottom: -44px;
  left: -200px;
  height: 35em;
}
.pur-right {
  position: absolute;
  top: -25px;
  right: -160px;
  height: 35em;
}
.purposeInfo {
  margin: 7em auto;
  text-align: center;
}
.purposeInfo img {
  height: 28em;
}
.purposeInfo h2 {
  margin: 1em 0 0.7em;
  color: #966e41;
  font-weight: 300;
  font-size: 45px;
  letter-spacing: 0px;
  text-align: center;
  position:relative;
}
.purposeInfo p {
  width: 67%;
  margin: auto;
  line-height: 32px;
  font-size: 18px;
  position:relative;
}

/* ---------------- resi room  section  ----------------  */

.resi-owl-carousel .resi-item {
  position: relative;
  overflow: hidden;
}
.resi-owl-carousel .owl-dots
 {
    position: absolute;
    bottom: 7px;
    left: 36%;
    display:none;
}
.resi-owl-carousel .owl-dot.active span{
     background: #e2e3e480;
}
.resi-owl-carousel .owl-dot span {
  background: white;
}
.resi-carousel-content {
  position: relative;
  height: 100vh;
  overflow: hidden;
  text-align: center;
}

.resi-carousel-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.resi-caption {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.resi-owl-carousel {
  position: relative;
}

.resi-owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
  z-index: 10;
  pointer-events: none;
}

.resi-owl-carousel .resi-arrow {
  pointer-events: all;
  cursor: pointer;
}

.resi-arrow img {
  width: 40px;
  height: auto;
  display: block;
  background: transparent;
  border: none;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent !important;
  color: inherit;
}

/* ---------------- Living spaces  section  ----------------  */
.living-spaces {
  background: #f8f6f3;
  padding: 150px 0;
}
.livingInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}
.livingInfo span {
  font-weight: 400;
  font-size: 16px;
  line-height: 32.26px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.livingInfo h2 {
  font-weight: 300;
  font-size: 45px;
  color: var(--color-brown);
      margin-top: -13px;
}
.livingInfo p {
  margin-top: 1.7em;
  font-weight: 300;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 1px;
  text-align: center;
}

/* ---------------- comfort  section  ----------------  */
.comfort-section {
  padding: 150px 0 130px;
  background: url(./assets/comfort-bg.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.comfortInfo {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 60px;
  align-items: center;
}
.comfortInfo img {
  width: 100%;
  border-radius: 4px;
}
.comfortLeft span {
  font-weight: 400;
  font-size: 16px;
  line-height: 32.26px;
  letter-spacing: 1px;
  color: #e1dad2;
}

.comfortLeft h2 {
  font-weight: 300;
  font-size: 45px;
  line-height: 76px;
  color: #ffffff;
  margin-top:-6px;
  margin-bottom:35px;
}
.comfortLeft p {
  font-weight: 300;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 1px;
  color: #ffffff;
}

/* ---------------- resi carousel 2 section  ----------------  */

.resi-owl-carousel-2 .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 10px;
  z-index: 10;
  pointer-events: none;
}

.resi-owl-carousel-2 .owl-dots
 {
    position: absolute;
    bottom: 7px;
    left: 36%;
    display:none;
}
.resi-owl-carousel-2 .resi-arrow {
  pointer-events: all;
  cursor: pointer;
}

.resi-owl-carousel-2 .resi-arrow img {
  width: 40px;
  height: auto;
}

.resi-owl-carousel-2 .resi-carousel-content img{
    object-position:0 80%;
}

/* ---------------- residences media quer   ----------------  */
@media (max-width: 768px) {
  .residencesInfo h1 {
    font-size: 52px;
  }
  .residencesInfo p {
    width: 80%;
  }
  .purposeInfo h2 {
    font-size: 40px;
  }
  .purposeInfo p {
    width: 90%;
  }
  .livingInfo h2 {
    font-size: 40px;
  }
  .living-spaces {
    padding: 120px 0;
  }

  .livingInfo p {
    padding: 0 9%;
    margin-top: 1em;
  }
  .comfortInfo {
    grid-template-columns: 1fr;
  }
  .comfortLeft h2 {
    font-size: 40px;
  }
  .resi-arrow img{
      display:none;
  }
  
}

@media (max-width: 575px) {
    .residencesInfo{
        left: 50%;
    transform: translateX(-50%);
    width: 85%;
    z-index: 2;
    
    }
    .residences-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
background: rgb(0 0 0 / 19%);
  z-index: 1;
}
.pur-left
 {
    position: absolute;
    bottom: -94px;
    left: -314px;
    height: 35em;
}
  .residencesInfo h1 {
    font-size: 42px;
    margin-top: -10px;
    margin-bottom: 21px;
  }
  .residencesInfo p {
    width: 90%;
    font-size: 15px;
    line-height: 24px;
  }
  .residencesInfo span{
      font-size: 11px;
  }
  .purposeInfo {
    width: 90%;
    margin: 5em auto;
  }
  .purposeInfo img {
    height: 22em;
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
    position: relative;
  }
  .purposeInfo h2 {
    font-size: 28px;
    /*padding: 0 3%;*/
    position:relative;
    line-height: 34px;
  }
  .livingInfo span{
      font-size:14px;
  }
.purposeInfo br{
    display:none;
}
  .purposeInfo p {
    width: 100%;
    font-size: 15px;
    line-height: 23px;
  }
  .resi-carousel-content {
    height: 55vh;
  }
  
  .resi-owl-carousel-2 .resi-carousel-content img{
    object-position:unset;
}
  .living-spaces {
    padding: 100px 0;
  }
  .livingInfo h2 {
    font-size: 28px;
    line-height: 34px;
  }
  .livingInfo p {
    padding: 0 4%;
    font-size: 15px;
    line-height: 23px;

  }
    .livingInfo  br{
        display:none;
    }
  .comfortLeft h2 {
    font-size: 30px;
    line-height: 50px;
  }
  .comfortLeft p {
    font-size: 15px;
    line-height: 23px;
  }
  .resi-caption{
        font-size: 13px;
        padding-bottom:20px;
  }
  .comfortLeft span {
    font-size: 14px;
  }
  .comfort-section {
    padding: 70px 0;
  }
  .resi-owl-carousel .owl-dots
 {
    display:block;
}
.resi-owl-carousel-2 .owl-dots
 {
    display:block;
}
}


@media (max-width: 575px) {
    .Archi-built-right img {
        height: auto;
        object-fit: contain;
    }
}