footer {
    background-color: var(--black);
    color: var(--white);
}

footer > * {
    padding: 12px;
}

footer .footer-info {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px 0;
}


footer .bottom-bar {
    display: flex;
    padding: 12px;
    justify-content: space-between;
    background-color: var(--black);
    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;
}



    /** MOBILE */
@media only screen and (max-width: 600px) {

    footer .footer-info {
        padding: 12px;
    }

    footer .bottom-bar {
        flex-direction: column;
        
    }
    .img-payment-methods {
        margin: 6px 0;
    }


    footer .bottom-bar .img-payment-methods {
        margin-left: 0px;
    }

}