footer {
    width: 100%;
    padding: 35px 0px;
    *background-image: url(../assets/images/fondo_azul.jpg);
    *background-size: cover;
    background-color: #3ca6e4;
    -webkit-mask-image: url("../assets/images/background-footer.svg");
    mask-image: url("../assets/images/background-footer.svg");
    -webkit-mask-size: cover;
    mask-size: cover;
}

.contenedor_footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    margin-top: 100px;
}

.box_footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 32px;
}

.box_footer .logo_footer {
    margin-left: auto;
    margin-right: auto;
}

.box_footer .logo_footer img {
    width: 280px;
}

.box_footer .terms {
    max-width: 350px;
    margin-top: 20px;
    font-weight: 500;
    color: #7a7a7a;
    font-size: 18px;
}

.box_footer h2 {
    margin-bottom: 30px;
    color: #343434;
    font-weight: 700;
}

.box_footer a {
    margin-top: 10px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: all 300ms;
}

.box_footer a:hover {
    color:lightskyblue;
    transition: all 300ms;
}

.box_footer a .fab {
    font-size: 20px;
}

.box_copyright {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0 40px;
}

.box_copyright hr {
    border: none;
    height: 1px;
    background-color: #7a7a7a;
}