will take each slide and convert it to the background image
$(".section-hero .scrollable .items .item").each(function() {
var img = $(this).find("img");
if (img.length) {
$(this).css({
"background-image": "url(" + img.attr("src") + ")"
});
img.remove();
}
});