(function ($) { "use strict"; var wind = $(window); // Header Sticky window.onscroll = function() {myFunction()}; var header = document.getElementById("fixed-menu"); var sticky = header.offsetTop; function myFunction() { if (window.pageYOffset > sticky) { header.classList.add("scroll-to-fixed-fixed"); } else { header.classList.remove("scroll-to-fixed-fixed"); } } // Mean Menu jQuery(".mean-menu").meanmenu({ meanScreenWidth: "991", }); // Testimonials-1 owl $('.testimonial-slide .owl-carousel').owlCarousel({ margin: 16, autoplay: true, autoplayTimeout: 4000, nav: false, smartSpeed: 800, dots: true, autoplayHoverPause: true, loop: true, responsiveClass: true, responsive: { 0: { items: 1 }, 768: { items: 2 }, 1000: { items: 3 } } }); })(jQuery);