templates/galilea/import/components/testimonial-slide.twig line 1
<div class="flex flex-col flex-none gap-2 w-full text-white lg:flex-row overflow-clip">
<div class="relative z-10 flex-none lg:basis-2/5">
<img src="{{ image }}" alt="{{ name }}" class="block object-cover object-center rounded-2xl size-full">
</div>
<div class="p-4 rounded-2xl transition-all duration-500 lg:py-20 lg:px-10 bg-brand-50" :class="{'opacity-0 max-lg:-translate-y-full lg:-translate-x-full': !slidesInView.includes({{ loop.index - 1 }})}">
<div class="text-base lg:text-3xl lg:leading-[1.6]">{{ text }}</div>
<div class="flex flex-col pt-8 lg:flex-row lg:items-end lg:pt-24">
<div>
<div class="font-bold tracking-wider uppercase lg:text-xl">{{ name }}</div>
<div class="mt-4 leading-none text-white/70">{{ position }}</div>
</div>
<div class="lg:ml-auto">
<img src="{{ logo }}" class="block object-contain object-bottom w-40 h-20">
</div>
</div>
</div>
</div>