@import url('../css/bootstrap.css');
@import url('../css/jquery.fancybox.min.css');
@import url('../css/slick.css');
@import url('https://netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');


body {
  font-family: 'Quicksand', sans-serif;
  overflow-x: hidden;
}


:root {
  /*** theme colors *   **/
  --primary-color: #e2c061;
  --secondary-color: #D8D701;
  --theme-white: #ffffff;
  --theme-black: #000000;
}

* {
  margin: 0px;
  padding: 0px;
}

.p-100 {
  padding: 100px 0px;
}

::selection {
  background-color: var(--theme-black);
  color: var(--primary-color);
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--theme-black);
}

.theme-group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0px;
}

.theme-btn {
  color: var(--theme-white);
  border: 1px solid var(--primary-color);
  padding: 10px 22px;
  text-decoration: none;
  transition: all ease 0.4s;
  font-size: 17px;
  font-weight: 400;
  background: var(--primary-color);
  border-radius: 10px;
}

.theme-btn:hover {
  text-decoration: none;
  transform: translateY(-5px);
  border: 1px solid var(--theme-white);
  color: var(--theme-white);
}

.find-perfect__car,
.main_for_rent,
.inner_banner_content h1 {
  -webkit-animation: mymove 2s ease 0.5s infinite;
  animation: mymove 2s ease 0.5s infinite;
}

@keyframes mymove {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Header Start */

.top_header_icons ul {
  display: flex;
  list-style: none;
  gap: 15px;
  justify-content: end;
  margin: 0;
  padding: 0;
}

.menu_fixed {
  top: 0;
  background: var(--theme-black);
}



header.menu_fixed .navigation ul li a {
  color: var(--primary-color);
}

header.menu_fixed .logo {
  width: 140px;
}

.top_header_icons ul li a {
  color: var(--theme-black);
  background: var(--primary-color);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 19px;
  transition: 0.50s ease;
}

.top_header_icons ul li a:hover {
  color: var(--primary-color);
  background: transparent;
  border: 1px solid var(--primary-color);
  transform: translateY(-6px);
  transition: 0.50s ease;
}

header {
  background: linear-gradient(90deg, #181818 0%, #232323 100%);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border-bottom: 2px solid var(--primary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 22px 0 12px 0; /* more vertical space */
}

.main_top_header {
  background: black;
  color: var(--primary-color);
  padding: 10px 0px;
  margin-bottom: 0px;
}

.top_header_content a {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: none;
  color: var(--primary-color);
}

.logo img {
  width: 100%;
  height: 100%;
}

.navigation ul {
  margin: 0;
  display: flex;
  list-style: none;
  padding: 0;
  gap: 30px;
}

.navigation ul li a {
  color: #fff !important;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.18);
  padding: 12px 0;
  transition: color 0.3s;
  position: relative;
  background: none;
}

.navigation ul li a::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary-color);
  transition: 0.4s;
  border-radius: 2px;
}

.navigation ul li a:hover,
.navigation ul li a:focus {
  color: var(--primary-color) !important;
}

.navigation ul li a:hover:before,
.navigation ul li a:focus:before {
  width: 100%;
}

header .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 0;
}

.main_top_header {
  margin-bottom: 0px;
}

/* Dropdown Start */
.dropbtn {
  /* background-color: #04AA6D; */
  color: white;
  /* padding: 16px; */
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--primary-color);
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  top: 20px;
  left: 0px;
}

.dropdown-content a {
  color: var(--theme-black) !important;
  border-bottom: 1px solid var(--theme-black);
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}


button.dropbtn {
  padding: 0;
  background: transparent;
  color: var(--primary-color);
}

/* Dropdown End */

/* Header End */
/* Banner Start */
.main_banner video {
  width: 100%;
  height: 100%;
  opacity: 0.50;
}

.main_banner {
  background-color: black;
}

.banner_content {
  top: 60%;
  left: 0;
  opacity: 11111;
  z-index: 9;
  position: absolute;
  text-align: center;
  width: 100%;
  padding: 20px;
  display: none;
}

.banner_content h1 {
  font-size: 70px;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 10px 0px 30px var(--theme-black);
  color: var(--primary-color);
}

.banner_content p {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 10px 0px 30px var(--theme-black);
}


.social {
  position: fixed;
  top: 50%;
  left: 20px;
  z-index: 99;
  transform: translateY(-50%);
  width: 40px;
}

.social ul {
  list-style-type: none;
  padding: 0;
  transform: translatex(-270px);
}

.social ul li {
  display: block;
  margin: 5px;
  background-color: var(--primary-color);
  width: 300px;
  text-align: right;
  padding: 10px;
  border-radius: 0 30px 30px 0;
  transition: all 1s;
}

.social ul li:hover {
  transform: translatex(110px);
}

.social ul li.twitter:hover {
  background-color: #55acee;
}

.social ul li.facebook:hover {
  background-color: #3b5999;
}

.social ul li.google-plus:hover {
  background-color: #dd4b39;
}

.social ul li.instagram:hover {
  background-color: #e4405f;
}

.social ul li a {
  color: white;
  text-decoration: none;
}

.social ul li i {
  text-align: center;
  margin-left: 14px;
  color: var(--primary-color);
  background-color: var(--theme-black);
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  transform: rotate(0deg);
}

.social ul li:hover i {
  transform: rotate(360deg);
  transition: all 1s;
}

.find-car__box select option {
  background: var(--theme-black);
  color: var(--primary-color);
}

/* Banner End */
/* search by reference start */
.find-car__box {
  width: 20%;
}

.find-perfect__car a.theme-btn::before {
  display: none;
}

.find-perfect__car {
  display: flex;
  justify-content: center;
  background: black;
  padding: 60px 30px;
  margin-top: -50px;
  position: relative;
  align-items: center;
  box-shadow: 0px 12px 35.72px 2.28px rgba(0, 0, 0, 0.35);
  border-radius: 40px;
  border: 2px solid var(--theme-black);
}

.find-car__box select {
  background: transparent;
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: center;
  border: 1px solid var(--primary-color);
  outline: none;
  width: 90%;
  border-radius: 10px;
  height: 50px;
  padding: 0px 10px;
  margin: 0px auto;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--primary-color);
}

.find-perfect__car a {
  color: black;
  border: 1px solid var(--theme-black);
  width: 90%;
  display: block;
  text-align: center;
  margin: 0 auto;
  height: 50px;
  font-weight: 600;
}

.find-perfect__car_main {
  text-align: center;
  margin-top: -56px;
  position: relative;
}

.find-perfect__car_main h2 {
  color: white;
  font-size: 33px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}


/* search by reference End */
/* Properties for sale start */
.properties_for_sale_heading h2 {
  font-size: 50px;
  text-transform: capitalize;
  position: relative;
}

.properties_for_sale_heading p {
  font-size: 16px;
  width: 40%;
  margin: 0 auto;
}

.properties_for_sale_heading {
  color: var(--theme-black);
  margin-bottom: 50px;
}

.properties_for_sale_card_img img {
  width: 100%;
  height: 300px;
}

.property_sale_slider_img button.slick-prev.slick-arrow {
  left: 5px;
  z-index: 1;
}

.property_sale_slider_img button.slick-next.slick-arrow {
  right: 10px;
}

.property_sale_slider_img .slick-next:before {
  content: "\f061";
  font-family: 'FontAwesome';
  color: var(--primary-color);
  opacity: 1;
  background: var(--theme-black);
  padding: 5px;
  border-radius: 50%;
}

.property_sale_slider_img .slick-prev:before {
  content: "\f060";

  font-family: 'FontAwesome';
  color: var(--primary-color);
  opacity: 1;
  background: var(--theme-black);
  padding: 5px;
  border-radius: 50%;
}

.properties_for_sale_card {
  position: relative;
  margin: 0px 5px;
  height: 530px;
  border: 5px solid var(--primary-color);
  border-radius: 5px;
}

.properties_for_sale_card_img_sale {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 40px;
}

.properties_for_sale_card_img_sale a h6 {
  color: var(--theme-black);
  background: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  padding: 5px 10px;
  margin: 0;
}

.properties_for_sale_card_img_pricing {
  position: absolute;
  top: 45%;
  left: 10px;
  border-radius: 40px;
  display: flex;
  align-items: center;
}

.properties_for_sale_card_img_pricing h6 {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 10px;
  margin: 0;
  background: var(--theme-black);
}

.properties_for_sale_card_img_sale a {
  text-decoration: none;
}

.properties_for_sale_card_img_icons ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
  align-items: center;
  margin: 0px 10px;
}

.properties_for_sale_card_img_icons ul li a {
  color: var(--primary-color);
  background: var(--theme-black);
  padding: 10px 10px;
}

.properties_for_sale_card_img_icons .btn:hover {
  color: var(--primary-color);
  background: black;

}

.properties_for_sale_card_img_icons a.btn {
  border: none;
  border-radius: none !important;
  background-color: none !IMPORTANT;
}

.properties_for_sale_card_content {
  color: var(--theme-black);
  padding: 10px 5px;
}

.properties_for_sale_card_content h2 {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 5px 0px;
}

.properties_for_sale_card_content p {
  color: gray;
  margin: 0;
}

.properties_for_sale_card_content_icons ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-around;
  color: var(--theme-black);
  margin: 10px 0px;
}

.properties_for_sale_card_content_icons ul li {
  font-size: 15px;
  font-weight: 500;
}

.properties_for_sale_card_content_icons ul li i {
  color: var(--primary-color);
  margin-right: 5px;
  font-size: 22px;
}

.properties_for_sale_card_content_line {
  height: 2px;
  width: 100%;
  background: var(--primary-color);
}

.properties_for_sale_card_content_account ul {
  display: flex;
  list-style: none;
  padding: 0;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0px;
}

