/* Canvas */
.container{
    display: grid;
    grid-template-columns: repeat(6, 6fr);
    grid-column-gap: 29px;
    margin-bottom: 100px;
}
    .container__last{
        margin-bottom: 80px;
    }
.hello__title{
    grid-column-start: 4;
    grid-column-end: 7;
    grid-row-start: 1;
    grid-row-end: 2;
}

.nom{
    grid-column-start: 5;
    grid-column-end: 7;
    grid-row-start: 0;
    grid-row-end: 1;
}

.post{
    grid-column-start: 5;
    grid-column-end: 7;
    grid-row-start: 0;
    grid-row-end: 1;
}

.hello{
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 3;
}
.moi{
    grid-column-start: 4;
    grid-column-end: 7;
    grid-row-start: 2;
    grid-row-end: 3;
}  
.projets{
    grid-column-start: 2;
    grid-column-end: 6;
    grid-row-start: 1;
    grid-row-end: 2;
}
.stage__title{
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 2;
}
.stage{
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 3;
}
.avion{
    grid-column-start: 4;
    grid-column-end: 6;
    grid-row-start: 2;
    grid-row-end: 3;
}


/* Mise en page */
body{
    font-family: 'Dosis', sans-serif;
    color: #2D2228;
    width: 75%;
    margin: 0 auto;
}

h1{
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 159.3%;
    color: #E36721;
    margin-bottom: 0;
    margin-left: 41px;
}

h2{
    font-size: 82px;
    font-family: 'Josefin Sans';
    margin-bottom: 58px;
    font-weight: 700;
    color: #F8B087;
}

h3{
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 200;
    font-size: 45px;
    color: #E67A3A;
    padding: 0;
    margin: 0;
}


p{
    font-size: 20px;
    line-height: 31px;
    margin-bottom: 33px;
}
.social-link{
    position: fixed;
    list-style: none;
    bottom: 12%;
    left: 5%;
    padding: 0;
}
.social-link li{
    margin-bottom: 10px;
}
.social-link img{
    height: 40px;
}
.stage span{
    color: #E36721;
    font-weight: 600;
}
.moi span{
    color: #E36721;
    font-weight: 600;
}


/* Liens */
.project__lien{
    display: flex;
    flex-direction: row;
}
.project__lien a{
    text-decoration: none;
}
.pos__projets{
    padding-left: 60px;
    color: #E36721;
    margin-bottom: 0;
}
.button{
    position: absolute;
    height: 73px;
    width: 165px;
}
.button__projets{
    width: 210px;
}
.button:before{
    content: "";
    width: 25px;
    height: 2px;
    background: #E36721;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    transition: all 0.3s ease;
}
.button:hover:before{
    width: 40px;
}
.button:after{
    content: "";
    width: 0px;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-color: transparent transparent transparent #E36721;
    position: absolute;
    top: 50%;
    margin-top: -5px;
    left: 24px;
    transition: all 0.3s ease;
}
.button:hover:after{
    left: 40px;
}


/* Liste Projets */
.liste--projets{
    padding: 0;
    display: flex;
  list-style: none;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
  position: revert;


}
    

.liste--projets a{
    color: #2D2228;
    text-decoration: none;
}

.block--projet{
    border-radius: 13px;
    box-shadow: 0px 14px 10px #5d545414;
    margin-bottom: 58px;
    background-color: #fff;
}
.block--projet:hover{
    border-radius: 13px;
    box-shadow: 0px 14px 10px #5d545440;
    margin-bottom: 58px;
}
.block--projet p{
    display: flex;
    justify-content: center;
    font-size: 24px;
}
.block--projet span{
    display: flex;
    justify-content: center;
    font-size: 24px;
}
.block--projet p{
    margin-top: 10px;
    margin-bottom: 5px;
}
.block--projet span{
    font-size: 18px;
    color: #6B7572;
    padding-bottom: 10px;
}

.projet__image{
    border-top-right-radius: 13px;
    border-top-left-radius: 13px;
    width: 195px;
}

/* SVG */
    /* Main */

.line{
    fill: none;
    stroke: #f8b087;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit:10;
    stroke-dasharray: 1000;
    animation : anim 6s ease-in-out infinite;
}

.svg--settings{
    width: 70%;
}

@keyframes anim{
    0%{
        stroke-dashoffset: 1000;
    }
    25%{
        stroke-dashoffset: 0;
    }
    75%{
        stroke-dashoffset: 0;
    }
    100%{
        stroke-dashoffset: -1000;
    }
}

    /* Avion */
.svg--settings__avion{
    stroke-linejoin: round;
    width: 60%;
    display: flex;
    margin: 0 auto;
}



/* Responsive */
@media only screen and (max-width: 1024px) {
    body{
        width: 80%;
    }
    .hello__title{
        grid-column-start: 3;
        grid-column-end: 7;
    }
    .hello{
        grid-column-start: 1;
        grid-column-end: 3;
    }
    .moi{
        grid-column-start: 3;
        grid-column-end: 7;
    }
    .stage__title{
        grid-column-start: 1;
        grid-column-end: 5;
    }
    .stage{
        grid-column-start: 1;
        grid-column-end: 5;
    }
    .avion{
        grid-column-start: 5;
        grid-column-end: 7;
    }
    .container__social{
        display: grid;
        grid-template-columns: repeat(6, 6fr);
        grid-row-gap: 29px;
        grid-column-gap: 29px;
    }
    .grid__social-link{
        grid-column-start: 3;
        grid-column-end: 7;
        grid-row-start: 1;
        grid-row-end: 1;
    }
    .social-link{
        display: flex;
        flex-direction: row;
        position: static;
        list-style: none;
        margin: 0;
    }
    .social-link li{
        margin-right: 10px;
    }
    .liste--projets{
        padding: 0;
        display: flex;
        list-style: none;
        justify-content: space-around;
        flex-wrap: wrap;
    }
}
@media only screen and (max-width: 768px) {
    body{
        width: 80%;
    }
    .hello__title{
        grid-column-start: 1;
        grid-column-end: 7;
    }
    .hello{
        grid-column-start: 3;
        grid-column-end: 5;
        grid-row-start: 2;
        grid-row-end: 3;
    }
    .moi{
        grid-column-start: 1;
        grid-column-end: 7;
        grid-row-start: 3;
        grid-row-end: 4;
    }
    .projets{
        grid-column-start: 1;
        grid-column-end: 7;
    }
    .stage__title{
        grid-column-start: 1;
        grid-column-end: 7;
    }
    .stage{
        grid-column-start: 1;
        grid-column-end: 7;
        grid-row-start: 3;
        grid-row-end: 4;
    }
    .avion{
        grid-column-start: 3;
        grid-column-end: 5;
        grid-row-start: 2;
        grid-row-end: 3;
    }
    .container__social{
        display: grid;
        grid-template-columns: repeat(6, 6fr);
        grid-row-gap: 29px;
        grid-column-gap: 29px;
    }
    .grid__social-link{
        grid-column-start: 1;
    }
    .social-link{
        justify-content: center;
    }
    .social-link{
        display: flex;
        flex-direction: row;
        position: static;
        list-style: none;
        margin: 0;
    }
    .social-link li{
        margin-right: 10px;
    }
}
@media only screen and (max-width: 414px) {
    body{
        width: 80%;
    }
    h2{
        font-size: 45px;
    }
    .hello{
        grid-column-start: 2;
        grid-column-end: 6;
    }
    .avion{
        grid-column-start: 2;
        grid-column-end: 6;
    }
}