/* Sticky CTA */
.enquiryWrapper {
  --width: 50px;
  position: fixed;
  isolation: isolate;
  right: 10px;
  top: 50%;
  transform: translateY(0%);
  z-index: 4;
  transition: all 300ms ease-in-out;
  /* animation: hithere 1s ease infinite; */
}

/* .enquiryWrapper.shift{
  bottom: 5rem;
  } */

/* @keyframes hithere {
  30% { transform: scale(1.2); }
  40%, 60% { transform: rotate(-10deg) scale(1.2); }
  50% { transform: rotate(10deg) scale(1.2); }
  70% { transform: rotate(0deg) scale(1.2); }
  100% { transform: scale(1); }
} */

.enquiryWrapper:hover {
  animation: none;
}

.enquiryWrapper .inner {
  display: flex;
  flex-direction: column;
  background-color: var(--light);
  border: 1px solid var(--primary-color);
  overflow: hidden;
  border-radius: 50px;
}

.enquiryWrapper a i {
  width: var(--width);
  height: var(--width);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  color: inherit;
}

.enquiryWrapper .inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 300ms ease-in-out;
}

.enquiryWrapper .inner a:not(:last-child) {
  border-bottom: 1px dashed rgb(0 0 0 / 25%);
}

.enquiryWrapper .inner a:hover {
  color: var(--secondary-light-color);
  background-color: var(--primary-color);
}
/* Sticky CTA */

/*header*/
.header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--primary-light-color) 150%
  );
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr auto;
  align-items: center;
  z-index: 99;
  transition: all 300ms ease-in-out;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 0 1rem;
  filter: drop-shadow(0 12px 6px rgba(0, 0, 0, 0.5));
}

.header.fixed {
  top: 10px;
  max-width: 900px;
  border-radius: 8px;
  grid-template-columns: auto 1fr auto;
}

.header .logo-20yrs {
  width: 60px;
}
.header.fixed .logo-20yrs {
  width: 50px;
}

.header .logo a {
  display: block;
  width: 120px;
  margin: 5px auto;
  transition: all 300ms ease-in-out;
  overflow: hidden;
}

.header.fixed .logo a {
  height: 40px;
}

.header.fixed .logo a img {
  width: 74px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.header.fixed .navigation {
  display: none;
}

.header .navigation .menu {
  gap: 15px;
  position: relative;
}

.header .menuLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 300ms ease-in-out;
  gap: 10px;
  color: #fff;
  font-family: var(--serif);
  font-optical-sizing: auto;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 10px 7px;
}

.header .menu li:hover > .menuLink {
  color: var(--secondary-color);
}

.header .menuLink i {
  font-size: 75%;
  color: var(--secondary-color);
}

.header .navigation .menu li {
  position: relative;
}

.header .navigation .menu li .dropdown {
  position: absolute;
  left: 0;
  width: 240px;
  padding-top: 2rem;
  transition: all 300ms ease-in-out;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.header .navigation .menu li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  transform: translateY(0);
}

.header .navigation .menu li .dropdown > ul {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  padding: 1rem;
}

.header .navigation .menu li .dropdown > ul a{
  padding: 10px 0;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
  display: block;
}

.header .navigation .menu li .dropdown > ul a:hover{
  color: var(--secondary-color);
}

.menuBtn {
  padding: 12px;
  height: 100%;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: inherit;
  border: 0;
  text-transform: uppercase;
}

.menuBtn span {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.menuBtn span:after,
.menuBtn span:before {
  content: "";
  display: block;
  height: 1px;
  background-image: var(--border-gradient);
  left: 0;
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.6, 0, 0, 1);
}

.header.fixed .menuBtn span,
.header.notfixed .menuBtn span {
  width: 24px;
  height: 24px;
}

.menuBtn.closeMenuBtn span {
  border-top: 0;
  transition: border-top 300ms linear;
}

.menuBtn.closeMenuBtn span::before {
  -webkit-transform: skewY(45deg) translate(1px, -8px);
  transform: skewY(45deg) translate(1px, -8px);
  background-color: var(--primary-color);
  transform-origin: left;
}

.menuBtn.closeMenuBtn span::after {
  -webkit-transform: skewY(-45deg) translate(0, -16px);
  transform: skewY(-45deg) translate(0, -16px);
  background-color: var(--primary-color);
  transform-origin: right;
}

.mbMenuContainer {
  position: fixed;
  inset: 0;
  background-color: rgb(0 0 0 / 50%);
  padding-top: calc(var(--header-height) - 10px);
  z-index: 98;
  display: none;
}