.properties_for_sale_card_content_account ul li a {
  text-decoration: none;
  font-weight: 500;
  color: gray;
}

.properties_for_sale_card_content_account ul li i {
  margin-right: 10px;
  font-size: 24px;
  color: gray;
}

.properties_for_sale_card_content_account ul li {
  display: flex;
  align-items: center;
}

.properties_for_sale_card_content_account ul li span {
  color: gray;
}

.main_property_sale_card {
  height: 550px;
}

.properties_for_sale_heading h2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 31%;
  width: 200px;
  height: 2px;
  background: var(--primary-color);
}

.properties_for_sale_heading h2::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 31%;
  width: 200px;
  height: 2px;
  background: var(--primary-color);
}

/* Properties for sale end */
/* Choose Your Property Start */
.choose_your_property_heading h3 {
  font-size: 50px;
  text-transform: capitalize;
  position: relative;
}

.choose_your_property_heading {
  color: var(--theme-black);
  margin-bottom: 50px;
}

.choose_your_property_heading p {
  font-size: 16px;
  width: 40%;
  margin: 0 auto;
}

.choose_your_property_heading h3::before {
  position: absolute;
  content: "";
  top: 0;
  left: 23%;
  width: 300px;
  height: 2px;
  background: var(--primary-color);
}

.choose_your_property_heading h3::after {
  position: absolute;
  content: "";
  bottom: -5%;
  right: 22%;
  width: 300px;
  height: 2px;
  background: var(--primary-color);
}

.choose_your_property_card_img img {
  width: 100%;
  height: 300px;
}

.main_choose_your_property {
  padding-bottom: 100px;
}

.choose_your_property_card {
  position: relative;
  transition: 0.50s ease;

}

.choose_your_property_card:hover {
  transform: scale(1.1);
  transition: 0.50s ease;
}

.choose_your_property_card_title {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--theme-white);
  text-align: center;
  z-index: 2;
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  width: auto;
}


.choose_your_property_card_btn {
  position: absolute;
  bottom: 20px;
  left: 40px;
}

.choose_your_property_card_btn ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 100px;
}

.choose_your_property_card_btn li a {
  text-decoration: none;
  color: var(--theme-white);
  font-size: 20px;
  font-weight: 600;
  padding: 10px 10px;
}

.choose_your_property_card_title h4 {
  color: var(--theme-white);
  font-weight: 600;
  font-size: 20px;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.choose_your_property_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.3));
  transition: 0.3s ease;
}

.choose_your_property_card:hover::before {
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.4));
}

.choose_your_property_card.card3 img {
  width: 100%;
  height: 616px;
}

.main_featured_properties {
  display: none;
}

/* Find Us Here End */
/* Gallery Start */

.gallery_sec_img img {
  width: 100%;
  height: 400px;
  object-fit: contain;
}

.gallery_sec_img {
  position: relative;
}

.gallery_sec_img i {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #e2c06178;
  color: var(--theme-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  opacity: 0;
  transition: all 350ms ease-in-out;
}

.gallery_sec_img:hover i {
  opacity: 1;
}

.gallery_sec .slick-slide {
  padding: 2px;
}

.gallery_sec button.slick-prev.slick-arrow {
  top: -8%;
  left: 88%;
}

.gallery_sec button.slick-prev.slick-arrow::before {
  content: "";
  background: url(../images/arrow-removebg-preview.png) center center/cover no-repeat;
  height: 30px;
  width: 40px;
  display: flex;
  opacity: 1;
  transform: rotate(65deg);
}

.gallery_sec button.slick-next.slick-arrow {
  top: -8%;
  right: 7%;
}

.gallery_sec button.slick-next.slick-arrow::before {
  content: "";
  background: url(../images/arrow-removebg-preview.png) center center/cover no-repeat;
  height: 30px;
  width: 40px;
  display: flex;
  opacity: 1;
  transform: rotate(250deg);
}

/* Gallery End */
/* Testimonial Start */
.testimonial_bg {
  background: linear-gradient(to bottom, rgb(0 0 0 / 75%), rgb(0 0 0 / 76%)), url(../images/testimonial-bg.jpeg) center center/cover no-repeat;
  color: var(--primary-color);
  /* display: flex; */
  align-items: center;
  padding: 100px 0px;
  display: none;
}

.testimonial_heading h5 {
  font-size: 50px;
  text-transform: capitalize;
  position: relative;
  color: var(--primary-color);
}

.testimonial_heading p {
  font-size: 16px;
  width: 40%;
  margin: 0 auto;
}

.testimonial_heading h6 {
  font-size: 20px;
  text-transform: capitalize;
  position: relative;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.testimonial_heading {
  margin-bottom: 50px;
}

.testimonial_card {
  background: var(--theme-black);
  padding: 30px;
  border-radius: 50px 0px 50px 0px;
  transition: 0.50s ease;
  margin: 0px 10px;
  border: 1px solid #e2c0616b;
  text-align: center;
}

.testimonial_card_icon img {
  background: var(--primary-color);
  width: 70px;
  padding: 10px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonial_card_content h6 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 500;
}

.testimonial_card_content p {
  font-size: 14px;
  margin: 20px 0px;
}


.testimonial_card_icon h6 {
  font-size: 20px;
  text-transform: capitalize;
  margin: 0;
}

.testimonial_card_icon span {
  font-size: 12px;
}

.testimonial_card:hover {
  background: var(--primary-color);
  color: var(--theme-black);
  transition: 0.50s ease;
}

.testimonial_card:hover .testimonial_card_icon img {
  border: 1px solid black;
}

.testimonial_heading h5::before {
  position: absolute;
  content: "";
  top: 0;
  left: 32%;
  width: 220px;
  height: 2px;
  background: var(--primary-color);
}


.testimonial_heading h5::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 31%;
  width: 200px;
  height: 2px;
  background: var(--primary-color);
}

/* Testimonial End */
/* Leave as a review start */
.main_leave_as_a_review {

  background: var(--theme-black);

  border: 3px solid var(--primary-color);

  color: var(--primary-color);

  display: flex;

  align-items: center;

  padding: 50px 0px;
}

.leave_as_a_review_heading h6 {
  font-size: 50px;
  text-transform: capitalize;
  position: relative;
  color: var(--primary-color);
}

.leave_as_a_review_heading p {
  font-size: 16px;
  width: 70%;
  margin: 0;
}

.leave_as_a_review_heading h6::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0%;
  width: 220px;
  height: 2px;
  background: var(--primary-color);
}

.leave_as_a_review_heading h6::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 31%;
  width: 200px;
  height: 2px;
  background: var(--primary-color);
}

.leave_as_a_review_img a img {
  width: 100%;
  height: 100%;
  background: #e2c06142;
  border-radius: 50px 0px 50px 0px;
}

/* Leave as a review end */
/* Explore AReas Start */
.explore_areas_heading h6 {
  font-size: 50px;
  text-transform: capitalize;
  position: relative;
  color: var(--them-black);
}

.explore_areas_heading p {
  font-size: 16px;
  width: 40%;
  margin: 0 auto;
}

.sec-our-work {
  /* padding: 100px 0; */
  position: relative;
}

.services-bg,
.our-work-bg {
  position: absolute;
  bottom: 0;
}

.sec-our-work .custom-row {
  margin-left: -5.5px;
  margin-right: -5.5px;
}

.sec-our-work [class*="col-"] {
  padding-left: 5.5px;
  padding-right: 5.5px;
}

.card.card-our-work {
  border: none;
  margin-bottom: 5.5px;
  cursor: pointer;
}

.sec-our-work .custom-row .card.card-our-work {
  height: 668px;
  flex-direction: unset;
}

.sec-our-work .custom-row .card.card-our-work img {
  object-fit: cover;
}

.card.card-our-work .card-body {
  position: absolute;
  background: #0000009e;
  height: 90%;
  width: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  backdrop-filter: blur(3.5px);
  /* padding: 21px 120px 20px 40px; */
  transition: all .5s ease-in-out;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.card.card-our-work .card-title {
  font-size: 46px;
  letter-spacing: -1.848px;
  font-weight: 700;
  font-family: var(--font-league);
  text-transform: uppercase;
  line-height: 1;
  color: var(--primary-color);
}

.card.card-our-work .card-text {
  font-size: 14px;
}

.card.card-our-work .btn-primary {
  color: white;
}

.card.card-our-work:hover .card-body {
  opacity: 1;
  transition: all .5s ease-in-out;
}

.card.card-our-work:hover .card-body p {
  color: var(--primary-color);
}

.explore_areas_heading {
  margin-bottom: 50px;
}

.explore_areas_heading h6::before {
  position: absolute;
  content: "";
  top: 0;
  left: 23%;
  width: 300px;
  height: 2px;
  background: var(--primary-color);
}

.explore_areas_heading h6::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 31%;
  width: 200px;
  height: 2px;
  background: var(--primary-color);
}

/* Explore AReas End */
/* Meet Our Team Start */
.profile-card {
  position: relative;
  overflow: hidden;
  margin: 0px 10px;
}

.profile-card .profile-img img {
  width: 100%;
  height: auto;
}

.profile-card .profile-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 40%;
  border: 3px solid var(--primary-color);
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transform: scale(1, 1);
  transition: all 0.50s linear;
}

.profile-card .profile-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 40%;
  border: 3px solid #222;
  border-left: 3px solid transparent;
  border-top: 3px solid transparent;
  transition: all 0.50s linear;
}

.profile-card:hover .profile-content:before {
  top: 20px;
  left: 20px;
}

.profile-card:hover .profile-content:after {
  bottom: 20px;
  right: 20px;
}

