/* 
-----------------------------------------
FOOTER
-----------------------------------------
*/
 
footer {
    background-color: var(--neutral-color-dark);
    background-position: right;
    background-size: auto calc(100% - 2rem);
    background-repeat: no-repeat;
}

    footer h3,
    footer p,
    footer li,
    footer a,
    footer div {
        color: var(--text-white) !important;
        font-weight: 300 !important;
        text-decoration: none;
    }

    footer a:hover,
    footer a:hover li {
        color: var(--primary-color) !important;
    }

    footer p,
    footer li,
    footer a {
        font-size: 1.125rem;
    }

    footer .footer-bottom p,
    footer .footer-bottom a {
        color: var(--text-white) !important;
        font-weight: 300 !important;
        text-decoration: none;
        font-size: .875rem;
    }

footer ul {
    list-style: none;
    padding: 0;
}

footer > .d-flex {
    gap: 2rem;
}

    footer > .footer-top > div,
    footer .footer-top-border {
        flex-basis: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.20);
        padding: 1rem 0;
    }

@media (min-width: 768px) {
    footer > .d-flex > div {
        flex-basis: calc(50% - 1.5rem);
    }
}

@media (min-width: 1200px) {
    footer > .d-flex > div {
        flex-basis: calc(25% - 1.5rem);
    }
}