var doubleSlider = document.querySelectorAll('.double-slider');
if(doubleSlider.length){
    doubleSlider.forEach(function(e){
         var double = new Splide( '#'+e.id, {
            type:'loop',
            autoplay:true,
            interval:4000,
            arrows:false,
            perPage: window.innerWidth < 768  ? 1 : 2
        }).mount();
    });
}