
const swiper=new Swiper('.swiper',{loop:!0,effect:'fade',speed:1000,autoplay:{delay:2500,disableOnInteraction:!1,}});



const headerToggle=document.querySelector('.header__toggle');headerToggle.addEventListener('click',function(e){e.preventDefault();document.body.classList.add('is-open');return!1});const headerClose=document.querySelector('.header__close');headerClose.addEventListener('click',function(e){e.preventDefault();document.body.classList.remove('is-open');return!1});window.addEventListener('resize',function(){if(document.body.classList.contains('is-open')){let w=window.innerWidth;if(w>=800){document.body.classList.remove('is-open')}}});


