footer {
    display: flex;
    justify-content: center;
    background-color: #202020;
    color: #fff;
}

.footer-container {
    width: var(--site-width);
    padding-left: var(--site-margin-sides);
    padding-right: var(--site-margin-sides);
}

.footer-menu {
    display: flex;
    margin-top: 75px;
    margin-bottom: 40px;
    align-items: center;
}

.footer-menu__link:link, .footer-menu__link:visited, .footer-menu__link:active {
    margin-right: 40px;
    font-size: 15px;
    opacity: .7;
    color: #fff;
}

.footer-menu__link:hover {
    opacity: 1;
}

.footer-menu__logo {
    width: 142px;
    display: block;
}

.footer-menu__logo svg {
    fill: #fff;
}

.footer-copyright {
    margin-bottom: 40px;
}

.footer-copyright__cimco-logo {
    width: 140px;
    margin-bottom: 5px;
}

.footer-copyright__text {
    color: #fff;
    opacity: .50;
}

.footer-partner {
    margin-bottom: 25px;
    width: 75%;
}

.footer-partner__heading {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #fff;
    opacity: .70;
}

.footer-partner__text {
    color: #fff;
    opacity: .50;
    margin-top: 11px;
}

.footer-small-links {
    margin-bottom: 70px;
}

.footer-small-links a, .footer-small-links a:link, .footer-small-links a:visited, .footer-small-links a:active {
    margin-right: 40px;
    font-size: 12px;
    opacity: .5;
    color: #fff;
}

.footer-small-links a:hover {
    opacity: 1;
}

@media screen and (max-width:900px) {
    .footer-container {
        width: var(--site-width);
        padding-left: var(--site-mobile-margin-sides);
        padding-right: var(--site-mobile-margin-sides);
    }

    .footer-menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-menu__logo {
        width: 150px;
    }

    .footer-menu__link:link, .footer-menu__link:visited, .footer-menu__link:active {
        display: block;
        padding: 14px 0px;
        border-bottom: 1px solid #5d5d5d;
        width: 100%;
    }

    .footer-partner {
        width: initial;
    }

}
