templates/galilea/import/components/testimonial-slider.twig line 1
<div class="overflow-x-clip bg-white select-none {{pt}} {{pb}}" {{ id ? ('id="' ~ id ~ '"')|raw }} x-data="testimonialSlider" x-reveal>
<div class="container">
<div class="relative">
<div class="flex absolute right-0 bottom-24 gap-6 justify-end items-center pointer-events-none">
<button class="box-content p-2 w-3 text-black transition-all pointer-events-auto hover:text-brand-50 disabled:text-black/20" x-ref="prev">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewbox="0 0 10 10"><path fill="currentColor" fill-rule="evenodd" d="m1.964 5.493 3.39 3.389-.708.707L.05 4.993 4.646.396l.708.708-3.39 3.389h7.279v1H1.964Z" clip-rule="evenodd"/></svg>
</button>
<button class="box-content p-2 w-3 text-black transition-all pointer-events-auto hover:text-brand-50 disabled:text-black/20" x-ref="next">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewbox="0 0 10 10"><path fill="currentColor" fill-rule="evenodd" d="m8.036 4.493-3.39-3.39.708-.707L9.95 4.993 5.354 9.589l-.708-.707 3.39-3.39H.757v-1h7.279Z" clip-rule="evenodd"/></svg>
</button>
</div>
</div>
<div x-ref="slider">
<div class="flex -ml-6">
{% for slide in slides %}
<div class="flex-none pl-6 basis-11/12 lg:basis-5/6">
{% include (baseIncludePath ? baseIncludePath : '') ~ 'components/testimonial-slide.twig' with slide %}
</div>
{% endfor %}
</div>
</div>
</div>
</div>