/*** TOUTES LES MISES EN FORME CONCERNANT LA SECTION LANGUES ET CENTRES D'INTERET ***/

section#sectionLCI
{
    display: flex;
}
.bulleLCI
{
    width: 33%;
}
section#sectionLCI li
{
    font-size: x-large;
}



/*** LA PARTIE RESPONSIVE ***/
@media (max-width: 1024px) {

    section#sectionLCI
    {
        flex-direction: column;
    }
    .bulleLCI
    {
        width: 75%;
        margin: 10px auto;
        border-bottom: whitesmoke solid 2px;
    }
    .bulleLCI:last-child
    {
        border-bottom: none;
    }


}


