@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Root Variables */
:root {
    --font-base: 'Poppins', sans-serif;

    /* Colors */
    --color-black: #000;
    --color-white: #ffffff;
    --color-red: #EC2027;
    --color-green: #4CAF50;
    --color-gray: #D6D6D6;
    --color-overlay-dark: rgba(0, 0, 0, 0.5);
    --color-overlay-darker: rgba(0, 0, 0, 0.7);

    /* Font Sizes */
    --fs-48: 48px;
    --fs-36: 36px;
    --fs-30: 30px;
    --fs-24: 24px;
    --fs-22: 22px;
    --fs-18: 18px;
    --fs-16: 16px;
    --fs-14: 14px;
    --fs-13: 13px;
    --fs-12: 12px;

    /* Box Shadow */
    --box-shadow: 0 0 35px rgba(196, 196, 196, 0.64);

    --border-radius-20: 20px;
    --border-radius-10: 10px;

    --fw-thin: 100;
    --fw-extralight: 200;
    --fw-light: 300;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --fw-black: 900;
}

body {
    color: var(--color-black);
    background-color: var(--color-white);
    font-family: var(--font-base);
    font-weight: var(--fw-normal);
    overflow-x: hidden;
    line-height: 1.5;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: 500;
    margin: 0;
    color: var(--color-black);
    font-family: var(--font-base);
}

h1,
.h1 {
    font-size: var(--fs-48);
}

h2,
.h2 {
    font-size: var(--fs-30);
}

h3,
.h3 {
    font-size: var(--fs-24);
}

h4,
.h4 {
    font-size: var(--fs-16);
}

h5,
.h5 {
    font-size: var(--fs-14);
}

h6,
.h6 {
    font-size: var(--fs-12);
}

p {
    margin: 0 0 10px;
    font-size: var(--fs-14);
}

a,
li,
span,
label,
tr,
td,
th,
input {
    color: var(--color-black);
}

a {
    display: inline-block;
    width: fit-content;
    font-size: var(--fs-14);
    transition: all .5s ease;
    outline: none;
    font-weight: var(--fw-normal);
}

a:hover {
    color: var(--color-red);
}

small,
.small {
    font-size: var(--fs-13);
}

.w-15 {
    width: 15% !important;
}

