{% if hotel_search_history | length > 0 %}
<!--Promotional Tours Area -->
<section id="promotional_tours" class="section_padding_top parallax"
style=" 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>{{ 'Pages.Common.Messages.HotelRecentSearch' | trans({}, 'messages_front') }}</h2>
</div>
</div>
</div>
<div class="row">
{% for item in hotel_search_history %}
<div class="col-lg-3">
{{ include('front/main/recent_search/_item.html.twig', {'item' : item}) }}
</div>
{% endfor %}
</div>
</div>
</section>
{% endif %}