

.tarifs{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 25%;
    margin-right: 25%;
    font-family: 'Nunito', sans-serif;
    background-color: #f2f2f2;
    border-radius: 2em 2em 0em 0em;
}
.tarifs h2{
    color: #0f83cc;
    text-align: center;

}

.categorieInscription{
    font-size: 20px;
    text-align: left;
    background-color: #0f83cc;
    width: 99%;
    color: #d8dbdc;
    padding: 0;
    margin: 0;
    padding-top: 0.5%;
    padding-bottom: 0.5%;
    padding-left: 1%;
}

.tarifs div div div{
    display: flex;
    justify-content: space-between;
    padding-top: 0.5%;
    padding-bottom: 0.5%;
    padding-left: 1%;
    padding-right: 1%;
}

.tarifs div div:nth-child(even){
    background-color: #87c2e6;
}

.tarifs div div:nth-child(odd){
    background-color: #f2f2f2;
}

p{
    color: #58595B;
    margin: 0;
    padding: 0;
}

.nomTarif::first-letter{
    text-transform: uppercase;
}


.infoInscription{
    margin-top: 3%;
    margin-bottom: 3%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.infoInscription div{
    margin-top: 1%;
    display: flex;
    width: 25%;
    justify-content: space-around;
}

.infoInscription div a{
    text-decoration: none;
    background-color: #ffa202;
    padding: 3%;
    color: dimgray;
    font: bold 14px "Nunito", sans-serif;
    border-radius: 10% 20% / 10% 40%;
    transition: all 0.7s;
}

.infoInscription div a:hover{
    border-radius: 40% 90% / 50% 10%;
    color: grey;
    background-color: #ffdb0f;
}

.infoInscription p{
    width: 32%;
    text-align: center;
    font-family: 'Nunito';
    color: #666666;
}



@media screen and (max-width: 1280px){
    .infoInscription p{
        width: 85%;
    }
    .infoInscription div{
        width: 40%;
    }
}

@media screen and (max-width: 750px){
    .infoInscription div{
        width: 70%;
    }
    
    .tarifs{
        margin-left: 10%;
        margin-right: 10%;
    }
}

@media all and (max-device-width: 480px)
{
    .infoInscription div{
        width: 100%;
    }

    .tarifs{
        margin-left: 2%;
        margin-right: 2%;
    }
}