<section class="product-section product-divisions" id="{{ moduleKey }}">
{% if module.header is defined %}
<div class="product-section__title-mobile-wrapper d-block d-md-none">
<div class="container">
<span class="product-section__title d-block d-md-none">{{ module.header }}</span>
</div>
</div>
{% endif %}
<div class="container">
{% if module.header is defined %}
<h2 class="product-section__title d-none d-md-block">{{ module.header }}</h2>
{% endif %}
{% if module.list is defined %}
<div class="icon-list icon-list--app-mobile">
{% for item in module.list %}
{#{{ dump(loop.index) }}#}
<div class="icon-list__item">
{% if item.icon is defined %}
<i class="icon icon--{{ item.icon }} d-none d-md-block"></i>
{% endif %}
{% if item.title is defined %}
<strong>{{ item.title }}</strong> -
{% endif %}
{% if item.description is defined %}
{{ item.description }}
{% endif %}
</div>
{% if loop.index == 3 %}
<button class="btn-mobile-read-more d-block d-md-none">Zobacz więcej</button>
<div class="icon-list-inner">
{% endif %}
{% if loop.last %}
</div>
{% endif %}
{% endfor %}
</div>
{% endif %}
</div>
</section>