.meta em {
    color: var(--color-red);
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.web-red {
    color: var(--color-red);
}

.bg-web-red {
    background-color: var(--color-red);
}

[class*="fs-"] {
    font-size: inherit;
}

.fs-45 {
    font-size: var(--fs-48);
}

.fs-36 {
    font-size: var(--fs-36);
}

.fs-30 {
    font-size: var(--fs-30);
}

.fs-24 {
    font-size: var(--fs-24);
}

.fs-22 {
    font-size: var(--fs-22);
}

.fs-18 {
    font-size: var(--fs-18);
}

.fs-16 {
    font-size: var(--fs-16);
}

.fs-14 {
    font-size: var(--fs-14);
}

.fs-12 {
    font-size: var(--fs-12);
}

.list-style-none {
    list-style: none;
    position: relative;
}

.border-radius-20 {
    border-radius: var(--border-radius-20) !important;
}

.border-radius-10 {
    border-radius: var(--border-radius-10) !important;
}

.box-shadow {
    box-shadow: var(--box-shadow);
}

form label:not([for]) {
    font-size: var(--fs-13);
}

/**Button CSS**/
.red-btn,
.white-btn,
.green-btn,
.btn-dark,
.dark-btn,
.b24-form-btn {
    padding: 10px 18px !important;
    border-radius: 0.5rem !important;
    font-weight: var(--fw-normal) !important;
    font-size: var(--fs-14) !important;
    overflow: hidden;
    transition: all .4s ease-out !important;
    text-align: center;
    min-height: 43px !important;
    text-transform: capitalize;
}

.green-btn {
    background: var(--color-green);
    border: 1px solid var(--color-green);
    color: var(--color-white);
}

.red-btn,
.b24-form-btn {
    background: var(--color-red) !important;
    border: 1px solid var(--color-red) !important;
    color: var(--color-white) !important;
}

.white-btn {
    background: var(--color-white);
    border: 1px solid var(--color-black);
    color: var(--color-black);
}

.btn-dark,
.dark-btn {
    background: var(--color-black);
    border: 1px solid var(--color-black);
    color: var(--color-white);
}

.red-btn:hover,
.green-btn:hover,
.white-btn:hover,
.b24-form-btn:hover {
    background: var(--color-black) !important;
    border: 1px solid var(--color-black) !important;
    color: var(--color-white) !important;
}

.btn-dark:hover,
.dark-btn:hover {
    background: var(--color-red) !important;
    border: 1px solid var(--color-red) !important;
    color: var(--color-white) !important;
}

/**Button CSS end**/

/**Header CSS**/
.header {
    background-color: var(--color-white);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.header .navbar .navbar-nav li a {
    font-size: 15px;
    color: var(--color-black);
    font-weight: 500;
    padding: 10px;
    text-transform: uppercase;
}

.header .navbar .navbar-nav li a:hover,
.header .navbar .navbar-nav li a.active {
    color: var(--color-red);
}

.header .navbar .navbar-nav li ul.show {
    width: 250px;
    border: none;
    /* padding-top: 30px; */
}

.header .navbar .navbar-nav li ul.show li a {
    margin: 0;
    padding: 10px 15px;
    text-wrap: wrap;
}

.header .navbar .navbar-nav li ul.show li a:hover,
.header .navbar .navbar-nav li ul.show li a.active {
    background-color: var(--color-red);
    color: var(--color-white);
}

a.head-btn {
    padding: 12px 16px !important;
    margin: 0 10px;
    background: var(--color-green);
    border-radius: var(--border-radius-10);
    color: var(--color-white) !important;
    display: block;
    text-align: center;
}

a.head-btn:hover {
    background: var(--color-red);
}

/* Home Page */

.overlay-dark::before,
.overlay-darker::before,
.grad-overlay-l-dark::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.overlay-dark::before {
    background: var(--color-overlay-dark);

}

.overlay-darker::before {
    background: var(--color-overlay-darker);
}

.grad-overlay-l-dark::before {
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.75) 51%, rgba(0, 0, 0, 0.1) 65%);
    opacity: 0.7;
}


.divider-red {
    width: 82px;
    height: 1.5px;
    background: var(--color-red);
    margin: auto;
}

.team-help-sec p,
.cta-dark p,
.cta-red p {
    font-size: 20px;
    margin-bottom: 20px;
}

.team-help-sec a {
    font-size: 14px;
    display: block;
    width: fit-content;
    margin: auto;
}

.black-border-btn {
    margin-top: 15px;
}

.cta-dark .cta-img {
    margin-left: -125px;
}

.roadmap-sec .info-box .box-header {
    width: 70px;
    height: 70px;
    background: var(--color-red);
    display: inline-block;
    line-height: 40px;
    font-size: 18px;
    color: var(--color-white);
    letter-spacing: 2px;
    border: 15px solid #ffd8da;
    padding: 0;
    position: unset;
}

.roadmap-sec .info-box .box-header:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #ffd8da;
    position: absolute;
    left: 0;
    top: 35px;
    z-index: -1;
}

.roadmap-sec .info-box .box-content h3 {
    font-size: 36px;
    padding: 0 15px;
}

.roadmap-sec .info-box .box-content p {
    font-size: 20px;
    padding: 0 15px;
}

.cta-red .img-left,
.case-study .carousel-item img {
    height: 450px;
    object-fit: cover;
}

.cta-red .sec-right {
    max-width: 600px;
}

.carousel-control-prev,
.carousel-control-next {
    line-height: 2rem;
    border: 1px solid black;
}

