    body {
      font-family: "Roboto", sans-serif !important;
    }
    
    .sec-icon {
      position: relative;
      display: inline-block;
      padding: 0;
      margin: 0 auto;
    }
    
    .sec-icon::before {
      content: "";
      position: absolute;
      height: 1px;
      left: -70px;
      margin-top: -5.5px;
      top: 60%;
      background: #f5f5f5;
      width: 50px;
    }
    
    .sec-icon::after {
      content: "";
      position: absolute;
      height: 1px;
      right: -70px;
      margin-top: -5.5px;
      top: 60%;
      background: #333;
      width: 50px;
    }
    
    .offre-sec {
      background-color: #f5f5f5;
      column-count: 1;
    }
    
    .offre-sec span {
      color: #ff1f17;
    }
    
    .offre-sec .col {
      padding: 0 1em 1em 1em;
      text-align: center;
    }
    
    .offre-sec .service-card {
      width: 100%;
      height: 100%;
      padding: 2em 1.5em;
      border-radius: 5px;
      box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
      cursor: pointer;
      transition: 0.5s;
      position: relative;
      z-index: 2;
      overflow: hidden;
      background: #fff;
    }
    
    .offre-sec .service-card::after {
      content: "";
      width: 100%;
      height: 100%;
      background: linear-gradient(#080808, rgb(248, 7, 7));
      position: absolute;
      left: 0%;
      top: -98%;
      z-index: -2;
      transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
    }
    
    .offre-sec h3 {
      font-size: 20px;
      text-transform: capitalize;
      font-weight: 600;
      color: #1f194c;
      margin: 1em 0;
      z-index: 3;
    }
    
    .offre-sec h4 {
      font-size: 20px;
      text-transform: capitalize;
      font-weight: 600;
      color: #ffff;
      margin: 1em 0;
      z-index: 3;
    }
    
    .offre-sec p {
      color: #ffff;
      font-size: 15px;
      line-height: 1.6;
      letter-spacing: 0.03em;
      z-index: 3;
    }
    
    .offre-sec .icon-wrapper {
      background-color: #171818;
      position: relative;
      margin: auto;
      font-size: 30px;
      height: 2.5em;
      width: 2.5em;
      color: #ffffff;
      border-radius: 50%;
      display: grid;
      place-items: center;
      transition: 0.5s;
      z-index: 3;
    }
    
    .offre-sec .service-card:hover:after {
      top: 0%;
    }
    
    .service-card .icon-wrapper {
      background-color: #ffffff;
      color: rgb(255, 23, 23);
    }
    
    .offre-sec .service-card:hover .icon-wrapper {
      color: #171818;
    }
    
    .offre-sec .service-card:hover h3 {
      color: #ffffff;
    }
    
    
    .card-img-top {
      width: 40vw;
      height: 30vh;
      object-fit: contain;
      }

    table.table-fit {
      width: auto !important;
      table-layout: auto !important;
    }
    table.table-fit thead th,
    table.table-fit tbody td,
    table.table-fit tfoot th,
    table.table-fit tfoot td {
      width: auto !important;
    }

    td.cellule {
      text-align: center;
      border: 1px solid #376ef9;
   
      cursor: pointer;
  }
  .tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    cursor: pointer;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
  
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
  }
  
  .tooltip.active .tooltiptext {
    visibility: visible;
  }