.custom-area-1{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}
.custom-area-1 .columnx{
    width: calc(100% / 3 - 15px);
}
.paymentProducts .custom-area-1 div.item{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media(max-width: 768px){
    .custom-area-1 .columnx{
        width: 100%;
    }
}