How to move text box up in Motion Theme "Large image with text box"

website: https://tongco-us.myshopify.com/

password: baffoh

I want to know if it’s possible to move the text box up to the middle on Motion Theme of “Large image with text box” for mobile.
This is what it looks like right now:

Any help is appreciated, thank you.

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
@media screen and (max-width: 589px){
.background-media-text .background-media-text__inner {
position: relative;
bottom: 29Vw;
}
}

@econtong2 ,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
@media (max-width: 589px){
    .background-media-text__inner {
        bottom: 30Vw !important;
    }
}

Thank you!