    .breadcrumb{
        display:flex;
        flex-wrap:wrap;
        list-style:none;
        padding:10px 0;
        margin:0 0 15px 0;
        background:none;
        font-size:14px;
    }

    .breadcrumb-item a{
        color:#7A0019;
        text-decoration:none;
    }

    .breadcrumb-item + .breadcrumb-item::before{
        content:"›";
        padding:0 8px;
        color:#999;
    }

    .breadcrumb-item.active{
        font-weight:bold;
        color:#333;
    }

    .modd{
        width:100%;
        max-width:1400px;
    }
/* FILA */
.hubx .row{
    display:flex;
    flex-wrap:wrap;
}

/* COLUMNA */
.hubx .col-sm-6,
.hubx .col-md-3{
    display:flex;
    margin-bottom:25px;
}

/* TARJETA */
.hubx-card{
    width:100%;
    display:flex;
    flex-direction:column;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(122,0,25,.12);
    box-shadow:0 14px 34px rgba(15,23,42,.10);
    transition:.3s;
    min-height:460px;   /* ALTURA FIJA */
    height:460px;       /* TODAS IGUALES */
}

.hubx-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(15,23,42,.18);
}

/* IMAGEN */
.hubx-media{
    height:220px;
    overflow:hidden;
    flex-shrink:0;
}

.hubx-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.hubx-card:hover .hubx-media img{
    transform:scale(1.08);
}

/* CUERPO */
.hubx-body{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:22px;
}

/* TITULO */
.hubx-h{
    font-size:18px;
    font-weight:800;
    color:#111827;
    min-height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

/* DESCRIPCION */
.hubx-p{
    color:#6b7280;
    font-size:14px;
    line-height:1.5;
    min-height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

/* BOTON */
.btn-uaeh{
    width:100%;
    border-radius:14px;
    padding:12px;
    font-weight:700;
    background:linear-gradient(135deg,#7A0019,#520011);
    color:#fff !important;
    text-decoration:none;
    text-align:center;
    margin-top:15px;
}

.btn-uaeh:hover{
    color:#fff;
    text-decoration:none;
}

/* TABLET */
@media(max-width:991px){

    .hubx-card{
        min-height:430px;
        height:430px;
    }

    .hubx-media{
        height:200px;
    }
}

/* CELULAR */
@media(max-width:767px){

    .hubx-card{
        height:auto;
        min-height:auto;
    }

    .hubx-media{
        height:190px;
    }

    .hubx-h,
    .hubx-p{
        min-height:auto;
    }
}		
