main > section:nth-child(10){
    background-color: #7572B2;
}

#textProcCrea{
    color: white;
    padding: 3.3vw 7vw 0 7vw;
    line-height: 1.5rem;
}

.animTextCrea{
    opacity: 0;
    animation: textProcCrea .5s ease forwards;
}

@keyframes textProcCrea{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.creaBox{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: var(--marge);
    color: white;
}

.creaCol > div{
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
    font-family: 'Spartan', sans-serif;
    padding: 1.2vw 0;
    cursor: pointer;
}

h4{
    padding: 0 3vw;
    font-weight: 400;
    font-size: 1.2rem;
    font-family: 'Spartan', sans-serif;
    padding: 1.2vw 1vw;
    margin-right: 1vw;
    background-color: rgba(0, 0, 0, 0.164);
    border-radius: 25px;
    box-shadow: -1px 5px 8px 1px rgba(0, 0, 0, 0.20);
    border: solid 2px white;
}

.patch{
    color: rgba(255, 255, 255, 0);
}

.colorStart{
    background-color: #ee7185;
    color: #2D233C;
}


/*_______________ JS use __________________*/


.violet{
    background-color: #50b5bb;
    animation: lighting 1s ease;
    color: #2D233C;
}

/* .vert{
    background-color: #5a5989;
    animation: lighting 1s ease;
    color: #dad85b;
} */

.vert{
    background-color: #89c167;
    animation: lighting 1s ease;
    color: #2D233C;
}

.orange{
    background-color: #ee7185;
    animation: lighting 1s ease;
    color: #2D233C;
}

@keyframes lighting{
    0%{
        opacity: 0;
    }    
    100%{
        opacity: 1;
    }
}

/*_____ Responsive 480px -> 959px _____*/

@media screen and (max-width: 959px){
    .creaBox{
        flex-direction: column;
        align-items: flex-start;
    }

    .creaCol > div{
        font-size: 1rem;
        margin-bottom: .8rem;
    }
}
