.main-content-area {
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 6rem;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid #00a3c8;
}
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.team-card h1 {
  color: black;
  font-size: 25px;
  font-family: Inter;
  font-family: "interSemiBold";
  text-align: center;
}
.team-card h2 {
  text-align: center;
  color: #00a3c8;
  font-size: 18px;
  margin-top: 0.7rem;
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.team-card img {
  width: 300px;
  height: 300px;
}
@media screen and (max-width: 1050px) {
  .main-content-area {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 700px) {
  .team-card img {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 500px) {
  .main-content-area {
    grid-row-gap: 1rem;
  }
  .team-card img {
    width: 100%;
    height: unset;
  }
  .team-card h1 {
    font-size: 18px;
  }
  .team-card h2 {
    font-size: 14px;
  }
  .main-content-area {
    margin-bottom: 3rem;
  }
}
