@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');



:root{

    --heading-font-family: 'Inter', sans-serif;

    --font-family: 'Inter', sans-serif;

    --font-size: 16px;



    --color-primary: #213A6B;

    --color-primary-hover: #3662AB;

    --color-secondary: #44B794;

    --color-secondary-hover: #2E8A6E;

    --color-third: #3662AB;

    --color-third-hover: #213A6B;

    --color-fourth: #F8F9FB;

    --color-fifth: #C8D6EF;

    --color-sixth: #97B2E2;

    --color-seventh: #E6EBF8;

    --color-red: #EB2B52;

    --light-gray: #F7F7F7;

    --light-background: #F8F9FB;

    --dark-background: #20335A;

    --dark-background-faded: #244280ed;

    --border-color: #e5e5e5;

    --placeholder-color: #777777;

    --border-radius: 16px;

    --border-radius-small: 8px;

    --border-radius-xs: 4px;

    --shadow: 0 7px 18px rgba(0, 0, 0, 0.05);

    --gradient: linear-gradient(180deg, #20335A00 0%, #20335A 100%);



    /* overwriting variables */

    --primary-color: var(--color-primary);



    --header-background: #ffffff;

    --header-link: #20335A;

    --header-link-hover: #3662AB;

    --header-link-active: #3662AB;

    --header-background-sticky: #ffffff;

    --header-link-sticky: #20335A;

    --header-link-hover-sticky: #3662AB;

    --header-link-active-sticky: #3662AB;



    --text-color: #000000;

    --text-color-light: #ffffff;

    --heading-color: #213A6B;

    --heading-color-dark: #15203C;    



    --hero-background-image: url('images/huurwoning-vinden.jpg');

    --hero-overlay: var(--gradient);



    --footer-background: #15203C;

    --footer-text: #ffffff;

    --footer-link: #ffffff;

    --copyright-background: #0E1934;

}



/* Setting variables */

body{

    font-family: var(--font-family) !important;

    font-size: var(--font-size);

    color: var(--text-color);

    background-color: var(--light-background);

}

h1, h2{

    font-family: var(--heading-font-family) !important;

    color: var(--heading-color);

}

h3, h4, h5, h6{

    font-family: var(--heading-font-family) !important;

    color: var(--heading-color-dark);

}

.main-title h2{

    color: var(--heading-color);

    font-family: var(--heading-font-family);

}

.main-title p{

    color: var(--text-color);

    font-family: var(--font-family);

}

.background-third{

    background-color: var(--color-third);

    color: var(--text-color-light);

}

ul.check {

    list-style: none;

    padding-left: 2rem;

    position: relative;

}

ul.check li{

    align-items: start;

    line-height: 1.5;

    margin-bottom: .5rem;

    flex-flow: row wrap;

}

ul.check li::before{

    content: "";

    background-image: url('images/check-green.svg');

    background-position: bottom;

    flex-shrink: 0;

    height: 20px;

    width: 20px;

    background-size: contain;

    background-repeat: no-repeat;

    margin-right: 1rem;

    position: absolute;

    left: 0;

}

a{

    color: var(--color-primary);

}

a:hover{

    color: var(--color-secondary);

}

button, input[type="submit"]{

    background-color: var(--color-primary);

    color: var(--text-color-light);

    border: none;

    border-radius: var(--border-radius);

    padding: 10px 20px;

    cursor: pointer;

    transition: all 0.3s;

}

button:hover, input[type="submit"]:hover{

    background-color: var(--color-secondary);

}

button:focus, input[type="submit"]:focus{

    outline: none;

}

/* ----------------------------------------------

 * Generated by Animista on 2024-4-26 14:22:31

 * Licensed under FreeBSD License.

 * See http://animista.net/license for more info. 

 * w: http://animista.net, t: @cssanimista

 * ---------------------------------------------- */



/**

 * ----------------------------------------

 * animation ping

 * ----------------------------------------

 */

 @-webkit-keyframes ping {

    0% {

      -webkit-transform: scale(0.2);

              transform: scale(0.2);

      opacity: 0.8;

    }

    80% {

      -webkit-transform: scale(1.2);

              transform: scale(1.2);

      opacity: 0;

    }

    100% {

      -webkit-transform: scale(2.2);

              transform: scale(2.2);

      opacity: 0;

    }

  }

  @keyframes ping {

    0% {

      -webkit-transform: scale(0.2);

              transform: scale(0.2);

      opacity: 0.8;

    }

    80% {

      -webkit-transform: scale(1.2);

              transform: scale(1.2);

      opacity: 0;

    }

    100% {

      -webkit-transform: scale(2.2);

              transform: scale(2.2);

      opacity: 0;

    }

  }  

#mailalert {

    position: fixed;

    left: 5rem;

    bottom: 1rem;

    z-index: 1;

    height: 45px;

    padding: 0 1rem;

}

