footer{
    position:relative;
    padding:4vw 5%;
    background: var(--bleufonce) url(../img/motif-footer.svg) no-repeat right bottom / 70%;
    color: var(--blanc);
    text-align:left;
    font-size: 0.9rem;
    z-index:1;
}
footer a{
    color: var(--blanc);
}
footer a.logo{
    display: inline-block;
}
footer a.logo img{
    width:120px;
}
footer .phone{
    font-size:1.5rem;
    font-weight: bold
}
footer ul{
    margin: 0; padding: 0;
    list-style: none;
}
footer .menu-menus-footer-container ul{
    display: flex;
    flex-direction: column;
    gap:1.25rem 0;
}
footer .menu-menus-footer-container ul li.round.vertclair a{
    display: inline-flex;
    width:40px;
    height:40px;
    border-radius: 50%;
    background-size:65%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--vertclair);
    overflow: clip;
}
footer .menu-menus-footer-container ul li.round.vertclair a > span{
    display: none
}
footer .menu-menus-footer-container ul li.round.vertclair.user a{
    background-image: url(../img/user.svg);
}
footer .menu-reseaux-sociaux-container ul{
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}
footer .menu-reseaux-sociaux-container ul li a{
    display:flex;
    overflow: clip;
    width:60px;
    height:60px;
    border-radius: 50%;
    background-color: var(--blanc);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat
}
footer .menu-reseaux-sociaux-container ul li a:hover{
    transform: scale(1.1);
    background-color: var(--grism);
}
footer .menu-reseaux-sociaux-container ul li a > span{
    display: none;
}
footer .menu-reseaux-sociaux-container ul li.fbk a{
    background-image: url(../img/fbk.svg);
}
footer .menu-reseaux-sociaux-container ul li.lkd a{
    background-image: url(../img/linkedin.svg);
}
footer .menu-reseaux-sociaux-container ul li.x a{
    background-image: url(../img/x.svg);
}
footer .menu-reseaux-sociaux-container ul li.ytb a{
    background-image: url(../img/youtube.svg);
}
footer .mentions{
    gap:0 1rem;
    font-size:0.8rem;
}
.astuce{
    position: fixed;
    right:0; top:50%;
    transform: translateY(-50%);
    background: var(--vert) url(../img/astuce.svg) no-repeat left 1rem center / auto 1.5rem;
    width:3rem;
    height:3rem;
    border-radius: 3rem 0 0 3rem;
    z-index: 997;
    cursor: pointer;
    transition:all 0.2s ease;
}
.astuce:hover{
    background-color: var(--vertclair);
    width:3.5rem
}
.navmobile{
    position: fixed;
    left:-100%; top:0;
    width:100%; height:100%;
    overflow: hidden;
    transition:all 0.35s ease-out;
    z-index:998;
    background-color: var(--bleufonce);
    color: var(--blanc);
    display: flex
}
.navmobile .inner{
    width:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding:150px 10% 2rem 10%;
}
.navmobile.opened{
    transform: translateX(100%);
}
.navmobile .knak{
    font-size:1rem;
    display: flex;
    justify-content: center
}
.navmobile .knak:hover{
    background-color: var(--bleu);
}

.navmobile ul{
    list-style:none;
    margin:0 auto;
    padding:0;
    display:flex;
    flex-direction: column;
    align-items: stretch;
    max-width:400px;
}
.navmobile ul ul.sub-menu{
    display:none;
    margin-bottom:2rem;
}
.navmobile ul li{
    text-align:left;
    border-bottom: 1px solid var(--bleu);
    text-transform: uppercase;
    font-weight: 500;
}
.navmobile ul li a{
    display: block;
    padding: 0.75rem 0;
    color: var(--blanc)
}
.navmobile ul ul.sub-menu li{
    border-bottom: none;
    text-transform: none;
}

@media screen and (min-width:768px){
    footer .menu-reseaux-sociaux-container ul{
        justify-content: start
    }
    footer{
        background-size:auto 90%;
    }
}

@media screen and (min-width:1440px){
    footer{
        padding-left: 6.5%;
        padding-right: 6.5%
    }
    footer .menu-reseaux-sociaux-container ul{
        gap: 1.5rem;
    }
    footer .menu-reseaux-sociaux-container ul li a{
        width:80px;
        height:80px;
    }
}
@media screen and (min-width:1920px){
    footer .menu-reseaux-sociaux-container ul li a{
        width:90px;
        height:90px;
    }
}
