templates/Theme/Produit/Service/Service/departement.html.twig line 1

Open in your IDE?
  1. {% extends "Theme/Users/User/layoutbase.html.twig" %}
  2. {% block meta %}
  3.     {{ parent() }}
  4.     <meta name="keywords" content="{{ site }}, "/>
  5.     <meta name="author" content="Noel Kenfack"/>
  6.     <meta name="description" content="{{ site }}" />
  7. {% endblock %}
  8. {% block title %}
  9.     {{ parent() }} - Détails du service ..
  10. {% endblock %}
  11. {% block userblog_body %}
  12. <style>
  13.     /* Table List */
  14.     ul {
  15.         list-style-type: none;
  16.         padding: 0;
  17.     }
  18.     .list-check li {
  19.         display: flex;
  20.         align-items: center;
  21.         margin: 15px 0;
  22.         padding: 10px;
  23.         border-radius: 5px;
  24.         background-color: #fff; 
  25.         box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
  26.         transition: transform 0.2s; /* Effet de transition */
  27.     }
  28.     li:hover {
  29.         transform: scale(1.02); /* Agrandissement au survol */
  30.     }
  31.     .icon {
  32.         font-size: 28px; 
  33.         color: blue;
  34.         margin-right: 15px;
  35.     }
  36.     .text {
  37.         font-size: 18px;
  38.     }
  39.     .hero__v6 {
  40.         display: flex; /* Utiliser Flexbox pour la mise en page */
  41.         align-items: center; /* Aligne les éléments au centre */
  42.     }
  43.     .img-departement {
  44.         width: auto;  /* Largeur automatique pour garder le ratio */
  45.         height: 100%; /* Prend la hauteur du conteneur */
  46.         object-fit: cover; /* Remplit l'espace de manière appropriée */
  47.     }
  48.     .stat-item i {
  49.       font-size: 100px; /* Ajuste la taille selon tes besoins */
  50.       color: #fff; /* Change la couleur si nécessaire */
  51.     }
  52.   /*  btn */
  53.   .btn-3 {
  54.   color: #fff;
  55.   border: 1px solid #fff;
  56.   background-color: transparent;
  57.   font-weight: 500;
  58.   border-radius: 30px;
  59.   padding: 0px 15px 5px 15px;
  60. }
  61. .btn-3::after {
  62.   content: "➤";
  63.   margin-left: 10px;
  64.   font-size: 22px;
  65.   position: relative;
  66.   top: 3px;
  67. }
  68. .btn-3:hover {
  69.   background-color: #77cd0dff;
  70.   transform: translateY(-2px);
  71.   color: white;
  72. }
  73. /* btn-call */
  74. .btn-call {
  75.     background: #38a3fd;
  76.     border: 2px solid #38a3fd;
  77.     border-radius: 50%;
  78.     box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3);
  79.     cursor: pointer;
  80.     height: 60px;
  81.     width: 60px;
  82.     text-align: center;
  83.     position: fixed;
  84.     right: 50px;
  85.     bottom: 50px;
  86.     z-index: 999;
  87.     transition: .3s;
  88.     -webkit-animation: hoverWave linear 1s infinite;
  89.     animation: hoverWave linear 1s infinite;
  90.     display: flex;
  91.     justify-content: center;
  92.     align-items: center;
  93.         text-decoration: none;
  94. }
  95. .btn-call__ico {
  96.     display: flex;
  97.     justify-content: center;
  98.     align-items: center;
  99.     animation: 1200ms ease 0s normal none 1 running shake;
  100.     animation-iteration-count: infinite;
  101.     -webkit-animation: 1200ms ease 0s normal none 1 running shake;
  102.     -webkit-animation-iteration-count: infinite;
  103.     color: white;
  104.     font-size: 30px;
  105.     padding-top: 5px;
  106.     transition: .3s all;
  107. }
  108. .btn-call:hover {
  109.     background-color: #fff;
  110. }
  111. .btn-call:hover .btn-call__ico {
  112.     color: #38a3fd;
  113. }
  114. @-webkit-keyframes hoverWave {
  115.     0% {
  116.         box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 0 rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
  117.     }
  118.     40% {
  119.         box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 15px rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
  120.     }
  121.     80% {
  122.         box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, 0.067)
  123.     }
  124.     100% {
  125.         box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0.0)
  126.     }
  127. }
  128. @keyframes hoverWave {
  129.     0% {
  130.         box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 0 rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
  131.     }
  132.     40% {
  133.         box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 15px rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
  134.     }
  135.     80% {
  136.         box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, 0.067)
  137.     }
  138.     100% {
  139.         box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0.0)
  140.     }
  141. }
  142. /* animations icon */
  143. @keyframes shake {
  144.     0% {
  145.         transform: rotateZ(0deg);
  146.         -ms-transform: rotateZ(0deg);
  147.         -webkit-transform: rotateZ(0deg);
  148.     }
  149.     10% {
  150.         transform: rotateZ(-30deg);
  151.         -ms-transform: rotateZ(-30deg);
  152.         -webkit-transform: rotateZ(-30deg);
  153.     }
  154.     20% {
  155.         transform: rotateZ(15deg);
  156.         -ms-transform: rotateZ(15deg);
  157.         -webkit-transform: rotateZ(15deg);
  158.     }
  159.     30% {
  160.         transform: rotateZ(-10deg);
  161.         -ms-transform: rotateZ(-10deg);
  162.         -webkit-transform: rotateZ(-10deg);
  163.     }
  164.     40% {
  165.         transform: rotateZ(7.5deg);
  166.         -ms-transform: rotateZ(7.5deg);
  167.         -webkit-transform: rotateZ(7.5deg);
  168.     }
  169.     50% {
  170.         transform: rotateZ(-6deg);
  171.         -ms-transform: rotateZ(-6deg);
  172.         -webkit-transform: rotateZ(-6deg);
  173.     }
  174.     60% {
  175.         transform: rotateZ(5deg);
  176.         -ms-transform: rotateZ(5deg);
  177.         -webkit-transform: rotateZ(5deg);
  178.     }
  179.     70% {
  180.         transform: rotateZ(-4.28571deg);
  181.         -ms-transform: rotateZ(-4.28571deg);
  182.         -webkit-transform: rotateZ(-4.28571deg);
  183.     }
  184.     80% {
  185.         transform: rotateZ(3.75deg);
  186.         -ms-transform: rotateZ(3.75deg);
  187.         -webkit-transform: rotateZ(3.75deg);
  188.     }
  189.     90% {
  190.         transform: rotateZ(-3.33333deg);
  191.         -ms-transform: rotateZ(-3.33333deg);
  192.         -webkit-transform: rotateZ(-3.33333deg);
  193.     }
  194.     100% {
  195.         transform: rotateZ(0deg);
  196.         -ms-transform: rotateZ(0deg);
  197.         -webkit-transform: rotateZ(0deg);
  198.     }
  199. }
  200. @-webkit-keyframes shake {
  201.     0% {
  202.         transform: rotateZ(0deg);
  203.         -ms-transform: rotateZ(0deg);
  204.         -webkit-transform: rotateZ(0deg);
  205.     }
  206.     10% {
  207.         transform: rotateZ(-30deg);
  208.         -ms-transform: rotateZ(-30deg);
  209.         -webkit-transform: rotateZ(-30deg);
  210.     }
  211.     20% {
  212.         transform: rotateZ(15deg);
  213.         -ms-transform: rotateZ(15deg);
  214.         -webkit-transform: rotateZ(15deg);
  215.     }
  216.     30% {
  217.         transform: rotateZ(-10deg);
  218.         -ms-transform: rotateZ(-10deg);
  219.         -webkit-transform: rotateZ(-10deg);
  220.     }
  221.     40% {
  222.         transform: rotateZ(7.5deg);
  223.         -ms-transform: rotateZ(7.5deg);
  224.         -webkit-transform: rotateZ(7.5deg);
  225.     }
  226.     50% {
  227.         transform: rotateZ(-6deg);
  228.         -ms-transform: rotateZ(-6deg);
  229.         -webkit-transform: rotateZ(-6deg);
  230.     }
  231.     60% {
  232.         transform: rotateZ(5deg);
  233.         -ms-transform: rotateZ(5deg);
  234.         -webkit-transform: rotateZ(5deg);
  235.     }
  236.     70% {
  237.         transform: rotateZ(-4.28571deg);
  238.         -ms-transform: rotateZ(-4.28571deg);
  239.         -webkit-transform: rotateZ(-4.28571deg);
  240.     }
  241.     80% {
  242.         transform: rotateZ(3.75deg);
  243.         -ms-transform: rotateZ(3.75deg);
  244.         -webkit-transform: rotateZ(3.75deg);
  245.     }
  246.     90% {
  247.         transform: rotateZ(-3.33333deg);
  248.         -ms-transform: rotateZ(-3.33333deg);
  249.         -webkit-transform: rotateZ(-3.33333deg);
  250.     }
  251.     100% {
  252.         transform: rotateZ(0deg);
  253.         -ms-transform: rotateZ(0deg);
  254.         -webkit-transform: rotateZ(0deg);
  255.     }
  256. }
  257. /* Services css */
  258. /* reset default */
  259. *,
  260. *::before,
  261. *::after {
  262.   margin: 0;
  263.   padding: 0;
  264.   box-sizing: border-box;
  265. }
  266. :root {
  267.   --white: #efe;
  268.   --blackish: #23252f;
  269.   --black-light: #3d3b36;
  270.   --black-dark: #1c1c1c;
  271.   --beige-sand-light: #f9eedc;
  272.   --beige-sand-dark: #d6bb9a;
  273.   --pink-light: #fcdcdd;
  274.   --neon-green: #64ed85;
  275.   --transparent: rgba(255, 255, 255, 0);
  276.   --transition-duration: 0.5s;
  277.   --blue: #0ffbf9;
  278.   --red: #cc0f39;
  279.   --twitter: #1c96e9;
  280.   --font-size-p: clamp(1rem, 1.2vw, 1.3rem);
  281.   --font-size-h2: clamp(1.5rem, (2vw + 1rem), 2rem);
  282. }
  283. /* *********************** */
  284. {# .flex-center {
  285.   display: flex;
  286.   justify-content: center;
  287.   align-items: center;
  288.   flex-wrap: wrap;
  289. } #}
  290. .carte {
  291.   /*width: clamp(230px, 45%, 920px);*/
  292.   /* border: solid rgba(0, 0, 0, 0.2); */
  293.   max-height: 1000px;
  294.   margin: 1rem 0.8rem;
  295.   flex-grow: 0.5;
  296.   /*padding: 1rem;
  297.   border-radius: 5px;
  298.   box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2);*/
  299.   transition: 0.3s;
  300. }
  301. .carte:hover {
  302.   /*box-shadow: 0 5px 9px rgba(0, 0, 0, 0.4);*/
  303.   transition: 0.3s;
  304.   /* overflow: hidden; */
  305. }
  306. .img {
  307.   overflow: hidden;
  308.   /* border: solid red; */
  309.   display: block;
  310.   margin-bottom: 0.6rem;
  311.   border-radius: 4px 4px 4px 4px;
  312.   position: relative;
  313. }
  314. .img::before {
  315.   content: "";
  316.   position: absolute;
  317.   width: 100%;
  318.   height: 100%;
  319.   background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
  320.   left: 0;
  321.   top: 0;
  322.   z-index: 2;
  323. }
  324. .carte:hover .img::before {
  325.   /* backdrop-filter: blur(1px); */
  326.   background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
  327. }
  328. img {
  329.    /*display: inline-block;*/
  330.   /*display: block;*/
  331.    width: 100%; /* Ajuste la largeur selon tes besoins */
  332.       height: 250px; /* Ajuste la hauteur selon tes besoins */
  333.       object-fit: cover;
  334.   transition: transform 0.3s;
  335.   transform: scale(1);
  336.   filter: saturate(70%);
  337. }
  338. .carte:hover img {
  339.   transform: scale(1.1);
  340.   /* overflow: hidden; */
  341.   transition: transform 0.3s;
  342.   filter: saturate(100%);
  343. }
  344. .text-box {
  345.   overflow: hidden;
  346. }
  347. .description {
  348.   font-size: var(--font-size-p);
  349.   color: var(--black-light);
  350. }
  351. .titre {
  352.   font-size: 20px;
  353.   font-weight: bold;
  354.   color: #268dcf;
  355.   margin-bottom: 1.2rem;
  356.   position: relative;
  357. }
  358. .titre::before {
  359.   content: "";
  360.   position: absolute;
  361.   width: 30%;
  362.   height: 2px;
  363.   /* width: 100%;
  364.   height: 100%; */
  365.   /* background: red; */
  366.   border-bottom: 2.2px solid var(--beige-sand-dark);
  367.   transition: var(--transition-duration);
  368.   top: 100%;
  369.   left: -100%;
  370. }
  371. .carte:hover .titre::before {
  372.   transition: var(--transition-duration);
  373.   animation: move-to-right 1s forwards;
  374. }
  375. @keyframes move-to-right {
  376.   0% {
  377.     left: -50%;
  378.   }
  379.   40% {
  380.     left: 50%;
  381.   }
  382.   70% {
  383.     left: -20%;
  384.   }
  385.   100% {
  386.     left: 0;
  387.   }
  388. }
  389. a {
  390.   text-decoration: none;
  391.   /* color: var(--black-dark); */
  392.   font-weight: bold;
  393.   color: #007bffff;
  394. }
  395. {# css indice sections  #}
  396.     .section-head.center.wt-small-separator-outer {
  397.         margin-bottom: 50px;
  398.         text-align: center;
  399.     }
  400.     .section-head {
  401.         position: relative;
  402.     }
  403.     .site-text-primary, .wt-small-separator {
  404.         color: #ea130e;
  405.     }
  406.     .wt-small-separator {
  407.         font-family: "Heebo", sans-serif;
  408.         text-transform: uppercase;
  409.         letter-spacing: 1px;
  410.         padding-right: 40px;
  411.         font-size: 26px;
  412.         line-height: 26px;
  413.         margin-bottom: 15px;
  414.         position: relative;
  415.         display: inline-block;
  416.         font-weight: 700;
  417.     }
  418.     .section-head.center .wt-small-separator div.sep-leaf-left {
  419.         position: relative;
  420.     }
  421.     .section-head.center .wt-small-separator div.sep-leaf-left:before, .section-head.center .wt-small-separator div.sep-leaf-left:after {
  422.         background-color: #ea130e;
  423.     }
  424.     .section-head.center .wt-small-separator div.sep-leaf-left:before {
  425.         right: -20px;
  426.         width: 10px;
  427.     }
  428.     .section-head.center .wt-small-separator div.sep-leaf-left:before, .section-head.center .wt-small-separator div.sep-leaf-left:after {
  429.         position: absolute;
  430.         content: '';
  431.         height: 22px;
  432.         bottom: 0px;
  433.         top: 0px;
  434.         transform: skew(-20deg);
  435.     }
  436.     .section-head.center .wt-small-separator div.sep-leaf-left:after {
  437.         right: -27px;
  438.         width: 4px;
  439.     }
  440.     .section-head.center.wt-small-separator-outer h2 {
  441.         max-width: 630px;
  442.         margin: 0px auto;
  443.     }
  444. </style>
  445. <main>
  446.   <!-- ======= Hero =======-->
  447.   <div class="content" style="">
  448.       <div class="wrap">
  449.         <div class="container">
  450.           <ol class="breadcrumb">
  451.             <li href="#">
  452.               <a>Home</a>
  453.             </li>
  454.             <li href="#">
  455.               <a>Départements</a>
  456.             </li>
  457.             <li href="#">
  458.               <a>Département</a>
  459.             </li>
  460.           </ol>
  461.         </div>
  462.       </div>
  463.     </div>
  464.   <section class="hero__v6 section" id="home" style="margin-top: -60px;">
  465.     <div class="container">
  466.       <div class="row">
  467.         <div class="col-lg-6 mb-4 mb-lg-0">
  468.           <div class="row">
  469.             <div class="col-lg-11">
  470.               <span class="hero-subtitle text-uppercase" data-aos-delay="0">Solutions Syscofie Innovantes</span>
  471.               <h1 class="hero-title mb-3">{{ depart.name }}</h1>
  472.               <p class="hero-description">{{ depart.description }}</p>
  473.               <h1 class="hero-title mb-1">Objectifs</h1>
  474.               <ul class="list-check">
  475.                 {% for object in depart.objectifs|slice(0,4) %}
  476.                   <li><i class="bi bi-check-circle icon"></i><span class="text">{{ object["nombase"] }}</span></li>
  477.                 {% else %}
  478.                   <li><i class="bi bi-check-circle icon"></i><span class="text">Assurer une réactivité dans les services proposés</span></li>
  479.                   <li><i class="bi bi-check-circle icon"></i><span class="text">Garantir la conformité avec les obligations fiscales</span></li>
  480.                   <li><i class="bi bi-check-circle icon"></i><span class="text">Faciliter une meilleure prise de décision pour les clients</span></li>
  481.                 {% endfor %}
  482.               </ul>
  483.             </div>
  484.           </div>
  485.         </div>
  486.         <div class="col-lg-6">
  487.           <div class="hero-img" style="height: 100%;">
  488.             <img class="img-departement img-fluid rounded-4" src="{{ vich_uploader_asset(depart) }}" alt="Hero Image" style="height: 570px; width:100%;">
  489.           </div>
  490.         </div>
  491.       </div>
  492.     </div>
  493.   </section>
  494.     <!-- End Hero-->
  495.     
  496.   <!-- ======= How it works =======-->
  497.   <section class="section howitworks__v1" id="how-it-works">
  498.     <div class="container">
  499.       {# 
  500.         <div class="row">
  501.           <div class="col-md-6 text-center mx-auto"><span class="subtitle text-uppercase mb-3" data-aos="fade-up" data-aos-delay="0">Equipes</span>
  502.             <h2 data-aos="fade-up" data-aos-delay="100">Membres de Collaborations</h2>
  503.             <p data-aos="fade-up" data-aos-delay="200">Nous vous accompagnons à chaque étape, offrant conseils et soutien pour atteindre vos objectifs.</p>
  504.           </div>
  505.         </div> 
  506.       #}
  507.       <div class="section-head center wt-small-separator-outer">
  508.         <div class="wt-small-separator site-text-primary">
  509.           <div class="sep-leaf-left"></div>
  510.           <div>Equipes</div>
  511.         </div>
  512.         <h1 class="wt-title">Notre Equipe de Collaborations</h1>
  513.         {# <h2 class="mb-3" data-aos="fade-up" data-aos-delay="100">Notre Equipe de Collaborations</h2> #}
  514.         <p>Nous vous accompagnons à chaque étape, offrant conseils et soutien pour atteindre vos objectifs.</p>
  515.       </div>
  516.     </div>
  517.     
  518.   </section>
  519.     <!-- End How it works-->
  520.     
  521.     <!-- ======= Stats =======-->
  522.   <section class="stats__v3 section" style="background-color: #268dcf; margin-top: -40px;">
  523.     <div class="container">
  524.       <div class="row">
  525.         <div class="col-lg-12">
  526.           <div class="d-flex flex-wrap content rounded-4">
  527.             <div class="rounded-borders">
  528.               <div class="rounded-border-1"></div>
  529.               <div class="rounded-border-2"></div>
  530.               <div class="rounded-border-3"></div>
  531.             </div>
  532.             <div class="col-lg-4 col-md-12 col-sm-12 mb-4 mb-md-0 text-center">
  533.               <div class="stat-item">
  534.                 <span class="fw-bold"><i class="bi bi-person-fill"></i></span>
  535.                 <p class="mb-0">Responsable du Département</p>
  536.               </div>
  537.             </div>
  538.             <div class="col-lg-4 col-md-12 col-sm-12 mb-4 mb-md-0 text-center">
  539.               <div class="stat-item">
  540.                 <span class="fw-bold"><i class="bi bi-person-fill"></i></span>
  541.                 <p class="mb-0">Assistant comptable</p>
  542.               </div>
  543.             </div>
  544.             <div class="col-lg-4 col-md-12 col-sm-12 mb-4 mb-md-0 text-center" >
  545.               <div class="stat-item">
  546.                 <span class="fw-bold"><i class="bi bi-person-fill"></i></span>
  547.                 <p class="mb-0">Contrôleur Qualité Comptable</p>
  548.               </div>
  549.             </div>
  550.           </div>
  551.         </div>
  552.       </div>
  553.       <div class="text-center bd-highlight mb-3">
  554.             <button type="button" class="framed-buttons btn-3 text-center">Je souhaite échanger avec un expert</button>
  555.         </div>
  556.     </div>
  557.   </section>
  558.     <!-- End Stats-->
  559.     
  560.     <!-- ======= Start Services =======-->
  561.   <section class="section services__v3" id="services" style="margin-bottom: 40px;">
  562.     <div class="container">
  563.       {# <div class="row mt-5">
  564.         <div class="col-md-8 mx-auto text-center">
  565.           <span class="subtitle text-uppercase mb-3" data-aos="fade-up" data-aos-delay="0">Nos Services</span>
  566.           <h2 class="mb-3" data-aos="fade-up" data-aos-delay="100">Découvrez nos services comptables sur mesure, adaptés à vos besoins financiers et à votre croissance.</h2>
  567.         </div>
  568.       </div> #}
  569.       <div class="section-head center wt-small-separator-outer mt-5">
  570.         <div class="wt-small-separator site-text-primary">
  571.           <div class="sep-leaf-left"></div>
  572.           <div>Nos Services</div>
  573.         </div>
  574.         <h1 class="wt-title">Découvrez nos services comptables sur mesure, adaptés à vos besoins financiers et à votre croissance.</h1>
  575.         {# <h2 class="mb-3" data-aos="fade-up" data-aos-delay="100">Découvrez nos services comptables sur mesure, adaptés à vos besoins financiers et à votre croissance.</h2> #}
  576.         {# <p data-aos="fade-up" data-aos-delay="200">Nous vous accompagnons à chaque étape, offrant conseils et soutien pour atteindre vos objectifs.</p> #}
  577.       </div>
  578.       <div class="row" style="margin-top: -40px;">
  579.         {% for scat in depart.getSousService()|slice(0,3) %}
  580.         <div class="col-lg-4 col-md-6 col-sm-12">
  581.           <div class="carte">
  582.             <a href="{{ path('produit_service_service', {'id': scat.id}) }}">
  583.               <div class="img">
  584.                 <img src="{{ asset('templateSyscofie/images/rapport-fin.jpg') }}" alt="Nataliya Vaitkevich">
  585.               </div>
  586.               <div class="text-box ">
  587.                 <h2 class="titre">{{ scat.name }}</h2>
  588.                   En savoir plus
  589.               </div>
  590.             </a>
  591.           </div>
  592.         </div>
  593.         {% else %}
  594.         <div class="col-lg-4 col-md-6 col-sm-12">
  595.           <div class="carte">
  596.             <a href="">
  597.               <div class="img">
  598.                 <img src="{{ asset('templateSyscofie/images/scene-bureau-ordinateur-portable.jpg') }}" alt="Nataliya Vaitkevich">
  599.               </div>
  600.               <div class="text-box ">
  601.                 <h1 class="titre">Préparation des déclarations fiscales et sociales</h1>
  602.                   En savoir plus
  603.               </div>
  604.             </a>
  605.           </div>
  606.         </div>
  607.         <div class="col-lg-4 col-md-6 col-sm-12">
  608.           <div class="carte">
  609.             <a href="">
  610.               <div class="img">
  611.                 <img src="{{ asset('templateSyscofie/images/hero-img-2-min.jpg') }}" alt="Nataliya Vaitkevich">
  612.               </div>
  613.               <div class="text-box ">
  614.                 <h1 class="titre">Collecte et classement des pièces comptables</h1>
  615.                   En savoir plus
  616.               </div>
  617.             </a>
  618.           </div>
  619.         </div>
  620.         <div class="col-lg-4 col-md-6 col-sm-12">
  621.           <div class="carte">
  622.             <a href="">
  623.               <div class="img">
  624.                 <img src="{{ asset('templateSyscofie/images/tablette.jpg') }}" alt="Nataliya Vaitkevich">
  625.               </div>
  626.               <div class="text-box ">
  627.                 <h1 class="titre">Suivi des comptes tiers</h1>
  628.                 En savoir plus
  629.               </div>
  630.             </a>
  631.           </div>
  632.         </div>
  633.         <div class="col-lg-4 col-md-6 col-sm-12">
  634.           <div class="carte">
  635.             <a href="">
  636.               <div class="img">
  637.                 <img src="{{ asset('templateSyscofie/images/hero-bg-1-min.jpg') }}" alt="Nataliya Vaitkevich">
  638.               </div>
  639.               <div class="text-box ">
  640.                 <h1 class="titre">Revision periodique des comptes et ajustements</h1>
  641.                   En savoir plus
  642.               </div>
  643.             </a>
  644.           </div>
  645.         </div>
  646.         <div class="col-lg-4 col-md-6 col-sm-12">
  647.           <div class="carte">
  648.             <a href="">
  649.               <div class="img">
  650.                 <img src="{{ asset('templateSyscofie/images/presentation.jpg') }}" alt="Nataliya Vaitkevich">
  651.               </div>
  652.               <div class="text-box ">
  653.                 <h1 class="titre">Communication régulière avec les clients pour les alertes et reporting</h1>
  654.                 {# <p class="description">
  655.                   Delicate petals unfurl, carrying secrets on the gentle
  656.                   breeze. Discover the ephemeral beauty of the fleeting
  657.                   moment.
  658.                 </p> #}
  659.                 En savoir plus
  660.               </div>
  661.             </a>
  662.           </div>
  663.         </div>
  664.         {% endfor %}
  665.       </div>
  666.     </div>
  667.   </section>
  668. </main>
  669. <a href="tel: 8 888 888 88 88" rel="nofollow" class="btn-call">
  670.     <div class="btn-call__ico">
  671.         <i class="bi bi-telephone-fill"></i>
  672.     </div>
  673. </a>
  674. <div class="text-center" style="margin-top: 10px; margin-bottom: 60px;">
  675.     {# {% if nombrepage > 0 %}
  676.         {% if page > 1 and page <= nombrepage %}
  677.             {% set pagepre = page - 1 %}
  678.         {% else %}
  679.             {% set pagepre = nombrepage %}
  680.         {% endif %}
  681.         {% if page < nombrepage %}
  682.             {% set pagesuiv = page + 1 %}
  683.         {% else %}
  684.             {% set pagesuiv =  1 %}
  685.         {% endif %}
  686.         {% if nombrepage < 5 %}
  687.             {% set debut = 1 %}
  688.             {% set fin = nombrepage %}
  689.         {% else %}
  690.             {% if page > 2 and page < (nombrepage - 2) %}
  691.                 {% set debut = page - 2 %}
  692.                 {% if page + 2 >= nombrepage %}
  693.                     {% set fin = nombrepage %}
  694.                 {% else %}
  695.                     {% set fin = page + 2 %}
  696.                 {% endif %}
  697.             {% else %}
  698.                 {% if page <= 2 %}
  699.                     {% if page == 1 %}
  700.                         {% set debut = 1 %}
  701.                         {% set fin = page + 3 %}
  702.                     {% else %}
  703.                         {% set debut = 1 %}
  704.                         {% set fin = page + 2 %}
  705.                     {% endif %}
  706.                 {% else %}
  707.                     {% set debut = page - 2 %}
  708.                     {% if page + 2 >= nombrepage %}
  709.                         {% set fin = nombrepage %}
  710.                     {% else %}
  711.                         {% set fin = page + 2 %}
  712.                     {% endif %}
  713.                 {% endif %}
  714.             {% endif %}
  715.         {% endif %} #}
  716.         {# <div class="btn-group mb-4 text-center" role="group" aria-label="Basic example">
  717.             <a href="#" title="Première page" class="btn btn-outline-primary mx-2">
  718.                 <span><i class="bi bi-chevron-double-left"></i></span>
  719.             </a>
  720.             <a href="#" title="Page précedente" class="btn btn-outline-primary mx-2">
  721.                 <span><i class="bi bi-chevron-left"></i></span>
  722.             </a> #}
  723.             {# {% for p in debut..fin %}
  724.                 <a href="#" value="{{ p }}" class="btn btn-outline-primary mx-2 {% if p == page %}active{% endif %}">{{ p }}</a>
  725.             </li> #}
  726.         {# {% endfor %} #}
  727.         {# <a href="#" title="Page suivante" class="btn btn-outline-primary mx-2">
  728.             <span><i class="bi bi-chevron-right"></i></span>
  729.         </a>
  730.         <a href="#" title="Dernière page" class="btn btn-outline-primary mx-2">
  731.             <span><i class="bi bi-chevron-double-right"></i></spam>
  732.         </a>
  733.     </div>
  734.     <div class="clearfix"></div> #}
  735. {# {% else %} #}
  736.     <div class="btn-group text-center" role="group" aria-label="Basic example">
  737.         <a href="#" title="Première page" class="btn btn-outline-primary mx-2">
  738.             <span><i class="bi bi-chevron-double-left"></i></span>
  739.         </a>
  740.         <a href="#" title="Page précedente" class="btn btn-outline-primary mx-2">
  741.             <span><i class="bi bi-chevron-left"></i></span>
  742.         </a>
  743.         <a href="#" class="btn btn-outline-primary mx-2 active" style="margin: 0px 0px;">1</a>
  744.         <a href="#" title="Page suivante" class="btn btn-outline-primary mx-2">
  745.             <span><i class="bi bi-chevron-right"></i></span>
  746.         </a>
  747.         <a href="#" title="Dernière page" class="btn btn-outline-primary mx-2">
  748.             <span><i class="bi bi-chevron-double-right"></i></spam>
  749.         </a>
  750.     </div>
  751.     <script>
  752.     var swiperFade = new Swiper(".swiperFade", {
  753.     loop: true,
  754.     effect: 'fade',
  755.     navigation: {
  756.       nextEl: ".swiper-button-next",
  757.       prevEl: ".swiper-button-prev"
  758.     },
  759.     pagination: {
  760.       el: ".swiper-pagination",
  761.     },
  762.     });
  763.     var swiperVertical = new Swiper(".swiperVertical", {
  764.       loop: true,
  765.       effect: 'fade',
  766.       direction: "vertical",
  767.       pagination: {
  768.         el: ".swiper-pagination",
  769.         clickable: true,
  770.       }
  771.     });
  772.     var swiperEffect = new Swiper(".swiperEffect", {
  773.       loop: true,
  774.       effect: "cards",
  775.       grabCursor: true,
  776.       navigation: {
  777.         nextEl: ".swiper-button-next",
  778.         prevEl: ".swiper-button-prev"
  779.       },
  780.       pagination: {
  781.         el: ".swiper-pagination",
  782.       },
  783.     });
  784. </script>
  785. </div>
  786. {% endblock %}
  787. {% block javascripttemplate %}
  788. {% endblock %}