/*** TOUTES LES MISES EN FORME CONCERNANT LA SECTION EXPERIENCES --- LIGNE DU TEMPS ***/

/* TEST D'IMPORTATION DEPUIS PROJET PRECEDENT */

.boiteNiveau_1
{
    width: 50%;
    margin: 0;
    background: none;
}
.grosseBoiteGauche
{
    border-right: #2B2E4A solid 4px;
}
.grosseBoiteDroite
{
    border-left: #2B2E4A solid 4px;
}
.boiteNiveau_2
{
    height: 200px;
    display: flex;
    margin: 0;
    border: none;
    background: none;
}
.bulleTexte
{
    width: 70%;
    margin: 0;
    border: #2B2E4A solid 4px;
    background-color: whitesmoke;
    padding: 10px 20px;

    border-radius: 50px;

    transition: background-color 0.5s, color 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.bulleTexte:hover
{
    background-color: #2B2E4A;
    color: whitesmoke;
    transition: background-color 0.5s, color 0.5s;
}

.miniBoite
{
    width: 10%;
    margin: 0;
}
.boiteLiaison
{
    width: 20%;
    display: flex;
    flex-direction: column;
    margin: 0;
}
.microBoiteLiaison
{
    height: 50%;
    margin: 0;
}
.microHaut
{
    border-bottom: #2B2E4A solid 2px;
}
.microBas
{
    border-top: #2B2E4A solid 2px;
}
.premiereBoite
{
    height: 25px;
    margin: 0;
    border: none;
    background: none;
}
.texteDansBulles
{
    text-align: justify;

    font-size: 1.125vw;
}

div#experiences_englobees
{
    display: flex;
    margin: 50px 0;
}

section#sectionExpe h2
{
    margin: 0;
    font-size: 1.25vw;
    font-family: "cooperHewitt_gras", sans-serif;
}






/*** GESTION DU RESPONSIVE ***/
@media (max-width: 1024px) {

    /* REAGRANDIR UN PEU LES POLICES */
    section#sectionExpe h2
    {
        font-size: 2.75vw;
    }
    .texteDansBulles
    {
        font-size: 2.5vw;
    }

    .boiteNiveau_2
    {
        height: 350px;
    }

}






