@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body,
html {
  overflow-x: hidden;
}

body {
  font-family: Lato;
}

:root {
  --primary-bg-color: #543ad7;
  --secondary-bg-color: #a697f0;
  --primary-text-color: #333333;
  --secondary-text-color: #666666;
  --primary-heading-color: #3d3d3d;
}

.container {
  /* max-width: 1570px; */
  max-width: 1290px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.row > * {
  padding: 0 15px;
}

ul > li {
  list-style-type: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

h1,
.subheading,
.subtitle,
h3 {
  font-family: Montserrat;
}

p {
  font-family: Lato;
}

.subtitle {
  font-size: 20px;
  color: var(--primary-heading-color);
  font-weight: 600;
  margin-bottom: 12px !important;
  position: relative;
  text-indent: 65px;
}

.subtitle::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  height: 2px;
  width: 55px;
  background-color: var(--primary-bg-color);
}

.subheading {
  max-width: 630px;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: start;
  color: var(--primary-text-color);
}

.description {
  color: var(--secondary-text-color);
  font-size: 18px;
}

/* header section */

header {
  margin-top: 34px;
  padding: 15px 50px;
  background-color: white;
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 120px;
  right: 120px;
  font-family: Lato;
  z-index: 2;
}

.sm-screen-navbar-brand {
  display: none;
}

.navbar-brand {
  margin: 0 auto;
}

.navbar-brand > a {
  max-width: 140px;
}

.navbar-brand > a > img {
  width: 100%;
  object-fit: contain;
}

.smscreen-nav-links {
  display: none;
}

nav,
.nav-right,
.nav-links > ul {
  display: flex;
  align-items: center;
}

.nav-right {
  flex-grow: 1;
}

.nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.nav-links > ul {
  gap: 41px;
}

.nav-links > ul > li > a {
  color: var(--primary-heading-color);
}

.nav-links > ul > li > a:hover {
  color: var(--primary-bg-color);
}

.contact-us {
  color: var(--primary-heading-color);
}

.contact-us:hover {
  color: var(--primary-bg-color);
}

.login {
  background-color: var(--primary-bg-color);
  text-wrap: nowrap;
  padding: 7px 23px;
  border-radius: 50px;
  color: white;
  cursor: pointer;
  font-size: 14px;
  border: none;
}

.login:hover {
  background-color: var(--secondary-bg-color);
  color: black;
  transform: scale(1.09);
}

.ham {
  display: none;
}

.active {
  display: flex !important;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #f7f8fa;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  width: 100%;
  max-width: 400px;
  margin: 0 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

.login-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.login-container h2 {
  font-size: 24px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: var(--primary-heading-color);
}

.login-subtitle {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: var(--secondary-text-color);
  margin-bottom: 15px;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  background-color: #fff;
  font-size: 14px;
  outline: none;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 10px;
}

.forgot-password {
  text-align: right;
  margin-top: -10px;
  margin-bottom: 10px;
}

.forgot-password a {
  color: var(--primary-bg-color);
  font-size: 14px;
  font-family: Lato, sans-serif;
  margin-top: 10px;
}

.modal button {
  width: 50%;
  background-color: var(--primary-bg-color);
  color: white;
  border: none;
  padding: 14px 0;
  border-radius: 50px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 0 auto;
}

.modal button:hover {
  background-color: var(--secondary-bg-color);
  color: black;
  transform: scale(1.09);
}

.create-account {
  margin-top: 10px;
  font-size: 13px;
  color: #3d3d3d;
  font-family: "Lato", sans-serif;
}

.create-account a {
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

/* Hero section */

.hero-section {
  position: relative;
  padding: 10px 1.875vw 110px;
}

.hero-section > div {
  background: url(../assets/aboutus-banner-section.png) center/cover no-repeat;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
}

.hero-section .container {
  max-width: 1570px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  color: white;
}

.hero-content > h1 {
  font-size: 48px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
}

.letter {
  font-size: 50px;
}

.hero-description {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.hero-description > img {
  max-width: 32px;
  object-fit: contain;
}

.hero-description > a {
  font-size: 18px;
  color: white;
}

.hero-description > a:hover {
  font-weight: bold;
}

/* villa details */

.villa-details-section {
  margin-bottom: 150px;
  margin-inline: 15px;
}

.villa-details-section > .container {
  background: url(../assets/villa-img.png) center/contain no-repeat;
  min-height: 500px;
  border-radius: 40px;
  position: relative;
}

.property-info-box {
  display: flex;
  /* flex-wrap: wrap; */
  align-items: center;
  justify-content: center;
  gap: 87px;
  background-color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-radius: 15px;
  padding: 25px 75px;
  position: absolute;
  bottom: -70px;
  left: 190px;
  right: 190px;
}

.info-item > img {
  max-width: 40px;
  object-fit: contain;
}

.info-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.info-item .label {
  font-size: 14px;
  color: #666666;
  font-family: Lato;
  text-align: center;
  text-wrap: nowrap;
}

.info-item .value {
  font-size: 18px;
  color: #333333;
  font-family: Montserrat;
  font-weight: 600;
  text-wrap: nowrap;
}

.small-screen-property-section {
  display: none;
}

/* Sobha villa section */
.sobha-villa-section {
  margin-bottom: 150px;
}

.sobha-villa-section > div > div {
  align-items: center;
  justify-content: center;
}

.col-11 {
  width: 40%;
}

.sobha-villa-location {
  color: #3d3d3d;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 20px;
}

.sobha-villa-content {
  max-width: 444px;
}

.sobha-villa-content > h2 {
  font-size: 32px;
  color: #333333;
  margin-block: 16px;
  font-family: Montserrat;
}

.sobha-villa-description1 {
  color: #666666;
  font-family: Lato;
  margin-bottom: 8px;
}

.sobha-villa-description2 {
  color: #666666;
  font-family: Lato;
}

.col-12 {
  width: 60%;
}

.sobha-villa-img {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
}

.sobha-villa-img1 {
  max-width: 308px;
}

.sobha-villa-img1 > img:first-child {
  margin-bottom: 11px;
}

.sobha-villa-img2 {
  max-width: 404px;
  flex-shrink: 1;
}

.sobha-villa-img1 > img,
.sobha-villa-img2 > img {
  width: 100%;
  object-fit: contain;
}

/* floor plan section */

.floor-plan-section {
  align-items: center;
  justify-content: center;
  margin-bottom: 125px;
}

.col-13 {
  width: 50%;
}

.floor-plan-img {
  max-width: 500px;
}

.floor-plan-img > img {
  width: 100%;
  object-fit: contain;
}

.col-14 {
  width: 50%;
}

.floor-plan-heading {
  font-size: 24px;
  font-family: Lato;
  color: #3d3d3d;
  margin-bottom: 30px;
}

.checkbox-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 50px;
}

.checkbox-section label {
  font-size: 18px;
  font-family: "Lato", sans-serif;
  color: #999999;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  text-wrap: nowrap;
}

/* get in touch section */

.get-in-touch-section {
  margin-bottom: 75px;
}

.get-in-touch-section > div > div {
  align-items: center;
  justify-content: center;
}

.col-8 {
  width: 40% !important;
}

.col-9 {
  width: 60% !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  background-color: #f7f8fa;
  padding: 35px 46px;
  border-radius: 40px;
  max-width: 625px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.contact-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #333333;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  background-color: #fff;
}

.contact-form textarea {
  border-radius: 20px;
  resize: none;
}

.full-width {
  flex: 1 0 100%;
}

.center {
  justify-content: center;
}

.submit-btn {
  padding: 12px 30px;
  border: none;
  background: var(--primary-bg-color);
  color: white;
  border-radius: 25px;
  text-transform: uppercase;
  cursor: pointer;
  text-wrap: nowrap;
}

.submit-btn:hover {
  background-color: var(--secondary-bg-color);
  color: black;
  transform: scale(1.09);
}

/* Newly listed properties section */

.newproperties-section {
  margin-bottom: 75px;
}

.newproperty-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.all-listing-btn > a {
  background-color: var(--primary-bg-color);
  color: white;
  padding: 11px 22px;
  border-radius: 25px;
}

.all-listing-btn > a:hover {
  background-color: var(--secondary-bg-color);
  color: black;
  transform: scale(1.09);
}

.newproperties-section {
  padding: 50px 15px;
}

.properties-wrapper {
  background-color: #f7f8fa;
  border-radius: 14px;
  padding-block: 50px;
}

.properties-content-header > h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--color-dark-grey-4);
  margin-top: 12px;
}

.properties-swiper {
  width: 100%;
  margin-top: 48px;
  margin-bottom: 30px;
}

.swiper {
  height: 400px !important;
}

.properties-section-card {
  max-width: 90%;
  margin: 0 auto;
  height: 88%;
  border-radius: 25px;
  position: relative;
}
.property-section-card-img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
.property-section-card-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}
.txt-overlay {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  margin-left: 11px;
  margin-right: 10px;
  padding: 22px 21px 19px 21px;
  border-radius: 25px;
  gap: 10px;
  min-height: 120px;
}
.txt-overlay-row1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.txt-overlay-row2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.txt-overlay-row1 > h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: white;
}

