

ul li {
  list-style-type: none;
}

.slider--teams {
  position: relative;
  top: 50%;
  left: 50%;
  height: 250px;
  //750px original value
  max-width: 950px;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.slider--teams .slider--teams__team {
  position: relative;
  overflow: hidden;

  text-align: center;

}

#list {
  position: relative;

  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
#list li {
  position: relative;
  display: inline-block;
  float: left;
  text-align: center;
  //border: 1px solid lightgray;

}
#list li figure {
  cursor: pointer;
  margin: 1em;
  opacity: 0.5;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: opacity 450ms ease-in-out, -webkit-transform 450ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: opacity 450ms ease-in-out, -webkit-transform 450ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: transform 450ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 450ms ease-in-out;
  transition: transform 450ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 450ms ease-in-out, -webkit-transform 450ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -webkit-transform: scale(0.7) translateZ(0px);
          transform: scale(0.7) translateZ(0px);
}
#list li figure:hover {
  opacity: 0.8;
  -webkit-transform: scale(0.8) translateZ(0px);
          transform: scale(0.8) translateZ(0px);
}
#list li figure:active {
  opacity: 1;
  -webkit-transform: scale(0.8) translateZ(0px);
          transform: scale(0.8) translateZ(0px);
}
#list li figure > div {
  border-radius: 5px;
  position: relative;
  margin: 2rem auto;
  width: 200px;
  height: 200px;
  overflow: hidden;
  //border: 1px solid red;

}
#list li figure > div > div {
  
  //background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/953/teams.jpg) no-repeat;
  background-size: cover;
  background-position: 0px 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  //border: 1px solid red;
  - -webkit-transform: rotate(0deg) translate(0%, -70%);
          transform: rotate(0deg) translate(-50%, -50%);
          
}
#list li figure figcaption h2 {
  color: #333;
  font-size: 1.6rem;
  font-weight: 800;
}
#list li figure figcaption p {
  color: #666;
  font-size: 0.9rem;
  font-weight: 400;
}
#list li:nth-child(1) figure > div > div {/*
  //background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/953/teams.jpg) no-repeat;
  background-size: cover;
  background-position: 0px 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  //border: 1px solid red;
  - -webkit-transform: rotate(0deg) translate(0%, -70%);
          transform: rotate(0deg) translate(-50%, -50%);
          
  //background-position: 0px 0px !important;*/
}
#list li:nth-child(2) figure > div > div {
  //background-position: 0px 20% !important;
}
#list li:nth-child(3) figure > div > div {
  //background-position: 0px 40% !important;
}
#list li:nth-child(4) figure > div > div {
  //background-position: 0px 60% !important;
}
#list li:nth-child(5) figure > div > div {
  //background-position: 0px 80% !important;
}
#list li:nth-child(6) figure > div > div {
  //background-position: 0px 100% !important;
}

.active {
  opacity: 1 !important;
  -webkit-transform: scale(1) translateZ(0px) !important;
          transform: scale(1) translateZ(0px) !important;
}

.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}


@media (max-width: 700px) {
  #list li figure figcaption h2 {
    color: #333;
    font-size: 1.0rem;
    font-weight: 800;
  }
  #list li figure figcaption p {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
  }

  #list li figure > div {

    width: 100px;
    height: 100px;
  
  }

  #list li figure > div > div {
  

    width: 100px;
    height: 100px;
    
  }
}