How can I position text and add a partition in my image banner design?

Image 1 - Desired Design (Explore our collections is positioned separately down in middle. Also how can i add a partition below if as shown in the image??).

Image 2 - Designed i’m stuck with.

Hi @obito_uchiha01

Could you drop your store link?

store link - https://6b771c-3.myshopify.com/
password - jewelsmisa

@obito_uchiha01

Go to your Online store > Themes > Edit code > Assets, open base.css and add this code at the bottom

@media (min-width: 768px){
#Banner-template--16902098452735__image_banner .banner__text {
    position: absolute !important;
    bottom: -100px;
    left: 50%;
    transform: translate(-50%);
}
}

The code works but it is now positioning the above text “Your Everyday Collection” also down below which is overlapping with “Explore Our Collections” below.

Hi @obito_uchiha01

Please update code like this

@media (min-width: 768px){
#Banner-template--16902098452735__image_banner .banner__text:first-child {
    position: absolute !important;
    bottom: -100px;
    left: 50%;
    transform: translate(-50%);
}
}