/* ---------------- *\
        GENERAL
\* ---------------- */
* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #111;
    background-image: url(../medias/logo.svg);
    background-position: center center;
    background-attachment: fixed;
    background-size: 120px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    color: #DDD;
    height: 100%;
}

h1, h2, h3 {
    font-family: 'Dosis', sans-serif;
    font-weight: 200;
    color: #DDD;
    letter-spacing: 8px;
}

p {
    letter-spacing: 2px;
    font-size: 0.9em;
}

li a {
    font-weight: bolder;
    line-height: 25px;
    color: #DDD;
}

a {
    text-transform: uppercase;
    color: #d6e7ff;
    text-decoration: none;
}

a:active, a:hover {
    color: #176ebc;
}

.clear {
    clear: both;
}

hr {
    margin-bottom: 100px;
    width: 100%;
    border: none;
    height: 1px;
    background: #DDD;
}

/* ---------------- *\
        HEADER
\* ---------------- */

header {
    position: fixed;
    height: 80px;
    width: 100%;
    background: rgba(17, 17, 17, 0.92);
}

header h1 {
    float: left;
    line-height: 80px;
    text-align: center;
    padding-left: 25px;
    width: 275px;
}

header h1 a:hover {
    color: #176ebc;
}

        /* ---_MENU_--- */

#menu_icone {
    float: right;
    display: none;
    width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 15px;
    border: 1px solid #ddd;
    font-size: 1.2em;
}

/* ---------------- *\
     FOOTER
\* ---------------- */

footer {
    margin-top: 100px;
    height: 40px;
    line-height: 40px;
    background: rgba(17, 17, 17, 0.92);
    text-align: center;
}

footer a {
    text-transform: none;
    color: #d6e7ff;
}

/* ---------------- *\
     PAGE A PROPOS
\* ---------------- */

#aProposContent {
    width: 960px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 200px 8px 0px 8px;
}

#aProposContent h2 {
    text-align: center;
    width: 100%;
}

article > p {
    text-align: center;
    color: #ddd;
    margin-bottom: 210px;
    margin-top: 50px;
}

article a {
    color: #d6e7ff;
}

article img {
    width: 40%;
    margin-bottom: 15px;
    /*-webkit-animation: _rotate 10s linear infinite;
    -moz-animation: _rotate 10s linear infinite;
    -ms-animation: _rotate 10s linear infinite;
    -o-animation: _rotate 10s linear infinite;
    animation: _rotate 10s linear infinite;*/
}

@-webkit-keyframes _rotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
} 

#mentalite {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.mentalite_item {
    width: 30%;
    text-align: center;
    color: #d6e7ff;
}

/* ---------------------- *\
     PAGE PARCOURS
\* ---------------------- */

#monParcoursContent {
    width: 960px;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 200px 8px 0px 8px;
}

#monParcoursContent h2 {
    text-align: center;
    width: 100%;
}

#monParcoursContent aside {
    margin-top: 50px;
    width: 960px;
    text-align: left;
    display: flex;
    justify-content: flex-start;
}

#monParcoursContent aside svg {
    text-align: left;
    width: 30%;
}

#flex_exp {
    padding-right: 4px;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#flex_exp h3 {
    color: #176ebc;
}

#flex_exp div {
    margin-top: 132px;
}

#flex_exp div:nth-child(2) {
    margin-top: 153px;
}

#flex_exp div:nth-child(3) {
    margin-top: 151px;
}

#flex_exp p {
    color: #d6e7ff;
    padding-left: 20px;
}

/* ---------------------- *\
     PAGE OBJECTIFS
\* ---------------------- */

#objectifsContent {
    width: 960px;
    margin: auto;
    margin-top: 200px;
}

#objectifsContent p {
    margin-bottom: 70px;
}

#objectifsContent div {
    text-align: center;
    padding-bottom: 50px;
}

#objectifsContent div a {
    font-size: 1.2em;
    padding: 10px;
    border-radius: 10px;
    background: rgba(17, 17, 17, 0.92);
    border: 2px solid #176ebc;
    transition: 0.3s ease;
}

#objectifsContent div a:hover {
    color: #ddd;
    background: rgba(255, 255, 255, 0.07);
    border: 2px solid #459deb;
}

        /* ---_RESPONSIVE_TABLETTE_--- */

@media only screen and (max-width: 960px) {
    .responsive_bar {
        margin: auto;
        width: 30%;
    }
    
    header {
        position: fixed;
        height: 150px;
    }
    
    nav {
        width: 100%;
    }
    
    #aProposContent {
        width: auto;
        padding-top: 150px;
    }
    
    article > p {
        margin-bottom: 75px;
    }
    
    #monParcoursContent {
        width: 100%;
        padding-top: 175px;
    }
    #monParcoursContent aside svg {
        width: 50%;
    }
    
    #flex_exp {
        width: 100%;
    }
    
    #flex_exp div {
        margin-top: 132px;
    }

    #flex_exp div:nth-child(2) {
        margin-top: 154px;
    }

    #flex_exp div:nth-child(3) {
        margin-top: 133px;
    }
    
    #objectifsContent {
        width: auto;
        margin-top: 175px;
    }
}

        /* ---_RESPONSIVE_MOBILE_--- */

@media only screen and (max-width: 602px) {
    
    article > p {
        margin-bottom: 70px;
    }
    
    .mentalite_item {
        width: 100%;
        padding: 0 50px 0 50px;
        margin-bottom: 30px;
    }
    
    .mentalite_item img {
        width: 30%;
    }
    
    #monParcoursContent {
        padding-top: 0px;
        margin-top: 50px;
    }
    
    #flex_exp {
        text-align: center;
        width: auto;
    }
    
    #monParcoursContent aside svg {
       width: 200%; 
    }
    
    #flex_exp div {
        margin-top: 140px;
    }

    #flex_exp div:nth-child(2) {
        margin-top: 90px;
    }

    #flex_exp div:nth-child(3) {
        margin-top: 60px;
    }
}