.footer {
    background-color: var(--dark-blue);
    color: white;
}

.footer hr {
    background-color: white;
    height: 1px;
    opacity: .5;
    margin: 0;
}

.footer ul {
    list-style: none;
}

.footer li,
.footer a,
.footer a:visited,
.footer span.mod-menu__heading,
.footer span.mod-menu__separator {
    text-transform: uppercase;
    color: white;
    font-size: .85rem;
}

.footer p {
    font-size: .85rem;
}

.footer a {
    cursor: pointer;
}

.footer-top {
    color: white;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-direction: column;
}

.footer-top>* {
    flex: 1;
}

.footer-branding {
    padding: 2rem 0;
}

.footer-branding>* {
    display: block;
    margin-bottom: .5rem;
}

.footer-branding .social-media li {
    display: inline-block;
    margin-right: .5rem;
}

.footer-branding .social-media img {
    height: 25px;
    width: 25px;
}

.footer-menu li,
.footer-menu li a {
    font-weight: 200;
}

.footer-menu>ul>li>a,
.footer-menu>ul>li>span.mod-menu__heading,
.footer-menu>ul>li>span.mod-menu__separator {
    font-weight: 600;
    margin-bottom: .5rem;
}

.footer-menu>ul {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: left;
    padding: 2rem 0;
}

.footer-menu>ul>li {
    flex: 0 1 1;
}

.footer-branding>ul>li {
    height: 75px;
}

.footer-branding img {
    object-fit: contain;
    object-position: left;
    max-height: 100%;
}

.footer-bottom {
    padding: 1.5rem 0 .5rem 0;
}

.footer-bottom>* {
    margin-bottom: 1.5rem;
}

.footer-bottom a,
.footer-bottom p {
    font-size: .85rem;
    line-height: 1.5;
    font-weight: 200;
    opacity: .7;
}

.footer-bottom ul {
    display: flex;
    /* gap: 3rem; */
    flex-wrap: wrap;
}

.footer-bottom li {
    margin-right: 2rem;
}

@media only screen and (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        gap: 2rem;
    }
}

@media only screen and (min-width: 1200px) {
    .footer-branding {
        max-width: 35%;
    }
    .footer-branding .social-media img {
        height: 30px;
        width: 30px;
    }
    .footer-menu>ul {
        justify-content: left;
        gap: 4rem;
    }
    .footer p,
    .footer li,
    .footer a,
    .footer a:visited,
    .footer span.mod-menu__heading,
    .footer span.mod-menu__separator {
        font-size: .95rem;
    }
}