document.addEventListener("DOMContentLoaded", function() {
setTimeout(function() {
if (typeof Swiper !== "undefined") {
document.querySelectorAll('.swiper').forEach(function(el) {
if (el.swiper) {
el.swiper.params.autoplay = {
delay: 2500,
disableOnInteraction: false
};
el.swiper.autoplay.start();
}
});
}
}, 1000);
});