/* ================================
    Call to action row
================================ */
.vc_row.footer-cta-row {
    padding-top: 0;
    padding-bottom: 0;
}

.vc_row.footer-cta-row .vc_col-has-fill {
    background-image: url('/wp-content/uploads/2026/06/Call-to-action-row.jpg') !important;
    background-size: cover;
    background-position: center center;
}

/* ================================
    Footer
================================ */
footer {
    padding-top: 60px;
    padding-bottom: 30px;
}

footer .footer-middlebar .wrap {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(12, 1fr);
    margin-bottom: 60px;
}

footer .footer-middlebar-1 {
    grid-column: span 3;
}

footer .footer-middlebar-2 {
    grid-column: span 3;
}

footer .footer-middlebar-3 {
    grid-column: span 3;
}

footer .footer-middlebar-4 {
    grid-column: span 3;
}

footer .footer-middlebar ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

footer .footer-middlebar .widget-title {
    font-size: 19px;
    margin-bottom: 30px;
}

footer .footer-middlebar ul a {
    display: block;
    line-height: 30px;
    text-decoration: none;
    color: #444;
}

footer .footer-bottombar .footer-bottombar-1 {
    padding: 20px;
    border-radius: 6px;
    background-color: #f8f6f1;
}

footer .footer-bottombar .footer-bottombar-1 ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

footer .footer-bottombar .footer-bottombar-1 ul li,
footer .footer-bottombar .footer-bottombar-1 ul li a {
    font-size: 14px;
    color: #444;
    text-decoration: none;
}

footer .footer-bottombar .footer-bottombar-1 ul li:not(:last-child):after {
    content: '|';
    margin-left: 10px;
    margin-right: 10px;
}

/* ================================
    Mobile sidebar
================================ */
.bm-mobile-menu {
    display: none;
}

/* ================================
    @media's
================================ */
@media screen and (max-width: 1600px) {

}

@media screen and (max-width: 1400px) {

}

@media screen and (max-width: 1199px) {
    .bm-mobile-menu {
        display: flex;
        position: fixed;
        z-index: 99;
        top: 0;
        right: -400px;
        width: 400px;
        bottom: 0;
        transition: right .5s ease;
        background-color: gray;
    }

    .admin-bar .bm-mobile-menu {
        top: 32px;
    }

    .bm-mobile-menu.active {
        right: 0;
    }

    .bm-mobile-menu .bm-mobile-menu-close {
        position: absolute;
        right: 20px;
        top: 20px;
        color: white;
        cursor: pointer;
    }

    .bm-mobile-menu .bm-mobile-menu-close svg {
        width: unset;
        height: 20px;
    }
}

@media screen and (max-width: 991px) {
    footer {
        padding-left: 150px;
        padding-right: 150px;
    }

    footer .footer-middlebar-1 {
        grid-column: span 12;
    }

    footer .footer-middlebar-2 {
        grid-column: span 12;
    }

    footer .footer-middlebar-3 {
        grid-column: span 12;
    }

    footer .footer-middlebar-4 {
        grid-column: span 12;
    }
}

@media screen and (max-width: 767px) {
    footer {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media screen and (max-width: 550px) {
    footer {
        padding-left: 15px;
        padding-right: 15px;
    }
}