<section class="product-section product-presentation" id="{{ moduleKey }}">
<div class="container">
{% if module.title is defined %}
<h2 class="product-section__title">{{ module.title }}</h2>
{% endif %}
{% if module.description is defined %}
<p>
{{ module.description|raw }}
</p>
{% endif %}
{% if module.image is defined %}
<p>
<img src="/uploads/productCmsFiles/{{ module.image }}" alt="">
</p>
{% endif %}
{% if module.points is defined %}
<ul class="icon-list icon-list--row icon-list--icons icon-list--extraTop">
{% for point in module.points %}
<li class="icon-list__item">
{% if point.icon is defined %}
<div class="icon-list__ico">
<span class="icon--{{ point.icon }}"></span>
</div>
{% endif %}
{% if point.description is defined %}
{{ point.description }}
{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
</div>
</section>