.header.fixed + .mbMenuContainer{
  padding-top: 60px;
}

.mbMenuContainer .mbMenu {
  background-color: var(--light);
  border-radius: 10px;
  position: relative;
  height: 80%;
  width: 100%;
  padding: 0 5rem;
  overflow: hidden;
  overflow-y: auto;
  transition: all .8s linear 100ms;
  transform: translateY(-200%);
}

.header.fixed + .mbMenuContainer .container-lg{
  /* max-width: 900px; */
}

.mbMenuContainer.active .mbMenu {
  transform: translateY(0);
}

.mbMenu .navigation,
.mbMenuContainer .side-menu {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.mbMenu .navigation {
  border-right: 1px solid rgb(0 0 0 / 30%);
}

.mbMenuContainer .mbMenu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mbMenuContainer .mbMenu ul li a {
  font-size: 2rem;
  font-family: var(--serif);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  color: var(--body-color);
  transition: all 300ms ease-in-out;
}

.mbMenuContainer .mbMenu ul li:hover>a,
.mbMenuContainer .mbMenu ul li a:focus {
  color: var(--primary-light-color);
}

.mbMenuContainer .mbMenu ul li a .btn-arrow {
  width: 20px;
  margin-left: 20px;
  opacity: 0;
  transition: all .4s ease-in;
  visibility: hidden;
}

.mbMenuContainer .mbMenu li.hasChild.active a .btn-arrow,
.mbMenuContainer .mbMenu ul li:hover>a .btn-arrow {
  opacity: 1;
  visibility: visible;
}

.mbMenuContainer .mbMenu li.hasChild.active a .btn-arrow {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbMenuContainer .mbMenu .dropdown {
  display: none;
  padding-bottom: 10px;
}
.mbMenuContainer .mbMenu .dropdown li {
  padding: 5px 0 5px 20px;
  position: relative;
}
.mbMenuContainer .mbMenu .dropdown li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 0.5px);
  width: 20px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.15);
  transition: all 300ms ease-in-out;
}
.mbMenuContainer .mbMenu .dropdown li a {
  font-size: inherit;
  letter-spacing: 1px;
  padding-left: 15px;
  position: relative;
}
.mbMenuContainer .mbMenu .dropdown li a::before {
  content: "";
  position: absolute;
  left: -5px;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(0, 0, 0, 0.3);
  transition: all 300ms ease-in-out;
}
.mbMenuContainer .mbMenu .dropdown li:hover > a::before {
  background-color: var(--primary-color);
}

.mbMenuContainer .side-menu {
  padding-left: 3rem;
}

.mbMenuContainer .side-menu p {
  font-size: .875rem;
  color: var(--primary-light-color);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mbMenuContainer .side-menu .nav-address a {
  line-height: 1.5;
  display: table;
  margin-bottom: 7px;
}

.side-menu .headerSocial {
  margin-top: 2rem;
}
/*header*/

/* Hero Banner */
.banner {
  height: 100vh;
  position: relative;
  background-color: var(--body-color);
  overflow: hidden;
  z-index: 1;
}

.banner::before {
}

.banner .carousel-item::before,
.project-banner .carousel-item::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(0 0 0 / 25%);
  background: linear-gradient(
      0deg,
      rgba(21, 128, 196, 0.1),
      rgba(21, 128, 196, 0.1)
    ),
    linear-gradient(
      238.89deg,
      rgba(0, 0, 0, 0.044) 27.93%,
      rgba(0, 0, 0, 0) 27.94%,
      rgba(0, 0, 0, 0.6) 92.55%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.heroText {
  position: absolute;
  color: #fff;
  bottom: 4%;
  z-index: 2;
}

.heroText h4 {
  line-height: 1.5;
}

.scrollDown {
  margin: 2rem auto 0;
  width: 40px;
  height: 40px;
  line-height: 1.16;
  color: #fff;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.scrollDown svg {
  -webkit-animation: bounce 0.75s ease-in-out infinite alternate;
  animation: bounce 0.75s ease-in-out infinite alternate;
  width: 1rem;
}

@keyframes bounce {
  0% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(2px);
  }
}
/* Hero Banner */

/* hm overview */
.section-overview:before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(var(--light) 90%, transparent); */
  z-index: -1;
}

.statsBox {
  position: relative;
}

.statsBox:not(:last-child)::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 1px;
  background-image: linear-gradient(
    transparent,
    var(--primary-light-color),
    transparent
  );
}
/* hm overview */

