footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 var(--container-space);
    & .footer-gradient-line{
        display: flex;
        width: 100%;
        height: 10px;
        background: linear-gradient(61deg, rgba(81, 55, 212, 0.70) 3.08%, rgba(81, 55, 212, 0.50) 88.49%);
        position: relative;
        clip-path: ellipse(50% 50% at 50% 50%);
    }
    & .footer-logo{
        padding: 4rem 0;
    }
    & .footer-nav{
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 2rem 0;
        & .footer-menu{
            display: flex;
            gap: 2rem;
            align-items: flex-end;
            & a {
                color: var(--wp--preset--color--blanc);
                font-size: var(--wp--preset--font-size--m-text);
                font-weight: 400;
                transition: color 0.3s ease-in-out;
                &:nth-child(2){
                    font-weight: 700;
                }
            }
        }
        & .footer-nav-socials{
            display: flex;
            gap: 0.5rem;
            
            & a {
                display: flex;
                width: 33px;
                height: 33px;
                justify-content: center;
                align-items: center;
                background-color: transparent;
                border-radius: 100%;
                padding: 0.5rem;
                border: solid 1px var(--wp--preset--color--blanc);
            }
        }
    }
    & .footer-separator{
        display: flex;
        width: 100%;
        height: 1px;
        opacity: 0.2;
        background-color: var(--wp--preset--color--blanc);
    }
    & .footer-seo{
        display: flex;
        width: 100%;
        justify-content: space-between;
        color: var(--wp--preset--color--blanc);
        padding: 2rem 0;
        & .footer-column{
            display: flex;
            flex-direction: column;
            width: 33.33%;
            gap: 1rem;
            & a {
                font-size: var(--wp--preset--font-size--xs-text);
                color: var(--wp--preset--color--blanc);
            }
        }
    }
    & .footer-legals{
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding-top: 5rem;
        color: var(--wp--preset--color--blanc);
        padding-bottom: 3rem;
        & a{
            color: var(--wp--preset--color--blanc);
        }
    }
}
/* MEDIA QUERIES SAMPLES */
@media (max-width: 2560px) {
}
@media (max-width: 1920px) {
}
@media (max-width: 1600px) {
}
@media (max-width: 1200px) {
}
@media (max-width: 1024px) {
}
@media (max-width: 768px) {
    footer {
        & .footer-gradient-line{
            height: 5px;
        }
        & .footer-logo{
            padding: 3rem 0;
        }
        & .footer-nav{
            flex-direction: column;
            gap: 2rem;
            & .footer-menu{
                justify-content: center;
            }
            & .footer-nav-socials{
                justify-content: center;
            }
        }
        & .footer-seo{
            flex-direction: column;
            gap: 1rem;
            & .footer-column{
                align-items: center;
                width: 100%;
            }
        }
        & .footer-legals{
            padding-top: 3rem;
        }
    }
}
@media (max-width: 576px) {   
}
