// source --> https://web-frame.com/wp-content/themes/webency-child/assets/js/main-js.js?ver=1.1.3 
jQuery(document).ready(function ($) {
    const projectSlider = document.getElementById("projects-slider");
        
    if (typeof projectSlider !== 'undefined' && projectSlider !== null ) {
        
        const optionsNew = { 
            axis: "x",
            Autoplay: {
                timeout: 6000,
            },
        };
        new Carousel(projectSlider, optionsNew, { Autoplay });
    }
        
    const projectGallery = document.getElementById("projects_gallery");

    if (typeof projectGallery !== 'undefined' && projectGallery !== null ) {
        
        const optionsNew = { 
            axis: "x",
            Dots: false,
            Thumbs: {
                type: "classic",
            }
        };
        new Carousel(projectGallery, optionsNew, { Thumbs });

        Fancybox.bind('[data-fancybox="project-slider"]', {
            Thumbs : {
                type: "classic"
            }
        });   
    }
});