How to move Slideshow Title over Image

To move Slideshow Title
image

over Slideshow Images, like this
image

#1. First, find Slideshow Section ID.
In my example, it is:

section[data-section-id="66f692881771982d38929b27"]

image

#2. Use CSS code like this to Custom CSS box

section[data-section-id="66f692881771982d38929b27"] {
  div.user-items-list {
    position: relative;
}
div.list-section-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    width: 100%;
}  
}
body {
    overflow-x:hidden;
}