

/* Footer */

.footer_container {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    padding: var(--main-side-padding);
    align-items: center;
    color: #69699b;
}

.footer_bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e2eb;
}

.footer_list {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 1.5rem;
    padding: 0;
}

.footer_separator {
    color: #e2e2eb;
}

.footer_link {
    display: flex;
    cursor: pointer;
    position: relative;
    align-items: center;
    color: #69699b;
}

.footer_link:hover {
    color: #454573;
}

.footer_socials {
    display: flex;
    flex-direction: row;
    column-gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer_link svg {
    fill: #b5b6ce;
}

.footer_link svg:hover {
    fill: #84859c;
}

.footer_socials .footer_link:hover {
    fill: #84859c;
}

.footer_copyright {
    font-size: .75rem;
    color: #8d8db3;
    text-align: center;
}

@media screen and (max-width: 900px) {

    .footer_bar {
        flex-direction: column;
        row-gap: 1.5rem;
        align-items: center;
    }

    .footer_socials {
        order: -1;
    }
}
