footer {
        background-color: #044273;
        color: white;
    }

footer .external-links {
    list-style: none;
}

footer .external-links li img {
    filter: brightness(100);
}

/* ============================================================
   DESKTOP (min-width: 780px)
   ============================================================ */

@media screen and (min-width: 780px) {
    footer {
        padding: 6vh 2vh 1vh 6vh;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2vh;
    }

    footer h3 {
        margin: 0;
    }

    footer .external-links {
        bottom: 30px;
        display: flex;
    }

    footer img {
        height: 75px;
        margin: 20px;
    }

    footer .external-links li img {
        margin: 5px;
        height: 3vw;
    }

    footer .droits p {
        font-size: 10px;
        margin-bottom: 10px;
        margin-top: 20px;
    }
}

/* ============================================================
   MOBILE (max-width: 780px)
   ============================================================ */

@media screen and (max-width: 780px) {
    footer {
        padding: 2vh 2vh 1vh 2vh;
        border-radius: 50px 0 0 0;
        text-align: center;
    }

    footer h3 {
        font-weight: bold;
    }

    #Contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    footer .external-links {
        display: grid;
        grid-template-columns: repeat(auto-fit, 40px);
        justify-content: center;
        justify-items: center;
        margin-top: 20px;
        width: 100%;
    }


    footer .external-links li img {
        height: 26px;
    }

    footer section {
        margin-bottom: 25px;
    }

    footer .droits p {
        font-size: 10px;
        margin-bottom: 10px;
        margin-top: 25px;
    }
}