
  html,
  body {
    height: 100%;
    padding: 0;
    margin: 0;
  }
  
  html {
    font-family: Calibri,'Calibri W01 Regular',Arial,sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #002877;
    scroll-behavior: smooth;
  }

  header, section, footer{
    padding: 2rem 0;
  }
  
  h2 {
    margin-top: 0;
    margin-bottom: 12px;
  }

  p{
    margin-bottom: 0;
  }
  
  a {
    color: #fff;
  }

  img {
    max-inline-size: 100%;
    block-size: auto;
    object-fit: contain;
  }
  
  .hide-mobile {
    display: block;
  }

  .vertical-center{
    align-content: center;
  }
  
  .text-center {
    text-align: center;
  }
  
  .fw-bold {
    font-weight: bold;
  }

/** Layout **/

  .container {
    padding: 0 24px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
  }
  
  .row {
    display: flex;
    margin: 0 -12px;
    box-sizing: border-box;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .col {
    flex: 0 0 auto;
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
  }

/** Media QUERY**/
  
  @media (min-width: 992px) {
    
    .col-lg-4 {
      flex: 1 0 33.3333%;
      width: 33.3333%;
    }
    
    .col-lg-6 {
      flex: 1 0 50%;
      width: 50%;
    }

    .col-lg-8 {
      flex: 1 0 66.66%;
      width: 66.66%;
    }

    img {
      display: block;
    }
  }


  @media (min-width: 1280px) {
    .col-xl-4 {
      flex: 1 0 33.3333%;
      width: 33.3333%;
    }
    
    .col-xl-6 {
      flex: 1 0 50%;
      width: 50%;
    }

    .col-xl-8 {
      flex: 1 0 66.66%;
      width: 66.66%;
    }

  }

  @media (max-width: 1279px) {
    .plateau-tech-bloc p{
      margin-bottom: 18px;
    }
  }

  @media (max-width: 991px) {
    .mobile-center{
      text-align: center;
    }
  }


/*** HEADER **/
    .header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1558px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .header h1{
    margin-bottom: 0;
  }
   
  /** equipe-lead-bloc */

  .equipe-lead-bloc{
    color: #fff;
    background-color: #002060;
  }

  .equipe-lead-bloc li{
    list-style-type: "\2605";
    padding-left: 10px;
  }

  .equipe-lead-bloc li::marker{
    color: #e4c238;
    text-shadow: 0 0 5px #e4c238;
    font-size: 1.4em;
    line-height: 1em;
  }




  /** plateau-tech-bloc **/
  .plateau-tech-bloc{
    background-color: #00A4FF;
    color: #002877;
  }

  .plateau-tech-img-bloc{
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .plateau-tech-img-bloc iframe{
    display: inline-block;
    max-width: 100%;
  }


  /** laboratoire-bloc **/
  .laboratoire-bloc img{
    margin-bottom: 10px;
  }
  

  footer {
    background-color: #002060;
    color: white;
  }

  footer ul{
    list-style: none;
    padding: 0;
  }

  footer a{
    color: #00A4FF;
  }

  footer li{
    list-style: none;
  }