{#<pre>
{{ dump(footer) }}
</pre>#}
{% if footer is not null %}
<footer class="footer js-footer js-animate @@class" id="footer">
{% if footer['prefooter'] is not empty and footer['_settings']["switches"]['prefooter'] is defined and footer['_settings']["switches"]['prefooter']=='1' %}
<div class="container-fluid prefooter" style = "{% include 'parts/_footer-wrapper-styles.html.twig' with {footerType:'prefooter'}%}">
<div class="container">
<div class="row">
{% for columnNum, column in footer['prefooter'] %}
{% include 'parts/_footer-item-col.html.twig' with {footerType:'prefooter'} %}
{% endfor %}
</div>
</div>
</div>
{% endif %}
{% if footer['footer'] is not empty and footer['_settings']["switches"]['footer'] is defined and footer['_settings']["switches"]['footer']=='1' %}
<div class="container-fluid main-footer" style = "{% include 'parts/_footer-wrapper-styles.html.twig' with {footerType:'footer'}%}">
<div class="container">
<div class="row">
{% for columnNum, column in footer['footer']%}
{% include 'parts/_footer-item-col.html.twig' with {footerType:'footer'} %}
{% endfor %}
</div>
</div>
</div>
{% endif %}
{% if footer['subfooter'] is not empty and footer['_settings']["switches"]['subfooter'] is defined and footer['_settings']["switches"]['subfooter']=='1' %}
<div class="container-fluid subfooter" style = "{% include 'parts/_footer-wrapper-styles.html.twig' with {footerType:'subfooter'}%}">
<div class="container">
<div class="row">
{% for columnNum, column in footer['subfooter'] %}
{% include 'parts/_footer-item-col.html.twig' with {footerType:'subfooter'} %}
{% endfor %}
</div>
</div>
</div>
{% endif %}
</footer>
{% endif %}