.accueil-avis-container {
    width: 100%;
    height: fit-content;
    background-color: #76C1B5;
   padding-top: 1rem;
   padding-bottom: 1rem;
    
}

.accueil-avis {
    margin: auto;
    width: 100%;
    height: fit-content;
     max-width: 1450px;
display: flex;
flex-direction: column;
align-items: center;

}

.accueil-avis h2 {
    font-size: 25px;
    font-weight: bold;
    box-sizing: border-box;
    margin-bottom: 1rem;
    text-align: center;
}

.avis-list {
    width: 100%;
    height: fit-content;
    display: flex;
 
 justify-content: center; 

    flex-wrap: wrap;
    gap: 1rem;
}

.avis-single {
width: 45%;
    border: 1px solid #F7F7F7;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.avis-titre {
    font-weight: bold;
}


.avis-note {
    font-size: 1.5rem;
    color: #FFD700;
    margin-top: 10px;
}

.etoile.vide {
    color: #ccc;
}


/** For mobile devices **/
@media (max-width: 767px) {
    
    .avis-single {
width: 80%;
    
}
}