.prochain {
    position: fixed;
    z-index: 20001;
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 18px;
    box-sizing: border-box;
    background-color: rgba(239, 239, 239, 0.908);
    border-radius: 999px;
    right: 45px;
    bottom: 5px;
    filter: drop-shadow(0px 0px 1px rgba(122, 122, 122, 0.4));

}

.prochain .fleche {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.prochain .fleche--prev {
    display: none;
}

.prochain .fleche img {
    width: 30px;
    display: block;
}

    .Portfoliotexte{
            width: 100vw;
            line-height:26px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
            align-items: start;
            box-sizing: border-box;
            padding-top: 25px;
            padding-left: 45px;
            padding-right: 45px;
        }

   
        .Portfoliotexte p:first-child {
            grid-column: 1 / span 1;
        }

        .Portfoliotexte p:last-child {
            grid-column: 2 / span 2;
        }

        .typo-vingt a.link {
            color: inherit;
            text-decoration: underline;
            transition: color 0.2s ease;
        }
    
        .typo-vingt a.link:hover {
            color: rgb(255, 0, 187);
        }
        
    .carrousel{
            margin-top: 7vh;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: start;
            width: 100%;
            height: auto;
            position: relative;
            overflow: visible;
            z-index: 0;
            box-sizing: border-box;
            padding: 0 45px 15px;
    }

    .projet,
    .projetTrop {
            width: 100%;
    }


    .projetimage{
        width: 100%;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        position: relative;
        border-radius: 20px;
        filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.4));
        margin-bottom: 7px;
    }
    
    /* PROJET IMAGE UN PAR UN  */
    .projet1{
        object-fit: cover;
        height: 100%;
        width: 100%;
    }
    


    @media screen and (max-width: 900px) {
     .Portfoliotexte{
        display: flex;
        margin-top: 0px;
        flex-direction: column;
        gap: 16px;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 15px;
        width: 100%;
     }

     .Portfoliotexte p:first-child,
     .Portfoliotexte p:last-child {
        grid-column: auto;
     }
    }