.profile-card .profile-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 40%;
  border: 3px solid var(--primary-color);
  border-left: 3px solid transparent;
  border-top: 3px solid transparent;
  transform: scale(1, 1);
  transition: all 0.50s linear;
}

.profile-card .profile-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50% 4%;
  text-align: center;
  background-color: rgb(0 0 0 / 70%);
}

.profile-card .profile-content .title {
  font-size: 34px;
  color: var(--primary-color);
  opacity: 0;
  letter-spacing: 2px;
  margin-top: 200px;
  text-transform: uppercase;
  transform: translateY(-100px);
  transition: all 900ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.20s;
}

.profile-card:hover .title {
  opacity: 1;
  transform: translateY(-10px);
}

.profile-card:hover .title::after {
  content: "";
  display: block;
  width: 50%;
  margin: 10px auto;
  border-bottom: 2px solid var(--primary-color);
}

.profile-card .profile-content .title>a {
  display: block;
  margin: 5px 0;
  font-size: 18px;
  text-transform: capitalize;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
}

.profile-card .profile-content .social-link {
  margin: 20px 0;
  padding: 0;
  opacity: 0;
  transform: translateY(100px);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.20s;
}

.profile-card:hover .social-link {
  opacity: 1;
  transform: translateY(0);
}

.profile-card .profile-content .social-link li {
  display: inline-block;
  list-style: none;
  margin: 0 4px;
}

.profile-card .profile-content .social-link li a {
  color: var(--theme-black);
  width: 30px;
  height: 25px;
  line-height: 24px;
  text-align: center;
  border-radius: 5px;
  background-color: var(--primary-color);
  text-decoration: none;
}

.our_team_heading h6 {
  font-size: 50px;
  text-transform: capitalize;
  position: relative;
  color: var(--them-black);
}

.our_team_heading p {
  font-size: 16px;
  width: 40%;
  margin: 0 auto;
}

.our_team_heading {
  margin-bottom: 50px;
}

.our_team_slider button.slick-prev.slick-arrow {
  top: -8%;
  left: 88%;
}

.our_team_slider .slick-prev:before {
  content: "";
  background: url(../images/arrow-removebg-preview.png) center center/cover no-repeat;
  height: 30px;
  width: 40px;
  display: flex;
  opacity: 1;
  transform: rotate(65deg);
}

.our_team_slider button.slick-next.slick-arrow {
  top: -8%;
  right: 7%;
}

.our_team_slider .slick-next:before {
  content: "";
  background: url(../images/arrow-removebg-preview.png) center center/cover no-repeat;
  height: 30px;
  width: 40px;
  display: flex;
  opacity: 1;
  transform: rotate(250deg);
}

.our_team_heading h6::before {
  position: absolute;
  content: "";
  top: 0;
  left: 23%;
  width: 300px;
  height: 2px;
  background: var(--primary-color);
}

.our_team_heading h6::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 31%;
  width: 200px;
  height: 2px;
  background: var(--primary-color);
}

/* Meet Our Team end */
/* Approved Broker Start */
.approved_broker_bg {
  background: linear-gradient(to right, rgb(0 0 0 / 89%), rgb(0 0 0 / 35%)), url(../images/approved-broker-bg.jpg) center bottom/cover no-repeat;
  height: 400px;
  margin-top: 100px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.approved_broker_heading h6::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 300px;
  height: 2px;
  background: var(--primary-color);
}

.approved_broker_heading h6::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 31%;
  width: 200px;
  height: 2px;
  background: var(--primary-color);
}

.approved_broker_logo img {
  filter: invert(1);
}

.approved_broker_logo .vinchitore-logo {
  filter: invert(0);
}

.approved_broker_logo {
  background: black;
}

.approved_broker_heading h6 {
  font-size: 50px;
  text-transform: capitalize;
  position: relative;
}

.approved_broker_heading p {
  font-size: 16px;
}

.approved_broker_logo img {
  width: 200px;
}

img.subha_logo {
  height: 260px;
}

.approved_broker_logo .slick-next:before {
  background: url(../images/approved-arrow.png) center center/contain no-repeat;
  height: 50px;
  width: 50px;
  content: "";
  display: flex;
  opacity: 1;
}

.approved_broker_logo .slick-prev:before {
  background: url(../images/approved-arrow.png) center center/contain no-repeat;
  height: 50px;
  width: 50px;
  content: "";
  display: flex;
  opacity: 1;
}

.approved_broker_logo button.slick-prev.slick-arrow {
  transform: rotate(180deg);
  top: 57%;
}

/* Approved Broker End */
/* Footer Start */
footer {
  background: var(--theme-black);
  color: var(--primary-color);
  padding: 100px 0px 30px;
}

.footer_logo img {
  width: 150px;
}

.footer_headings_insta a i {
  color: var(--theme-black);
  background: var(--primary-color);
  padding: 5px 8px;
  border-radius: 50%;
}

.footer_logo p {
  margin-top: 40px;
  font-size: 18px;
}

.footer_headings_insta a i:hover {
  background: var(--theme-black);
  color: var(--primary-color);
  transition: 0.50s ease;
}

.footer_headings h6 {
  font-size: 25px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 40px;
}

.footer_headings ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_headings ul li a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  margin-left: 10px;
  transition: all ease 0.5s;
}

.footer_headings_insta a {
  display: flex;
  gap: 20px;
  text-decoration: none;
  font-size: 35px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 35px;
  color: var(--primary-color);
}

.footer_headings_insta a h6 {
  font-size: 30px;
  margin: 0;
}

.footer_headings ul i {
  font-size: 24px;
}

.footer_headings ul li {
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: capitalize;
}

.footer_headings_insta_img a img {
  width: 100px;
  height: 100px;
}

.footer_headings_insta_img {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.footer_headings ul li a:hover {
  opacity: 0.8;
}

/* Footer End */
/* Bottom Footer Start */
.bottom_footer {
  background: var(--primary-color);
  color: var(--theme-black);
  padding: 10px 0px;
}

.bottom_footer_icons ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: end;
  gap: 10px;
}

.bottom_footer_icons ul li a {
  color: var(--primary-color);
  background: var(--theme-black);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 19px;
  transition: 0.50s ease;
}

.bottom_footer p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.bottom_footer p span {
  background: var(--theme-black);
  color: var(--primary-color);
  padding: 5px;
}

.bottom_footer_icons ul li a:hover {
  border: 1px solid var(--theme-black);
  background: transparent;
  color: var(--theme-black);
}

/* Bottom Footer End */
/* Scroll top  button  start */
button.back-to-top.show {
  position: fixed;
  z-index: 99999999999999;
  background: var(--primary-color);
  right: 50px;
  bottom: 50px;
  border: none;
  padding: 10px;
  display: none;
}

button.back-to-top.show i {
  font-size: 40px;
  background: var(--theme-black);
  color: var(--primary-color);
  padding: 2px;
}

/* Scroll top  button  end */
/* Inner Banner Start */
.inner_banner_bg {
  background: linear-gradient(to bottom, rgb(0 0 0 / 75%), rgb(0 0 0 / 76%)), url(../images/inner-banner-bg.jpg) center center/cover no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--primary-color);
}

.inner_banner_content ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.inner_banner_content ul li a {
  color: var(--primary-colr);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
}

.inner_banner_content h1 {
  font-size: 70px;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 10px 0px 30px var(--theme-black);
  color: var(--primary-color);
}

/* Inner Banner End */
/* About Us Start */
/* Who We Are Start */
.who_we_are_content h2 {
  font-size: 40px;
  text-transform: capitalize;
  position: relative;
  margin: 30px 0px;
  font-weight: 600;
}

.who_we_are_content p {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

/* Who We Are End */
/* Meet Our MAnagement Start */
.meet_our_management_heading h3 {
  font-size: 50px;
  text-transform: capitalize;
  position: relative;
}

.employee-container {
  margin-top: 80px;
}

.employee {
  width: 100%;
  background-color: black;
  margin: 10px auto;
  display: block;
  overflow: hidden;
  height: 400px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 31px -19px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 31px -19px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 31px -19px rgba(0, 0, 0, 0.75);
}

.employee:hover>.employee-image {
  margin-top: -100px;
}

.employee-image {
  background-color: #fff;
  height: 400px;
  width: 100%;
  transition: 0.5s;
}

.employee-image img {
  height: 100%;
}

.employee-name {
  color: #fff;
  font-weight: bold;
  padding: 5px;
}

.employee-name h1 {
  font-size: 30px;
}

.employee-name span {
  font-size: 20px;
  color: var(--primary-color);
  padding: 0px;
}

.employee-social-link ul li {
  position: relative;
  bottom: -120px;
}

.employee-social-link ul {
  text-align: center;
  list-style: none;
}

.employee-social-link ul li {
  display: inline-block;
  margin: 7px;
  background-color: #000;
  padding: 10px;
  border-radius: 50%;
  line-height: 0.1;
  margin-left: -5px;
}

.employee-social-link i {
  font-size: 18px;
  color: var(--primary-color);
  animation-name: rotate-icon;
}

.employee-social-link ul li:nth-child(1) {
  transition: 1.0s;
}

.employee-social-link ul li:nth-child(2) {
  transition: 1.3s;
}

.employee-social-link ul li:nth-child(3) {
  transition: 1.6s;
}

.employee-social-link ul li:nth-child(4) {
  transition: 1.9s;
}

.employee-social-link ul li:nth-child(5) {
  transition: 2.2s;
}

.employee:hover>.employee-details .employee-social-link ul li {
  bottom: 250px;
}

.testimonial_bg.about {
  margin: 100px 0px;
}

/* Meet Our MAnagement End */
/* About Us End */
/* Product Detail Start */
.product_detail_navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
}

.product_detail_navigation ul i {
  margin-left: 7px;
}

