.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    position: relative;
    width: 100%;
    height: auto;
    background-color: var(--color-background-primary);
    color: var(--color-text-light);
    padding-top: 3rem;
}

.footer ul {
    list-style-type: none;
}

.footer_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 3rem;
    padding-top: 3rem;
}

.footer_content .sitemap {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: .3rem;
}

.logo-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    width: 15rem;
}

.footer_content .col {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: .5rem;
}

.footer_content .logo-container {
    display: none;
}

.title-divider {
    width: 2rem;
    height: .1rem;
    background-color: black;
}


.footer .col h5 {
    text-transform: uppercase;
    letter-spacing: 0.250em;
}

.footer .col ul li:hover {
    color: #ffffff;
    transition: .1s;
    -webkit-transition: .1s;
    -moz-transition: .1s;
}

.footer .contact-info {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: .5rem;
}

.contact-list-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    height: 1.7rem;
}

.contact-list-item a {
    color: white;
}

.footer-bottom {
    background-color: var(--color-background-secondary);
    color: var(--color-text-dark);
    width: 100%;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: .5rem;
}

.footer-bottom span {
    color: var(--color-text-dark);
    text-decoration: underline;
}

@media (min-width: 768px) {
    .footer_content {
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: start;
        gap: 5rem;
    }

    .footer .logo-container {
        display: none;
    }

    .footer_content .logo-container {
        display: block;
    }
}