.footer .mainFooter {
    display: flex;
    gap: 4em;
    align-items: center;
}

.footer .mainFooter .gauche {
    max-width: 40%;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.footer .mainFooter .gauche img {
    width: 7.5em;
    height: auto;
}

.footer .mainFooter .linkFooter{
    display: flex;
    gap: 4em;
}

.footer .mainFooter .linkFooter .contactLink,
.footer .mainFooter .linkFooter .menuLink{
    display: flex;
    flex-direction: column;
    gap: calc(1.5em + 16px);
}

.footer .mainFooter .linkFooter .menuLink .menuElement{
    display: flex;
    flex-direction: column;
    gap: .5em;
}

.footer .mainFooter .linkFooter .contactLink h3:after,
.footer .mainFooter .linkFooter .menuLink h3:after {
    content: " ";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--basicColor2);

}

.footer .mainFooter .linkFooter .contactLink h3,
.footer .mainFooter .linkFooter .menuLink h3{
    position: relative;
    width: fit-content;
}

.footer .mainFooter .linkFooter .contactLink .contact {
    display: flex;
    flex-direction: column;
    gap: 1.75em;
}

.footer .mainFooter .linkFooter .contactLink .contact .containerContact {
    display: flex;
    gap: 1em;
    align-items: center;
}

.footer .mainFooter .linkFooter .contactLink .contact .containerContact > span {
    background-color: var(--basicColor2);
    border-radius: 100px;
    width: 3em;
    height: 3em;
}

.footer .mainFooter .linkFooter .contactLink .contact .containerContact svg {
    width: 3em;
    height: 3em;
    padding: .7em;
}

@media screen and (max-width: 1200px) {
    .footer .mainFooter,
    .footer .mainFooter .linkFooter {
        gap: 2em;
    }
}

@media screen and (max-width: 1000px) {
    .footer .mainFooter{
        flex-direction: column;
        align-items: flex-start;
    }
    .footer .mainFooter .gauche{
        width: 100%;
        max-width: initial;
    }
}

@media screen and (max-width: 600px) {
    .footer .mainFooter .linkFooter{
        flex-direction: column;
    }
}
