<section class="introduction" id="{{ experience.blockAnchor1 }}">
<div class="container">
{% if experience.blockGallery1 %}
<div class="introduction--media">
{% for galleryHasMedia in experience.blockGallery1.galleryHasMedias %}
<div class="introduction {{ loop.first ? 'is-medium' : 'is-small' }} lazy-animation">
<picture-component class="js-picture-component is-absolute" :image="{{ picture_data(galleryHasMedia.media, null) }}"></picture-component>
</div>
{% endfor %}
</div>
{% endif %}
<div class="introduction--content lazy-animation">
<h3 class="introduction--title">{{ experience.blockTitle1 }}</h3>
<div class="introduction--text">{{ experience.blockContent1 | raw }}</div>
<div class="introduction--main-link">
{% if experience.ctaFileTitle1 %}
<a class="button green is-dark" target="_blank" href="{{ experience.ctaFile1|file_url }}">
<span>{{ experience.ctaFileTitle1 }}</span>
</a>
{% endif %}
{% if experience.secondCtaFileTitle1 %}
<a class="button green is-dark" target="_blank" href="{{ experience.secondCtaFile1|file_url }}">
<span>{{ experience.secondCtaFileTitle1 }}</span>
</a>
{% endif %}
{% if experience.thirdCtaFileTitle1 %}
<a class="button green is-dark" target="_blank" href="{{ experience.thirdCtaFile1|file_url }}">
<span>{{ experience.thirdCtaFileTitle1 }}</span>
</a>
{% endif %}
</div>
<div class="introduction--links">
{% if experience.popUpTitle1 %}
<a href="#" class="introduction--link-gallery link black js-gallery-open" data-dest="introduction--gallery">
<span>{{ experience.popUpTitle1 }}</span>
</a>
{% endif %}
{% if experience.secondPopUpTitle1 %}
<a href="#" class="introduction--link-gallery link black js-gallery-open" data-dest="introduction--gallery">
<span>{{ experience.secondPopUpTitle1 }}</span>
</a>
{% endif %}
{% if experience.thirdPopUpTitle1 %}
<a href="#" class="introduction--link-gallery link black js-gallery-open" data-dest="introduction--gallery">
<span>{{ experience.thirdPopUpTitle1 }}</span>
</a>
{% endif %}
{% if experience.ctaLinkTitle1 %}
<a class="link black" href="{{ experience.ctaLink1 }}" target="_blank">
<span>{{ experience.ctaLinkTitle1 }}</span>
</a>
{% endif %}
{% if experience.secondCtaLinkTitle1 %}
<a class="link black" href="{{ experience.secondCtaLink1 }}" target="_blank">
<span>{{ experience.secondCtaLinkTitle1 }}</span>
</a>
{% endif %}
{% if experience.thirdCtaLinkTitle1 %}
<a class="link black" href="{{ experience.thirdCtaLink1 }}" target="_blank">
<span>{{ experience.thirdCtaLinkTitle1 }}</span>
</a>
{% endif %}
</div>
</div>
{% if experience.popUpTitle1 %}
<div class="introduction--gallery js-gallery-container">
<div class="introduction--gallery-content">
<div class="introduction--gallery-slider js-gallery-slider">
{% if experience.popUpGallery1 %}
{% for media in experience.popUpGallery1.medias %}
{% if media is youtubeVideo %}
<a data-src="{{ media|media_url }}">
<img src="{{ get_thumbnail_url(media) }}">
</a>
{% else %}
<a data-src="{{ media|resize(1280)|file_url }}">
<img src="{{ media|resize(1280)|file_url }}">
</a>
{% endif %}
{% endfor %}
{% endif %}
</div>
</div>
</div>
{% endif %}
{% if experience.secondPopUpTitle1 %}
<div class="introduction--gallery js-gallery-container">
<div class="introduction--gallery-content">
<div class="introduction--gallery-slider js-gallery-slider">
{% for gallery in experience.secondPopUpGallery1.galleryHasMedias %}
{% if gallery.media is youtubeVideo %}
<a data-src="{{ gallery.media|media_url }}">
<img src="{{ get_thumbnail_url(gallery.media) }}">
</a>
{% else %}
<a data-src="{{ gallery.media|resize(1280)|file_url }}">
<img src="{{ gallery.media|resize(1280)|file_url }}">
</a>
{% endif %}
{% endfor %}
</div>
</div>
</div>
{% endif %}
{% if experience.thirdPopUpTitle1 %}
<div class="introduction--gallery js-gallery-container">
<div class="introduction--gallery-content">
<div class="introduction--gallery-slider js-gallery-slider">
{% for gallery in experience.thirdPopUpGallery1.galleryHasMedias %}
{% if gallery.media is youtubeVideo %}
<a data-src="{{ 'https://www.youtube.com/watch?v='~gallery.media.providerReference }}">
<img src="{{ gallery.media|resize(1280)|file_url }}">
</a>
{% else %}
<a data-src="{{ gallery.media|resize(1280)|file_url }}">
<img src="{{ gallery.media|resize(1280)|file_url }}">
</a>
{% endif %}
{% endfor %}
</div>
</div>
</div>
{% endif %}
</div>
</section>