* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Inter', sans-serif; */
    /* font-family: 'Manrope', sans-serif; */
    /* font-family: 'Montserrat', sans-serif; */
    /* font-family: 'Open Sans', sans-serif; */
    /* font-family: 'Roboto Slab', serif; */
    font-family: 'Poppins', sans-serif;
}


:root {
    --green: #3ABB9C;
    --light-green: #3ABB9C30;
    --dark-green: #2E8E77;
    --orange: #F99008;
    --dark-orange: #D77A02;
    --light-aqua: #3DD0DB30;
    --aqua: #3DD0DB;
    --dark-aqua: #2CA6AF;
    --secondary-color: #f3a712;
    --dark: #333;
    --grey: #666;
    --light: #f4f4f4;
    --white: #fff;
    --shadow: 0 0 10px 1px #00000015;
    --border: #00000030;

}



.show-in-mobile-flex{
    display: none !important;
}

html{
    font-size: 18px;
    scroll-behavior: smooth;
}

button{
    cursor: pointer;
}

button:active{
    transform: translate(1px , 1px);
    cursor: pointer;
}
.hero-container {
    max-width: 1512px;
    margin: 0 auto;
    /* background-color: red; */
    padding: 0px 100px;
}

.logo {
    height: 60px;
}

.desktop-navbar nav{
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 20px;
    min-height: 100px;
}

nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

nav ul li {
    margin: 0 0px;
    background-color: transparent;
}

nav ul li a , nav ul li button {
    text-decoration: none;
    font-size: 1em ;
    font-weight: 500;
    border: none;
    background-color: transparent;
    color: var(--dark);

}
.links-wrapper{
    /* width: 40%; */
    grid-gap: 25px;
}

nav ul li a:hover {
    color: var(--dark-green);
}

.login-wrapper li{
    margin: 0px !important;
}

.link-button{
    color: var(--green) ;
    background-color: transparent ;
    /* padding: 5px 20px ; */
    text-decoration: none ;
    font-size: 18px !important ;
    font-weight: 500 ;
    border:none  ;
    text-align: center;
}


.link-button:hover{
    color: var(--dark-green) !important;
    cursor: pointer !important ;
}

.login{
    padding: 0 20px;
    border-right: 1px solid var(--dark);
}


.custom-field{
    width: 100%;
    padding: 10px 20px;
    border: none;
    box-shadow: #00000020 0px 0px 5px 0px inset;
    border-radius: 10px;
    outline: none;
    font-size: 1em;
    font-weight: 500;
    margin: 10px 0;
    
font-size: 14px !important;
font-weight: 400;
line-height: 20px; /* 142.857% */
letter-spacing: 0.25px;
}


.custom-checkbox-input{
    width: 20px;
    height: 20px;
    border: 1px solid var(--dark);
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;

}


.custom-field-label{
    font-size: 1em;
    font-weight: 500;
    margin: 10px 0;

}

.borderless-field{
    width: 100%;
    background-color: transparent;
    /* padding: 10px 20px; */
    padding-left: 20px;
    border: none;
    /* border-radius: 10px; */
    outline: none;
    font-size: 1em;
    font-weight: 500;
    margin: 10px 0;
}

.horizontal{
    display: flex;
    flex-direction: row;
    align-items: center;
} 

.vertical{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flex-gap{
    grid-gap: 20px;
}

.full-width{
    width: 100%;
}

.full-height{
    height: 100%;
}

.space-between{
    justify-content: space-between;
    width: 100%;
}

.grid-container{
    display: grid;
    grid-template-columns: repeat(3 , 1fr);
    grid-gap: 20px;
}

.compressed-text{
    letter-spacing: -2px;
}


.text-centered{
    text-align: center;
}


.round-trans-buttons{
    height: 40px;
    min-width: 100px;
    border-radius: 20px;
    padding: 5px 20px;
    border: none;
    margin-right: 10px;
}

.round-trans-buttons:hover{
    background-color: var(--light-aqua);
    cursor: pointer;
}

.round-trans-buttons.active{
    background-color: var(--aqua);
    color: var(--white);
}

.blog-card{
    /* background-color: red; */
    width: 100%;
    height: auto;
    height: 200px;
    border-radius:15px ;
    box-shadow: var(--shadow);
    color: var(--dark);
    display: flex;
    font-size: 15px;
    text-decoration: none;
    font-family: 'Abel', sans-serif;
    grid-gap: 20px;
    margin: 18px 0;
}

.blog-card:hover{
    background-color: var(--light-aqua);
    box-shadow: var(--shadow);
    cursor: pointer;
    
}

.blog-link{max-width: 200px;}


.blog-card img{
    width: 250px;
    object-fit: cover;
    height: 200px;
    border-radius: 15px 0 0 15px;
}

.blog-card-detail{
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Abel', sans-serif;
}

.para1-heading ,.para2-heading{
    font-size: 1.5em;
    /* font-weight: 500; */
    margin: 10px 0;
}

.para1-content ,.para2-content {
    font-size: 1.2em;
    /* font-weight: 500; */
    margin: 10px 0;
}
.para2-container {
    
    align-items: flex-start;
}
.para2-container img{
    height: 300px;
    border-radius: 15px;
    margin-right: 20px;

}



.gap{grid-gap: 10px;}


.FAQ-container{
    width: 60%;
    height: auto;
    border-radius:15px ;
    box-shadow: var(--shadow);
    color: var(--dark);
    display: flex;
    font-size: 15px;
    text-decoration: none;
    grid-gap: 20px;
    margin: 18px 0;
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--white);
}

