footer{
    height: 200px;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: absolute;
    bottom: 0;
}

footer div, footer p, footer > a{
    margin: 5px;
}

footer div a{
    /* margin: 0 20px 0 20px; */
    display: inline-block;
    text-align: center;
    width: 300px;
}

/* --------- CGU, POLITIQUE DE CONFIDENTIALITE, ... ---------- */

.title{
    margin-top: 40px ;
}

.footer{
    padding: 0 10% 0 10%;
}

.footer h4{
    margin-bottom: 20px;
}

.footer h5{
    margin-bottom: 10px;
}

/* main > div:not(:first-child){
    background-color: blue;
} */

/* main > div:first-child{
    background-color: blue;
} */

.footer >div{
    margin-bottom: 50px;
}

.mentionsLegales p, .cgu p{
    padding-bottom: 30px;
}

.cgu ul {
    margin-left: 5%;
}

/* ----------------------------------------------- */
/* RESPONSIVE */
/* ----------------------------------------------- */

@media screen and (max-width: 1000px) {

    footer {
        height: 600px;
    }

    footer div a{
        width: 100%;
        padding: 15px;
    }

    footer p{
        padding: 15px;
    }

    footer > div{
        display: flex;
        flex-direction: column;
    }
}