.about-team {
  max-width: 100vw;
  padding-top: 5vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.team-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.team-card {
  /* min-width: 80vw; */
  max-width: 80vw;
  margin-bottom: 2rem;
}
.key-staff {
  display: grid;
  flex-direction: column;
  justify-content: center;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  justify-items: center;
  align-items: center;
}
.team-card-keystaff {
  min-width: 30vw;
  max-width: 30vw;
}
@media (max-width: 1024px) {
  .key-staff {
    grid-template-columns: 1fr 1fr;
  }
  .team-card-keystaff {
    min-width: 47vw;
    max-width: 47vw;
  }
  .team-section {
    margin-bottom: 2rem;
  }
  .about-team-section {
    margin-top: 7vh;
  }
}
@media (max-width: 640px) {
  .key-staff {
    display: flex;
  }
  .team-card {
    max-width: 90vw;
  }
  .team-card-keystaff {
    min-width: 90vw;
    max-width: 90vw;
    min-height: none;
    max-height: none;
  }
  .about-team-section {
    margin-top: 10vh;
  }
}
