@charset "UTF-8";
:root {
  --primary: #F60000;
  --secondry: #231F20;
  --fontPrimary: "Lato";
  --fontSecondry: "Krona_One";
  --title-para: clamp(0.9375rem, 0.2418rem + 1.4493vw, 1.4375rem);
  --step-0: clamp(1.5rem, 1.0588rem + 2.3529vw, 3rem);
  --step--1: clamp(1.2rem, 0.9118rem + 1.5vw, 2.4rem);
  --step--2: clamp(1.0417rem, 0.7833rem + 1.3778vw, 1.92rem);
}

/* font load Avenir */
@font-face {
  font-family: "Avenir";
  src: url("../font/avenir/AvenirNextLTW01-UltraLight.woff2") format("woff2"), url("../font/avenir/AvenirNextLTW01-UltraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../font/avenir/AvenirNextLTW01-UltraLight.woff2") format("woff2"), url("../font/avenir/AvenirNextLTW01-UltraLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../font/avenir/AvenirLTStd-Black.woff2") format("woff2"), url("../font/avenir/AvenirLTStd-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../font/avenir/AvenirLTStd-Book.woff2") format("woff2"), url("../font/avenir/AvenirLTStd-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../font/avenir/AvenirLTStd-Roman.woff2") format("woff2"), url("../font/avenir/AvenirLTStd-Roman.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../font/avenir/AvenirLTStd-Black.woff2") format("woff2"), url("../font/avenir/AvenirLTStd-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* font load Crafter */
@font-face {
  font-family: "Crafter";
  src: url("../font/crafter/Crafter-Regular.woff2") format("woff2"), url("../font/crafter/Crafter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Crafter Rough";
  src: url("../font/crafter/Crafter-Rough.woff2") format("woff2"), url("../font/crafter/Crafter-Rough.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* font load Lato */
@font-face {
  font-family: "Lato";
  src: url("../font/Lato/Lato-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../font/Lato/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../font/Lato/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../font/Lato/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../font/Lato/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* font load Krona One */
@font-face {
  font-family: "Krona_One";
  src: url("../font/Krona_One/KronaOne-Regular.woff2") format("woff2"), url("../font/Krona_One/KronaOne-Regular.woff") format("woff"), url("../font/Krona_One/KronaOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  font-family: var(--fontPrimary);
  text-decoration: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Ensure inline highlights in headings only change color, not typography */
h1 span, h1 strong,
h2 span, h2 strong,
h3 span, h3 strong,
h4 span, h4 strong,
h5 span, h5 strong,
h6 span, h6 strong {
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

/* Banner area */
.Makoli-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Header fade slider */
.header-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.header-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.header-slider .slide.is-active {
  opacity: 1;
}

/* Right bullets */
/* Right bullets (moved outside .header-slider to escape stacking context) */
#Header-area > .slider-bullets {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
  pointer-events: auto;
}

#Header-area .slider-bullets .bullet {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.25s ease;
}

#Header-area .slider-bullets .bullet.is-active {
  height: 48px;
  background: #fff;
}

/* Ensure header content is above background */
#Header-area > *:not(.header-slider):not(.slider-bullets) {
  position: relative;
  z-index: 1;
}

.makoli-main-banner-area {
  height: 100%;
}

.header-navbar {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-decoration: none;
  list-style: none;
  border-radius: 60px;
  text-align: center;
}

.header-navbar > ul > li > a {
  font-size: 18px;
}

.header-navbar .nav-link {
  min-width: 10ch;
  display: inline-block;
  text-transform: capitalize;
}

.header-navbar > li:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.primary-btn {
  box-shadow: none;
  border: none;
  outline: none;
  display: inline-flex;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  background: linear-gradient(180deg, #F60000 0%, #900000 100%);
  box-shadow: 0 0 34px 0 rgba(255, 255, 255, 0.09) inset;
  padding: 12px 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  min-width: 140px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.primary-btn:hover {
  color: #fff;
}

.banner-area {
  grid-template-columns: repeat(24, 1fr);
  flex: 1;
  row-gap: 10px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  max-height: -moz-max-content;
  max-height: max-content;
  overflow: hidden;
}
.banner-area h1 {
  font-size: clamp(2.25rem, -2.0109rem + 8.8768vw, 5.3125rem);
  grid-column: span 18;
  font-weight: 700;
  color: #fff;
  font-family: var(--fontSecondry);
}
.banner-area h1 span {
  color: #EEAF28;
}
.banner-area .main-title-1 {
  grid-column: span 24;
}
.banner-area .bottom-text {
  grid-column: span 16;
}
.banner-area .bottom-text p {
  max-width: 55ch;
  color: #FFF;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 40px */
  letter-spacing: 0.5px;
  padding-left: 10px;
}
@media (max-width: 991px) {
  .banner-area {
    grid-template-columns: 1fr;
    padding-inline: 0px;
  }
}

.main-title-1 text {
  font-family: "Krona_One";
  font-size: 109px;
  fill: #fff;
}

.main-title-1 {
  grid-column: span 9;
}

.main-title-2 {
  grid-column: span 14;
  width: 100%;
}

.banner-paragraph {
  grid-column: span 15;
}

.blank-area {
  grid-column: span 8;
  display: flex;
  width: 100%;
}
.blank-area .arrow-image {
  display: block;
  margin-left: auto;
  height: 85px;
  position: relative;
  top: 14px;
}

.banner-paragraph {
  height: -moz-max-content;
  height: max-content;
  color: #fff;
  align-items: flex-start;
  font-size: 19px;
  font-weight: 200;
  line-height: 170%;
}

.paragraph-arrow {
  width: 70px;
}

.banner-bottom-area {
  height: -moz-max-content;
  height: max-content;
  grid-template-columns: repeat(3, 1fr);
  color: #fff;
  padding-bottom: 30px;
}

.banner-bottom-area > .statistic-card > h1 {
  font-family: var(--fontSecondry);
  font-size: var(--step--1);
}

.banner-bottom-area > .statistic-card > p {
  font-weight: 200;
}

/* navbar area */
.navbar {
  padding: 10px;
}

.nav-center {
  background: transparent;
  /* Light gray background */
  padding: 0px;
  border-radius: 0px;
}

#navbarContent .navbar-nav {
  background: transparent;
  border: none;
  -webkit-backdrop-filter: blur(34px);
          backdrop-filter: blur(34px);
  text-decoration: none;
  list-style: none;
  border-radius: 60px;
  text-align: center;
}

#navbarContent .navbar-nav .nav-item {
  text-align: center;
  font-weight: 400;
  position: relative;
}

#navbarContent .navbar-nav .nav-item:first-child {
  border-left: none;
}

#navbarContent .navbar-nav .nav-item {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

#main-banner {
  background: url("bg.jpg") no-repeat center center;
  background-size: cover;
}

#navbar-container {
  background: transparent;
}
#navbar-container .logo-image {
  max-width: 190px;
}
#navbar-container > .container {
  background: #fff;
  padding: 20px;
  border-radius: 22px;
}
#navbar-container.fixed-navbar > .container {
  padding: 0px;
  border-radius: 0px;
}
#navbar-container .primary-btn {
  min-width: 190px;
}

