.clientes{
    height: auto;
    width: 100%; 
    display: flex;
    flex-direction: column;  
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;

}
.clientes ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-content:space-around;
    height: auto;
    
}
.clientes ul li{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}
.cliente_h4{
    display: block;
    margin: auto;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 110%;
    font-weight: 600;
    color: blueviolet;
    text-align: center;

}
.clientes_logos{
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:center

}

.logo_cliente{
    height: auto;
    width: 50%;
    margin: 1rem;

}


@media (min-width:800px){
    .cliente_h4{
     
        font-size: 2rem;
        margin: 0 4rem 0 4rem;
    
    }
    .clientes ul{
        margin: 0 10rem 0 10rem;
    }
  
    .logo_cliente{
        height: auto;
        width: 60%;
        margin: 10%;
    
    }
}