/*Mobile*/
@media screen and (max-width: 700px) {
    footer{
        display: flex;
        flex-direction: column;
        padding: 2rem;
    }

    footer section{
        margin-top: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    footer ul{
        display: flex;
        flex-direction: column;
    }
}

/*Ordinateur*/
@media screen and (min-width: 700px){
    footer{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        padding: 2rem 0;
    }
}

footer{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #3a3a3a;
    color: white;
}

footer section{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

footer section article{
    gap: 0.5rem;
}

footer ul{
    display: flex;
    flex-direction: row;
    list-style-type: none;
    gap: 0.2rem;
}

footer a{
    text-decoration: none;
    color: white;
}

#img_logo_lt_blanc{
    height: 6rem;
}

#footer_mail{
    width: 1.75rem;
}

#footer_linkedin{
    width: 1.75rem;
}

#white_sep_footer{
    height: 2rem;
}