/**********************************
        COMMON CSS
**********************************/

body {
    background-color: #F6F6F6;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 100px;
}

.mt_10px {
    margin-top: 10px;
}

.active {
    font-weight: 600;
}

#title_bar {
    margin-top: 30px;
}

    #title_bar .col-12 {
        padding: 0;
    }

    #title_bar .title_bar {
        width: 280px;
        background-color: #32639C;
        color: white;
        font-weight: 600;
        font-size: 14px;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }

#agent_bar_desktop {
    display: none;
}

.semiBold {
    font-weight: 600;
}

.light {
    font-weight: 300;
}

.regular {
    font-weight: 500;
}

#navbar a {
    color: white;
}


.color-a {
    text-decoration: none;
    color: #000000;
}

.color-b {
    color: #ffc107;
}

.color-d {
    color: #adadad;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/


.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

        .section-title h2::after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            background: #ffc107;
            bottom: 0;
            left: calc(50% - 25px);
        }

    .section-title p {
        margin-bottom: 0;
        font-size: 14px;
        color: #aab3c7;
    }

/*------/ Space Padding /------*/
.section-t8 {
    padding-top: 8rem;
}

@media (max-width: 767px) {
    .section-t8 {
        padding-top: 4rem;
    }
}

.section-b2 {
    padding-bottom: 2rem;
}

@media (max-width: 767px) {
    .section-b2 {
        padding-bottom: 1rem;
    }
}

/*------/ Title /------*/
.title-wrap {
    padding-bottom: 4rem;
}


.title-link {
    font-size: 1.2rem;
    font-weight: 300;
    padding-top: 1.2rem;
}

    .title-link a {
        text-decoration: none;
        color: #313131;
    }

    .title-link span {
        font-size: 20px;
        padding-left: 4px;
        vertical-align: middle;
    }



/**********************************
# Header
**********************************/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    background: rgba(55, 64, 85, 0.9);
}

    #header.header-transparent {
        background: transparent;
    }

    #header.header-scrolled {
        background: rgba(55, 64, 85, 0.9);
        padding: 15px 0;
    }

    #header .logo {
        font-size: 28px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 600;
        letter-spacing: 2px;
        font-family: "Poppins", sans-serif;
    }

        #header .logo a {
            color: #fff;
            text-decoration: none;
        }

        #header .logo img {
            max-height: 40px;
        }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        color: #fff;
        font-size: 14px;
        white-space: nowrap;
        transition: 0.3s;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #ffc107 !important;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            text-transform: none;
            color: #414c64;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #ffc107;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(45, 53, 69, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #414c64 !important;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #ffc107 !important;
        }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #ffc107;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }




/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/


