    header{
        background-color: var(--primary-color);
        .container{
            max-width: 1440px !important;
        }
    }
    #lightGallery {
        display: none;
    }

    .vue-tel-input:focus-within {
        box-shadow: unset;
        border: none;
        border-bottom: 1px solid #00000091;
    }

    .vue-tel-input {
        height: 48.5px;
        width: 100%;
        border: none;
        border-bottom: 1px solid #00000091;
        position: relative;
        padding-right: 20px;
        border-radius: 0;
        font-size: 16px;
        font-weight: 400;
        color: #000;
    }

    .property-grid {
        display: grid;
        grid-template-columns: 70% 30%;
        /* Two columns */
        grid-template-rows: auto auto;
        /* Two rows */
        gap: 10px;
        /* Space between grid items */
    }

    .grid-item {
        position: relative;
        cursor: pointer;
    }

    .grid-item::before {
        content: "";
        z-index: 1;
        opacity: 0;
        transition:
            opacity 0.2s;
        position: absolute;
        inset: 0px;
        background: rgba(0, 0, 0, 0.2);
    }

    .grid-item:hover::before {
        opacity: 1;
    }

    .grid-item:nth-child(1) {
        grid-column: 1 / 2;
        /* First column */
        grid-row: 1 / 3;
        /* First row */
    }

    .grid-item:nth-child(2) {
        grid-column: 2 / 3;
        /* First column */
        grid-row: 1 / 2;
        /* Second row */
    }

    .grid-item:nth-child(3) {
        grid-column: 2 / 3;
        /* Second column */
        grid-row: 2 / 3;
        /* Spanning both rows */
    }

    .grid-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 3px;
        cursor: pointer;
    }

    .grid-item:nth-child(1) img {
        min-height: 530px;
        max-height: 530px;
    }

    .grid-item:nth-child(2) img,
    .grid-item:nth-child(3) img {
        min-height: 260px;
        max-height: 260px;
    }

    section {
        background-color: #fbfbfb;
    }

    .property-info-section {
        margin-top: 98px;
        padding: 25px 0 40px;
    }

    .max-wid-322 {
        width: 100%;
        max-width: 322px;
    }

    .property-description-section .property-title {
        font-size: 30px;
        line-height: 40px;
        font-weight: 300;
        margin-bottom: 25px;
        color: var(--primary-color);
    }

    .property-description-section .property-address {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 25px;
    }

    .property-description-section .property-address a {
        text-decoration: none;
        color: var(--text-color);
    }

    .property-description-section .property-address img {
        width: 12px;
        margin-top: -7px;
    }

    .property-description-section .property-price {
        font-size: 28px;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 24px;
    }

    .property-description-section .property-features {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        row-gap: 15px;
        border-block: 1px solid #e5e5e5;
        padding-block: 24px;
    }

    /* .property-description-section .property-features span:not(.place-size) {
    border-right: 2px solid #000;
} */

    .property-description-section .property-features span {
        padding: 0 15px;
        font-size: 16px;
        color: var(--text-color);
        font-weight: 300;
        display: flex;
        gap: 5px;
        /* border-left: 2px solid #000; */
    }

    .property-description-section .property-features span:nth-child(1) {
        padding-left: 0;
        border-left: none !important;
    }

    .property-description-section .property-features img {
        width: 28px;
        object-fit: contain;
        margin-top: 0;
        padding-right: 6px;
        filter: brightness(0) saturate(100%) invert(48%) sepia(4%) saturate(6%) hue-rotate(29deg) brightness(96%) contrast(96%);
    }

    .property-slider {
        position: relative;
        height: 500px;
    }

    .property-slider .swiper-slide img {
        height: 500px;
        width: 100%;
        object-fit: cover;
    }

    .property-external {
        margin-top: 10px;
        display: flex;
        justify-content: end;
        column-gap: 10px;
    }

    .property-external button {
        padding: 5px 20px;
        text-align: center;
        border: 1px solid goldenrod;
        background: white;
        color: var(--text-color);
    }

    .property-external .gallery-btn {
        padding: 5px 20px;
        text-align: center;
        border: 1px solid #bc8418;
        background: white;
    }

    .property-external .gallery-btn img {
        width: 15px;
        margin-top: -5px;
        margin-right: 5px;
    }

    .property-external .save-btn {
        padding: 5px 20px;
        text-align: center;
        border: 1px solid #bc8418;
        background: white;
    }

    .property-external .save-btn img {
        width: 22px;
        margin-top: -8px;
        margin-right: 5px;
        filter: invert(66%) sepia(0%) saturate(760%) hue-rotate(183deg) brightness(91%) contrast(91%);
    }

    .property-external .save-btn.active img {
        filter: invert(57%) sepia(49%) saturate(2920%) hue-rotate(12deg) brightness(91%) contrast(81%);
    }

    .property-external .share-btn {
        text-align: center;
        border: 0;
        background: transparent;
        padding: 0;
    }

    .property-external .share-btn img {
        width: 22px;
        margin-top: -8px;
        margin-right: 5px;
    }

    .property-info-section hr {
        border-top: 3px solid #bc8418;
        opacity: 1;
        width: min(400px, 100%);
        margin: 0 auto;
        margin-top: 20px;
    }

    .share-box {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        background-color: #00000096;
        z-index: 999;
        visibility: hidden;
    }

    .share-box.active {
        visibility: visible;
    }

    .share-box .inner-box {
        position: absolute;
        background-color: #fff;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 250px;
        width: 379px;
        padding: 30px;

    }

    .share-box .inner-box h3 {
        font-size: 24px;
        font-weight: 800;
        text-align: center;
        text-transform: uppercase;
    }

    .share-box .inner-box ul {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        list-style: none;
        display: flex;
        justify-content: center;
        margin-top: 60px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .share-box .inner-box ul a {
        display: block;
        box-shadow: 0 2px 6px 1px rgb(0 0 0 / 19%);
        border-radius: 6px;
    }

    .share-box .inner-box ul img {
        width: 40px;
        padding: 7px;
    }

    .cross-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 27px;
        cursor: pointer;
    }

    .similar-property-section .property-image .swiper .swiper-button-next.featured {
        right: var(--swiper-navigation-sides-offset, 10px) !important;
    }

    .similar-property-section .property-image .swiper .swiper-button-prev.featured {
        left: var(--swiper-navigation-sides-offset, 10px) !important;
    }

    .similar-property-section .property-image .swiper .swiper-button-next.featured,
    .similar-property-section .property-image .swiper .swiper-button-prev.featured {
        top: var(--swiper-navigation-top-offset, 50%) !important;
    }

    .similar-property-section .property-image .swiper .swiper-slide {
        aspect-ratio: 3/2;
    }

    .similar-property-section .property-image .swiper .swiper-pagination {
        width: calc((8px + calc(12px / 2))* 5);
        position: absolute;
        bottom: 12px;
        left: 50%;
        right: 50%;
        transform: translateX(-50%);
        display: flex;
    }

    .similar-property-section .property-image .swiper .swiper-button-prev,
    .similar-property-section .property-image .swiper .swiper-button-next {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        transition: 0.3s;
        background-color: #fff;
        box-shadow: 0px 4px 8px rgb(0, 0, 0, 0.24);
        opacity: 0;
    }

    .similar-property-section .property-image .swiper .swiper-button-prev:hover,
    .similar-property-section .property-image .swiper .swiper-button-next:hover {
        transform: scale(1);
        background-color: #f6f6f4;
    }

    .similar-property-section .property-image .swiper .swiper-button-prev svg,
    .similar-property-section .property-image .swiper .swiper-button-next svg {
        all: unset;
    }

    .similar-property-section .property-image .swiper .swiper-button-prev::after,
    .similar-property-section .property-image .swiper .swiper-button-next::after {
        all: unset;
        content: unset;
        display: none;
    }

    .similar-property-section .property-card:hover .swiper-button-prev,
    .similar-property-section .property-card:hover .swiper-button-next {
        opacity: 1 !important;
    }

    .property-description-section .property-details {
        padding-top: 48px;
    }

    .property-description-section .col-md-7 {
        padding-right: 0;
    }

    .property-description-section .col-md-5 {
        padding-top: 0;
        padding-left: 40px;
    }

    .property-description-section .property-details h2 {
        font-size: 20px;
        line-height: 28px;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .property-description-section .property-details p {
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: 0.4px !important;
        margin-bottom: 20px;
        color: var(--text-color);
        text-align: justify;
    }

    .property-description-section .property-details p > * {
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: 0.4px !important;
        margin-bottom: 20px;
        color: var(--text-color);
        text-align: justify;
    }

    .property-description-section .property-details :is(ul, ul li, ul strong) {
        color: var(--text-color);
    }
    .property-description-section .property-features-box {
        margin-top: 30px;
    }

    .property-description-section .property-features-box h6 {
        font-size: 20px;
        line-height: 28px;
        font-weight: 600;
        color: var(--primary-color);
    }

    .property-features-list {
        margin-top: 20px;
    }

    .property-features-list ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 80%;
        list-style: none;
        /* list-style-image: url('./../../../public/img/icons/216411_star_icon.png'); */
    }

    .property-features-list li {
        flex-basis: 50%;
        position: relative;
        padding-bottom: 7px;
        padding-left: 13px;
        font-size: 20px;
        color: var(--text-color);
    }

    .property-features-list li::before {
        content: '';
        position: absolute;
        top: 2px;
        left: -20px;
        background-image: url('./../../../img/icons/216411_star_icon.png');
        height: 25px;
        width: 25px;
        background-size: contain;
        filter: invert(16%) sepia(55%) saturate(2802%) hue-rotate(270deg) brightness(87%) contrast(94%);
    }

    .property-agent-box {
        padding: 38px 24px;
        border: 2px solid var(--primary-color);
        border-radius: 5px;
        background-color: #f6f6f6;
    }

    .property-agent-box h2 {
        font-size: 22px;
        line-height: 28px;
        color: var(--primary-color);
        font-weight: bold;
    }

    .property-agent-box .agent-name {
        font-size: 16px;
        color: var(--text-color);
        font-weight: 500;
        margin-bottom: 6px;
    }

    .property-agent-box .agent-email a {
        font-size: 14px;
        font-weight: lighter;
        color: var(--text-color);
        text-decoration: none;
        word-break: break-all;
    }

    .property-agent-box .agent-email img {
        width: 20px;
        margin-top: -4px;
        margin-right: 12px;
        filter: brightness(0) saturate(100%) invert(48%) sepia(4%) saturate(6%) hue-rotate(29deg) brightness(96%) contrast(96%);
    }

    .query-form {
        background-color: #f6f6f6;
        margin-top: 20px;
        padding: 30px;
        padding-bottom: 70px;
    }

    .query-form h3 {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 40px;
        color: var(--primary-color);
    }

    .query-form input,
    .query-form textarea {
        display: block;
        width: 100%;
        background-color: transparent;
        border: 0;
        border-bottom: 1px solid #00000091;
        padding: 11px 0;
        font-size: 17px;
        margin-bottom: 16px;
    }

    .query-form input::placeholder,
    .query-form textarea::placeholder {
        font-weight: 500;
        color: #8b8576;
    }

    .query-form textarea:focus-visible,
    .query-form input:focus-visible {
        outline: 0;

    }

    .query-form textarea {
        resize: none;
    }

    .privacy-check-box {
        display: flex;
        justify-content: start;
        align-items: start;
    }

    .privacy-check-box input {
        width: 20px;
        height: 20px;
        padding: 10px;
        border: 1px solid #BC8418;
        accent-color: #BC8418;
    }

    .privacy-check-box label {
        font-size: 15px;
        padding-left: 10px;
        margin-top: -6px;
        flex-basis: calc(100% - 50px);
        color: var(--text-color);
    }

    .privacy-check-box label a {
        color: #bc8418;
        text-decoration: none;
    }

    button[type="submit"] {
        background: none;
        border: 0;
        float: right;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        color: #bc8417;
        text-transform: uppercase;
        font-weight: 900;
        padding-top: 30px;
    }

    button[type="submit"] img {
        width: 15px;
        filter: invert(1);
        margin-top: 14px;
        margin-left: 4px;
    }

    button[type="submit"] span {
        border-radius: 50%;
        background-color: #bc8417;
        height: 40px;
        width: 40px;
        display: inline-block;
    }

    .marketed-by-info {
        padding: 30px;
        background-color: #f6f6f6;
        padding-top: 50px;
    }

    .marketed-by-info p {
        font-size: 20px;
        color: #000;
        font-weight: bold;
    }

    .marketed-by-info p:nth-child(1) {
        font-size: 18px;
        margin-bottom: 10px;
        color: var(--text-color);
    }

    .marketed-by-info p.marketer-name {
        color: var(--primary-color);
        font-size: 24px;
        font-weight: 500;
    }

    .marketed-by-info a {
        font-size: 18px;
        text-decoration: none;
        color: #bc8417;
        font-weight: bold;
    }

    .property-description-section hr {
        width: min(400px, 100%);
        border-bottom: 4px solid #000;
        opacity: 1;
        margin: 0 auto;
        margin-top: 30px;
    }

    .property-location-section {
        padding: 25px 0 30px 0;
    }

    .property-location-section h2 {
        font-size: 20px;
        line-height: 28px;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .property-map-box iframe {
        width: 100%;
    }

    property-map-box {
        padding: 0 30px;
    }

    .similar-property-section {
        padding: 0 0 20px 0;
    }

    .similar-property-section h2 {
        font-size: 42px;
        color: var(--primary-color);
        padding-bottom: 10px;
    }

    .similar-property-section .property-card .place-size {
        font-weight: 600;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-weight: 900;
        color: #bc8417;
        opacity: 0.8;
    }

    .lightgallery-vue {
        display: none;
    }




    .similar-property-section .col {
        width: calc(100% / 3);
        flex-basis: calc(100% / 3);
        flex-grow: 0;
        margin-bottom: 25px;
    }

    .similar-property-section .col .property-card {
        box-shadow: 0px 1px 2px rgb(0, 0, 0, 0.32);
        border-radius: 2px;
    }

    .similar-property-section .col .property-card:hover {
        box-shadow: 0px 2px 4px rgb(0, 0, 0, 0.32) !important;
    }

    /* .similar-property-section .col .property-card:hover .property-price {
    background-color: var(--primary-color);
    color: #fff;
} */

    .similar-property-section .property-card .property-image {
        /* height: 350px; */
        position: relative;
        overflow: hidden;
        aspect-ratio: 3/2;
    }

    .similar-property-section .property-card .property-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .similar-property-section .property-card .property-meta {
        /* border-bottom-left-radius: 10px;  */
        overflow: hidden;
        /* border-bottom-right-radius: 10px; */
        background-color: #fff;
        padding-top: 10px;
    }

    .similar-property-section .property-card .featured-location-card-box-meta {
        padding: 10px 10px 0 10px;
    }

    .similar-property-section .property-card .location-name {
        text-transform: uppercase;
        color: var(--primary-color);
        margin-bottom: 2px;
        font-size: 16px;
        font-weight: 600;
    }

    .similar-property-section .property-card .property-title {
        /* font-size: 20px;  */
        font-size: 17px;
        color: #000;
        font-weight: 500;
        text-decoration: none;
        text-transform: capitalize;
        /* min-height: 100px; */
        display: block;
        /* line-height: 30px; */
        line-height: 26px;
        letter-spacing: 0.1px;
        /* margin-bottom: 20px; */
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .similar-property-section .property-card .property-features {
        display: flex;
        gap: 20px;
        min-height: 24px;
        margin-bottom: 15px;
    }

    .similar-property-section .property-card .property-features span {
        display: flex;
        align-items: center;
        gap: 5px;
        font-weight: 400;
    }

    .similar-property-section .property-card .property-features img {
        width: 28px;
    }

    .similar-property-section .property-card .property-price {
        margin: 10px 0 15px;
        font-size: 20px;
        font-weight: 500;
        color: #000;
        display: block;
        padding: 0;
        transition: 0.3s ease-in-out;
        /* margin-top: 20px;
    border-top: 1px solid #8b8577; */
    }

    .for-hover-effect {
        height: 100%;
        width: 100%;
        position: absolute;
        left: 0;
        bottom: -100%;
        background: rgba(250, 250, 250, 0.89);
        -webkit-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 40px;
    }

    .for-hover-effect p {
        font-size: 17px;
        line-height: 26px;
        color: #1A1B26;
        margin-bottom: 30px;
        font-weight: 300;
    }

    .button-4.arrow {
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
        color: #404040;
        border-bottom: 1px solid #404040;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: auto;
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .button-4.arrow:after {
        background: url('/public/images/button-arrow.svg') no-repeat center center;
        content: "";
        display: block;
        height: 10px;
        width: 16px;
        margin-left: 12px;
    }

    .similar-property-section .property-card:hover .for-hover-effect {
        bottom: 0;
    }

    .container {
        max-width: 1128px !important;
        padding: 0;
    }

    .similar-property-section{
        .feature-thumb-bx-main .hm-feature-thumb-bx {
                margin-bottom: 0;
            }
            .featured-properties-grid .feature-thumb-bx-main .image-wrap .swiper .swiper-slide {
    aspect-ratio: 3 / 2;
}
    }
    .similar-property-section{
    a{
        text-decoration: none;
        text-decoration: none;
    }
    .feature-thumb-bx-main .location {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
        display: block;
        text-transform: uppercase;
}
    .feature-thumb-bx-main h2
 {
    text-decoration: none;
    text-transform: capitalize;
    /* min-height: 100px; */
    display: block;
    /* line-height: 30px; */
    line-height: 26px;
    letter-spacing: 0.1px;
    /* margin-bottom: 20px; */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 0;
    margin-bottom: 0;
}
    .feature-thumb-bx-main h3
 {
    text-decoration: none;
    text-transform: capitalize;
    /* min-height: 100px; */
    display: block;
    /* line-height: 30px; */
    line-height: 26px;
    letter-spacing: 0.1px;
    /* margin-bottom: 20px; */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
    .featured-location-card-box {
    /* border-bottom-left-radius: 10px; */
    overflow: hidden;
    /* border-bottom-right-radius: 10px; */
    background-color: #fff;
    padding-top: 10px;
}
    .feature-thumb-bx-main {
    text-decoration: none;
    display: block;
    box-shadow: 0px 1px 2px rgb(0, 0, 0, 0.32);
    border-radius: 2px;
}
    
.featured-location-card-box .featured-location-card-box-meta {
    padding: 10px 10px 0 10px;
}
    .feature-thumb-bx-main .price {
    margin: 10px 0 15px;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    display: block;
    padding: 0;
    transition: 0.3s ease-in-out;
    /* margin-top: 20px; */
    /* border-top: 1px solid #8b8577; */
}
    .amenitites {
    min-height: auto;
    margin-bottom: 15px;
    min-height: 24px;
        .row{
            margin: 0;
            gap: 20px;
        }
}
    .amts-box .count {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    margin-left: 0;
}
    .amts-box{
        padding: 0;
        margin: 0;
        display: flex;
    }
    .image-wrap {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 2px 2px 0 0;
        .swiper {
    width: 100%;
    height: 100%;
            img{
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
}
}
.swiper-button-prev::after, .swiper-button-next::after{
    display: none;
}
.feature-thumb-bx-main .image-wrap .swiper .swiper-button-next,
.feature-thumb-bx-main .image-wrap .swiper .swiper-button-prev {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: 0.3s;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgb(0, 0, 0, 0.24);
    opacity: 0;
}
.feature-thumb-bx-main:hover .swiper-button-prev, 
.feature-thumb-bx-main:hover .swiper-button-next {
    opacity: 1 !important;
}
.feature-thumb-bx-main .image-wrap .swiper .swiper-button-next.featured {
    right: var(--swiper-navigation-sides-offset, 10px) !important;
}
.feature-thumb-bx-main .image-wrap .swiper .swiper-button-next.featured, 
.feature-thumb-bx-main .image-wrap .swiper .swiper-button-prev.featured {
    top: var(--swiper-navigation-top-offset, 50%) !important;
    svg{
        all: unset;
    };
}
    }
    .similar-property-section .propert-column-box{
    margin: 20px 0 0;
}

    @media (min-width: 1200px) {
        .for-hover-effect p {
            line-height: 24px;
        }
    }

    @media (max-width: 1150px) {
        .container {
            padding: 0 30px;
        }
    }

    @media (max-width: 767px) {
        .property-grid {
            display: none;
        }
        .similar-property-section .propert-column-box{
        width: 50%;
        margin: 20px 0;
    }
    .similar-property-section {
    .amts-box {
        width: auto;
    }
}
    }

    @media (min-width: 768px) {
        .property-slider {
            display: none;
        }

        .col-md-12 .property-external {
            display: inline-flex;
            right: 8px;
            bottom: 15px;
            position: absolute;
        }

        .property-external .share-btn img {
            filter: invert(1);
        }

        .property-agent-box {
            padding: 38px 24px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
    }

    @media only screen and (max-width: 768px) {
        .property-info-section .col-md-4 {
            margin-bottom: 50px;
        }

        .property-description-section .property-details {
            padding-top: 46px;
        }

        .similar-property-section .col {
            width: calc(100% / 2);
            flex-basis: calc(100% / 2);
        }

        .property-description-section .property-features-box {
            margin-top: 30px;
        }

        .property-features-list ul {
            width: 90%;
        }

        .property-description-section .col-md-7 {
            padding-right: 12px;
        }

        .property-description-section .col-md-5 {
            padding-left: 12px;
        }
    }

    @media only screen and (max-width: 575px) {
        .property-info-section .property-features {
            flex-wrap: nowrap;
        }

        .property-info-section {
            margin-top: 130px;
            padding-top: 50px;
        }

        .property-description-section .property-price {
            font-size: 30px;
        }

        .property-info-section .col-md-4 {
            margin-bottom: 35px;
        }

        .property-info-section hr,
        .property-description-section hr {
            width: 250px;
        }

        .similar-property-section .col {
            width: calc(100%);
            flex-basis: calc(100%);
        }

        .property-slider .swiper-slide img,
        .property-slider {
            height: 400px;
        }
    .similar-property-section .propert-column-box{
        width: 100%;
    }
}

    @media only screen and (max-width: 475px) {
        .property-info-section .property-features img {
            width: 35px;
        }

        .property-info-section .property-features span {
            padding: 8px 10px;
        }

        .share-box .inner-box {
            width: 280px;
            height: 220px;
        }

        .property-features-list ul {
            flex-direction: column;
            align-items: start;
        }

        .property-description-section .col-md-5 {
            padding-top: 30px;
        }

        .property-agent-box {
            padding-right: 20px;
            padding-left: 30px;
        }

        .property-agent-box .agent-email a {
            font-size: 14px;
        }
    }
