
#header .container{
    width: 100vw;
    display: flex;
    flex-direction: row;
    min-height: 90vh;
    justify-content: space-between;
    align-items: center;
    margin-top: 0px;
    margin-bottom: 20px;
}

#header .container .left{
    width: 35%;
    color: #E7F0F4;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    transform: translateY(-70px);
    margin-left: 10vw;
    margin-right: 80px;
    z-index: 1;
}

#header .container .left img{
    align-self: center;
    margin-top: 60px;
}

#header .container .left h1{
    margin-bottom: 30px;
    font-size: 60px;
    font-family: 'Shippori Antique B1', sans-serif;
    line-height: 60px;
}

#header .right{
    width: 100%;
}

#header .right img{
    width: 100%;
    float: right;
}

@media screen and (max-width:900px){
    #header .container{
        flex-direction: column;
        flex : 1 0 0;
        width: 80%;
    }

    #header .right{
        position: absolute;
        top: 90px;
        right: 0;
        width: 350px;
    }

    #header .container .left{
        width: 100%;
        margin-top: 150px;
        margin-left: 75px;
    }

    #header .container .left h1{
        font-size: 40px;
    }

    .logo-petit{
        display: flex;
        align-self: flex-start;
    }
}

footer{
    display: flex;
    flex-direction: row;
    width: 100vw;
    background-color: #0B181F;
    justify-content: space-evenly;
    padding: 30px 0;
    box-sizing: border-box;
    align-items: center;
    color: #E7F0F4;
}

footer img{
    width: 30px;
}

footer .arrow{
    transform: rotate(180deg);
}

@media screen and (max-width:1000px){

    footer{
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        box-sizing: border-box;
        height: 150px;
    }
}


















/*   PARTIE PROJET   */

#projets{
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

h2{
    font-family: 'Shippori Antique B1';
    color: #E7F0F4;
    font-size: 2em;
    margin-left: 100px;
    margin-bottom: 20px;
}

@media screen and (max-width:1000px){
    h2{
        margin-left: 20px;
    }
}

#projets .container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100vw;
    height: auto;
}

#projets .sec{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100vw;
        height: auto;
        margin-bottom: 180px;
}

#projets .projet-large{
    width: 100vw;
    min-height: 300px;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

#projets img{
    margin-right: 20px;
    margin-bottom: 20px;
}

#projets .projet-large .infos{
    color:#E7F0F4;
    display: flex;
    flex-direction: row;
    width: 70vw;
}

#projets .title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
    align-items: center;
}

#projets .nom::after{
    width: 80px;
    border-top: #E7F0F4 1px solid;
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
}

#projets .nom{
    font-family: 'Shippori Antique B1';
    font-size: 1.8em;
    margin-bottom: 20px;
    position: relative;
    line-height: 28px;
}

#projets button{
    border:none;
    background-color: #E7F0F4;
    color: #0C1F28;
    font-family: 'Montserrat';
    width: 120px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 0 10px 0 10px;
    align-self: flex-start;
    margin-top : 20px;
}

#projets .projet-fin{
    width: 50%;
    min-height: 300px;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

#projets .projet-fin::after{
    width: 80px;
    border-right: #0C1F28 20px solid;
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0;
}

#projets .projet-fin img{
    margin-right: 20px;
    margin-bottom: 20px;
}

#projets .projet-fin .infos{
    color:#E7F0F4;
    display: flex;
    flex-direction: row;
    width: 40vw;
}

@media screen and (max-width:1000px){
    #projets .projet-fin{
        width: 100vw;
        margin-bottom: 20px;
    }

    #projets .projet-fin .infos{
        width: 75vw;
        margin: 40px 0px;
    }

    #projets .projet-large .infos{
        width: 75vw;
        margin: 40px 0px;
    }

    #projets .title{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }


    #projets .infos img{
        width: 60px!important;
    }

    #projets .nom::after{
        bottom: -12px;
    }
}