librandi
Hi
You have this code in custom.css file
.t3-slideshow + .t3-content-mast-top {
margin-top: -40px!important;
}
Reduce the value to move it down.
or you can use media queries to apply different style for different sceeen size.
Example : @media (max-width: 767px) {
.t3-slideshow + .t3-content-mast-top {
margin-top: 15px;
}
}