section.banniere figure{
    position: relative;
    z-index: 1;
}

section.banniere figure::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

section.banniere figure.bleu::after{
    background: linear-gradient(96.18deg, #003B5C 47.48%, rgba(0, 59, 92, 0) 130%);
}

section.banniere figure.ombre::after{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

section.banniere > figure > img{
    object-fit: cover;
    position: absolute;
    top: 0;
    height: 100%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: -1;
}

section.banniere > figure .container.content{
    padding: 70px 32px 159px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    grid-gap: 32px;
    margin: unset;
}

section.banniere > figure .container.content .boutons{
    display: flex;
    grid-gap: 20px;

}

section.banniere > figure .container.content h1{
    font-style: normal;
    font-weight: 400;
    font-size: 54px;
    line-height: 65px;
    color: #FFFFFF;
}

section.banniere > figure .container.content p{
    line-height: 24px;
    color: #fff;
}

section.banniere > figure.centre .container.content{
    justify-content: center;
    align-items: center;
    text-align: center;
}

section.banniere figure > svg{
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (min-width: 992px){
    section.banniere > figure .container.content{
        margin: 0 auto;
        padding: 132px 120px;
    }

    body.single-produits section.banniere > figure .container.content{
        padding: 204px 0;
    }

    section.banniere > figure .container.content h1{
        font-size: 86px;
        line-height: 90px;
        max-width: 800px;
    }

    section.banniere figure > svg{
        display: none;
    }
}