.intro {
    height: 100vh;
    position: relative;
    color: #ffffff;
}



    .intro .intro-item {
        padding-top: 2rem;
    }

    .intro .carousel-item-a {
        position: relative;
        height: 100vh;
    }

        .intro .carousel-item-a.bg-image {
            background-attachment: scroll;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }



    .intro .overlay {
        position: absolute;
        top: 0;
        left: 0px;
        padding: 0;
        height: 100%;
        width: 100%;
    }

    .intro .overlay-a {
        text-decoration: none;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%);
    }

    .intro .intro-content {
        position: absolute;
    }

    .intro .display-table {
        width: 100%;
        height: 100%;
        display: table;
    }

    .intro .table-cell {
        display: table-cell;
        vertical-align: middle;
    }

    .intro .intro-body {
        padding-left: 1rem;
    }

    .intro .intro-title {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

@media (min-width: 768px) {
    .intro .intro-body {
        padding-left: 2rem;
    }
}



.intro .intro-body .price-a {
    color: #ffffff;
    padding: 1rem 1.5rem;
    border: 2px solid #ffc107;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}



.intro .intro-body .link-a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1.2rem;
}


.intro .spacial {
    animation-delay: 0.2s;
    color: #ffffff;
}

.intro .intro-title-top {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #ffffff;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .intro .intro-title-top {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 992px) {
    .intro .intro-title-top {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

.intro .intro-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 2.8rem;
    text-transform: uppercase;
}

@media (min-width: 576px) {
    .intro .intro-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 768px) {
    .intro .intro-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 992px) {
    .intro .intro-title {
        font-size: 4rem;
    }
}

.intro .intro-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
}

@media (min-width: 768px) {
    .intro .intro-subtitle {
        font-size: 2.5rem;
    }
}

.intro .intro-subtitle.intro-price {
    padding-top: 1rem;
    font-size: 1.2rem;
    margin-bottom: 27px;
}


    .intro .intro-subtitle.intro-price a {
        text-decoration: none;
    }

@media (min-width: 576px) {
    .intro .intro-subtitle.intro-price {
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) {
    .intro .intro-subtitle.intro-price {
        padding-top: 2rem;
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .intro .intro-subtitle.intro-price {
        padding-top: 3rem;
    }
}



@media (max-width: 768px) {

    .intro .intro-body .price-a {
        font-size: 0.9rem;
    }
}


.intro .category-b {
    font-size: 0.9rem;
    background-color: #ffc107;
    padding: 0.3rem 0.7rem;
    color: #313131;
    letter-spacing: 0.03em;
    border-radius: 50px;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-search {
    width: 100%;
    min-height: 20vh;
    position: relative;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(55, 64, 85, 0.9);
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero:before {
    content: "";
    background: color-mix(in srgb, rgba(45, 53, 69, 0.7), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container, .hero-search .container {
    position: relative;
    z-index: 3;
}

.hero h2 {
    color: white;
    margin: 0;
    font-size: 44px;
    font-weight: 700;
}


.hero-search h2 {
    color: #ffc107;
    margin: 0;
    font-size: 44px;
    font-weight: 700;
}

.hero p, .hero-search p {
    color: color-mix(in srgb,white, transparent 20%);
    margin: 5px 0 0 0;
    font-size: 20px;
}

.hero .search-property-from {
    margin-top: 20px;
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 7px;
    background: color-mix(in srgb, #212529 5%, white 90%);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
    display: flex;
}

.hero-search .search-property-from {
    margin-top: 20px;
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 7px;
    background: white;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
    display: flex;
}


.hero input[type="number"], .hero input[type="text"], .hero-search input[type="number"], .hero-search input[type="text"] {
    background-color: white;
    border: 1px solid rgba(45, 53, 69, 0.7);
    height: 100%;
    width: 100%;
    border-radius: 10px;
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
}

.form-control-lg:focus-visible {
    outline: -webkit-focus-ring-color auto 1px;
}

.form-control-lg:focus {
    box-shadow: none;
}


.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: rgba(45, 53, 69, 0.7);
}
/*
    .hero select{
        background-color: white;
        border: 1px solid rgba(45, 53, 69, 0.7);
        width: 100%;
        border-radius: 10px;
        font-size: 14px;
        padding: 10px 15px;
        box-shadow: none;
        height:100%
    }*/
.bootstrap-select {
    width: 100%;
}

    .bootstrap-select button {
        border: 1px solid rgba(45, 53, 69, 0.7);
        border-radius: 10px !important;
        padding: 10px 15px;
    }

.btn-light:hover {
    background-color: white !important;
    border: 1px solid rgba(45, 53, 69, 0.7) !important;
}

.dropdown-menu .inner {
    max-height: 200px;
}

.dropdown-menu > li > a {
    padding: 8px 20px !important;
}

.bootstrap-select > .dropdown-toggle {
    font-size: 14px;
    font-weight: 300;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100% !important;
}

.hero input[type=submit], .hero-search input[type=submit], .btn-primary {
    border: 0;
    box-shadow: none;
    background-color: rgba(55, 64, 85, 0.9);
    border-color: rgba(55, 64, 85, 0.9);
    padding: 8px 20px 10px 20px;
    border-radius: 7px;
    color: white;
    transition: 0.3s;
    height: 100%;
    width: 100%
}

    .hero input[type=submit]:hover, .hero-search input[type=submit]:hover, .btn-primary:hover {
        background-color: color-mix(in srgb, rgba(55, 64, 85, 0.9), transparent 10%);
    }


@media (max-width: 768px) {
    .hero h2, .hero-search h2 {
        font-size: 32px;
    }

    .hero p, .hero-search p {
        font-size: 18px;
    }
}


/*--------------------------------------------------------------
# Card General
--------------------------------------------------------------*/
@media (max-width: 767px) {

    .card-box-a,
    .card-box-b,
    .card-box-c,
    .card-box-d {
        margin-bottom: 2.5rem;
    }
}

.card-box-a span,
.card-box-b span,
.card-box-c span,
.card-box-d span {
    line-height: 0;
}

@media (min-width: 768px) {

    .grid .card-box-a,
    .grid .card-box-b,
    .grid .card-box-c,
    .grid .card-box-d {
        margin-bottom: 2.5rem;
    }
}

.card-box-a,
.card-box-b,
.card-box-d {
    position: relative;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

    .card-box-a .img-a,
    .card-box-a .img-b {
        transition: 0.8s all ease-in-out;
        min-height: 475px;
        max-height: 475px;
        object-fit: cover;
        width: -webkit-fill-available;
        object-position: center;
    }



    .card-box-b .img-a,
    .card-box-b .img-b {
        transition: 0.8s all ease-in-out;
        min-height: 275px;
        max-height: 275px;
        object-fit: cover;
        width: -webkit-fill-available;
        object-position: center;
    }

@media (min-width: 768px) {

    .card-box-a:hover .img-a,
    .card-box-a:hover .img-b,
    .card-box-b:hover .img-a,
    .card-box-b:hover .img-b {
        transform: scale(1.2);
    }
}

@media (min-width: 768px) {

    .card-box-a .price-a,
    .card-box-b .price-a {
        font-size: 0.9rem;
    }
}

@media (min-width: 992px) {

    .card-box-a .price-a,
    .card-box-b .price-a {
        font-size: 1rem;
    }
}

.card-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.card-shadow {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

    .card-shadow:before {
        content: " ";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.65) 90%);
    }

/*======================================
//--//-->   PROPERTY - CARD-A
======================================*/
@media (min-width: 768px) {
    .card-box-a:hover .card-overlay-a-content {
        bottom: 60px;
    }
}

@media (min-width: 768px) and (min-width: 768px) {
    .card-box-a:hover .card-overlay-a-content {
        bottom: 60px;
    }
}

@media (min-width: 768px) and (min-width: 992px) {
    .card-box-a:hover .card-overlay-a-content {
        bottom: 64px;
    }
}

@media (min-width: 768px) {
    .card-box-a:hover .card-body-a {
        padding-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    .card-box-a .card-overlay-a-content {
        bottom: 65px;
    }

    .card-box-a .card-body-a {
        padding-bottom: 1rem;
    }
}

.card-overlay-a-content {
    transition: all 0.5s ease-in;
    position: absolute;
    width: 100%;
    bottom: 0px;
    z-index: 2;
}

@media (min-width: 768px) {
    .card-overlay-a-content {
        bottom: -20px;
    }
}

@media (min-width: 992px) {
    .card-overlay-a-content {
        bottom: 0px;
    }
}

.card-header-a {
    padding: 0 1rem;
}

    .card-header-a .card-title-a {
        color: #ffffff;
        margin-bottom: 0;
        padding-bottom: 0.7rem;
    }

@media (min-width: 768px) {
    .card-header-a .card-title-a {
        font-size: 1.3rem;
    }
}

@media (min-width: 992px) {
    .card-header-a .card-title-a {
        font-size: 2rem;
    }
}

.card-header-a .card-title-a a {
    color: #ffffff;
    text-decoration: none;
}

.card-body-a {
    z-index: 2;
    transition: all 0.5s ease-in;
    padding: 0rem 1rem 2rem 1rem;
}

    .card-body-a .price-box {
        padding-bottom: 0.5rem;
    }

.price-a {
    color: #ffffff;
    padding: 0.6rem 0.8rem;
    border: 2px solid rgba(55, 64, 85);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
}

.card-footer-a {
    width: 100%;
    position: absolute;
    z-index: 2;
    background-color: rgba(55, 64, 85, 0.9);
}

.card-info {
    list-style: none;
    margin-bottom: 0;
    padding: 0.5rem 0;
}

    .card-info .card-info-title {
        font-size: 1rem;
        color: white;
    }

@media (min-width: 768px) {
    .card-info .card-info-title {
        font-size: 0.9rem;
    }
}

@media (min-width: 992px) {
    .card-info .card-info-title {
        font-size: 1rem;
    }
}

.card-info li span {
    color: #ffc107;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .card-info li span {
        font-size: 0.8rem;
    }
}

@media (min-width: 992px) {
    .card-info li span {
        font-size: 1rem;
    }
}



.card-body-a .link-a {
    color: white;
    text-decoration: none;
}


/*======================================
//--//-->   NEWS - CARD-B
======================================*/
.card-header-b {
    padding: 1rem;
    color: #ffffff;
    position: absolute;
    bottom: 20px;
    z-index: 2;
}

@media (min-width: 768px) {
    .card-header-b {
        bottom: 0px;
    }
}

@media (min-width: 992px) {
    .card-header-b {
        bottom: 20px;
    }
}

.card-header-b .category-b {
    font-size: 0.9rem;
    background-color: #2eca6a;
    padding: 0.3rem 0.7rem;
    color: #313131;
    letter-spacing: 0.03em;
    border-radius: 50px;
    text-decoration: none;
}

.card-header-b .title-2 {
    margin-bottom: 0;
    padding: 0.6rem 0;
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .card-header-b .title-2 {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .card-header-b .title-2 {
        font-size: 1.6rem;
    }
}

.card-header-b .title-2 a {
    color: #ffffff;
    text-decoration: none;
}

.card-header-b .date-b {
    color: #d8d8d8;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .card-header-b .date-b {
        font-size: 0.9rem;
    }
}

@media (min-width: 992px) {
    .card-header-b .date-b {
        font-size: 1rem;
    }
}


/**********************************
        SWIPER
**********************************/



.carousel-pagination {
    margin-top: 10px;
    text-align: center;
}

    .carousel-pagination .swiper-pagination-bullet {
        width: 18px;
        height: 10px;
        background-color: #555;
        margin: 0 4px;
        border-radius: 0;
        opacity: 1;
        transition: 0.3s;
    }

    .carousel-pagination .swiper-pagination-bullet-active {
        background-color: #ffc107;
        width: 36px;
    }

/*------/ Property swiper button  /------*/
.property-lead-swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, -24px) !important;
}

.property-lead-swiper-button-next {
    right: var(--swiper-navigation-sides-offset, -24px) !important;
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    padding: 70px 20px 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
    height: 100%;
}

    .services .icon-box .icon {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: ease-in-out 0.3s;
        position: relative;
        background: #f5f5f5;
        border-radius: 50px;
    }

        .services .icon-box .icon i {
            font-size: 32px;
            transition: 0.5s;
            line-height: 1;
            position: relative;
        }


    .services .icon-box h4 {
        font-weight: 600;
        margin: 10px 0 15px 0;
        font-size: 22px;
    }

.services a {
    color: #414c64;
    transition: ease-in-out 0.3s;
    text-decoration: none;
    width: 100%
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}


.services .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
    color: rgba(55, 64, 85);
}

.services .iconbox-blue:hover .icon {
    background: rgba(55, 64, 85);
}

    .services .iconbox-blue:hover .icon i {
        color: #fff;
    }

/**********************************
        AGENT PROFILE
**********************************/




/**********************************
        AGENT PROFILE 2.0
**********************************/

.profile-head .imgcover {
    width: 270px;
    height: 270px;
    margin-left: auto;
    margin-right: auto;
}

.profile-head img {
    /*  max-width: 270px;
    max-height: 270px;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.profile-head {
    background-color: white;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding: 40px 0;
}

    .counts span {
        font-size: 48px;
        display: block;
        color: #414c64;
    }

    .counts p {
        padding: 0;
        margin: 0 0 20px 0;
        font-family: "Raleway", sans-serif;
        font-size: 14px;
    }


/***** Menu Bar *****/

#menu_bar_desktop {
    display: none;
}

.menu_bar_bg {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #F6F6F6;
    box-shadow: 0px -3px 6px 0.1px black;
}

#menu_bar_mobile .fas {
    font-size: 16px;
    color: #32639C;
}

#menu_bar_mobile a {
    font-size: 16px;
    color: #707070;
}

#menu_bar_mobile .btn-secondary, #menu_bar_mobile .btn-primary {
    background: none;
    border: none;
    color: #32639C;
}

#menu_bar_mobile .active {
    font-weight: 600;
    background: none;
}



