<section class="section-steps gradient-main">
<div class="flex flex-col px-4 py-15 gap-10 md:px-10 lg:max-w-wrapper-834 lg:px-0 lg:mx-auto xl:max-w-wrapper-1000">
<h3 class="text-24 leading-32 text-white font-bold text-center md:text-32 md:leading-40 md:mb-0">
{{ content.stepsTitle | raw }}
</h3>
<div class="flex flex-col gap-5 md:py-5 md:flex-row md:gap-6 xl:pt-0">
<div class="flex flex-col px-5 py-8 gap-4 bg-#F3F9FF rounded-10px md:w-1/3">
<div class="flex gap-3 items-start justify-center">
<span class="text-24 leading-140p font-semibold flex items-center justify-center w-9 h-9 bg-orange-400 text-white rounded-full">1</span>
{% if content.step1Icon %}
<img src="{{ content.step1Icon.thumbnails['200x'] }}" alt="{{ content.step1Icon.description }}">
{% endif %}
</div>
<p class="text-base leading-24 text-black text-center md:text-18">
{% if content.step1Text %}
{{ content.step1Text | raw }}
{% endif %}
</p>
</div>
<div class="flex flex-col px-5 py-8 gap-4 bg-#F3F9FF rounded-10px md:w-1/3">
<div class="flex gap-3 items-start justify-center">
<span class="text-24 leading-140p font-semibold flex items-center justify-center w-9 h-9 bg-orange-400 text-white rounded-full">2</span>
{% if content.step2Icon %}
<img src="{{ content.step2Icon.thumbnails['200x'] }}" alt="{{ content.step2Icon.description }}">
{% endif %}
</div>
<p class="text-base leading-24 text-black text-center md:text-18">
{% if content.step2Text %}
{{ content.step2Text | raw }}
{% endif %}
</p>
</div>
<div class="flex flex-col px-5 py-8 gap-4 bg-#F3F9FF rounded-10px md:w-1/3">
<div class="flex gap-3 items-start justify-center">
<span class="text-24 leading-140p font-semibold flex items-center justify-center w-9 h-9 bg-orange-400 text-white rounded-full">3</span>
{% if content.step3Icon %}
<img src="{{ content.step3Icon.thumbnails['200x'] }}" alt="{{ content.step3Icon.description }}">
{% endif %}
</div>
<p class="text-base leading-24 text-black text-center md:text-18">
{% if content.step3Text %}
{{ content.step3Text | raw }}
{% endif %}
</p>
</div>
</div>
{% if content.buttonUrl and content.buttonText %}
<a href="{{ content.buttonUrl }}" class="sls__button--quote mx-auto">{{ content.buttonText }}</a>
{% endif %}
</div>
</section>