<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">$(document).ready(function () {
    "use strict";

  // Preloader js
  $('body').scrollspy({ target: '.edu-navbar' });
   $(window).on('load', function(e){
    $('#status').fadeOut();
    $('#preloader').delay(350).fadeOut('slow');
    $('body').delay(350).css({'overflow':'visible'});
  })
    
    //  Mean Menu
    jQuery('header .main-menu').meanmenu({
        meanScreenWidth: "991"
    });
    
    //  Scroll to top 
    jQuery('.to-top').on('click', function(event) {
        jQuery('html,body').animate({
            scrollTop: 0
        }, 1000);
    });
    jQuery(window).scroll(function() {
        if (jQuery(window).scrollTop() &gt; 100) {
            jQuery('.to-top').fadeIn(1000);
        } else {
            jQuery('.to-top').fadeOut(1000);
        };
    });

    //   Testimonial Slider 
    $("#testimonial-slider").owlCarousel({
        navigationText :["&lt;i class='flaticon-angle-pointing-to-left'&gt;&lt;/i&gt;", "&lt;i class='flaticon-angle-arrow-pointing-to-right'&gt;&lt;/i&gt;"],
        items : 3,
        loop:true,
        itemsDesktop : [1199, 2],
        itemsDesktopSmall : [980, 1],
        itemsTablet: [768, 1],
        itemsMobile : [479, 1],
        slideSpeed: 1500,
        paginationSpeed: 1500,
        navigation : true,
        pagination : false,
        afterAction: function(el){
           //remove class active
           this
           .$owlItems
           .removeClass('active')

           //add class active
           this
           .$owlItems //owl internal $ object containing items
           .eq(this.currentItem + 1)
           .addClass('active')    
        }         
    }); 
    //   Testimonial Slider 
    $("#testimonial_slider_2").owlCarousel({
        navigationText :["&lt;i class='flaticon-angle-pointing-to-left'&gt;&lt;/i&gt;", "&lt;i class='flaticon-angle-arrow-pointing-to-right'&gt;&lt;/i&gt;"],
        items : 2,
        itemsDesktop : [1199, 2],
        itemsDesktopSmall : [980, 2],
        itemsTablet: [768, 1],
        itemsMobile : [479, 1],
        slideSpeed: 1500,
        paginationSpeed: 1500,
        navigation : true,
        pagination : false      
    });     

    //   Testimonial Slider
    $("#testimonial_slider_1").owlCarousel({
        navigationText :["&lt;i class='flaticon-angle-pointing-to-left'&gt;&lt;/i&gt;", "&lt;i class='flaticon-angle-arrow-pointing-to-right'&gt;&lt;/i&gt;"],
        items : 1,
        itemsDesktop : [1199, 1],
        itemsDesktopSmall : [980, 1],
        itemsTablet: [768, 1],
        itemsMobile : [479, 1],
        slideSpeed: 1500,
        paginationSpeed: 1500,
        navigation : true,
        pagination : false      
    }); 

    //   Testimonial Slider
    $(".blog-slider").owlCarousel({
        navigationText :["&lt;i class='flaticon-angle-pointing-to-left'&gt;&lt;/i&gt;", "&lt;i class='flaticon-angle-arrow-pointing-to-right'&gt;&lt;/i&gt;"],
        items : 1,
        itemsDesktop : [1199, 1],
        itemsDesktopSmall : [980, 1],
        itemsTablet: [768, 1],
        itemsMobile : [479, 1],
        slideSpeed: 1500,
        paginationSpeed: 1500,
        navigation : true,
        pagination : false
    }); 


    //   Video Popup   
    $('.video-iframe').magnificPopup({
        type: 'iframe',
        iframe: {
            markup: '&lt;div class="mfp-iframe-scaler"&gt;' +
                '&lt;div class="mfp-close"&gt;&lt;/div&gt;' +
                '&lt;iframe class="mfp-iframe" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;' +
                '&lt;/div&gt;',
            patterns: {
                youtube: {
                    index: 'youtube.com/',
                    id: 'v=',
                    src: 'http://www.youtube.com/embed/%id%?autoplay=1'
                }
            },
            srcAction: 'iframe_src'
        }
    }); 

    //   Smoth scroll
    $(".myBtn").on('click', function(event) {
      if (this.hash !== "") {
       // Prevent default anchor click behavior
       event.preventDefault();

       // Store hash
       var hash = this.hash;

       $('html, body').animate({
       scrollTop: $(hash).offset().top
       }, 1500, function(){
       window.location.hash = hash;
       });
      } // End if
    });
    
    //  Scroll to top 
    jQuery('.to-top').on('click', function(event) {
        jQuery('html,body').animate({
            scrollTop: 0
        }, 1000);
    });
    jQuery(window).scroll(function() {
        if (jQuery(window).scrollTop() &gt; 100) {
            jQuery('.to-top').fadeIn(1000);
        } else {
            jQuery('.to-top').fadeOut(1000);
        };
    });

});




</pre></body></html>