.bgVert { background: #3e7035; }
.texteVert { color: #3e7035; }
.section-bg { background: #f5f6f7; }

/* Pour l'animation (apariation de bas en haut). */
.reveal { opacity: 0; transform: translateY(200px); }
.revealVisible { opacity: 1; transform: translateY(0); transition: all 1s; }
/*  */



nav .logo {
    width: clamp(70px, 18vw, 120px);
    margin-left: 15px;
}

nav svg {
    width: 40px;
    margin-right: clamp(18px, 5%, 30px);
}


nav ul {
    display: flex;
    justify-content: end;
    margin: 0;
    padding: 18px;
}

nav ul a {
    text-decoration: none;
    color: #3e7035;
    position: relative;
    transition: font-weight .3s ;
}

nav ul a.deco::before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #3e7035;
    width: 0%;
    transition: all 0.3s ease-in-out 0s;
}

nav ul a.deco:hover::before {
    width: 100%;
}

nav ul a[href='/auth'] {
    background: #3e7035;
    color: #fff;
    padding: 10px 25px 12px;
    border-radius: 5px;
    transition: all .4s ease-in-out;
}

nav ul a[href='/auth']:hover {
    padding: 10px 30px 12px;
    background: #3e7035d1;
}


/* CSS pour l'element qui est actif */
nav ul a.actif {
    font-weight: 450;
    cursor: not-allowed;
}

nav ul a.actif::before{
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #3e7035;
    width: 100%;
    transition: all 0.3s ease-in-out 0s;
}

/*  */
#navigation {
    transition: all .5s ease-in-out;
}
#navigation.fixed-top {
    box-shadow: 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12), 0 2px 4px -1px rgba(0,0,0,.2);
}

/* ---------------------------------------- */




/* Menu deroulant */
#liSIT {
    position: relative;
}

.ulLiSIT {
    display: none;
    position: absolute;
    top: 25px;
    background-color: #fff;
    min-width: 185px;
    z-index: 1;
}

#liSIT:hover .ulLiSIT {
    display: block;
}

.ulLiSIT a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.ulLiSIT a:hover {
    background-color: #f1f1f1;
}




/*  */
#liSIT2 {
    position: relative;
}

.ulLiSIT2 {
    display: none;
    position: absolute;
    top: 25px;
    background-color: #fff;
    min-width: 185px;
    z-index: 1;
}

#liSIT2:hover .ulLiSIT2 {
    display: block;
}

.ulLiSIT2 a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.ulLiSIT2 a:hover {
    background-color: #f1f1f1;
}







/* DEBUT FOOTER */
footer {
    color: #fff;
    background-image: url(../atouts/images/autres/footer.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 14px;
    position: relative;
    height: 800px;
    transition: all .5s;
}

footer:before {
    content: "";
    background: #3e7035a8;
    position: absolute;
    inset: 0;
}

footer .contenu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    width: 80%;
}

footer .servicesAndLinks a {
    text-decoration: none;
    transition: all .3s ease-in-out;
    color: #ffffff;
    font-size: 17px;
}

footer .servicesAndLinks a:hover {
    padding-left: 10px;
    font-weight: 500;
}

footer .social-links {
    display: flex;
}

footer .social-links a {
    background: #ffffff26;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: all .3s ease-in-out;
}

footer .social-links a:hover {
    background: #fff;
}

footer .social-links a:hover svg {
    color: #757171c7;
}



footer .social-links a svg {
    width: 22px;
    color: #fff;
}

footer #links {
    margin: 30px 0;
}

footer .logo {
    text-align: center;
}

footer .logo img {
    width: 275px;
}


@media (min-width:500px) {

    footer { height: 600px; }

    footer .contenu {
        flex-direction: row;
        flex-wrap: wrap;
    }

    footer .logo { width: 100%; }

    footer #links {
        margin: 0;
    }
    
    footer #services {
        width: 70%;
    }
    
    footer #links{
        width: 30%;
    }

    footer #media {
        margin-top: 25px;
    }
}

@media (min-width:768px) {

    footer {
        height: 500px;
    }

    footer #services {
        width: 38%;
    }

    footer #links {
        width: 27%;
    }

    footer #media {
        margin-top: 0;
        width: 35%;
    }
}


@media (min-width:991px) {

    footer {
        height: 350px;
    }

    footer .contenu {
        width: 96%;
        max-width: 1600px;
    }

    footer .logo {
        width: 30%;
        margin-top: -45px;
    }

    footer #services {
        width: 25%;
    }

    footer #links {
        width: 20%;
    }

    footer #media {
        margin-top: 0;
        width: 25%;
    }
}


/* FIN FOOTER */


/*footer {*/
/*    color: #fff;*/
/*    background-image: url(../atouts/images/autres/footer.webp);*/
/*    background-position: top center;*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    font-size: 14px;*/
/*    padding: 25px 0;*/
/*    position: relative;*/
/*    transition: all .5s;*/
/*}*/
/*footer:before {*/
/*    content: "";*/
/*    background: #00000074;*/
    /* background: linear-gradient(to right, rgb(255 255 255 / 0%) 0%, #0000008f 50%, #0000008f 100%); */
/*    position: absolute;*/
/*    inset: 0;*/
/*}*/

/*footer .logoFooter  {*/
/*    width: 250px;*/
    /* height: 250px; */
    /* position: relative; */
/*}*/

/*footer .logoFooter img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
    /* position: absolute; */
    /* top: -10px; */
/*}*/

/*footer a {*/
/*    text-decoration: none;*/
/*}*/

/*footer .social-links a {*/
/*    background: #ffffff26;*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    border-radius: 5px;*/
/*}*/
/*footer .social-links a svg {*/
/*    width: 22px;*/
/*    color: #fff;*/
/*}*/

/* FIN FOOTER */


/* DEBUT ABOUT */
.page {
    position: relative;
    height: 150px;
}

.page:before {
    content: "";
    background: #00000094;
    position: absolute;
    inset: 0;
}
.page div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.getFreeEstimate {
    background: #3e7035;
    color: #fefefd;
    padding: 10px 30px;
    width: fit-content;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    border: unset;
    cursor: pointer;
    transition: all .5s;
    text-transform: uppercase;
    display: block;
    margin-top: 25px;
    text-decoration: none;
}

.getFreeEstimate span {
    font-weight: bold;
}



.titreDifferent {
    font-size: 32px;
    font-weight: 700;
    color: rgb(46, 49, 53);
    text-align: center;
    padding-top: 45px;
}

@media (min-width:780px) {


.titreDifferent:before {
    margin: 0px 15px 10px 0px;
    content: "";
    width: 50px;
    height: 2px;
    background: #3e7035;
    display: inline-block;
}

.titreDifferent:after {
    content: "";
    width: 50px;
    height: 2px;
    background: #3e7035;
    display: inline-block;
    margin: 0px 0px 10px 15px;
}

}




/* Menu MOBILE */
#menuMobile {
    width: 85%;
}

#menuMobile ul a {
    padding: 10px 0 10px 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #3e7035;
    margin-bottom: 2px;
    font-size: 15px;
}

#menuMobile ul a:hover {
    color: #3e7035;
    background: #3e70354b;
}

#menuMobile ul a:hover .icone {
    background: #3e70359d;
}

#menuMobile ul a .icone {
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3e70359d;
    border-radius: 3px;
}

#menuMobile ul a svg {
    width: 20px;    
    color: #fff;
}