* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  /* font-family: "Poppins", serif; */
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  /* background-color: #f4e1856e; */
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
/* h5 {
  border-bottom: 2px solid #f8ab3b52;
  max-width: max-content;
  padding-bottom: 5px;
  transition: 0.5s ease;
}
.
h5:hover {
  color: #f8ab3b;
  letter-spacing: 1px;
} */
.blog-post-1-img{
    max-width:600px !important;
    margin-bottom: 1rem;
}
.navbar {
  background-color: #fff !important;
}
.navbar-toggler-icon {
  background-color: #fff;
}
.navbar-brand {
  width: 160px;
  height: 80px;
  margin: 0;
  padding: 0;
}
.navbar-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.navbar-nav {
  gap: 20px;
}
.nav-item {
  position: relative;
}
.nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 0;
  height: 3px;
  background: #f8ab3b;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav-item:hover .nav-link::before {
  width: 100%;
}
.nav-item .nav-link {
  transition: 0.3s ease;
  padding: 0.4rem !important;
  text-transform: uppercase;
}
.nav-item:hover .nav-link {
  color: #f8ab3b !important;
  /* transform: translatey(-10px); */
}

.nav-item .nav-link,
.active {
  font-weight: 500;
  font-size: 18px;
  padding: 1rem 0.4rem;
  color: #000000 !important;
}
 .paras p{
      font-size: 17px;
 }  
.banner-images {
  position: relative;
}
.banner-images::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
.banner-text-wrapper {
  position: absolute;
  z-index: 2;
  padding: 0 1rem;
  bottom: 8%;
  color: #fff;
  left: 10%;
}
.banner-text h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 36px;
  border: none;
  font-weight: 700;
  margin-bottom: 4rem;
}

.banner-text h1 {
  color: #fff;
  text-transform: capitalize;
  font-size: calc(20px + 1.5vw);
  border: none;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
.banner-text p {
  font-size: 22px;
}
.about-image {
  width: 100%;
  /* height: 450px; */
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  position: relative;
}

/*.about-image::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: #020024;*/
/*  background-image: linear-gradient(*/
/*    to right top,*/
/*    #f08a5d,*/
/*    #ee8265,*/
/*    #ea7a6c,*/
/*    #e47474,*/
/*    #dc6f7b*/
/*  );*/
/*  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;*/
/*  top: -60px;*/
/*  left: -60px;*/
/*  z-index: -1;*/
/*  transition: 0.4s ease;*/
/*}*/
.dropdown-item:hover {
  color: #f8ab3b;
  z-index: -1;
  transition: 0.4s ease;
}
.about-image:hover.about-image::after {
  top: 0;
  left: 0;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text p {
  /* line-height: 30px; */
  word-spacing: 2px;
  font-size: 17px;
  color: #234895;
}
.middle .middle-about-text p {
  font-size: 20px;
  line-height: 2rem;
}

.middle-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../assets/images/background-images/background-image-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 120px 0;
}
.middle-banner-container {
  padding-left: 4rem;
}
.middle-banner h2 {
  color: #fff;
  max-width: 1200px;
  font-size: 42px;
}

.book-now-btn a {
  border: 2px solid #f8ab3b;
  padding: 15px 40px;
  transition: 0.3s ease;
  font-size:20px;
}
.book-now-btn a:hover {
  background-color: #f8ab3b;
  color: #000;
  border-color: #fff;
}
.card {
  /* width: 400px; */
  height: 300px;
  perspective: 1000px;
  border-radius: 10px;
  cursor: pointer;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.999s;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.card-front {
  background-color: #6a2c70;
  color: #fff;
  display: flex;
  align-items: center;
  border: 1px solid #6a2c70;
  border-radius: 10px;
  justify-content: center;
  font-size: 24px;
  transform: rotateY(0deg);
}

.card-back {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgb(255, 191, 0);
  color: #fff;
  border: 1px solid #bf58ac;
  border-radius: 10px;
  transform: rotateY(180deg);
  padding: 20px;
  text-align: center;
}
.card-back h4 {
  text-transform: capitalize;
}
.card-back p {
  font-size: 14px;
}

.counter-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(../assets/images/background-images/background-image-2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 50px 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin: auto;
}

.counter-heading {
  font-size: 28px;
  margin-bottom: 40px;
  color: #fff;
}

.counters {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.counter-box {
  flex: 1;
  min-width: 200px;
}
.counter-heading {
  color: #fff;
}

.counter-number {
  font-size: 48px;
  color: #f08a5d;
  font-weight: bold;
}

.counter-label {
  font-size: 18px;
  color: #fff;
  margin-top: 10px;
}
.property-image {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  align-items: end;
}
.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-img-1 {
  width: 300px;
  height: 300px;
}
.property-img-2 {
  width: 400px;
  height: 400px;
}
.property-text h2 {
  font-size: 48px;
}
.partner-with-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.partner-with-us-image:hover {
  transition: 0.3s ease;
}
.partner-with-us-image:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

#content {
  max-width: 600px;
  margin: auto;
}
#testimonial {
  position: relative;
  background-image: url(../assets/images/background-images/background-image-2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
#testimonial::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  background-color: rgba(1, 1, 1, 0.656);
  z-index: -1;
}

.testimonial blockquote {
  margin: 10px 10px 0;
  background: #efefef;
  padding: 20px 60px;
  position: relative;
  border: none;
  border-radius: 8px;
  font-style: italic;
}

.testimonial blockquote:before,
.testimonial blockquote:after {
  content: "\201C";
  position: absolute;
  font-size: 80px;
  line-height: 1;
  color: #757f9a;
  font-style: normal;
}

.testimonial blockquote:before {
  top: 0;
  left: 10px;
}

.testimonial blockquote:after {
  content: "\201D";
  right: 10px;
  bottom: -0.5em;
}

.testimonial div {
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #efefef;
  margin: 0 0 0 60px;
}
.testimonial-heading {
  color: #fff;
}

.testimonial p {
  margin: 8px 0 0 20px;
  text-align: left;
  color: #fff;
}
.heading {
  margin-bottom: 1rem;
}
h3 {
  display: inline-block;
  text-transform: uppercase;
  border-bottom: 10px double #f6ac3f78;
  color: #000000a5;
}
.heading h2 {
  /* display: inline-block; */
  text-transform: uppercase;
  padding-bottom: 5px;
  /* border-bottom:  double black;
  border-style: double; */
}
.heading h1 {
  margin: 0 auto;
  font-weight: bold;
  transition: 0.3s ease;
}
footer {
  background-color: rgb(228, 241, 254, 0.9);
  color: #234895;
}
footer .heading h4 {
  width: max-content;
  border-bottom: 2px solid #f8ab3b;
}

.footer-list {
  padding-left: 1rem;
}
.footer-list li a {
  color: #234895;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  position: relative;
  padding-bottom: 5px;
}

.footer-list li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 0;
  height: 3px;
  background: #f8ab3b;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-list li a:hover::before {
  width: 100%;
}

.footer-list span {
  padding-left: 10px;
}
.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  padding-left: 1rem;
  gap: 1rem;
}
.footer-social-links a {
  display: inline-block;
}
.footer-social-links a {
  padding: 12px;
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; */
  transition: 0.3s ease;
  color: #234895;
}
.footer-social-links a:hover {
  transform: translateY(-10px);
  color: #f8ab3b;
}
.footer-social-links i {
  font-size: 30px;
}