.navbar-toggler-icon img {
  filter: invert(1);
  width: 25px;
}

.navbar-toggler {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:hover {
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.fixed-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white;
}

.fixed-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000 !important;
  background: white !important;
  transition: all 0.3s ease-in-out;
}

/* Make navbar text black when fixed */
.navbar-brand,
.nav-link {
  color: black !important;
  text-transform: uppercase;
}

.navbar-brand {
  margin-right: 0px !important;
}

/* Change toggler icon to black when fixed */
.fixed-navbar .navbar-toggler-icon img {
  filter: invert(1);
  /* Resets filter (back to black) */
}

.invert-color {
  filter: invert(1);
}

.primary-btn-arrow {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--bs-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  bottom: 20px;
}

li.nav-item:hover::after,
li.nav-item.active::after {
  right: 40px;
}

li.nav-item:hover .nav-link,
li.nav-item.active .nav-link {
  color: var(--primary) !important;
}

li.nav-item:after {
  content: "";
  left: 40px;
  position: absolute;
  bottom: 0;
  height: 1px;
  background: var(--primary);
  right: 100%;
  transition: all 0.3s ease-in-out;
}

.logo-image {
  display: none;
}

#navbar-container:not(.fixed-navbar) .logo-light {
  display: block;
}

#navbar-container.fixed-navbar .logo-dark {
  display: block;
}

#navbar-container.fixed-navbar .navbar-nav {
  background: transparent;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

/* About area */
#about-area {
  padding-top: 80px;
  padding-bottom: 80px;
}
#about-area .about-content h5 {
  color: var(--Gray, #8D8D8D);
  leading-trim: both;
  text-edge: cap;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: 1.26px;
  text-transform: uppercase;
}
#about-area .about-content-text {
  color: #141414;
  font-size: var(--title-para);
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.46px;
  opacity: 0.6;
}
#about-area h1 {
  font-family: var(--fontSecondry);
  font-size: var(--step-0);
  font-weight: normal;
  padding-bottom: 25px;
}
#about-area h1 strong {
  font-weight: inherit;
  color: var(--primary);
}
#about-area p {
  font-size: 22px;
  font-weight: 300;
  line-height: 140%;
  color: rgb(114, 114, 114);
}
#about-area .about-features {
  margin-top: 20px;
  /* Large screens: 3 columns — add vertical dividers between cols and
     remove bottom border from the last row */
}
#about-area .about-features .feature {
  padding: 30px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
#about-area .about-features .feature .feature-icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 12px;
}
#about-area .about-features .feature h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 19px;
  line-height: 140%;
  color: rgb(35, 31, 32);
  margin-bottom: 6px;
}
#about-area .about-features .feature p {
  font-size: 16px;
  line-height: 150%;
  color: rgb(114, 114, 114);
  margin-bottom: 0;
}
@media (min-width: 576px) {
  #about-area .about-features .feature:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
  }
  #about-area .about-features .feature:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