/* Comparison Graph */
.comparisonBox .inner {
  padding: 1.5rem;
  border-width: 1px !important;
}

.comparison-graph {
  min-height: 350px;
}

.comparison-graph .column tbody {
  min-height: 100%;
  text-align: center;
}

.charts-css.area,
.charts-css.column,
.charts-css.line {
  --labels-size: 2.5rem;
}

.comparison-graph .column th {
  font-size: 13px !important;
  font-weight: 500;
  text-transform: uppercase;
}

.comparison-graph .column td {
  background-image: linear-gradient(45deg, #c4d9d0, #e7f2ee) !important;
}

.aos-animate .comparison-graph .column td {
  transform-origin: bottom;
  animation: revealing-bars 1s ease-in-out 300ms;
}

@keyframes revealing-bars {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

.comparison-graph .column td.highlighted {
  color: #fff;
  background-image: var(--secondary-gradient) !important;
}

.charts-css .data {
  margin-top: 10px;
  font-weight: 600;
}
/* Comparison Graph */

/* Investment Facts */
.investment-facts .inner {
  max-width: 350px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.statsBox.swiper-slide {
  height: auto;
}

/* .statsBox.swiper-slide.swiper-slide-prev {
  opacity: 0;
  z-index: 1;
}

.statsBox.swiper-slide.swiper-slide-active {
  opacity: 1 !important;
  z-index: 2;
} */

.factBox .factBox-inner {
  height: 100%;
  padding: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.factBox .factBox-inner::before,
.factBox .factBox-inner::after {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: -1;
}

.factBox .factBox-inner::before {
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: var(--border-gradient);
}

.factBox .factBox-inner::after {
  background: url(../images/logo-icon.svg) center / 90% no-repeat;
  opacity: 0.1;
}

.factBox .factBox-inner .fw-bold {
  letter-spacing: 2px;
}
/* Investment Facts */

/* Steps */
.stepsContainer {
  margin-top: 5rem;
}

.step-card {
  position: relative;
}

.step-card:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 5rem;
  height: 30px;
  transform: translate(-50%, -50%);
  background: url(../images/props/right-arrow.svg) center / contain no-repeat;
}

.step-card .inner {
  padding: 1rem;
  aspect-ratio: 1/1;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.step-card .inner::before,
.step-card .inner::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.step-card .inner::before {
  inset: 0;
  background: linear-gradient(to bottom right, #eff0f3, #ffffff);
  box-shadow: 3px 3px 3px #e8e6e6, -3px -3px 3px #ffffff;
  /* clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0 80%, 0 20%); */
  border-radius: 50%;
}

.step-card .step {
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 25%;
  transform: translate(-50%, -10%);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: #fff;
}

.step-card .inner i {
  font-size: 1.5rem;
  color: var(--primary-light-color);
  margin-bottom: 1rem;
}

.step-card .inner h6 {
  text-transform: uppercase;
  font-family: var(--serif);
  font-weight: 600;
}
/* Steps */

/* Awards */
.date {
  display: table;
  margin-bottom: 1rem;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-light-color);
}

.award-slide p {
  font-size: 0.875rem;
}
/* Awards */

/* Property Card */
.property-card {
  font-size: 0.875rem;
  display: grid;
  grid-template-rows: 1fr auto auto;
}

.property-card .property-image {
  position: relative;
  z-index: 1;
}

.property-card .property-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.property-card .card-img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
/* Property Card */
/* RERA */
.reraBox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
  padding: 5px 12px;
  background-color: #fff;
  flex-direction: row-reverse;
}

.reraBox .qr_img {
  max-width: 50px;
  flex: 0 0 50px;
}

.reraBox .rera_num {
  max-width: calc(100% - 60px);
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(100% - 60px);
}

.reraBox .rera_num small {
  font-weight: 700;
  line-height: 1;
  white-space: normal;
  word-break: break-all;
}
/* RERA */

/* Leadership */
.teamBox .inner {
  height: 100%;
  transition: all 300ms ease-in-out;
}
.teamBox .inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 10%);
  background-color: var(--light);
  color: var(--body-color);
}
.teamBox .inner .leader-info {
  padding: 1rem;
  transition: all 300ms ease-in-out;
}

.leader-text .inner{
  max-width: 950px;
  width: 100%;
  padding: var(--primary-padding);
}

@media (max-width: 1400px) {
  .leader-text .inner{
    padding: calc(var(--primary-padding) - 2rem);
  }
  .leader-text .scroller{
    height: 320px;
    padding-right: 1rem;
  }
}
/* Leadership */

/* Testimonials */
.videoBox-iframe {
  aspect-ratio: 3/2;
  padding: 3px;
  background: var(--border-gradient);
}

.videoBox-thumbnails .inner {
  height: 495px;
}

.videoBoxBtn {
  display: block;
  max-width: 450px;
  width: 90%;
  padding: 0;
  border: 0;
  margin-left: auto;
  margin-right: 0;
  background-color: #fff;
  text-align: left;
  border: 3px solid transparent;
  border-image-slice: 1;
  opacity: 0.5;
  transition: all 300ms ease-in-out;
  position: relative;
}

.videoBoxBtn:hover,
.videoBoxBtn.active {
  opacity: 1;
}

.videoBoxBtn.active {
  box-shadow: 0 5px 20px rgb(0 0 0 / 10%);
  border-image-source: var(--border-gradient);
}

.videoBoxBtn::before {
  content: "";
  position: absolute;
  width: 100%;
  background: var(--border-gradient);
  height: 3px;
  top: 50%;
  left: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.videoBoxBtn.active::before {
  opacity: 1;
}

.videoBoxBtn img {
  aspect-ratio: 3/2;
  object-fit: cover;
}

.videoBox.swiper-slide {
  height: auto;
}

.videoBox .inner {
  height: 100%;
  display: grid;
  grid-template-rows: 230px 1fr;
  gap: 10px;
}

.videoBox .box-title {
  padding: 1.2rem;
  background-color: #fff;
}
/* Testimonials */

/* Investor Speak */
.section-speak::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/props/up_chart.svg) 0 5rem / 40% no-repeat;
  opacity: 0.1;
  z-index: -1;
}
.carousel.carousel-fade .carousel-item {
  display: block;
  opacity: 0;
  transition: opacity ease-out 0.7s;
}

