/* Footer Styles - Site Vitrine */
footer{
    height: 180px;
    width: 100%;
    padding: auto 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: #020902;
}

footer .container{
    padding: 5px 30px;
    display: flex;
    justify-content: space-between;
    border-bottom: 0.2px solid #dcdcdc;
    width: 80%;
    align-items: center;
}

footer .container a{
    text-decoration: none;
    font-size: 16px;
}

footer .container img{
    width: 60px;
    height: 60px;
}

footer .container .liens{
    width: 40%;
    padding: auto 10px;
    display: flex;
    justify-content: space-between;
}

footer .container .liens a{
    color: #fff;
    letter-spacing: 1px;
    font-weight: 400;
}

footer .container .media{
    width: 20%;
    display: flex;
    justify-content: space-between;
}

footer .container .media a{
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .container .media a:hover{
    transform: translate(0, -10%);
    background-color: #FCE003;
}

footer .container .media a svg{
    fill: #020902;
    width: 20px;
    height: 20px;
}

footer .copyrigther{
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    margin: 15px 0;
}

/* Responsive Styles */
@media (max-width: 746px) {
    footer{
        height: 75vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    footer .container {
         padding: 15px 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 80%;
        margin: auto;
        width: 40%;
    }
    footer .container .liens{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 60%;
        align-items: center;
        padding-inline: none;
    }

    footer .container .media{
        width: 100%;
        padding: auto 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
    }
}

@media (max-width: 376px) {
    footer .container .media a{
        width: 25px;
        height: 25px;
    }

    footer .container .media a svg{
        width: 15px;
        height: 15px;
    }
}
