h1 {
    color: var(--title-color, #0A1253);
    font-size: 50px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 30px;
    position: relative;
    margin: 0;
  }
  

 /* HEADER */
  .header {
    background:  #F4F6FF;
    overflow: hidden;
  }

  .header-banner {
    display: flex;
  }
  .header-banner_text {
    flex-basis: 60%;
    align-self: center;
  }

  .header-banner_text-p {
    color: var(--text-color-black);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-right: 80px;
  }
  
  .header-banner_img {
    flex-basis: 40%;

  }
  .header-banner_img img {
    width: 721px;
    
  }


  /* BLOC SOLUTION */
  .page h3 {
    color: var(--title-color, #0A1253);
    /* $card_title_h3 */
    font-family: Poppins;
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
  h2 {
    color: var(--inmac-colors-primary-blue-night, #172C33);
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: left;
    margin: 40px 0px -5px 0;
  }
  .card-solution {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    overflow: hidden;
    padding: 10px;
    margin: 9px 0;

    border-radius: 10px;
    border: 1px solid rgb(235, 232, 255);
    background: var(--color-card-solution, #FFF);
    box-shadow: var(--low-shadow-elevation);
    transition: ease 0.5s all;
  }

  .card-solution:hover {
    box-shadow: var(--high-shadow-elevation);
    transition: ease 0.5s all;
    transform: scale(101%);
  }
  .card-solution .media {
    margin: 0;
    flex: 40%;
  }
  .card-solution .media img {
    height: -webkit-fill-available;
    object-fit: cover;
    border-radius: 10px;
    width: 100%;

  }
  .card-solution .content {
    padding: 0 20px;
    flex: 60%;
  }

  .card-solution .content a {
    display: block;
    position: relative;
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-blue-color);
    padding: 10px 0;
    bottom: -140px;
    transition: ease 0.2s all;
  }
  .card-solution:hover .content a {
    bottom: 0px;
    transition: ease 0.2s all;
  }


  /* ==========================================================================
                            Responsive Tablette
========================================================================== */

  @media screen and (max-width: 970px) {
    .header {
      padding: 20px 0;
    }
    .card-solution .content {
      flex: 70%;
    }
    .card-solution .media {
      flex: 30%;
    }
  }

  /* ==========================================================================
                            Responsive Mobile
========================================================================== */

  @media screen and (max-width: 750px) {
    img {
      max-width: 100%;
    }
    .header {
      padding: 0;
    }
    .header .header-banner {
      flex-direction: column;
      gap: 15px;
    }
    .header-banner_img img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card-solution {
      flex-direction: column-reverse;
    }
    .card-solution .media img {
      width: 100%;
      height: 120px;
    }
    .card-solution .content a {
      display: none;
    }

   
  }
