{% 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">

    {% for section in sections %}
     <div class="m_step__block">
      <span class="m_step__number">{{loop.index}}</span>  
      <h2 class="m_step__title h4">{{section.title}}</h2>
      <div class="m_step__content">
        {{fn.apply_filters('the_content', fn.html_entity_decode(section.text))|raw}}
      </div>
    </div>
    {% endfor %}
    </div>
  {% endif %}
  {% include 'm_components/widgets/link.twig' with {textBtn: button_text, link:button_link} only %}
</section>

{% endif %}
