jQuery(document).ready(function ($) {
    $('.testimonials_hold').each(function () {
        let number_of_slides = $(this).find('.testimonial').length;
        if (number_of_slides > 1) {
            let slick = $(this).slick({
                autoplay: false,
                arrows: true,
                dots: true,
                rows: 0
            });
        }
    });
});
