<section class="product-section product-jumbotron product-demo"
id="{{ moduleKey }}"
style="{{ module.backgroundImage is defined ? 'background-image: url(/uploads/productCmsFiles/' ~ module.backgroundImage ~ ')' : ''}}"
>
<div class="container">
<div class="product-section__content">
{% if module.title is defined %}
<h2 class="product-section__title product-demo__title">{{ module.title }}</h2>
{% endif %}
{% if module.picture is defined %}
<img src="/uploads/productCmsFiles/{{ module.picture }}" alt=""/>
{% endif %}
{% if module.file is defined %}
<div class="product-section__contentButtonRight">
<a href="/uploads/productCmsFiles/{{ module.file }}"
target="_blank"
class="button button--bordered button--with-arrow button--white button-app-white"
>
{% if module.viewFileButtonText is defined %}
{{ module.viewFileButtonText }}
{% endif %}
</a>
</div>
{% endif %}
</div>
</div>
</section>