$(document).ready(function() {
    var $eventsCarousel = $('.hetsl-carousel');
    if ($eventsCarousel.length > 0) {
        $eventsCarousel.on('ready.flickity', function () {
            $(this).find('.carousel-cell').addClass('h-100');
        });

        $eventsCarousel.flickity({
            cellAlign: 'left',
            wrapAround: false,
            contain: true,
            percentPosition: true,
            lazyLoad: true
        });
    }
});
