{% if showBlock is defined and showBlock == true %}
<section class="content-feature" id="{{ experience.blockAnchor2 }}">
<picture-component class="js-picture-component" :image="{{ picture_data(experience.blockImage2, null) }}"></picture-component>
<div class="container lazy-animation">
<h3 class="content-feature--title title-p1">{{ experience.blockTitle2 }}</h3>
{% if experience is instance_of('App\\Entity\\Landing') and isDefinedAndNotEmpty(experience.blockSubtitle2) %}
<div class="content-feature--subtitle subtitle-caps">{{ experience.blockSubtitle2 }}</div>
{% endif %}
<div class="content-feature--text">
{{ experience.blockContent2 | raw }}
{#<a href="" class="content-feature--link">#}
{#descarga nuestras rutinas#}
{#{% include 'partials/global/svg/arrow-right.svg.twig' %}#}
{#</a>#}
</div>
<div class="introduction--main-link">
{% if experience.ctaFileTitle2 %}
<a class="button green is-dark" target="_blank" href="{{ experience.ctaFile2|file_url }}">
<span>{{ experience.ctaFileTitle2 }}</span>
</a>
{% endif %}
{% if experience.secondCtaFileTitle2 %}
<a class="button green is-dark" target="_blank" href="{{ experience.secondCtaFile2|file_url }}">
<span>{{ experience.secondCtaFileTitle2 }}</span>
</a>
{% endif %}
{% if experience.thirdCtaFileTitle2 %}
<a class="button green is-dark" target="_blank" href="{{ experience.thirdCtaFile2|file_url }}">
<span>{{ experience.thirdCtaFileTitle2 }}</span>
</a>
{% endif %}
</div>
<div class="introduction--links">
{% if experience.popUpTitle2 %}
<a href="#" class="introduction--link-gallery link black js-gallery-open" data-dest="introduction--gallery">
<span>{{ experience.popUpTitle2 }}</span>
</a>
{% endif %}
{% if experience.secondPopUpTitle2 %}
<a href="#" class="introduction--link-gallery link black js-gallery-open" data-dest="introduction--gallery">
<span>{{ experience.secondPopUpTitle2 }}</span>
</a>
{% endif %}
{% if experience.thirdPopUpTitle2 %}
<a href="#" class="introduction--link-gallery link black js-gallery-open" data-dest="introduction--gallery">
<span>{{ experience.thirdPopUpTitle2 }}</span>
</a>
{% endif %}
{% if experience.ctaLinkTitle2 %}
<a class="link black" href="{{ experience.ctaLink2 }}" target="_blank">
<span>{{ experience.ctaLinkTitle2 }}</span>
</a>
{% endif %}
{% if experience.secondCtaLinkTitle2 %}
<a class="link black" href="{{ experience.secondCtaLink2 }}" target="_blank">
<span>{{ experience.secondCtaLinkTitle2 }}</span>
</a>
{% endif %}
{% if experience.thirdCtaLinkTitle2 %}
<a class="link black" href="{{ experience.thirdCtaLink2 }}" target="_blank">
<span>{{ experience.thirdCtaLinkTitle2 }}</span>
</a>
{% endif %}
</div>
</div>
{% if experience.popUpTitle2 %}
<div class="introduction--gallery js-gallery-container">
<div class="introduction--gallery-content">
<div class="introduction--gallery-slider js-gallery-slider">
{% for gallery in experience.popUpGallery2.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.secondPopUpTitle2 %}
<div class="introduction--gallery js-gallery-container">
<div class="introduction--gallery-content">
<div class="introduction--gallery-slider js-gallery-slider">
{% for gallery in experience.secondPopUpGallery2.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.thirdPopUpTitle2 %}
<div class="introduction--gallery js-gallery-container">
<div class="introduction--gallery-content">
<div class="introduction--gallery-slider js-gallery-slider">
{% for gallery in experience.thirdPopUpGallery2.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 %}
</section>
{% endif %}