.carousel.carousel-fade .carousel-item.active {
  opacity: 1 !important;
}

#testimonials button[class^="carousel-control"] {
  top: 30%;
}

.parent-speak-slide {
  text-align: center;
  /* background-color: var(--secondary-color-dark); */
  transition: all 1s linear;
}

.parent-speak-slide .inner {
  padding: 0 2rem;
  max-width: 800px;
  width: 80%;
  margin: 0 auto;
}

.parent-speak-box {
  margin-bottom: 2rem;
  height: 120px;
}

.parent-speak-slide .inner p:last-child {
  margin-bottom: 0;
}

.parent-speak-info {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.testim-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.parent-speak-info b {
  border-right: 1px solid rgb(0 0 0 / 25%);
  padding-right: 10px;
  line-height: 1;
  color: var(--primary-light-color);
}
/* Investor Speak */

/*Footer*/
.footer-area {
  font-size: 0.875rem;
}

.footer-area,
.footer-area a {
  color: rgb(255 255 255 / 50%);
}

.footer-area a:hover {
  color: var(--secondary-color);
}

.footer-area ul li + li {
  margin-top: 10px;
}

.footer-contact ul li {
  gap: 0.875rem;
}

.footer-contact .btn {
  border-color: rgb(255 255 255 / 15%);
}

.footer-contact svg {
  width: 1rem;
}

.button-top {
  right: 10px;
  bottom: 10px;
  z-index: 98;
}
/*Footer*/

/* Inside Pages */
.inside-banner {
  height: 40vh;
  min-height: 300px;
  position: relative;
  background-color: var(--body-color);
  overflow: hidden;
  z-index: 1;
}

.project-banner {
  height: calc(100vh - 49px);
}

.pageHeader li a {
  padding-right: 20px;
  display: block;
  color: #fff;
  font-size: 13px;
  transition: all 300ms;
}
.pageHeader li a:hover {
  color: var(--secondary-color);
}

.pageHeader ol li {
  margin-left: 5px;
}
.pageHeader ol li a {
  background-color: rgb(255 255 255 / 10%);
  padding: 7px 15px;
  border-radius: 40px;
}
.pageHeader ol li a:hover {
  background-color: var(--secondary-light-color);
  color: var(--primary-color);
}

.breadcrumb {
  margin-bottom: 0;
  background-color: transparent;
  border-radius: 0;
  padding: 10px 0;
}
.breadcrumb li {
  font-size: 12px;
  font-weight: 400;
}

.breadcrumb li.active,
.breadcrumb li a:hover {
  color: var(--secondary-color);
}

.project-logo img {
  max-width: 360px;
  width: 90%;
}

.project-logo .project-address {
  padding-top: 10px;
  width: 100%;
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  border-top: 1px dashed rgb(0 0 0 / 15%);
}

.about-project-box .scroller {
  height: 200px;
}

/* features */
.featBox .inner {
  height: 100%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  margin-bottom: 0;
  background-color: color-mix(
    in srgb,
    var(--secondary-color),
    #fff 95%
  ) !important;
  transition: all 300ms ease-in-out;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  position: relative;
  z-index: 1;
}

.featBox .inner::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed;
  border-image-slice: 1;
  border-image-source: var(--border-gradient);
  transition: all 300ms ease-in-out;
  z-index: -1;
}