/**********************************
        SEARCH FILTER
**********************************/

#btn_close button {
    background: none;
    border: none;
}

#btn_close .far {
    font-size: 25px;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #32639C;
}

.btn_buy {
    width: 100%;
    background-color: #32639C;
    color: white;
    font-size: 12px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.btn_rent {
    width: 100%;
    background-color: white;
    color: #707070;
    font-size: 12px;
    padding-top: 15px;
    padding-bottom: 15px;
}

#search form label {
    font-size: 12px;
    font-weight: 600;
}

.option_default {
    color: #707070;
}

#search option, select, input {
    font-size: 12px;
    font-weight: 300;
}

#search .form-control {
    width: 100%;
    height: 30px;
    border: none;
    border-radius: 5px;
}

.btn_search {
    width: 100%;
    background-color: #32639C;
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding-top: 11px;
    padding-bottom: 11px;
    text-align: center;
    border-radius: 5px;
}

/**********************************
        SEARCH RESULT
**********************************/

#filter_bar {
    margin-top: 76px;
}

    #filter_bar .dropdown {
        margin-top: 10px;
    }

.btn_sortby {
    background: none;
    font-size: 12px;
    color: #707070;
}

.filter_bg {
    width: 100%;
    background-color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}


/**********************************
        NEW LAUNCH
**********************************/

