@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rozha+One&display=swap");
@import url(../css/custom.css);

:root {
  /* --main-color: #f55a4e; */
  /* --dark-main-color: #6360a7; */
  --dark-main-color: #00314a;
  --main-color: #d1962a;
  --light-main-color:#fff8ed;
  --theme-green-color:#3c7538;
  --font-primary: "Lexend Deca", sans-serif;
}

/* genral style */
html {
  overflow-x: hidden;
}

body {
  background-color: #fff;
  font-size: 16px;
  font-family: var(--font-primary) !important;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: #000;
  font-family: var(--font-primary) !important;
  transition: all 0.3s;
  text-decoration: none;
}
p {
  margin-bottom: 0px;
}
a:hover {
  color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0px;
  color: var(--dark-main-color);
}
.fixedForm img {
  width: 40px;
}
.fs_12 {
  font-size: 12px !important;
}
.fs_14 {
  font-size: 14px !important;
}
.fs_16 {
  font-size: 16px !important;
}
.fs_18 {
  font-size: 18px;
}
.fs_20 {
  font-size: 20px;
}
.main__heading {
  font-size: 24px;
}
.bg-light-maincolor {
  background-color: #fef5f4;
}

.bg-main-color {
  background-color: var(--main-color);
}
.bg-dark-main-color {
  background-color: var(--dark-main-color);
}

.text-main-color {
  color: var(--main-color);
}
.text-dark-main-color {
  color: var(--dark-main-color) !important;
}
.py-8 {
  padding: 80px 0;
}
.size-6 {
  width: 18px;
  height: 18px;
}
.size-7 {
  width: 22px;
  height: 22px;
}

.z-25 {
  z-index: 25;
}
#toast-container > div {
  opacity: 1 !important;
}
.width450{
  width:450px;
}
/* -----button---- */
.btn {
  border-radius: 5px;
  font-size: 14px;
  border: none;
  padding: 4px 14px;
}
.enquiry_btn {
  background: #ffff;
  border: 1px solid var(--dark-main-color);
  color: var(--dark-main-color);
}
.light_main_btn {
  background: var(--main-color);
  color: #000;
  border: 1px solid var(--dark-main-color);
}
.view_all_btn,
.main_dark_btn {
  background: var(--dark-main-color);
  color: #fff;
  border: 1px solid var(--dark-main-color);
}
.main_dark_btn:hover svg {
  color: var(--dark-main-color);
}
.main_dark_btn svg {
  color: #fff;
}
.view_all_btn:hover,
.main_dark_btn:hover,
.light_main_btn:hover {
  background: #fff;
  color: var(--dark-main-color);
  box-shadow: 0px 0px 5px #c9c8c8;
  border: 1px solid var(--dark-main-color);
}
.enquiry_btn:hover {
  background: var(--main-color);
  color: black;
  box-shadow: 0px 0px 5px #c9c8c8;
  border: 1px solid var(--main-color);
}

.btn-free-border {
  border: 1px solid var(--main-color);
  font-weight: 600;
  color: #1a1a1a;
  position: relative;
  display: inline-flex;
  padding: 0px 15px;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  transition: all 0.3s;
}

.btn-free-border span {
  position: absolute;
  top: -16px;
  border-radius: 20px;
  left: 17px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 1px 12px;
  border: 1px solid #665adb;
}

.btn-free-border:hover {
  background-color: var(--main-color);
  color: #fff;
}

.btn-free-border img {
  width: 30px;
  height: 30px;
}

.btn-free-fill {
  background-color: var(--main-color);
  color: #fff;
}

.btn-free-fill:hover {
  background-color: #fff;
  border: 2px solid var(--main-color);
  color: #000;
}
.btn__search {
  height: 40px;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 100%;
  font-size: 15px;
  background-color: var(--dark-main-color);
  border-radius: 5px;
}

.btn__search svg {
  width: 22px;
  height: 22px;
}

.btn__search:hover {
  background-color: #fff;
  color: var(--dark-main-color);
}
/* ============btn ============== */
.view__all {
  width: fit-content;
  position: relative;
  display: inline-block;
}

.view__all span {
  padding: 10px 18px;
  border-radius: 3px;
  background-color: var(--main-color);
  font-size: 16px;
  color: black;
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s;
}

.view__all::after {
  content: "";
  width: 100%;
  height: 100%;
  right: -10px;
  bottom: -10px;
  border: 2px solid #ddd;
  position: absolute;
  z-index: 0;
  transition: all 0.3s;
}

.view__all svg {
  width: 18px;
  height: 18px;
}

.view__all:hover span {
  background-color: transparent;
  color: #000;
}

