{% if accreditations|length > 0 %}
<section class="slider overflow-x-hidden my-12">
<div class="accreditation-slider">
<div class="swiper-wrapper items-center">
{% for accreditation in accreditations %}
<div class="swiper-slide">
<div class="w-full flex flex-col justify-center items-center text-center">
{% if accreditation.url %}<a class="flex items-center" href="{{ accreditation.url }}" target="_blank">{% endif %}
<img class="h-auto max-h-[60px] w-auto max-w-full mb-3" src="{{ imageCache('/'~ accreditation.getFullImagePath, "cropResize", 200, 200) }}" height="100" width="100" alt="{{ accreditation.title }}" loading="lazy" />
{% if accreditation.url %}</a>{% endif %}
</div>
</div>
{% endfor %}
</div>
<div class="swiper-pagination"></div>
</div>
</section>
{% endif %}