.team-item {
  width:640px	
}
.team-item .team-thumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.team-item .team-thumb img {
  display: block;
}
.team-item .team-thumb .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.team-item .team-thumb .hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: #CCC;
  padding: 10px 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, 100px, 0);
  -moz-transform: translate3d(0, 100px, 0);
  -o-transform: translate3d(0, 100px, 0);
  -ms-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 6;
}
.team-item .team-thumb .hover a {
  color: #fff;
  border: 1px solid #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  -webkit-border-radius: 30px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 30px;
  -moz-background-clip: padding;
  border-radius: 30px;
  background-clip: padding-box;
  display: inline-block;
  margin: 5px;
  font-size: 12px;
}
.team-item .team-thumb .hover a:hover {
  background: #fff;
  color: #e6772e;
}
.team-item .team-thumb:hover .overlay {
  visibility: visible;
  opacity: 1;
}
.team-item .team-thumb:hover .hover {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.team-item .team-content {
  margin-top: 20px;
  text-align: center;
}
.team-item .team-content span.role {
  color: #a8a8a8;
  font-style: italic;
}
.team-item .team-content h5 {
  font-size: 18px;
}
.team-item .team-content h5:after {
  display: block;
  content: '';
  width: 30px;
  height: 1px;
  background: #dddddd;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
}