.team-members-con {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 32px;
  margin: 3rem auto 5rem;
  max-width: 1160px;
}
.team-members-con .intro {
  flex: 0 0 100%;
}

.team_member {
  flex: 1 1 20%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.team_member a {
  text-decoration: none;
  color: unset;
}
.team_member .photo {
  aspect-ratio: 1/1;
  display: block;
  width: 100%;
  max-width: 280px;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 0 5px rgba(111, 172, 213, 0.2);
  overflow: hidden;
}
.team_member .photo img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.team_member .info {
  font-weight: 600;
}
.team_member .name {
  font-weight: 600;
  color: #1a76b8;
}
.team_member .title {
  font-size: 0.75rem;
}