/* marquee-style end */

/* owl-carousel-section */
.owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
}
.owl-item {
  padding-top: 0;
}
.owl-nav button {
  border: 1px solid black !important;
  padding: 20px 20px !important;
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px,
    rgba(6, 24, 44, 0.65) 0px 4px 6px -1px,
    rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
  background-color: transparent !important;
  transition: 0.3s ease;
}
.owl-nav button span {
  font-size: 40px;
}
.owl-next {
  position: absolute;
  right: 0;
}
.owl-prev {
  position: absolute;
  left: 0;
}

.owl-nav button:hover {
  background-color: #000 !important;
}
.owl-carousel .item img {
  width: 100%;
  height: auto;
}
/* owl-carousel-section end */

/* screen-1400px */
@media (max-width: 1400px) {
  .publication {
    width: 100% !important;
  }
  .publication-wrapper .owl-prev,
  .publication-wrapper .owl-next {
    display: none !important;
  }
}
/* screen-1200px */
@media (max-width: 1200px) {
  marquee {
    height: 200px !important;
  }
  .middle-banner {
    padding: 80px 0;
  }
  .property-text h2 {
    font-size: 44px;
  }
}
/* screen 1100px */
@media (max-width: 1100px) {
  .banner-text h2 {
    font-size: 36px;
    margin-bottom: 4rem;
  }
  .middle-banner {
    padding: 40px 0;
  }
}

/* screen-1024px */
@media (max-width: 1024px) {
  .owl-nav {
    top: 30%;
  }
  marquee {
    height: 200px !important;
  }
}
/* screen-994px */
@media (max-width: 994px) {
  marquee {
    height: 200px !important;
  }
  .banner-text h2 {
    font-size: 36px;
    margin-bottom: 2rem;
  }

  .banner-text p {
    font-size: 22px;
  }
  .middle-banner {
    padding: 20px 0;
  }
  .middle-banner-container {
    padding-left: 1rem;
  }
  .middle-banner h2 {
    color: #fff;
    max-width: 1200px;
    font-size: 34px;
  }
}

