/*-------------------------------------------------------------
# CSS GLOBAL
-------------------------------------------------------------*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.img-responsive{
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: cover;
}
.text-elipsis-vertical{
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.bg-categories{
    background-color: #f1f7f9;
}
/*-------------------------------------------------------------
# Estilos titulos secciones
-------------------------------------------------------------*/
.section-notices .title-notes h2{
    border-color: #bcbcbc;
    padding-bottom: 0.5rem;
    position: relative;
}
.section-notices .title-notes h2::after{
    content: '';
    background: var(--bs-primary);
    top: 95%;
    position: absolute;
    width: 100px;
    height: 5px;
}
.section-notices .title-notes .border-after-start::after{
    left: 0;
}
.section-notices .title-notes .border-after-end::after{
    right: 0;
}
.section-notices .item-interview{
    cursor: pointer;
}