.step-video video {
    max-width: 100%;
}



.testimonial-slider .testimonial-content {
    height: 250px;
    overflow-y: scroll;
    /* width: calc(100% + 18px); */
    /* padding-right: 20px; */
    scrollbar-width: none;
}

.testimonial-slider .testimonial-content p {
    font-size: 16px;
    margin: 0 0 20px 0;
    line-height: 26px;
}

form label {
    font-size: 14px;
    line-height: 18px;
}

form.newsletter-frm input {
    margin-bottom: 12px;
}

form.newsletter-frm input[type="submit"] {
    margin-top: 12px;
}

.caption-over-img .wp-element-caption {
    position: absolute;
    bottom: 20px;
    left: 40px;
    color: var(--color-white);
    text-shadow: 0 0 6px #000, 0 1px 1px #000;
}

.caption-over-img .wp-element-caption:before {
    content: '';
    position: absolute;
    width: 32px;
    height: 1px;
    background: var(--color-white);
    left: -40px;
    top: 12px;
}

.client-button a {
    width: 35%;
    text-align: center;
    text-transform: capitalize;
}

.owner-login-padding {
    padding: 80px 50px !important;
}

/* Background Image */
.invest-banner-sec {
    background-image: url('../images/Penthouses-1-min.jpg');
}

.whistler-banner-sec {
    background-image: url('../images/Whistler-Village-.png');
}

.buy-estate-banner-sec {
    background-image: url('../images/Penthouses-1-min.jpg');
}

.client-banner-sec {
    background-image: url('../images/owner-tenant-login-bg-min.jpg');
}

.testimonial-sec {
    background-image: url('../images/Testimonial-BG.jpg');
}

.banner-sec {
    background-image: url('../images/We-build-your-Wealth-in-Real-Estate-min.jpg');
}

.property-banner-sec {
    background-image: url('../images/Full-Management-of-your-Rental-Home-min.jpg');
}

.selling-rental-banner-sec {
    background-image: url('../images/We-are-Experts-in-Selling-Rental-Properties-min.jpg');
}

.about-banner-sec {
    background-image: url('../images/careerImage-min.jpg');
}

.invest-banner-sec-2 {
    background-image: url('../images/group-people-working-out-business-plan-office.jpg');
}

.thankyou-banner-sec {
    background-image: url('../images/We-build-your-Wealth-in-Real-Estate-min.jpg');
}

/* Banner Sections */
.invest-banner-sec,
.whistler-banner-sec,
.buy-estate-banner-sec,
.client-banner-sec,
.testimonial-sec,
.banner-sec,
.property-banner-sec,
.about-banner-sec,
.selling-rental-banner-sec,
.invest-banner-sec-2,
.thankyou-banner-sec,
.thankyou-banner-sec {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    min-height: 84vh;
    padding: 50px 0;
}

#presale-slider .prop-slide,
#city-slider .prop-slide {
    background: #dbdbdb;
    transition: 0.3s;
}

#presale-slider .prop-slide:hover,
#city-slider .prop-slide:hover {
    background: var(--color-red);
}

#presale-slider .prop-slide img,
#city-slider .prop-slide img {
    height: 211px;
    object-fit: cover;
}

#presale-slider .prop-slide .property-content h4 {
    font-weight: 700;
    min-height: 40px;
}

#presale-slider .prop-slide:hover .property-content h6 {
    min-height: 30px;
}

#presale-slider .prop-slide:hover .property-content h4,
#presale-slider .prop-slide:hover .property-content h6,
#city-slider .prop-slide:hover h4,
#presale-slider .prop-slide:hover p {
    color: var(--color-white)
}

.owl-carousel.arrow-middle .owl-nav .owl-next,
.owl-carousel.arrow-middle .owl-nav .owl-prev {
    background: rgb(0 0 0 / 75%) !important;
    width: 30px;
    height: 30px;
    color: var(--color-white) !important;
    font-size: 25px !important;
    line-height: 30px !important;
}

