<section id="promotional_tours" class="section_padding_top" style="{% if zone.backgroundImage is not null %}
background-image: url({{ zone.backgroundImage }});
{% endif %}
background-position: center;
background-repeat: no-repeat;
background-size: cover; ">
<div class="container">
<!-- Section Heading -->
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-12">
<div class="section_heading_center">
<h2>{{ zone.title }}</h2>
<h5>Découvrez notre sélection des meilleures destinations</h5>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="promotional_tour_slider owl-theme owl-carousel dot_style"
style="{{ (itemZoneStyle) ?? '' }}">
{% for item in zone.items|slice(0,zone.itemsCount) %}
<div class="theme_common_box_two img_hover">
{{ include('front/main/zones/itemZone1.html.twig', {'item' : item}) }}
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</section>