/** ==============================================================================================================================================
 * CSS de Graficas
 */
/** ==============================================================================================================================================
 * III. graficas
 */
#graficas .seccion_head{
    text-align: center;
}
/* INICIO DE LOS BLOQUES DE LAS SUB CATEGORIAS */
#graficas .bloque_contenido{
    display: flex;
}
#graficas .contenedor_texto{
    text-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
}
#graficas .contenedor_texto h2{
    font-weight: bolder;
    margin-bottom: 0.7em;
}
#graficas .contenedor_texto p{
    margin-bottom: 5%;
}
#graficas .contenedor_img img{
    width: 100%;
}

#graficas .contenedor_img{
    position: relative;
    z-index: 0;
}

#graficas .contenedor_texto{
    z-index: 2;
}
#graficas .texto_azul{
    position: absolute;
    bottom: 0;
    padding: 3%;
    font-weight: bolder;
}
#graficas .contenedor_img:nth-child(even) .texto_azul{
    right: 0;
}
#graficas .contenedor_img:nth-child(odd) .texto_azul{
    left: 0;
}

/* colores */
#graficas .texto_fondo_blanco{
    background-color: white;
}
#graficas .paleta_principal{
    background-color: #E9E8E6;
}

#graficas .paleta_alternativa{
    background-color: #D7E3FC;
}
#graficas .texto_azul{
    background-color: rgb(25, 117, 210, 0.75);
    color: white;
}
#graficas .texto-cuerpo{
    text-align: justify;
    color: #4d4d4d;
    margin-bottom: 2em !important;
}
#graficas .sub-titulo{
    color: #1976D2;
}
#graficas .pre-titulo-graficas{
    font-weight: bolder;
}
/* -- (@Media para PC) -- */
@media screen and (min-width: 991px) {
    #graficas .bloque_contenido{
        padding: 5% 10%;
    }
    #graficas .contenedor_texto{
        width: 48%;
    }
    #graficas .texto_fondo_blanco{
        padding: 7% 10%;
    }
    #graficas .contenedor_img{
        width: 52%;
    }
    #graficas .contenedor_texto:nth-child(even) .texto_fondo_blanco{
        margin-left: -7%;
    }
    #graficas .contenedor_texto:nth-child(odd) .texto_fondo_blanco{
        margin-right: -7%;
    }
}
/* -- (@Media para Moviles) -- */
@media screen and (max-width: 990px) {
    #graficas .bloque_contenido{
        flex-direction: column;
        padding: 10%;
    }
    #graficas .texto_fondo_blanco{
        padding: 10%;
        margin-bottom: 5%;
    }
}