.view__all:hover::after {
  right: 0;
  bottom: 0;
  border: 2px solid var(--main-color);
}
/* ------ */
.New_hero_section{
  background: linear-gradient(45deg, #22204e, #3d3a8c, #6360a7, var(--main-color));
  background: linear-gradient(45deg, black, #00314a, #00314a);
  height: 500px;
  padding: 0 100px;
}
.New_hero_section .propertyImgBox1 img{
  height: 450px;
  width: 250px;
  object-fit: cover;
  border-radius: 10px;
}
.New_hero_section .propertyImgBox2 img{
  height: 220px;
  width: 230px;
  object-fit: cover;
  border-radius: 10px;
}

.New_hero_section .propertyImgBox2 .propertyImgBox2P1, .New_hero_section .propertyImgBox2 .propertyImgBox2P2,.New_hero_section .propertyImgBox1 p{
  position: absolute;
  background: linear-gradient(to top, #100f0fbf, rgba(0, 0, 0, 0));
  bottom:0;
  color: #fff;
  width: 93%;
  right: 4px;
  padding-left: 15px;
  height: 50px;
  text-align: start;
  padding-top: 20px;
  border-radius: 11px;
  font-weight: 600;
}
.New_hero_section .propertyImgBox2 .propertyImgBox2P1{
top: 170px;
}
.New_hero_section .propertyImgBox2 .propertyImgBox2P1,.New_hero_section .propertyImgBox2 .propertyImgBox2P2{
width: 85%;
left: 11px;
}
.New_hero_section .searchBox{
  padding: 20px;
  background: radial-gradient(#cecce6, #f1f1f8, #fff);
  border-radius: 10px;
}
/* main heading */
.main__heading span {
  color: var(--dark-main-color);
  position: relative;
}

.selected_filter_badge {
  font-weight: 400;
  font-size: 12px;
  white-space: normal;
  line-height: 1.3;
}

/* header style */
.top__header {
  background-color: var(--main-color);
  padding: 5px 0;
}
.nav-item .active{
  color: var(--dark-main-color);
  background: #ffff;
  padding: 3px 11px;
  border-radius: 5px;

}
.nav-item a:hover,.nav-item:focus,.nav-link:focus{
  background: var(--dark-main-color);
  color: #fff !important;
  border-bottom: 1px solid #ffff;
  transition: all 0.3s;
}
.hero_property_icon .badge{
  background: #309739;
  font-weight: 400;
  color: #fff;
  position: absolute;
}
.select__location {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  color: #fff;
}

.select__location img {
  width: 30px;
}

.select__location svg {
  width: 18px;
}

nav ul li a,
nav ul li a.nav-link {
  color: #ffff;
  text-transform: uppercase;
  font-size: 14px !important;
  letter-spacing: 1px;
  font-weight: 700 !important;
  font-weight: normal !important;
}

nav ul li a svg {
  width: 18px;
  height: 18px;
}

nav ul li {
  color: #000;
}

nav ul li ul.dropdown-menu > li > a {
  text-transform: capitalize;
  font-size: 13px;
}

nav .dropdown-toggle::after {
  display: none;
}

.logo {
  width: 80px;
}
.mobile_header .offcanvas {
  width: 80%;
}
/* ----------- */
.filter_main_div .accordion-button::after {
  width: 13px;
  height: 13px;
  background-size: contain;
}

.filter_main_div .accordion-button:not(.collapsed) {
  background: #f2f2f287;
  padding: 5px 9px 0px !important;
  border-radius: 5px;
}

.filter_main_div .accordion-button:focus {
  box-shadow: none;
}
/* -----------service page--------- */
.border-top-left-radius {
  border-top-left-radius: 60px;
}
.border-bottom-right-radius {
  border-bottom-right-radius: 60px;
}
.services_intro_content {
  background: linear-gradient(45deg, #00314a, #0e385054);
  position: absolute;
  height: 100%;
  padding-top: 100px;
  width: 100%;
  top: 0;
  z-index: 5;
}
.service_page_slider {
  height: 450px;
  overflow: hidden;
}
.service_page_service_card {
  box-shadow: 0px 0px 5px #dededebf;
  padding: 12px;
  border: none;
  text-align: center;
  margin-bottom: 60px;
  height: 315px;
}

.service_page_service_card img {
  transform: translatey(-50px);
  height: 170px;
  object-fit: cover;
}

.service_page_service_card h3 {
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  margin-top: -15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.service_Detail_card_main_img img {
  height: 210px;
  object-fit: cover;
}

.service_detail_card_info_service div {
  background: var(--light-main-color);
  border: 1px solid #e5d4b6;
  padding: 2px 5px;
  border-right: 2px solid var(--main-color);
  border-radius: 4px;
}

.service_Detail_card_trust_verify img {
  width: 110px;
  margin-left: -20px;
}
/* ------------------- */
.form_header{
  background: var(--theme-green-color);
  padding: 10px;
  color: #fff;
  font-size: 16px;
  border-radius: 10px 10px 1px 1px;
}
.add_property_form_height {
  height: 370px;
  overflow-y: auto;
  overflow-x: hidden;
}
.buisness_form_sec input,
.buisness_form_sec .selectize-input,
.buisness_form_sec textarea,
.buisness_form_sec select,
.front-property-add input,
.front-property-add .selectize-input,
.front-property-add textarea,
.profile_main_div select,
.profile_main_div input,
.profile_main_div .selectize-input,
.profile_main_div textarea,
.profile_main_div select {
  box-shadow: none;
  width: 100%;
  padding: 9px 15px;
  font-size: 13px;
  border: none;
  border-radius: 5px;
  border: 1px solid #e0dede;
  background: #fff;
}
.front-property-add label.form-control,
.front-property-add span.form-control,
.profile_main_div label,
.front-property-add label,
.front-property-add span {
  background-color: transparent;
  border: none;
  font-size: 14px;
}
.profile_img_div img{
  width: 100%;
  border-radius: 5px;
}
.upload__btn-box button,.profile_img_div button {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  padding: 0px !important;
  border: 1px solid #e91e63;
  margin-top:5px;
  background: #fff;
}
.upload__btn-box button svg, .profile_img_div button svg{
  color: #fff;
  fill: #e91e63;
  display: inline-block;
}
.upload__btn-box img {
  width: 30px;
  height: 30px !important;
  object-fit: cover;
  box-shadow: none;
}
.upload__btn-box .flex-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.add_property_location_info svg {
  width: 22px;
  height: 22px;
  color: #e91e63;
}
.buisness_form_detail_div .active {
  display: block !important;
}

.buisness_form_detail_div .step-content {
  display: none;
}

.buisness_form_sec .step-bar-wrapper {
  font-size: 14px;
  background: #fff;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 10;
  border-radius: 10px;
}

.buisness_form_sec .step-wrapper {
  padding: 0;
  margin: 0;
  font-size: 0;
  display: flex;
  align-items: center;
  padding-left: 26px;
  counter-reset: step;
  position: absolute;
  right: 28px;
  top: 10px;
  z-index: 1;
}

.buisness_form_sec .step-wrapper li {
  width: 120px;
  position: relative;
}

.buisness_form_sec .step-wrapper li::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #e0e0e0;
  position: absolute;
  top: 38px;
  left: -97px;
  z-index: 0;
}

.buisness_form_sec .step-wrapper li:first-child::before {
  display: none;
}

.buisness_form_sec .step-wrapper li.completed::before {
  background-color: #006809;
}

.buisness_form_sec .step-wrapper li > a:before {
  content: "";
  width: 25px;
  height: 25px;
  display: block;
  font-size: 16px;
  font-weight: 700;
  background-color: #e8e8e8fc;
  border-radius: 100%;
  z-index: 1;
  position: absolute;
  text-align: center;
}

.buisness_form_sec .step-wrapper li > a:after {
  content: counter(step);
  counter-increment: step;
  width: 25px;
  line-height: 25px;
  display: block;
  font-size: 16px;
  color: #bbb;
  font-weight: 700;
  background-color: transparent;
  border-radius: 100%;
  z-index: 1;
  position: absolute;
  text-align: center;
}

.buisness_form_sec .step-wrapper li.completed > a:after {
  content: "\2713";
  color: currentColor;
}

.buisness_form_sec .step-wrapper li.completed > a:before {
  background: #fff;
  color: #c4c4c4;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
}

.buisness_form_sec .step-wrapper li.active > a:before {
  background-color: #00A551 !important;
}

.buisness_form_sec .step-wrapper li.active > a:after {
  color: #fff;
}

.buisness_form_sec .step-wrapper li span {
  display: block;
  width: 100%;
  text-align: start;
  color: #fff;
}

.buisness_form_sec .step-wrapper li span a {
  font-size: 14px;
  font-weight: 400;
}

.buisness_form_sec .step-wrapper li:not(.active):not(.completed) span a {
  color: #252323;
}

.buisness_form_sec .step-wrapper li > a {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  overflow: hidden;
  height: 35px;
  z-index: 1;
}

.buisness_form_sec .step-wrapper li > a svg {
  height: 35px;
  min-height: 35px;
  width: auto;
  position: absolute;
  display: inline-block;
  stroke-width: 0;
  transition: all 300ms ease-in-out;
}

.buisness_form_sec .step-wrapper li > a svg {
  filter: url(#inset-shadow);
}

.buisness_form_detail_div .step-content.active {
  display: block;
  transform: translateX(0);
}
.your_properties th,
.your_properties td {
  font-size: 13px;
}
/* user menu */
.user__menu li a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
}

.user__menu img {
  width: 25px;
}

.user__menu svg {
  width: 22px;
  height: 25px;
  color: #fff;
  stroke-width: 2.2px;
}

/* search bar design  */

.search_menu_filter {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  overflow: hidden;
  border: 2px solid var(--main-color);
  border-bottom: 0;
  display: inline-flex;
}

.searchfilter-radio,
.border-right-maincolor {
  border-right: 2px solid var(--main-color);
}

.searchfilter-radio .radio-label {
  display: block;
  padding: 8px 16px;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: black;
  margin: 0;
}

/* Active state: when the checkbox is checked, change the background */
input[type="radio"].search-radio:checked + .radio-label {
  background-color: var(--main-color);
}

/* Hide the checkbox */
input[type="radio"].search-radio {
  display: none;
}

.search__bar {
  display: grid;
  width: 100%;
  grid-template-columns: 2fr 5fr 2fr;
  border-radius: 15px;
  border-top-left-radius: 0px;
  gap: 8px;
  padding: 12px 15px;
  background-color: var(--main-color);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.custom-select-container,
.input-custom {
  position: relative;
  display: inline-block;
  background-color: white;
  border-radius: 5px;
  width: fit-content;
}

/* Style the select element */
.custom-select-container .form-select {
  appearance: none;
  /* Hide native arrow */
  -webkit-appearance: none;
  /* Safari-specific hide */
  -moz-appearance: none;
  border: none;
  height: 40px;
  width: fit-content;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  padding: 0 10px;
  /* Optional subtle shadow */
  /* Force hiding of default arrow (for stubborn browsers) */
  background-image: none !important;
  -webkit-border-radius: 0;
  /* Reset for Safari */
}

.form-select::-ms-expand {
  display: none;
  /* Hide in IE/Edge */
}

/* Position the custom SVG arrow */
.custom-select-container .custom-arrow {
  position: relative;
  padding-right: 10px;
}

.custom-select-container .custom-arrow svg,
.input-custom svg {
  width: 16px;
  color: var(--main-color);
  height: 16px;
}

/* Option styles */
.custom-select-container .form-select option {
  background-color: #fff;
  /* Light gray background */
  padding: 5px;
  /* Add padding */
  border-bottom: 1px solid var(--main-color);
  /* Border bottom */
}

.custom-select-container .form-select option:last-child {
  border-bottom: none;
  /* Remove border from the last option */
}

.input-custom {
  width: 100%;
}

.input-custom input[type="text"] {
  height: 40px;
  width: fit-content;
  font-size: 14px;
  color: #1a1a1a;
  border: none;
}

.input-custom input[type="text"]::placeholder {
  color: #434343;
}

input[type="text"]:focus-visible {
  outline: none;
}

.hearo-section {
  /* background-image: url(../images/bg-slide5.jpg); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  height: 531px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.home3-img-box1 .img-1 {
  bottom: auto;
  position: absolute;
  right: -10px;
  z-index: 1;
  top: -35px;
  width: 541px;
  aspect-ratio: auto 541 / 550;
  height: 550px;
}

.service__box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.service__box .icon_ {
  width: 40px;
  height: 40px;
  /* border: 1.5px solid; */
  background-color: #fff;
  display: flex;
  padding: 5px;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: relative;
}

.service__box .icon_ .num {
  width: fit-content;
  height: 18px;
  font-size: 11px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 0 4px;
  line-height: 17px;
  position: absolute;
  top: -10px;
  border-radius: 30px;
  right: -25px;
}

.service__box .icon_ img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.service__box h2 {
  font-size: 14px;
  color: #000;
}

.service__box:nth-child(1) .icon_ .num {
  background-color: #20c997;
}

.service__box:nth-child(2) .icon_ .num {
  background-color: #aa0505;
}

.service__box:nth-child(3) .icon_ .num {
  background-color: #3b5de7;
}

.service__box:nth-child(4) .icon_ .num {
  background-color: #cc5de8;
}

.service__box:nth-child(5) .icon_ .num {
  background-color: #fcc419;
}

/* category sections design */
.vendors__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.vendors__category_box {
  border-radius: 12px;
  padding: 18px;
  position: relative;
  background-color: #f7f8f8;
  transition: all 0.4s;
  flex-direction: column;
}

.vendors__category_box:nth-child(1) {
  background-color: #b9f4e3;
}

.vendors__category_box:nth-child(1):hover {
  background-color: #20c997;
}

.vendors__category_box:nth-child(1) .category__icon {
  background-color: #ecfcf7;
}

.vendors__category_box:nth-child(2) {
  background-color: #fc8b8b;
}

.vendors__category_box:nth-child(2):hover {
  background-color: #aa0505;
}

.vendors__category_box:nth-child(2) .category__icon {
  background-color: #fed7d7;
}

.vendors__category_box:nth-child(3) {
  background-color: #ecc4f7;
}

.vendors__category_box:nth-child(3):hover {
  background-color: #cc5de8;
}

.vendors__category_box:nth-child(3) .category__icon {
  background-color: #f7e6fc;
}

.vendors__category_box:nth-child(4) {
  background-color: #feecb4;
}

.vendors__category_box:nth-child(4):hover {
  background-color: #fcc419;
}

.vendors__category_box:nth-child(4) .category__icon {
  background-color: #fff6db;
}

.vendors__category_box:nth-child(5) {
  background-color: #ffd5d5;
}

.vendors__category_box:nth-child(5):hover {
  background-color: #ff3838;
}

.vendors__category_box:nth-child(5) .category__icon {
  background-color: #ffe9e9;
}

.vendors__category_box:nth-child(6) {
  background-color: #e8f7d2;
}

.vendors__category_box:nth-child(6):hover {
  background-color: #94d82d;
}

.vendors__category_box:nth-child(6) .category__icon {
  background-color: #f1fae3;
}

.vendors__category_box:nth-child(7) {
  background-color: #ece3cc;
}

.vendors__category_box:nth-child(7):hover {
  background-color: #a37400;
}

.vendors__category_box:nth-child(7) .category__icon {
  background-color: #f5f1e5;
}

.vendors__category_box .category__icon {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  background-color: #f5f5f5;
  align-items: center;
  justify-content: center;
}

.vendors__category_box .category__icon img {
  width: 40px;
  transition: all 0.4s;
}

.vendors__category_box:hover img {
  transform: scale(1.1);
}

.vendors__category_box h4 {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
  transition: all 0.4s;
}

.vendors__category_box p {
  font-size: 13px;
  color: #1a1a1a;
}
.vendors__category_box:hover p {
  color: #fff;
}

.vendors__category_box a {
  font-size: 15px;
  font-weight: 500;
  transition: all 0.4s;
  width: 100%;
}

.vendors__category_box:hover a,
.vendors__category_box:hover h4 {
  color: #fff;
}

.vendors__category_box svg {
  width: 20px;
  height: 20px;
  color: #000;
}

.hero-heading {
  font-size: 60px;
  font-family: "Rozha One", serif;
  font-weight: 600;
}

.elements-vec-1 {
  width: 100px;
  height: 100px;
  position: absolute;
  left: -30px;
  bottom: 30%;
  opacity: 0.5;
  z-index: -1;
  -webkit-animation: rotate-in-center 9s ease-in infinite both;
  animation: rotate-in-center 9s ease-in infinite both;
}

/**
 * ----------------------------------------
 * animation rotate-in-center
 * ----------------------------------------
 */
@-webkit-keyframes rotate-in-center {
  0% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
    opacity: 0;
  }

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotate-in-center {
  0% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
    opacity: 0;
  }

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}
/* ----------- */
.service_provider_photos .service_provider_photos1 {
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
}

.service_provider_photos .service_provider_photos2 {
  height: 123px;
  object-fit: cover;
  border-radius: 5px;
}

/* -------------new review--------- */
.service_review_percentage_div .progress {
  width: 85%;
  border-radius: 15px;
  height: 12px;
  background: none;
}

.star_rating_div .stars {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.star_rating_div .star-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Default (unfilled) star: orange stroke, transparent fill */
.star_rating_div .star-btn svg {
  width: 28px;
  height: 28px;
  transition: transform 0.08s ease, opacity 0.08s ease;
  transform-origin: center;
  opacity: 0.95;
}

.star_rating_div .star-btn:hover svg {
  transform: scale(1.08);
}

.star_rating_div .star-btn .star-path {
  fill: transparent;
  stroke: orange;
  stroke-width: 1.2;
}

/* Filled state */
.star_rating_div .star-btn.filled .star-path {
  fill: orange;
  stroke: orange;
}
/* vendor style box  */
.vendor__list_box {
  width: 100%;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(24, 26, 32, 0.07);
}

.vendor__list_box .img__bg {
  height: 250px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.vendor__list_box .btn__wishlist {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vendor__list_box .img__bg img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.vendor__list_box .vendor__content {
  padding: 20px;
  position: relative;
}

.vendor__list_box .vendor__content h4 a {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 0;
}

.vendor__list_box .vendor__content p {
  font-size: 13px;
  color: #434343;
  font-weight: normal;
  margin-bottom: 0px;
}

.vendor__content .share_menu {
  position: relative;
  z-index: 55;
}

.vendor__content .share_menu .view__btn {
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d5d5d5;
}

.vendor__content .share_menu .view__btn svg {
  width: 20px;
  height: 20px;
  color: #000;
}

.vendor__content .share_menu .contact__property {
  width: fit-content;
  background-color: #fff;
  width: 30px;
  height: 30px;
  /* padding: 5px 12px; */
  /* background-color: #FCC419; */
  color: #000;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.vendor__content .share_menu .contact__property img {
  width: 25px;
  height: 25px;
  color: #000;
}

.vendor__content .vendor__profile img {
  width: 35px;
  height: 35px;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
}

.vendor__content .vendor__profile {
  font-size: 12px;
  color: #181a20;
}

.vendor__content .labels__list img {
  width: 18px;
}

.vendor__content .labels__list span {
  font-size: 13px;
  color: #434343;
}

.top__overlap .type_Status {
  border-radius: 6px;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  padding: 3px 12px;
  background-color: #3fb349;
}

.btn__action_wrapper .btn__call,
.btn__action_wrapper .btn__booknow {
  padding: 4px 12px;
  font-size: 13px;
  color: #fff;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  gap: 5px;
}
.btn__call {
  background: #fff !important;
  color: var(--dark-main-color) !important;
  border: 1px solid var(--dark-main-color);
}

.btn__action_wrapper .btn__call svg {
  width: 16px;
  height: 16px;
}

.btn__action_wrapper .btn__booknow {
  background-color: var(--dark-main-color);
}

/* property listing box style */
.property__box__style {
  width: 100%;
  position: relative;
  border-radius: 18px;
  border: 1px solid #e4e4e4;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(24, 26, 32, 0.07);
}

.property__box__style .property__img {
  height: 280px;
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}

.property__box__style .property__img img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}

.property__box__style .property__img:hover img {
  transform: scale(1.2);
}

.top__overlap {
  position: absolute;
  width: 100%;
  height: fit-content;
  padding: 5px 15px;
  display: flex;
  justify-content: space-between;
  top: 0;
  left: 0;
  z-index: 5;
}
.bottom__overlap {
  position: absolute;
  width: 100%;
  height: fit-content;
  padding: 5px 15px;
  display: flex;
  justify-content: space-between;
  bottom: 0;
  left: 0;
  z-index: 5;
}
.township_slider_wrapper .bottom__overlap {
  bottom: 0;
}

.bottom__overlap .price__property,
.top__overlap .price__property {
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  left: 20px;
  padding: 3px 12px;
  background-color: var(--dark-main-color);
  color: #fff;
}

.bottom__overlap .property__rating {
  border-radius: 6px;
  font-weight: 400;
  font-size: 14px;
  color: #434343;
  padding: 3px 12px;
  background-color: #fff;
}

.bottom__overlap .property__rating svg {
  width: 16px;
  color: #fc193b;
  fill: #fc193b;
  height: 16px;
}
.property_content_h {
  height: 90px;
  overflow: hidden;
}
.property__box__style .property__content {
  padding: 20px;
  position: relative;
}

.property__box__style .property__content h4 a {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 0;
}

.property__box__style .property__content p {
  font-size: 13px;
  color: #434343;
  font-weight: normal;
  margin-bottom: 0px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.property__box__style .property__content .labels__list img {
  width: 18px;
}

.property__box__style .property__content .labels__list span {
  font-size: 13px;
  color: #434343;
}

.property__box__style .property__content .type_Status {
  font-size: 14px;
  color: #1a1a1a;
}
.share_menu .view__btn {
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share_menu .view__btn svg {
  width: 18px;
  height: 18px;
  color: #000;
}
.share_menu .view__btn img {
  height: 22px;
  width: 22px;
}

.property__content .share_menu .contact__property {
  width: fit-content;
  background-color: #fff;
  width: 30px;
  height: 30px;
  /* padding: 5px 12px; */
  /* background-color: #FCC419; */
  color: #000;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.property__content .share_menu .contact__property img {
  width: 22px;
  height: 22px;
  color: #000;
}

/* 3.5 swiper style */
/* #my-swiper.swiper {
  overflow: visible;
} */

.navigation__swiper .swiper-button-prev,
.navigation__swiper .swiper-button-next {
  position: relative !important;
  width: 35px;
  height: 35px;
  background-image: none;
  top: initial !important;
  left: initial !important;
  margin-top: 0px;
}

.navigation__swiper .swiper-button-prev::after,
.navigation__swiper .swiper-button-next::after {
  display: none;
}

.navigation__swiper .swiper-button-prev svg,
.navigation__swiper .swiper-button-next svg {
  width: 16px;
  height: 16px;
  color: #000;
}

.navigation__swiper .swiper-pagination {
  position: relative !important;
  width: fit-content;
  top: initial !important;
  bottom: initial;
}

.navigation__swiper .swiper-pagination-bullet-active {
  background-color: var(--main-color) !important;
}

.navigation__swiper .swiper-pagination-bullet {
  background-color: #acbb78;
}

/* property types style section */
.property__types {
  background-color: #f5f5f5;
}

.type__box {
  background-color: #f5f5f5;
  border-radius: 12px;
  margin-bottom: 30px;
  padding: 30px;
  position: relative;
  transition: all 0.4s ease;
  color: #000;
}

.type__box .icon {
  background-color: #fdfdfd;
  color: #000;
  width: 100%;
  height: 100px;
  margin-bottom: 35px;
  /* background-color: #fff; */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--headings-color);
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.4s ease;
  object-fit: cover;
  overflow: hidden;
}

.type__box .icon img {
  width: 100%;
}

.type__box:hover {
  background-color: #fff;
}

.type__box:hover .icon {
  background-color: #f7f7f7;
}

.type__box h4 {
  color: #000;
}

.type__box p {
  color: #1a1a1a;
}

.type__box:hover h4,
.type__box:hover p {
  color: var(--main-color);
}

#property-type .navigation__swiper .swiper-button-prev svg,
#property-type .navigation__swiper .swiper-button-next svg {
  color: #fff;
}

#property-type .swiper-wrapper {
  height: fit-content !important;
}
/* ------ */
.home_smart_suggestion_section {
  background-color: #f5f5f5;
}
/* project / township listing with slider style */

.township_slider_wrapper {
  border-radius: 20px;
  padding: 18px;
  /* background-color: #f5f5f5; */
  background: #f7f8f8;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #acbb78, #f7f8f8);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #acbb78, #f7f8f8);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  position: relative;
  height: 500px;
  overflow: hidden;
}

.township__details h3 {
  font-size: 19px;
  color: #000;
  font-weight: 500;
}


.township__details {
  font-size: 14px;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.township__details span {
  font-size: 12px;
}

.township__details .price__tag {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
}

.township__details .btn__action_wrapper .btn {
  font-size: 16px;
}

.township_slider_wrapper #projectgallery {
  height: calc(482px - 18px);
  overflow: hidden;
  border-radius: 14px;
}

.township_slider_wrapper #projectgallery .carousel-item {
  height: calc(482px - 18px);
  overflow: hidden;
  width: 100%;
}

.township_slider_wrapper #projectgallery .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.township__details .project__logo {
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.township__details .project__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project__bottom_agent {
  background: #f7f8f8;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0)
  );
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.swiper-container.slider-full {
  /* height: 80vh; */
  overflow: hidden;
}

.swiper-container.slider-thumbnail {
  height: 100px;
  width: auto;
}

.swiper-container.slider-thumbnail .swiper-wrapper {
  justify-content: end;
}

.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide {
  width: 125px !important;
  height: 100%;
  filter: grayscale(50%);
  /* padding: 0 4px; */
}

.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide h3 {
  font-size: 13px;
}

.swiper-container.slider-thumbnail
  .swiper-wrapper
  .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  filter: grayscale(0);
}

.swiper-container.slider-thumbnail
  .swiper-wrapper
  .swiper-slide.swiper-slide-thumb-active
  .slider__image {
  opacity: 1;
  border-color: #434343;
}

.swiper-container.slider-thumbnail .slider__image {
  width: 125px;
  height: 80px;
  border: 2px solid #ddd;
  margin-bottom: 4px;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0.8;
  position: relative;
}

.swiper-container.slider-thumbnail .slider__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* footer design */
footer {
  /* background-image: url(../images/footer.jpg); */
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #f5f8f9;
  background-position: left bottom;
  font-size: 14px;
}

footer ul li a {
  color: #000;
  font-size: 13px;
}

footer .info-title {
  color: var(--main-color);
  font-family: var(--title-font-family);
  margin-bottom: 5px;
}

footer .info-mail a,
footer .info-phone a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  word-wrap: break-word;
}

footer address svg {
  width: 20px;
  height: 20px;
}

/* filter mobile view style */
.mobile_property_card .main_property_bottom_overlay {
  position: absolute;
  top: 273px;
  background: #ff9800;
  font-size: 13px;
  padding: 2px 5px;
  border-radius: 5px;
  color: #fff;
  right: 0;
  border: 1px solid #fff;
}
.mobile_property_filter .accordion-button {
  background: #f4f3f3;
  width: max-content;
  border: 1px solid #6360a7;
}
.mobile_property_filter .accordion-button h3 {
  font-size: 12px !important;
  color: black !important;
  margin-bottom: 0 !important;
}
.filter_main_div .mobile_property_filter .accordion-button:not(.collapsed) {
  padding: 8px 9px 8px !important;
}
.filter_main_div .mobile_property_filter .accordion-collapse.show {
  height: 200px;
  overflow: auto;
}
.btn__filter {
  background-color: var(--main-color);
  padding: 4px 12px;
  font-size: 13px;
  color: #fff;
  position: fixed;
  top: 20%;
  left: 0;
  z-index: 99;
  border-radius: 0px 4px 4px 0;
}

.btn__filter:hover {
  background-color: #434343;
}

.filter__canvas {
  max-width: 75%;
}

/* ------------- */
.share_social_icn_div .social_link_item {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid rgb(212, 212, 212);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.share_social_icn_div .social_link_item img {
  width: 40px;
  height: 40px;
}

/* modal popup login registration  */
.service_provider_login {
  background: #d50202;
  text-align: center;
  padding-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service_provider_login h4 {
  color: #fff;
  text-transform: capitalize;
  font-size: 28px;
  font-weight: 600;
}

.ServiceLoginForm label {
  font-size: 15px;
  color: black;
  font-weight: 300;
  margin-bottom: 3px;
}

.Form_submit_btn {
  padding: 5px;
  font-weight: bold;
  border: none;
  background: #fcc419;
  color: black;
  border-radius: 3px;
  font-size: 18px;
  width: 150px;
  margin-top: 15px;
}

.ServiceLoginForm .form-control {
  padding: 3px 0.75rem;
}

.ServiceLoginForm .modal-header {
  padding: 4px 18px;
}

.ServiceLoginForm .modal-header h5 {
  text-transform: capitalize;
  font-weight: bold;
}

.form_logo_div img {
  width: 85px;
  margin-bottom: 16px;
}

.Buisness_otp_input_div {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 22px;
}

.Buisness_otp_input_div input {
  width: 50px;
  padding: 5px;
  text-align: center;
  border: none;
  font-size: 22px;
  border-bottom: 2px solid #fcc419;
  box-shadow: 0px 0px 5px #d5d5d5;
}

.service_provider_login img {
  width: 250px;
}

/* township detail page style */
.township___imgslider {
  height: 450px;
  overflow: hidden;
}

.township___imgslider img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.township__video,
.township__imgGallery {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.township__video iframe,
.township__imgGallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.township__imgGallery .overlap_content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.township__hero_section h1 {
  font-size: 22px;
  color: var(--dark-main-color);
  text-transform: capitalize;
  font-weight: 500;
}

.township__hero_section .price__tag h2 {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
}

.township__hero_section .price__tag h2 small {
  color: #434343;
}

.township__title .township__rating,
.vendor_rating {
  border-radius: 6px;
  font-weight: 400;
  font-size: 14px;
  color: #434343;
  padding: 3px 12px;
  background-color: #f5f5f5;
}

.township__views svg,
.township__rating svg,
.vendor_rating svg,
.vendor_views svg {
  width: 16px;
  color: #fcc419;
  height: 16px;
}

.township__views,
.vendor_views {
  border-radius: 6px;
  font-weight: 400;
  font-size: 14px;
  color: #434343;
  padding: 3px 12px;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.township__hero_section .township__title span {
  font-size: 14px;
  color: #434343;
}

.township__hero_section address svg {
  width: 20px;
  height: 20px;
  color: #434343;
}

.township__hero_section .township__title address {
  font-size: 14px;
  color: #434343;
}

.property__action .icon {
  border: 1px solid #ddd;
  border-radius: 6px;
  display: flex;
  padding: 0;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  transition: all 0.4s ease;
}

.property__action .icon svg,
.property__action .icon img {
  width: 20px;
  height: 20px;
  color: #000;
}

.property__action .book__now {
  padding: 6px 15px;
  border-radius: 6px;
  color: #fff;
  background-color: var(--main-color);
}

.property__action .book__now svg {
  width: 18px;
  height: 18px;
}

#township-imageslider .navigation__swiper {
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0)
  );
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  width: 100%;
  padding-bottom: 8px;
  z-index: 5;
}

#township-imageslider .navigation__swiper .swiper-pagination-bullet {
  background-color: #fff;
}

#township-imageslider .navigation__swiper .swiper-button-prev,
#township-imageslider .navigation__swiper .swiper-button-next {
  border: 2px solid #fff !important;
  color: #fff !important;
}

.township__main_points {
  display: flex;
  gap: 12px;
  align-items: center;
  border-right: 1px solid #ddd;
}

.township__main_points .icon {
  width: 35px;
  height: 35px;
}

.township__main_points .icon img {
  width: 35px;
}

.township__main_points .points__text {
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.township__main_points .points__text span {
  font-size: 14px;
}

.township__header_menus {
  background-color: var(--theme-green-color);
  padding: 4px 0;
  position: sticky;
  top: 0;
  z-index: 9;
}

.township__header_menus ul li a {
  padding: 3px 6px;
  font-size: 13px;
}

.township__header_menus ul li a.active {
  background-color: #f1c40f;
  border-radius: 5px;
}

.township_content_area .content_text {
  padding: 30px;
  border-radius: 12px;
  font-size: 14px;
  color: #1a1a1a;
  background-color: #fff;
}

.content_text .card-header h3 {
  font-size: 22px;
  font-weight: 500;
}

.overview__points .icon {
  width: 35px;
  height: 35px;
  border-radius: 4px;
}

.overview__points .icon img {
  width: 28px;
  height: 28px;
}

.overview__points .overview__info span {
  color: #999;
  font-size: 13px;
}

.overview__points .overview__info h5 {
  color: #000;
  font-size: 15px;
  font-weight: 500;
}

.townshuip_action_btn__wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 2fr;
  gap: 15px;
}

.townshuip_action_btn__wrapper button svg {
  width: 18px;
  height: 18px;
}

/* #Amenities-slider */
.Amenities-slide {
  width: 100%;
  /* height: 400px; */
}
.Amenities-slide .amenities_card {
  padding: 0px;
  margin-bottom: 10px;
}

.locations__around_box {
  background-color: #c7bff329;
  border: 1px solid var(--main-color);
  border-radius: 4px;
  padding: 8px;
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.locations__around_box .icon_img {
  display: flex;
  align-items: center;
  gap: 5px;
}
.locations__around_box .icon_img h6 {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-main-color);
}
.locations__around_box .icon_img img {
  width: 28px;
  height: 28px;
}
.locations__around_box .location_info {
  font-size: 13px;
  color: #1a1a1a;
  display: grid;
  grid-template-columns: 8.5fr 2.5fr;
}
.locations__around_box .location_info p span {
  display: block;
}
.content_text ul li {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.content_text ul li svg {
  width: 16px;
  height: 16px;
  color: darkgreen;
}

.service_review_user_info {
  padding: 20px;
  font-size: 13px;
  color: #434343;
}
.service_review_user_info h2 {
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
}
.service_review_user_info .rating svg {
  width: 18px;
  height: 18px;
  color: #f1c40f;
  fill: #f1c40f;
}
/* ----------Contact Page start------ */
.contactPageTitleSec {
  height: 250px;
  background-color: var(--dark-main-color);
  background-image: url(../image/bg4.png);
  background-position: right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.similar_property_rightbar{
  max-height: 1200px;
    overflow-y: scroll;
}
.border-md-0{
  border:none !important;
}

@media only screen and (max-width: 600px) {
  .New_hero_section{
    height: 500px;
    padding: 15px 20px;
    padding-top: 80px;
  }
  header{
    position: fixed;
    background: #fff;
    width: 100%;
    z-index: 99;
    top:0;
  }
  .view_file_0{
    padding-top: 45px;   
  }
  .main__heading,.township__details h3{
    font-size: 16px;
  }
  .fs_16,.property__box__style .property__content h4 a {
    font-size: 14px !important;
  }
  .fs_14,  .township_intro_content_inner p,  nav ul li a,
  nav ul li a.nav-link ,  .service__box h2{
    font-size: 12px !important;
  } 
  .property__box__style .property__img {
    height: 170px;
  }
  .w-50{
    width: 100% !important;
  }
  .hearo-section {
    background-image: url(../images/bg.svg);
    height: 450px;
    background-size: contain;
    background-position: bottom;
  }
  .logo {
    width: 50px;
  }
  .hero_property_icon .badge {
    position: relative;
  }
  .py-8 {
    padding: 60px 0;
    position: relative;
  }
  .btn {
    padding: 2px 10px;
    white-space: nowrap;
  }
  .navigation__swiper {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }

  .home3-img-box1 {
    display: none !important;
  }
  .property_content_h {
    height: fit-content;
  }
  .swiper-container.slider-thumbnail .swiper-wrapper {
    justify-content: start;
  }

  .user__menu li a {
    color: #000;
  }

  .user__menu svg {
    color: #000;
    stroke-width: 1.5px;
  }

  .select__location {
    font-size: 13px;
    font-weight: normal;
  }

  .search__bar {
    grid-template-columns: 12fr;
  }

  .hero-heading {
    font-size: 35px;
  }

  .swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide,
  .swiper-container.slider-thumbnail .slider__image {
    width: 100px;
  }

  .township_slider_wrapper #projectgallery,
  .township_slider_wrapper #projectgallery .carousel-item {
    height: calc(400px - 18px);
  }

  .township_slider_wrapper {
    height: auto;
  }

  .vendors__grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured_property_content {
    padding: 0 10px;
  }

  .verify__tag {
    position: absolute;
    right: 0;
    bottom: 0px;
    z-index: 5;
    width: 80px;
  }

  .FP_card_title {
    position: absolute;
    right: 0;
    top: 0;
  }

  .service_provider_login h4 {
    font-size: 22px;
  }

  .service_provider_login img {
    display: none;
  }

  .service_provider_login {
    padding: 30px;
  }
  .top__overlap .type_Status {
    font-size: 12px;
    padding: 3px 5px;
}
.vendor__list_box .img__bg {
  height: 190px;
}
.vendor__list_box .vendor__content {
  padding: 10px;
}
  .township_intro_content {
    clip-path: polygon(0 0, 60% 0, 85% 100%, 0% 100%);
  }

  .township_intro_content_inner {
    width: 260px;
    margin-left: 20px;
  }

  .township_intro_content_inner h2 {
    font-size: 28px;
  }
  .township__details .price__tag {
    margin-bottom: 15px;
  }
  .township__header_menus ul li a {
    white-space: nowrap;
  }
  .township_content_area .content_text {
    padding: 15px;
  }
  .content_text .card-header h3 {
    font-size: 18px;
  }
  .townshuip_action_btn__wrapper {
    grid-template-columns: 6fr 6fr;
  }
  .Amenities-slide .navigation__swiper {
    position: relative;
    bottom: initial;
  }
  .township__header_menus {
    overflow-x: auto;
  }
  .township_slider_wrapper {
    flex-direction: column-reverse;
    padding: 10px;
  }
  .township__details .project__logo {
    width: 60px;
    height: 60px;
  }
  .township__details h3 .main__heading{
    font-size: 16px;
  }
  .township__details {
    margin-top: 8px;
  }
  .type__box {
    margin-bottom: 0;
  }
  .header_sticky {
    position: fixed;
  }
  .property_detail_header {
    background-color: var(--main-color);
  }
  .property_detail_header ul li {
    margin-top: 0;
  }
  .searchfilter-radio .radio-label {
    font-size: 14px;
    padding: 8 10px;
  }
  .custom-select-container .custom-arrow svg,
  .input-custom svg {
    width: 25px;
    height: 19px;
  }
  .custom-select-container,
  .custom-select-container .form-select {
    width: 100%;
  }
  .search__bar {
    /* border-top-left-radius: 15px; */
    margin-bottom: 20px;
  }
  .btn_searchmob {
    background-color: #fff;
    color: #ccc;
    height: 39px;
    text-align: left;
    font-size: 14px;
  }
  .btn_searchmob svg {
    color: var(--dark-main-color);
    width: 22px;
    height: 22px;
  }
  .offcanvas-menu {
    max-width: 300px;
  }
  .width450{
    width:auto;
}
.contactPageTitleSec {
  background-image: none;
}
.service_Detail_card_trust_verify img{
  margin-left: 15px !important;
  margin-bottom: 15px;
}
.services_intro_content .filter_main_div{
  padding-top: 100px;
}
.services_intro_content p{
  font-size: 14px;
}
.services_intro_content h1{
  font-size: 18px;
}
.service_page_slider {
  height: 400px;
}
.buisness_form_sec .step-wrapper {
  right: 0px;
  top: 35px;
  z-index: 1;
}

.buisness_form_sec .step-wrapper li {
  width: 100px;
  position: relative;
}
.buisness_form_sec .form_header {
  height: 100px;
}
.property__box__style .property__content {
  padding: 12px 3px;
  position: relative;
}
}