.product_detail_navigation ul li a {
  font-size: 14px;
  color: var(--theme-black);
  text-decoration: none;
  font-weight: 500;
}

.product_detail_navigation ul li {
  font-size: 14px;
  color: var(--theme-black);
  font-weight: 500;
}

.product_detail_navigation h2 {
  font-size: 30px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 20px 0px;
}

.product_detail_navigation_btn a {
  color: var(--theme-black);
  background: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  padding: 5px 10px;
  margin: 0;
  text-decoration: none;
}

.product_detail_navigation_map {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 30px 0px;
}

.product_detail_navigation_map a {
  font-size: 30px;
  color: var(--primary-color);
  background: var(--theme-black);
  padding: 0px 10px;
}

.product_detail_navigation_map span {
  font-size: 20px;
  font-weight: 500;
}

/* Thubnail Slider Start */
.item-slick.slick-slide.slick-current.slick-active {
  outline: none !important
}

.slider-for {
  margin-bottom: 15px;
}

.slider-for img {
  width: 100%;
  min-height: 100%;
}

.slider-nav {
  margin: auto;
}

.slider-nav .item-slick {
  max-width: 240px;
  margin-right: 15px;
  outline: none !important;
  cursor: pointer;
}

.slider-nav .item-slick img {
  max-width: 100%;
  background-size: cover;
  background-position: center;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 50;
  margin-top: -12px;
}

/* Thubnail Slider End */
.main_overview {
  background: var(--theme-black);
  color: var(--primary-color);
  padding: 30px 30px;
  border-radius: 10px;
  margin: 20px 0px;
}

.overview_heading ul {
  display: flex;
  list-style: none;
  margin: 0;
  justify-content: space-between;
  padding: 0;
}

.overview_heading ul li {
  font-size: 20px;
  font-weight: 100;
}

.overview_heading ul li span {
  font-weight: 700;
}

.overview_property_type p {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.overview_bottom_line {
  background: var(--primary-color);
  height: 1px;
  margin: 20px 0px;
}

.overview_content ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.overview_content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  text-align: left;
  font-weight: 600;
  line-height: 20px;
}

.overview_content ul li i {
  font-size: 20px;
  background: var(--primary-color);
  color: var(--theme-black);
  padding: 5px;
}

.overview_property_type span {
  font-size: 20px;
  font-weight: 100;
}

.main_product_detail_description {
  background: var(--theme-black);
  color: var(--primary-color);
  padding: 30px 30px;
  border-radius: 10px;
  margin: 20px 0px;
}

.main_product_detail_description h2 {
  font-size: 20px;
  font-weight: 100;
}

.main_product_detail_description p {
  font-size: 17px;
  font-weight: 300;
  margin: 30px 0px;
}

.main_product_detail_description ul {
  padding: 0;
  margin: 20px 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
  list-style: circle;
}

.main_product_detail_description span {
  font-weight: 900;
}

.product_detail_description_bottom {
  height: 1px;
  background: var(--primary-color);
  margin: 40px 0px;
}

.main_product_detail_addresss {
  background: var(--theme-black);
  color: var(--primary-color);
  padding: 30px 30px;
  border-radius: 10px;
  margin: 20px 0px;
}




.product_detail_tittle_bottom {
  background: var(--primary-color);
  height: 1px;
  margin: 40px 0px;
}

.main_product_detail_addresss ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 10px 0px;
  justify-content: space-between;
  border-bottom: 1px solid;
  line-height: 30px;
}

.main_product_detail_addresss ul li span {
  font-weight: 700;
}

.product_details_map {
  margin: 50px 0px;
}

.main_product_detail_details {
  background: var(--theme-black);
  color: var(--primary-color);
  padding: 30px 30px;
  border-radius: 10px;
  margin: 20px 0px;
}

.main_product_detail_details ul {
  display: flex;
  list-style: none;
  padding: 0;
  justify-content: space-between;
}

.main_product_detail_details ul li a {
  text-decoration: none;
  color: var(--primary-color);
}

.main_product_detail_details_bottom {
  background: var(--primary-color);
  height: 1px;
  margin: 40px 0px;
}

.main_product_detail_details ul li span {
  font-weight: 700;
}

.main_product_detail_details ul li {
  font-size: 15px;
}

.main_product_detail_details_property {
  background: var(--primary-color);
  color: var(--theme-black);
  padding: 40px 20px;
  border-radius: 20px;
}

.main_product_detail_reviews ul {
  display: flex;
  list-style: none;
  padding: 0;
  justify-content: space-between;
  margin: 50px 0px;
}

.main_product_detail_leave_reviews {
  background: var(--theme-black);
  color: var(--primary-color);
  padding: 30px 30px;
  border-radius: 10px;
  margin: 20px 0px;
}

.main_product_detail_leave_reviews h2 {
  font-size: 16px;
}

.main_product_detail_leave_reviews_bottom {
  background: var(--primary-color);
  height: 1px;
  margin: 40px 0px;
}

.main_product_detail_leave_reviews form input {
  width: 100%;
  outline: none;
  border: none;
  padding: 10px;
  border-radius: 10px;
  background: var(--primary-color);
}

.main_product_detail_leave_reviews form select {
  width: 100%;
  outline: none;
  border: none;
  padding: 10px;
  border-radius: 10px;
  background: var(--primary-color);
}

.main_product_detail_leave_reviews form textarea {
  width: 100%;
  outline: none;
  margin-bottom: 30px;
  border: none;
  padding: 10px;
  border-radius: 10px;
  background: var(--primary-color);
}

.main_product_detail_leave_reviews form label {
  font-size: 16px;
  font-weight: 500;
  margin: 30px 0px 10px;
}

.main_product_detail_leave_reviews form input::placeholder {
  color: var(--theme-black);
}

.main_product_detail_addresss ul li {
  font-size: 20px;
}

.main_product_detail_details ul li {
  font-size: 15px;
}

.product_details_form_icons ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
  justify-content: end;
}

.product_details_form_icons ul a {
  font-size: 30px;
  color: var(--primary-color);
  background: var(--theme-black);
  padding: 5px 10px;
  border-radius: 5px;
}

.product_details_form_icons h1 {
  font-size: 30px;
  font-weight: 700;
  text-align: end;
  margin: 20px 0px;
  color: var(--theme-black);
}

.product_details_form_person_tittle ul {
  display: flex;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 30px;
}

.product_details_form_person_tittle ul img {
  width: 100px;
  background: var(--primary-color);
  border-radius: 50%;
}

.main_product_details_form_person {
  background: var(--theme-black);
  color: var(--primary-color);
  padding: 30px 20px;
  border-radius: 20px;
  border: 3px solid var(--primary-color);
}

.product_details_form_person_tittle ul li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
}

.product_details_form_person_tittle ul a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main_product_details_form_person input {
  width: 100%;
  padding: 10px;
  margin: 15px 0px;
  outline: none;
  background: var(--primary-color);
  border-radius: 10px;
  border: none;
}

.main_product_details_form_person input::placeholder {
  color: var(--theme-black);
  font-size: 13px;
  font-weight: 500;
}

.main_product_details_form_person textarea {
  width: 100%;
  padding: 10px;
  margin: 15px 0px;
  outline: none;
  background: var(--primary-color);
  border-radius: 10px;
}

.main_product_details_form_person select {
  width: 100%;
  padding: 10px;
  margin: 15px 0px;
  outline: none;
  background: var(--primary-color);
  border-radius: 10px;
}

.product_details_form_person_checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product_details_form_person_checkbox input {
  width: 30px;
}



.main_product_details_form_person a.theme-btn {
  display: flex;
  justify-content: center;
  width: 100%;
}

.product_details_form_person_checkbox p {
  margin: 0;
}

/* Product Detail End */
/* Our Agent Start */
.our_agent_heading h2 {
  font-size: 50px;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 50px;
}



.our_agent_card_content span {
  font-size: 20px;
  font-weight: 600;
}

.our_agent_card_content_icons a.theme-btn {
  color: var(--theme-black);
  border: 1px solid var(--theme-black);
  font-weight: 500;
}

.main_our_agent {
  position: relative;
  /* margin: 0 auto; */
  /* width: 100%; */
  /* text-align: center; */
  /* max-width: 300px; */
  /* margin-bottom: 30px; */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.main_our_agent_card .team-img {
  position: relative;
  font-size: 0;
  color: #353535;
}

.main_our_agent_card .team-img img {
  width: 100%;
  height: auto;
}

.main_our_agent_card .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e2c06199;
  transition: all .3s;
  font-size: 0;
  z-index: 1;
  opacity: 0;
}

.main_our_agent_card:hover .team-social {
  opacity: 1;
}

.main_our_agent_card .team-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  padding: 11px 0 10px 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 16px;
  text-align: center;
  color: #ffffff;
  transition: all .5s;
  margin-top: 100px;
}

.team .team-social a.social-tw {
  background: #00acee;
}

.team .team-social a.social-fb {
  background: #3b5998;
}

.team .team-social a.social-li {
  background: #0e76a8;
}

.team .team-social a.social-in {
  background: #3f729b;
}

.team .team-social a.social-yt {
  background: #c4302b;
}

.team .team-social a:last-child {
  margin-right: 0;
}

.main_our_agent_card:hover .team-social a {
  margin-top: 0;
  font-size: 30px;
  color: var(--primary-color);
  background: var(--theme-black);
  padding: 5px;
}



.main_our_agent_card .team-content {
  padding: 10px 10px;
  text-align: center;
}

.main_our_agent_card .team-content h2 {
  font-size: 28px;
  font-weight: 900;
  margin: 0;
  color: var(--primary-color);
}

.main_our_agent_card .team-content h3 {
  margin: 0px;
  font-size: 16px;
  /* font-weight: 900; */
  color: var(--primary-color);
  font-style: italic;
}

