.section-tarifs {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.section-tarifs h2 {
    font-size: 30px;
    margin-top: 90px;
    margin-bottom: 0;

}

.tarifs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 50px;
    width: 90vw;
}

.tarif {
    flex-basis: 30%;
    border: 2px solid #e6aa68;
    padding: 0 20px 10px 35px;
    margin: 25px;
    /* text-align: center; */
    /* background-color: white; */
}

.title-tarif {
    color: #e6aa68;
    font-size: 24px;
    border-bottom: 2px solid #e6aa68;
    font-weight: bold;
    margin: 25px 0;
}

.title-tarif h3 {
    margin: 15px 0px;
}

.tarif h2 {
    color: #333;
}

.tarif ul {
    /* list-style-type: none; */
    padding: 0;
}

.tarif ul li {
    margin-bottom: 10px;
}

.prix-angled {
    transform: rotate(-20deg);
    background-color: #fff;
    height: 50px;
    padding: 10px;
    color: #e6aa68;
    font-size: 40px;
}

.logo-tarif {
    transform: rotate(20deg);

}

.color-puce {
    color: #e6aa68;
    font-weight: bold;
}

@media screen and (max-width: 960px) {

    .tarifs {
        flex-direction: column;
    }
    .prix-angled {
        font-size: 25px;
        width: 30vw;

    }

}