.cardd-container {
    width: 100%; /* Utilisez 100% de la largeur de son parent */
    max-width: 300px; /* Définissez une largeur maximale pour chaque carte */
    height: 300px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.cardd {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.cardd .front-cont {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1)
}

.cardd .front-cont .t {
    font-size: 23px;
    font-weight: 700;
    opacity: 1;
    background: #193B1D;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1)
}

.cardd .cont {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    background: #E0C62B;
    color: #e8e8e8;
    padding: 20px;
    line-height: 1.5;
    border-radius: 5px;
    pointer-events: none;
    transform: translateX(-96%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.cardd .cont .heading {
    font-size: 23px;
    font-weight: 700;
}

.cardd:hover .cont {
    transform: translateY(0);
}

.cardd:hover .front-cont {
    transform: translateX(-30%);
}

.cardd:hover .front-cont .t {
    opacity: 0;
}

.tableau{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 50px;
    margin-top: 50px;
    justify-items: center;
}

@media screen and (max-width: 768px) {
    .tableau {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Styles spécifiques pour les écrans de très petite taille */
@media screen and (max-width: 480px) {
    .tableau {
        grid-template-columns: repeat(1,1fr);
    }
}

.rien{
    text-decoration: none;
    color: white;
}

.loader-container .loader1-container {
    width: 50%;
    align-self: center;
    display: flex;
    justify-content: center;
    justify-self: center;
justify-items: center;
    align-items: center;
    align-content: center;
}

.counter {
    align-items: center;
    display: flex;
    justify-self: center;
    justify-content: center;
}

.loader {
    font-size: 48px;
    color: #333;
    font-weight: bold;
}

.counter p {
    margin-right: 5px; /* Espacement entre le symbole "+" et le compteur */
}

.cote {
    align-self: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;

}

.vert {
    background-color: #4A9151;
    margin-bottom: 60px;
}

.centre {
    display: flex;
}

.p {
    text-align: center;
    margin-bottom: 20px;
}

.popup {
    display: flex;
    position: relative;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 5px;

}

.popup-text {
    margin: 0;
    align-content: center;
    justify-content: center;
    justify-items: center;
    justify-self: center;
    align-items: center;
    align-self: center;
    text-align: center;
}