/**************
* PRESTATIONS *
**************/


.prestations{
    margin: 6rem 10%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.prestation{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    transition: all .3s;
}
.prestation__content{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.prestation__picto{
    width: 100px;
}
.prestation ul li{
    position: relative;
    margin-left: 1.5rem;
}
.prestation ul li::before {
    position: absolute;
    content: "\002022";
    color: var(--secondaire);
    font-weight: bold;
    font-size: 32px;
    line-height: 0.7;
    margin-left: -1.5rem
}

/* Responsive desktop */
@media screen and (min-width: 1000px) {
    .prestations{
        margin: 0 20%;
        margin-top: 6rem;
        margin-bottom: 15rem;
    }
    .prestation{
        flex-direction: row;
        gap: 6.25rem;
    }
    .prestation__picto{
        min-width: 180px;
    }
}