/* screen-700px */
@media (max-width: 700px) {
  .owl-nav button {
    border: 1px solid black !important;
    padding: 5px 10px !important;
  }
  .owl-nav {
    top: 20%;
  }
  .about-image {
    width: 100%;
    height: 300px;
  }

  .banner-text h2 {
    font-size: 22px;
    margin-bottom: 2rem;
  }

  .banner-text p {
    font-size: 18px;
  }
  .middle-banner-container {
    padding-left: 1rem;
  }
  .middle-banner h2 {
    color: #fff;
    max-width: 1200px;
    font-size: 32px;
  }
}

/* screen-768px */
@media (max-width: 768px) {
  marquee {
    height: 250px !important;
  }
  .gallery .item img {
    height: 240px;
  }
  .property-text h2 {
    font-size: 40px;
  }
  .btn-contact-now {
    padding: 2rem 1rem 2rem 1rem !important;
  }
  
  .residential-price h6 {
    text-align: center;
    font-size: 2rem !important;
  }
  .btn-contact-us a {
    font-size: 0.9rem;
  }

  .img-cont {
    height: 25vh !important;
  }
}
/* screen 530px */
@media (max-width: 530px) {
  .banner-text h2 {
    font-size: 20px;
    margin-bottom: 1rem;
  }

  .banner-text p {
    font-size: 16px;
  }
  .middle-banner-container {
    padding-left: 1rem;
  }
  .middle-banner h2 {
    color: #fff;
    max-width: 1200px;
    font-size: 26px;
  }
  .property-text h2 {
    font-size: 32px;
  }
}

/* screen-425px */
@media (max-width: 425px) {
  .owl-nav button {
    border: 1px solid black !important;
    padding: 2px 10px !important;
  }
  .owl-nav {
    top: 20%;
  }
  .owl-nav button span {
    font-size: 30px;
  }
  .about-image {
    width: 100%;
    height: 200px;
  }
  .card {
    height: 350px;
  }

  .banner-text h2 {
    font-size: 18px;
    margin-bottom: 0.5rem;
  }

  .banner-text p {
    font-size: 10px;
  }
  .middle-banner-container {
    padding-left: 0.5rem;
  }
  .middle-banner h2 {
    color: #fff;
    max-width: 1200px;
    font-size: 20px;
  }
  .property-text h2 {
    font-size: 28px;
  }
  .residential-price {
    padding: 1rem 1rem 0 1rem !important;
  }
  .btn-contact-now {
    padding: 0rem 1rem 1rem 1rem;
  }
  .btn-contact-now a {
    border: 2px solid;
    height: 4rem;
    padding: 0.3rem;
  }
}

/* --------------------------- custom button style -------------------------- */
.button-56 {
  align-items: center;
  background-color: #fff;
  border: 2px solid #f8ab3b;
  border-radius: 8px;
  box-sizing: border-box;
  color: #111;
  cursor: pointer;
  display: flex;
  font-family: Inter, sans-serif;
  font-size: 16px;
  height: 45px;
  /* width: 170px; */
  justify-content: center;
  line-height: 24px;
  max-width: 100%;
  padding: 0 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-56:after {
  background-color: #f8ab3b;
  border-radius: 8px;
  content: "";
  display: block;
  height: 45px;
  left: 0;
  width: 100%;
  position: absolute;
  top: -2px;
  transform: translate(8px, 8px);
  transition: transform 0.2s ease-out;
  z-index: -1;
}

.button-56:hover {
  /* border: 1px solid #111; */
  color: #fff;
  background-color: #f8ab3b;
}
.button-56 a:hover {
  /* border: 1px solid #111; */
  color: #fff !important;
  background-color: #f8ab3b;
}
.button-56:hover:after {
  transform: translate(0, 0);
  /* background-color: #111; */
}

.button-56:active {
  background-color: #f8ab3b;
  outline: 0;
}

.button-56:hover {
  outline: 0;
}
@media (min-width: 930px) {
  .counter-box {
    border-right: 1px solid gray;
  }
  .counters :last-child {
    border-right: none;
  }
}

@media (min-width: 768px) {
  .button-56 {
    padding: 0 30px;
  }
}

.heading h2 {
  border-bottom: 2px solid #f8ab3b52;
  display: inline-block;
  margin: 0 auto;
  font-weight: bold;
  transition: 0.3s ease;
}
.heading h1 {
  border-bottom: 2px solid #f8ab3b52;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  font-weight: bold;
  transition: 0.3s ease;
}
.heading h1:hover {
  color: #f08a5d;
}
.heading h2:hover {
  color: #f08a5d;
}
.about-banner-image img {
  width: 100%;
  height: 100%;
}
.nav-item .nav-link,
.active {
  padding: 0;
  /* box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px; */
}
.pagination {
  justify-content: center;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  padding-left: 1rem;
  gap: 1rem;
}
.social-link a {
  display: inline-block;
  padding: 15px 20px;
  color: #000;
  font-size: 30px;
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; */
  transition: 0.3s ease;
  /* background-color: #fff; */
}
.social-link a:hover {
  transform: translateY(-10px);
}
.social-link a:hover i {
  color: #f8ab3b;
}
.footer-about {
  font-size: 18px;
}
footer {
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.9)
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
}
.sticky-header {
  position: sticky;
  top: 0px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
  z-index: 100;
}
.second-about p {
  color: #f8ab3b;
}

