@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300..900&display=swap');

@font-face {
    font-family: 'Trueno';
    src: url('fonts/trueno-light-webfont.woff2') format('woff2'),
         url('fonts/trueno-light-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Trueno';
    src: url('fonts/trueno-semibold-webfont.woff2') format('woff2'),
         url('fonts/trueno-semibold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Trueno';
    src: url('fonts/trueno-litalic-webfont.woff2') format('woff2'),
         url('fonts/trueno-litalic-webfont.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}

:root{
    --heading-font-family: 'Red Hat Display', sans-serif;
    --font-family: 'Trueno', sans-serif;
    --font-size: 16px;

    --color-primary: #24C4B5;
    --color-primary-hover: #1A9A8A;
    --color-secondary: #24324A;
    --color-secondary-hover: #293954;
    --color-third: var(--color-secondary);
    --color-third-hover: var(--color-secondary-hover);
    --color-fourth: #F8F9FB;
    --color-fifth: #C8D6EF;
    --color-sixth: #97B2E2;
    --color-seventh: #E4E7EC;
    --color-red: #E16552;
    --light-gray: #F7F7F7;
    --light-background: #F8F9FB;
    --dark-background: #20335A;
    --dark-background-faded: #244280ed;
    --border-color: #e5e5e5;
    --placeholder-color: #777777;
    --border-radius: 10px;
    --border-radius-small: 10px;
    --border-radius-xs: 5px;
    --shadow: 0 7px 18px rgba(0, 0, 0, 0.05);
    --gradient: linear-gradient(180deg, #1d293e00 50%, #1D293E 100%);

    /* overwriting variables */
    --primary-color: var(--color-primary);

    --header-background-home: transparent;
    --header-link-home: #ffffff;


    --header-background: #ffffff;
    --header-link: #20335A;
    --header-link-hover: #24C4B5;
    --header-link-active: #24C4B5;
    --header-background-sticky: #ffffff;
    --header-link-sticky: #20335A;
    --header-link-hover-sticky: #3662AB;
    --header-link-active-sticky: #3662AB;

    --text-color: #484848;
    --text-color-light: #ffffff;
    --heading-color: #213A6B;
    --heading-color-dark: #15203C;    

    --hero-background-image: url('images/hero.jpg');
    --hero-overlay: #24324A;

    --footer-background: #15203C;
    --footer-text: #ffffff;
    --footer-link: #ffffff;
    --copyright-background: #0E1934;
}

html{
    scroll-behavior: smooth;
}

/* 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, .h3-title h2{
    font-size: 1.4rem;
}

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;
    font-weight: 700;
}
#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-primary);
    border-color: var(--color-primary);
    color: var(--text-color-light);
    font-weight: 700;
}
.btn-thm:hover,
.btn-thm:focus {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: var(--text-color-light);
}
.btn-primary {
    background-color: var(--color-third);
    border-color: var(--color-third);
    color: var(--text-color-light);
    border-radius: 5px;
    font-weight: 700;
}
.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);
    font-weight: 700;
}
.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-xs);
    font-weight: 700;
}
.btn-lg{
    padding: .75rem 2rem;
    border-radius: var(--border-radius-small);
    font-size: 1.1rem;
    font-weight: 700;
}
.btn-icon{
    display: inline-flex;
    align-items: center;
    padding: .5rem 1rem;
    font-weight: 700;
}
.btn-icon::before{
    content: "";
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: .5rem;
}
.btn-whatsapp::before{
    background-image: url('images/whatsapp.svg');
}
.btn-line::before{
    background-image: url('images/line.svg');
}
.btn-call::before{
    background-image: url('images/call.svg');
}
.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;
}
.social-button{
    color: var(--secondary-color);
}
.breadcrumbs{
    display: flex;
    flex-flow: row wrap;
    gap: .5rem;
    font-size: .9rem;
    margin-bottom: 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);
}
#selectType {
    min-width: 140px;
}

.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{
    background-color: var(--header-background);
}
body.home header.header-nav.menu_style_home_one{
    background-color: var(--header-background-home);
}
header.header-nav a.navbar_brand .logo1{
    display: none !important;
}
header.header-nav a.navbar_brand .logo2{
    display: block !important;
}
body.home header.header-nav a.navbar_brand .logo1{
    display: block !important;
}
body.home header.header-nav a.navbar_brand .logo2{
    display: none !important;
}

body.home header.header-nav.menu_style_home_one .ace-responsive-menu li a{
    color: var(--header-link-home);
}
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;
    font-weight: 700;
}
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) !important;
}
body header.menu_style_home_one.stricky-fixed .ace-responsive-menu li a{
    color: var(--header-link-sticky) !important;
}
body.home header.menu_style_home_one.stricky-fixed a.navbar_brand .logo1{
    display: none !important;
}
body.home header.menu_style_home_one.stricky-fixed a.navbar_brand .logo2{
    display: block !important;
}
body header.menu_style_home_one.stricky-fixed .ace-responsive-menu li a:hover{
    color: var(--header-link-hover-sticky) !important;
}
body header.menu_style_home_one.stricky-fixed .ace-responsive-menu li a.active{
    color: var(--header-link-active-sticky) !important;
}
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);
}
header.header-nav.menu_style_home_one .ace-responsive-menu > li > a{
    padding: 32px 20px 32px 10px;
}
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);
}
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-secondary);
    z-index: 5;
}
.page-item.active .page-link {
    z-index: 0;
}






/* Ajustments huurflits Thailand */

.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: -130px;
}
.home_content{
    min-height: 680px;
    height: 70vh;
}
.home-search-box{
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.home-search-box h1{
    font-size: 3rem;
}
.home-search-box .form-control,
.home-search-box .custom-select{
    height: 56px;
}
#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;
    height: 56px;
    min-width: 350px;
    max-width: 100%;
}
.search_option_button .btn{
    height: 56px;
}
.home-one-bottom{
    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-primary);
    font-weight: 400;
    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);
}

.feat_property .thumb .thmb_cntnt ul.tag li, .feat_property.home8 ul.tag li, .properti_city.home6 .thumb .thmb_cntnt ul.tag li, .feat_property.list .dtls_headr ul.tag li{
    padding: 0 .4rem;
    width: auto;
    line-height: 22px;
    font-family: var(--heading-font-family);
    font-weight: 600;
}
.feat_property .thumb .thmb_cntnt .icon li{
    background-color: #B6C3D9;
    opacity: 1;
}
.feat_property .project{
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
}
.feat_property .thumb .thmb_cntnt .icon li a{
    color: var(--text-color);
}
.feat_property .thumb .thmb_cntnt .icon li:hover a{
    color: var(--text-color-light);
}
.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 .thumb::before {
    background: var(--gradient);
    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;
}

.listing-filter{
    background-color: var(--color-secondary);
    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-primary);
}

.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-primary);
    color: #fff;
    padding: .1rem .4rem;
    border-radius: var(--border-radius-xs);
    font-size: .9rem;
    font-weight: 400;
}
.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;
    color: #ACACAC;
}
.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;
}
#savequeryModal .form-wrapper .pricing_acontent {
    margin-top: 1rem;
    display: flex;
    flex-flow: row wrap;
}
#savequeryModal .pricing-slider-div.noUi-target.noUi-ltr.noUi-horizontal.noUi-background {
    width: 100%;
}
#savequeryModal .form-wrapper .pricing_acontent .slider-range-value1,
#savequeryModal .form-wrapper .pricing_acontent .slider-range-value2{
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: .2rem;
}
#savequeryModal .form-wrapper .pricing_acontent .slider-range-value2{
    margin-left: auto;
}
#savequeryModal ul{
    padding: 2rem;
    margin-left: 2rem;
    margin-bottom: 0;
    margin-top: auto;
}
#savequeryModal .btn{
    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{
    border-radius: var(--border-radius);
    overflow: hidden;
}

