jQuery('.slotholder').each(function () {
let bg = jQuery(this).find('.tp-bgimg').css('background-image');
jQuery(this).css({
position: 'relative',
overflow: 'hidden'
});
jQuery(this).prepend(
''
);
jQuery(this).find('.slider-blur-bg').css({
position: 'absolute',
top: '-40px',
left: '-40px',
right: '-40px',
bottom: '-40px',
backgroundImage: bg,
backgroundSize: 'cover',
backgroundPosition: 'center center',
filter: 'blur(40px)',
transform: 'scale(1.2)',
opacity: '0.8',
zIndex: '1'
});
jQuery(this).find('.tp-bgimg').css({
position: 'relative',
zIndex: '2'
});
});