footer {
    position: relative;
    padding-top: 3vh;
    padding-bottom: 2vh;
    color: #fff;
    background-color: var(--text-color);
}
footer a {
    color: #fff;
}
footer a:hover {
    color: var(--btn-color-2);
}
footer .logo img {
    max-width: 150px;
}
footer .socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:center;
    gap: 10px;
    margin-top: 25px;
}
footer .socials svg {
    font-size: 24px;
}
footer .infos {
    line-height: 1.7;
}
footer .sites-groupe {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
footer .sites-groupe  a img {
    width: 110px;
}
footer .copyright {
    color: #fff;
    margin-top: 4vh;
    font-size: 0.875rem;
    text-align: center;
}
@media screen and (min-width: 991px) {
    footer {
        padding-top: 6vh;
    }
    footer .copyright {
        text-align: right;
    }
    body.site-2 footer .text-group,
    body.site-3 footer .text-group,
    body.site-4 footer .text-group  {
        margin-left: 170px;
    }
}
@media screen and (min-width: 1600px) {
    footer .sites-groupe  a img {
        width: 150px;
    }
}