.about-us-top-section-wrapper {
  max-width: var(--max-screen-width);
  margin-top: 8rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
}

.about-us-top-heading {
  font-weight: var(--font-weight-bolder);
  font-size: var(--font-size-extra-large);
  line-height: 6rem;
  text-align: center;
  color: var(--blue);
  margin: 0;
}

.about-us-top-description {
  color: var(--placeholder-color);
  font-size: var(--font-size-xxm);
  line-height: 1.8125rem;
  font-weight: var(--font-weight-regular);
  text-align: center;
  margin-block: 2rem;
}

/* Responsive */
@media only screen and (max-width: 1200px) {
  .about-us-top-heading {
    font-size: var(--font-size-72);
    line-height: 5rem;
  }

  .about-us-top-section-wrapper {
    padding: 0 1.5rem;
  }
}

@media only screen and (max-width: 1080px) {
  .about-us-top-section-wrapper {
    margin-top: 5rem;
  }
}

@media only screen and (max-width: 767px) {
  .about-us-top-section-wrapper {
    margin-top: 4rem;
  }

  .about-us-top-heading {
    font-size: var(--font-size-48);
    line-height: 3.5rem;
  }
}

@media only screen and (max-width: 480px) {
  .about-us-top-heading {
    font-size: var(--font-size-48);
    line-height: 3.5rem;
  }

  .about-us-top-section-wrapper {
    padding: 0 1rem;
  }
}
