jQuery(document).ready(function( $ ) { // Porfolio - popup jQuery plugin $('.portfolio-popup').magnificPopup({ type: 'image', removalDelay: 300, mainClass: 'mfp-fade', gallery: { enabled: true }, zoom: { enabled: true, duration: 300, easing: 'ease-in-out', opener: function(openerElement) { return openerElement.is('img') ? openerElement : openerElement.find('img'); } } }); // Testimonials carousel - Owl Carousel $(".testimonials-carousel").owlCarousel({ autoplay: true, dots: true, loop: true, responsive: { 0: { items: 1 }, 768: { items: 2 }, 900: { items: 3 } } }); // Clients carousel - Owl Carousel $(".clients-carousel").owlCarousel({ autoplay: true, dots: false, loop: true, responsive: { 0: { items: 2 }, 768: { items: 4 }, 1024: { items: 6 } } }); });