- <!-- début section-contact -->
- <div class="container section-contact reveal">
-     <h2 class="text-center titre-contact" id="sectionContact">{{ 'front.contact.contact_us'|trans({}, 'front') }}
-     </h2>
-     <p class="text-center">{{ 'front.contact.text'|trans({}, 'front') }}</p>
-     {{ form_start(form, {attr: {autocomplete: 'off', 'novalidate': 'novalidate', 'class': 'form-contact-content' ,'id':"contact-form"} }) }}
-     <div class="row justify-content-md-center contact-box">
-         {% include 'front/layouts/flashes.html.twig' %}
-         {{ form_widget(form.origin)}}
-         {{ form_widget(form.originId)}}
-         <div class="col-md-3">
-             {% if form.name is defined %}
-                 {{ form_widget(form.name, { 'attr': {'class': 'form-background-nom-1 form-control'} })}}
-                 {{ form_errors(form.name ) }}
-             {% endif %}
-             {% if form.email is defined %}
-                 {{ form_widget(form.email, { 'attr': {'class': 'form-background-email-1 form-control'} })}}
-                 {{ form_errors(form.email) }}
-             {% endif %}
-         </div>
-         <div class="col-md-3">
-             {% if form.entreprise is defined %}
-                 {{ form_widget(form.entreprise, { 'attr': {'class': 'form-background-entreprise-1 form-control'} })}}
-                 {{ form_errors(form.entreprise ) }}
-             {% endif %}
-             {% if form.phone is defined %}
-                 {{ form_widget(form.phone, { 'attr': {'class': 'form-background-tel-1 form-control'} })}}
-                 {{ form_errors(form.phone) }}
-             {% endif %}
-         </div>
-         <div class="col-md-6">
-             <div class="form-outline">
-                 {{ form_widget(form.message, { 'attr': {'class': 'form-control msg-contact form-control'} })}}
-                 {{ form_errors(form.message) }}
-             </div>
-         </div>
-     </div>
-     
-     <div class="row">
-         <div class="col-lg-6 col-md-6 col-sm-1">
-         
-         </div>
-         <div class="col-lg-4 col-md-3  col-sm-9">
-             <div class="form-check condition">
-                 {{ form_widget(form.isAccepted, ( {'attr':{'class': 'form-check-input check-bx-contact'} }) ) }}
-                 <span class="define-msg-cond"> {{ 'front.infos.msg_mentions'|trans({}, 'front') }}
-                     <span class="link_footer">{{ menuMainHeader('pagePopine', id_mention_legale_page, 'front.menu.mentions'|trans({}, 'front')) }}</span>
-                 </span>             
-                 <label class="form-check-label" for="flexCheckDefault"></label>
-             </div>
-         </div>
-     
-         <div class="col-lg-2 col-md-3 col-sm-12 condition-btn">
-             <button type="submit" class="form-control btn-condition">{{ 'front.actions.send'|trans({}, 'front') }}</button>
-         </div>
-     </div>
- </div>
- {{ form_end(form) }}
- {% block javascripts %}
-         <script src="https://www.google.com/recaptcha/api.js" async defer></script>
- {% endblock %}