@media (min-width: 992px) {
  #about-area .about-features .feature {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
  }
  #about-area .about-features .feature:nth-child(3n) {
    border-right: none;
  }
  #about-area .about-features .feature:nth-last-child(-n+3) {
    border-bottom: none;
  }
}

/* feature area */
#categories {
  background: #FFFAFA;
  padding: 100px 0;
}
#categories .section-label {
  color: var(--Gray, #8D8D8D);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 1.26px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 0px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(34px);
          backdrop-filter: blur(34px);
  border-radius: 12px;
  margin-bottom: 15px;
}
#categories .section-title {
  font-family: var(--fontSecondry);
  font-size: var(--step-0);
  line-height: 130%;
  margin: 0;
}
#categories .section-title span {
  color: var(--primary);
}
@media (max-width: 991px) {
  #categories .section-title {
    margin-bottom: 10px;
  }
}
#categories .section-intro {
  color: #141414;
  opacity: 0.6;
  font-size: 23px;
  line-height: 160%;
  max-width: 65ch;
}
#categories .category-cards {
  margin-top: 20px;
}
#categories .category-card {
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  height: 100%;
  box-shadow: 0 4px 50px rgba(255, 221, 221, 0.3);
  transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
#categories .category-card .icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 70px;
  background: #FFF9F9;
  display: flex;
  align-items: center;
  justify-content: center;
}
#categories .category-card .icon-wrap img {
  width: 38px;
  height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
}
#categories .category-card h5 {
  margin-top: 46px;
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 700;
  color: #141414;
}
#categories .category-card p {
  margin: 0;
  color: #727272;
  font-size: 16px;
  line-height: 150%;
}
#categories .category-card:hover, #categories .category-card:focus-within {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 20px 30px rgba(246, 0, 0, 0.25);
}
#categories .category-card:hover .icon-wrap, #categories .category-card:focus-within .icon-wrap {
  background: #fff;
  width: 80px;
  height: 80px;
  border-radius: 54px;
}
#categories .category-card:hover h5, #categories .category-card:focus-within h5 {
  color: #FEFEFE;
}
#categories .category-card:hover p, #categories .category-card:focus-within p {
  color: #E0E0E0;
}
@media (max-width: 991px) {
  #categories {
    padding: 40px 0;
  }
  #categories .section-intro {
    font-size: 18px;
  }
}

#feature-area {
  padding-top: 120px;
  padding-bottom: 80px;
  background: #FAFAFA;
}
#feature-area .feature-title {
  font-family: var(--fontSecondry);
  font-size: var(--step-0);
  line-height: 140%;
  padding-bottom: 60px;
}
#feature-area .feature-title strong {
  color: var(--primary);
  font-weight: inherit;
}
#feature-area .feature-card {
  row-gap: 200px;
  padding: 50px;
  border-right: 1px solid #FAFAFA;
  background: #fff;
}
#feature-area .feature-card:last-child {
  border-right: none;
}
#feature-area .feature-card h5 {
  padding-top: 5px;
  font-weight: 400;
  font-size: 19px;
  line-height: 140%;
  letter-spacing: 0.15rem;
}
#feature-area .feature-card .statistic-data h2 {
  font-family: var(--fontSecondry);
  font-weight: normal;
  font-size: var(--step--1);
}
#feature-area .feature-card .statistic-data p {
  color: rgb(114, 114, 114);
  font-weight: normal;
}
#feature-area .feature-card > div {
  align-items: center;
}

/* How it works */
#how-it-works {
  background: #FFF6F6;
  padding: 90px 0 150px 0;
}
#how-it-works .hiw-label {
  color: #8D8D8D;
  font-size: 14px;
  letter-spacing: 1.26px;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 0px;
  margin-bottom: 10px;
}
#how-it-works .hiw-title {
  font-family: var(--fontSecondry);
  font-size: var(--step-0);
  line-height: 120%;
  margin: 0;
}
#how-it-works .hiw-title span {
  color: var(--primary);
}
#how-it-works .hiw-intro {
  color: #141414;
  opacity: 0.6;
  font-size: 22px;
  line-height: 160%;
  max-width: 60ch;
  font-weight: 400;
}
#how-it-works .hiw-cards {
  margin-top: 20px;
  max-width: 1036px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
#how-it-works .hiw-card {
  height: 100%;
  padding: 30px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 50px rgba(255, 160, 160, 0.25);
  border: 1px solid rgba(246, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#how-it-works .hiw-card .hiw-icon-wrap {
  width: 96px;
  height: 96px;
  border-radius: 96px;
  background: #FFECEC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
#how-it-works .hiw-card .hiw-icon {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
#how-it-works .hiw-card .hiw-card-copy h4 {
  font-size: 22px;
  line-height: 130%;
  margin: 0 0 6px 0;
  color: #231F20;
  font-weight: 600;
}
#how-it-works .hiw-card .hiw-card-copy p {
  margin: 0;
  color: #727272;
  font-size: 16px;
  line-height: 150%;
}
#how-it-works .hiw-card:hover, #how-it-works .hiw-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px rgba(246, 0, 0, 0.22);
}
@media (max-width: 1000px) {
  #how-it-works {
    padding: 40px 0 20px 0;
  }
  #how-it-works .hiw-intro {
    font-size: 18px;
  }
  #how-it-works .hiw-card {
    margin-inline: 0px;
  }
}
#how-it-works .home-in-hand {
  position: absolute;
  bottom: 0;
  left: 0;
  height: calc(100% - 280px);
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 0;
  width: auto;
}
@media (max-width: 999px) {
  #how-it-works .hiw-cards {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  #how-it-works .hiw-cards > div {
    padding: 0px;
  }
}

