<div class="bg-{{ background }} py-5" id="video">
<div class="container py-3 py-md-5">
<div class="row gx-0 gx-lg-5">
<div class="col-12 col-lg-6 order-2 order-lg-{{ order.video ?? '1' }}">
<video class="d-block mx-auto" width="600" height="400" controls>
<source src="{{ url }}" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="col-12 col-lg-6 mb-4 mb-lg-0 order-1 order-lg-{{ order.text ?? '2' }}">
<div>
{% if (title is defined) %}
<h2 class="mb-3 mb-md-5 point {{ darkPoint|default(false) ? 'dark' : 'light' }}">{{ title }}</h2>
{% endif %}
<div class="mb-4 {{ title is not defined ? 'teaser-text' : '' }}">{{ text|raw }}</div>
</div>
</div>
</div>
</div>
</div>