.team {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.team__item {
  height: 100vh;
  position: relative;
}
.team__item .layer {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.team__item .layer-front {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #020202;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  z-index: 2;
}
.team__item .layer-front .background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.team__item .layer-back {
  background-color: #020202;
  padding-left: 24%;
  padding-right: 24%;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 1366px) {
  .team__item .layer-back--large {
    padding-left: 15%;
    padding-right: 15%;
  }
}
.team__item .layer-back .wrapper {
  position: relative;
  top: 23%;
  text-decoration: none;
}
.team__item .layer-back .wrapper .custom-scrollbar {
  height: 450px;
  overflow: auto;
  padding-right: 20px;
}
.team__item .layer-back .wrapper .name,
.team__item .layer-back .wrapper .appointment,
.team__item .layer-back .wrapper .text {
  display: block;
  margin: 0;
}
.team__item .layer-back .wrapper .name {
  color: #FFFFFF;
  text-transform: uppercase;
}
.team__item .layer-back .wrapper .appointment {
  color: #606060;
  font-size: 13px;
  margin-top: 15px;
}
.team__item .layer-back .wrapper .text {
  font-size: 16px;
}
.team__item .layer-back .wrapper .social-network {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.team__item .layer-back .wrapper .social-network__item {
  border: none;
  color: #FFFFFF;
  font-size: 16px;
  margin-right: 10px;
}
.team__item .layer-back .wrapper .social-network__item.email {
  width: 100%;
}
.team__item.active .layer-front {
  opacity: 0.1;
  -webkit-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.team__item.active .layer-back {
  z-index: 1;
}
.team__item:hover .layer-front {
  opacity: 0.1;
  -webkit-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.team__item:hover .layer-back {
  z-index: 1;
}