#clientes {
    padding: 50px 0px;
    background-color: white;
}

#clientes h2{
    font-size: 28px;
    margin-bottom: 15px;
}

#clientes p{
    color: #243B87;
    font-size: 22px;
}

#clientes .clientes-carousel {
    max-width: 1041px;
    margin-top: 50px;
}

#clientes .clientes-carousel .slick-track {
    align-items: center; /* Vertically centers the items */
    justify-content: center; 
}

#clientes .clientes-carousel .cliente{
    text-align: center;
    height: inherit;
}

#clientes .clientes-carousel .cliente .imagem{
    width: 180px;
    height: 200px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 50%;
}

#clientes .clientes-carousel .cliente .titulo{
    color: #243B87;
    font-family: 'FontSensationBold' !important;
    margin-top: 15px;
}

#clientes .clientes-carousel .cliente .imagem.auto{
    background-size: auto;
}

@media screen and (max-width: 1024px){
    #clientes .clientes-carousel{
        width: 100%;
    }
    #clientes .clientes-carousel .slick-prev:before,
    #clientes .clientes-carousel .slick-next:before{
        color: white;
    }
    #clientes .clientes-carousel .slick-prev{
        left: 15px;
        z-index: 2;
    }
    
    #clientes .clientes-carousel .slick-next
    {
        right: 15px;
        z-index: 2;
    }
}