
/** HERO */

section.banner-principal {
    height: 220px;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: var(--azul-oscuro);
    margin-bottom: 65px;
    color: white;
    border-radius: 0 0 50% 50%;
    width: 109%;
    position: relative;
    left: -32px;
}

h2.titulo-hero {
    color: white;
    margin-bottom: 50px;
    font-size: 40px;
    position: relative;
    right: 32px;
}

.content-documents-r {
    border-bottom: solid var(--azul-oscuro) 2px;
}

.content-informes-content {
    max-width: 70%;
    margin: auto;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);;
}

h3.content-year {
    background: var(--azul-claro);
    color: white;
    font-weight: bold;
    font-size: 20px;
    line-height: 25px;
    padding: 14px;
    margin-bottom: 0;
    cursor: pointer;
    position: relative;
}

 h3.content-year:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f078';
    position: absolute;
    right: 23px;
    transition:0.35s;
}

.show-menu h3.content-year:after{
    transform: rotate(180deg);
    transition:0.35s;
}

ul.container-contet {
    max-height: 0px;
    height: 2px;
    overflow: hidden;
    margin: 0;
    transition: 0.35s;
    background: white;
    list-style: none;
    padding-left: 36px;
}

.show-menu ul.container-contet{
    height: 100%;
    max-height: 2000px;
    padding: 36px;
    transition: 0.35s;
}

a.enlace-container{
    width: 100%;
    font-size: 18px;
}

li.document-name {
    border-bottom: solid 2px var(--azul-claro-dos);
}

li.document-name:hover{
    color: var(--azul-oscuro);
    font-weight: bold;
}

/** Movil */

@media(max-width: 780px){


    li.document-name {
        line-height: 20px;
    }

    .content-informes-content{
        max-width: 86%;
    }
}


