@media (orientation: portrait) and (max-width: 450px) {
.classe-mobile{ 
    display: flex ;
    flex-direction:column-reverse;
    }
}

@media (orientation: landscape) and (max-width : 992px){
.classe-mobile{
     display: flex ;
    flex-direction: row-reverse;
    } 
    
}


/* ============================================================
   TABLETTES
   ============================================================ */

/* Tablette en Landscape (Paysage) */
@media screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
 .section-responsvie-temoignage{
     left :0px ;
 }
}