.owl-carousel.arrow-middle .owl-nav button span {
    color: var(--color-white)
}

.owl-carousel.arrow-middle .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -40px;
    opacity: 0.5;
    transition: 0.3s;
}

.owl-carousel.arrow-middle .owl-nav button:hover {
    opacity: 1;
}

.owl-carousel.arrow-middle .owl-nav .owl-next {
    left: auto;
    right: -40px;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    /* -webkit-backface-visibility: visible; */
    transition: opacity .2s ease;
    border-radius: 30px;
}

.owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

.dots-center .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.strategy-guide-form .form-field:focus {
    box-shadow: none;
}

.report-btn {
    opacity: 0.4;
}

.report-btn:hover {
    opacity: 1;
}

.report-btn-help {
    margin-right: auto;
    margin-left: 5px;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20 12a8 8 0 11-16 0 8 8 0 0116 0zm-9.007 2.629v1.807h1.842v-1.807h-1.842zm-.164-3.872H9.104c.008-.422.08-.81.217-1.161.137-.352.328-.657.575-.915a2.59 2.59 0 01.891-.605 3.015 3.015 0 011.168-.217c.555 0 1.019.076 1.39.229.372.153.671.342.898.57a2.106 2.106 0 01.634 1.467c0 .374-.05.683-.147.926a2.287 2.287 0 01-.845 1.062c-.176.12-.342.242-.499.363-.156.121-.295.26-.416.417a1.197 1.197 0 00-.229.586v.446h-1.584v-.528c.024-.336.088-.618.194-.845.105-.226.228-.42.37-.58.14-.16.289-.3.445-.417a7.1 7.1 0 00.434-.352c.133-.117.24-.246.323-.387a.96.96 0 00.111-.528c0-.36-.088-.626-.264-.798-.176-.172-.42-.258-.733-.258-.211 0-.393.041-.546.123a1.089 1.089 0 00-.375.329c-.098.137-.17.297-.217.48-.047.185-.07.382-.07.593z' fill='%23525C69'/%3E%3C/svg%3E") center no-repeat;
    background-size: 100%;
    cursor: pointer;
    opacity: .35;
    transition: .2s;
}

.location-list li a {
    margin-bottom: 5px;
    font-size: 13px;
}

.location-list li a:hover {
    color: var(--color-red);
}

.accordion-button:focus,
.accordion-button {
    box-shadow: none !important;
    font-size: 18px;
}

.accordion-button:after {
    display: none;
}

.accordion-button i {
    transition: 0.3s;
}

.accordion-button:not(.collapsed) {
    color: var(--color-red);
}

.accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
}


.accordion-body {
    font-size: 14px;
    padding-top: 0;
}

/* Whistler Page */
#case_study .carousel-indicators button {
    text-indent: 0;
}

.slider-highlight {
    background: rgba(236, 32, 39, .07);
    border-radius: 5px;
    line-height: 1.5;
    color: var(--color-red);
    padding: 4px 10px;
    display: inline-block;
    font-size: 18px;
}

/* Manage */

.request-proposal {
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 63%, rgb(242, 244, 247) 63%, rgb(242, 244, 247) 64%, rgb(242, 244, 247) 100%);
}

.check-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-red);
    padding: 5px;
    background: #f0f0f0;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 15px;
}

.check-list li {
    font-size: 18px;
    color: #3a3a3a;
    margin-bottom: 25px;
    padding-left: 10px;
}

.benefits-sec .benefit {
    border-color: #c4c4c4;
    padding: 12px 24px;
}

.help-vancouver .help-sec {
    background-color: #F2F4F7;
    width: 400px;
    margin: 0 15px;
}

.home-worth .red-btn {
    font-size: 18px;
    border: 1px solid var(--color-red);
    padding: 10px 20px !important;
}

