
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body h1, body h2, body h3, body h4, body h5, body h6{
    font-weight: 600;
    line-height: 1.2;
}
a {
    transition: all 0.3s ease 0s;
}
p, li{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.23;
    color: #000;
}
@media only screen and (max-width: 991.98px){
    p, li{
        font-size: 16px;
    }
}
/****** Container css ******/
body .container{
    width: 100% !important;
    padding: 0 30px;
}
@media only screen and (min-width: 576px) {
    body .container {
        max-width: 100%;
    }
}
@media only screen and (min-width: 650px) {
    body .container {
        max-width: 100%;
    }
}
@media only screen and (min-width: 768px) {
    body .container {
        max-width: 920px;
    }
}
@media only screen and (min-width: 992px) {
    body .container {
        max-width: 960px;
    }
}
@media only screen and (min-width: 1200px) {
    body .container {
        max-width: 1140px;
    }
}
@media only screen and (min-width: 1300px) {
    body .container {
        max-width: 1210px;
    }
}
@media only screen and (min-width: 1400px) {
    body .container {
        max-width: 1390px;
    }
}
@media only screen and (min-width: 1099px){
    .mxw-1024{
        max-width: 1024px !important;
    }
}
/****** Container css ******/
/****** section_padding css ******/
.section_padding {
    padding: 80px 0;
}
.section_margin {
    margin: 80px 0;
}
@media only screen and (max-width: 1440.98px) {
    .section_padding {
        padding: 70px 0;
    }
    .section_margin {
        margin: 70px 0;
    }
}
@media only screen and (max-width: 1200.98px) {
    .section_padding {
        padding: 60px 0;
    }
    .section_margin {
        margin: 60px 0;
    }
}
@media only screen and (max-width: 991.98px) {
    .section_padding {
        padding: 50px 0;
    }
    .section_margin {
        margin: 50px 0;
    }
}
@media only screen and (max-width: 767.98px) {
    .section_padding {
        padding: 40px 0;
    }
    .section_margin {
        margin: 40px 0;
    }
}
/****** section_padding css ******/
/****** Font Css ******/
.heading1{
    font-size: 60px;
    line-height: 1.3;
}
.heading2{
    font-size: 45px;
}
.heading3{
    font-size: 35px;
}
.heading4{
    font-size: 20px;
}
@media only screen and (max-width: 1600.98px){
    .heading1{
        font-size: 54px;
    }
    .heading2{
        font-size: 40px;
    }
    .heading3{
        font-size: 32px;
    }
}
@media only screen and (max-width: 991.98px){
    .heading1{
        font-size: 44px;
    }
    .heading2{
        font-size: 36px;
    }
    .heading3{
        font-size: 30px;
    }
}
@media only screen and (max-width: 768.98px){
    .heading1{
        font-size: 34px;
    }
    .heading2{
        font-size: 30px;
    }
    .heading3{
        font-size: 28px;
    }
    .heading4{
        font-size: 18px;
    }
}
@media only screen and (max-width: 575.98px){
    .heading1{
        font-size: 28px;
    }
    .heading2{
        font-size: 24px;
    }
    .heading3{
        font-size: 22px;
    }
}
/****** Font Css ******/
/****** Button Css ******/
.default-cta{
    margin-top: 30px;
}
.default-btn {
    background-color: #5BC4FB;
    border: 2px solid #5BC4FB;
    color: #fff;
    padding: 8px 15px;
    width: 100%;
    max-width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    transition: all 0.4s;
    padding-right: 50px;
    position: relative;
}
.default-btn:after {
    position: absolute;
    content: "";
    width: 28px;
    height: 24px;
    right: 13px;
    top: 50%;
    background-image: url("/uploads/images/btn-right-arrow.svg");
    transform: translateY(-50%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .5s;
}
.default-btn:hover{
    color: transparent;
}
.default-btn:hover:after{
    right: 50%;
    transform: translate(50%, -50%)
}
.black-border-btn {
    color: #000;
    border-color: #000;
    background: transparent;
}
.black-border-btn:after {
    filter: brightness(0);
}
.black-border-btn:hover {
    background: #000;
}
.black-border-btn:hover:after {
    filter: brightness(1);
}
.default-btn.mw-100 {
    padding: 8px 15px;
}
.default-btn.mw-100:after {
    position: unset;
    transform: unset !important;
}
.default-btn.mw-100:hover {
    font-size: 0;
}
@media only screen and (max-width: 767.98px){
    .default-btn{
        font-size: 16px;
    }
}
@media only screen and (max-width: 575.98px){
    .default-btn{
        max-width: 100%;
    }
    .default-btn {
        padding: 8px 15px;
    }
    .default-btn:after {
        position: unset;
        transform: unset !important;
    }
    .default-btn:hover {
        font-size: 0;
    }
}
/****** Button Css ******/
/****** Header Css ******/
.site-header {
    transition: all 0.2s ease 0s;
    background-color: #fff;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 9999;
}
.site-header.sticky-header {
    position: fixed;
    box-shadow: rgba(100, 100, 111, 0.4) 0px 4px 20px 0px;
}
.collapse.navbar-collapse {
    visibility: visible;
}
.navbar-collapse {
    margin-top: 25px;
}
.navbar .navbar-brand img {
    width: 100%;
    max-width: 244px;
}
header nav.navbar {
    padding: 18px 0;
}
.navbar-nav .nav-item a.nav-link {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    color: #141F30;
}
.navbar-nav .nav-item a.nav-link.active, .navbar-nav .nav-item a.nav-link:hover {
    color: #5bc4fb;
}
header .default-cta {
    margin-left: 30px;
    margin-top: 0;
}
/* Toggle Button Css */
button.navbar-toggler {
    outline: none;
    box-shadow: unset;
    border: 2px solid #5BC4FB;
    padding: 11px 8px;
    display: block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    transition: all 0.4s;
}
button.navbar-toggler:focus{
    box-shadow: unset;
}
.navbar-toggler span.toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #5BC4FB;
    border-radius: 5px;
    transition: all 0.4s;
}
.navbar-toggler span.toggle-line.center-line {
    margin: 6px 0;
}
.navbar-toggler[aria-expanded="true"] span.toggle-line{
    width: 26px;
}
.navbar-toggler[aria-expanded="true"] .center-line {
    display: none;
}
.navbar-toggler[aria-expanded="true"] .first-line {
    transform: rotate(-45deg) translateX(-1px);
}
.navbar-toggler[aria-expanded="true"] .last-line {
    transform: rotate(45deg) translateX(-1px);
}
/* Toggle Button Css */
@media only screen and (max-width: 1023.98px){
    header nav.navbar .container {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
    .navbar-nav .nav-item a.nav-link{
        font-size: 16px;
    }
}
@media only screen and (max-width: 991.98px){
    header .default-cta {
        margin-left: 0;
    }
}
@media only screen and (max-width: 575.98px){
    .navbar .navbar-brand img{
        max-width: 180px;
    }
}
/****** Header Css ******/
/****** Banner Css ******/
.banner-section {
    position: relative;
    max-width: calc(100% - 100px);
    width: 100%;
    margin: 0 auto 0;
    border-radius: 25px;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    min-height: 580px;
    display: flex;
    align-items: center;
}
@media only screen and (min-width: 768px){
    .banner-img {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: -1;
        top: 50%;
        transform: translate(-50%, -50%);
        left: 50%;
    }
}
.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.banner-video {
    position: absolute;
    width: 100%;
    height: 100%;
    padding-top: 56.66%;
    z-index: -1;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}
.banner-video:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: rgba(0, 0, 0, .3);
}
.banner-content{
    width: 100%;
    max-width: 660px;
}
.main-content p{
    margin-top: 18px;
}
@media only screen and (max-width: 1200.98px){
    .banner-section{
        min-height: calc(100vh - 200px);
        max-width: calc(100% - 80px);
    }
    .banner-content {
        max-width: 560px;
    }
}
@media only screen and (max-width: 767.98px){
    .banner-section{
        min-height: 100%;
        padding: 0;
        display: block;
        border-radius: 20px;
        background-color: #F5F6FA;
        max-width: calc(100% - 60px);
    }
    .banner-video{
        position: relative;
        transform: unset;
        left: unset;
        top: unset;
        overflow: hidden;
    }
    .banner-video iframe{
        transform: scale(1.2);
    }
    .banner-video:after{
        display: none;
    }
    .banner-content{
        padding: 30px 0;
    }
}
@media only screen and (max-width: 575.98px){
    .banner-content .main-title h1 br{
        display: none;
    }
    .banner-section .container{
        padding: 0 20px;
    }
}
@media only screen and (max-width: 425.98px){
    .banner-img img {
        aspect-ratio: 16/9;
        height: auto;
    }
}
/****** Banner Css ******/
/****** Featured Properties Css ******/
.properties_main {
    margin-top: 50px;
}
.properties-slider {
    margin-right: -25px;
    margin-left: -25px;
}
.swiper-slide.properties-slide {
    padding: 0 25px;
    height: auto;
}
.properties-box {
    background-color: #F5F6FA;
    border-radius: 10px;
    height: auto;
}
.properties-img {
    position: relative;
}
.properties-img img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.properties-badge {
    position: absolute;
    top: 20px;
    left: 20px;
}
.properties-badge span {
    background-color: #5BC4FB;
    padding: 6px 12px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}