.rating,
.location {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2px;
}

.rating-icon,
.location-icon {
  width: 16px;
  height: 16px;
}

.rating-icon > img,
.location-icon > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rating > span,
.location > span {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: white;
}

.detail-btn {
  display: inline-block;
  padding: 4px 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid white;
  border-radius: 60px;
  color: white;
  text-transform: uppercase;
}

.swiper-pagination {
  margin-top: 30px;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 30px;
  height: 8px;
  border-radius: 20px;
  background: #e0e0e0;
  opacity: 1;
  transition: background 0.3s;
  margin: 0 4px;
}

.swiper-pagination-bullet-active {
  background: var(--primary-bg-color);
}

/* newsletter section */
.newsletter-section {
  margin-bottom: 75px;
}

.newsletter-section > div > div {
  align-items: center;
  justify-content: space-between;
}

.col-6 {
  width: 50%;
}

.newsletter-content > .subheading {
  max-width: 455px;
  text-align: start;
  margin-bottom: 0px;
}

.newsletter-section .email {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.newsletter-section #email {
  border: 1px solid #333333;
  width: 404px;
  padding: 15px 20px;
  border-radius: 25px;
}

/* footer section */
footer {
  padding: 30px 0 55px;
}

footer > div > div {
  align-items: start;
  justify-content: space-between;
}