.home-worth .red-btn:hover {
    border-color: #3a3a3a;
}

#sold-property .prop-slide img {
    height: 240px;
    object-fit: cover;
}


/* footer */

footer,
.footer-bar {
    background: #2b2b2b !important;
}

footer h3 {
    font-size: 20px;
}

footer ul li a {
    text-transform: uppercase;
    color: #b7b7b7;
    transition: all .4s ease;
}

footer ul li a:hover {
    color: var(--color-white);
}

footer .foot-logo {
    margin-top: -55px;
}

.footer-social ul li a {
    color: var(--color-white);
    border: 1px solid transparent;
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.footer-social ul li a:hover {
    border: 1px solid var(--color-red);
    color: var(--color-red);
}

hr.separator {
    width: 30%;
    border: 1px solid #000;
    opacity: 1 !important;
}

.mce-preview-object {
    display: block !important;
}

.navbar {
    box-shadow: none !important;
}

.our-process .border-over-img:before {
    width: 260px;
    height: 260px;
    border-radius: 300px;
    border: 1px solid var(--color-white);
    position: absolute;
    top: 20px;
    content: '';
}

.our-process .count {
    font-size: 20px;
    margin-bottom: 10px
}

.our-process .row p {
    font-size: 16px;
    color: #6a6a6a;
}

.our-process .steps:before {
    content: '';
    position: absolute;
    top: -50%;
    z-index: -1;
    left: 50%;
    transform: translatex(-50%);
    background-size: cover;
}

.our-process .steps.step-2:before {
    background: url(./images/Vector-1.png) no-repeat;
    width: 817px;
    height: 527px;

}

.our-process .steps.step-3:before {
    background: url(./images/Vector-2.png) no-repeat;
    width: 594px;
    height: 210px;
    top: -20%;
    left: 45%;
}

.our-process .steps.step-4:before {
    background: url(./images/Vector-3.png) no-repeat;
    width: 594px;
    height: 136px;
    top: -10%;
}

.our-process .steps.step-5:before {
    background: url(./images/Vector-4.png) no-repeat;
    width: 597px;
    height: 451px;
    left: 40%;
    top: -70%;
    z-index: 0;
}

.our-process .steps.step-6:before {
    background: url(./images/Vector-5.png) no-repeat;
    width: 461px;
    height: 212px;
    top: -35px;
}

.our-process .steps.step-7:before {
    background: url(./images/Vector-6.png) no-repeat;
    width: 643px;
    height: 202px;
    top: -30%;
}

.our-process .steps.step-8:before {
    background: url(./images/Vector-7.png) no-repeat;
    width: 553px;
    height: 411px;
    top: -30%;
}

@media (max-width: 768px) {
    .our-process .steps:before {
        display: none !important;
    }

    .our-process .steps:nth-child(odd) {
        flex-direction: column-reverse;
    }
}

@media (max-width:992px) {
    .our-process .steps:before {
        display: none !important;
    }
}

@media (min-width:768px) {}

.nav-link {
    color: var(--color-black);
}

.nav-link:hover {
    color: var(--color-red);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: var(--color-red) !important;
}

@media (min-width:768px) {

    .w-45 {
        width: 45%;
    }

    .w-55 {
        width: 55%;
    }
}

.bg-light-gradient {
    background-image: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(242, 244, 247) 100%)
}

.overlay-darker:before {
    content: '';
    background: #000000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
}

.owl-nav.custom-nav {
    margin-bottom: 15px;
}

.owl-nav.custom-nav button {
    border: none;
    padding: 8px;
    background: transparent;
    opacity: 0.3;
    font-size: 20px;
}

.owl-nav.custom-nav button:hover,
.owl-nav.custom-nav button:active,
.owl-nav.custom-nav button:focus {
    opacity: 1;
}

#career-img .owl-item img {
    height: 280px;
    object-fit: cover;
}

