{% if sections or title or text %}
<section class="m_step" m-pack="premium">
  {% include 'm_components/widgets/headline.twig' with {title: title, text: text} only %}

  {% if sections %}
    <div class="m_step__wrapper">
      <div class="flex height">
        {% for section in sections %}
          <div class="m_step__block">
            <div class="m_step__content">
              <h2 class="m_step__title h4">{{section.title}}</h2>
              {{fn.apply_filters('the_content', fn.html_entity_decode(section.text))|raw}}
            </div>
            <span class="m_step__number">{{loop.index}}</span>
          </div>
        {% endfor %}
      </div>
    </div>
  {% endif %}

  
</section>

{% endif %}
