Mobile Layout Issues - How to make a page all 1 column when viewed on mobile

@L8PMarketing

Sorry about that, I had changed the class on the element and did not realize that there was CSS already in place for utilizing flexbox layout for it.

You could try:

@media (max-width: 749px) {
  .custom__item.small--one-half {
    flex: 1 0 100%;
    max-width: none;
  }
}

That seemed to do the trick for me.