#mailalert .pulse {

    background-color: var(--color-red);

    height: 15px;

    width: 15px;

    border-radius: 50%;

    position: absolute;

    top: -8px;

    right: .75rem;

}

#mailalert .pulse::before {

    content: "";

    display: block;

    width: 25px;

    height: 25px;

    border-radius: 50%;

    background-color: var(--color-red);

    -webkit-animation: ping 2s ease-in-out infinite both;

            animation: ping 2s ease-in-out infinite both;

    opacity: .5;

    margin-left: -5px;

    margin-top: -5px;

}

.btn-thm {

    background-color: var(--color-secondary);

    border-color: var(--color-secondary);

    color: var(--text-color-light);

}

.btn-thm:hover,

.btn-thm:focus {

    background-color: var(--color-secondary-hover);

    border-color: var(--color-secondary-hover);

    color: var(--text-color-light);

}

.btn-primary {

    background-color: var(--color-third);

    border-color: var(--color-third);

    color: var(--text-color-light);

}

.btn-primary:hover,

.btn-primary:focus {

    background-color: var(--color-third-hover);

    border-color: var(--color-third-hover);

    color: var(--text-color-light);

}

.btn-secondary {

    background-color: var(--color-primary);

    border-color: var(--color-primary);

    color: var(--text-color-light);

}

.btn-secondary:hover, 

.btn-secondary:focus {

    background-color: var(--color-primary-hover);

    border-color: var(--color-primary-hover);

    color: var(--text-color-light);

}

.btn-sm{

    border-radius: var(--border-radius-small);

}

.btn-lg{

    padding: .75rem 2rem;

    border-radius: var(--border-radius-small);

    font-size: 1.1rem;

}

.btn.icon-check{

    align-items: center;

    display: flex;

    padding: .6rem 1rem .6rem .75rem !important;

}

.btn.icon-check:before{

    content: "";

    background-image: url('images/check-square.svg');

    background-size: 20px;

    background-repeat: no-repeat;

    background-position: center;

    display: inline-block;

    width: 20px;

    height: 20px;

    margin-right: 1rem;

}



input, textarea{

    border: 1px solid var(--border-color);

    border-radius: var(--border-radius-xs);

}

input::placeholder, textarea::placeholder, .custom-select::placeholder{

    color: var(--placeholder-color);

}



.mbp_pagination ul.page_navigation{

    align-items: center;

}

.mbp_pagination ul.page_navigation li.page-item{

    margin: 0;

}

.mbp_pagination ul.page_navigation li.active .page-link{

    border-color: var(--color-primary);

}

.mbp_pagination ul.page_navigation li .page-link{

    border-radius: 0;

}

.page-item.disabled > span{

    height: 45px;

    width: 45px;

    line-height: 45px;

    display: block;

    border-top: 1px solid var(--border-color);

    border-bottom: 1px solid var(--border-color);

    background-color: var(--light-color);

    cursor: default;

}

.mbp_pagination ul.page_navigation li:first-child .page-link{

    border-top-left-radius: var(--border-radius-small);

    border-bottom-left-radius: var(--border-radius-small);

}

.mbp_pagination ul.page_navigation li:last-child .page-link{

    border-top-right-radius: var(--border-radius-small);

    border-bottom-right-radius: var(--border-radius-small);

}



body header.header-nav.menu_style_home_one{

    background-color: var(--header-background);

}

body header.header-nav.menu_style_home_one .ace-responsive-menu li a{

    font-family: var(--heading-font-family);

    color: var(--header-link);

    font-size: 1rem;

}

body header.header-nav.menu_style_home_one .ace-responsive-menu li a:hover{

    color: var(--header-link-hover);

}

body header.header-nav.menu_style_home_one .ace-responsive-menu li a.active{

    color: var(--header-link-active);

}