.main_our_agent_card .team-content p {
  font-size: 16px;
  margin: 10px 0px;
  font-weight: 500;
}

.main_our_agent_card ul {
  margin: 0;
  list-style: none;
  display: flex;
  padding: 0px 10px 10px;
  justify-content: space-between;
}

.main_our_agent_card {
  border: 1px solid var(--primary-color);
  border-radius: 0px 0px 20px 20px;
  position: relative;
}

.main_our_agent_card ul li {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
}

.main_our_agent_card ul li a {
  color: var(--primary-color);
  font-weight: 400;
}

.main_our_agent_card .theme-group {
  justify-content: center;
}

.main_our_agent_card::before {
  position: absolute;
  top: -10px;
  left: -7px;
  width: 104%;
  content: "";
  background: #000000;
  height: 80px;
  transition: 0.50s ease;
}

.main_our_agent_card_team_content {
  position: relative;
  z-index: 9;
  color: var(--primary-color);
  background: var(--theme-black);
  padding: 20px 0px;
}


.main_our_agent_card:hover.main_our_agent_card::before {
  height: 60%;
  transition: 0.50s ease;
}

/* Our Agent End */
/* For Rent Start */
.for_rent_select {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}


.for_rent_select select {
  width: 100%;
  font-size: 18px;
  padding: 0px 10px;
  font-weight: 600;
  border: 1px solid var(--theme-black);
  height: 50px;
  border-radius: 10px;
  background: var(--primary-color);
}

.for_rent_select_input {
  display: flex;
  gap: 50px;
}

.for_rent_select_input input {
  width: 210px;
  font-size: 18px;
  padding: 0px 10px;
  background: var(--primary-color);
  outline: none;
  font-weight: 300;
  border: 1px solid var(--theme-black);
  height: 50px;
  border-radius: 10px;
  margin: 10px 0px;
}

.for_rent_select_input select {
  width: 100%;
  font-size: 18px;
  padding: 0px 10px;
  font-weight: 600;
  border: 1px solid var(--theme-black);
  height: 50px;
  border-radius: 10px;
  background: var(--primary-color);
  margin: 10px 0px;
}

.for_rent_select_input input::placeholder {
  font-size: 18px;
  color: var(--theme-black);
}

.main_rent_selet_option {
  background: var(--theme-black);
  padding: 50px 30px;
  border-radius: 40px;
  border: 3px solid var(--primary-color);
}

.for_rent_listings_headings h3 {
  font-size: 40px;
  text-transform: capitalize;
  position: relative;
}

.for_rent_listings_icons ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  justify-content: end;
}

.for_rent_listings_icons ul li a {
  color: var(--primary-color);
  font-size: 39px;
}

.for_rent_listings_sort {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.for_rent_listings_sort h6 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.for_rent_listings_sort span {
  font-size: 20px;
  font-weight: 600;
}

.for_rent_listings_sort select {
  border: none;
  font-size: 20px;
}

a.rent_more_detail {
  text-decoration: none;
  color: var(--theme-black);
  background: var(--primary-color);
  font-weight: 700;
  padding: 5px 5px;
  position: absolute;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  font-size: 17px;
  border: 1px solid var(--theme-black);
  border-radius: 10px;
}

.properties_for_sale_card_content.rent h2 {
  font-size: 15px;
  font-weight: 600;
}

.featured_listing_rent {
  margin-top: 130px;
  background: var(--theme-black);
  color: var(--primary-color);
  padding: 20px;
  border-radius: 10px;
}

.property_type_rent {
  background: var(--theme-black);
  color: var(--primary-color);
  margin-top: 50px;
  padding: 30px 30px;
  border-radius: 10px;
}

.property_type_rent ul {
  display: flex;
  list-style: none;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.property_type_rent ul li a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 500;
}

.property_type_rent ul li i {
  margin-right: 10px;
}

.property_type_rent h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 40px;
}

.rent_bottom_navigation ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}

.rent_bottom_navigation ul a {
  color: var(--primary-color);
  font-size: 25px;
  text-decoration: none;
  font-weight: 600;
}

.main_for_rent_listings {
  padding: 100px 0px;
}

/* For Rent End */
/* Contact Us Start */

.contact_heading p {
  font-size: 20px;
  font-weight: 500;
}

.contact_heading h1 {
  font-size: 50px;
  text-transform: capitalize;
  text-align: center;
}

.office_locations {
  background: var(--primary-color);
  color: black;
  transition: 0.50s ease;
}

.office_locations:hover {
  box-shadow: 0px 4px 10px 10px;
  transform: translateY(-10px);
  transition: 0.50s ease;
}

.office_locations_content {
  padding: 20px 10px;
  text-align: center;

}

.office_locations_content h1 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.office_locations_content p {
  font-size: 16px;
  font-weight: 400;
  width: 90%;
  margin: 0 auto;
}

.office_locations_heading {
  padding-top: 100px;
}

.office_locations_heading h2 {
  font-size: 50px;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.main_map {
  margin-top: 100px;
}

.contant_form_input input {
  width: 100%;
  padding: 10px 20px;
  color: var(--theme-black);
  background: #80808052;
  border: none;
  border-radius: 10px;
  outline: none;
}


.contant_form_input textarea {
  width: 100%;
  padding: 10px 20px;
  color: var(--theme-black);
  background: #80808052;
  border: none;
  border-radius: 10px;
  outline: none;
  resize: none;
}

.contant_form_input label {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 45px 10px 5px;
}

.contant_form_input a.theme-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.contact_us_icons ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 40px;
  margin: 40px 0px;
  padding: 0;
}

.contact_us_icons ul i {
  font-size: 40px;
  color: var(--primary-color);
  background: var(--theme-black);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--theme-black);
  padding: 40px;
}

.contact_us_icons ul li span {
  font-size: 30px;
  color: var(--primary-color);
  font-weight: 900;
}

.contact_us_icons ul li a {
  text-decoration: none;
  color: var(--theme-black);
  font-size: 18px;
  font-weight: 600;
}

/* Contact Us End */
/*nav*/
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0) !important;
  background-color: transparent;
  overflow-x: hidden;
  transition: 0.5s;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  justify-content: start;
  padding-top: 20px;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  padding: 0px;
  cursor: pointer;
  color: white;
}

.toggle-btn {
  display: none;
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 99;
  font-size: 52px;
  background: black;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  padding: 5px;
  cursor: pointer;
  color: var(--primary-color);
}

.logo-sidebar {
  width: 130px;
}

.logo-sidebar img {
  width: 100%;
}

aside#myNav ul {
  width: 100%;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-transform: capitalize;
  font-size: 16px;
  list-style: none;
  margin: 0;
}

aside#myNav ul a {
  color: white;
  text-decoration: none;
  font-size: 17px;
}

.bottom_footer {
  text-align: center;
  padding: 20px 0px;
}

.bottom_footer_icons ul {
  justify-content: center;
  padding: 20px 0px 0px;
}

.sidebar_icons ul {
  padding: 0px !important;
  flex-direction: row !important;
  gap: 20px !important;
  font-size: 22px !important;
}