/* Download App */
#download-app {
  position: relative;
  padding-top: 60px;
  padding-inline: 0px;
  color: #fff;
}
#download-app .download-app-container {
  width: calc(100% - 40px);
  margin: auto;
}
#download-app .download-card {
  border-radius: 35px;
  overflow: hidden;
  background: linear-gradient(180deg, #F60000 0%, #900000 100%);
}
#download-app .download-row {
  min-height: 420px;
}
#download-app .download-label {
  color: #fff;
  font-size: 18px;
  letter-spacing: 1.26px;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 0px;
  margin: 0;
}
#download-app .download-title {
  font-family: var(--fontSecondry);
  font-size: var(--step-0);
  line-height: 130%;
  margin: 0;
  color: #fff;
}
#download-app .download-sub {
  font-size: 22px;
  line-height: 160%;
  color: #fff;
  opacity: 0.95;
  max-width: 60ch;
}
#download-app .store-badge {
  height: 56px;
  width: auto;
}
#download-app .phone-visual {
  height: 100%;
  min-height: 420px;
  width: 100%;
  background: url(../img/mobile-app-banner.png) no-repeat;
  background-size: auto 100%;
  background-position: 80% 0px;
}
@media (max-width: 991px) {
  #download-app {
    padding: 30px 0;
  }
  #download-app .download-sub {
    font-size: 18px;
  }
  #download-app .download-card {
    border-radius: 16px;
  }
  #download-app .download-row {
    min-height: 320px;
  }
  #download-app .phone-visual {
    min-height: 260px;
    background-position: center;
  }
  #download-app .store-badges {
    flex-direction: column;
    align-items: flex-start !important;
  }
  #download-app .download-copy {
    padding: 20px;
    max-width: 100% !important;
  }
}
#download-app .download-copy {
  padding-block: 100px;
  max-width: 550px;
}
@media (max-width: 991px) {
  #download-app .download-copy {
    padding-block: 20px;
  }
}

/* CTA area */
#sell-or-rent-cta {
  position: relative;
  padding: 80px 0;
  color: #fff;
  /* Background image with subtle dark overlay */
  /* Left copy */
  /* Cards */
}
#sell-or-rent-cta .cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../img/sell-or-rent-cta.jpg") center center/cover no-repeat;
  z-index: 0;
}
#sell-or-rent-cta .container,
#sell-or-rent-cta .container * {
  position: relative;
  z-index: 1;
}
#sell-or-rent-cta .cta-copy {
  gap: 30px;
}
#sell-or-rent-cta .cta-copy .cta-title {
  font-family: var(--fontSecondry);
  font-size: var(--step-0);
  line-height: 130%;
  margin: 0;
  color: #fff;
}
#sell-or-rent-cta .cta-copy .cta-title span {
  color: #EEAF28;
}
#sell-or-rent-cta .cta-copy .cta-sub {
  font-size: 25px;
  line-height: 160%;
  max-width: 43ch;
  color: #fff;
  opacity: 0.95;
  font-weight: 300;
}
#sell-or-rent-cta .cta-cards {
  gap: 20px;
}
#sell-or-rent-cta .cta-cards .cta-card {
  /* Icon circle */
}
#sell-or-rent-cta .cta-cards .cta-card .card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(34px);
          backdrop-filter: blur(34px);
}
#sell-or-rent-cta .cta-cards .cta-card .cta-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sell-or-rent-cta .cta-cards .cta-card .cta-icon {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
}
#sell-or-rent-cta .cta-cards .cta-card .cta-card-copy h4 {
  font-family: var(--fontSecondry);
  font-size: 30px;
  line-height: 130%;
  color: #fff;
  margin: 0 0 6px 0;
}
#sell-or-rent-cta .cta-cards .cta-card .cta-card-copy p {
  color: #fff;
  opacity: 0.9;
  font-size: 18px;
  line-height: 160%;
  margin: 0;
}
#sell-or-rent-cta .cta-cards .cta-card .download-btn {
  align-self: flex-start;
}
#sell-or-rent-cta .sell-left-content {
  flex: 1;
}
#sell-or-rent-cta .sell-right-card-area {
  flex-basis: 600px;
  flex-shrink: 0;
  padding: 0px;
}
@media (max-width: 991px) {
  #sell-or-rent-cta {
    padding: 40px 0;
  }
  #sell-or-rent-cta .cta-cards {
    flex-direction: column;
  }
  #sell-or-rent-cta .sell-right-card-area {
    flex-basis: 100%;
    max-width: calc(100vw - 20px);
    margin-inline: auto;
  }
}

