.pre-footer {
    text-align: center;
    margin-bottom: 2rem;
}

.pre-footer img {
    width: 260px;
    margin: 0 2rem;
}

footer {
    background-color: rgb(3 18 8/1);
    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);
}

footer > * {
    padding: 12px;
}

footer .footer-info {
    display: flex;
    justify-content: space-between;
    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;
    padding: 12px;
    justify-content: space-between;
    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 .logo {
    max-width: 200px;
}

.customer-services a {
    display: block;
}

.customer-services a svg {
    margin-right: 2px;
}

.social-networks {
    display: flex;
    gap: 16px;
    margin-top: 1rem;
}

@media only screen and (max-width: 1000px) {
    footer .footer-info {
        margin: 0 2rem;
    }

}



    /** MOBILE */
@media only screen and (max-width: 600px) {
    .pre-footer img {
        width: 220px;
        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;
    }

}