#bannerSectionFormation{
    background-image: url('../../../images/backgrounds/reunion-unsmushed.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
#bannerSectionFormation .content{
    width: 100%;
    background-color: hsla(0, 0%, 0%, 0.50);
    justify-content: center;
    align-items: center;
    color: white;
    padding: 3rem;
    height: 600px;
    gap: 0;
}

@media screen and (max-width: 768px) {
    #bannerSectionFormation{
        width: 100vw;
        padding:2rem 0;
        background-attachment: scroll;
        text-align: center;
    }
    #bannerSectionFormation .content{
        width: 100vw;
        padding: 3rem 0;
    }
    #bannerSectionFormation .content h1{
        font-size: 30px;
        width: 90vw;
    }
    #bannerSectionFormation .content h2{
        font-size: 20px;
        width: 90vw;
    }
    #bannerSectionFormation .content p{
        max-width: 90vw;
    }
}