<section class="parent-container three-photos container-fluid bg-grey">
<div class="row">
{% for index, value in entity.layoutSettings.graphic|default([]) %}
{% if value != '' %}
{% set graphic = entity.layoutSettings.graphic is defined ? custom_get_image(value) : null %}
<div class="col-sm-4 px-0 {{ index != 2 ? 'd-none d-sm-block' }}">
<div class="zoom {{ index == 1 ? 'mb-90'}}">
<img src="{{ graphic is not null ? (CONST_IMAGE_URL ~ graphic.fileName)|imagine_filter('full') }}" alt="">
</div>
</div>
{% else %}
{% endif %}
{% endfor %}
</div>
</section>