<section class="home-product design-program">
<div class="row justify-content-center">
<div class="col-md-10 col-12">
<h2 class="page-title mb-3" data-aos="fade-up">{{ block.title }}</h2>
<p class="text-center page-description mb-5" data-aos="fade-up">{{ block.description }}</p>
</div>
</div>
<div class="design-group-wrapper" data-aos="fade-up">
<div class="design-group">
{% set items = block.content | json_decode %}
{% for itm in items %}
<div class="item iPRO">
<a href="{{ forceSSL(url('frontend_site_page_detail',{slug:itm.url ?? 'ipro'})) }}">
<picture class="panel picture-lazy w-100" >
<img loading="lazy"
src="{{ getImageWebp(getImageBySize(itm.mainBackground,'small')) }}"
data-src="{{ getImageWebp(itm.mainBackground) }}" class="d-block w-100" alt="">
</picture>
</a>
<picture class="img-fluid picture-lazy w-100">
<img loading="lazy"
src="{{ getImageWebp(getImageBySize(itm.overBackground,'small')) }}"
data-src="{{ getImageWebp(itm.overBackground) }}"
class="d-block w-100" alt="">
</picture>
<picture class="img-fluid image-banner w-100 picture-lazy">
<img loading="lazy"
src="{{ getImageWebp(getImageBySize(itm.image,'small')) }}"
data-src="{{ getImageWebp(itm.image) }}"
class="d-block w-100" alt="">
</picture>
{% if itm.icon is defined and itm.icon is not empty %}
<picture class="img-fluid image-logo w-100 picture-lazy">
<img loading="lazy"
src="{{ getImageWebp(getImageBySize(itm.icon,'small')) }}"
data-src="{{ getImageWebp(itm.icon) }}"
class="d-block w-100" alt="{{ getImageWebp(itm.icon) }}">
</picture>
{% endif %}
{% if not isMobile %}
<img loading="lazy" src="{{ getImageWebp(itm.userImage) }}" class="img-fluid image-user d-none d-lg-block" alt="">
{% endif %}
</div>
{% endfor %}
</div>
</div>
</section>