<section class="promo-hotel">
<div class="container">
{% for hotel in promotion.hotels %}
<div class="promo-hotel--media">
<div class="media-slide {% if hotel.gallery1 and hotel.gallery1.enabled and hotel.gallery1.galleryHasMedias|length > 1 %}
js-media-slide
{% endif %}">
{% if hotel.gallery1 and hotel.gallery1.enabled and hotel.gallery1.medias %}
{% for image in hotel.gallery1.medias %}
<img src="{{ image | resize(1024)|file_url }}" alt="{{ hotel.title }}">
{% endfor %}
{% endif %}
</div>
</div>
{% endfor %}
{% for hotel in promotion.hotels %}
<div class="promo-hotel--content">
<h3 class="promo-hotel--title">Hotel
{{ hotel.title }}</h3>
<div class="promo-hotel--text">{{ hotel.introduction | raw }}</div>
<div class="promo-hotel--ksp-container">
{% for ksp in hotel.keySellingPointsHotel %}
<div class="promo-hotel--ksp">
{% include 'partials/global/svg/'~ksp.iconClass~'.svg.twig' %}
<h4 class="promo-hotel--ksp-text">{{ ksp.title }}</h4>
</div>
{% endfor %}
</div>
</div>
{% endfor %}
</div>
</section>