I managed to fix this issue, so here is what I did, for anyone that is having the same problem:
Go to: templates/uber/acm/cta/tmpl/style-3.php
Find this line:
$ctaBackground = 'background-image: url("'.$ctaImg.'"); background-attachment: fixed; background-repeat: no-repeat; background-size: cover;';
and replace with:
$ctaBackground = 'background-image: url('.$ctaImg.'); background-attachment: fixed; background-repeat: no-repeat; background-size: cover;';
You are welcome!