html, body{
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: Roboto;
}
p{
    margin: 0;
}

.hover-link:hover, .hover-link:hover span{
    color: #FF8B1F;
    transition: 0.5s;
}

.youtube_player{
    z-index: 2;
    width: 100%;
    height: 100%;
}

.grecaptcha-badge{
	z-index: 2;
}

.container{
    width: 75%;
    margin: 0 auto;
}
.d-flex{
    display: flex;
}
.w-100{
    width: 100%;
}
.h-100{
    height: 100%;
}
.text-uppercase{
    text-transform: uppercase;
}
.text-center{
    text-align: center;
}
.mb-0{
    margin-bottom: 0 !important;
}
.mb-2{
    margin-bottom: 2rem;
}
.arrow {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.arrow.down.navbar{
    margin-left: 0.62rem;
}

a{
    text-decoration: none;
    color: black;
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

strong.bold{
	font-weight:normal;
}


.ytp-chrome-top{
    display:none !important;
}

.btn-prime-contact{
    display: block;
    font-family: Raleway;
    font-weight: 700;
    width: fit-content;
    background-color: #FF8B1F;
    margin-top: 1rem;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    color: white;
    text-transform: uppercase;
    text-align: center;
    z-index: 2;
}

/** ---------------- HEADER  ---------------- **/

header{
    font-size: 15px;
    font-family: Raleway;
    font-weight: 700;
    height: 5rem;
    letter-spacing: 0.02em;
}

nav.navbar{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 15%);
    transition: all 0.3s ease-out;
    z-index: 3;
    background: #fff;
}

nav.relative{
    position: relative;
}

nav.navbar.anim-nav{
    position : fixed;
    top:0%;
}

.logo-nav{
    margin-left: 1rem;
}

header ul.no-hamburger{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 3;
}


header li{
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding: 0rem 1rem;
}

header li a{
    display: block;
    position: relative;

}

a.logo-a img{
    transition: 0.5s;
}

a.logo-a:hover img{
    transform: translateY(-36px);
    transition: 0.5s;
}

.navbar-logo.logo-insta-couleur{
    width: 34px;
}

header li a.surlignage::after {
    content: '';
    transform-origin: 0 0;
    transform: scaleX(0);
    position: absolute;
    bottom: -0.5rem;
    left: 0rem;
    right: 0rem;
    height: 0.4em;
    background: #339933;
    z-index: -1;
    opacity: 0.8;
    transition: transform .5s;
}
header li:hover a.surlignage::after {
    transform: scaleX(1);
}

header .no-hamburger li:hover .sous-menu{
    padding-bottom: 0.5rem;
    display: block;
    width: 115%;
    border-radius: 8px;
}

header .sous-menu li{
    display: block;
}

header .sous-menu li:first-child{
    margin-top: 1rem;
}

header .sous-menu li:hover{
    background: rgba(51, 153, 51, 0.1);
}

header .sous-menu li a{
    padding: 0.55rem 1rem;
}

header .sous-menu li a:hover{
    padding: 0.55rem 1rem;
    color: #1F721F;
}

.no-hamburger .sous-menu{
    display: none;
    position: absolute;
    background-color: #fff;
    z-index: 1;
}

.logo-renovathome{
    width: 17.37rem;
    height: 3.56rem;
    padding: 0.7rem 0;
}

.logo-renovathome.declinaison{
    display: none;
    width: fit-content;
}

.btn-devis{
    background: linear-gradient(90deg, #25871C 0%, #31B125 100%);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-family: Raleway;
    font-weight: 700;
    color: white;
    cursor: pointer;
}

.btn-devis:hover{
    background: #25871C;
}

.logo-fb{
    padding-right: 0.5rem;
}

li a.logo-fb::after{
    content: '';
}

.logo-insta{
    padding-left:0.5rem;
}

.sous-menu .fa-arrow-right{
    margin-left: 0.75rem;
    opacity: 0;
    transform: translateX(0);
    transition: 1s;
}

header .sous-menu li a:hover .fa-arrow-right{
    opacity: 1;
    transform: translateX(100%);
}

.menu-reseau {
    display: flex;
    gap: 1rem;
}

.menu-reseau-logo{
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.navbar-logo{
    width: 30px;
}

.sous-menu li{
    padding: 0;
}

.login-form {
    width: 50%;
    margin: 0 auto;
    background: #F7F7F7;
    padding: 5%;
    border-radius: 16px;
    box-shadow: 0px 4px 10px 7px rgb(0 0 0 / 5%);
    min-width: fit-content;
}

/** ---------------- NOTIF  ---------------- **/

.alert.alert-success{
    top: 120px;
    right: 25px;
    z-index: 50;
    position: fixed;
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    border-right: 5px solid #46c93a;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.close-notif{
    position: absolute;
    top: 9px;
    right: 15px;
    cursor: pointer;
}

.alert.alert-success.disparition-notif{
    padding:0;
    height:0;
    overflow:hidden;
    transition:0.5s;
}
/** ---------------- BANNIERE  ---------------- **/
.banniere{
    height: 19rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    font-family: Raleway;
    color: white;
}

.banniere:before{
    content: '';
    position: absolute;
    background-image: url(../images/logo_renovathome_big_opacity10.png);
    background-color: rgba(31, 114, 24, 0.9);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-size: auto 90%;
    background-position-y: 50%;
    background-position-x: 5%;
    z-index: 2;
}


.contenu-banniere {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.titre-banniere{
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: .5rem;
    text-align: center;
}

.sous-titre-banniere{
    text-align: center;
    font-size: 1.25rem;
    line-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sous-titre-banniere span{
    margin: 0 1rem;
}

.deco-sous-titre{
    width: 40px;
    height: 4px;
    background-color: #FF9900;
}




/** ---------------- FOOTER  ---------------- **/
footer{
    background-color: #333333;
    color: #fff;
    font-family: Raleway;
    position: relative;
    z-index: 2;

}

.info-footer{
    width: 75%;
    margin: 0 auto;
    padding-top: 4rem;
    padding-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer a, footer span{
    color: #fff;
    line-height: 1.56rem;
    margin-bottom: 0.25rem;
}

footer .titre{
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.footer{
    display: flex;
    flex-direction: column;
}

.footer:last-child{
    min-height: 15rem;
}

.titre{
    display: flex;
    align-items: center;
}

.titre span{
    margin-left: 1rem;
}
.footer .rs{
    flex-direction: row;
}
.logo-footer{
    width: 2.5rem;
}

.logo-footer:hover{
    filter: invert(50%) sepia(97%) saturate(779%) hue-rotate(344deg) brightness(101%) contrast(101%);
}

.logo-footer:first-child{
    margin-right: 1rem;
}

.footer a.end{
    width: fit-content;
    text-align: center;
    background: linear-gradient(90deg, #25871C 0%, #31B125 100%);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-family: Raleway;
    font-weight: 700;
    color: white;
    cursor: pointer;
    display: block;
    margin-top: auto;
    margin-bottom: 2rem;
}

.footer a.end:hover{
    background: #25871C;
}

.legal{
    /*display: flex;*/
    /*justify-content: center;*/
    padding: 1rem 0;
    color: #9C9C9C;
    text-align: center;
}

.coordonnees{
    display: flex;
    align-items: center;
}

.footer-logo-coordonnees{
    width: 1.5rem;
    padding-right: 1.2rem;
}

.code-postal{
    margin-left: 2.7rem;
}


/** ---------------- DEVIS  ---------------- **/

#devis {
    position: relative;
}

.devis{
    width: 60%;
    margin: 0 auto;
    margin-top: -40px;
    display: flex;
    background: #F7F7F7;
    box-shadow: 0px 4px 10px 7px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    margin-bottom: 7.5rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.formulaire, .approche{
    display: flex;
    flex-direction: column;
}

.formulaire{
    width: 44%;
    margin: 0 5.5%;
    box-sizing: border-box;
}

.devis-sous-titre{
    padding-top: 3.12rem;
    font-family: Raleway;
    font-size: 1.25rem;
    line-height: 140%;
}

.devis-titre{
    padding-top:0.5rem;
    padding-bottom: 2.5rem;
    font-family: Raleway;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
}

.div-input-form{
    padding-bottom: 1rem;
}

.div-input-form label{
    font-family: 'Roboto', sans-serif;
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    line-height: 160%;
    color: #333333;
}

.div-input-form input, .div-input-form textarea, .div-input-form select{
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid #9A9A9A;
    border-radius: 50px;
    padding: 0px 6%;
    width: 88%;
    font-size: 1.1rem;
}

.div-input-form textarea{
    padding: 1rem 1.5rem;
}

.div-input-form input, .div-input-form select{
    height: 3.8rem;
}

.champs-obligatoire{
    display: block;
    color: #FB9600;
    font-size: 1.1rem;
    padding-bottom: 1.5rem;
}
.checkbox-info{
    margin-bottom: 2.5rem;
}

.checkbox-info input{
    margin-right: 1rem;
}

.checkbox-info label{
    font-size: 0.87rem;
    font-family: Roboto;
    color: #333333;
}

.formulaire .btn-devis, .login-form .btn-devis{
    font-size: 15px;
    width: auto;
    text-align: center;
    border: none;
    margin: 0 auto;
    margin-bottom: 6.69rem;
}

.devis-photo {
    position: absolute;
    top: 60%;
    right: 0;
    width: 40%;
    border-radius: 16px;
}

.approche{
    color: #333333;
    font-family: Raleway;
    font-weight: 700;
    margin: 0 5.5%;
    padding-top: 4.12rem;
    width: 34%;
}

.approche-titre{
    margin: 0 auto;
}

.approche-titre .deco-sous-titre{
    margin: 1rem auto;
}

.approche span{
    font-size: 2.5rem;
    line-height: 2.9rem;
    padding-bottom: 1rem;
}

.approche-etape{
    display: flex;
}

.approche-etape span{
    line-height: 1.57rem;
    font-size: 1.12rem;
}

.etape-img{
    padding-right: 1rem;
}

.etape-img img{
    width: 5.44rem;
}

.etape-txt{
    display: flex;
    flex-direction: column;
    margin-top: 1.56rem;
}

.etape-txt-first-child{
    padding-bottom: 5.4rem !important;
}

.etape-txt span{
    padding-bottom: 6.5rem;
}



.devis-separator{
    margin: 4rem 0;
    height: 62.68rem;
    width: 1px;
    background-color: #D0D0D0;
}

.devis-img-back{
    position: absolute;
    z-index: 0;
}

.devis-img-back.green {
    width: 62.25rem;
    top: 25%;
    left: -20%;
}

.devis-img-back.orange {
    width: 59rem;
    bottom: -17%;
    right: -23%;
}



/** ---------------- FOOTER CONTACT  ---------------- **/

.footer-contact{
    position: relative;
    background-color: #F7F7F7;

}

iframe{
    border:0;
    width: 100%;
    height: 100%;
    border-radius:8px;
}

.footer-contact-content{
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 75%;
    margin: 0 auto;
    padding: 7rem 0 7.15rem;

}


.footer-contact .back-green{
    height: 127%;
    width: 137%;
    position: absolute;
    top: 11%;
    left: -51%;
    z-index: -1;
}

.footer-contact .photo-contact{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    /*width: 30%;*/
    height: 40vh;
}

.contacter{
    display: flex;
    flex-direction: column;
    width: 45%
}
.photos-contact{
    width: 45%;
    position: relative;
    z-index: 2;
}

.photos-contact-top{
    display: flex;
    justify-content: center;
}

.photos-contact-top img{
    width: 100%;
}

.photos-contact-bot{
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.photos-contact-bot img{
    width: 49%;
}

.contacter-sous-titre, .sous-titre{
    font-family: Raleway;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.75rem;
    text-transform: uppercase;
}

.contacter-titre{
    font-family: Raleway;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 3rem;
}

.contacter p{
    margin-top: 1.5rem;
    margin-bottom: 2.34rem;
}

.contacter .coordonnees{
    margin-bottom: 1.66rem;
}

.contacter .coordonnees img{
    margin-right: 1rem;
}

.coordonnees .calendar-footer{
    display: flex;
    flex-direction: column;

}

.coordonnees .calendar-footer span{
    line-height: 1.8rem;
}

.contacter .btn-devis{
    width: 15rem;
    margin-top: 2.5rem;
    z-index: 2;
}
.titre-deco-dessous{
    font-family: Raleway;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 2.9rem;
    margin-bottom: 0.5rem;
    color: #333333;
}

.copyright{
    text-align: center;
    padding-bottom: 2rem;
}

.copyright img{
    margin-bottom: -0.3rem;
    width: 9rem;
    margin-left: 0.3rem;
}


/** ---------------- RESPONSIVE  ---------------- **/

@media (max-width: 1800px) {
    .devis-photo {
        top: auto;
        bottom: 0;
        width: 45%;
    }
}

@media (max-width: 1620px) {
    header li a {
      font-size: 12px;
    }
}

@media (max-width: 1440px) {
    .footer-contact-content, .info-footer {
      width: 87%;
    }
}

@media (max-width: 1250px) {
    .footer{
        width: 50%;
    }
}

@media (max-width:1440px) {
    header li{
        padding: 0 0.4rem;
    }
}

@media (max-width:1300px){
    header ul.no-hamburger{
        display: none;
    }
    
}

  @media (max-width: 1024px) {
    .footer-contact-content {
      width: 81%;
      flex-direction: column;
    }

    .photos-contact{
        order: 1;
        width: 100%;
    }

    .contacter{
        width: 100%;
        margin-bottom: 5rem;
    }

    .photo-contact{
        display: none;
    }

    .footer-contact .back-green {
        height: 130%;
        width: 136%;
        top: 6%;
        left: -69%;
    } 
}

@media (max-width: 768px) {
    .info-footer{
        width: 90%
    }
}

@media (max-width: 600px) {
    .info-footer{
        flex-direction: column;
        align-content: center;
    }
    .footer{
        width: auto;
    }
    
    .banniere {
        height: 14.25rem;
        min-height: fit-content !important;
    }
    
    .banniere:before {
        background-image: none;
    }
    
    .titre-banniere{
        font-size: 2.5rem;
    }
    .logo-renovathome{display: none;}
    .logo-renovathome.declinaison{
        display: block;
    }
}

@media (max-width: 425px) {
    .footer-contact-content {
      width: 93%;
    }
    .photos-contact{
        width: 90%;
        margin: 0 auto;
    }
}