@media (max-width: 1024px) {
  .banner_social_icons {
    display: none;
  }

  .navigation ul li a {
    font-size: 11px;
  }

  .top_header_content p {
    font-size: 16px;
  }

  .navigation ul {
    gap: 15px;
  }

  .featured_properties_card_content h2 {
    font-size: 18px;
  }

  .properties_for_sale_card_content h2 {
    font-size: 21px;
    font-weight: 600;
  }

  .properties_for_sale_card_content {
    padding: 14px;
  }

  .featured_properties_card_content h2 {
    font-size: 18px;
  }

  .testimonial_card_content h6 {
    font-size: 20px;
    font-weight: 900;
  }

  .testimonial_card_content p {
    font-size: 13px;
  }

  .main_our_agent_card .team-content p {
    font-size: 14px;
  }

  .main_our_agent_card .team-content h2 {
    font-size: 23px;
    font-weight: 700;
  }

  .properties_for_sale_card_img_pricing h6 {
    font-size: 13px;
  }

  a.rent_more_detail {
    right: 90px;
    bottom: 5px;
    font-size: 14px;
  }

  .property_type_rent ul li a {
    font-size: 16px;
  }

  .properties_for_sale_card_img_pricing {
    top: 35%;
  }

  .properties_for_sale_card_img img {
    height: 220px;
  }

  .properties_for_sale_card {
    height: 450px;
  }

  .footer_headings_insta a h6 {
    font-size: 26px;
    display: flex;
    align-items: center;
  }

  .footer_headings h6 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .contact_us_icons ul i {
    width: 60px;
    height: 60px;
    padding: 20px;
    font-size: 26px;
  }

  .contact_us_icons ul li span {
    font-size: 25px;
  }

  .contact_us_icons ul li a {
    font-size: 15px;
  }

  .contact_us_icons ul {
    padding: 0px 0px 0px 20px;
    gap: 20px;
  }

  .product_detail_navigation ul li {
    font-size: 13px;
  }

  .product_detail_navigation ul {
    gap: 0px;
  }

  .product_detail_navigation ul li a {
    font-size: 13px;
  }

  .product_details_form_person_tittle ul {
    gap: 20px;
  }

  ul {}

  .product_details_form_person_tittle ul a {
    font-size: 17px;
  }

  .overview_content ul {
    justify-content: start;
    display: grid;
    grid-template-columns: auto auto;
  }

  .overview_content ul li {
    font-size: 15px;
    font-weight: 700;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner_content {
    top: 40%;
  }

  header {
    display: none;
  }

  .main_top_header {
    display: none;
  }

  .toggle-btn {
    display: flex;
  }

  .banner_social_icons {
    display: none;
  }

  .banner_content h1 {
    font-size: 50px;
    width: 80%;
    margin: 0 auto;
  }

  .banner_content p {
    font-size: 25px;
  }

  a.rent_more_detail {
    right: 50%;
    transform: translateX(50%);
  }

  .find-perfect__car {
    margin-top: -100px;
  }

  .featured_properties_card {
    height: 500px;
    margin: 20px 20px;
  }

  .featured_properties_card_img {
    height: 100%;
    width: 100%;
  }

  .featured_properties_card_content {
    bottom: 10px;
  }

  .featured_properties_card_content_detail {
    padding: 30px 0px 0px 0px;
    text-align: center;
  }

  .featured_properties_card_content_detail .theme-group {
    justify-content: center;
  }

  .leave_as_a_review_heading {
    text-align: center;
  }

  .leave_as_a_review_heading h6 {
    margin: 0 auto;
  }

  .leave_as_a_review_heading h6::after {
    right: 0;
  }

  .leave_as_a_review_heading p {
    margin: 20px auto;
  }

  .leave_as_a_review_img {
    width: 350px;
    margin: 20px auto;
  }

  .card.card-our-work {
    width: 100%;
    height: 500px;
    margin: 20px 0px;
  }

  .card.card-our-work img {
    height: 100%;
    width: 100%;
  }

  .approved_broker_bg {
    height: unset;
    margin: 0;
  }

  .approved_broker_heading {
    padding: 30px 0px;
    text-align: center;
  }

  .approved_broker_heading h6::after {
    right: 0;
  }

  .approved_broker_logo img {
    width: 200px !important;
    margin: 0 auto;
  }

  footer {
    text-align: center;
  }

  .footer_headings ul li {
    justify-content: center;
  }

  .footer_headings h6 {
    margin: 30px 0px;
  }

  .for_rent_select_input {
    width: 100%;
    display: block;
  }

  .contact_us_icons ul {
    flex-direction: column;
    text-align: center;
    gap: 0;
    padding: 20px 0px;
  }

  .product_details_form_icons ul {
    justify-content: start;
  }

  .product_details_form_icons h1 {
    text-align: start;
  }

  .overview_content ul {
    padding: 20px 0px;
  }

  .product_details_form_person_tittle ul {
    justify-content: center;
    padding: 0 0 20px 0;
  }
}

@media (min-width: 375px) and (max-width: 480px) {
  header {
    display: none;
  }

  .main_top_header {
    display: none;
  }

  .toggle-btn {
    display: flex;
  }

  .banner_social_icons {
    display: none;
  }

  .inner_banner_content h1 {
    font-size: 55px;
  }

  .inner_banner_content ul li a {
    font-size: 17px;
  }

  .inner_banner_bg {
    height: 300px;
  }

  .contact_heading h1 {
    font-size: 35px;
    font-weight: 700;
  }

  .contact_us_icons ul {
    flex-direction: column;
    text-align: center;
    gap: 0px;
    padding: 0;
  }

  footer {
    text-align: center;
  }

  .footer_headings ul {
    justify-content: center;
    padding-bottom: 20px;
  }

  .footer_headings ul li {
    justify-content: center;
  }

  .footer_headings_insta a {
    justify-content: center;
  }

  .bottom_footer p {
    font-size: 13px;
  }

  .banner_content h1 {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
  }

  .banner_content {
    top: 20%;
  }

  .banner_content p {
    font-size: 14px;
  }

  .find-perfect__car {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin: 30px 0px 0px 0px;
    border-radius: 10px;
    gap: 20px;
  }

  .find-car__box {
    width: 100%;
  }

  .find-car__box select {
    width: 100%;
  }

  .find-perfect__car a {
    margin: 0;
    width: 100%;
  }

  .properties_for_sale_heading h2 {
    font-size: 35px;
  }

  .properties_for_sale_heading h2::before {
    left: 0;
  }

  .properties_for_sale_heading h2::after {
    right: 0;
  }

  .properties_for_sale_heading p {
    width: 100%;
  }

  .choose_your_property_heading h3 {
    font-size: 32px;
    font-weight: 600;
    padding: 10px 0px;
  }

  .choose_your_property_heading h3::before {
    width: 50%;
    left: 0;
  }

  .choose_your_property_heading h3::after {
    width: 50%;
    right: 0;
  }

  .choose_your_property_heading p {
    width: 100%;
  }

  .featured_properties_card {
    margin-bottom: 20px;
  }

  .featured_properties_card_content {
    bottom: 10px;
    transform: translateX(50%);
    right: 50%;
    left: unset;
  }

  .featured_properties_card_content_detail {
    text-align: center;
  }

  .featured_properties_card_content_detail .theme-group {
    justify-content: center;
  }

  .testimonial_heading h5 {
    font-size: 40px;
  }

  .testimonial_heading h5::before {
    left: 0;
  }

  .testimonial_heading h5::after {
    right: 0;
  }

  .testimonial_heading p {
    width: 100%;
  }

  .leave_as_a_review_heading h6 {
    font-size: 39px;
  }

  .leave_as_a_review_heading {
    text-align: center;
    padding: 20px 0px;
  }

  .leave_as_a_review_heading p {
    width: 100%;
  }

  .leave_as_a_review_heading h6::after {
    right: 0;
  }

  .leave_as_a_review_img {
    margin: 10px auto;
    width: 250px;
  }

  .explore_areas_heading h6 {
    font-size: 38px;
  }

  .explore_areas_heading h6::before {
    left: 0;
    width: 50%;
  }

  .explore_areas_heading h6::after {
    right: 0px;
    width: 50%;
  }

  .explore_areas_heading p {
    width: 100%;
  }

  .card.card-our-work .card-title {
    font-size: 27px;
    margin: 0;
  }

  .card.card-our-work .card-text {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
  }

  .card.card-our-work .card-body {
    text-align: center;
  }

  .card-body .theme-btn {
    width: 100%;
    font-size: 14px;
  }

  .our_team_heading h6 {
    font-size: 37px;
  }

  .our_team_heading h6::before {
    left: 0;
    width: 50%;
  }

  .our_team_heading h6::after {
    right: 0px;
    width: 50%;
  }

  .our_team_heading p {
    width: 100%;
  }

  .profile-card .profile-content .title>a {
    font-size: 13px;
  }

  .profile-card:hover .title {
    font-size: 19px;
  }

  .approved_broker_bg {
    height: unset;
    text-align: center;
    padding: 20px 0px;
  }

  .approved_broker_heading h6 {
    font-size: 37px;
  }

  .approved_broker_heading h6::before {
    width: 50%;
    left: 0;
  }

  .approved_broker_heading h6::after {
    width: 50%;

    .for_rent_select_input {
      display: grid;
      grid-template-columns: auto auto;
      gap: 10px;
    }

    .for_rent_select_input input {
      width: 100%;
      margin: 0;
      font-size: 14px;
    }

    .for_rent_select_input select {
      width: 100%;
      font-size: 14px;
    }

    .for_rent_select {
      display: grid;
      grid-template-columns: auto;
      gap: 10px;
      padding: 0 0 20px 0;
      border-bottom: 1px solid white;
      margin-bottom: 20px;
      justify-content: unset;
    }

    .for_rent_select select {
      width: 100%;
    }

    .for_rent_select .theme-btn {
      width: 100%;
      text-align: center;
      color: black;
    }

    .p-100 {
      padding: 60px 0px;
    }

    .for_rent_listings_headings h3 {
      text-align: center;
      font-size: 36px;
      font-weight: 600;
    }

    a.rent_more_detail {
      right: 50%;
      transform: translateX(50%);
    }

    .featured_listing_rent {
      margin-top: 50px;
    }

    .property_type_rent {
      text-align: center;
    }

    right: 0;
  }

  .who_we_are_content {
    text-align: center;
  }

  .who_we_are_content p {
    font-size: 14px;
  }

  .who_we_are_content h2 {
    font-size: 35px;
    font-weight: 700;
  }

  .meet_our_management_heading h3 {
    font-size: 35px;
    font-weight: 700;
  }

  .for_rent_select_input {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
  }

  .for_rent_select_input input {
    width: 100%;
    margin: 0;
    font-size: 14px;
  }

  .for_rent_select_input select {
    width: 100%;
    font-size: 14px;
  }

  .for_rent_select {
    display: grid;
    grid-template-columns: auto;
    gap: 10px;
    padding: 0 0 20px 0;
    border-bottom: 1px solid white;
    margin-bottom: 20px;
    justify-content: unset;
  }

  .for_rent_select select {
    width: 100%;
  }

  .for_rent_select .theme-btn {
    width: 100%;
    text-align: center;
    color: black;
  }

  .p-100 {
    padding: 60px 0px;
  }

  .for_rent_listings_headings h3 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
  }

  a.rent_more_detail {
    right: 50%;
    transform: translateX(50%);
  }

  .featured_listing_rent {
    margin-top: 50px;
  }

  .property_type_rent {
    text-align: center;
  }

  .product_detail_navigation ul {
    display: grid;
    gap: 10px;
  }

  .product_detail_navigation h2 {
    text-align: center;
  }

  .product_detail_navigation_btn {
    text-align: center;
  }

  .product_detail_navigation_map {
    flex-direction: column;
  }

  .product_details_form_icons ul {
    justify-content: center;
  }

  .product_details_form_icons h1 {
    text-align: center;
    font-size: 22px;
  }


  .slider-nav .item-slick {
    max-width: 80px;
    margin: 0 5px 0 0;
  }

  .slick-track {
    width: 100%;
    display: flex;
  }

  .main_overview {
    text-align: center;
  }

  .overview_content ul {
    padding: 20px 0px;
  }

  .main_product_detail_description {
    text-align: center;
  }

  .main_product_detail_description ul {
    list-style: none;
  }

  .main_product_detail_description p {
    font-size: 14px;
  }

  .main_product_detail_addresss ul {
    display: grid;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding-bottom: 10px;
  }

  .main_product_detail_details ul {
    display: grid;
    text-align: center;
    justify-content: center;
  }

  form .theme-group .theme-btn {
    width: 100%;
    display: block;
    text-align: center;
    color: black;
  }

  .product_details_form_person_tittle ul {
    display: grid;
    justify-content: center;
    text-align: center;
  }

  .product_details_form_person_tittle ul img {
    margin: 0 auto;
  }
}