.featBox .inner:hover::before {
  background-color: #fff;
}

.featBox .inner .img-fluid {
  max-width: 55px;
  flex: 0 0 55px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: all 300ms ease-in-out;
}

.featBox .inner .img-fluid img {
  /* filter: invert(1); */
  width: 100%;
  margin: auto;
}

.featBox .inner p.text-uppercase {
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 8px;
  text-align: center;
}
/* features */

/* Floor plan */
.fp-slide.swiper-slide{
  height: auto;
}
.fp-slide .inner{
  height: 100%;
  display: block;
  background-color: #fff;
  padding: 1rem;
}
.fp-slide .img-fluid {
  overflow: hidden;
  margin-bottom: 1rem;
}

.fp-slide .img-fluid img {
  height: 100%;
  object-fit: cover;
  -webkit-filter: blur(8px);
  filter: blur(8px);
}

.plansDetails ul li {
  margin: 5px 0;
  display: flex;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.plansDetails ul li strong {
  flex: 0 0 40%;
  max-width: 40%;
  display: block;
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid rgb(255 255 255 / 10%);
}
.plansDetails ul li span {
  flex: 0 0 40%;
  max-width: 40%;
}
/* Floor plan */

/* Gallery */
.gal-slide {
  width: 70%;
  cursor: pointer;
}

.gal-slide .inner{
  display: block;
  height: 100%;
  position: relative;
}

.gal-slide .inner::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent, var(--primary-color));
}

.gal-slide img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}

.gallery-title {
  position: absolute;
  bottom: 0;
  left: 0;
  font-weight: 300;
  font-size: 1.5rem;
  font-family: var(--serif);
  line-height: 1.2;
  width: 80%;
  padding: 0 1rem;
  letter-spacing: 10px;
  color: rgb(255 255 255 / 100%);
  opacity: 0;
  transition: opacity 300ms linear, all 300ms ease-in-out 200ms;
  z-index: 1;
}

.swiper-slide.gal-slide.swiper-slide-active .gallery-title {
  letter-spacing: 1px;
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  right: 5px;
  font-size: 10px;
  color: #71ac86;
  letter-spacing: 1px;
  text-transform: uppercase;
  writing-mode: sideways-lr;
  pointer-events: none;
  opacity: 0;
}

.swiper-slide.gal-slide.swiper-slide-active .gallery-caption {
  opacity: 1;
}
/* Gallery */

/* Location map */
.locationAdvantages .inner{
  padding: 1.5rem;
  background-color: #fff;
}

.connectivity-title {
  text-transform: uppercase;
  letter-spacing: 10px;
  font-weight: 200;
  padding-bottom: 10px;
  margin-bottom: 1rem;
  border-width: 0 0 1px 0 !important;
}

.locationAdvantages ul {
  height: 280px;
}
.locationAdvantages ul li {
  display: flex;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed rgb(0 0 0 / 15%);
}
.locationAdvantages ul li p {
  margin-bottom: 0;
}
.locationAdvantages ul li h6 {
  font-size: 1.25rem;
  margin-bottom: 0;
  margin-right: 1rem;
  font-weight: 300;
  background-image: var(--secondary-gradient);
}

.locationAdvantages ul li h6 span{
  font-size: 1rem;
}

.iframBox{
  padding: 10px;
  background-color: #fff;
}

.iframBox iframe {
  width: 100%;
  min-height: 300px;
  height: 100%;
}
/* Location map */

/* Random section */
.section-random{
  aspect-ratio: 2/1;
}
/* Random section */

/* EMI Calculator */
/* .emiFieldContainer:first-child .inner {
  padding: 2rem;
  background-color: var(--primary-light-color);
} */

