body {
    min-height: 100vh;
    background-color: #fff;
    position: relative;
}

#barra-navegacion{
    background-color: #fff;
    position: relative;
    &::after{
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 4px;
        background-color: #A3CB38;
    }
}

#barra-navegacion img {
    height: 4rem;
    width: auto;
}

#barra-navegacion .nav-item {
    padding: 0 .25rem;
}

#barra-navegacion .nav-item>.nav-link {
    color: #000;
    font-weight: 600;
    position: relative;
    &:not(.dropdown-toggle)::after{
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background-color: #57606f;
        transition: all 120ms ease-in-out;
    }
}

#barra-navegacion .nav-item>.nav-link:not(.dropdown-toggle):hover {
    color: #1fc206;
    border-radius: 0;
    &::after{
        width: 100%;
    }
}

#barra-navegacion .dropdown-menu>li>.dropdown-item:hover {
    background: var(--base-fundido-1);
}

#barra-social {
    padding: 8px 0;
}

.barra-social-bg-default {
    background: var(--base-5);
}

.barra-social-bg-inicio {
    background: var(--base-5);
}

.barra-social-bg-quienes-somos {
    background-color: var(--base-7);
}

.barra-social-bg-congresos {
    background-color: var(--base-5);
}

.barra-social-bg-convocatorias {
    background-color: var(--base-8);
}

.barra-social-bg-resultados-de-convocatorias {
    background-color: var(--base-8);
}

.barra-social-bg-boletines {
    background-color: var(--base-7);
}

.barra-social-bg-biblioteca {
    background-color: var(--base-6);
}

.barra-social-bg-revista {
    background-color: var(--base-6);
}

.barra-social-bg-podcast {
    background-color: var(--base-7);
}

.barra-social-bg-premios {
    background-color: var(--base-7);
}

#barra-social>div {
    text-align: end;
}

#barra-social a {
    color: #fff;
    text-decoration: none;
    padding: 0 10px;
}

#barra-social a:hover {
    color: #CEFF24;
}


.gallery>a {
    border-radius: 1rem;
    display: inline-block;
    overflow: hidden;
    margin: 5px;
    transition: all 120ms linear;
    cursor: pointer;
    position: relative;
}

.gallery>a::after {
    position: absolute;
    content: "";
    background-color: #000c;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 120ms linear;
}

.gallery>a:hover::after {
    opacity: 1;
    content: "Ver imagen";
}

.gallery>a>img {
    transition: all 120ms linear;
    max-height: 12rem;
}

.gallery>a:hover>img {
    scale: 1.15;
}


.seccion {
    padding-block: 1rem;
}

.bienvenida-titulo>h1 {
    text-align: center;
    font-weight: bolder;
    color: var(--base-1);
}

.bienvenida-mensaje {
    margin-top: 2rem;
}

.seccion-titulo>h2 {
    text-align: center;
    font-weight: bolder;
    color: var(--base-3);
}

.seccion-mensaje {
    margin-top: 2rem;
}

#sitio-descripcion {
    position: relative;
    padding: 1rem;
    background-color: #f6f6f6;
    overflow: hidden;
    border-radius: 4px;
}

#sitio-descripcion::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--base-2);
}

#sitio-portada {
    height: 20rem;
    width: 100%;
    box-shadow: 0px 0px 12px 0px #0002;
    border: 1px solid #f1f1f1;
    object-fit: cover;
}

.articulo-seleccionable {
    display: inline-block;
    width: 30%;
    box-shadow: 0px 0px 12px 0px #0002;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-decoration: none;
    color: #333;
    position: relative;
    transition: all 200 linear;
}

.articulo-seleccionable>img {
    width: 100%;
    height: 10rem;
}

.articulo-seleccionable>img.img-default {
    object-fit: contain;
    padding: 20px;
    background-image: linear-gradient( 174.2deg,  rgba(255,244,228,1) 7.1%, rgba(240,246,238,1) 67.4% );
}

.articulo-seleccionable>img:not(.img-default) {
    object-fit: cover;
}

.articulo-seleccionable>h6 {
    padding: .5rem;
    margin: 0;
}

.articulo-seleccionable>.descripcion {
    padding: 0 .5rem .5rem .5rem;
    color: #a1a1a1;
    text-wrap: nowrap;
    overflow: hidden;
    width: 100%;
    text-overflow: ellipsis;
    margin: 0;
    font-size: 12px;
}

.articulo-seleccionable::after {
    content: "Ver publicación";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 27, 59, 0.8);
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 20px;
    justify-content: center;
    top: 100%;
    transition: all 120ms linear;
}

.articulo-seleccionable:hover::after {
    top: 0%;
}

.ver-imagen {
    display: inline-block;
    position: relative;
    overflow: hidden;
    /* border: 1px solid #dee2e6; */
    padding: 0.25rem;
    border-radius: 0.375rem;
    cursor: pointer;
}

.ver-imagen::after {
    content: "Clic para ver imagen";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 27, 59, 0.733);
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 20px;
    justify-content: center;
    opacity: 0;
    transition: all 120ms linear;
}

.ver-imagen:hover::after {
    opacity: 1;
}


#pie {
    position: absolute;
    width: 100%;
    bottom: -10rem;
    padding: 2rem 1rem;
    background: var(--base-5);
}

#pie::after {
    content: "";
    position: absolute;
    top: -.5rem;
    left: 0;
    width: 100%;
    height: .5rem;
    background-color: var(--base-8);
}


#pie div {
    color: #fff;
}



.fecha-articulo {
    font-size: 12px;
}


.portada-articulo {
    height: 16rem;
    width: 100%;
    border-radius: 8px;
    background-color: #fafafa;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
}

.portada-articulo>img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.portada-articulo::after {
    content: "Clic para ver portada";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 27, 59, 0.733);
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 20px;
    justify-content: center;
    opacity: 0;
    transition: all 120ms linear;
}

.portada-articulo:hover::after {
    opacity: 1;
}


.seccion-registro,
.titular-registro {
    position: relative;
    overflow: hidden;
}

.seccion-registro::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 6px;
    background-color: #4ae74a;
}

.titular-registro::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 6px;
    background-color: #0f47ffe0;
}

.btn-convocatoria:active {
    background: #06bd24 !important;
    color: #fff !important;
}

.btn-convocatoria {
    position: relative;
    background: #fff;
    padding: 10px 30px;
    border: 1px solid #acacac;
    ;
    overflow: hidden;
    font-weight: 600;
    box-shadow: 0px 0px 2px 0px #33a16e;
}

.btn-convocatoria::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 0%;
    top: 0;
    left: 0;
    background: #06bd24;
    transition: 120ms all linear;
    z-index: -1;
}

.btn-convocatoria:not(.seleccionada):hover {
    color: #fff;
}

.btn-convocatoria:not(.seleccionada):hover::after {
    width: 100%;
    color: #fff;
}

.btn-convocatoria.seleccionada {
    background: #06bd24;
    color: #fff;
}

.breadcrumb-item a{
    color: #2ed573;
    &:hover{
        color: #2f3542;
    }
}



@media screen and (max-width: 1300px) {
    #barra-navegacion .nav-item>.nav-link {
        font-size: 14px;
    }
}


@media screen and (max-width: 500px) {
    #sitio-portada {
        height: 10rem;
    }
}