

.team-item-wrap {
  border: 1px solid rgba(64,64,64,.3);
  height: 220px;
  width: 220px;
  padding: 10px;
}

.team-item {
  height: 198px;
  width: 198px;
  background-color: #444;
  overflow: hidden;
  position: relative;
}

.team-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.team-social-link-wrap {
  background-color: #DDD;
  color: #333;
  border-radius: .3rem;
  height: 20px;
  width: 20px;
  font-size: .6rem;
  cursor: pointer;
  transition: all 300ms ease-out;
  transform: translateY(120px);
}

.team-social-link-wrap:hover {
  background-color: #222;
  color: #DDD;
}

.team-item:hover > .team-social-link-wrap {
  transform: translateY(60px);
}