body header.menu_style_home_one.stricky-fixed {

    background-color: var(--header-background-sticky);

}

body header.menu_style_home_one.stricky-fixed .ace-responsive-menu li a{

    color: var(--header-link-sticky);

}

body header.menu_style_home_one.stricky-fixed .ace-responsive-menu li a:hover{

    color: var(--header-link-hover-sticky);

}

body header.menu_style_home_one.stricky-fixed .ace-responsive-menu li a.active{

    color: var(--header-link-active-sticky);

}

body .list-inline-item.list_s.add_listing a{

    background-color: var(--color-third);

}

body .list-inline-item.list_s.add_listing a:hover{

    background-color: var(--color-primary);

}

section.home1_bgi1{

    background-image: var(--hero-background-image);

}

body header .mega-menu-title{

    font-weight: 600 !important;

}

body header .ace-responsive-menu li .links > div > a.btn-primary{

    border-radius: var(--border-radius-small);

}

body header .ace-responsive-menu li .links{

    background-color: var(--color-fourth) !important;

}

.home1-overlay::before {

    background: var(--hero-overlay);

    top: 20%;

    bottom: 0;

    opacity: 1;

}

footer .footer_one{

    background-color: var(--footer-background);

    color: var(--footer-text);

}

footer .footer_one .footer_col h4{

    color: var(--footer-text);

}

footer .footer_one .footer_col a{

    color: var(--footer-link);

}

footer .footer_one .footer_col a:hover{

    color: var(--footer-link);

}

footer .footer_middle_area{

    background-color: var(--copyright-background);

    color: var(--footer-text);

}

.footer_about_widget p, 

.footer_about_widget li a, .footer_qlink_widget li a, .footer_contact_widget li a{

    color: var(--footer-text);

    font-size: var(--font-size);

}

.scrollToHome{

    left: 20px;

    background-color: var(--color-primary);

    z-index: 5;

}

.page-item.active .page-link {

    z-index: 0;

}













/* Ajustments huurwoningen.site */



.icon-large{

    width: 60px;

    height: 60px;

    display: inline-block;

    background-size: contain;

    background-repeat: no-repeat;

    background-position: center;

}

.icon-home-1:before {

    content: "";

    background-image: url('images/icon-home-1.svg');

    display: inline-block;

}

header.header-nav.menu_style_home_one a.navbar_brand{

    margin-top: 18px;

    height: 59px;

}

.home-one.home1-overlay.home1_bgi1 {

    margin-top: 0;

}

.home_content{

    min-height: 680px;

    height: 70vh;

}

.home-search-box{

    background: var(--dark-background-faded) 0% 0% no-repeat padding-box;

    backdrop-filter: blur(2px);

    -webkit-backdrop-filter: blur(2px);

    color: var(--text-color-light);

    padding: 1.5rem 2rem;

    text-align: center;

    border-radius: var(--border-radius);

    max-width: 680px;

    margin: 0 auto;

}

#collapseFilter.collapse:not(.show){ display: block;}

.home-search-box h1{

    margin-bottom: 1.5rem;

}

.home-search-box h1 span{

    color: var(--color-sixth);

}

.home-search-box .btn {

    padding: .75rem 2rem;

}

.shortcut-links span{

    font-weight: 700;

    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);

}

#search{

    background-image: url('images/search.svg');

    background-size: 20px;

    background-repeat: no-repeat;

    background-position: 15px center;

    padding-left: 50px;

    border-top-right-radius: 0;

    border-bottom-right-radius: 0;

    height: 56px;

}

.search_option_button .btn{

    border-top-left-radius: 0;

    border-bottom-left-radius: 0;

    height: 56px;

}

.home-one-bottom{

    background-color: var(--dark-background);

    color: var(--text-color-light);

    padding: 1rem 0;

    min-height: 60px;

}

.home-one-bottom .usp{

    list-style: none;

    padding: 0;

    display: flex;

    justify-content: space-between;

    flex-flow: row wrap;

    margin-bottom: 0;

}

.home-one-bottom .usp li{

    display: inline-flex;

    align-items: center;

}

.home-one-bottom .usp b{

    color: var(--color-secondary);

    margin-right: .5rem;

}

