/*** ESTILOS GENERALES DEL FOOTER SEGUN DISPOSITIVOS ***/

/* Estilos para pantallas desde 0px hasta 767px */
@media only screen and (max-width: 767px)
{
    #first.footer-block,
    #second.footer-block
    {
        display: none;
    }

    #third.footer-block ul li,
    #third.footer-block ul li a,
    #third.footer-block ul li a span
    {
        font-size: 18px;
    }

    #third.footer-block
    {
        display: block !important;
        width: 80% !important;
        word-wrap: anywhere;
        word-break: break-word;
        margin-bottom: 2em;
    }

    #fourth.footer-block
    {
        display: block !important;
        width: 100% !important;
    }
    
    #fourth.footer-block span.et_pb_image_wrap 
    {
        margin-right: auto;
        margin-left: auto;
        display: block;
    }
    
    #fourth.footer-block span.et_pb_image_wrap img
    {
        margin-right: auto;
        margin-left: auto;
        display: block;
        margin-top: 2em;
    }
}

/* Estilos para pantallas desde 768px hasta 991px */

@media only screen and (min-width: 768px) and (max-width: 991px)
{
    #first.footer-block
    {
        display: none;
    }

    #second.footer-block,
    #third.footer-block,
    #fourth.footer-block
    {
        display: flex;
        width: 33%;
        margin-right: 0em !important;
        word-wrap: anywhere;
    }
}