.section-team-cards {
	position: relative;
	width: 100%;
	display: block;
}

.section-team-cards .team-card {
  position: relative;
}

.section-team-cards .team-card .member-img {
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  width: 256px;
  height: 256px;
}
.section-team-cards .team-card .member-img:after{
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  left: 100%;
  z-index: 2;
  transition: all 0.3s;
}
.section-team-cards .team-card .member-img:hover:after{
  left: 0;
}

.section-team-cards .team-card .member-info {
  margin-top: 30px;
}

.section-team-cards .team-card .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.section-team-cards .team-card .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 10px;
}

.section-team-cards .team-card .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}