{% trans_default_domain "MaritimeCategory" %}
<div class="insurance-offer-contract-card{% if alternate is defined and alternate %} alternate{% endif %}">
<div class="block first-block">
<div class="tag">
{{ offer.name }}
</div>
<h3 class="title">
{{ offer.title }}
</h3>
{% include "components/notation.html.twig" with {rating: offer.rating} %}
<p class="description">
{{ offer.resume }}
</p>
</div>
<div class="block second-block">
<ul>
{% for guarantee in offer.guarantees %}
<li{% if not guarantee.included %} class="not-included"{% endif %}>
{{ guarantee.text }}
</li>
{% endfor %}
</ul>
</div>
<div class="block third-block">
<p class="third-block-title">{{ 'insurance_offer.options.title'|trans }}</p>
<ul>
{% for option in offer.options %}
<li>
{{ option }}
</li>
{% endfor %}
</ul>
<p class="third-block-title">{{ 'insurance_offer.services.title'|trans }}</p>
<ul>
{% for service in offer.services %}
<li>
{{ service }}
</li>
{% endfor %}
</ul>
</div>
<a href="{{ path('app_devis_index') }}" class="button{% if alternate is defined and alternate %} button-alternate-3{% endif %}">{{ 'insurance_offer.devis.button'|trans }}</a>
</div>