.job .red-btn {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.job p {
    margin-bottom: 0;
}

.job .red-btn i {
    margin-left: 5px;
}

.what-we-stand-for li:before {
    content: '';
    width: 44px;
    height: 44px;
    display: block;
    position: absolute;
    left: -15px;
    top: 0;
    background: #F2F4F7;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    color: var(--color-red);
    font-weight: 600;
    font-size: 18px;
}

.what-we-stand-for li:nth-child(1):before {
    content: 'B'
}

.what-we-stand-for li:nth-child(2):before {
    content: 'O'
}

.what-we-stand-for li:nth-child(3):before,
.what-we-stand-for li:nth-child(4):before {
    content: 'L'
}

.what-we-stand-for li:nth-child(5):before {
    content: 'D'
}

.process-list-sec {
    position: sticky;
    top: 130px;
}

@media (max-width:768px) {
    .mb-mx-0 {
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media (max-width: 425px) and (min-width: 375px) {
    .thankyou-banner-sec {
        height: 90vh;
    }

}

@media (max-width: 375px) and (min-width: 320px) {
    .thankyou-banner-sec {
        height: 95vh;
    }

    .thankyou-banner-sec .container {
        top: 0% !important;
    }
}

.b24-form-wrapper.b24-form-shadow {
    box-shadow: none !important;
}

.our-process .border-over-img:before {
    width: 260px;
    height: 260px;
    border-radius: 300px;
    border: 1px solid #fff;
    position: absolute;
    top: 20px;
    content: '';
}

.our-process .count {
    font-size: 20px;
    margin-bottom: 10px
}

.our-process .row p {
    font-size: 16px;
    color: #6a6a6a;
}

.our-process .steps:before {
    content: '';
    position: absolute;
    top: -50%;
    z-index: -1;
    left: 50%;
    transform: translatex(-50%);
    background-size: cover;
}

.our-process .steps.step-2:before {
    background: url(./images/Vector-1.png) no-repeat;
    width: 817px;
    height: 527px;

}

.our-process .steps.step-3:before {
    background: url(./images/Vector-2.png) no-repeat;
    width: 594px;
    height: 210px;
    top: -20%;
    left: 45%;
}

.our-process .steps.step-4:before {
    background: url(./images/Vector-3.png) no-repeat;
    width: 594px;
    height: 136px;
    top: -10%;
}

.our-process .steps.step-5:before {
    background: url(./images/Vector-4.png) no-repeat;
    width: 597px;
    height: 451px;
    left: 40%;
    top: -70%;
    z-index: 0;
}

.our-process .steps.step-6:before {
    background: url(./images/Vector-5.png) no-repeat;
    width: 461px;
    height: 212px;
    top: -35px;
}

.our-process .steps.step-7:before {
    background: url(./images/Vector-6.png) no-repeat;
    width: 643px;
    height: 202px;
    top: -30%;
}

.our-process .steps.step-8:before {
    background: url(./images/Vector-7.png) no-repeat;
    width: 553px;
    height: 411px;
    top: -30%;
}

@media (max-width: 768px) {
    .our-process .steps:before {
        display: none !important;
    }

    .our-process .steps:nth-child(odd) {
        flex-direction: column-reverse;
    }
}

@media (max-width:992px) {
    .our-process .steps:before {
        display: none !important;
    }
}


.p-40 {
    padding: 40px;
}

.guide-list-sec {
    position: sticky;
    top: 130px;
    background-color: #f2f4f7;
}

#beforeMoveInFilterFunction .accordion-button:focus,
#beforeMoveInFilterFunction .accordion-button,
#duringTheTenancyFilterFunction .accordion-button:focus,
#duringTheTenancyFilterFunction .accordion-button,
#endingYourTenancyFilterFunction .accordion-button:focus,
#endingYourTenancyFilterFunction .accordion-button,
#nonResidentsFilterFunction .accordion-button:focus,
#nonResidentsFilterFunction .accordion-button {
    box-shadow: none !important;
    font-size: 14px !important;
    font-weight: 600;
    padding: 0.6rem 0 !important;
}

#beforeMoveInFilterFunction .accordion-button:hover,
#duringTheTenancyFilterFunction .accordion-button:hover,
#endingYourTenancyFilterFunction .accordion-button:hover,
#nonResidentsFilterFunction .accordion-button:hover {
    color: var(--color-red) !important;
}

@media (max-width: 991px) {
    .p-40 {
        padding: 20px;
    }
}

.b24-form-padding-side {
    padding: 0;
}

.our-benefits .col-lg-4:nth-child(odd) .benefit {
    background-color: #F2F4F7;
}

.our-benefits .col-lg-4:nth-child(even) .benefit {
    background-color: #DCE1E9;
}

.our-benefits .benefit {
    padding: 40px 50px;
    height: 100%;
}

.our-benefits .benefit h3 {
    text-transform: uppercase;
}

@media (max-width:768px) {
    .our-benefits .benefit {
        padding: 30px;
        height: 100%;
    }
}

.b24-form-padding-side {
    padding: 0;
}

.our-benefits .col-lg-4:nth-child(odd) .benefit {
    background-color: #F2F4F7;
}

.our-benefits .col-lg-4:nth-child(even) .benefit {
    background-color: #DCE1E9;
}

.our-benefits .benefit {
    padding: 40px 50px;
    height: 100%;
}

.our-benefits .benefit h3 {
    text-transform: uppercase;
}

@media (max-width:768px) {
    .our-benefits .benefit {
        padding: 30px;
        height: 100%;
    }
}

.selling-tenant #geocomplete {
    background: url(https://bolld.com/images/map-icon.png) 10px 8px no-repeat #fff;
    padding: 0 20px 0 35px !important;
    border: none;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    height: 44px;
    margin-right: 2px;
    flex: 1;
    border: 1px solid #bbb;
    box-shadow: inset 0px 1px 8px rgb(0 0 0 / 20%);
}

.selling-tenant .search_form1 .vancouver-search1 {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    height: 44px;
    margin-right: 2px;
    flex: 1;
    padding: 0 7px;
    border: 1px solid #bbb;
    box-shadow: inset 0px 1px 8px rgb(0 0 0 / 20%);
}

.numbers li {
    margin-bottom: 14px;
    float: left;
    width: 100%;
    line-height: 29px;
}

.numbers span.num {
    display: flex;
    width: 30px;
    height: 30px;
    text-align: center;
    background: #f11716;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    margin-right: 11px;
    font-size: 12px;
    float: left;
    color: #fff;
    font-weight: 600;
}

@media (max-width:768px) {

    .selling-tenant .search_form1 .vancouver-search1,
    .search_form1 button {
        width: 100% !important;
        margin-top: 15px;
    }
}

.selling-banner-sec {
    background-image: url('../images/Selling-Tenant.png');
}

/* Property & Building Card */

.properties {
    margin: 20px 0;
}

.property-img img {
    width: 100%;
}

.rooms-price {
    padding: 0;
    column-count: 2;
    margin-bottom: 0px;
}

/*.schedule-btn a{ padding: 7px 10px; text-transform: uppercase; font-weight: bold; color: #fff !important; font-size: 14px; border: 1px solid #b42227; background: linear-gradient(to bottom, #e31e24 0%, #a72528 100%);display:block; text-align:center }*/
.schedule-btn a {
    padding: 7px 10px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff !important;
    font-size: 16px;
    display: block;
    text-align: center;
    font-weight: 400;
    width: 100%;
    cursor: pointer;
}

.schedule-btn a.apply_show_pop {
    border: 1px solid #34a853;
    background: #34a853;
    margin-bottom: 2px
}

.schedule-btn a.apply_online_pop,
.schedule-btn a.apply_online_link,
.schedule-btn a.ask_question_pop {
    border: 1px solid #ed1c24;
    background: #ed1c24
}

.schedule-btn a:hover {
    background: #000;
    border-color: #000;
}

.property-info .fa {
    color: #ed1c24;
}

.property-info {
    padding: 7px 10px;
    min-height: 60px;
}

.property-detail {
    padding: 7px 10px;
    border-bottom: 1px solid #e5e5f8
}

.property-detail h3 {
    padding: 0;
    margin: 0;
    min-height: 50px;
}

.property-detail h4 {
    padding: 0;
    margin: 0
}

.panel .panel-body {
    padding: 0 0 20px 0;
}

.property_inner {
    position: relative;
    border: 1px solid #e5e5f8;
    transition: all 0.6s ease 0s;
    border-bottom: 4px solid #e5e5f8;
    padding: 0;
    margin-bottom: 20px
}

.lity-hide {
    display: none !important
}

.property_inner .image-area .price {
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.6);
}