/**********************************
        AGENT CONTACT BAR
**********************************/

.agentContactBar {
    background-color: rgba(55, 64, 85);
    padding-top: 20px;
    padding-bottom: 20px;
}

.agentBarPicture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover;
    background-position: top;
}

#agent_contact_bar .btn-info {
    background: none;
    border: none;
}

#agent_contact_bar .agentContactBar h6 {
    font-size: 12px;
    color: white;
    margin-bottom: 0;
}

#agent_contact_bar .agentContactBar h5 {
    font-size: 8px;
    color: white;
    margin-bottom: 0;
}

#agent_contact_bar .modal-content h4 {
    font-weight: 600;
    font-size: 18px;
}

#agent_contact_bar .modal-content h6 {
    font-weight: 500;
    font-size: 12px;
}

.agentBarButton {
    font-size: 23px;
    background-color: rgba(55, 64, 85);
    color: white;
    padding: 10px 13px;
    border-radius: 50%;
}

/**********************************
        RESIDENTIAL PROPERTY
**********************************/

.property_location {
    color: #707070;
    font-size: 10px;
}

#residentialProperty .profile_icons, #commercialProperty .profile_icons {
    margin-left: 0;
}

hr {
    width: 100%;
    border: 0.5px solid #4372D1;
    margin-top: 10px;
    margin-bottom: 10px;
}

