{% if page.description|length > 0 or page.descriptionNew|length > 0 %}
<div class="container">
<div class="container__header">
<div id="description-anchor" style="position: absolute; left: 0; top: -80px; visibility: hidden;"></div>
<h3 class="container__header-title">
{# {{ 'Туры'|trans }} в {{ page.info.nameVn }}#}
{{ seo.h1 }}
</h3>
</div>
<div class="article__short-description">
{% if route in ['app_country_search', 'app_city_search'] %}
{% if page.descriptionNew|length > 0 %}
{{ page.descriptionNew.text|raw }}
{% elseif page.description|length > 0 %}
{% for description in page.description %}
{% if description.lang == 'rus' and app.request.locale == 'ru' %}
{{ description.text|raw }}
{% endif %}
{% if description.lang == 'ukr' and app.request.locale == 'ua' %}
{{ description.text|raw }}
{% endif %}
{% endfor %}
{% endif %}
{% else %}
{% if page.descriptionNew|length > 0 %}
{{ page.descriptionNew.text|raw }}
{% endif %}
{% endif %}
</div>
</div>
{% endif %}