/* mentions légales */

.section-title-mentions {
    padding-bottom: 60px;
    position: relative;
  }
  
  .section-title-mentions h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
  }
  
  .section-title-mentions h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
  }
  
  .section-title-mentions p {
    color: var(--heading-color);
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
  }

  @media (max-width: 767px) {
    .section-title-mentions h2 {
      font-size: 10px;
      font-weight: 500;
    }
    .section-title-mentions p {
      font-size: 16px;
    }
    .section-title-mentions {
        padding-bottom: 60px;
    }
      .section-title-mentions h2::after {
        content: "";
        width: 120px;
        height: 1px;
        display: inline-block;
        background: none;
        margin: 4px 10px;
      }
      .legal-content h2 {
        font-size: 20px;
        margin-bottom: 20px;
      }
  }