.property_details {
    font-size: 10px;
    color: #707070;
}

/**********************************
        PROPERTY DETAILS
**********************************/

/***** Main *****/

#propertyDetailsMain hr {
    width: 100%;
}

#propertyDetailsMain .text_sectionTitle {
    font-size: 20px;
    font-weight: 600;
    color: #4B74A9;
    margin-top: 20px;
}

/***** Back Button *****/

#back_btn .back_btn {
    font-size: 20px;
    color: rgba(55, 64, 85);
}

#back_btn .row {
    padding-top: 15px;
}

/***** Property Image *****/

#propertyImage #carouselControl {
    margin-top: 20px;
}

/***** Property Summary *****/
.text_price {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}

.text_name {
    font-size: 16px;
}

.text_Location, .text_builtUp, .text_landArea, .text_facilities {
    font-size: 12px;
}

.text_builtUp {
    margin-top: 10px;
}

.text_facilities .fas {
    margin-left: 8px;
    margin-right: 20px;
}

.text_facilities img {
    height: 20px;
}

.text_facilities .btn {
    font-size: 12px;
    font-weight: 300;
    background-color: #4FC2C1;
    color: white;
}

    .text_facilities .btn .fas {
        margin-right: 5px;
        margin-left: 5px;
    }

/***** Property Specification *****/

.spec_type {
    margin-top: 20px;
    font-size: 16px;
    color: #9E9E9E;
}

.spec_details {
    margin-top: 5px;
    font-size: 18px;
}

    .spec_details hr {
        margin-left: 0;
        margin-top: 0;
        border: 0.5px dashed #9E9E9E;
    }



.clip-svg {
    clip-path: circle(32.5% at 50% 50%);
}

#profileDetail img {
    margin-top: 30px;
    width: 100%;
}