#who-we-serve {
  background: rgb(35, 31, 32);
  padding-top: 120px;
  padding-bottom: 80px;
}
#who-we-serve .who-we-serve-content {
  padding: 0px 20px;
}
#who-we-serve .who-we-serve-content h1 {
  font-family: var(--fontSecondry);
  font-size: var(--step-0);
  font-weight: normal;
  color: #fff;
  padding-bottom: 25px;
  margin-bottom: 0px;
}
#who-we-serve .who-we-serve-content h1 strong {
  font-weight: inherit;
  color: var(--primary);
}
#who-we-serve .who-we-serve-content P {
  font-size: 18px;
  color: #fff;
  line-height: 140%;
  font-weight: 300;
  padding-bottom: 60px;
}
#who-we-serve .who-we-serve-content .image-container {
  margin-top: 150px;
}
#who-we-serve .who-we-serve-content .fist-image {
  width: 100%;
}
@media (min-width: 1200px) {
  #who-we-serve .who-we-serve-content .fist-image {
    padding-left: 150px;
    width: 100%;
  }
}
#who-we-serve .who-we-serve-content .second-image {
  display: none;
}
@media (min-width: 1200px) {
  #who-we-serve .who-we-serve-content .second-image {
    display: block;
    width: calc(100% - 110px);
    position: absolute;
    bottom: 110px;
    left: calc(-50% - 30px);
  }
}
@media (min-width: 1401px) {
  #who-we-serve .who-we-serve-content .second-image {
    display: block;
    width: calc(100% - 150px);
    position: absolute;
    bottom: 110px;
    left: calc(-50% - 30px);
  }
}
#who-we-serve .who-we-serve-accordion {
  padding: 0px 20px;
}
#who-we-serve .who-we-serve-accordion .accordion {
  background: transparent;
}
#who-we-serve .who-we-serve-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
}
#who-we-serve .who-we-serve-accordion .accordion-item:nth-child(1) .accordion-button {
  padding-top: 0px;
}
#who-we-serve .who-we-serve-accordion .accordion-item:last-child {
  border-bottom: none;
}
#who-we-serve .who-we-serve-accordion .accordion-item .accordion-button {
  background: transparent !important;
  color: white !important;
  border: none;
  box-shadow: none;
  font-size: var(--step--2);
  font-family: var(--fontSecondry);
  padding: 28px 0px;
}
#who-we-serve .who-we-serve-accordion .accordion-item .accordion-button::after {
  width: 14px;
  height: 14px;
  background-size: 100% 100%;
}
#who-we-serve .who-we-serve-accordion .accordion-item .accordion-button:not(.show) {
  background: transparent !important;
  color: white !important;
  box-shadow: none;
}
#who-we-serve .who-we-serve-accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
#who-we-serve .who-we-serve-accordion .accordion-item .accordion-body {
  background: transparent;
  color: white;
  padding-left: 0px;
  padding-right: 0px;
}
#who-we-serve .who-we-serve-accordion .accordion-item .accordion-body P {
  padding-top: 27px;
  line-height: 140%;
  font-size: 18px;
  font-weight: 300;
}
#who-we-serve .who-we-serve-accordion .accordion-item .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 !important;
}
#who-we-serve .who-we-serve-accordion .accordion-item .accordion-button {
  border-radius: 0 !important;
  /* Removes border-radius from the button */
}
#who-we-serve .who-we-serve-accordion .accordion-item .accordion-button,
#who-we-serve .who-we-serve-accordion .accordion-item .accordion-button:not(.show),
#who-we-serve .who-we-serve-accordion .accordion-item .accordion-item:first-of-type .accordion-button,
#who-we-serve .who-we-serve-accordion .accordion-item .accordion-item:last-of-type .accordion-button {
  border-radius: 0 !important;
}
#who-we-serve .who-we-serve-accordion .accordion-item .accordion-button::after {
  flex-shrink: 0;
  transform: rotate(-90deg);
  filter: invert(1);
}
#who-we-serve .who-we-serve-accordion #accordionExample .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");
  transform: rotate(0deg);
}

