{% if testimonials|length > 0 %}
<section class="slider overflow-x-hidden">
<div class="testimonial-slider">
<div class="swiper-wrapper">
{% for testimonial in testimonials %}
<div class="swiper-slide">
<div class="w-full flex flex-col justify-center items-center text-center">
{% if testimonial.image %}
<img class="h-auto max-h-[60px] w-auto max-w-full mb-3" src="{{ imageCache('/'~ testimonial.getFullImagePath, 'cropResize', 150, 150) }}" height="60" width="60" alt="{{ testimonial.clientName }}" loading="lazy" />
{% endif %}
<p class="text-xl font-light mb-2">{{ testimonial.content }}</p>
<p class="text-sm font-bold mb-0 text-secondary">{{ testimonial.attestant }}</p>
<p class="text-sm text-secondary">{{ testimonial.jobTitle }}</p>
</div>
</div>
{% endfor %}
</div>
<div class="swiper-pagination"></div>
</div>
</section>
{% endif %}