.property_inner .image-area .status {
    padding: 5px 10px;
}

.p_status,
.p_status:hover {
    background: #000;
    padding: 3px 7px;
    border-radius: 3px;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.rented,
.sold {
    background: #e31e24 !important;
}

.featured,
.luxurious {
    background: #e7a60c !important;
}

.furnished {
    background: #1A73E8 !important;
}

.for_rent,
.for_sale,
.vacation_rental {
    background: #34a853 !important;
}

h3.title,
h3.title a {
    font-size: 15px;
}

.property-slider-sec {
    background-color: #f5f5f5;
}

.nav-pills .nav-link {
    background-color: #e1e1e1;
    border-radius: 0;
    padding: 8px 20px;
    font-size: 18px;
    font-weight: 500;
    transition: all .4s ease-out 0s;
    color: #000;
}

.nav-pills .nav-link.active {
    background: #EC2027;
    color: #fff;
}

@media only screen and (max-width: 991px) {
    .mobile-hide {
        display: none;
    }

    .prop-style input#keyword {
        font-size: 13px;
    }

    .prop-style {
        padding: 5px;
    }

    .page-holder {
        overflow: hidden;
    }
}

@media (max-width:767px) {
    .properties_wrap {
        padding: 0
    }
}

.building-img img {
    height: 260px;
    object-fit: cover;
    transition: 0.3s;
}

