/* Réassurances */
#reassurances{
    background-color: #FFFFFF;
    padding: 60px 30px;
    border-top: 1px solid #E6E6E6;
}
@media screen and (max-width: 1000px) {
    #reassurances .grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media screen and (max-width: 520px) {
    #reassurances .grid{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
#reassurances img{
    height: 35px !important;
}
#reassurances .titreReassurance{
    color: #000000;
    font-size: 19px;
    font-weight: 500;
    margin-top: 15px;
}
#reassurances .texteReassurance{
    max-width: 245px;
    color: #747474;
    font-size: 14px;
    font-weight: 300;
    margin: 0 auto;
}
@media screen and (max-width: 1150px) {
    #reassurances{
        padding: 40px 30px;
    }
    #reassurances .titreReassurance{
        font-size: 16px;
    }
}
/* Footer */
#footer{
    background-color: #1C1C1C;
    padding: 50px 30px 30px 30px;
}
#footer #menuFooter #region_footer{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    column-gap: 75px;
    row-gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333333;
}
@media screen and (max-width: 1250px){
    #footer #menuFooter #region_footer{
        flex-wrap: wrap;
        justify-content: space-around;
    }
    #footer #menuFooter #region_footer nav:first-child{
        width: 100%;
    }
}
@media screen and (max-width: 500px){
    #footer #menuFooter #region_footer nav{
        width: 100%;
    }
}
#footer #menuFooter .titreFooter{
    color: #F1A41E;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    white-space: nowrap;
}
#footer #menuFooter ul li{
    color: #C8C8C8;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}
#footer #menuFooter ul li a:hover{
    color: #F1A41E;
    text-decoration: underline;
}
#footer #menuFooter ul:first-child{
    text-align: center;
}
#footer #menuFooter .logo-footer{
    font-size: 0;
    line-height: 0;
    margin-bottom: 30px;
}
#footer #menuFooter .logo-footer:before{
    display: inline-block;
    width: 209px;
    height: 116px;
    background-image: url('../img/footer/logo-footer.png');
    background-position: left top;
    background-size: 209px 116px;
    background-repeat: no-repeat;
    content: "";
}
#footer #menuFooter .facebookFooterMenu,
#footer #menuFooter .instagramFooterMenu,
#footer #menuFooter .linkedinFooterMenu{
    display: inline-block;
    font-size: 0;
    line-height: inherit;
    margin: 0 5px;
}
#footer #menuFooter .facebookFooterMenu a:before,
#footer #menuFooter .instagramFooterMenu a:before,
#footer #menuFooter .linkedinFooterMenu a:before{
    display: inline-block;
    background-position: center top;
    background-repeat: no-repeat;
    content: "";
}
#footer #menuFooter .facebookFooterMenu a:before{
    width: 11px;
    height: 20px;
    background-image: url('../img/footer/facebook.svg');
    background-size: auto 20px;
}
#footer #menuFooter .instagramFooterMenu a:before{
    width: 22px;
    height: 21px;
    background-size: auto 21px;
    background-image: url('../img/footer/instagram.svg');
}
#footer #menuFooter .linkedinFooterMenu a:before{
    width: 23px;
    height: 21px;
    background-size: auto 21px;
    background-image: url('../img/footer/linkedin.svg');
}
/* Copyright */
#copyrightFooter{
    background-color: #1C1C1C;
    padding: 0 30px 30px 30px;
}
#copyrightFooter p{
    color: #C8C8C8;
    font-size: 14px;
    font-weight: 400;
}