/* Mision y vision */
.company-mision
{
    position: relative;
    top: 30px;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

#information-box-1
{
    position:relative;
    width: 240px;
    height: 150px;
    border-radius: 5px;
    padding: 3px;
    color: var(--new_logo_text_color);
    z-index: 3;
    transition: 200ms ease all;
    text-align: justify;
    
}
#information-box-1 h3
{
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 20pt;
    margin: 3px;
    padding: 0;
    border-bottom: 2px solid var(--new_logo_text_color);
}
#information-box-1 p
{
    font-size: 14pt;
}

#information-box-1:hover
{
    color: var(--DaiBlue);
    height: 150px;
    
}
#information-box-1:hover h3
{
    border-bottom: 2px solid var(--DaiBlue);
}

/* Descripcion general de la compania */
.company-description
{
    position: relative;
    top: -33px;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 600px;
    background: linear-gradient(30deg, var(--DaiOrange), var(--new_logo_color-2), var(--new_logo_color-3));
    color: var(--new_logo_text_color);
    
}
.company-description::before
{
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../../img/gallery/no12.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    content: '';
    opacity: 0.1;
    z-index: 1;
}

.company-description h1
{
    text-align: center;
    text-transform: uppercase;
    font-size: 30pt;
    z-index: 2;
    text-shadow: 0 0 3px var(--new_logo_text_color);
}
.company-description #set-position-info
{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.company-description .text 
{
    max-width: 60%;
    min-width: 300px;
    text-align: justify;
    font-size: 20pt;
}