.property-tags{
    display: flex;
    flex-flow: row wrap;
    padding-top: .5rem;
}
.badge{
    background-color: var(--color-seventh);
    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;
}
.badge-primary{
    background-color: var(--color-primary);
    color: var(--text-color-light);
    display: inline-block;
    padding: .5rem;
    height: auto;
    margin-bottom: .5rem;
}

#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-primary);
}
#summary a[data-toggle="collapse"]:hover{
    color: var(--color-primary-hover);
}
.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: start;
    gap: 1rem;
}
.single_property_social_share .price{
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--heading-font-family);
    color: var(--color-secondary);
    line-height: 1.4;
}
.feat_property .thumb .thmb_cntnt a.fp_price small{
    margin-left: 1rem;
}
.single_property_social_share .price small{
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-secondary);
    font-family: var(--font-family);
    display: block;
}
.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 ul{
    margin-bottom: 0;
}
.our-agent-single .list-details li {
    display: grid; 
    grid-template-columns: 2fr 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;
}
.card.project-details{
    overflow: hidden;   
}
.card.project-details {
    display: grid;
    grid-template-columns: 1fr 2fr;
}
.card.project-details img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card.project-details p{
    margin-bottom: .2rem;
}
.project-excerpt{
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.project-details .specifications{
    display: flex;
    flex-flow: row wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}
.project-details .description{
    margin-bottom: 1rem;
}
.project-details .location{
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
.project-details .location::before{
    content: "";
    background-image: url('images/pin.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: .5rem;
}

.project-single p{
    font-size: 1rem;
}
.project-single .project_thumb{
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1rem;
}

section.property-city .properti_city h2{
    color: var(--text-color-light);
    text-align: left;
    font-size: 1.4rem;
}
.properti_city .overlay .details{
    left: 2rem;
}

section.projects{
    padding-top: 0;
}
section.projects::before{
    background: #ffffff;
    content: "";
    display: block;
    height: 50%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
section.projects .thumb{
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
}
section.projects .project{
    cursor: pointer;
}
section.projects .project .thumb img{
    transition: all 0.3s;
}
section.projects .project:hover .thumb img{
    transform: scale(1.1) rotate(-1deg);
}
section.projects h3{
    margin-bottom: 0;
}


@media (min-width: 1400px){
    .listing-filter .inline-form {
        display: flex;
        gap: 1rem;
        font-size: .9rem;
    }
}
@media (min-width: 1200px){
    .listing-filter button{
        padding: 0;
    }
    .listing-title-area .image-wrapper{
        margin-top: -4rem;
    }
}
@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;}
}

@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;
    }
}