.pre-footer {
    text-align: center;
    margin: 2rem 0;
}

.pre-footer img {
    width: 75px;
    height: auto;
    margin: 0px 1.5rem;
}

.white-img {
    background-color: #1f3dcd;
    padding: 8px 6px;
}

footer {
    background-color: #231f20;
    background-image: url('./../images/dominicania/header/IMAGEN-INFERIOR.png');
    background-size: cover;

    color: var(--white);
    -webkit-box-shadow: 0px -12px 12px 0px rgba(223,238,245,0.88);
    -moz-box-shadow: 0px -12px 12px 0px rgba(223,238,245,0.88);
    box-shadow: 0px -12px 12px 0px rgba(223,238,245,0.88);

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    padding: 3rem 0 1rem 0;
    gap: 2rem;
}

footer .footer-info {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px 0;
}

footer .customer-services > *, footer .footer-navigation li {
    line-height: 2.5rem;
}

footer .bottom-bar {
    display: flex;
    width: 90%;
    padding: 12px;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255, .1);    
}

footer .bottom-bar .img-payment-methods {
    max-width: 272px;
    height: 32px;
    margin-left: 12px;
}

footer .brand {
    width: 100%;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

footer .brand .logo {
    max-width: 200px;
    margin: 10px 0px 10px 0px;
}

.customer-services a {
    display: block;
}

.customer-services a svg {
    margin-right: 2px;
}

.social-networks {
    display: flex;
    gap: 16px;
    margin-top: 1rem;
}

/* NEW CODE */

footer .footer-informtation-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    gap: 5rem;
    margin: 0px;
    width: 100%;
    max-width: 1200px;
}

footer .information-subcontainer {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    color: whitesmoke;
}

footer .information-subcontainer a + a {
    margin-top: 15px;
}

/* */

@media only screen and (max-width: 1000px) {
    footer .footer-info {
        margin: 0 2rem;
    }

    footer .footer-informtation-container {
        display: flex;
        flex-direction: column;
    }
}

/** MOBILE */
@media only screen and (max-width: 600px) {
    .pre-footer img {
        width: 75px;
        max-width: 100%;
    }

    footer .footer-info {
        flex-direction: column;
        gap: 2rem;
        padding: 12px;
        margin: 0 1rem;
    }

    footer .bottom-bar {
        flex-direction: column;
        
    }
    .img-payment-methods {
        margin: 6px 0;
    }


    footer .bottom-bar .img-payment-methods {
        margin-left: 0px;
    }
}