.team_container {
  margin-top: 10rem;
  padding: 0 2rem;
  margin-bottom: 2rem;
}
.images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding-top: 5rem;
}
.image-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.image-card img {
  max-width: 100%;
  height: 200px;
}
.image-card span {
  text-align: center;
}
.image-card span:nth-child(2) {
  font-weight: bold;
}
.image-card span:nth-child(1) {
  font-size: var(--fs-xs);
}
.team-subtitle {
  color: var(--darkblue);
}
.team-title {
  font-size: var(--fs-xl);
}
/* mq for team */
@media (min-width: 790px) {
  .team_container {
    padding: 0 6rem;
  }
  .team_wrapper {
    text-align: center;
  }
  .team-title {
    font-size: var(--fs-2xl);
  }
  .team-subtitle {
    font-size: var(--fs-xxl);
  }
  .team-description {
    max-width: 750px;
    margin: 0 auto;
  }
  .images-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
  }
}
