<div class="site-wrapper__bg"
style="{{ module.backgroundImage is defined ? 'background-image: url(/uploads/productCmsFiles/' ~ module.backgroundImage ~ ')' : '' }}"
></div>
<section class="jumbotron">
<div class="container">
<div class="row">
{% if module.image is defined %}
<img class="jumbotron__product"
src="/uploads/productCmsFiles/{{ module.image }}"
alt="{{ module.title is defined ? module.title : '' }}"
>
{% endif %}
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-5 col-lg-offset-1">
<header class="jumbotron__header">
{% if module.title is defined %}
<h2 class="jumbotron__heading">{{ module.title }}</h2>
{% endif %}
{% if module.description is defined %}
<h3 class="jumbotron__subheading">{{ module.description }}</h3>
{% endif %}
{% if module.linkText is defined and module.linkText is not empty and module.link is defined and module.link is not empty %}
<a class="jumbotron__button button button--white button--with-arrow"
href="{{ module.link }}"
>
{{ module.linkText }}
</a>
{% endif %}
</header>
</div>
</div>
</div>
</section>