#location {
  padding-top: 90px;
  padding-bottom: 50px;
}
#location .container > p {
  max-width: 70ch;
  padding-bottom: 60px;
}
#location .container > h1 {
  font-family: var(--fontSecondry);
  font-size: var(--step-0);
  font-weight: normal;
  padding-bottom: 25px;
}
#location .container > h1 strong {
  font-weight: inherit;
  color: var(--primary);
}
#location .location-list {
  min-width: 212px;
  flex-direction: column;
}
#location .location-list a {
  background: rgb(250, 250, 250);
  color: var(--secondry);
  text-decoration: none;
  border-radius: 12px;
  padding: 20px;
  border: none;
  text-align: left;
  border: 2px solid transparent;
}
#location .location-list a h5 {
  font-family: var(--fontSecondry);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
  padding-bottom: 0px;
  margin-bottom: 5px;
}
#location .location-list a p {
  margin-bottom: 0px;
  font-size: 18px;
}
#location .location-list .active-location {
  border: 2px solid var(--primary);
}
#location .map-area .map-container {
  height: 100%;
}
#location .map-area .map-container .location-img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  border-radius: 20px;
}
#location .map-area .map-container .marker-container {
  position: absolute;
}
#location .map-area .map-container .marker-container .marker-img {
  cursor: pointer;
  width: 55px;
}
#location .map-area .map-container .marker-container .marker-popover {
  width: -moz-max-content;
  width: max-content;
  max-width: 90vw;
  position: absolute;
  background: #fff;
  padding: 20px;
  display: none;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.25);
  border: 1px solid rgb(212, 212, 212);
}
#location .map-area .map-container .marker-container .marker-popover h5 {
  margin-bottom: 0px;
  font-family: var(--fontSecondry);
  font-size: 16px;
  color: rgb(35, 31, 32);
}
#location .map-area .map-container .marker-container .marker-popover p {
  color: rgb(114, 114, 114);
  font-size: 14px;
  line-height: 160%;
}
#location .map-area .map-container .marker-container .marker-popover .marker-popover-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
#location .map-area .map-container .marker-container .marker-popover .popover-content {
  padding-top: 5px;
}
#location .map-area .map-container .marker-container .marker-popover::after {
  content: "";
  position: absolute;
  bottom: -20px;
  display: block;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #fff;
  transform: translate(-50%, 0%) rotate(180deg);
  left: 50%;
}
#location .map-area .map-container .marker-container .marker-popover img.close-popover {
  justify-self: flex-end;
  display: block;
  width: 30px;
  cursor: pointer;
}
#location .map-area .map-container .marker-container .backdrop-popover {
  display: none;
}
#location .map-area .map-container .marker-active .marker-popover {
  display: block;
}

#contact-us {
  /* Light contact page section */
  background: #ffffff;
  padding: 100px 0px;
  color: var(--secondry);
  /* Top hero area (label + title + subtitle) */
  /* Right illustration (based on provided image) */
  /* Address card - light theme */
}
#contact-us .contact-hero {
  margin-bottom: 30px;
}
#contact-us .contact-label {
  color: #8D8D8D;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 1.26px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 0px;
}
#contact-us h2 {
  font-family: var(--fontSecondry);
  font-weight: normal;
  font-size: clamp(2rem, 1.2rem + 2vw, 3.125rem);
  line-height: 130%;
  margin: 0;
}
#contact-us h2 strong {
  font-weight: inherit;
  color: var(--primary);
}
#contact-us .hero-intro {
  color: #141414;
  opacity: 0.6;
  font-size: 23px;
  line-height: 160%;
  max-width: 65ch;
}
#contact-us .contact-illustration {
  min-height: 416px;
  width: 100%;
  background: url("../img/contact-us.jpg") center center/cover no-repeat;
  border-radius: 0px;
}
#contact-us .address-box {
  margin-top: 40px;
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
#contact-us .address-list .address h4 {
  font-size: 15px;
  color: #727272;
  font-weight: 400;
}
#contact-us .address-list .address p {
  color: #141414;
  font-size: 20px;
  font-weight: 500;
}
#contact-us .icon-container {
  width: 54px;
  height: 54px;
  background: #FAFAFA;
  border-radius: 14px;
  padding: 13px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
#contact-us .address {
  flex: 1;
}
#contact-us .contact-form {
  background: #ffffff;
  color: rgb(35, 31, 32);
}
#contact-us .contact-form h1 {
  font-weight: 900;
  font-size: var(--step--2);
  line-height: 136%;
  letter-spacing: 0%;
}
#contact-us .contact-form p {
  color: #959595;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}
#contact-us .contact-form input, #contact-us .contact-form select {
  padding: 8px 0px;
}
#contact-us .contact-form .form-group {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 15px;
  align-items: stretch;
  gap: 10px;
  flex-direction: column;
}
#contact-us .contact-form .form-group label.form-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8D8D8D;
  margin-bottom: 8px;
}
#contact-us .contact-form .form-group input,
#contact-us .contact-form .form-group select,
#contact-us .contact-form .form-group textarea {
  width: 100%;
  border: 1px solid rgba(246, 0, 0, 0.06);
  background: #FFF7F7;
  outline: none;
  font-size: 16px;
  color: var(--secondry);
  font-weight: 400;
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
#contact-us .contact-form .form-group input:focus,
#contact-us .contact-form .form-group select:focus,
#contact-us .contact-form .form-group textarea:focus {
  border-color: rgba(246, 0, 0, 0.35);
  box-shadow: 0 0 0 3px rgba(246, 0, 0, 0.08);
  outline: none;
  background: #FFF9F9;
}
#contact-us .contact-form .form-group .form-input {
  width: 100%;
}
#contact-us .contact-form .form-group .form-control {
  border-radius: 0px;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
}
#contact-us .contact-form .phone-group {
  display: flex;
  width: 100%;
  flex-direction: column;
}
#contact-us .contact-form .phone-group .form-control:invalid, #contact-us .contact-form .phone-group .form-control.is-invalid {
  border-color: #dc3545 !important;
}
#contact-us .contact-form .phone-group .iti {
  width: 100%;
}
#contact-us .contact-form .phone-group .iti .form-control {
  border-radius: 0px;
  border-bottom: 1px solid rgb(235, 235, 235);
}
#contact-us .contact-form .phone-group .iti .form-control:focus, #contact-us .contact-form .phone-group .iti .form-control:focus-within {
  border-bottom: 2px solid rgb(35, 31, 32);
  outline: none;
  box-shadow: none;
}
#contact-us .contact-form .phone-group .iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}
#contact-us .contact-form .phone-group .iti__search-input {
  padding: 10px;
  width: 100%;
}
#contact-us .contact-form .phone-group .iti__country-container {
  max-height: 40px;
}
#contact-us .contact-form .phone-group .is-invalid {
  border-bottom: 1px solid #dc3545 !important;
}
#contact-us .contact-form .invalid-phone .invalid-feedback {
  display: block;
}
#contact-us .contact-form textarea {
  resize: vertical;
}
#contact-us .contact-form .form-check {
  flex-wrap: wrap;
  gap: 0px 10px;
}
#contact-us .contact-form .form-check label {
  max-width: calc(100% - 30px);
}
#contact-us .contact-form .custom-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: 2px solid var(--secondry);
  margin-top: 7px;
}
#contact-us .contact-form .custom-checkbox:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  position: relative;
}
#contact-us .contact-form .custom-checkbox:checked::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/check.svg");
  background-size: 100% 100%;
  font-size: 14px;
}
#contact-us .was-validated .form-control:invalid, #contact-us .form-control.is-invalid {
  border-color: #dc3545 !important;
  border-radius: 0px;
}
@media (max-width: 991px) {
  #contact-us .contact-form-container {
    padding: 0px;
    max-width: calc(100vw - 20px);
    margin-inline: auto;
  }
  #contact-us .contact-main-container {
    max-width: 100vw;
    margin: auto;
  }
}

