/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 15 2026 | 20:01:47 */
/*=====================================
    CONTENEDOR
=====================================*/

.servicios-slider{
    position:relative;
    width:100%;
    padding:0 65px;
}

.embla{
    overflow:hidden;
}

.embla__container{
    display:flex;
    margin:0 -12px;
}

.embla__slide{
    flex:0 0 33.333%;
    padding:0 12px;
    box-sizing:border-box;
}

/*=====================================
    CARD
=====================================*/

.servicio-card{
    display:flex;
    flex-direction:column;
    text-decoration:none;
    color:#fff;
    /*height:100%;*/
    min-height:560px;
    transition:.35s;
	text-decoration:none !important;
	transform: scale(0.98);
}

.servicio-card:hover{
    transform:scale(1);
}

.is-gray{
    background:#313131;
}

.is-blue{
    background:#101EC5;
}

/*=====================================
    CONTENIDO
=====================================*/

.servicio-content{
    padding:32px;
}

.servicio-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
}

.servicio-title{
    margin:0;
    line-height:.92;
    text-transform:uppercase;
    letter-spacing:-.5px;
    color:#fff !important;
    max-width:75%;
}

.servicio-icon{
width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: #ccff00;
    border-radius: 100%;
    padding: 19px;

}

.servicio-icon img{
    width:100%;
    height:100%;
    display:block;
    transition:.35s ease;
}


.servicio-card:hover .servicio-icon img{
    transform:rotate(45deg);
}

.servicio-divider{
    height:1px;
    background:rgba(255,255,255,.15);
    margin:26px 0;
}

.servicio-description{
    color:#F1F1F1;
    font-size:20px;
    line-height:1.6;
}

.servicio-description p{
    margin:0;
}

/*=====================================
    IMAGEN
=====================================*/

.servicio-image{
    /*margin-top:auto;*/
    overflow:hidden;
	padding: 20px;
}

.servicio-image img{
    display:block;
    width:100%;
    height:270px;
    object-fit:cover;	
}


/*=====================================
    FLECHAS
=====================================*/
/*==========================
FLECHAS
==========================*/

.slider-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:40px;
    height:40px;
    border:none;
    background:transparent !important;
    padding:0;
    cursor:pointer;
    z-index:20;
}

.slider-prev{
    left:-5px;
}

.slider-next{
    right:-5px;
}

.slider-arrow span{
    display:block;
    width:0;
    height:0;
}

/* Flecha izquierda */

.slider-prev span{

    border-top:18px solid transparent;
    border-bottom:18px solid transparent;
    border-right:26px solid #D5FF00;

}

/* Flecha derecha */

.slider-next span{

    border-top:18px solid transparent;
    border-bottom:18px solid transparent;
    border-left:26px solid #D5FF00;

}

.slider-arrow:hover{
    transform:translateY(-50%) scale(1.15);
}

.slider-arrow:disabled{
    opacity:.25;
    pointer-events:none;
}
/* Flecha derecha */

.slider-next span{

    border-top:18px solid transparent;
    border-bottom:18px solid transparent;
    border-left:26px solid #D5FF00;

}

.slider-arrow:hover{
    transform:translateY(-50%) scale(1.15);
}

.slider-arrow:disabled{
    opacity:.25;
    pointer-events:none;
}
/*=====================================
    RESPONSIVE
=====================================*/

@media(max-width:1024px){

    .embla__slide{
        flex:0 0 50%;
    }

    .servicio-title{
        font-size:46px;
    }

}

@media(max-width:767px){

    .servicios-slider{
        padding:0 15px;
    }

	.servicio-icon{
		width: 50px;
    height: 50px;
	}
    .embla__slide{
        flex:0 0 100%;
    }

    .servicio-card{
        min-height:auto;
    }

    .servicio-content{
        padding:24px;
    }

    .servicio-title{
        font-size:36px;
    }

    .servicio-description{
        font-size:16px;
    }

    .servicio-image img{
        height:220px;
    }

}