.building-grid .building-list:hover .building-img img {
    transform: scale(1.1);
}

.building-grid .building-list .building-img:before {
    content: "";
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: 1;
}

.building-grid .building-list .arrow-overlay span {
    width: 70px;
    height: 70px;
    background: #cd2027;
    border-radius: 50%;
    color: #FFF;
    transform: scale(0);
    transition: 0.5s all;
    right: -8px;
    bottom: -15px;
    z-index: 2;
}

.building-grid .building-list:hover .arrow-overlay span {
    transform: scale(1);
    transition: 0.5s all;
}

.building-name {
    z-index: 1;
}

.featured_ribbon {
    position: absolute;
    top: 5px;
    padding: 3px 10px;
    background: #e7a60c;
    color: #fff;
    box-shadow: -1px 2px 3px rgba(0, 0, 0, .3);
    z-index: 1;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.featured_ribbon:before {
    width: 7px;
    height: calc(100% + 7px);
    top: 0;
    left: -6.5px;
    padding: 0 0 7px;
    background: inherit;
    border-radius: 5px 0 0 5px;
}

.featured_ribbon:after,
.featured_ribbon:before {
    content: "";
    position: absolute;
}

.featured_ribbon:after {
    width: 5px;
    height: 5px;
    bottom: -5px;
    left: -4.5px;
    background: rgba(255, 255, 255, .8);
    border-radius: 5px 0 0 5px;
}

.property-slider a {
    text-decoration: none;
}

ul.rooms-price {
    list-style: none;
}

.property-detail h4 a {
    font-weight: 400;
}