/*** MISES EN FORME POUR TOUT CE QUE CONTIENT LA SECTION COMPETENCES ***/

div#ventreCompetences
{
    display: flex;
}
div#ventreCompetences > div
{
    width: 50%;
}
div#ventreCompetences > div:first-child
{
    padding-right: 5px;
    border-right: whitesmoke solid 2px;
}

div#ventreLangages
{
    display: flex;
}
div#ventreLangages > div
{
    width: 50%;
}
.logo_langage
{
    display: flex;
    height: 40px;
}
.logo_langage > img
{
    margin-left: 10%;
}
.titreLangage
{
    display: flex;
    flex-direction: column;
    margin-left: 0;
}
.titreLangage > p
{
    margin: auto 10px;
}
.etoiles_langage
{
    display: flex;
    justify-content: space-between;

    height: 40px;

    margin: 15px 0 50px 0;
}
.etoiles_langage > img:first-child
{
    margin-left: 10%;
}
.etoiles_langage > img:last-child
{
    margin-right: 10%;
}



/*** POUR LA GESTION DU RESPONSIVE ***/
@media (max-width: 1024px) {

    div#ventreCompetences
    {
        flex-direction: column;
    }
    div#ventreCompetences > div
    {
        width: 100%;
    }


}