#footer {
  /* default footer styles (dark section content above the light bar) */
  padding-top: 120px;
}
#footer .footer-container {
  width: calc(100% - 40px);
  margin: auto;
}
#footer .footer-logo {
  max-width: 330px;
  width: 100%;
}
#footer h1 {
  color: rgb(255, 255, 255);
  font-size: var(--step--2);
  font-family: var(--fontSecondry);
}
#footer .subscription-form {
  width: 100%;
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
#footer .subscription-form .subscription-input {
  max-width: 560px;
  width: 100%;
  width: 560;
  padding: 10px;
  gap: 10px;
  border-radius: 8px;
  padding: 15px;
  background: rgb(255, 255, 255);
  border: none;
  outline: none;
  box-shadow: none;
}
#footer .subscription-form .subscription-input:focus-within, #footer .subscription-form .subscription-input:focus {
  outline: 2px solid var(--primary);
}
#footer .subscription-form .subscription-submit {
  width: 55px;
  border-radius: 8px;
  background: var(--primary);
  border: none;
  outline: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .copyright-container {
  padding: 40px 0px;
  margin-top: 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#footer .copyright-container p {
  font-weight: 300;
}

/* footer base nav styles */
#footer.footer-light {
  background: #ffffff;
  padding-top: 0;
}
#footer.footer-light .footer-bar {
  padding: 16px 0;
}
#footer.footer-light .footer-logo {
  max-width: 220px;
  width: 100%;
}
#footer.footer-light .footer-nav {
  gap: 40px;
}
#footer.footer-light .footer-nav li {
  list-style: none;
}
#footer.footer-light .footer-nav .footer-link {
  color: #141414;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
#footer.footer-light .footer-nav .footer-link:hover {
  color: var(--primary);
}
@media (max-width: 991px) {
  #footer.footer-light .footer-nav .footer-link {
    font-size: 12px;
  }
}
#footer.footer-light .footer-copy {
  color: #6b6b6b;
  font-size: 14px;
}

