The slider caption does shrink with screen size, just not enough for your site to make the text fit next to the person (the standard usage scenario we’ve designed the slider for is for the caption to go over all the image, not just part of it).
You’ll need to shrink the text further to make it fit on the smaller screens:
@media (max-width: 960px) {
body .lp-staticslider .staticslider-caption { font-size: 0.7em; }
}
@media (max-width: 640px) {
body .lp-staticslider .staticslider-caption { max-width: 50%; }
body .lp-staticslider .staticslider-caption h2 { font-size: 2.7em; }
}