footer {
    color: #000;
    background-color: #fff;
    padding-top: 5vh;
    padding-bottom: 5vh;
}
footer a {
    color: #000;
}
footer a:hover {
    color:  var(--wp--preset--color--color-3);
}
footer .logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
footer .footer-adresses p,
footer .footer-telephone a,
footer .horaires {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
footer .footer-adresses p svg,
footer .footer-telephone a svg,
footer .horaires svg {
    color:  var(--wp--preset--color--color-3);
}
footer .socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}
footer .socials li a {
    color: #fff;
    background-color:  var(--wp--preset--color--color-3);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .socials li a:hover {
    background-color:  var(--wp--preset--color--color-2);
}
footer .copyright {
    font-size: 0.875rem;
    text-align: center;
}
@media screen and (min-width: 768px) {
    footer .socials {
        justify-content: flex-start;
    }
    footer .copyright {
        text-align: left;
    }
}
@media screen and (min-width: 991px) {
    footer .logos {
        flex-direction: row;
        gap: 50px;
    }
}