#bannerSectionWhoIAm{
    background-image: url('../../../images/photos/cabinet-1536x864.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
#bannerSectionWhoIAm .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;
}
/* Écrans de grande taille (plus de 1200px) */
@media only screen and (min-width: 1200px) {
    #bannerSectionWhoIAm .content {
        padding:0 5rem;
    }
}

/* Écrans de taille moyenne (768px à 1199px) */
@media only screen and (max-width: 1199px) and (min-width: 768px) {
    #bannerSectionWhoIAm .content {
        padding:0 4rem;
        height: 550px;
    }
}

/* Écrans de petite taille (moins de 768px) */
@media only screen and (max-width: 767px) {
    #bannerSectionWhoIAm {
        background-attachment: scroll; /* Supprime l'effet de fond fixe pour mobile */
    }

    #bannerSectionWhoIAm .content {
        padding: 0 2rem;
    }
}
