$('nav ul li').on('click', function(e) {
	e.preventDefault();
	let sectionInfo = $(e.target).closest('.nav-item');
	
	if(sectionInfo.length) {
		let section = $(sectionInfo).data("id");
		
		$('html, body').animate({
			scrollTop: $(`#${section}`).offset().top
		}, 1000);
    }
});

    $(window).on("load", function () {
        new WOW().init({
            mobile: false,
        });
    });