 
                
                    
“ Bacon ipsum dolor sit amet ut nostrud chuck, voluptate adipisicing fugiat ex spare ribs.
Incididunt sint officia non cow, ut et. Cillum porchetta tongue occaecat “
                    Michael Lee
                    CEO & art director
                 
             
         
    
        
            
                 
                
                    
“ Cillum porchetta tongue occaecat. Bacon ipsum dolor sit amet ut nostrud chuck.
Voluptate adipisicing fugiat ex spare ribs. Incididunt sint officia non cow, ut et. “
                    Derry Vu
                    Web Developer
                 
             
         
         
     
      ';
                $(owl).parent().append(loading);
            }
            
            $(window).load(function(){
                owl.owlCarousel({
                    loop: true,
                    nav: false,
                    dots: true,
                    autoplay: false,
                    autoplaySpeed: 800, // Speed when auto play
                    autoplayTimeout: 5000, //Delay for next slide
                    autoplayHoverPause : true,
                    navText: ["",""],
                    navSpeed: 800, //Speed when click to navigation arrow
                    dotsSpeed: 800,
                    responsiveClass:true,
                    callbacks: true,
                    responsive:{
                        0:{
                            items: 1,
                            nav:false
                        },
                        600:{
                            items: 1,
                            nav:false
                        },
                        1000:{
                            items: 1                        }
                    }
                });
                
                owl.find('.owl-item').each(function(){
                    var _this = $(this);
                    if($(_this).find('.banner .banner-inner').length){
                        var _banner = $(_this).find('.banner .banner-inner');
                        $(_banner).removeAttr('class').removeAttr('style').css({'opacity': 0}).addClass('banner-inner');
                        if($(_this).hasClass('active')){
                            var animation = $(_banner).attr('data-animation');
                            setTimeout(function(){
                                $(_banner).show();
                                $(_banner).addClass('animated').addClass(animation).css({'opacity': 1});
                            }, 200);
                        }
                    }
                });
                
                
                owl.on('translated.owl.carousel', function(items) {
                    var warp = items.target;
                    if($(warp).find('.owl-item').length){
                        $(warp).find('.owl-item').each(function(){
                            var _this = $(this);
                            if($(_this).find('.banner .banner-inner').length){
                                var _banner = $(_this).find('.banner .banner-inner');
                                var animation = $(_banner).attr('data-animation');
                                $(_banner).removeClass('animated').removeClass(animation).removeAttr('style').css({'opacity': 0});
                                if($(_this).hasClass('active')){
                                    setTimeout(function(){
                                        $(_banner).show();
                                        $(_banner).addClass('animated').addClass(animation).css({'opacity': 1});
                                    }, 200);
                                }
                            }
                        });
                    }
                });
                
                $(owl).parent().find('.lt-carousel-loadding').remove();
            });
        })(jQuery);