.team-01 {
  padding: 100px 0;
  margin: 100px 0;
  background: #f7f7f7;
}

.team-01 .team-box {
  position: relative;
  z-index: 11;
  overflow: hidden;
  margin-bottom: 50px;
}

.team-01 .team-box:hover .team-content {
  opacity: 1;
  visibility: visible;
  border-radius: 10px;
}

.team-01 .team-box:hover .team-content .team-social, .team-01 .team-box:hover .team-content .team-info {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.team-01 .team-box .team-img img {
  width: 100%;
  border-radius: 10px;
}

.team-01 .team-box .team-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px 20px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 0;
  visibility: hidden;
}

.team-01 .team-box .team-content .team-info {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
}

.team-01 .team-box .team-content .team-info h5 {
  color: #fff;
}

.team-01 .team-box .team-content .team-info p {
  color: #efefef;
}

.team-01 .team-box .team-content .team-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  opacity: 0;
  visibility: hidden;
  padding-left: 0;
  list-style: none;
}

.team-01 .team-box .team-content .team-social li {
  margin: 5px;
}

.team-01 .team-box .team-content .team-social li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  position: relative;
  overflow: hidden;
  background-color: #f00;
  color: #fff;
  text-decoration: none;
}

.team-01 .team-box .team-content .team-social li a::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  padding: 50%;
  border-radius: 50%;
  background-color: rgba(0,0,0,.15);
  z-index: -1;
  color: #fff;
  -webkit-transform: translate3d(-50%,-50%,0) scale(0);
  transform: translate3d(-50%,-50%,0) scale(0);
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.team-01 .team-box .team-content .team-social li a:hover {
  color: #fff;
}

.team-01 .team-box .team-content .team-social li a:hover::before {
  -webkit-transform: translate3d(-50%,-50%,0) scale(1.5);
  transform: translate3d(-50%,-50%,0) scale(1.5);
}

.team-01 .team-box .team-content .team-social li a i {
  font-size: 16px;
}

