
/* FOOTER */

footer {
    width: 100%;

    background-color: var(--blue-color);
}

.footer-container {
    width: 100%;

    max-width: var(--max-width);

    padding: 16px 64px;


    display: flex;
    flex-wrap: wrap;

    justify-content: space-between;
    align-items: start;
}

.footer-section {
    min-width: 200px;
    max-width: 400px;

    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-section-title {
    display: flex;
}

.footer-section-title h2 {
    font-size: 24px;
    font-weight: 700;

    color: var(--orage-color);
}


.footer-section-navigation ul {
    margin: 0;

    list-style: none;
}

.footer-section-navigation-social {
    display: flex;

    gap: 16px;
}

.footer-section-navigation ul li a {
    width: 100%;

    display: flex;

    align-items: flex-start;

    color: var(--gray-f1);
}

@media screen and (max-width: 630px) {
    .footer-container {
        flex-direction: column;

        justify-content: center;
        align-items: flex-start;
    }

    .footer-section {
        padding-bottom: 24px;
    }
}