.icon{

    content: "";

    background-size: contain;

    background-repeat: no-repeat;

    background-position: center;

    display: inline-block;

    width: 21px;

    height: 21px;

    margin-right: .5rem;

}

.icon.icon-house{

    background-image: url('images/home.svg');

}

.icon.icon-arrow-up{

    background-image: url('images/arrow-up-circle.svg');

}

.icon.icon-message{

    background-image: url('images/message-square.svg');

}

.bgc-f7{

    background-color: var(--color-fourth);

}

.why_chose_us {

    border-radius: var(--border-radius);

    margin-bottom: 1rem;

    padding: 2rem 2rem 1rem;

    text-align: left;

    box-shadow: var(--shadow);

    height: 100%;

}

.why_chose_us .details h4{

    color: var(--heading-color);

    font-size: 1.25rem;

}

.why_chose_us .details p {

    font-size: var(--font-size);

    font-family: var(--font-family);

    line-height: 1.5;

}

.why_chose_us .details {

    min-height: auto;

    margin-top: 1.5rem;

}

.feat_property{

    border-radius: var(--border-radius);

    box-shadow: var(--shadow);

    margin-bottom: 1rem;

}

.feat_property .details .tc_content{

    padding: 1.5rem 2rem;

    min-height: 135px;

}
.feat_property.home7.style4 .thumb{
	aspect-ratio: 6/3;
    height: auto;
}
.feat_property .thumb img{
	height: 100%;
}
.feat_property .thumb::before {

    background: linear-gradient(180deg, #20335A00 0%, #20335A7D 100%);

    top: 20%;

    bottom: 0;

    opacity: 1;

    height: auto;

}

.feat_property .thumb .thmb_cntnt a.fp_price,

.grid_span_prop{

    font-family: var(--font-family);

}

.feat_property .thumb .thmb_cntnt .icon {

    right: 15px;

    height: 35px;

}

.feat_property .details .tc_content h3{

    font-family: var(--heading-font-family);

    color: var(--heading-color-dark);

}

.icon-bedroom:before {

    content: "";

    background-image: url('images/bed.svg');

    display: inline-block;

    width: 25px;

    height: 23px;

    background-size: contain;

    background-repeat: no-repeat;

    background-position: center;

    margin-right: .5rem;

}

.icon-bath:before {

    content: "";

    background-image: url('images/bath.svg');

    display: inline-block;

    width: 25px;

    height: 23px;

    background-size: contain;

    background-repeat: no-repeat;

    background-position: center;

    margin-right: .5rem;

}

.icon-space:before {

    content: "";

    background-image: url('images/m2.svg');

    display: inline-block;

    width: 25px;

    height: 23px;

    background-size: contain;

    background-repeat: no-repeat;

    background-position: center;

    margin-right: .5rem;

}

.membership-cta{

    border-radius: var(--border-radius);

    overflow: hidden;

    box-shadow: var(--shadow);

    background-color: #fff;

}

.membership-box{

    background-color: var(--color-fifth);

    padding: 2rem;

    height: 100%;

    text-align: center;

    display: grid;

    align-items: center;

}

.membership-box .price{

    color: var(--color-third);

    font-weight: 700;

    font-size: 4rem;

}

.membership-box .subtext{

    color: var(--heading-color-dark);

    margin-bottom: 2rem;

}

.membership-usp{

    padding: 3rem 2rem;

}

.membership-usp h3{

    color: var(--heading-color-dark);

    font-family: var(--heading-font-family);

    font-size: 1.25rem;

}





.listing-filter{

    background-color: var(--color-primary);

    padding: 20px 0;

}

.listing-filter .filter-name{

    color: #fff;

    font-size: 1rem;

    font-weight: 700;

    margin-bottom: .2rem;

}

.listing-filter #search{

    background-image: url('images/pin.svg');

    background-size: 15px;

    height: 45px;

    font-size: .9rem;

    border-radius: var(--border-radius-small);

    min-width: 230px;

    padding-left: 40px;

}

.listing-filter #search::placeholder{

    color: var(--placeholder-color);

}

.listing-filter .pricing_acontent {

    margin-right: .5rem;

    display: flex;

    flex-flow: row wrap;

}

.listing-filter .noUi-horizontal .noUi-handle{

    width: 10px;

    height: 10px;

    border-width: 7px;

}

.listing-filter .pricing_acontent .slider-range-value1,

