.payments {
    margin-bottom: 24px;
}

.payments-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.payments-list img {
    width: 100px;
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

@media screen and (max-width: 576px) {
    .payments-list {
        flex-wrap: wrap;
    }

    .payments-list img {
        width: 80px;
        max-height: 30px;
    }
}