header {
  margin-bottom: 64px;
}

.about-us {
  margin-bottom: 200px;

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;

    h2 {
      margin-bottom: 16px;
    }

    .description {
      width: 49.2%;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      text-align: center;
      margin-bottom: 64px;
      color: var(--gray-text);

      @media (max-width: 1200px) {
        width: 80%;
      }

      @media (max-width: 992px) {
        width: 100%;
        text-align: start;
      }
    }

    .items {
      .item {
        justify-content: flex-start;
        align-items: flex-start;

        h3 {
          margin-bottom: 12px;
        }
      }
    }
  }
}