.listing-filter .pricing_acontent .slider-range-value2{

    font-size: .9rem;

    color: #fff;

    font-weight: 700;

    margin-bottom: .2rem;

}

.listing-filter .pricing_acontent .slider-range-value2{

    margin-left: auto;

}

.listing-filter .inline-form input, 

.listing-filter .inline-form select{

    height: 45px;

    border-radius: var(--border-radius-xs);

}

.listing-filter .inline-form .btn {

    flex-shrink: 0;

    padding: 0 1rem;

    height: 45px;

}

.noUi-connect,

.noUi-horizontal .noUi-handle{

    background: var(--color-secondary);

}



.our-listing{

    padding-top: 2rem;

    padding-bottom: 2rem;

}

.our-listing .feat_property{

    margin-bottom: 1.5rem;

    min-height: 94.5%;

}

.our-listing .feat_property .tag{

    position: absolute;

    top: 1.5rem;

    left: 1.5rem;

    background-color: var(--color-secondary);

    color: #fff;

    padding: .2rem .5rem;

    border-radius: var(--border-radius-small);

    font-size: .9rem;

    font-weight: 700;

}

.our-listing .feat_property .details .tc_content {

    padding: 1.5rem 2rem .5rem;

    min-height: 120px;

}

.grid_list_search_result {

    margin: 0 0 2rem;

    background: unset;

    border: unset;

    display: flex;

    flex-flow: row wrap;

    justify-content: space-between;

    width: 100%;

    padding: 0;

    height: auto;

    align-items: center;

}

.grid_list_search_result h1{

    font-size: 1rem;

    font-weight: 400;

    color: var(--text-color);

    display: inline-block;

    margin: 0;

}

.grid_list_search_result .right_area{

    display: flex;

    gap: 1rem;

    align-items: center;

}

.grid_list_search_result .right_area span{

    flex-shrink: 0;

}

.grid_list_search_result .right_area select{

    height: 45px;

    border-radius: var(--border-radius-small);

    font-size: .9rem;

}

.fp_footer{

    padding: 1rem 2rem;

    border-top: 1px solid #e5e5e5;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.fp_footer .fp_pdate_custom{

    transform: none !important;

    font-size: .9rem;

    font-style: italic;

}

.content-area{

    background-color: var(--light-color);

    padding: 60px 0 50px;

}

.content-area h2{

    font-size: 1.25rem;

    margin-bottom: .2rem;

    margin-top: 1rem;

}

.content-area h3{

    font-size: 1.1rem;

    margin-bottom: .2rem;

    margin-top: 1rem;

}

.content-area p{

    font-size: 1rem;

    line-height: 1.5;

}



#savequeryModal .modal-content{

    border-radius: var(--border-radius);

    overflow: hidden;

}

#savequeryModal.show + .modal-backdrop {

    display: block;

    opacity: .8;

    background-color: var(--copyright-background);

}

#savequeryModal .modal-header{

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    z-index: 1;

    border: 0;

}

.modal-header .close:hover{

    background: transparent;

}

#savequeryModal .modal-body{

    padding: 0;

}

#savequeryModal .text-wrapper {

    padding: 2rem;

}

#savequeryModal .text-wrapper h2{

    font-size: 3rem;

    font-weight: 200;

    margin-bottom: 1rem;

    line-height: 1.1;

    color: var(--text-color-light);

}

#savequeryModal .text-wrapper h2 b{

    font-weight: 700;

    display: block;

    font-size: 3.1rem;

}

#savequeryModal .text-wrapper p{

    color: var(--text-color-light);

    font-size: 1rem;

}

#savequeryModal .form-wrapper{

    padding: 2rem;

}

#savequeryModal .form-wrapper h3{

    font-size: 1.1rem;

    margin-bottom: 0;

}

.form-wrapper .pricing_acontent {

    margin-top: 1rem;

    display: flex;

    flex-flow: row wrap;

}

.pricing-slider-div.noUi-target.noUi-ltr.noUi-horizontal.noUi-background {

    width: 100%;

}

.form-wrapper .pricing_acontent .slider-range-value1,

.form-wrapper .pricing_acontent .slider-range-value2{

    font-size: .9rem;

    font-weight: 700;

    margin-bottom: .2rem;

}

.form-wrapper .pricing_acontent .slider-range-value2{

    margin-left: auto;

}

