/* sectionArticle *********************************************/
#sectionArticle{
    display: flex;
    width: 100%;
    background-color: white;
}


/* Side bar **************************************************/
#sideBar{
    color: white;
    background-color: #2274A5;
    padding: 2em;
    min-height: 42vh;
}
#sideBar img{
    height: 3em;
}
.ligneSideBar{
    display: flex;
    align-items: center;
    margin-bottom: 1em;
}
.colonneSideBar{
    margin-left:1em;
}
#contenueSideBar{
    display: flex;
    flex-direction: column;
    position: fixed;
    padding-top: 1em;
}
#sectionImgNavigation{
    display: none;
    align-items: center;
    justify-content: center;
}
#sectionImgNavigation img{
    width: 3em;
    margin-right: 1em;
    animation: 300ms slide_top;
}
.buttonAccueil{
    margin-top: 1em;
    margin-bottom: 1em;
}


/* Article ******************************************************/
#article{
    padding: 2em;
}
#article h3{
    color: #2274A5;
}
#sectionParcours h4{
    color: #FF5C5C;
    padding-left: 1em;
}
#sectionParcours p{
    padding-left: 1em;
}
#sectionParcours img{
    width: 90%;
    margin-left: 1em;
    padding: 1em;
}


@keyframes slide_top {
	from	{transform: translate(0px, -1vw);
            opacity: 0;}
	to		{transform: translate(0px, 0px);
            opacity: 1;}
}

@media (max-width: 991px) {
    #sectionArticle{
        flex-direction: column-reverse;
    }
    #contenueSideBar{
        position: initial;
    }
}
