.footer {
    background-color: var(--primary-navy);
    color: white;
}

.footer__container {
    padding: 4rem 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__col {
    position: relative;
    flex: 1 1 calc(50% - 1rem);
    margin-bottom: 1.5rem;
}

.footer__col-logo {
    flex: 4 1 100%;
}

.footer__img {
    width: 8rem;
    height: auto;
}

.footer__title {
    font-size: var(--text-sm);
    margin-bottom: 1rem;
}

.footer__list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__list-item {
    font-size: var(--text-sm);
}

.footer__bottom {
    border-top: solid 1px var(--slate-800);
    padding: 2rem 0;
}

.footer-bottom__container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    font-size: var(--text-xs);
}

.bottom__list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

@media only screen and (min-width: 769px) {
    .footer__col {
        position: relative;
        flex: 1 1 0%;
        margin-bottom: unset;
    }

    .footer__col-logo {
        flex: 4 1 100%;
        margin-bottom: 1.5rem;
    }
}

@media only screen and (min-width: 993px) {
    .footer__container {
        flex-wrap: nowrap;
    }

    .footer__col-logo {
        flex: 1 1 0%;
    }
}