<section class="introduction type-2" id="{{ experience.blockAnchor3 }}">
<div class="container">
<div class="introduction--media">
{% if experience.blockGallery3 %}
{% for galleryHasMedia in experience.blockGallery3.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 %}
{% endif %}
</div>
<div class="introduction--content lazy-animation">
<h3 class="introduction--title">{{ experience.blockTitle3 }}</h3>
<div class="introduction--text">{{ experience.blockContent3 | raw }}</div>
<div class="introduction--main-link">
{% if experience.ctaFileTitle3 %}
<a class="button green is-dark" target="_blank" href="{{ experience.ctaFile3|file_url }}">
<span>{{ experience.ctaFileTitle3 }}</span>
</a>
{% endif %}
{% if experience.secondCtaFileTitle3 %}
<a class="button green is-dark" target="_blank" href="{{ experience.secondCtaFile3|file_url }}">
<span>{{ experience.secondCtaFileTitle3 }}</span>
</a>
{% endif %}
{% if experience.thirdCtaFileTitle3 %}
<a class="button green is-dark" target="_blank" href="{{ experience.thirdCtaFile3|file_url }}">
<span>{{ experience.thirdCtaFileTitle3 }}</span>
</a>
{% endif %}
</div>
<div class="introduction--links">
{% if experience.popUpTitle3 %}
<a href="#" class="introduction--link-gallery link black js-gallery-open" data-dest="introduction--gallery">
<span>{{ experience.popUpTitle3 }}</span>
</a>
{% endif %}
{% if experience.secondPopUpTitle3 %}
<a href="#" class="introduction--link-gallery link black js-gallery-open" data-dest="introduction--gallery">
<span>{{ experience.secondPopUpTitle3 }}</span>
</a>
{% endif %}
{% if experience.thirdPopUpTitle3 %}
<a href="#" class="introduction--link-gallery link black js-gallery-open" data-dest="introduction--gallery">
<span>{{ experience.thirdPopUpTitle3 }}</span>
</a>
{% endif %}
{% if experience.ctaLinkTitle3 %}
<a class="link black" href="{{ experience.ctaLink3 }}" target="_blank">
<span>{{ experience.ctaLinkTitle3 }}</span>
</a>
{% endif %}
{% if experience.secondCtaLinkTitle3 %}
<a class="link black" href="{{ experience.secondCtaLink3 }}" target="_blank">
<span>{{ experience.secondCtaLinkTitle3 }}</span>
</a>
{% endif %}
{% if experience.thirdCtaLinkTitle3 %}
<a class="link black" href="{{ experience.thirdCtaLink3 }}" target="_blank">
<span>{{ experience.thirdCtaLinkTitle3 }}</span>
</a>
{% endif %}
</div>
</div>
{% if experience.popUpTitle3 %}
<div class="introduction--gallery js-gallery-container">
<div class="introduction--gallery-content">
<div class="introduction--gallery-slider js-gallery-slider">
{% for media in experience.popUpGallery3.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 %}
</div>
</div>
</div>
{% endif %}
{% if experience.secondPopUpTitle3 %}
<div class="introduction--gallery js-gallery-container">
<div class="introduction--gallery-content">
<div class="introduction--gallery-slider js-gallery-slider">
{% for media in experience.secondPopUpGallery3.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 %}
</div>
</div>
</div>
{% endif %}
{% if experience.thirdPopUpTitle3 %}
<div class="introduction--gallery js-gallery-container">
<div class="introduction--gallery-content">
<div class="introduction--gallery-slider js-gallery-slider">
{% for gallery in experience.thirdPopUpGallery3.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>