footer {
    background: #fff;
    border-top: 1px solid rgb(218, 218, 218);
}
footer .line {
    display: grid;
    grid-template-columns: 250px 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgb(218, 218, 218);
    padding: 20px;
}
footer .line:first-of-type {
    font-family: "Work Sans", sans-serif;
    font-size: 13px;
    letter-spacing: -0.5px;
    color: rgb(0, 0, 0);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 5px;
    margin-top: 0px;
    margin-right: 5px;
}
footer .der {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.5;
}
footer .line:first-of-type img {
    width: 200px;
    padding-top: 7px;
}
footer .line:first-of-type b {
    display: flex;
    position: relative;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    text-decoration: none;
    color: black;
    white-space: nowrap;
}
footer .line:first-of-type .izq {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}
footer .izq a {
    font-size: 19px;
    background: gainsboro;
    padding: 7px 10px;
    border-radius: 50px;
}
footer .line:first-of-type .social {
    padding-top: 18px;
}
footer .line:last-of-type {
    font-size: 14px;
}
footer .line:last-of-type span {
    font-size: 13px;
}
footer .lists ul {
    margin: 0px;
    padding: 0px; 
}
footer .lists li {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
footer input {
    padding: 6px;
    margin-top: 5px;
    width: 90%;
}
footer button {
    padding: 14px;
    background-color: rgb(0, 48, 120);
    border: none;
    letter-spacing: -0.4px;
    text-align: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 2px;
    font-weight: 600;
    line-height: 1;
    width: auto;
    margin: 10px auto auto 0px;
    color: white;
    text-transform: uppercase;
}

footer .footerEnd {
    width: 100%;
    padding: 10px 0px;
    display: grid;
    grid-template-areas:"text1 image" "text2 image"
}
footer .footerEnd p:first-of-type {
    grid-area: text1;
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    position: relative;
    display: flex;
    font-size: 13px;
    color: rgb(74, 74, 74);
    margin-bottom: 5px;
}
footer .footerEnd p:last-of-type {
    grid-area: text2;
    font-family: "Work Sans", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.33;
    letter-spacing: -0.2px;
    color: rgb(136, 136, 136);
    margin: 0px;
}
footer .image {
    grid-area: image;
}

@media (max-width: 992px) {
    footer .line {
        grid-template-columns: 1fr;        
    }
    footer .footerEnd {
        text-align: left;
        grid-template-areas:"text1" "text2" "image";
    }    
    footer .footerEnd  .image {
        padding-top: 1rem;
    }    
    footer .line:first-of-type .social {
        padding-bottom: 18px;
    }
}

.arrepentido {
    background: #001848;
    border: 0px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5em;
    line-height: 1;
    padding: 1rem 1.6rem;
    position: relative;
    transition: 150ms all ease-in;
}
.arrepentido:hover {
    color: #001848;
    transition: 150ms all ease-in;   
}
.arrepentido::after {
    content: 'Proceder';
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    transition: 150ms all ease-in;
    transform: translateY(-10px);
    opacity: 0;
}
.arrepentido:hover::after {
    transition: 150ms all ease-in;
    transform: translateY(0px);
    opacity: 1;
}
@media (max-width: 992px) {
    footer .line > div {
        padding-bottom: 1rem;
    }
    footer .line button, footer .line input {
        width: 100%;
    }
    footer .btn {
        width: 100%;
    }
}