.switch-up .footer{
    /*position: relative;*/
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-text);
    padding: 30px 45px;
}

.switch-up .footer__bloc-link-principal{
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.switch-up .footer__bloc-link-principal a{
    position: relative;
    display: block;
    font-size: var(--font-size-3);
    color: var(--color-white);
    text-decoration: none;
    margin: 0 22px;
}

.switch-up .footer__bloc-link-principal a::after{
    content:'';
    background-color: var(--color-white);
    position: absolute;
    left: 0;
    bottom:-5px;
    width: 100%;
    height:3px;
    opacity: 0;
    transition: .4s;
}

.switch-up .footer__bloc-link-principal a:hover::after{
    opacity: 1;
}

.bloc-social{
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 30px 0 45px;
}

.bloc-social a{
    display: block;
    width: 25px;
    height:25px;
    background-repeat: no-repeat;
    background-position: bottom center;
    margin: 0 15px;
}

.bloc-social a.fb{
    background-image: url('../../../img/social/fb.svg');
    background-size: 12px;
}

.bloc-social a.twitter{
    background-image: url('../../../img/social/twitter.svg');
    background-size: 25px;
}

.bloc-social a.linkedin{
    background-image: url('../../../img/social/linkedin.svg');
    background-size: 22px;
}

.switch-up .footer__bloc-link-secondaire{
    display: flex;
    justify-content: center;
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.switch-up .footer__bloc-link-secondaire a{
    display: block;
    font-size: var(--font-size-4);
    color: var(--color-grey);
    text-decoration: none;
    margin: 0 22px;
}

@media screen and (max-width: 699px) {
    .switch-up .footer{
        padding: 25px 20px 25px;
    }

    .switch-up .footer__bloc-social{
        margin: 30px 0 35px;
    }

    .switch-up .footer__bloc-link-principal a{
        margin: 0 15px;
    }

    .switch-up .footer__bloc-link-secondaire{
        width: 100%;
        justify-content: flex-start;
    }
    .switch-up .footer__bloc-link-secondaire li{
        margin: 5px 0;
    }
}
