 .project{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 200px 5%;
    font-size: 1.2rem;
    font-weight: 300;
 }

 h1 {
    width: 100%;
    font-size: 6rem;
    font-weight: 600;
    margin-bottom: 100px;
    font-family: 'poppins', sans-serif;

 }

 .project-info{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 36px;
    border-bottom: #969696 solid 1px;
 }

 .info-left,.info-right{
    width: 50%;
 }


 .info-left{
    display: flex;
    align-items: center;
}

.info{
    width: 50%;
    display: flex;
    flex-direction: column;
    
}

.info-title{
    font-size: 1.3rem;
    color: #969696;
    font-weight: 300;
    margin-bottom: 8px;
}

.info-text{
    font-size: 1.2rem;
    font-weight: 300;
}

.info-right{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0px 16px;
}
.info-right p{
    margin: 8px 0px;
    border: solid black 1px;
    padding: 12px 24px;
    text-wrap: nowrap;
    border-radius: 31px;
    font-size: 1.2rem;
    font-weight: 300;
}

.project-overview{
    display: flex;
    padding: 100px 0;
}

.overview-left,.overview-right{
    width: 50%;
}

.project h2{
    color: #969696;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 1.5rem;
    font-weight: 200;
}

.overview-right p{
    line-height: 1.5rem;
    letter-spacing: 0px;
}

.scroll {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
.scroll img {
  position: absolute;
  left: 0;
  top: -30%;      /* = BLEED en haut */
  width: 100%;
  height: 160%;   /* 100% + 2*BLEED -> ici 15% + 15% */
  object-fit: cover;
  object-position: center;
  will-change: transform;
  pointer-events: none;
}

.image-container{
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.image-container .scroll{
    width: 50%;
    height: 60vh;
}


.rating{
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 50px;
}

.rating-image{
    width: 25%;
    height: 60vh;
}
.rating-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  object-position: center;
}

.rating-text{
    width: 50%;
    padding: 20px;
    
}

.avis{
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 2px;
    line-height: 1;
}

.rating-name{
    font-family: 'poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 24px;
}

.work{
    font-family: 'poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 200;
    color: #969696;
}

.see-all{
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 24px;
}
a.btn{
    width: 250px;
    text-align: center;
}


.scroll h2{
    z-index: 9;
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translate(-50%, 0);
    color: black;
    font-weight: bold;
    background-color: #FFFEFB;
    padding: 15px 20px;
    -webkit-box-shadow: 0px 0px 24px -12px #000000; 
box-shadow: 0px 0px 24px -12px #000000;
font-size: 2rem;
}

.see-all .btn-white{
    border: solid black 1px;
}

@media (max-width: 747px) {

    .project{
        padding: 150px 5%;
    }

    h1{
        font-size: 3.5rem;
        margin-bottom: 50px;
    }
    .project-info{
        flex-direction: column-reverse;
    }
    .info-left, .info-right{
        width: 100%;
    }

    .info-right p{
        font-size: 1rem;
    }

    .info-left{
        margin-top: 24px;
        align-items: flex-start;
        justify-content: center;
    }

    .project-overview{
        flex-direction: column;
        padding: 50px 0;
    }
    .overview-left, .overview-right{
        width: 100%;        
    }
    .project h2{
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .scroll{
        height: 60vh;
    }



    .image-container{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.image-container .scroll{
    width: 100%;
    height: 60vh;
}






.rating{
    flex-direction: column-reverse;
}

.rating-image{
    width: 100%;
}

.rating-text{
    width: 100%;
    padding: 0;
    
}

.avis{
    font-size: 1.5rem;
}

.rating-name{
    font-family: 'poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 24px;
}

.work{
    font-family: 'poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 200;
    color: #969696;
}

.see-all{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
a.btn{
    width: 250px;
    text-align: center;
}

}