var owlItem = $("b-owl__el-item");
$(owlItem).each(function(){
if($(this).length < 6) {
$(".b-owl__navigation__el-next").css('display', 'none');
$(".b-owl__navigation__el-prev").css('display', 'none');
}
else {
$(".b-owl__navigation__el-next").css('display', '');
$(".b-owl__navigation__el-prev").css('display', '');
}
console.log(owlItem.length);
});