{% if showBreadcrumb %}
  {% include 'components/_breadcrumb' with {
    breadcrumb: breadcrumb
  } %}
{% endif %}
<section class="masterHeadSimpleElement video p-relative pb-5 mb-4" data-mshs-41139>
    
    {% set contentVideo = fieldvideo ?? null %}
    {% if contentVideo %}
      <div class="masterHeadSimpleElement__video py-4">
        {% set video = contentVideo.itemType[0] ?? null %}
        {% if video %}
          {% include 'components/_blockVideo' with {
            contentVideo: video,
            type: video.type,
            titleVideo: ''
          } only %}
        {% endif %}
      </div>
    {% endif %}
    
  {% if (title|length) > 0 or (description|length) > 0 %}
    <div class="container masterHeadSimple pt-5 mt-3 text-start">
      <section class="col-12 col-lg-9">
        {% if (title|length) > 0 %}
          <div class="title">
            {{ title }}
          </div>
        {% endif %}
        {% if (description|length) > 0 %}
          <div class="description pb-3">
            {{ description }}
          </div>
        {% endif %}
        {% include 'components/_btnArrow' with {
          btn: link,
          classCustom: 'masterHeadSimple__btn',
          parentClass: 'd-inline-block mt-3'
        } only %}
      </section>
    </div>
  {% endif %}
</section>