.form-container {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
}
.form-control {
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  box-shadow: none;
}
.form-control:focus {
  border-color: #0096c7;
  box-shadow: none;
}
.btn-custom {
  background: linear-gradient(to right, #0077b6, #00b4d8);
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
}
.btn-custom:hover {
  background: linear-gradient(to right, #00b4d8, #0077b6);
}
#residential-img {
  width: 100%;
}
.residential-col-text p {
  font-size: 1.5rem
}
.residential-price-btn {
  border: 2px solid;
  width: 6rem;
  height: 4rem;
  text-align: center;
  display: flex;
  justify-content: center;
}
.residential-price-btn h5 {
  width: 1rem;
  height: 2rem;
}
.text h5 {
  background: rgb(255, 255, 143);
  padding: 4rem 2rem 4rem 2rem;
}
.new-updates {
  background-color: #d3d3d3;
}
.blog-item img {
  width: 300px;
  height: auto;
}

.card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  background-color: #f8f9fa;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.card-body {
  padding: 20px;
}
.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}
.card-text {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}
.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    transform 0.2s ease;
}
.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: scale(1.05);
}
.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
  padding: 10px 18px;
  border-radius: 5px;
  font-size: 0.95rem;
  transition: color 0.3s ease, border-color 0.3s ease,
    background-color 0.3s ease, transform 0.2s ease;
}
.btn-outline-primary:hover {
  color: white;
  background-color: #007bff;
  border-color: #007bff;
  transform: scale(1.05);
}
.icon-heart {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-heart'%3E%3Cpath d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  display: inline-block;
}
.contact-card {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  background-color: #f5f5f5;
}
.contact-card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c3e50;
}
.contact-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.contact-card ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.contact-card ul li span {
  margin-left: 8px;
}
.contact-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-size: contain;
}
.icon-user {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-user'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
}
.icon-phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-phone'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2 2h-1.23a4 4 0 0 1-3.58-4v-3a4 4 0 0 1-3.58-4H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h1.23a4 4 0 0 1 3.58 4v3a4 4 0 0 1 3.58 4h4.43a4 4 0 0 1 3.58-4v-3a4 4 0 0 1 3.58-4H20a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2z'%3E%3C/path%3E%3C/svg%3E");
}
.icon-mail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-mail'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z'%3E%3Cpolyline points='22 6 12 13 2 6'%3E%3C/polyline%3E%3C/svg%3E");
}
.highlighted-text {
  background-color: #f0f4c3;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-weight: 600;
  color: #2c3e50;
}
.card-img-top {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 200px;
  object-fit: cover;
}
.residential-price {
  padding: 2rem 1rem 0 1rem;
}
.btn-contact-now a {
  padding: 0.3rem;
  border: 2px solid;
  border-radius: 2rem;
  color: white;
  background-color: black;
  font-weight: 900;
  font-size:20px;
}
.btn-contact-us a {
  padding: 0.3rem;
  border: 2px solid;
  border-radius: 2rem;
  color: white;
  background-color: black;
  font-weight: 900;
}
.btn-contact-now {
  padding: 2rem 1rem 0 1rem;
}
.residential-item {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}
.live-your-property {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}
.live-your-property1 {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}
.residential-price-subitem {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.img-cont {
  height: 50vh;
  position: relative;
}
.img-cont::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
.img-cont img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.img-text-cont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 38px;
  z-index: 2;
  width: 85%;
  text-align: center;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* black with 50% opacity */
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .img-text-cont {
    font-size: 23px;
  }
}

@media screen and (max-width: 450px) {
  .img-text-cont {
    font-size: 20px;
  }
}
