/**************************
    STATIC PAGE 'CHI SIAMO'
***************************/
.chiSiamo_row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
}
.chiSiamo_col{
    width: 50%;
}
.chiSiamo_row p{
    width: 100%;
    text-align: justify;
}
.space{
    display: block;
    height: 2rem;
}
.chiSiamo_p{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: justify;
}
.chi_siamo p{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    pointer-events: all;
    text-align: justify;
}
.chi_siamo p:not(.chi_siamo p:last-child){
    padding-bottom: 2rem;
}
.chi_siamo p > a,
.chi_siamo ul li a{
    text-decoration: underline;
    color: var(--bright_gold);
}
.chi_siamo ul{
    list-style: disc;
    text-align: justify;
    padding-bottom: 2rem;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.chi_siamo ul li:not(.chi_siamo > ul li:last-child){
    margin-bottom: 1rem;
}
/**************************
    PDF
***************************/
.pdf_container{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    margin-top: 3rem;
    background-color: var(--dark_gold);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    border-radius: 3px;
}
.pdf_container h3{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}
.pdf_container ul{
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: baseline;
    gap: 3rem;
    list-style: none;
    text-align: center;
} 
.pdf_container ul li{
    width: calc((100% - 3rem *2) / 3);    
}
.pdf_container ul li a{
    color: var(--white);
    font-weight: 600;
    font-size: .75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    text-transform: uppercase;
    text-decoration: none;
}
.pdf_container ul li i{
    font-size: 3rem;
    color: var(--bordeaux);
}
@media screen and (max-width: 1280px){
    .chiSiamo_row{
        flex-direction: column-reverse;
        justify-content: center;
        gap: 3rem;
    }
    .chiSiamo_col{
        width: 100%;
    }
    .chiSiamo_row p{
        max-width: 900px;
        width: 100%;
    }
    .page_h3{
        margin: 3rem 0;
    }
}
@media screen and (max-width: 768px){
    .pdf_container ul li{
        width: calc((100% - 3rem) / 2);    
    }
}
@media screen and (max-width: 430px){
    .pdf_container ul li{
        width: 100%;    
    }
    .pdf_container h3{
        font-size: 1.3rem;
    }
}
@media screen and (max-width: 320px){
    .pdf_container h3{
        font-size: 1rem;
    }
}

.page_h3{
    margin: 0;
}
.apertura{
    margin: 3rem auto;
}
.apertura_2{
    margin-top: 2rem;
}
/**************************
    TABS
***************************/
/* .mytabs{
    display: flex;
    flex-wrap: wrap;
    margin: 5rem 0;
    padding: 2rem;
}
.mytabs input[type="radio"]{
    display: none;
}
.mytabs label{
    padding: .5rem;
    border-width: 5px 0 0 5px;
    border-style: solid;
    border-color: var(--bordeaux);
    color: var(--bordeaux);
    font-weight: 600;
    cursor: pointer;
}
.mytabs label:last-of-type{
    border-width: 5px 5px 0 5px;

}
.mytabs .tab{
    width: 100%;
    height: 500px;
    overflow: hidden;
    padding: 3rem 1rem;
    background: var(--white);
    border: 5px solid var(--bordeaux);
    order: 1;
    display: none;
}
.mytabs .tab h3{
    color: var(--bright_gold);
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 2rem;
    font-size: 1.438rem;
    font-weight: 600;
    text-transform: uppercase;
}
.mytabs .tab p{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: justify;
}
.mytabs input[type="radio"]:checked + label + .tab{
    display: block;
}
.mytabs input[type="radio"]:checked + label{
    background: var(--bordeaux);
    color: var(--white);
    font-weight: 700;
} */
