/* ---------------- *\
        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: 50px;
    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 {
    width: 100%;
    margin-top: 100px;
    height: 40px;
    line-height: 40px;
    background: rgba(17, 17, 17, 0.92);
    text-align: center;
}

footer a {
    text-transform: none;
}

/* ---------------- *\
     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%;
}

#web p {
    text-align: center;
    color: #ddd;
    margin-bottom: 40px;
}

#web {
    display: flex;
    flex-direction: column;
    width: 960px;
}

.item_web {
    width: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 100px;
}

.item_web iframe {
    width: 960px;
    height: 800px;
    background: #fff;
    
}

.item_web_1 img {
    height: 974px;
}

.item_web_2 img {
    height: 1331px;
}

        /* ---_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;
    }
    
    #web {
        width: 690px;
        margin: auto;
    }
    
    #web iframe {
        width: auto;
    }
    
    .item_web_1 img {
        width: 100%;
        height: 100%;
    }
    
    .item_web_2 img {
        width: 100%;
        height: 100%;
    }
    
    footer {
        
    }
}

        /* ---_RESPONSIVE_MOBILE_--- */

@media only screen and (max-width: 602px) {
    
    #aProposContent {
        padding-top: 200px;
    }
}