.properties-content {
    padding: 20px;
}
.properties-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.properties-detl {
    display: flex;
    gap: 10px;
    align-items: center;
}
.properties-detl img {
    width: 100%;
    max-width: 22px;
    aspect-ratio: 1;
}
.properties-detl p {
    font-weight: 500;
    font-size: 14px;
    color: #000;
}
.properties-content h3 {
    color: #000;
    padding-bottom: 10px;
}
.properties-content .location, .properties-content .type {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    color: #8C8C8C;
    padding-bottom: 10px;
}
.properties-content .office-location, .properties-content .type{
    padding-bottom: 20px;
}
.properties-content .pricing {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: #141F30;
}
.slider_pagination {
    text-align: center;
    margin-top: 40px;
}
.slider_pagination .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    background: #F5F6FA;
    border: 1px solid #D9D9D9;
    opacity: 1 !important;
    outline: unset !important;
}
.slider_pagination .swiper-pagination-bullet-active {
    background: #141F30;
    border: 1px solid #141F30;
}
@media only screen and (max-width: 991.98px){
    .properties-content .pricing{
        font-size: 20px;
    }
    .slider_pagination .swiper-pagination-bullet{
        width: 20px;
        height: 20px;
    }
}
@media only screen and (max-width: 767.98px){
    .properties_main {
        margin-top: 40px;
    }
    .properties-content .pricing{
        font-size: 18px;
    }
    .slider_pagination{
        margin-top: 30px;
    }
    .slider_pagination .swiper-pagination-bullet{
        width: 18px;
        height: 18px;
    }
}
@media only screen and (max-width: 575.98px){
    .slider_pagination{
        margin-top: 20px;
    }
    .slider_pagination .swiper-pagination-bullet{
        width: 16px;
        height: 16px;
    }
}
@media only screen and (max-width: 500.98px){
    .swiper-wrapper {
        align-items: flex-start !important;
        transition: height 0.3s ease;
        height: auto;
    }
    .swiper-slide,
    .swiper-slide > div{
        height: auto !important;
        min-height: 0 !important;
    }
}
@media only screen and (max-width: 400.98px){
    .properties-detl{
        flex-direction: column;
    }
    .properties-detl img {
        max-width: 16px;
    }
    .properties-badge span, .properties-detl p{
        font-size: 12px;
    }
    .slider_pagination .swiper-pagination-bullet{
        width: 14px;
        height: 14px;
    }
}
/****** Featured Properties Css ******/
/****** Footer Css ******/
.footer-section {
    background-color: #141f30;
    padding: 35px 0 19px;
}
.footer-logo img{
    width: 100%;
    max-width: 244px;
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 46px;
}
.footer-menu li a {
    font-weight: 500;
    font-size: 18px;
    color: #fff;
}
.copyright-bar {
    text-align: center;
    margin-top: 67px;
    padding-top: 16px;
    color: #fff;
    border-top: 1px solid #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
}
@media only screen and (max-width: 1300px) {
    .copyright-bar,
    .footer-menu li a {
        font-size: 16px;
    }
    .copyright-bar{
        margin-top: 35px;
    }
}
@media only screen and (max-width: 991.98px) {
    .footer-logo{
        margin-bottom: 20px;
    }
    .footer-logo img {
        margin: 0 auto;
    }
    .footer-menu {
        justify-content: center;
        gap: 24px;
    }
}
@media only screen and (max-width: 550.98px) {
    .footer-menu {
        flex-direction: column;
    }
}
/****** Footer Css ******/
/****** Common-Section Upper Row css ******/
.section-upper-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.section-title > span:first-child {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.6px;
    color: #5BC4FB;
    margin-bottom: 24px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-right: 12px;
}
.section-title > span:first-child:before,
.section-title > span:first-child:after {
    position: absolute;
    content: "";
    width: 113px;
    height: 2px;
    background: #5BC4FB;
    display: inline-block;
    vertical-align: middle;
    right: -113px;
    top: 50%;
    transform: translateY(-50%);
}
.section-title > span:first-child:before{
    display: none !important;
}
.section-content {
    max-width: 470px;
    width: 100%;
}
@media only screen and (max-width: 991.5px) {
    .section-upper-row {
        flex-direction: column;
    }
    .section-title,
    .section-content{
        max-width: 100%;
        width: 100%;
        text-align: center !important;
    }
    .section-content .default-btn{
        margin: 0 auto !important;
    }
    .section-title > span:first-child{
        padding: 0 10px !important;
    }
    .section-title > span:first-child:before,
    .section-title > span:first-child:after{
        display: block !important;
        width: 40px;
    }
    .section-title > span:first-child:before {
        right: 100%;
    }
    .section-title > span:first-child:after {
        right: auto;
        transform: unset !important;
        left: 100%;
    }
}
@media only screen and (max-width: 768.5px) {
    .section-title > span:first-child{
        margin-bottom: 16px;
    }
}
/****** Common-Section Upper Row css ******/
/****** Why Choose Css ******/
.why-wingspan-section{
    background-image: url("/uploads/images/patten-wave-bg-img.webp");
    background-repeat: round;
    background-size: cover;
    background-position: 0;
}
.all-icon-box {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.icon-box {
    display: flex;
    gap: 20px;
    background: #F5F6FA;
    border-radius: 10px;
    padding: 20px;
}
.icon {
    min-width: 70px;
    width: 70px;
    height: 70px;
    background: #5BC4FB;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.icon img {
    width: calc(100% - 24px);
    height: calc(100% - 24px);
}
.content {
    text-align: left !important;
}
.content h3 {
    font-size: 18px;
    margin-bottom: 14px;
}
.content p {
    font-size: 16px;
}
@media only screen and (max-width: 991.5px) {
    .why-wingspan-section{
        background-repeat: no-repeat;
    }
    .all-icon-box{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .icon-box{
        max-width: calc(50% - 9px);
        width: 100%;
    }
}
@media only screen and (max-width: 768.5px) {
    .icon-box{
        max-width: 100%;
    }
}
@media only screen and (max-width: 480.5px) {
    .icon-box{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}
/****** Why Choose Css ******/
/****** Contact Page Css ******/
/* Modal */
.modal-dialog {
    max-width: 1055px !important;
    padding: 10px;
    margin: auto !important;
    height: 100%;
    display: block !important;
}
.modal-body, .modal-header {
    position: relative;
    padding: 0 20px;
}
.modal-content {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 10px !important;
    border: 1px solid #8C8C8C !important;
    padding: 20px 0;
}
.close {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 999;
    font-size: 2rem !important;
    font-weight: 400 !important;
    color: var(--white) !important;
    opacity: 1;
    background: transparent;
    border: none !important;
    line-height: 1 !important;
    background-image: unset !important;
}
.close:hover {
    opacity: 1 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #e5c160 !important
}
.modal-open .modal {
    background-color: rgb(0 0 0 / 20%);
    z-index: 9999;
}
@media only screen and (min-width: 576px) {
    .modal-body, .modal-header {
        padding: 0 32px;
    }
    .modal-content {
        padding: 32px 0;
    }
}
@media only screen and (min-width: 768px) {
    .modal-body, .modal-header {
        padding: 0 54px;
    }
}
/* Contact Form */
.form-wrap .row {
    margin-left: -6px;
    margin-right: -6px;
}
.form-wrap .row>* {
    padding-left: 6px;
    padding-right: 6px;
}
.form-content {
    position: relative;
    margin: 0 0 15px;
}
.form-content input, .form-content textarea {
    border: 1px solid #000000;
    border-radius: 5px;
    padding: 8px;
    outline: none;
    width: 100%;
}
.form-content input {
    height: 40px;
}
.form-content input:focus, .form-content textarea:focus {
    border-color: #5bc4fb;
}
.form-content label {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 10px;
}
label.label1 {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #ff0000 !important;
    position: absolute !important;
    bottom: -16px !important;
    left: 0 !important;
    margin: 0 !important;
}

/* disclaimer msg */
.disclaimer-msg {
    margin: 0 0 16px;
    position: relative;
}
.disclaimer-msg p,
.disclaimer-msg a,
.disclaimer-msg label {
    font-size: 12px;
    color: #000;
}
.disclaimer-msg a {
    color: #5BC4FB;
    text-decoration: none;
}
.disclaimer-msg a:hover {
    color: #000;
    text-decoration: none;
}
.form-checkbox {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
}
.form-checkbox input {
    height: 16px !important;
    width: 16px !important;
    position: absolute;
    top: 3px;
    left: 0;
}
.form-checkbox label,
.disclaimer-msg p {
    max-width: calc(100% - 24px);
    width: 100%;
    margin-left: auto;
    margin-bottom: 0;
}
/* Contact Info */
.contact-title {
    max-width: 400px;
    width: 100%;
    margin: 0 0 30px;
}
.contact-title h2.heading2 {
    margin: 0 0 18px;
}
.contact-info {
    background-color: #F5F6FA;
    border-radius: 5px;
    padding: 30px;
}
.contact-info h3 {
    color: #5BC4FB;
    text-transform: uppercase;
    font-size: 12px;
    margin: 0 0 5px;
}
.contact-info a:hover {
    color: #5BC4FB;
}
@media only screen and (max-width: 991.98px){
    .contact-info{
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 480px) {
    .contact-info {
        padding: 15px;
    }
    .contact-info p {
        font-size: 14px;
    }
}
@media only screen and (min-width: 992px) {
    .contact-info {
        width: calc(100% - 30px);
        margin-left: auto;
    }
}
/****** Contact Page Css ******/
/****** Policy Page Css ******/
.policy-content {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}
.policy-content:not(:last-child) {
    margin-bottom: 40px;
}
.policy-content p:not(:last-child) {
    margin-bottom: 16px;
}
.policy-content p {
    font-size: 16px;
    line-height: 1.45;
}
.policy-content b {
    font-weight: 600;
}
.policy-content h2 {
    margin-bottom: 20px;
}
.policy-content h3, .policy-content ul {
    margin-bottom: 16px;
}
.policy-content li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 16px;
    position: relative;
}
.policy-content li::before {
    position: absolute;
    content: "";
    top: 7px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #5bc4fb;
    border-radius: 50px;
}
.policy-content p a {
    color: #5bc4fb;
    font-weight: 600;
}
.policy-content p a:hover {
    color: #8C8C8C;
}
@media only screen and (max-width: 767.98px){
    .policy-content:not(:last-child) {
        margin-bottom: 20px;
    }
    .policy-content h2 {
        margin-bottom: 16px;
    }
    .policy-content h3, .policy-content ul {
        margin-bottom: 12px;
    }
}
/****** Policy Page Css ******/
/****** Listings Page Css ******/
.listing-section {
    background-image: url("/uploads/images/patten-wave-bg-img.webp");
    background-repeat: repeat-y;
    background-size: contain;
    background-position: center;
}
/* Filter Box Css */
.listing-head-main {
    /* display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between; */
    background-color: #F5F6FA;
    padding: 20px;
    border-radius: 10px;
}
/* .filter-side{
    max-width: calc(83% - 10px);
} */
.listing-wrap {
    width: 100%;
}
.filter-box {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 20px;
    width: 100%;
    /* max-width: 926px; */
    justify-content: center;
}
.filter-main {
    width: 100%;
    max-width: calc(20% - 16px);
    min-width: 150px;
}
.filter-listing label {
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 10px;
}
.filter-listing select {
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #D9D9D9;
}
/* @media only screen and (max-width: 1299.98px){
    .filter-box{
        max-width: 828px;
    }
} */
.pagination-wrap {
    text-align: center;
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.listing-section .pagination-wrap a{
    height: 40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}
.pagination-wrap a.pagination-number {
    width: 40px;
    border: 2px solid #D9D9D9;
    color: #141F30;
}
.pagination-wrap a.pagination-number.active {
    background-color: #141F30;
    color: #D9D9D9;
    border-color: #141F30;
}
.pagination-wrap a.pagination-btn {
    width: fit-content;
    border: 2px solid #141F30;
    background: #141F30;
    padding: 5px 10px;
    color: #D9D9D9;
    transition: all 0.3s;
}
.pagination-wrap a.pagination-btn:hover {
    background-color: transparent;
    color: #141F30;
}
@media only screen and (max-width: 1024.98px){
    /* .filter-main {
        max-width: calc(33.33% - 12px);
    } */
    .filter-main {
        max-width: calc(50% - 10px);
    }
    .filter-listing label{
        padding-bottom: 5px;
    }
    .filter-listing select{
        padding: 5px 10px;
    }
    .filter-btn {
        text-align: center;
    }
    .filter-listing button {
        max-width: 200px;
    }
    .listing-section .pagination-wrap a{
        height: 35px;
    }
    .pagination-wrap a.pagination-number{
        width: 35px;
    }
}
@media only screen and (max-width: 991.98px){
    /* .filter-side {
        max-width: calc(80% - 10px);
    } */
    .pagination-wrap{
        padding-top: 30px;
    }
    .listing-section .pagination-wrap a{
        font-size: 16px;
        height: 30px;
    }
    .pagination-wrap a.pagination-number{
        width: 30px;
    }
}
@media only screen and (max-width: 767.98px){
    /* .listing-head-main{
        align-items: end;
    }
    .filter-side {
        max-width: calc(76% - 10px);
    } */
    .filter-main {
        max-width: calc(50% - 10px);
    }
    /* .filter-box{
        justify-content: center;
    } */
}
@media only screen and (max-width: 600.98px){
    .listing-wrap {
        max-width: max-content;
    }
    .listing-head-main {
        justify-content: center;
        padding: 20px 10px;
    }
    .listing-section .pagination-wrap a{
        font-size: 14px;
        height: 26px;
    }
    .pagination-wrap a.pagination-number{
        width: 26px;
    }
}
@media only screen and (max-width: 420.98px){
    .filter-main, .filter-listing button {
        max-width: 100%;
    }
    .pagination-wrap a.pagination-btn {
        display: none !important;
    }
}
/* Filter Box Css */
.total-results {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.total-results p {
    font-weight: 500;
    font-size: 16px;
}
@media only screen and (max-width: 991.98px){
    .total-results {
        padding: 22px 0;
    }
}
@media only screen and (max-width: 767.98px){
    .total-results {
        padding: 15px 0;
    }
}
/* Map List Btn */
.btn-side{
    max-width: min-content;   
}
.list-view-main {
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 25px 2px;
    border-radius: 5px;
}
.list-view {
    padding: 10px 15px;
    transition: all 0.4s;
    border-radius: 5px;
}
.list-view svg {
    width: 35px;
    height: 35px;
    object-fit: contain;
}
.list-view span {
    font-weight: 500;
}
.listview-active {
    background-color: #141F30;
    border-radius: 5px;
}
.listview-active svg {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(148deg) brightness(107%) contrast(101%);
}
@media only screen and (max-width: 1199.98px){
    .list-view svg{
        width: 30px;
        height: 30px;
    }
    .list-view span {
        font-size: 14px;
    }
}
@media only screen and (max-width: 991.98px){
    .list-view svg{
        width: 25px;
        height: 25px;
    }
    .list-view span {
        font-size: 12px;
    }
}
/* Map List Btn */
/* Properties List Css */
.properties-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 30px;
}
.properties-main-wrap {
    width: 100%;
    max-width: calc(33.33% - 20px);
}
@media only screen and (max-width: 991.98px){
    .properties-main-wrap {
        max-width: calc(50% - 15px);
    }
}
@media only screen and (max-width: 700.98px){
    .properties-main-wrap {
        max-width: 100%;
    }
}
/* Properties List Css */
/* Map List Css */
.map-list-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.map-list-col {
    width: 100%;
    max-width: calc(50% - 7.5px);
}
.listing-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    overflow-y: auto;
    height: 100%;
    aspect-ratio: 1;
}
.listing-col {
    width: 100%;
    max-width: calc(50% - 7.5px);
}
.listing-row .properties-badge {
    top: 10px;
    left: 10px;
}
.listing-row .properties-badge span {
    font-size: 10px;
    padding: 4px 10px;
}
.listing-row .properties-content {
    padding: 15px 10px;
}
.properties-info{
    margin-bottom: 10px;
}
.listing-row .properties-detl {
    gap: 5px;
}
.listing-row .properties-detl img {
    max-width: 16px;
}
.listing-row .properties-detl p {
    font-size: 11px;
}
.listing-row .properties-content h3 {
    font-size: 16px;
    padding-bottom: 5px;
}
.listing-row .properties-content .location, .listing-row .properties-content .type{
    font-size: 12px;
    padding-bottom: 5px;
}
.listing-row .properties-content .type{
    padding-bottom: 10px;
}
.listing-row .properties-content .pricing{
    font-size: 16px;
}
@media only screen and (max-width: 991.98px){
    .map-list-row {
        flex-direction: column-reverse;
    }
    .map-list-col{
        max-width: 100%;
    }
    .map-main {
        order: 2;
    }
    .list-main {
        order: 1;
    }
    .map-main > div {
        width: 100%;
        aspect-ratio: 3/2;
    }
    /* .listing-row {
        overflow: auto;
        aspect-ratio: unset;
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
    }
    .listing-col.map-property-item {
        min-width: 350px;
    } */
}
/* @media only screen and (max-width: 575.98px){
    .listing-col.map-property-item {
        min-width: 300px;
    }
} */
@media only screen and (max-width: 550.98px){
    .listing-col {
        max-width: 100%;
    }
}
@media only screen and (max-width: 425.98px){
    /* .listing-col.map-property-item {
        min-width: 250px;
    } */
    .map-main > div {
        aspect-ratio: 4 / 3;
    }
}
@media only screen and (max-width: 350.98px){
    /* .listing-col.map-property-item {
        min-width: 230px;
    } */
}
/* Map List Css */
/* Listing Popup Css */
.popup-container {
    max-width: 1035px;
}
button.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.20) 0px 0px 20px 2px;
    z-index: 9;
}
.description-box-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
}
.description-box-col {
    width: 100%;
    max-width: calc(50% - 20px);
}
.description-box-row .description-box-col:nth-child(2) {
    display: flex;
    flex-direction: column;
}
.description-box-col.description-box-full {
    max-width: 100%;
}
.properties-img.description-box-col img {
    border-radius: 10px;
    height: 100%;
    aspect-ratio: unset;
}
.description-box-col h3 {
    color: #000;
    padding-bottom: 10px;
}
.description-box-col .location, .description-box-col .type {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    color: #8C8C8C;
    padding-bottom: 10px;
}
.description-box-col .type{
    padding-bottom: 20px;
}
.description-box-col .pricing {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: #141F30;
    padding-bottom: 20px;
}
.listing-details-row {
    display: flex;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 15px;
}
.listing-details-col {
    width: 100%;
    max-width: calc(50% - 7.5px);
}
.listing-details {
    background-color: #F5F6FA;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 5px;
}
.listing-details img {
    width: 26px;
    aspect-ratio: 1;
}
.listing-details p {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
}
.description-box h3 {
    padding-bottom: 15px;
}
.listing-map {
    padding-top: 40px;
}
.listing-map iframe {
    border-radius: 10px;
}
@media only screen and (max-width: 991.98px) and (min-width: 750px){
    .properties-img.description-box-col img {
        aspect-ratio: 16/8;
    }
}
@media only screen and (max-width: 991.98px){
    button.close-btn{
        top: 5px;
        right: 5px;
    }
    .description-box-row{
        gap: 30px;
        padding: 30px;
    }
    .description-box-col {
        max-width: 100%;
    }
    .listing-map{
        padding-top: 30px;
    }
}
@media only screen and (max-width: 767.98px){
    button.close-btn{
        padding: 4px;
    }
    .description-box-row{
        padding: 25px;
    }
    .properties-badge {
        top: 15px;
        left: 15px;
    }
    .description-box-col h3, .description-box-col .pricing{
        font-size: 18px;
    }
    .listing-details img{
        width: 22px;
    }
    .listing-details p{
        font-size: 16px;
    }
}
@media only screen and (max-width: 575.98px){
    .description-box-row{
        padding: 20px;
    }
    .listing-details-col{
        max-width: 100%;
    }
    .properties-badge {
        top: 10px;
        left: 10px;
    }
    .properties-badge span{
        padding: 4px 10px;
        font-size: 12px;
    }
    .listing-details img {
        width: 20px;
    }
    .listing-map iframe {
        width: 100%;
        height: 100%;
        aspect-ratio: 4/3;
    }
}
/* Listing Popup Css */
/****** Listings Page Css ******/