/* HERO TERTIARY */
.hero-tertiary {
    background: url(../images/bg-fond.png), #EDF7FF;
    position: relative;
  }
  .hero-tertiary .container {
    padding: 130px 16px 56px 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  @media screen and (min-width: 768px) {
    .hero-tertiary .container {
      padding: 228px 16px 80px 16px;
    }
  }
  @media screen and (min-width: 1281px) {
    .hero-tertiary .container {
      padding: 228px 80px 80px 80px;
    }
  }
  .hero-tertiary .container-text {
    color: var(--electricBlue);
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 1;
  }
  @media screen and (min-width: 768px) {
    .hero-tertiary .container-text {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-end;
    }
  }
  @media screen and (min-width: 768px) {
    .hero-tertiary .container-text p {
      max-width: 610px;
      width: 100%;
      font-size: 1.25rem;
      line-height: 170%;
      font-weight: 500;
    }
  }
  
  /* END HERO TERTIARY */