#formules{
    margin-bottom: 50px;
}
#formule-container{
    display: flex;
    flex-wrap: wrap;
}

.formule-element{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    margin-top: 35px;
}

.formule-image{
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    aspect-ratio: 1;
}

.formule-name{
    font-size: 1.4em;
    font-weight: bold;
    margin: 0;
    margin-top: 20px;
    text-align: center;
}

ul.formule-list{
list-style-type: none;
    padding: 0;
    margin: 0;
}
ul.formule-list> li{
    font-size: 0.9em;
    text-align: center;
    position: relative;
    margin-top: 16px;
}

ul.formule-list>li::before{
    content: " ";
    width: 6px;
    height: 6px;
    position: absolute;
    background: #245aa6;
    border-radius: 5px;
    left: calc(50% - 3px);
    top: -9px;
}

#repertoire > ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#repertoire > ul > li{
    position: relative;
    padding-left: 25px;
}

#repertoire > ul > li::before{
    content: " ";
    width: 6px;
    height: 6px;
    position: absolute;
    background: #245aa6;
    border-radius: 5px;
    left: 5px;
    top: 9px;
}

h2{
    font-size: 1.5em;
    margin-top: 15px;
}

h3{
    font-size: 1.2em;
    margin-top: 8px;
}

@media (max-width: 991px) {
    #formules{
        text-align: justify;
    }
}
@media (min-width: 992px) {
    .formule-element{
        min-width: 360px;
    }
}

