<div class="row row-history">
<div class="col-md-10 offset-md-1">
{% if getHistoryItems()|default(0) %}
{% for key, section in getHistoryItems() %}
{% if (key + 1) % 2 != 0 %}
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 col-xl-6 vertical-line pt-9">
<h4 class="ct-blue fs-60 text-end mb-0-5r ff-os-bold parent-p">{{ section.title|raw }}</h4>
{% if section.subTitle %}
<div class="ct-blue ff-os-bold fs-18 mb-0-5r text-end">
{{ section.subTitle|raw }}
</div>
{% endif %}
<div class="timeline-body ct-blue ff-os-regular fs-18">
{{ section.content|raw }}
</div>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 col-xl-6"></div>
</div>
{% else %}
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 col-xl-6 vertical-line"></div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6 col-xl-6 pt-15">
<h4 class="ct-blue fs-60 ff-os-bold parent-p">{{ section.title|raw }}</h4>
{% if section.subTitle %}
<div class="ct-blue ff-os-bold fs-18 mb-0-5r parent-p">
{{ section.subTitle|raw }}
</div>
{% endif %}
<div class="timeline-body ct-blue ff-os-regular fs-18">
{{ section.content|raw }}
</div>
</div>
</div>
{% endif %}
{% endfor %}
{% endif %}
</div>
</div>