.projet-description p{
    font-size: 22pt;
}

.projet{
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    background-color: var(--color-bg);
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    position: sticky;
    top: bottom;
}

.projet:nth-child(odd){
    flex-direction: row-reverse;
}

.projet-thumbnail{
    width: 30%;
    height: calc(100vh - 80px);
    padding: 0px 20px;
    position: sticky;
    top: 80px;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.projet-thumbnail img{
    width: 100%;
    height: auto;
}

.projet-description{
    width: 70%;
    padding: 50px 0px;
    overflow: hidden;
    /* max-height: calc(100vh - 80px); */
    display: flex;
    flex-flow: column wrap;
    align-items: center;
}

.projet-description h3, .projet-description h2{
    width: 100%;
}

.projet-description *{
    margin: 40px 0;
}

.projet-description img{
    aspect-ratio: 2 / 1;
    width: 100%;
    object-fit: cover;
}

.img-phld{
    width: 240px;
    height: auto;
    aspect-ratio: 2 / 1;
    background-color: var(--color-main);
}

.projet-imgset{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-flow: row nowrap;
}

.projet-imgset img{
    width: auto;
    max-width: 30%;
    aspect-ratio: unset;
}

@media screen and (max-width: 480px){
    .projet{
        flex-flow: column wrap !important;
    }
    .projet-description{
        width: 100%;
    }
    .projet-thumbnail{
        width: 100%;
        height: fit-content;
        position: relative;
    }
}