/*** BLOC GROUPE ***/

.groupe {
    margin: 0 5%;
}
.groupe__content{
    background-color: #EAF5F7;
    margin: 0 auto;
    padding: 1em;
}
.groupe__content > * {
    margin: 20px 0;
}
.groupe__images{
    display: none;
}
.groupe .images__figure{
    width: 300px;
    position: relative;
    margin-bottom: 1em;
}
.groupe .figure__img{
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.groupe .figure__legende{
    position: absolute;
    bottom: 5px;
    right: 0;
    padding: 5px 7px;
    background-color: white;
    font-weight: 600;
}

@media(min-width: 950px){
    .groupe{
        margin-top: 250px;
        position: relative;
    }
    .groupe::before{
        position: absolute;
        top: -6em;
        left: 45%;
        content:url('/wp-content/uploads/2023/02/cheers.svg');
        width:10em;
    }
    .groupe__content{
        padding: 3em 40% 3em 5em;
    }
    .groupe__images{
        display: block;
        position: absolute;
        top: -4em;
        right: 10%;
    }
}

