<section class="slice slice--push-expertises">
<div class="fluid-grid">
<h2 class="title--L text-violet title--br font-weight-semibold">Ces expertises peuvent<br/> aussi vous intéresser</h2>
<div class="row">
<div class="col-12 relative flex flex-col" js-slider="{options: { slidesPerView: 1.35, spaceBetween: 24, breakpoints: {768: { slidesPerView: 2.5, spaceBetween: 24 }, 1024: { slidesPerView: 3, spaceBetween: 32 }} }}">
{% include 'front/partials/slider-nav.html.twig' with {mainClass: 'swiper-navigation relative md:absolute md:top-0 md:right-0 md:-translate-y-12 z-1 flex justify-between items-center mt-6 md:mt-0 order-2 md:order-1', iconColor: 'violet', buttonFirst: 'mr-8'} %}
<div class="swiper-container relative lg:overflow-hidden w-full mt-4 md:mt-8 order-1 lg:order-2" js-slider-el>
<div class="swiper-wrapper">
{% for expertise in slice.expertises %}
{% set expertiseProperties = expertise.contentProperties %}
<div class="swiper-slide">
<a href="{{ page_url(expertise, 'front') }}" class="card card-expertise relative block bg-violet overflow-hidden">
<div class="suptitle absolute text-orange font-weight-xbold uppercase z-0">Expertise</div>
<div class="visual__wrapper absolute top-0 right-0">
<picture>
<source media="(max-width: 420px)"
data-srcset="{{ cloudinary_media(expertiseProperties.image.singleMedia, 'f_auto,c_fill,q_auto,w_129,h_189') }} 1x, {{ cloudinary_media(expertiseProperties.image.singleMedia, 'f_auto,c_fill,q_auto,w_129,h_189,dpr_2') }} 2x">
<source media="(max-width: 767px)"
data-srcset="{{ cloudinary_media(expertiseProperties.image.singleMedia, 'f_auto,c_fill,q_auto,w_288,h_412') }} 1x, {{ cloudinary_media(expertiseProperties.image.singleMedia, 'f_auto,c_fill,q_auto,w_288,h_412,dpr_2') }} 2x">
<source media="(max-width: 1279px)"
data-srcset="{{ cloudinary_media(expertiseProperties.image.singleMedia, 'f_auto,c_fill,q_auto,w_218,h_320') }} 1x, {{ cloudinary_media(expertiseProperties.image.singleMedia, 'f_auto,c_fill,q_auto,w_218,h_320,dpr_2') }} 2x">
<source media="(min-width: 1280px)"
data-srcset="{{ cloudinary_media(expertiseProperties.image.singleMedia, 'f_auto,c_fill,q_auto,w_245,h_360') }} 1x, {{ cloudinary_media(expertiseProperties.image.singleMedia, 'f_auto,c_fill,q_auto,w_245,h_360,dpr_2') }} 2x">
<img width="245" height="360" data-src="{{ cloudinary_media(expertiseProperties.image.singleMedia, 'f_auto,c_fill,q_auto,w_245,h_360') }}" class="pic relative w-full lazyload" alt="{{ expertiseProperties.image.singleMedia.alt }}" />
</picture>
<img width="226" height="319" data-src="/assets/front/card-expertise-cache.svg" alt="" aria-hidden="true" class="lazyload cache absolute top-0 left-0">
</div>
<div class="content absolute">
<div class="title text-white font-weight-semibold">{{ expertise.title }}</div>
<span class="cta-arrow cta-arrow--circle-orange text-white mt-4 lg:mt-6">
En savoir plus
<span class="cta-arrow__circle">
<svg width="8" height="8" class="icon--white">
<use href="#icon-arrow" xlink:href="#icon-arrow"></use>
</svg>
</span>
</span>
</div>
</a>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</section>