#want-to-sell .first-section {
  display: flex;
  align-items: start;
  gap: 60px;
  padding-block: 100px;
}
#want-to-sell .first-section .content {
  flex: 1;
}
#want-to-sell .first-section .first-image {
  flex-basis: 40%;
  flex-shrink: 0;
  width: 40%;
}
#want-to-sell .first-section .second-image {
  width: calc(100% - 80px);
  margin-top: 100px;
  margin-left: auto;
  display: block;
}
#want-to-sell .first-section .content h5 {
  color: #8D8D8D;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 1.26px;
  text-transform: uppercase;
  padding-bottom: 30px;
}
#want-to-sell .first-section .content h2 {
  font-family: var(--fontSecondry);
  font-size: var(--step-0);
  font-weight: normal;
  padding-bottom: 25px;
  width: 13ch;
}
#want-to-sell .first-section .content h2 span {
  font-family: var(--fontSecondry);
  font-size: var(--step-0);
  font-weight: normal;
  color: var(--primary);
}
#want-to-sell .first-section .content p {
  color: #595959;
  font-size: 23px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  letter-spacing: 0.46px;
  max-width: 45ch;
}
@media (max-width: 991px) {
  #want-to-sell .first-section {
    gap: 10px;
    flex-direction: column-reverse;
    padding: 40px 0;
  }
  #want-to-sell .first-section .content {
    width: 100%;
  }
  #want-to-sell .first-section .content h2 {
    margin: auto;
    width: 100%;
  }
  #want-to-sell .first-section .content p {
    margin: auto;
    padding-bottom: 30px;
    width: 100%;
    max-width: 100%;
  }
  #want-to-sell .first-section .second-image {
    width: 100%;
    margin-top: 0px;
  }
  #want-to-sell .first-section .first-image {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .banner-area {
    row-gap: 5px;
  }
  .banner-paragraph {
    /* grid-row: span 2; */
  }
  #contact-us .contact-form .form-group {
    flex-direction: column;
    gap: 15px;
  }
  #contact-us .contact-form .form-group input, #contact-us .contact-form .form-group select, #contact-us .contact-form .form-group textarea, #contact-us .contact-form .form-group phone-group {
    width: 100% !important;
  }
  #contact-us .contact-form .form-group .phone-group {
    width: 100%;
  }
  #contact-us .contact-form .form-group .phone-group .iti {
    width: 100%;
  }
  #who-we-serve .who-we-serve-content .image-container {
    margin-top: 10px;
  }
  #who-we-serve .who-we-serve-content p {
    padding-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .banner-area {
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .banner-area * {
    grid-column: span 24;
  }
  .banner-area .banner-paragraph {
    order: 3;
  }
  .blank-area {
    display: none;
  }
  .header-navbar {
    background: transparent;
    border: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    text-decoration: none;
    list-style: none;
    border-radius: 0px;
    text-align: center;
  }
  #navbarContent .navbar-nav .nav-item {
    min-width: 100%;
    text-align: left;
    padding: 0;
  }
  #navbar-container .navbar-brand .logo-image {
    max-width: 150px;
  }
  #navbarContent .navbar-nav {
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    padding: 0;
    border: none;
    gap: 0px !important;
  }
  #navbarContent .navbar-nav .nav-item {
    border-left: none;
  }
  .nav-center {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .navbar-collapse + .primary-btn {
    display: none;
  }
  /* Smoothly show the button when the menu is open */
  .navbar-collapse.show + .primary-btn {
    display: inline-flex;
  }
  #about-area {
    padding-top: 40px;
  }
  #about-area .row > * {
    padding: 0px 10px;
  }
  #about-area .about-list {
    padding-bottom: 30px;
  }
  #feature-area {
    padding-top: 30px;
    padding-bottom: 15px;
  }
  #feature-area .container {
    padding: 0px;
  }
  #feature-area .feature-title {
    font-size: 20px;
    line-height: 140%;
    overflow-wrap: anywhere;
    padding: 10px 0px;
  }
  #feature-area .feature-title strong {
    font-size: 20px;
    line-height: 140%;
  }
  #feature-area .feature-card {
    padding: 25px;
    row-gap: 50px;
    justify-content: space-between;
  }
  #feature-area .feature-card h5 {
    padding-top: 0px;
    margin-bottom: 0px;
  }
  #feature-area .feature-card .feature-arrow {
    width: 30px;
  }
  #who-we-serve {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  #who-we-serve .who-we-serve-accordion .accordion-item:nth-child(1) .accordion-button {
    padding-top: 30px;
  }
  #location .location-main-container {
    flex-direction: column;
  }
  #location .location-main-container .location-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  #location .location-main-container .location-list a {
    padding: 10px 20px;
    min-width: calc(33.3333333333% - 1.5rem);
  }
  #location .location-main-container .location-list a h5 {
    font-size: 16px;
    margin-bottom: 0px;
  }
  #location .location-main-container .location-list a p {
    font-size: 14px;
  }
  #location .location-main-container .map-area .map-container .marker-container .marker-popover {
    width: -moz-max-content;
    width: max-content;
    position: fixed;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.25);
    top: 50%;
    min-height: -moz-max-content;
    min-height: max-content;
    z-index: 9;
  }
  #location .location-main-container .map-area .map-container .marker-container .marker-popover::after {
    display: none;
  }
  #location .location-main-container .map-area .backdrop-popover {
    z-index: 2;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    transform: translate(-50%, -50%);
  }
  #contact-us {
    padding: 30px 0px;
  }
  #footer {
    padding-top: 30px;
  }
  #footer .copyright-container {
    margin-top: 20px;
    padding: 20px 0px;
  }
  #footer.footer-light .footer-bar {
    flex-direction: column;
    gap: 10px;
  }
  #footer.footer-light .footer-nav {
    gap: 10px;
    flex-wrap: wrap;
    padding-left: 0px;
  }
}
@media (max-width: 430px) {
  #location .location-main-container .location-list a {
    padding: 10px 20px;
    min-width: 100%;
  }
}
@media (max-width: 767px) {
  #how-it-works .home-in-hand {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .banner-area .bottom-text p {
    font-size: 18px;
  }
  #categories .section-intro {
    font-size: 18px;
  }
  #how-it-works .hiw-intro {
    font-size: 18px;
  }
  #download-app .download-sub {
    font-size: 18px;
  }
  #sell-or-rent-cta .cta-copy .cta-sub {
    font-size: 18px;
  }
  #contact-us .hero-intro {
    font-size: 18px;
  }
  #about-area p {
    font-size: 18px;
  }
  #categories .category-card h5 {
    font-size: 20px;
  }
  #categories .category-card p {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */