.bandeau{
    width: 100%;
    position: relative;
}
.bandeau img{
    width: 100%;
}
section{
    margin-top: var(--margesectiontop);
}
.container_liste{
    display: flex;
    flex-direction: row;
    width: 100%;
}
.liste_formation_catalogue{
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    position: relative;
}
.motif_droite{
    width: 40px;
    position: absolute;
    right: 0%;
    /* top: 95%; */
    bottom: -20px;
}
.motif_gauche{
    width: 40px;
    position: absolute;
    left: 0%;
    /* top: 95%; */
    bottom: -20px;
}
.sample_licence{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
}
.lien_detail{
    width: 40%;
    margin: 1vw;
}
.lien_detail:hover{
    transform: scale(1.1);
    transition: 0.6s ease;
}
.card_formation{
   width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: var(--gris1);
    box-shadow: var(--ombre2);
    border-radius: 10px;
    padding-top: 1.5vw;
}
.visuel_formation{
    width: 90%;
    align-self: center;
    height: 20vw;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.visuel_formation img{
    width: 115%;
}
.lien_formation{
    padding: 20px;
    width: 100%;
    min-height: 9vw;
    color: black;
    font-family: var(--typo1);
    font-size: calc(18*var(--res));
}
.lien_formation h3{
    text-align: center;
    font-weight: 300;
}
@media only screen and (max-width: 840px){
    .lien_detail{
        width: 100%;
    margin: 2vw;
    }
}

@media only screen and (max-width: 501px){
    .card_formation{
        padding-top: 4.5vw;
    }
    .visuel_formation{
        height: unset;
    }
    .card_formation h3{
        font-size: 16px;
    }
}