templates/galilea/import/components/security.twig line 1
<div class="bg-brand-50 overflow-clip {{pt}} {{pb}}" {{ id ? ('id="' ~ id ~ '"')|raw }} x-reveal>
<div class="container">
<div x-reveal>
<div class="flex-none space-y-8">
{% if topline %}
<div class="inline-flex gap-2 items-center text-sm tracking-wider leading-none text-white uppercase">
<div class="bg-current rounded-full size-1"></div>
{{ topline|raw }}
</div>
{% endif %}
{% if title %}
<div class="text-3xl font-medium text-white lg:text-5xl highlight-secondary-50 lg:leading-[1.2]">{{ title|raw }}</div>
{% endif %}
</div>
</div>
<div class="-my-[30%]" x-reveal:opacitycenter>
<canvas class="w-full aspect-square" x-rive="{{ animation }}"></canvas>
</div>
<div x-reveal:stagger>
{% if text %}
<div class="ml-auto text-lg font-medium text-right text-white lg:w-1/2 leading-[1.3]">{{ text }}</div>
{% endif %}
<div class="flex gap-2 justify-end mt-10">
{% include (baseIncludePath ? baseIncludePath : '') ~ 'components/ctas.twig' with {'ctas' : ctas, 'size' : 'btn-lg', 'dot': true} %}
</div>
</div>
<div class="pt-8 mt-16 border-t border-white/10">
{% if audit_topline %}
<div x-reveal>
<div class="inline-flex gap-2 items-center mb-14 text-sm tracking-wider leading-none text-white uppercase">
<div class="bg-current rounded-full size-1"></div>
{{ audit_topline|raw }}
</div>
</div>
{% endif %}
<div class="grid grid-cols-1 gap-6 text-white lg:grid-cols-4" x-reveal:stagger>
{% for item in items %}
<div class="p-8 rounded-2xl bg-white/10">
<img src="{{ item.image }}" alt="{{ item.title }}" class="block mb-20 h-10">
<div class="text-2xl leading-[1.2]">
{{ item.title }}
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>