footer{
    background-color: var(--main-color);   
}

.main_footer{
    width: 100%;
    padding: 100px 90px;
    padding-bottom: 70px;
    display: flex;
}

footer h3{
    font-family: "Lora", sans-serif;
    color: #fff;
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 400;
}

/*-------------------------------------------*/

.footer_nosotros_section{
    width: 35%;
    margin-right: 30%;
}

.footer_nosotros_section p{
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.4;
}

/*-------------------------------------------*/

.footer_navegar_section{
    width: 18%;
}

.footer_navegar_section a{
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 300;
    cursor: pointer;
}

/*-------------------------------------------*/


.footer_contacto_section{
    width: 15%;
}

.footer_contacto_section a{
    display: block;
    width: 28px;
    margin-bottom: 15px;
}

.footer_contacto_section a img{
    width: 100%;
}

/*-------------------------------------------*/

.bottom_footer hr{
    width: 20%;
    border-top: 1px solid #fff;
}

.bottom_footer span{
    display: block;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
}

/*////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// RESPONSIVE /////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////*/

@media (max-width: 700px) {

    .main_footer{
        padding: 50px 40px;
        padding-bottom: 40px;
        flex-wrap: wrap;
    }

    footer h3{
        margin-bottom: 25px;
        font-size: 20px;
        width: 100%;
    }

    /*-------------------------------------------*/

    .footer_nosotros_section{
        width: 100%;
        margin-right: 0%;
        margin-bottom: 30px;
    }

    .footer_nosotros_section p{
        font-size: 12px;
        margin-bottom: 12px;
    }

    /*-------------------------------------------*/

    .footer_navegar_section{
        width: 100%;
        margin-bottom: 30px;

    }

    .footer_navegar_section a{
        font-size: 13px;
        margin-bottom: 15px;
    }

    /*-------------------------------------------*/


    .footer_contacto_section{
        width: 100%;
        margin-bottom: 30px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;

    }

    .footer_contacto_section a{
        width: 22px;
        margin-bottom: 12px;
    }

    /*-------------------------------------------*/

    .bottom_footer hr{
        width: 45%;
    }

    .bottom_footer span{
        padding: 10px 15px;
        font-size: 10px;
    }

}