 
  .services-table-global {
    position: relative;
  }
  
  .services-table-main {
    width: 100%;
    height: 400px;
    margin: 0px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .services-table-main .label {
    width: calc(100% - 220px);
    border-radius: 20px;
    background-color: white;
    border: 1px solid black;
  }
  
  .services-table-main .client, .services-table-main .cabinet {
    width: 90px;
    border-radius: 20px;
    background-color: white;
    border: 1px solid black;
  }
  
  .services-table-main-2 {
    width: calc(100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
  
  .services-table-main-2 .services-table-submain {
    display: flex;
    justify-content: space-between;
  }
  
  .services-table-main-2 .services-table-submain .label {
    width: calc(100% - 220px - 60px);
    border-radius: 20px;
    padding: 10px 30px;
  }
  
  .services-table-main-2 .services-table-submain .client, .services-table-main-2 .services-table-submain .cabinet {
      width: 90px;
      border-radius: 20px;
      display: flex;
      justify-content: center;
  }

  .services-table-submain.title {
    margin-top: 20px;
    font-size: 15pt;
    font-family: var(--police-titre);
  }