


.nav_header{
	height: 150px;
    background-color: black;
    margin: -20px 0px;
    padding: 35px;
}

.contact{
    color: black;
}

.project{
    margin-left: auto;
    margin-right: auto;
    
    display: flex;
    flex-direction: column;
}

.card_project{
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 30px 100px;
}

.one a, .three a, .five a{
    color: black;
}

.two a, .four a, .six  a{
    color: white;
}
.card_image{
    display: flex;
    width: 45%;
    padding: 20px 30px;
    
}

img{
    width: 100%;
}

.card_text{
    display: flex;
    flex-direction: column;
    padding: 0 40px;
    width: 45%;
}

h2{
    margin-top: 0px;
    font-family: Advent Pro;
    font-size: 35px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 0.3em;
    text-align: left;

}

.description_project{
    font-family: Anonymous Pro;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;

}

.tag_project{
    text-transform: uppercase;
    font-family: Advent Pro;
    font-size: 18px;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: left;

}



/* Background et color différents en foction de la card */
.one, .five{
    background-color:#F2CB05;
    color: black;
}

.two, .four, .six{
    background-color:black;
    color: white;
}

.three{
    background-color: #D9D9D9;
    color: black;
}

/* direction différente en fonction de la card */

.two, .four, .six{
    flex-direction: row-reverse;
}


/* postionnement diférent pour le footer pour cette page spécifiquement */

footer{
    position: static;
    padding: 40px 0;
}

/* point de rupture */

@media screen and (max-width: 1250px){
    h2{
        font-size: 30px;
        line-height: 35px;
    }
}

@media screen and (max-width: 980px){
    h2{
        font-size: 20px;
        line-height: 20px;
    }
    p{
        font-size: 15px;
    }
    .card_project{

        padding: 30px 40px;
    }
}

/*  format tablette */

@media screen and (max-width: 780px){
    .card_project{
        flex-direction: column;
        align-items: center;
        gap: 20px;

    }

    .card_image{
        width: 85%;

        
    }
    

    .card_text{

        width: 85%;

    }

}

@media screen and (max-width: 580px){
.contact{
    display : none;
  }
  

}
/* ANCIEN CODE
.carousel{
    margin: 25px;
}

.carousel-items {
    
    display: flex;
    overflow-x: scroll;
    padding: 10px ;
    scroll-snap-type: none;
}
.carousel-item {
    background-color: #D9D9D9;
    border-radius: 20px;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 450px;
    width: 50%;
    gap: 10px;
    margin-right: 45px;
    padding: 10px ;
    scroll-snap-align: start;
}
.card-title{
    color:  #E57F08;
    text-align: center;
}

img{
    width: 100%;
    height:300px;
    border: #1F1F1F solid 1px;
}
ul{
    margin-left: 25px;
}

@media screen and (max-width: 780px){
    .carousel{
        margin: 0px;
    }

    .carousel-item {
        flex-basis: 280px;
    }

    .card-title{
        font-size: 18px;
    }

    .card-content{
        font-size: 14px;
    }
  } */