.emiresult .result {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.emiresult i {
  opacity: 0.4;
}
canvas {
  font-weight: 600;
  font-size: 16px;
}
/* EMI Calculator */

/* Project Sticky Form */
.project-sticky-form{
  position: fixed;
  max-width: 1024px;
  width: 96%;
  left: 50%;
  bottom: -100px;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 0.125rem 1.25rem rgb(0 0 0 / 15%);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: all 300ms ease-in-out;
}

.project-sticky-form.show{
  opacity: 1;
  bottom: 10px;
  pointer-events: visible;
}
/* Project Sticky Form */

/* Blogs */
.articleBox .inner{
  height: 100%;
  background-color: #fff;
  box-shadow: 0 5px 10px rgb(0 0 0 / 9%);
  overflow: hidden;
}
.articleBox .inner, .articleBox .inner .shortDetails{
  transition: all 300ms ease-in-out;
}
.articleBox .inner:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0 0 0 / 10%);
}
.articleBox .inner .img-fluid{
  position: relative;
}

.articleBox .inner .img-fluid img{
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.articleBox .inner .shortDetails{
	padding:30px 20px;
}
.articleBox .inner .shortDetails h5{
  font-size: 1.125rem;
}
.articleBox .inner .shortDetails h5 a{
	color:var(--body-color);
  transition: all 300ms ease-in-out;
}
.articleBox .inner .shortDetails h5 a:hover{
	color:var(--secondary-color);
}
.articleBox .inner .shortDetails ul{
	display:flex;
	flex-wrap:wrap;
	margin-bottom:10px;
}
.articleBox .inner .shortDetails ul li{
	padding:0 10px;
  border-left: 1px solid;
  line-height: 1;
	font-weight:700;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--secondary-color);
}
.articleBox .inner .shortDetails ul li:first-child{
  padding-left: 0;
  border-left: none;
}
.articleBox .inner .shortDetails ul li:nth-child(2){
  padding-right: 0;
  color: rgb(0 0 0 / 45%);
}
.articleBox .inner .shortDetails ul li a{
	color:var(--corp-color);
}
.articleBox .inner .shortDetails ul li a:hover{
	color:#191919;
}
.articleBox .inner .shortDetails p{
	margin-bottom:0;
  line-height: 1.2;
  font-size: 15px;
}
/* Blogs */
/* Blogs Page */
.blog-content-body img {
    margin-bottom: 1rem;
    box-shadow: 0 .125rem .25rem rgb(0,0,0,.075)
}

.blog-content-body :is(h1,h2,h3,h4,h5,h6) {
    font-weight: 300;
    color: var(--primary-color);
    font-family: var(--serif);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content-body h1 {
    font-size: 2.25rem
}

.blog-content-body h2 {
    font-size: 1.625rem
}

.blog-content-body h3 {
    font-size: 1.25rem
}

.blog-content-body h4 {
    font-size: 1.125rem
}

.blog-content-body h5,.blog-content-body h6 {
    font-size: 1rem
}

.blog-content-body :is(ul,ol) {
    padding-left: 1.5rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.blog-content-body :is(ul,ol) li:not(:last-child) {
  margin-bottom: 8px
}

.blog-content-body :is(ul,ol) li::marker {
  color: var(--primary-color)
}

.blog-content-body img {
    margin: 1rem 0;
}

.inside-blogs-aside .inner {
  position: sticky;
  top: calc(var(--header-height) - 1rem);
}

.inside-blogs-aside .inner .blog-asideBox{
  padding: 1.5rem;
  background-color: var(--secondary-color);
}

.inside-blogs-aside .inner .blog-asideBox + .blog-asideBox{
  margin-top: 1.5rem;
}

.inside-blogs-aside .recentBlogs-box:not(:last-child) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.inside-blogs-aside .recentBlogs-box a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  line-height: 1.2;
  font-size: 0.875rem;
}

.inside-blogs-aside .recentBlogs-box a:hover {
  text-decoration: 1px underline;
}

.inside-blogs-aside a .img-fluid {
  aspect-ratio: 3/2;
  max-width: 70px;
  flex: 0 0 70px;
  overflow: hidden;
}
.inside-blogs-aside a .img-fluid img {
  width: 100%;
}
/* Blogs Page */
/* Contact page */
.contact-card .inner{
  padding: 2rem;
  background-color: #fff;
}

.contact-card .inner ul:not(.d-flex) li + li{
  margin-top: 10px;
}
/* Contact page */
/* Inside Pages */