.faq-data-body{
    padding: 0px 30px;
    transition: 1s;
}


.light-aqua-page{
    min-height: 60vh;
    background-color: var(--light-aqua);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 30px;
    padding: 50px 0;
}

.responsive-menu{
    background-color: white;
    box-shadow: var(--shadow);
    /* border-radius: 10px; */
    padding: 10px;
    position: absolute;
    z-index: 100;
    top: 45px;
    right: -10px;
    width: 100vw;
}
.responsive-menu ul li{
    margin: 2px;
    width: 100%;
}

.border-bottom{
    border-bottom: 1px solid var(--border);
    display: block;
    /* background-color: red; */
    height: 1px;
    margin: 6px auto;
    /* width: 200px; */
    font-size: 1px;
}
.responsive-menu ul{
        width: 100%;
}


.properties-list-wrapper.custom-grid .card {
    width: 100% !important;
    margin: 10px !important;
}

.mobile-menu{
    display: none;
}

.footer-column-head{
    font-weight: 800;
}

.blog-title{
    font-weight: 800;
    margin: 8px 0;
    font-size: 18px;
    font-family: 'Abel', sans-serif !important;
}

.blog-content{
    /* font-size: 15px; */
    font-family: 'Abel', sans-serif !important;
}

.bi-heart-fill ,.bi-heart{
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--orange);
    z-index: 1;
    background-color: transparent;
    font-size: 1em;
}


.ellipsis {
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Hide overflowing content */
    text-overflow: ellipsis; /* Add ellipsis for overflowed text */
}
.rs-svg-mode .rs-border {
    border-radius: 0 !important;
    stroke: #dbdbdb86 !important;
}


.blockclick{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0; 
    left: 0;
    z-index: 100;
    /* display: none; */
    /* background-color: #00000015; */

}

.affiliate-icon{
    height: 8vw;
    max-height: 90px;
}



.search-bar-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    grid-gap: 30px;
    margin-top: 20px;
    margin-bottom: 10px;
    width: 100%;
}

.search-bar-wrapper {
    width: 100%;
    background-color: var(--light-aqua);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.click_drop_down {
    width: 100%;
}

.click_drop_btn {
    background-color: white;
    padding: 15px;
    font-size: 1em;
    border: none;
    min-width: 150px;
    max-width: 350px;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    border-radius: 9px;
    box-shadow: #00000029 -4px 4px 10px 0px;
}

.click_drop_btn:hover {
    background-color: #f2f2f2;
}

.click_drop_down {
    position: relative;
    display: inline-block;
}

.click_drop_down-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 250px;
    max-width: 350px;
    width: 100%;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 2;
    padding: 5px 15px;
}

.click_drop_down-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.click_drop_down a:hover {
    background-color: #ddd;
}

.show {
    display: block;
}



.green-btn {
    background-color: var(--green);
    color: white;
    font-weight: 500;
    border-radius: 40px;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center !important;
}

.green-btn:hover {
    background-color: var(--dark-green) !important;
}

.green-btn a {
    color: white;
    font-size: 30px !important;
    text-decoration: none;
    text-align: center;
}

.orange-text-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--orange);
    font-weight: 900;
}

.orange-btn {
    justify-content: flex-start;
    color: var(--orange);
    font-weight: 900;
    align-items: center;
    position: relative;
}

.search_bar_filter_button {
    background-color: white;
    color: var(--dark);
    font-size: 1.2em;
    text-decoration: none;
    width: 100%;
    padding: 5px 20px;
    text-align: left;
    border: none;
}

