footer {
    background-color: var(--dark-indigo);
    color: var(--white);
    margin-top: 40px;
}

footer .color-row {
    height: 30px;
}

footer .footer_color-row1 {
    background: var(--purple-gray);
}

footer .footer_color-row2 {
    background: var(--light-purple);
}

footer .footer_color-row3 {
    background: var(--blue-gray);
}

footer .footer_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 0;
}

footer .footer-column {
    width: 32%;
    display: flex;
    flex-wrap: wrap;
}

footer .footer_column1,
footer .footer_column2 {
    flex-direction: column;
    justify-content: flex-start;
}

footer .footer_column1 img {
    width: 20%;
    padding-bottom: 20px;
}

footer .footer_column2 {
    align-content: center;
}

footer .footer_column3 {
    flex-direction: row;
    justify-content: space-evenly;
}

footer .footer-column a {
    color: var(--white);
    text-decoration: none;
    margin: 6px 0;
    cursor: pointer;
}


/* ============ Mobile Nav ============ */

@media (max-width: 768px) {
    footer .footer_container {
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }

    footer .footer-column {
        width: 96%;
        align-content: center;
        align-items: center;
    }

    footer .footer_column1 img {
        width: 25%;
        padding-bottom: 20px;
    }

}