.hr {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 60%;
    height: 0.2rem;
    background-color:rgb(5, 123, 84);
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.titre {
    display: flex;
    justify-content: center;
    font-size: 4.5rem;
    font-weight: bold;
    padding-bottom: 2rem;
    margin: 0 auto;
}

.tarifs {
    display: flex;
    margin: 0 auto;
    width: 60%;
    height: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.tarifs1 {
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tarifCard {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 0;
    align-items: stretch;
    background-color: rgb(94, 188, 123);
    border-radius: 18px;
    overflow: hidden;
}

.pecheur {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 1rem;
    background-color: rgb(87, 191, 97);
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 0;
}

.tarifTitle {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0;
}

.tarifSub {
    font-size: 1.2rem;
    margin: 0.2rem 0 0;
}

.tarifPics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.8rem;
    border-radius: 10px;
}

.tarifPic {
    display: block;
    width: 90px;
    height: auto;
    border-radius: 10px;
}

.prixJour {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    background-color: transparent;
    width: 100%;
    height: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.tarifValidite {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgb(67, 170, 83);
    border-radius: 14px;
    padding: 0.8rem 1rem;
    font-weight: bold;
}

.tarifListe {
    margin-top: 1rem;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    padding: 1rem;
    text-align: center;
}

.tarifListe p {
    margin: 0.25rem 0;
}

.tarifListeTitre {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.condition {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
    font-size: 1rem;
    width: 50%;
    margin: 0 auto;
    color: rgb(5, 123, 84) ;
}

.visiteurs {
    display: flex;
    font-size: 1rem;
    background-color: rgb(94, 188, 123);
    color: red;
    font-size: 1.2rem;
    width: 40%;
    height: 14rem;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    clip-path: polygon(50% 0, 50% 0, 100% 50%, 50% 100%, 0% 50%);
}

.reglement {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 55%;
    height: auto;
    gap: 3rem;
    margin-top: 3rem;
}

.reglement p {
    padding-left: 2rem;
}

.article {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    padding-left: 1rem;
    background-color: sandybrown;
    border: 2px solid rgb(5, 123, 84);
    border-radius: 5px;
}

.articleNum {
    display: flex;
    font-size: 2.8rem;
    font-weight: bold;
    background-color: rgb(5, 123, 84);
    color: white;
    width: 4rem;
    height: auto;
    border-radius: 50%;
    justify-content: center;
    margin-top: -2rem;
    margin-left: -2.5rem;
}


@media only screen and (max-width: 768px) {

    .titre {
        text-align: center;
        font-size: 3rem;

    }

    .tarifs {
        width: 90%;
    }

    .hr {
        width: 80%;
    }

    .tarifs1 {
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .tarifCard {
        grid-template-columns: 100%;
        gap: 0;
    }

    .pecheur {
        border-radius: 0;
    }

    .prixJour {
        height: auto;
        border-radius: 0;
    }

    .tarifPic {
        width: 80px;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .condition {
        width: 80%;
        margin: 0 auto;
    }

    .visiteurs {
        height: 10rem;
        width: 95%;
        text-align: center;
        clip-path: polygon(50% 0, 50% 0, 100% 50%, 50% 100%, 0% 50%);
    }

    .reglement {
        width: 80%;
       
    }

    .article {
        width: 100%;
        padding: 0;
    }

    .article p {
        padding-left: 0.5rem;
    }

    .articleNum {
        margin-left: -2rem;
    }
}