/* Réassurances */
#reassurances{
    background-color: #F8F5F5;
    padding: 55px 30px;
}
@media screen and (max-width: 1000px) {
    #reassurances .grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    #reassurances .grid .last-reassurance{
        grid-column: span 2;
    }
}
@media screen and (max-width: 650px) {
    #reassurances .grid{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    #reassurances .grid .last-reassurance{
        grid-column: span 1;
    }
}
#reassurances img{
    height: 58px !important;
}
#reassurances .titreReassurance{
    color: #4E342E;
    font-size: 17px;
    font-weight: 500;
    margin-top: 15px;
}
#reassurances .texteReassurance{
    color: #836D68;
    font-size: 14px;
    font-weight: 400;
    margin: 0 auto;
}
@media screen and (max-width: 1150px) {
    #reassurances{
        padding: 40px 30px;
    }
    #reassurances .titreReassurance{
        font-size: 16px;
    }
}
/* Footer */
#footer{
    background-color: #FFFFFF;
    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;
}
@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%;
        text-align: center;
    }
}
@media screen and (max-width: 500px){
    #footer #menuFooter #region_footer nav{
        width: 100%;
    }
    #footer #menuFooter #region_footer nav:first-child{
        text-align: left;
    }
}
#footer #menuFooter h2{
    color: #4E342E;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
    white-space: nowrap;
}
#footer #menuFooter ul li{
    color: #836D68;
    font-size: 14px;
    line-height: 30px;
    font-weight: 300;
}
#footer #menuFooter ul li a:hover{
    text-decoration: underline;
}
#footer #menuFooter .facebookFooterMenu,
#footer #menuFooter .instagramFooterMenu,
#footer #menuFooter .pinterestFooterMenu,
#footer #menuFooter .ravelryFooterMenu{
    display: inline-block;
    font-size: 0;
    line-height: inherit;
    margin: 0 5px;
}
#footer #menuFooter .facebookFooterMenu a:before,
#footer #menuFooter .instagramFooterMenu a:before,
#footer #menuFooter .pinterestFooterMenu a:before,
#footer #menuFooter .ravelryFooterMenu a:before{
    width: 40px;
    height: 40px;
    display: inline-block;
    background-size: auto 40px;
    background-position: center top;
    background-repeat: no-repeat;
    content: "";
}
#footer #menuFooter .facebookFooterMenu a:before{
    background-image: url('../img/footer/facebook.svg');
}
#footer #menuFooter .instagramFooterMenu a:before{
    background-image: url('../img/footer/instagram.svg');
}
#footer #menuFooter .pinterestFooterMenu a:before{
    background-image: url('../img/footer/pinterest.svg');
}
#footer #menuFooter .ravelryFooterMenu a:before{
    background-image: url('../img/footer/ravelry.svg');
}
/* Copyright */
#copyrightFooter{
    background-color: #FFFFFF;
    padding: 0 30px 30px 30px;
}
#copyrightFooter p{
    color: #4E342E;
    font-size: 14px;
    font-weight: 300;
}