let owl7 = $('#owl7');
$(window).resize(function() {
if ($(window).width() <= 575) {
document.getElementById('owl7').classList.add('owl-carousel');
owl7.trigger('destroy.owl.carousel');
owl7.owlCarousel({
items: 4,
touchDrag: true,
margin: 0,
autoWidth: true
});
} else {
document.getElementById('owl7').classList.add('owl-carousel');
owl7.trigger('destroy.owl.carousel');
owl7.owlCarousel({
items: 4,
touchDrag: true,
mouseDrag: false,
margin: 0,
autoWidth: true
});
}
});