/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 27 2026 | 16:40:28 */
/*=====================================
    CONTENEDOR
=====================================*/

.equipo-slider{
    position:relative;
    width:100%;
    padding:0 65px;
}

.equipo-embla{
    overflow:hidden;
}

.equipo-embla-container{
    display:flex;
}

.equipo-slide{
    flex:0 0 25%;
    padding:0 15px;
    box-sizing:border-box;
}

/*=====================================
    CARD
=====================================*/

.equipo-card{
    text-align:center;
    width:100%;
}

/*=====================================
    FOTO
=====================================*/

.equipo-foto{
    width: 200px;
    height: 200px;
    margin:0 auto 20px;
    border-radius:50%;
    overflow:hidden;
    background:#e5e5e5;
}

.equipo-foto img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:.35s;
}

.equipo-card:hover .equipo-foto img{
    transform:scale(1.05);
}

/*=====================================
    NOMBRE
=====================================*/

.equipo-nombre{
        margin: 0;
    font-size: 24px !important;
    font-weight: 100 !important;
    text-transform: uppercase;
    line-height: 1.2 !important;
    color: #2A2A2A;
    font-family: "Anton", sans-serif !important;
}

/*=====================================
    CARGO
=====================================*/

.equipo-cargo{
    margin-top:6px;
    font-size:14px;
    line-height:1.4;
    color:black;
	font-weight:500 !important;
}

/*=====================================
    FLECHAS
=====================================*/

.slider-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    background:none;
    border:none;
    cursor:pointer;
    padding:0;
    transition:.3s;
    z-index:20;
}

.slider-arrow img{
    width:100%;
    display:block;
}

.slider-arrow:hover{
    transform:translateY(-50%) scale(1.08);
}

.slider-arrow:disabled{
    opacity:.25;
    pointer-events:none;
}

.equipo-prev{
    left:0;
}

.equipo-next{
    right:0;
}

/*=====================================
    TABLET
=====================================*/

@media(max-width:1024px){

    .equipo-slide{
        flex:0 0 33.333%;
    }

    .equipo-foto{
        width:150px;
        height:150px;
    }

}

/*=====================================
    MOBILE
=====================================*/

@media(max-width:767px){

    .equipo-slider{
        padding:0 40px;
    }

    .equipo-slide{
        flex:0 0 50%;
    }

    .equipo-foto{
        width:130px;
        height:130px;
    }

    .equipo-nombre{
        font-size:16px;
    }

    .equipo-cargo{
        font-size:13px;
    }

}

@media(max-width:480px){

    .equipo-slide{
        flex:0 0 100%;
    }

}