/* ================================
    Footer
================================ */
footer {
    background-color: #fff;
}

footer .footer-middlebar {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

footer .footer-middlebar .footer-middlebar-1 {
    border-top: 1px solid #f3f3f3;
    padding: 60px 0;
}

footer .footer-middlebar img {
    margin-bottom: 50px;
    width: 300px;
}

footer .footer-middlebar .widget {
    text-align: center;
}

footer .footer-bottombar .footer-bottombar-1 {
    border-top: 1px solid #f3f3f3;
    text-align: center;
}

footer .footer-bottombar .footer-bottombar-1 p {
    font-size: 16px;
    line-height: 60px;
}

footer .footer-middlebar .footer-middlebar-1 a,
footer .footer-bottombar .footer-bottombar-1 a {
    color: inherit;
}

/* ================================
    Mobile sidebar
================================ */
.bm-mobile-menu {
    display: none;
}

/* ================================
    @media's
================================ */
@media screen and (max-width: 1600px) {
    footer .footer-middlebar-1 {
        padding: 50px 0;
    }

    footer .footer-middlebar img {
        margin-bottom: 42px;
        width: 250px;
    }

    footer .footer-bottombar .footer-bottombar-1 p {
        line-height: 50px;
    }
}

@media screen and (max-width: 1400px) {
    footer .footer-middlebar-1 {
        padding: 42px 0;
    }

    footer .footer-middlebar img {
        margin-bottom: 39px;
        width: 220px;
    }

    footer .footer-bottombar .footer-bottombar-1 p {
        line-height: 42px;
    }
}

@media screen and (max-width: 1199px) {
    .bm-mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        z-index: 99;
        top: 0;
        right: -500px;
        width: 400px;
        bottom: 0;
        padding: 50px;
        transition: right .5s ease;
        background-color: #fff;
        box-shadow: 0 0 9px 0 rgba(0,0,0,.25);
    }

    .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: #0000fe;
        cursor: pointer;
    }

    .bm-mobile-menu .bm-mobile-menu-close svg {
        width: unset;
        height: 20px;
    }

    .bm-mobile-menu ul {
        padding: 0;
        margin: 0;
        list-style-type: none;
    }

    .bm-mobile-menu ul a {
        text-decoration: none;
        color: #0000fe;
        font-weight: bold;
        line-height: 40px;
        display: block;
        border-bottom: 1px solid #f3f3f3;
    }

    .bm-mobile-menu ul li:last-child a {
        border-bottom: none;
    }
}

@media screen and (max-width: 991px) {

}

@media screen and (max-width: 767px) {

}