/*BEGIN SLIDER*/
$(".slider").owlCarousel({
items : 1,
stopOnHover: true,
itemsDesktop:[1199,1],
itemsDesktopSmall:[979,1],
itemsTablet :[768,1],
itemsMobile: [479,1]
});
/*button carousel*/
$(".next_button").click(function(){
$(this).parent().find(".slider").trigger("owl.next");
});
$(".prev_button").click(function(){
$(this).parent().find(".slider").trigger("owl.prev");
});
/*button carousel*/
/*END SLIDER*/