@media only screen and (min-width: 768px) {

    .desktop_off {
        display: none;
    }

    /***** Menu Bar *****/

    #menu_bar_mobile {
        display: none;
    }

    #menu_bar_desktop {
        display: block;
        margin-bottom: 50px;
    }

    .menu_bar_desktop_bg {
        width: 100%;
        background-color: #E0E0E0;
        padding-top: 13px;
    }

    #menu_bar_desktop .row_02 .form-control {
        font-size: 12px;
    }

    .btn_search {
        font-size: 12px;
        padding-top: 6px;
    }

    /***** Filter Bar *****/

    #filter_bar .btn_sortby {
        font-size: 12px;
    }

    /***** Title Bar *****/

    #title_bar .col-12 {
        padding: 15px;
    }

    #title_bar .title_bar {
        /*width: 30%;*/
        height: 50px;
        font-size: 18px;
        /*text-align: left;*/
        padding-top: 13px;
        /*padding-left: 20px;*/
    }

    /*  .navbar {
        display: block;
        background-color: #32639C;
        color: white;
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 18px;
    }
*/
    #profileDetail img {
        margin-top: 30px;
        width: 100%;
    }

    .clip-svg {
        /*clip-path: circle(31.2% at 50% 50%);*/
        clip-path: circle(32.5% at 50% 50%);
    }

    .profile_name {
        margin-top: 30px;
        font-size: 32px;
        text-align: left;
    }

    #profileDetail hr {
        width: 70%;
        margin-left: 0;
    }

    #profileDetail .far, #profileDetail .fas {
        margin-left: 0;
        font-size: 18px;
    }

    .profile_content_text {
        font-size: 18px;
    }

    #profile_button .profile_button {
        width: 50px;
    }

    #profile_button .row {
        margin-left: 0;
    }

    .search_bar_desktop_bg {
        margin-top: 50px;
        background-color: #32639C;
        padding-top: 35px;
        padding-bottom: 35px;
        border-radius: 5px;
    }

    .btn_searchNow {
        background-color: #0076FF;
    }

    .btn_moreOption {
        color: white;
        font-size: 10px;
        font-weight: 600;
    }

    /**********************************
        PROPERTY DETAILS
    **********************************/

    #agent_contact_bar {
        display: none;
    }

    #agent_bar_desktop {
        display: block;
    }

    .agentContactBar {
        padding-top: 20px;
        padding-bottom: 20px;
        margin-top: 30px;
        border-radius: 5px;
    }

    #propertyDetailsMain .contact-from {
        padding-top: 20px;
        padding-bottom: 20px;
        margin-top: 30px;
    }

    .agentBarPicture {
        width: 150px;
        height: 150px;
    }

    .agentContactBar h6 {
        font-size: 18px;
        color: white;
        margin-bottom: 0;
    }

    .agentContactBar h5 {
        font-size: 12px;
        color: white;
        margin-bottom: 0;
    }

    .agentBarButton {
        width: 35px;
    }


    .agentContactBar .agent-name {
        font-size: 26px;
        font-weight: bold;
    }

    .agentContactBar .company-name {
        font-size: 22px;
        color: #ffc107;
    }


    .btn_submit {
        width: 100%;
        background-color: white;
        color: #32639C;
        text-align: center;
        font-weight: 600;
        border-radius: 3px;
        border-style: none;
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

.loading-overlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: #222222a3;
    z-index: 1000000;
}

.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}


.modal-header .close {
    font-size: 2rem;
    line-height: 1;
    color: #000000;
    cursor: pointer;
}


/*------/ Intro Single /------*/
.intro-single {
    padding: 8rem 0 3rem;
}

@media (max-width: 767px) {
    .intro-single {
        padding-top: 9rem;
    }
}

.intro-single .title-single-box {
    padding: 1rem 0 1rem 2rem;
}

.intro-single .title-single-box {
    border-left: 3px solid #ffc107;
}

    .intro-single .title-single-box .title-single {
        font-weight: 600;
        font-size: 2.2rem;
    }

@media (min-width: 768px) {
    .intro-single .title-single-box .title-single {
        font-size: 2.1rem;
    }
}

@media (min-width: 992px) {
    .intro-single .title-single-box .title-single {
        font-size: 2.5rem;
    }
}

.intro-single .breadcrumb-box {
    padding: 1rem 0 0 0.5rem;
}

.intro-single .breadcrumb {
    background-color: transparent;
    padding-right: 0;
    padding-left: 0;
}

.title-box-d {
    padding-bottom: 1.8rem;
    position: relative;
}

    .title-box-d .title-d {
        font-weight: 600;
        font-size: 2rem;
    }

        .title-box-d .title-d:after {
            content: "";
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: #ffc107;
            bottom: 20px;
            left: 0;
        }
