/* Footer CSS */
footer{
    position: relative;
    background-image: url(../img/motif-right.svg);
    background-repeat: no-repeat;
    background-position: right bottom 75px;
}
@media screen and (min-width: 1200px){
    footer::before{
    content:"";
    display: block;
    position: absolute;
    left:0; top:0;
    width:25%; height: 100%;
    background-color: var(--blanc);
    }
}

footer a.logo img{
    width: 135px;
}
.home footer a.logo{
    pointer-events: none;
}
footer .adresse{
    font-size: 0.9rem;
}
footer .bottom{
    border-top: 1px solid rgb(200,200,200);
}
footer .menus ul, footer .mentions ul {
     list-style: none;
     margin: 1rem 0;
     padding:0;
}
footer .menus ul li{
    text-align: left;
    margin:0.75rem 0;
    font-size: 0.85rem;
}
footer .menu-principal-container li{
    text-transform: uppercase;
    font-weight: bold;
}
footer .menus ul li a{
    color: var(--noir);
    display: inline-block
}
footer .menus ul li a:hover{
    color: var(--jade);
}
footer .menus ul li.devis{
    display: none;
}
footer .menus ul li.bouton a{
    width:100%;
    max-width:300px;
    text-align: center
}
footer .menus ul li.bouton a:hover{
    color: var(--blanc);
}
footer .rezos{
    gap:0.5rem;
}
footer .rezos a{
    display: inline-block;
    width:50px; height: 50px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
footer .rezos a:hover{
    transform: scale(1.05)
}
footer .rezos a.fbk{
    background-image: url(../img/fbk.svg);
}
footer .rezos a.lkd{
    background-image: url(../img/lkd.png);
}
footer .mentions{
    font-size:0.8rem;
    gap: 0 1rem
}
.bandeau-devis p{
    margin:0 0 0.25rem 0
}
.bandeau-devis p.l-un{
    font-weight: bold;
    font-size: 1.2rem;
}
.bandeau-devis a.bt.jade{
    background-color: var(--jade);
    border: 1px solid var(--jade);
    color: var(--blanc);
    display:inline-block;
    padding: 0.75rem 1.5rem;
    font-weight:bold;
    letter-spacing: 0.1rem;
}
.bandeau-devis a.bt.jade:hover{
    background-color: var(--noir);
    border-color: var(--blanc);
}
.navmobile{
    position: fixed;
    left:0; top:0;
    width:100%; height:100%;
    background: var(--grislight) url(../img/motif-right.svg) no-repeat right bottom / 60%;
    z-index: 998;
    overflow: auto;
    transform: translateX(-100%);
    transition: all 0.35s ease;
}
.navmobile.opened{
    transform: translateX(0);
}
.navmobile .inner{
    padding:100px 10% 1rem 10%
}
.navmobile ul{
    list-style: none;
    margin:0; padding:0;
}
.navmobile ul li{
    padding:0.65rem 0;
    text-align:left;
    letter-spacing: 0.1rem;
}
.navmobile .menu-principal-container ul li{
    text-transform: uppercase;
    font-weight: bold;
}