.items_generales_utu
{
    display: grid;
    position: relative;
    width: 100%;
    grid-template-columns: repeat(6, 16vw);
    grid-template-rows: repeat(3,16vw);
    grid-template-areas: 
    'itemUno itemDos itemTres itemCuatro itemCinco itemCinco'
    'itemSeis itemSeis itemSiete itemOnce itemCinco itemCinco'
    'itemOcho itemOcho itemNueve itemNueve itemDiez itemDiez';
    grid-gap: 5px;
    row-gap: 5px;
    justify-content: center;
    margin: 0 0 35px 0;
}

.items_generales_utu>article
{   
    width: auto;
    height: auto;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

.items_generales_utu>article:hover 
{
    transition: filter 0.3s ease;
    filter: blur(1px);
}

.items_generales_utu>article:nth-child(1)
{
    grid-area: itemUno;
    background-color: rgb(76,20,52);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.items_generales_utu>article>a>img
{
    width: 90%;
}

.items_generales_utu>article>a 
{
    text-decoration: none;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.items_generales_utu>article>a>h4, .items_generales_utu>article>a>h3
{
    color: white;
    margin-top: 10px;
    font-size: 1rem;
    text-align: center;
}

.items_generales_utu>article>a>h3
{
    font-size: 1.3rem;
    text-transform: uppercase;
}

.items_generales_utu>article:nth-child(2)
{
    grid-area: itemDos;
    background-color: rgb(4,156,228);
}

.items_generales_utu>article:nth-child(2)>a
{
    position: relative;
}

.items_generales_utu>article:nth-child(2)>a>img 
{
    position: absolute;
    width: 70%;
    bottom: 16%;
}

.items_generales_utu>article:nth-child(3)
{
    grid-area: itemTres;
    background-color: rgba(202,102,9,178)
}

.items_generales_utu>article:nth-child(4)
{
    grid-area: itemCuatro;
    background-color: rgb(8,168,68)
}

.items_generales_utu>article:nth-child(5)
{
    grid-area: itemCinco;
    background-image: url("/themes/utu/assets/new_portal/images/secciones_utu/3726.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.items_generales_utu>article:nth-child(5)>a>h3 ,.items_generales_utu>article:nth-child(6)>a>h3,.items_generales_utu>article:nth-child(7)>a>h3,.items_generales_utu>article:nth-child(8)>a>h3,.items_generales_utu>article:nth-child(9)>a>h3,.items_generales_utu>article:nth-child(10)>a>h3
{
    color: var(--azul-utu-dos);
    text-transform: uppercase;
}

.items_generales_utu>article>a>h3>span
{
    background-color: white;
}

.items_generales_utu>article:nth-child(6)
{
    grid-area: itemSeis;
    background-image: url("/themes/utu/assets/new_portal/images/secciones_utu/recursoshumanos.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.items_generales_utu>article:nth-child(7)
{
    grid-area: itemSiete;
    background-image: url("/themes/utu/assets/new_portal/images/secciones_utu/transf_educativa.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.items_generales_utu>article:nth-child(8)
{
    grid-area: itemOcho;
    background-image: url("/themes/utu/assets/new_portal/images/secciones_utu/deportes.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.items_generales_utu>article:nth-child(9)
{
    grid-area: itemNueve;
    background-image: url("/themes/utu/assets/new_portal/images/secciones_utu/becas&pasantia.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.items_generales_utu>article:nth-child(10)
{
    grid-area: itemDiez;
    background-image: url("/themes/utu/assets/new_portal/images/secciones_utu/produccion.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.items_generales_utu>article:nth-child(11)
{
    grid-area: itemOnce;
    background-image: url("/themes/utu/assets/new_portal/images/secciones_utu/guaviyu.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #303030;
}

.items_generales_utu>article:nth-child(11)>a>h3 
{
    color: white!important;
}

.items_generales_utu>article:nth-child(11)>a>h3>span 
{
    background: transparent!important;
}

@media (max-width:845px) and (orientation:portrait)
{
    .items_generales_utu
    {
        grid-template-columns: repeat(2, 48vw);
        grid-template-rows: repeat(9,48vw);
        grid-template-areas: 
        'itemUno itemDos itemTres itemCuatro itemCinco itemCinco'
        'itemSeis itemSeis itemSiete itemOnce itemCinco itemCinco'
        'itemOcho itemOcho itemNueve itemNueve itemDiez itemDiez';
        grid-template-areas: 
        'itemUno itemDos'
        'itemTres itemCuatro'
        'itemCinco itemCinco'
        'itemCinco itemCinco'
        'itemSeis itemSeis'
        'itemSiete itemOnce'
        'itemOcho itemOcho'
        'itemNueve itemNueve'
        'itemDiez itemDiez';
        grid-gap: 5px;
        row-gap: 5px;
        justify-content: center;
        margin: 35px 0;
    }

    .items_generales_utu>article:nth-child(2)>a>img 
    {
        bottom: 9%;
    }
}

@media only screen and (min-width: 845px) and (max-width: 1333px)
{
    .items_generales_utu>article:nth-child(2)>a>img 
    {
        bottom: 8%;
    }

    .items_generales_utu>article>a>h4, .items_generales_utu>article>a>h3
    {
        margin: 0!important;
    }
}
