Sometimes we need a half slider from the right side. for this, we use stage padding in owl carousel but by stage padding first and last both items show half that we don’t want. so if you want half slider only from the right side you should use this trick in owl carousel.
$('.owl-carousel').owlCarousel({
loop:true,
margin:10,
autoplay:true,
nav:true,
responsive:{
0:{
items:1.5
},
1000:{
items:3.5
}
}
});