<div class="sliderleft1 slider-1">
{% for slide in slides %}
<div class="item-slider">
<div class="item d-flex align-items-end justify-content-center" style="background-image: url('{{ 'uploads/images/' ~ slide.illustration }}');background-size: cover;background-position: center;">
{% if slide.title is not empty %}
<h1><strong>{{ slide.title }}</strong></h1>
{% endif %}
{# <div class="col-xl-6 my-auto">
<div class="boxed-right">
{% if slide.title is not empty %}
<h3>{{ slide.title }}</h3>
{% endif %}
{% if slide.subtitle is not empty %}
<h4>{{ slide.subtitle }}</h4>
{% endif %}
{% if slide.description is not empty %}
{{ slide.description|raw }}
{% endif %}
{% if slide.buttonTitle is not empty %}
<a href="{{ slide.buttonLink }}" class="btn btn-1">{{ slide.buttonTitle }}</a>
{% endif %}
</div>
</div> #}
</div>
</div>
{% endfor %}
</div>