<section class="py-10 py-md-7 mb-5 overlay overlay-black overlay-60 bg-cover" style="background-image: url({{ getPostByTitle('Nos Services').image }});">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-10 col-lg-8 text-center">
<!-- Heading -->
<h1 class="display-2 fw-bold text-white">
{% if getPostByTitle('Nos Services') is not null %}
{{ getPostByTitle('Nos Services').title }}
{% endif %}
</h1>
<!-- Text -->
<div class="lead text-white-75 mb-0 text-left">
{{ getPostByTitle('Nos Services').description|raw }}
</div>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
<div class="container pt-5">
<div class="row">
<div class="col-12">
<!-- Divider -->
<!-- Categories -->
<div class="row">
{% if contentChildren(7) is not null %}
{% for child in contentChildren(7) %}
<div class="col-12 col-md-6 col-lg-4" data-aos="fade-up">
<!-- Card -->
<div class="card card-border border-dark shadow-lg mb-6 mb-md-8 mb-lg-0 lift lift-lg">
<div class="card-body text-center">
<!-- Icon -->
<div class="icon-circle bg-transparent border-1 border-warning text-white mb-5 text-center" style="width: 50%;height: 50%;border: 1px solid #f19100">
<img src="{{ child.icon }}" loading="lazy" alt="{{ child.title }}" class="img-fluid rounded border-1 border-warning w-100 text-center">
</div>
<!-- Heading -->
<h4 class="fw-bold" >
{{ child.title }}
</h4>
<!-- Text -->
<p class="text-gray-700 mb-5 text-left" style="text-align: left">
{{ child.summary|u.truncate(50, '...', false) }}
</p>
<!-- Badge -->
<span class="badge rounded-pill bg-dark-soft">
<span class="h6 text-uppercase">
<a href="{{ path('service_details',{'slug':child.slug}) }}">Lire la suite</a>
</span>
</span>
</div>
</div>
</div>
{% endfor %}
{% endif %}
</div> <!-- / .row -->
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</section>
<div class="position-relative">
<div class="shape shape-bottom shape-fluid-x text-light">
<svg viewBox="0 0 2880 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 48h2880V0h-720C1442.5 52 720 0 720 0H0v48z" fill="currentColor"/>
</svg>
</div>
</div>