(function ($) {
"use strict";
$(window).scroll(function () {
if ($(window).width() > 992) {
if ($(this).scrollTop() > 45) {
$('.sticky-top .container').addClass('shadow-sm').css('max-width', '100%');
} else {
$('.sticky-top .container').removeClass('shadow-sm').css('max-width', $('.topbar .container').width());
}
} else {
$('.sticky-top .container').addClass('shadow-sm').css('max-width', '100%');
}
});
$(".header-carousel").owlCarousel({
items: 1,
autoplay: true,
smartSpeed: 2000,
center: false,
dots: false,
loop: true,
margin: 0,
nav : true,
navText : [
'',
''
]
});
$(".testimonial-carousel").owlCarousel({
autoplay: true,
smartSpeed: 1500,
center: false,
dots: true,
loop: true,
margin: 25,
nav : false,
navText : [
'',
''
],
responsiveClass: true,
responsive: {
0:{
items:1
},
576:{
items:1
},
768:{
items:2
},
992:{
items:2
},
1200:{
items:2
}
}
});
})(jQuery);