.search_bar_filter_button:hover {
    background-color: #f2f2f2;
    background-color: var(--dark-aqua);
}

.search_bar_filter_button.active {
    /* color: var(--orange); */
    font-weight: 500;
}


.filter-button.click_drop_btn {
    padding: 10px;
    justify-content: space-around;
    border-radius: 5px;
    margin-left: 30px;
}





@media screen and (max-width: 1200px) {


    .hero-container{
        padding: 0 50px !important;
    }

    .capital-gain-grid .product-name, .capital-gain-grid .product-price, .capital-gain-grid .product-sale, .capital-gain-grid .product-specs, .capital-gain-grid .product-address{
        width: 200px !important;
        min-width: 10px !important;

    }


}

@media screen and (max-width: 1000px) {

    .property_detail_image_container{
        margin-top: 20px !important;
    }

    .back-button{
        font-size: 13px !important;
    }
    .back-button-bar .show-in-mobile-flex{
        align-items: center !important;
    }

    section.slider{
        padding: 20px !important;
    }
    .rating{
        grid-gap: 5px !important;
    }

    .footer-column-head{
        text-align: center;
    }
    .mobile-menu{
        display: flex;
    }

    nav ul{
        display: none;
    }
    .welcome-content{
        width: 100%;
        padding: 10px !important;
    }
    .welcome .title{
        font-size: 40px !important;
    }
    .welcome .description{
        font-size: 15px !important;
        margin: 0 !important;
        width: 100% !important;
    }
    .search-wrapper{
        width: 100% !important;
    }
    .capital-gain-grid{
        grid-template-columns: repeat(2 , 1fr ) !important;
    }
    .companies-logo{
        display: none !important;
    }
    .hero-container{
        padding: 10px !important;
    }
    .mySlides{
        width: 100% !important;
        padding: 0 !important;
    }
    .prev, .next{
        display: none !important;
    }
    q{
        font-size: 1.2em !important;
    }
    .title-center{
        text-align: center !important;
        font-size: 27px !important;
    }
    .info-card-section{
        padding: 10px !important;
    }
    .info-card-wrapper{
        grid-template-columns: repeat(1 , 1fr ) !important;
    }
    .horizontal{
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .financial-wrapper-row-1{
        grid-template-columns: repeat(1 , 1fr ) !important;
    }
    footer{
        flex-direction: column !important;
        align-items: center !important;
        padding: 10px !important;
    }
    .footer-column{
        align-items: center !important;
        margin: 0 !important;
    }
    .footer-column-list li{
        text-align: center;
    }
    .socail-footer-links{
        flex-direction: row !important;
        justify-content: center !important;
        grid-gap: 20px;
        margin: 10px 0 !important;
    }
    .search-bar-flex{
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .click_drop_down{
        flex-direction: column !important;
    }
    .filter-popup{
        max-height: 90vh !important;
        overflow-y: scroll !important;
        width: 95% !important;
        margin: 0 auto !important;  
    }


    .desktop-navbar{
        display: none !important;
    }

    .hamburger{
        background-color: transparent;
        border: none;
        outline: none;
        cursor: pointer;
        font-size: 30px;
    }
    .properties-list-wrapper.custom-grid .card{
        width: 94% !important;
    }

    .title{
        /* font-size: 1.5em !important; */
        text-align: center !important;
        margin-top: 20px !important;
        font-weight: 800 !important;
    }

    .financing-welcome-text{
        width: 100% !important;
        text-align: justify !important;
    }
    .finance-form-container{
        width: 95% !important;
    }
    form h2{
        text-align: center;
        font-size: 1.2em !important;
        font-weight: 600 !important;
    }
    .financial-wrapper-row-2{
        grid-template-columns: repeat(1, 1fr) !important;
        width: 100% !important;
    }

    .info-card-section .form-container{
        /* background-color: red !important; */
        width: 100% !important;
    }

    .title-center{
        margin-bottom: 30px !important;
    }

    .custom-field{
        flex-direction: row !important;
        align-items: center !important;
    } 

    .mobile-width-full{
        max-width: none !important;
        width: 100% !important;
    }

    .mobile-row{
        flex-direction: row !important;
        align-items: center !important;
    }
    
    .mobile-margin{
        margin: 5px 0 !important;
    }
    .popup-wrapper-overflow{
        height: auto !important;
    }

    .show-in-mobile{
        display: block !important;
    }

    .show-in-mobile-flex{
        display: flex !important;
    }

    .hide-in-mobile{
        display: none !important;
    }

    .blog-card{
        flex-direction: column !important;
        height: auto !important;
        font-family: 'Abel', sans-serif;
    }
    .blog-card img{
        width: 100% !important;
        height: 300px !important;
        border-radius: 15px 15px 0 0 !important;
    }

    .property_detail_image_container{
        padding: 0 8px !important;
        grid-template-columns: repeat(3, 1fr) !important;
        grid-gap: 8px !important;
    }

    .property_detail_image img{
        width: 100% !important;
        max-width:  100vw !important;
    }

    .property_detail_image.span2 img{
        height: 300px !important;
        border-radius: 7px !important;
    }

    .property_detail_image img{
        height: 142px !important;
        border-radius: 7px !important;
    }

    .mobile-heading{
        font-size: 1.7em !important;
    }
    .property-detail-wrapper-container{
        margin-top: 10px !important;
    }

    .capital-gain-grid .product-name, .capital-gain-grid .product-price, .capital-gain-grid .product-sale, .capital-gain-grid .product-specs, .capital-gain-grid .product-address{
        width: 270px !important;
        min-width: 10px !important;
    }

    .chat-whith-us{
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        font-size: 20px !important;
        top: 80vh !important;
        padding: 25px !important;
        right: 20px !important;
    }

    .info-card{
        padding: 0px !important;
    }
    .info-card-heading{
        font-size: 20px !important;
    }
    .info-card-detail{
        font-size: 15px !important;
    }

    .info-card-section-head{
        font-size: 22px !important;
    }

    .property-title,.property-location{
        font-size: 16px !important;
    
    }
    .property_detail_image_container{
        height: 300px !important;
    }

    .search-wrapper{
        height: 55px !important;
        padding: 10px !important;
    }

    .financing-bg{
        height: auto !important;
    }

    .financing-bg{flex-direction: column !important;}

    .financing-hero-container{
        flex-direction: column !important;
        /* background-color: red; */

    }
    .finance-form-container{
        width: 100% !important;
        /* background-color: #2CA6AF; */
        margin: 0 auto !important;
    }
    .description{
        max-width: none !important;
    }

    .FAQ-container{
        width: 100%;
    }
    
}


@media screen and (max-width: 600px) {

    .font-mobile-10{
        font-size: 12px !important;
        padding: 10px !important;
    }

    .capital-gain-grid{
        grid-template-columns: repeat(1 , 1fr ) !important;
    }
.hero-container{
    padding: 0 20px !important;
}
}



.close-button{
    background-color: var(--green) !important;
    border: none;
    outline: none;
    color: white !important;
    font-size: 15px;
    padding: 5px 10px;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    cursor: pointer;
    position: absolute;
    top: -7px;
    right: -7px;
}

.close-button:hover{
    background-color: var(--dark-green) !important;
}

.product-sale{
    color: var(--orange) !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

.product-name ,.product-price{
    font-size: 16px !important;
    font-weight: 600 !important;
}



.form-container {
    background-color: white;
    width: 50vw;
    min-width: 330px;
    border-radius: 10px;
    margin: 0 auto;
    padding: 20px;
}

.form-container button {
    color: white;
    border-radius: 8px;
    background-color: var(--green);
}

.form-container button:hover {
    background-color: var(--dark-green);
}

.card-detail {
    color: black !important;
}

.finance-form-button {
    background: var(--light-aqua) !important;
    font-size: 12px;
    font-weight: 500;
}

.finance-form-button.active {
    background: var(--aqua) !important;

}

.financial-info-card {
    margin-top: 0;
}

.custom-field input {
    color: black;
    height: 30px;
}

.infor-card-form label {
    font-size: 13px;
    font-weight: 400;

}

.infor-card-form input,.infor-card-form select{
    font-size: 13px;
    line-height: 25px;
    border-radius: 5px;
    border: var(--light-aqua) 1px solid;
    box-shadow: none;
    padding: 8px;
    letter-spacing: 0.26px;
    color: #555;

}

.description{
    /* margin: 0 auto; */
}

/* circular check box with green dot */

.checkbox-input-fld {
    border-radius: 50% !important;
    width: 25px !important;
    height: 25px !important;

    border: 1px solid #00000030;
    margin-right: 10px;
    cursor: pointer;
    outline: none !important;
    
}

/* color when checked */
.checkbox-input-fld:checked {
    background-color: var(--green) !important;
    color: var(--green) !important;
    border: none;
}