/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 17 2026 | 23:50:23 */
/*=====================================
    CONTENEDOR
=====================================*/

.clientes-slider{
    position:relative;
    width:100%;
    padding:0 65px;
}

.clientes-embla{
    overflow:hidden;
	height:initial;
}

.clientes-embla-container{
    display:flex;
    align-items:center;
}

.clientes-slide{
    flex:0 0 20%;
    padding:10px 12px;
    box-sizing:border-box;
}

/*=====================================
    CARD
=====================================*/

.cliente-card{
    height:75px;
    background:#fff;
    border-radius:40px;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:8px 18px;
    transition:.35s ease;
    text-decoration:none;
	box-shadow: 5px 5px 0px #D5FF00 !important

}

.cliente-card:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 20px rgba(0,0,0,.18);

}

/*=====================================
    LOGO
=====================================*/

.cliente-card img{

    max-width:100%;

    max-height:45px;

    width:auto;

    height:auto;

    object-fit:contain;

    display:block;

}

/*=====================================
    FLECHAS
=====================================*/

.clientes-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:40px;

    height:40px;

    background:none;

    border:none;

    padding:0;

    cursor:pointer;

    z-index:10;

    transition:.3s;

}

.clientes-arrow img{

    width:100%;

    display:block;

}

.clientes-arrow:hover{

    transform:translateY(-50%) scale(1.1);

}

.clientes-arrow:disabled{

    opacity:.25;

    pointer-events:none;

}

.clientes-prev{

    left:0;

}

.clientes-next{

    right:0;

}

/*=====================================
    RESPONSIVE
=====================================*/

@media(max-width:1024px){

    .clientes-slide{

        flex:0 0 33.333%;

    }

}

@media(max-width:767px){

    .clientes-slider{

        padding:0 40px;

    }

    .clientes-slide{

        flex:0 0 50%;

    }

    .cliente-card{

        height:52px;

        padding:8px 15px;

    }

    .cliente-card img{

        max-height:28px;

    }

}