.div-avis{
    width: 100%;
    display: flex;
    justify-content: center;
}

.div-avis.div-avis:nth-child(2n+1){
    background: #eee;
    animation: animAvisImpair 1s ease;
    animation-fill-mode: forwards;
}

.div-avis.div-avis:nth-child(2n){
    animation: animAvisPair 1s ease;
    animation-fill-mode: forwards;
}


@keyframes animAvisImpair{
    0%{transform: translateX(-1500px);}
    100%{transform: translateX(0px); opacity: 1;}
}

@keyframes animAvisPair{
    0%{transform: translateX(1500px);}
    100%{transform: translateX(0px); opacity: 1;}
}


.div-avis-solo{
    width: 70%;
    padding-top: 30px;
    padding-bottom: 30px;
/*
    border-top: 1px black solid;
    border-bottom: 1px black solid;
*/
}

.nom-client{
    margin: 0;
    text-transform: uppercase;
    color: #555;
    font-size: 20px;
    font-weight: bold;
}

.lieu-client{
    margin: 0;
    color: #01a1df;
    padding-bottom: 20px;
    font-weight: bold;
}

.avis-client-text{
    margin: 0;
    text-align: justify;
    color: #000;
}

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

    .decoration-titre-page-secondaire{
        width: 50px;
    }
    
    .titre-page-secondaire{
        font-size: 20px!important;
    }
    
}