- <section
-  {% if data.id_block  is defined %}id="{{ data.id_block|lower }}"{% endif %}
-  class="container block text-left-img-right mb-5 mt-5  {% if even == 1 %}first-section{% endif %}"
-  >
-     <div class="row">
-         <div class="col-md-6 img">
-             {% if data.illustration is defined and data.illustration is not empty %}
-                 <img src="{{ asset('uploads/' ~ data.illustration.0) }}" alt="{{ data.title }}" loading="lazy">
-             {% endif %}
-         </div>
-         <div class="col-md-6 txt">
-             <div class="d-flex align-items-center">
-                 {% if data.logo_before_title is defined %}
-                     <div class="pr-3 tify {% if data.id_block  is defined %}{{ data.id_block }}{% endif %}">
-                         {#% if data.logo_before_title is defined and data.logo_before_title is not empty %}
-                             <img src="{{ asset('uploads/') ~ data.logo_before_title.0 }}" alt="{{ data.title }}" class="icon-tool-link">
-                         {% else %}
-                             <div class="tify2"></div>
-                             <div class="tify_key"></div>
-                             <div class="tify_arm"></div>
-                         {% endif %#}
-                         <div class="tify2"></div>
-                         <div class="tify_key"></div>
-                         <div class="tify_arm"></div>
-                     </div>
-                 {% endif %}
-                 <div class="txt-blc">
-                     {% if data.pre_title is defined %}
-                         <p class="pre-title">{{ data.pre_title }}</p>
-                     {% endif %}
-                     {% if data.title is defined and data.title %}
-                         <h2 class="blue">{{ data.title }}</h2>
-                     {% endif %}
-                 </div>
-             </div>
-             {% if data.description is defined and data.description is not empty %}
-                 <div class="blue-dark pb-3">
-                     {{ data.description.0|raw }}
-                 </div>
-             {% elseif 'description' ~ data.block is defined %}
-                 <div class="blue-dark pb-3">
-                     {{ data['description' ~ data.block].0|raw }}
-                 </div>
-             {% endif %}
-             {% if data.url_link is defined and data.url_link %}
-                 <a class="btn-section blue-dark" href="{{ data.url_link }}">{{ data.label_btn }}</a>
-             {% endif %}
-         </div>
-     </div>
- </section>