.footer-div-1 > p {
  max-width: 435px;
  margin-block: 27px;
  color: #868686;
}

.footer-logo {
  max-width: 140px;
}

.footer-logo > a {
  max-width: 140px;
}

.footer-logo > img {
  width: 100%;
  object-fit: contain;
}

.social-media-icon {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 23px;
}

.social-media-icon1,
.social-media-icon2,
.social-media-icon3,
.social-media-icon4 {
  width: 40px;
  background-color: var(--primary-bg-color);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.social-media-icon1 > a > img {
  max-width: 10px;
  object-fit: contain;
}

.social-media-icon2 > a > img {
  max-width: 22px;
  object-fit: contain;
}

.social-media-icon3 > a > img,
.social-media-icon4 > a > img {
  max-width: 22px;
  object-fit: contain;
}

.social-media-icon a:hover {
  transform: scale(1.05);
}

.footer-divider {
  display: inline-block;
  width: 1px !important;
  height: 200px;
  background-color: #c7c7c7;
  padding: 0 !important;
}

.footer-heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-div-2 > ul > li > a {
  color: #868686;
}

.footer-div-2 > ul > li > a:hover {
  color: var(--primary-bg-color);
}

.footer-div-2 > ul > li {
  margin-bottom: 12px;
}

.property-images {
  max-width: 404px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.property-images a img {
  max-width: 95px;
  object-fit: contain;
}

.property-images a img:hover {
  transform: scale(1.05);
}

/* copyright  section */

.copyright-section {
  margin-block: 20px;
}

.copyright-section > div > div {
  align-items: center;
  justify-content: space-between;
}

.copyright-content {
  color: #666666;
  font-weight: 600;
}

.copyright-content:hover {
  color: black;
  font-weight: bold;
}

.terms {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
}

.terms > a {
  font-weight: 600;
  color: #666666;
}

.terms > a:hover {
  color: black;
  font-weight: bold;
}

/* copyright  section */

.copyright-section {
  margin-block: 20px;
}

.copyright-section > div > div {
  align-items: center;
  justify-content: space-between;
}

.copyright-content {
  color: #666666;
  font-weight: 600;
}

.copyright-content:hover {
  color: black;
  font-weight: bold;
}

.terms {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
}

.terms > a {
  font-weight: 600;
  color: #666666;
}

.terms > a:hover {
  color: black;
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
  /* villa details */

  .property-info-box {
    gap: 40px;
  }

  /* get in touch section */

  .get-in-touch-section .subtitle {
    max-width: 200px;
    margin-inline: auto;
  }

  .subheading {
    margin: 0 auto 47px;
    text-align: center;
  }

  .content > .description {
    margin: 12px auto 34px;
    text-align: center;
  }

  .col-8 {
    width: 100% !important;
    margin-top: 50px;
  }

  .col-9 {
    width: 100% !important;
    margin-top: 25px !important;
  }

  /* newsletter section */

  .newsletter-section > div > div {
    justify-content: center;
    gap: 50px;
  }

  .newsletter-content > .subheading {
    text-align: center;
    margin: 0 auto;
  }

  /* footer section */

  footer > div > div {
    justify-content: center;
    gap: 50px;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-div-1 > p {
    text-align: center;
  }

  .social-media-icon {
    justify-content: center;
  }

  .footer-div-2 > ul > li {
    text-align: center;
  }

  .footer-heading {
    text-align: center;
  }

  .footer-divider {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  /* Hero section */

  .hero-section {
    padding-bottom: 50px;
  }

  .hero-content > h1 {
    font-size: 39px;
  }

  .letter {
    font-size: 41px;
  }

  /* newsletter section */

  .col-6 {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  /* header section */

  header {
    padding: 15px 20px;
  }

  .nav-links {
    display: none;
  }

  .sm-screen-navbar-brand {
    display: block;
  }

  .sm-screen-navbar-brand > a {
    max-width: 140px;
  }

  .sm-screen-navbar-brand > a > img {
    width: 90%;
    object-fit: contain;
  }

  .navbar-brand {
    display: none;
  }

  .nav-right {
    padding-block: 40px;
    display: none;
    position: absolute;
    top: 100px;
    right: 0;
    left: 0;
    flex-direction: column;
    animation: upsidedown 0.5s forwards 1 linear;
    background-color: black;
    gap: 20px;
    background-color: #f4f4f4;
    border-radius: 25px;
    z-index: 99;
  }

  @keyframes upsidedown {
    from {
      transform: translateY(-200px);
    }
    to {
      transform: translateY(0);
    }
  }

  .smscreen-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
  }

  .smscreen-nav-links > li > a {
    font-size: 12px;
    color: #3d3d3d;
  }

  .smscreen-nav-links > ul > li > a:hover {
    color: var(--primary-bg-color);
  }

  .nav-btn {
    flex-direction: column;
    gap: 20px;
  }

  .nav-btn > a {
    font-size: 12px;
  }

  .ham {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .ham > span {
    display: inline-block;
    height: 3px;
    width: 20px;
    background-color: black;
  }

  .ham span {
    transition: all 0.3s ease;
  }

  .ham.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .ham.active span:nth-child(2) {
    opacity: 0;
  }

  .ham.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .modal-overlay {
    top: unset;
    left: unset;
  }

  /* villa details */

  .villa-details-section {
    margin-bottom: 0px;
  }

  .property-info-box {
    display: none;
  }

  .small-screen-property-section {
    display: flex;
    margin-bottom: 75px;
  }

  .property-info-box1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 87px;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    padding: 25px 75px;
  }

  /* Sobha villa section */

  .col-11,
  .col-12 {
    width: 100%;
  }

  .col-12 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }

  .sobha-villa-content {
    margin: 0 auto;
    text-align: center;
  }

  /* Floor plan section */

  .floor-plan-section {
    margin-bottom: 50px;
  }

  .col-13 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .col-14 {
    width: 100%;
    margin-top: 50px;
  }

  .checkbox-section {
    justify-content: center;
  }

  .checkbox-section label {
    font-size: 18px;
    font-family: "Lato", sans-serif;
    color: #999999;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    text-wrap: nowrap;
  }

  .floor-plan-heading {
    text-align: center;
  }

  /* get in touch section */

  .get-in-touch-section > div > div {
    flex-direction: column-reverse;
  }

  /* newly listed property section */

  .newproperty-content {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  /* Header Section */

  header {
    padding: 10px 15px;
    left: 20px;
    right: 20px;
    border-radius: 30px;
  }

  nav {
    justify-content: space-between;
    align-items: center;
  }

  .sm-screen-navbar-brand {
    max-width: 120px;
  }

  .sm-screen-navbar-brand > a {
    width: 100%;
  }

  .sm-screen-navbar-brand > a > img {
    width: 100%;
    object-fit: contain;
  }

  .ham {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .ham > span {
    height: 3px;
    width: 22px;
    background-color: #000;
  }

  .nav-right {
    padding: 30px 20px;
  }

  .nav-btn > a {
    padding: 6px 16px;
    font-size: 12px;
  }

  .login {
    font-size: 12px;
  }

  /* villa details */

  .villa-details-section > .container {
    min-height: 350px;
  }

  .floor-plan-section,
  .sobha-villa-section {
    margin-bottom: 75px;
  }

  .sobha-villa-img1 {
    max-width: 250px;
  }

  /* copyright section */

  .copyright-section > div > div {
    justify-content: center;
    gap: 50px;
  }
}

@media screen and (max-width: 576px) {
  /* header section */

  .modal {
    padding: 30px 20px;
  }

  .login-container h2 {
    font-size: 20px;
  }

  .login-subtitle {
    font-size: 13px;
  }

  input[type="text"],
  input[type="password"] {
    font-size: 13px;
    padding: 12px 16px;
  }

  .modal button {
    font-size: 14px;
    padding: 12px 0;
    width: 50%;
  }

  .create-account {
    font-size: 12px;
  }

  /* Hero section */

  .hero-section {
    padding-bottom: 50px;
  }

  .hero-content > h1 {
    font-size: 25px;
  }

  .letter {
    font-size: 27px;
  }

  /* villa details */

  .property-info-box1 {
    gap: 50px;
  }

  /* sobha villa section */
  .sobha-villa-section {
    margin-bottom: 45px;
  }

  .sobha-villa-location {
    font-size: 14px;
  }

  .sobha-villa-content > h2 {
    font-size: 20px;
  }

  .sobha-villa-description1,
  .sobha-villa-description2 {
    font-size: 12px;
  }

  .sobha-villa-img1 {
    max-width: 160px;
    flex-shrink: 1;
  }

  /* get in touch section */
  .subheading {
    font-size: 20px;
  }

  .content > .description {
    font-size: 12px;
  }

  .details-heading {
    font-size: 14px;
  }

  .details-description {
    font-size: 12px;
  }

  .contact-form label {
    font-size: 14px;
  }

  .submit-btn {
    font-size: 12px;
  }

  /* newly listed property section */
  .properties-section-cards {
    height: 80%;
  }

  .all-listing-btn > a {
    font-size: 12px;
  }

  .txt-overlay {
    min-height: 100px;
  }

  .txt-overlay-row1 > h3 {
    font-size: 14px;
  }

  .rating > span,
  .location > span {
    font-size: 12px;
  }

  .detail-btn {
    font-size: 8px;
  }

  /* our commitments section */

  .aspects-description {
    font-size: 12px;
  }

  .aspects-heading {
    font-size: 16px;
  }
}

@media screen and (max-width: 430px) {
  .sm-screen-navbar-brand > a > img {
    width: 80%;
  }

  .ham {
    gap: 3px;
  }

  .ham > span {
    height: 1px;
    width: 20px;
  }

  /* Hero section */

  .hero-section {
    padding-bottom: 15px;
  }

  .hero-description > a {
    font-size: 12px;
  }

  .sm-screen-banner-div p {
    font-size: 12px;
  }

  .search-btn > a {
    font-size: 12px;
  }

  /* villa details section */

  .villa-details-section > .container {
    min-height: 180px;
  }

  .info-item .label {
    font-size: 12px;
  }

  .info-item .value {
    font-size: 14px;
  }

  .property-info-box1 {
    gap: 25px;
  }

  /* floor plan section */

  .floor-plan-section {
    margin-bottom: 0px;
  }

  .checkbox-section label {
    font-size: 12px;
  }

  /* get in touch section */

  .get-in-touch-section {
    margin-bottom: 25px;
  }

  .form-container {
    padding: 25px 20px;
    border-radius: 8px;
  }

  .contact-form .form-row:nth-child(2) {
    flex-direction: column;
  }

  /* newsletter section */

  .newsletter-section .email {
    flex-direction: column;
  }

  .newsletter-section #email {
    width: 304px;
  }

  /* footer section */

  footer > div > div {
    flex-direction: column;
    align-items: center;
  }

  .property-images1,
  .property-images2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .footer-div-1 > p {
    font-size: 12px;
  }

  .footer-heading {
    font-size: 16px;
  }

  .footer-div-2 > ul > li > a {
    font-size: 12px;
  }

  .property-images {
    max-width: 217px;
  }

  /* copyright section */

  .copyright-content,
  .terms > a {
    text-align: center;
    font-size: 12px;
  }
}

@media screen and (max-width: 375px) {
  .sm-screen-banner-div {
    padding: 28px 0px;
  }

  #location {
    min-width: 250px;
  }

  .testimonial-card {
    width: 185px;
    right: -32px !important;
  }
}
