.team-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

.team-1 a {
  color: #111;
}

.team-1 .team-item-wrapper,
.team-1 .photo {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
}

.team-1 .photo img {
  width: 200px;
  height: 280px;
  object-fit: cover;
  box-shadow: 10px 15px 25px 0 rgba(0,0,0,.2);
  display: block;
  transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
  margin-top: -10px;
}

.team-1 .grayscale img {
  filter: grayscale(100%) contrast(120%);
  -webkit-filter: grayscale(100%) contrast(120%);
}

.team-1 .photo:hover img {
  box-shadow: 1px 1px 10px 0 rgba(0,0,0,.1);
}

.team-1 .photo .glow-wrap {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  margin-top: -10px;
  max-width: 400px;
}

.team-1 .photo .glow {
  display: block;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,.2);
  top: 0;
  filter: blur(5px);
  transform: rotate(45deg) translate(-450%, 0);
  transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.team-1 .photo:hover .glow {
  transform: rotate(45deg) translate(450%, 0);
  transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform: rotate(45deg) translate(450%, 0);
  -moz-transform: rotate(45deg) translate(450%, 0);
  -ms-transform: rotate(45deg) translate(450%, 0);
  -o-transform: rotate(45deg) translate(450%, 0);
  -webkit-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.team-1 h1 {
  line-height: 1.2;
  max-width: 400px;
  text-align: center;
}

.team-1 #author {
  font-family: Helvetica, Arial;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  bottom: 25px;
  left: 50%;
  color: #888;
  z-index: 99999;
}

.team-1 #author:hover {
  color: #111;
}

@media screen and (max-width: 768px) {
  .team-1 {
    justify-content: center;
  }
}