How can i move the CTA "Shop Button" down?

I’m using Ella Theme and would like to know how to push the button down as shown below. Would someone please help me out? I’ve tried everything i can for the past 2 days and i can’t seem to get it done. Someone had similar question and a solution was posted which helped them but i don’t have the liquid file referenced in the solution.

Thanks

@DrunkSquirrel

Kindly Share your Store URL and password if password protected, So that we can help you.

Here’s my url

www.xprssion.com

Please add below css in bottom of assets/theme-styles-responsive.css file

@media (min-width: 768px)

.slide-content {
top: unset;
bottom: 0;

}

@media (max-width: 767px)

.slide-content:not(.style_2):not(.style_3) {
top: 110%;
margin-top: 10px;
}

.slideshow {
margin-bottom: 60px ;

}
Thank you.