Move Shop Now button from middle of image to the bottom left of image

Hi everyone,

I’m trying to move my Shop Now button inserted right in the middle of the image on our homepage, we would like to reposition this to the bottom left just under the text we have there.

Can anyone help do this for me as I am no good with editing code.

URL https://tama-o-le-nuu-apparel.myshopify.com/ PW sawpro

Thanks,

Ari

Hello,
Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.css.liquid

@media only screen and (min-width:750px){
#shopify-section-hero-1 .hero__inner {
    top: 27% !important;
    left: 4% !important;
}
#shopify-section-hero-1 .hero__inner .page-width.text-center {
    text-align: left !important;
}
}

Thank you so much - I did want it to shift a little to the right but
figured the % next to word left would adjust the position so have played
with the percentage to shift a little more to the right.

Appreciate it!