.about {
  max-width: var(--max-width-container-extralarge);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  padding: 0 1.25rem;
  @media (width >= 993px) and (width <= 1295px) {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  @media (width >= 1100px) {
    flex-direction: row;
  }
  @media (width >= 1280px) {
    padding: 0;
  }
  .about-text {
    @media (width >= 1100px) {
      max-width: 430px;
    }
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about-headline {
    font-size: 36px;
    font-style: normal;
    font-weight: var(--weight-bold);
    line-height: 133.33%;
    letter-spacing: -1.2px;
    margin-bottom: 1.5rem;

    @media (width >= 992px) {
      font-size: 3rem;
      line-height: 125%;
    }
  }
  .about-description {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem;
    & p {
      color: #374151;
    }
    & p + p {
      margin-top: 2rem;
    }
  }
  .about-group {
    display: flex;
    flex: 1;
    flex-direction: column;
    @media (width >= 668px) {
      flex-direction: row;
    }
    @media (width >= 1100px) {
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }
  }
  .about-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    & img {
      @media (width >= 668px) {
        max-width: 384px;
      }
    }
    @media (width >= 1100px) {
      padding-left: 32px;
      padding-right: 32px;
    }
  }
  .about-facts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 64px;
    margin-top: 48px;
    @media (width >= 668px) {
      padding-left: 32px;
    }
    @media (width >= 1100px) {
      min-width: 290px;
      margin-top: 0;
      margin-left: auto;
    }
    .about-facts-item {
      border-bottom: 1px solid #9ca3af;
      padding-bottom: 1rem;
      .about-facts-number {
        font-size: 2.25rem;
        font-style: normal;
        font-weight: var(--weight-bold);
        line-height: 133.33%;
        letter-spacing: -1.2px;
        margin-bottom: 0.5rem;
        @media (width >= 992px) {
          font-size: 3rem;
          line-height: 125%;
        }
      }
      .about-facts-title {
        font-size: 0.875rem;
        font-style: normal;
        font-weight: var(--weight-bold);
        line-height: 1.25rem;
        letter-spacing: 2px;
        color: #6b7280;
      }
    }
  }
}