#savequeryModal ul{

    padding: 2rem;

    margin-left: 2rem;

    margin-bottom: 0;

    margin-top: auto;

}



.save-query{

    padding: .75rem 2rem;

    border-radius: var(--border-radius-small);

    font-size: 1rem;

    font-weight: 700;

    margin-top: 1rem;

}

.modal-text-wrapper {

    align-content: center;

    height: 100%;

}



label {

    font-size: .9rem;

    margin-bottom: .2rem;

    font-weight: 500;

    margin-top: 1rem;

}



.listing-title-area{

    background: #ffffff;

    border-top: 1px solid var(--border-color);

}

.listing-title-area .image-wrapper img{

    border-radius: var(--border-radius-xs);

}



.property-tags{

    display: flex;

    flex-flow: row wrap;

    padding-top: .5rem;

}

.badge{

    background-color: var(--light-gray);

    color: var(--text-color);

    display: flex;

    align-items: center;

    font-size: .9rem;

    font-weight: 400;

    padding: .25rem 1rem;

    border-radius: var(--border-radius-xs);

    margin-right: .5rem;

    margin-bottom: .5rem;

    height: 45px;

}



#collapseSummary {

    height: 80px;

    display: flex;

    flex-flow: row wrap;

    overflow: hidden;

    margin-bottom: 0;

}

#collapseSummary p{

    font-size: 1rem !important;

    -webkit-line-clamp: 3;

    display: -webkit-box;

    -webkit-box-orient: vertical;

    overflow: hidden;

    text-overflow: ellipsis;

}

#collapseSummary.show{

    height: auto;

}

#collapseSummary.show p{

    -webkit-line-clamp: unset;

}



#summary a[data-toggle="collapse"]{

    color: var(--color-third);

}

#summary a[data-toggle="collapse"]:hover{

    color: var(--color-secondary);

}

.send-message{

    background-color: var(--color-seventh);

    padding: 1.5rem;

    border-radius: var(--border-radius-xs);

    font-weight: 700;

    margin-top: 2rem;

}

.send-message h2{

    font-size: 1.25rem;

    margin-bottom: .5rem;

    font-weight: 700;

    color: var(--heading-color-dark);

}

.single_property_social_share{

    display: flex;

    flex-flow: row wrap;

    justify-content: space-between;

    align-items: center;

    gap: 1rem;

}

.single_property_social_share .price{

    font-size: 2rem;

    font-weight: 700;

    color: var(--color-primary);

}

.single_property_social_share .price small{

    font-size: 1rem;

    font-weight: 400;

    color: var(--color-primary);

}

.additional_details{

    padding: 0;

}

.our-agent-single h2{

    font-size: 1.25rem;

    margin-bottom: .5rem;

    font-weight: 700;

}

.our-agent-single .list-details{

    width: 100%;

}

.our-agent-single .list-details li {

    display: grid; 

    grid-template-columns: 1fr 3fr;

    gap: 1rem;

}

.our-agent-single .card{

    border-radius: var(--border-radius);

    box-shadow: var(--shadow);

}

.our-agent-single .card .card-body{

    padding: 1.5rem;

}

.our-agent-single .owl-nav{

    display: none;

}

.our-agent-single .sidebar_feature_property_slider .feat_property .thumb .thmb_cntnt a.fp_price {

    bottom: 15px;

}

.our-agent-single h3.title{

    font-size: 1.25rem !important;

    text-align: center;

    margin-bottom: 1rem;

    margin-top: 2rem;

}



section.single-cta{

    background-color: var(--dark-background);

    padding: 4rem 0;  

}

p.mb-4, .check{

    color: var(--text-color-light);

    font-size: 1rem;

}

.check_plan{

    color: var(--text-color) !important;

}

.cta-title{

    font-size: 3rem;

    margin-bottom: 1rem;

    color: var(--color-secondary);

    font-weight: 100;

    line-height: 1;

}

.cta-title b{

    font-weight: 700;

}

section.single-cta .card{

    border-radius: var(--border-radius);

    box-shadow: var(--shadow);

    border: none;

    overflow: hidden;

    background: transparent;

}

section.single-cta .card-body{

    background-color: #fff;

    padding-top: 0;

}

