.footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    background-color: #004246;
    color: #ffff;
}

.footer__informations--links {
    display: flex;
    flex-direction: column;
    padding-block: 2rem;
    a {
        text-align: left;
        color: #ffff;
        &:hover{
            color: #ffce4c;
        }
    }
    h4{
        padding-bottom: 1rem;   
    }
}
.footer__social-network--links {
    display: flex;
    flex-direction: column;
    padding-block: 2rem;
    width: 15rem;
    h4{
        padding-bottom: 1.5rem;
        text-align: center;
    }
}
.footer__social-network--icon {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-top: 1.6rem;
    & a img{
    transition: transform 330ms ease-in-out;
    &:hover {
        border-radius: 50%;
        background: #ffce4c;
        transform: scale(1.2);
        transition: transform 330ms ease-in-out;
    }
    }
}
.footer__contact-section{
    padding-block: 2rem;
    & h4{
        padding-bottom: 1rem;
        text-align: center;
    }  
}
.footer__contact-form {
    justify-content: space-around;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    border-radius: 14px;
    background-color: #ffce4c;
    font-size:medium;
    transition: transform 330ms ease-in-out;
    & a{
        color: #004246;
    }
    &:hover{
        transform: scale(1.05);
        transition: transform 330ms ease-in-out;
    }
}
.footer__contact-section--display ul {
    padding-top: 1rem;
& a{
    text-decoration: none;
}
}
.ML__CGV--container{
    display: flex;
    background-color: white;
    align-items: center;
    justify-content:center;
    height: 4rem;
    width: 100%;
    & p{
        color: #ffce4c;
        font-size: xx-large;
        font-weight: bold;
        margin-bottom: 0;
        padding-inline: 4rem;
    }
    & a{
        width: 15%;
        color: #004246;
        &:hover{
            color:#ffce4c;
        }
    }
    a:nth-child(1){
    text-align: right;
    }
}
@media screen and (max-width: 700px) {
    .footer {
        height: auto;
        display: flex;
    }
    .footer__informations--links, .footer__social-network--links, .footer__contact-section{
        padding-block: 1rem;
        h4{
            padding-bottom:1rem;
        }
    }
    .footer__informations--links{
        h4{
            text-align: center;
        }
        padding-left: .5rem;
        & a{
            text-align: center;
        }
    }
    .footer__social-network--icon {
        flex-direction: column;
        align-items: center;
        padding-top: 0;
        gap: .7rem;
    }
    .ML__CGV--container{
         p{
            padding-inline: 2rem;
        }
        & a:nth-child(1){
            text-align: center;
        }
    }
}