<div class="h-70 {% if is_mobile() %} fluid-wrapper {% endif %} page-wrapper d-flex align-items-center">
<nav class="navbar navbar-expand-lg navbar-light h-100 navbar-header p-0 w-100">
<a class="h-100 d-flex align-items-center {% if is_mobile() %}ml-15-p{% endif %}" href="{{ absolute_url('/') }}">
<img class="img-fluid logo-sm w-80" src="{{ asset("build/images/logotca.png") }}"/>
</a>
<button aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler mr-15-p" data-target="#navbarResponsive" data-toggle="collapse" type="button">
<h6 class="align-middle my-0">
<span class="navbar-toggler-icon"></span>
</h6>
</button>
<div class="collapse navbar-collapse {% if is_mobile() %} col-sm-12 p-0 border-b {% else %} offset-sm-1 col-sm-9
{% endif %} ml-12 brand-mobile mt-1-5-p" id="navbarResponsive">
<ul id="nav-item" class="navbar-nav mr-auto text-center bg-white w-100 d-flex {% if not is_mobile() %}h-50px{% endif %}">
{% for section in getContentBarSections() %}
{% include '@App/app/base/header/content_bar_item.html.twig' with {
'name': section.name,
'link': section.link,
'subSections': section.subSections,
'subSectionsRoute': section.subSectionsRoute,
'baseLink': section.baseLink
} %}
{% endfor %}
</ul>
{% if is_mobile() %}
<div class="d-flex justify-content-start align-items-center bg-white li-mobile">
{{ render(controller('App\\Controller\\SearchController::searchAction')) }}
</div>
{% else %}
{{ render(controller('App\\Controller\\SearchController::searchAction')) }}
{% endif %}
</div>
</nav>
<div id="loading_bar_prototype" class="d-none">
{% include '@App/app/loading_bar.html.twig' %}
</div>
</div>
{{ encore_entry_script_tags('search') }}