<section class="container content-block js-fade-in {{ styleModifier | default(null) }} {{ anchorNavItem | default(null) ? 'js-anchor-nav__item' : '' }}"
{% if anchorNavItem | default(null) and anchorNavTitle | default(null) %}
data-anchor-nav-title="{{ anchorNavTitle }}"
{% endif %}>
{{ include('Includes/title-block.html.twig', {
title: title|default(''),
subtitle: subtitle|default(''),
isCentered: true,
styleModifier: 'js-fade-in'
}) }}
{% if geoposition|default(null) and geoposition.longitude and geoposition.latitude %}
{% set geo = geoposition.latitude ~ ',' ~ geoposition.longitude %}
{% else %}
{% set geo = street|default('') ~ ', ' ~ zip|default('') ~ ' ' ~ city|default('') %}
{% endif %}
<div class="embed-responsive embed-responsive-2by1">
<iframe width="100%" height="100%" frameborder="0" class="embed-responsive-item js-lazy-iframe" style="border:0"
data-src="https://www.google.com/maps/embed/v1/place?q={{ geo }}&key={{ googleApiKey() }}"
allowfullscreen>
</iframe>
</div>
</section>