footer.main_footer{
    display: flex;
    gap: 7rem;
    justify-content: center;
    align-items: center;
    padding: 5rem 0;
    background-color: var(--couleur-5);
}


footer.main_footer .logo img{
    width: 15rem;
}


footer.main_footer .sections{
    display: flex;
    gap: 7rem;
    justify-content: center;
}

footer.main_footer .sections ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0;
}
footer.main_footer .sections ul li{
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: .5rem;
}
footer.main_footer .sections ul li img{
    display: none;
}

footer.main_footer .sections ul li:nth-child(1) a{
    font-family: var(--police-Quicksand-Bold);
    color: var(--couleur-10);
}


footer.main_footer .section2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
footer.main_footer .section2 ul:nth-child(2) li:nth-child(1) a{
    font-family: var(--police-Quicksand-Bold);
    color: var(--couleur-11);
}

footer.main_footer .sections ul li.active{
    display: flex !important;
}


@media screen and (max-width: 900px) {
    footer.main_footer{
        flex-direction: column;
        align-items: center;
    } 
}

@media screen and (max-width: 700px) {
    footer.main_footer{
        padding: 5rem 3rem;
        gap: 5rem;
    }

    footer.main_footer .sections{
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 2rem;
    }
}


@media screen and (max-width: 400px){
    footer.main_footer .sections{
        gap: 1rem;
    }

    footer.main_footer .sections .section1,
    footer.main_footer .sections .section2,
    footer.main_footer .sections .section1 ul,
    footer.main_footer .sections .section2 ul
    {
        width: 100%;
    }
    footer.main_footer .sections ul li{
        border-bottom: 1px solid #E6E6E6;
        padding-bottom: 0.5rem;
        width: 100%;
    }

    footer.main_footer .section1 ul li:nth-child(1){
        border-top: 1px solid #E6E6E6;
        padding-top: 0.5rem;
    }

    footer.main_footer .section1 ul li,
    footer.main_footer .section2 ul:nth-child(1) li:nth-child(2),
    footer.main_footer .section2 ul:nth-child(1) li:nth-child(3){
        display: none;
    }

    footer.main_footer .section1 ul li:nth-child(1),
    footer.main_footer .sections ul li img
    {
        display: flex;
    }

    footer.main_footer .sections ul li a{
        width: fit-content;
    }

    footer.main_footer .section1 ul li:nth-child(1),
    footer.main_footer .section2 ul:nth-child(1) li:nth-child(1){
        cursor: pointer;
    }

}