.find-car__box input {
  background: transparent;
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: center;
  border: 1px solid var(--primary-color);
  outline: none;
  width: 90%;
  border-radius: 10px;
  height: 50px;
  padding: 0px 10px;
  margin: 0px auto;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--primary-color);
}

.find-car__box input::placeholder {
  color: var(--primary-color);
}

.profile-content ul {
  position: relative;
  color: white;
  list-style: none;
  margin: 20px 0;
  padding: 0;
  opacity: 0;
  transform: translateY(100px);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.20s;
}

.profile-content ul a {
  color: var(--primary-color);
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
}

.profile-card:hover ul {
  opacity: 1;
  transform: translateY(-26px);
}

.approved_broker_logo .slick-track {
  display: flex;
  align-items: center;
}

/* services  */
.ourservices-sec {
  padding: 100px 0px;
}

.ourservices-sec--card {
  width: 100%;
  height: 300px;
  position: relative;
  clip-path: polygon(9% 0, 100% 0%, 92% 100%, 0% 100%);
}

.ourservices-sec--card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ourservices-sec--card a {
  color: white;
  text-decoration: none;
}

.ourservices-card--content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00000087;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ourservices-card--content h4 {
  text-transform: capitalize;
  font-size: 28px;
  font-weight: 700;
}

.meet_our_team_start {
  padding: 50px 0px;
}

.main_office_locations {
  padding: 100px 0px;
}

.adresses-card {
  padding: 50px 20px;
  box-shadow: 0px 0px 10px 0px #e2c061;
  border-radius: 20px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.adresses-card h4 {
  font-size: 15px;
  text-align: center;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.adresses-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 800;
  text-align: center;
}

.adresses-card ul a {
  margin-left: 10px;
  text-decoration: none;
  color: black;
  transition: all ease 0.5s;
}

.adresses-card ul a:hover {
  color: #bf8c00;
}

section.services-content {
  padding: 100px 0px;
}

.services-sub-content h4 {
  font-weight: 700;
  font-size: 33px;
  margin-bottom: 20px;
}

.services-sub-content p {
  font-weight: 500;
  font-size: 15px;
}

.services-sub-content h6 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
}

.services-sub-content ul {
  font-size: 14px;
  font-weight: 500;
}

.services-sub-content ul li {
  margin-bottom: 10px;
}

.services-sub-content span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
}

/* Video Section Start */
.video_slider_sec {
  margin-top: 50px;
  position: relative;
}

.video_slider {
  width: 100%;
}

.video_slider .slick-slide {
  padding: 0 10px;
}

.video_slider video {
  height: 300px;
  object-fit: unset;
}

/* Video Section End */



.eye-icon {
  float: right;
  position: relative;
  top: -30px;
  left: -11px;
}

.admin_fonts{
  font-weight: 600;
}



.choose_your_property_card1 {
  position: relative;
  transition: 0.50s ease;

}

.choose_your_property_card1:hover {
  transform: scale(1.1);
  transition: 0.50s ease;
}

.choose_your_property_card_title1 {
  position: absolute;
  top: 120px;
  left: 160px;
  color: var(--theme-black);
}


.choose_your_property_card1_btn {
  position: absolute;
  bottom: 20px;
  left: 40px;
}

.choose_your_property_card1_btn ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 100px;
}

.choose_your_property_card1_btn li a {
  text-decoration: none;
  color: var(--theme-white);
  font-size: 20px;
  font-weight: 800;
  padding: 10px 10px;
}

.choose_your_property_card1_title h4 {
  color: var(--theme-white);
  font-weight: 500;
}

/* .choose_your_property_card1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff3d;
  height: 100%;
  transition: 0.50s ease;
} */

.choose_your_property_card1:hover:before {
  background: #00000042;
  transition: 0.50s ease;

}

.choose_your_property_card1.card3 img {
  width: 100%;
  height: 616px;
}
.whatsapp-icon {
  position: fixed;
  bottom: 140px;
  right: 20px;
  z-index: 1000; /* Ensure it appears above other elements */
}

.whatsapp-icon a {
  display: inline-block;
  background-color: #25d366; /* WhatsApp green color */
  color: #fff; /* Text color */
  padding: 10px;
  border-radius: 40%; /* Make it circular */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
  transition: transform 0.3s ease-in-out; /* Add a hover effect */
}

.whatsapp-icon a:hover {
  transform: scale(1.1); /* Zoom in on hover */
}

.fa-whatsapp {
  font-size: 40px; /* Adjust the font size as needed */
}

.accordion {
  display: flex;
  flex-direction: column;
  margin: 50px auto;
  padding: 0 50px;
}
.accordion h1 {
  font-size: 32px;
  text-align: center;
}
.accordion-item {
  margin-top: 16px;
  border: 1px solid #fcfcfc;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.accordion-item .accordion-item-title {
  position: relative;
  margin: 0;
  display: flex;
  width: 100%;
  font-size: 18px;
  cursor: pointer;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 14px 20px;
  box-sizing: border-box;
  align-items: center;
}
.accordion-item .accordion-item-desc {
  display: none;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #444;
  border-top: 1px dashed #ddd;
  padding: 10px 20px 20px;
  box-sizing: border-box;
}
.accordion-item input[type="checkbox"] {
  position: absolute;
  height: 0;
  width: 0;
  opacity: 0;
}
.accordion-item input[type="checkbox"]:checked ~ .accordion-item-desc {
  display: block;
}
.accordion-item
  input[type="checkbox"]:checked
  ~ .accordion-item-title
  .icon:after {
  content: "-";
  font-size: 20px;
}
.accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
  content: "+";
  font-size: 20px;
}
.accordion-item:first-child {
  margin-top: 0;
}
.accordion-item .icon {
  margin-left: 14px;
}

@media screen and (max-width: 767px) {
  .accordion {
      padding: 0 16px;
  }
  .accordion h1 {
      font-size: 22px;
  }
}


.s-block {
  background: top right/200% no-repeat #fff;
  text-align: center;
  padding: 30px 20px;
  margin: 0;
  border: 1px solid #d4f0ff;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 3.4px 2.7px -30px rgb(0 0 0/6%), 0 8.2px 8.9px -30px rgb(0 0 0/7%), 0 25px 40px -30px rgb(0 0 0/20%);
  box-shadow: 0 3.4px 2.7px -30px rgb(0 0 0/6%), 0 8.2px 8.9px -30px rgb(0 0 0/7%), 0 25px 40px -30px rgb(0 0 0/20%);
}
.s-card-icon {
  /* width: 80px; */
  margin: 0 auto 30px;
}
.cta-area {
  position: relative;
  overflow: hidden;
  background: #e0f8ff;
  background: -moz-linear-gradient(top,#e0f8ff 0,#fff0e5 100%);
  background: -webkit-linear-gradient(top,#e0f8ff 0,#fff0e5 100%);
  background: linear-gradient(to bottom,#e0f8ff 0,#fff0e5 100%);
}
.skyline-img {
  background: #e2c061;
  padding: 20px;
  border-radius: 8px 40px 8px 0;
  box-shadow: 0 3.4px 2.7px -30px rgba(0,0,0,.059), 0 8.2px 8.9px -30px rgba(0,0,0,.071), 0 25px 40px -30px rgba(0,0,0,.2);
}


.rount-btn {
  width: 52px;
  height: 52px;
  padding: 0;
  font-size: 18px;
  border: 2px solid #dcdcdc;
}

.contact_us_icons1 ul {
  display: flex;
  list-style: none;
  align-items: center;
  /* gap: 40px; */
  /* margin: 40px 0px; */
  padding: 0;
}

.contact_us_icons1 ul i {
  font-size: 40px;
  color: var(--primary-color);
  background: var(--theme-black);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--theme-black);
  /* padding: 40px; */
}

.contact_us_icons1 ul li span {
  font-size: 30px;
  color: var(--primary-color);
  font-weight: 900;
}

.contact_us_icons1 ul li a {
  text-decoration: none;
  color: var(--theme-black);
  font-size: 18px;
  font-weight: 600;
}

.active-dark .ps-block span {
  border: 1px solid #2b2b7d;
  background: #24213c;
}
.ps-block span {
  font-size: 60px;
  font-family: Poppins, sans-serif;
  border-radius: 100%;
  border: 1px solid #e8e8e8;
  width: 100px;
  height: 100px;
  display: block;
  text-align: center;
  line-height: 100px;
  margin: 0 0 20px;
  color: #6a6a8e;
  border-radius: 68% 32% 64% 36%/59% 59% 41% 41%;
  background: #f5f5ff;
  animation: border-transform 6s linear infinite;
}
/* CSS for Mortgage Journey Progress Bar */
.css-1hu6k8y {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.css-1jgxnjq {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 20px;
}

.css-3h2oj {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  margin-bottom: 20px;
}

.css-1b41w4i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.css-7mv9cy {
  font-size: 18px;
  font-weight: bold;
}

.css-12x7e8k {
  text-align: center;
}

.css-4t6ey5 {
  width: 2px;
}

/* --- Topbar --- */
.main_top_header {
  background: linear-gradient(90deg, #181818 0%, #232323 100%);
  color: var(--primary-color);
  font-size: 14px;
  padding: 8px 0 6px 0;
  border-bottom: 1.5px solid var(--primary-color);
}
.top_header_content a, .top_header_content span {
  font-size: 14px;
  gap: 7px;
}
.top_header_icons ul li a {
  width: 28px;
  height: 28px;
  font-size: 15px;
}

/* --- Header --- */
header {
  background: linear-gradient(90deg, #181818 0%, #232323 100%);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border-bottom: 2px solid var(--primary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 2px 0 0 0 !important; /* less vertical space */
}
.logo img {
  max-width: 90px;
}
.navigation ul {
  margin: 0;
  display: flex;
  list-style: none;
  padding: 0;
  gap: 32px;
  align-items: center;
}
.navigation ul li a {
  text-decoration: none;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s;
}
.navigation ul li a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary-color);
  transition: 0.4s;
}
.navigation ul li a:hover,
.navigation ul li a:focus {
  color: var(--secondary-color);
}
.navigation ul li a:hover:before,
.navigation ul li a:focus:before {
  width: 100%;
}
.dropdown-content {
  background: var(--primary-color);
  color: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  min-width: 250px;
  margin-top: 8px;
  padding: 8px 0;
  border: none;
}
.dropdown-content a {
  color: #fff !important;
  font-weight: 700;
  padding: 12px 22px;
  border-bottom: 1px solid #e2c06144;
  transition: background 0.2s, color 0.2s;
  font-size: 15px;
  letter-spacing: 0.5px;
  background: transparent;
  border-radius: 8px;
  margin: 0 6px;
  display: block;
}
.dropdown-content a:last-child {
  border-bottom: none;
}
.dropdown-content a:hover {
  background: #fffbe6;
  color: var(--primary-color) !important;
}
header .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 0;
}
@media (max-width: 991px) {
  .main_top_header .container-fluid, header .container {
    padding: 0 10px;
  }
  .navigation ul {
    gap: 16px;
  }
  .logo img {
    max-width: 110px;
  }
}
@media (max-width: 768px) {
  .main_top_header, header {
    font-size: 13px;
  }
  .top_header_content a, .top_header_content span {
    font-size: 13px;
    margin-right: 8px;
  }
  .logo img {
    max-width: 90px;
  }
  .navigation ul {
    gap: 8px;
  }
}
/* Remove floating social icons */
.banner_social_icons, .social { display: none !important; }

/* Property Search Form Styling */
.property-search-form {
    background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(35,35,35,0.95));
    padding: 40px 20px;
    margin: -100px 0 50px 0;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(226,192,97,0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
    border: 2px solid var(--primary-color);
}

.search-form-container {
    max-width: 1200px;
    margin: 0 auto;
}

.search-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.search-form-header h3 {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-form-header p {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

.search-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.search-field label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-field .form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(226,192,97,0.3);
    border-radius: 10px;
    font-size: 14px;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    color: #ffffff;
    backdrop-filter: blur(5px);
}

.search-field .form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

.search-field .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(226,192,97,0.2);
    transform: translateY(-2px);
    background: rgba(255,255,255,0.15);
}

.search-field .form-control:hover {
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.12);
}

.search-field .form-control.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
    animation: shake 0.5s ease-in-out;
}

