I see you use Visual Composer (?) there, and I think it allows hiding the column on mobile, maybe that is a possibility.
Otherwise you can try using a custom CSS, like so:
@media only screen and (max-width:480px) {
.asp_sb_4 {
display: none !important;
}
}