@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; */
    --main-color: #c7bff3;
    --dark-main-color:#665adb;
    --font-primary: "Lexend Deca", sans-serif;

}

/* genral style */
html {
    overflow-x: hidden;
}

body,
html {
    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;
}

a:hover {
    color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0px;
}

.bg-light-maincolor {
    background-color: #fef5f4;
}

.bg-main-color {
    background-color: var(--main-color);
}

.text-main-color {
    color: var(--main-color);
}
.text-dark-main-color{
    color:var(--dark-main-color);
}
.py-8 {
    padding: 80px 0;
}

.z-25 {
    z-index: 25;
}

.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: #fff;
    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);
}

/* main heading */
.main__heading span {
    color: var(--main-color);
    position: relative;
}

/* .main__heading span::after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -10px;
    background-image: url(../images/headingicon.png);
    display: none;
} */

/* header style */
.top__header {
    background-color: var(--main-color);
    padding: 5px 0;
}

.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 {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px !important;
    letter-spacing: 1px;
    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: 190px;
}

.btn-free-border {
    border: 2px solid var(--main-color);
    font-weight: 600;
    border-radius: 12px;
    color: #1a1a1a;
    position: relative;
    display: inline-flex;
    padding: 4px 15px;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    width: 180px;
    transition: all 0.3s;
}

.btn-free-border span {
    position: absolute;
    top: -16px;
    border-radius: 20px;
    left: 17px;
    background-color: #c6bef2;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 1px 12px;
    border: 1px solid #665adb;
    /* -webkit-animation: color-change-2x 2s linear infinite alternate both;
    animation: color-change-2x 2s linear infinite alternate both; */
}

.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;
}

/* 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: 20px;
    height: 20px;
    color: #fff;
}

/* 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: 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);
    /* Green */
    color: white;
}

/* 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;
    overflow: hidden;
}

/* 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;
}

.btn__search {
    height: 40px;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    color: #000;
    width: 100%;
    font-size: 15px;
    background-color: #fff;
    border-radius: 5px;
}

.btn__search svg {
    width: 22px;
    color: var(--main-color);
    height: 22px;
}

.btn__search:hover {
    background-color: #000;
    color: #fff
}

.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 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;
    }
}

/* vendor style box  */
.vendor__list_box {
    width: 100%;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(24, 26, 32, .07);
}

.vendor__list_box .img__bg {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.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__action_wrapper .btn__call svg {
    width: 16px;
    height: 16px;
}

.btn__action_wrapper .btn__booknow {
    background-color: #665adb;
}

/* property listing box style */
.property__box__style {
    width: 100%;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(24, 26, 32, .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: center;
    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;
}

.top__overlap .btn__wishlist {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 2px solid #ddd;
    padding: 0;
}

.top__overlap .btn__wishlist svg {
    width: 22px;
    height: 22px;
    color: var(--main-color);
}

.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;
}

.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(--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: #FCC419;
    fill:#FCC419 ;
    height: 16px;
}

.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;
}

.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;
}

.property__box__style .property__content .share_menu .view__btn {
    background-color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property__content .share_menu .view__btn svg {
    width: 18px;
    height: 18px;
    color: #000;
}

.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 .4s ease;
    color: #000;
}

.type__box .icon {
    background-color: #fdfdfd;
    color: #000;
    width: 60px;
    height: 60px;
    margin-bottom: 35px;
    /* background-color: #fff; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--headings-color);
    margin-bottom: 30px;
    text-align: center;
    transition: all .4s ease;
}

.type__box .icon img {
    width: 40px;
}

.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;
}

/* 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;
}

.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.0));
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 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: #fff;
    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;
}

footer address svg {
    width: 20px;
    height: 20px;
}

/* filter mobile view style */
.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%;
}


/* 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__imgGallery {
    margin-top: 10px;
}

.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(--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 {
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    color: #434343;
    padding: 3px 12px;
    background-color: #f5f5f5;
}

.township__title .township__views svg,
.township__title .township__rating svg {
    width: 16px;
    color: #FCC419;
    height: 16px;
}

.township__title .township__views {
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    color: #434343;
    padding: 3px 12px;
    background-color: #fff;

}

.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 .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.0));
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 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: #fef5f4;
    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 1fr 2fr 2fr;
    gap: 15px;
}

.townshuip_action_btn__wrapper button {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.townshuip_action_btn__wrapper button svg {
    width: 18px;
    height: 18px;
}

.btn__light {
    background-color: #fef5f4;
    border-color: var(--main-color);
    color: #181a20;
}

.btn__light:hover {
    background-color: var(--main-color);
    color: #fff;
}

.btn__dark {
    background-color: var(--main-color);
    color: #fff;
}

.btn__dark:hover {
    background-color: #fef5f4;
    color: #181a20;
}

/* #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;
}
@media only screen and (max-width: 450px) {

    html,
    body {
        overflow-x: hidden;
    }

    .hearo-section {
        background-image: url(../images/bg.svg);
        height: 550px;
        background-size: contain;
        background-position: bottom;
    }

    .py-8 {
        padding: 60px 0;
        position: relative;
    }

    .navigation__swiper {
        position: absolute;
        bottom: -50px;
        width: 100%;
        justify-content: center;
    }

    .home3-img-box1 {
        display: none !important;
    }

    header {
        border-bottom: 2px solid #f5f5f5;
        padding-bottom: 10px !important;
    }

    .user__menu li a {
        color: #000;
    }

    .user__menu svg {
        color: #000;
    }

    .select__location {
        font-size: 13px;
        font-weight: normal;
    }

    .search__bar {
        grid-template-columns: 5fr 2fr;
    }

    .hero-heading {
        font-size: 45px;
    }

    .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(320px - 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;
    }

    .featured_property_content address {
        font-size: 13px;
    }

    .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;
    }

    .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_intro_content_inner p {
        font-size: 13px;
    }
    .township__details .price__tag {
        margin-bottom: 20px;
    }
    .township__header_menus ul li a {
        white-space: nowrap;
    }
    .township_content_area .content_text {
        padding: 15px;
    }
    .content_text .card-header h3 {
        font-size: 18px;
    }
    .township__hero_section .price__tag h2 {
        font-size: 14px;
    }
    .townshuip_action_btn__wrapper {
        grid-template-columns: 6fr 6fr;
    }
    .Amenities-slide .navigation__swiper {
        position: relative;
        bottom: initial;
    }
    .township__header_menus {
        overflow-x: auto;
    }
}