mobile image banner cta button and heading placement

Hi all,

please see screenshot, Is there a way to move the cta button to the bottom of image and the heading to the top of image please? Just on mobile, not desktop.

Website - https://smoothervibes.com/

Thank you

Add this CSS to the Custom CSS area of that section:

@media screen and (width < 750px) {
  .banner__box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
}

Legend, thank you