section.single-cta .card-header{

    background-color: var(--color-third);

    color: var(--text-color-light);

    font-size: 1.25rem;

    font-weight: 700;

    padding: 1rem 2rem;

    border-top-left-radius: var(--border-radius);

    border-top-right-radius: var(--border-radius);

}

section.single-cta .card-header h3{

    margin-bottom: 0;

    color: var(--text-color-light);

    font-size: 1.25rem;

}



@media (min-width: 1400px){

    .listing-filter .inline-form {

        display: flex;

        gap: 1rem;

        font-size: .9rem;

    }

}

@media (min-width: 1200px){

    .listing-filter button{

        padding: 0;

    }

}

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

    .inline-form {

        display: flex;

        flex-flow: row wrap;

        gap: 0 .5rem;

        align-items: center;

        font-size: .9rem;

    }

    .inline-form .pricing_acontent {

        width: 210px;

        margin-top: .5rem;

    }

    .inline-form input, .inline-form select{

        width: auto;

    }

}



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

    #savequeryModal .text-wrapper h2{

        font-size: 2.5rem !important;

    }

    #savequeryModal ul {

        padding: 1rem 1rem 1rem 2rem;

        margin-left: 1rem;

        font-size: .9rem;

    }      

    #savequeryModal .text-wrapper {

        padding: 0 1.5rem;

    }

    #savequeryModal .text-wrapper h2 b{

        display: inline;

    }

    #savequeryModal .text-wrapper h2{

        margin-bottom: 1rem;

    }

}



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

    #savequeryModal .text-wrapper {

        padding-top: 2rem;

    }

    #savequeryModal ul {

        padding: 1rem 1rem 1.5rem 2rem;

    }

    .inline-form input, .inline-form select{

        width: 100%;

    }

    .inline-form {

        gap: .5rem;

    }

    .listing-filter{

        background-color: var(--color-light);

        padding-bottom: 0;

    }

    #collapseFilter{

        background-color: var(--color-fifth);

        padding: 1rem;

        border-radius: var(--border-radius);

        margin-bottom: 1rem;

    }

    .filter-btn{

        background-color: var(--color-third);

        margin-top: 1rem;

        margin-bottom: .5rem;

        font-weight: 700;

        display: flex;

        align-items: center;

    }

    .filter-btn::after{

        content: "";

        background-image: url('images/sort.svg');

        background-size: 9px;

        background-repeat: no-repeat;

        background-position: center;

        display: inline-block;

        width: 9px;

        height: 20px;

        margin-left: .5rem;

    }

    .our-listing{

        padding-top: 0;

    }

    .listing-filter .pricing_acontent .slider-range-value1, 

    .listing-filter .pricing_acontent .slider-range-value2{

        color: var(--primary-color);

    }

    .inline-form .pricing_acontent{

        width: 100%;

        display: block;

    }

    .listing-filter .pricing_acontent .slider-range-value2{

        float: right;

    }

    #collapseFilter.collapse:not(.show){ display: none;}

    #collapseFilter.card-header:after{ display: none;}

    .our-agent-single .list-details li{

        grid-template-columns: 1fr auto;

    }

}



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

    .bar.fixed-bottom {

        background: #fff;

        position: fixed;

        bottom: 0;

        height: 78px;

        z-index: 1;

        border-top: 1px solid #e5e5e5;

    }

    .TrengoWidgetLauncher__iframe {

        bottom: 9px !important;

    }

    .launcher-triangle {

        display: none;

    }

    #mailalert {

        left: 50%;

        transform: translateX(-50%);

    }

    .home_content {

        align-items: center;

    }

    .home1_bgi1 {

        background-size: cover;

    }

    .home-one-bottom .usp{

        gap: 1rem;

    }

    .home-one-bottom .usp li {

        display: inline-flex;

        flex-flow: row wrap;

    }

    .why_chose_us{

        margin-bottom: 1rem;

        height: auto;

    }

    .membership-usp {

        padding: 2rem 2rem 1rem;

    }

    .grid_list_search_result .right_area{

        margin-top: .5rem;

        font-size: .9rem;

    }

    .left_area, .left_area h1 {

        font-size: .9rem !important;

        order: 2;

        margin-top: .5rem;

    }

    #savequeryModal .text-wrapper h2 b,

    #savequeryModal .text-wrapper h2{

        font-size: 2rem !important;

    }

}



 .dropbtn{

        color: var(--color-primary)!important;

    }

