.about-us {
  position: relative;
  background-color: var(--colour-green);
  text-align: center;
}
.about-us .inner {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 38px 20px 40px;
  z-index: 10;
}
.about-us .lead {
  max-width: 1258px;
  margin: 0 auto;
}
.about-us h2 {
  margin-bottom: 22px;
}
.about-us p {
  margin: 0 auto;
  max-width: 1182px;
}
.about-us .stat-cards {
  display: flex;
  gap: 8px;
  margin: 24px 0 32px;
  flex-direction: column;
}
.about-us .stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1 0 0;
  background-color: var(--colour-black);
  padding: 50px 16px;
}
.about-us .stat-card p {
  font-size: 17px;
  font-weight: 500;
  line-height: normal;
  color: var(--colour-white);
}
.about-us .staff-mobile {
  background: linear-gradient(180deg, #67EEA2 0%, #000 100%);
  aspect-ratio: 375.092 / 250;
  overflow: hidden;
}
.about-us .staff-mobile img {
  width: 100%;
  height: auto;
}
.about-us .staff-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .about-us {
    padding-top: 198px;
    padding-bottom: 0;
    background: linear-gradient(180deg, #67EEA2 0%, #000 100%);
  }
  .about-us .divider:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    aspect-ratio: 1;
    width: 6.04167vw;
    max-width: 116px;
    content: "";
    background-color: var(--colour-white);
  }
  .about-us .inner {
    padding: 0 120px;
  }
  .about-us h2 {
    margin-bottom: 24px;
  }
  .about-us .stat-cards {
    flex-direction: row;
    gap: 40px;
    margin: 64px 0 80px;
  }
  .about-us .stat-card p {
    font-size: 32px;
  }
  .about-us .staff-mobile {
    display: none;
  }
  .about-us .staff-desktop {
    display: block;
    margin-top: -260px;
    position: relative;
    z-index: 1;
  }
  .about-us .staff-desktop img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 1600px) {
  .about-us .stat-cards {
    gap: 80px;
  }
  .about-us .stat-card {
    gap: 52px;
    padding: 95px 24px;
  }
}