.search-field .form-control.success {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}

.search-btn-field {
    display: flex;
    align-items: stretch;
    height: 100%;
    width: 100%;
}

.search-buttons {
    display: flex;
    gap: 14px;
    width: 100%;
    align-items: stretch;
}

.search-btn, .reset-btn {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 0 0.5em;
    font-size: 16px;
    border-radius: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 0 2px 12px 0 rgba(226,192,97,0.10);
    transition: all 0.2s, box-shadow 0.3s;
    height: 52px;
    letter-spacing: 0.5px;
    border: none;
    overflow: visible;
}

.search-btn {
    background: linear-gradient(90deg, #e2c061 0%, #d4af37 100%);
    color: #181818;
    border: 2px solid #e2c061;
    box-shadow: 0 4px 18px 0 rgba(226,192,97,0.18);
    font-weight: 900;
    text-transform: uppercase;
}

.search-btn:hover, .search-btn:focus {
    background: linear-gradient(90deg, #d4af37 0%, #e2c061 100%);
    color: #000;
    box-shadow: 0 6px 24px 0 rgba(226,192,97,0.25);
    border-color: #d4af37;
}

.reset-btn {
    background: transparent;
    color: #e2c061;
    border: 2px solid #e2c061;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: none;
}

.reset-btn:hover, .reset-btn:focus {
    background: #e2c061;
    color: #181818;
    border-color: #d4af37;
    box-shadow: 0 2px 12px 0 rgba(226,192,97,0.10);
}

.search-btn i, .reset-btn i {
    font-size: 18px;
    margin-right: 10px;
    transition: transform 0.3s;
}

.search-btn:hover i, .reset-btn:hover i {
    transform: scale(1.15);
}

@media (max-width: 991px) {
    .search-btn, .reset-btn {
        font-size: 15px;
        height: 48px;
    }
}

@media (max-width: 768px) {
    .search-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .search-btn, .reset-btn {
        width: 100%;
        min-width: 0;
        padding: 16px 0;
        font-size: 15px;
        height: 48px;
    }
}

/* --- Search Form Buttons: Always on New Row, Full Width --- */
.search-btn-field {
  grid-column: 1 / -1;
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.search-btn, .reset-btn {
  width: 50%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0 0.5em;
  font-size: 16px;
  border-radius: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 2px 12px 0 rgba(226,192,97,0.10);
  transition: all 0.2s, box-shadow 0.3s;
  height: 52px;
  letter-spacing: 0.5px;
  border: none;
  overflow: visible;
}
@media (max-width: 991px) {
  .search-btn, .reset-btn {
    font-size: 15px;
    height: 48px;
  }
}
@media (max-width: 768px) {
  .search-btn-field {
    flex-direction: column;
    gap: 12px;
  }
  .search-btn, .reset-btn {
    width: 100%;
    min-width: 0;
    padding: 16px 0;
    font-size: 15px;
    height: 48px;
  }
}

/* Elegant Mobile Menu Styles */
.mobile-hamburger {
  display: none;
}
@media (max-width: 991px) {
  .mobile-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    background: var(--theme-black);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    z-index: 2002;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    cursor: pointer;
    gap: 5px;
  }
  .mobile-hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: -100vw;
    width: 100vw;
    height: 100vh;
    background: var(--theme-black);
    color: var(--primary-color);
    z-index: 2001;
    transition: right 0.4s cubic-bezier(.77,0,.18,1), opacity 0.3s;
    opacity: 0;
    box-shadow: 0 0 40px 0 rgba(0,0,0,0.45);
    border-left: 3px solid var(--primary-color);
    overflow-y: auto;
  }
  .mobile-nav.open {
    right: 0;
    opacity: 1;
  }
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 12px 24px;
    border-bottom: 1.5px solid var(--primary-color);
  }
  .mobile-logo img {
    max-width: 110px;
    height: auto;
  }
  .mobile-nav-close {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 38px;
    cursor: pointer;
    line-height: 1;
    padding: 0 8px;
    transition: color 0.2s;
  }
  .mobile-nav-list {
    list-style: none;
    padding: 32px 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .mobile-nav-list li a {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 8px;
    font-weight: 700;
    transition: background 0.2s, color 0.2s;
    position: relative;
  }
  .mobile-nav-list li a i {
    color: var(--primary-color);
    font-size: 24px;
    min-width: 28px;
    text-align: center;
  }
  .mobile-nav-list li a:hover, .mobile-nav-list li a:focus {
    background: #232323;
    color: var(--primary-color);
  }
  .mobile-dropdown-list {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #181818;
    border-radius: 0 0 12px 12px;
    margin: 0 32px 0 60px;
    padding: 0 0 8px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .mobile-dropdown-list.open {
    display: flex;
    animation: fadeIn 0.3s;
  }
  .mobile-dropdown > a {
    cursor: pointer;
  }
  .mobile-nav-footer {
    margin-top: auto;
    padding: 24px 32px 32px 32px;
    border-top: 1.5px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #181818;
  }
  .mobile-nav-social {
    display: flex;
    gap: 18px;
    margin-bottom: 8px;
  }
  .mobile-nav-social a {
    color: var(--primary-color);
    font-size: 26px;
    background: #232323;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-nav-social a:hover {
    background: var(--primary-color);
    color: #181818;
  }
  .mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
  }
  .mobile-nav-contact a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: color 0.2s;
  }
  .mobile-nav-contact a i {
    color: var(--primary-color);
    font-size: 18px;
  }
  .mobile-nav-contact a:hover {
    color: var(--primary-color);
  }
  /* Hide old mobile menu triggers */
  .toggle-btn, .overlay, .banner_social_icons { display: none !important; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Fixed Mobile Navbar */
.mobile-navbar {
  display: none;
}
@media (max-width: 991px) {
  .mobile-navbar {
    display: flex;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 60px;
    background: var(--theme-black);
    border-bottom: 2px solid var(--primary-color);
    z-index: 2100;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  }
  .mobile-navbar-logo img {
    max-height: 38px;
    width: auto;
    display: block;
  }
  .mobile-navbar-hamburger {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    padding: 0;
  }
  .mobile-navbar-hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s;
  }
  /* Add space for navbar */

  /* Hide all floating/overlay/fixed menu triggers */
  .toggle-btn, .overlay, .banner_social_icons, .mobile-hamburger { display: none !important; }
}

/* Hide mobile menu on desktop */
.mobile-nav {
  display: none;
}
@media (max-width: 991px) {
  .mobile-nav {
    display: flex;
    flex-direction: column;
  }
  .mobile-nav:not(.open) {
    display: none;
  }
}
