{# 3D flip by https://codepen.io/edeesims/pen/wvpYWW #}

.team__carousel.splide--ttb{
  padding-top: 40px;
  padding-bottom: 40px;
}

.team__carousel.splide--ttb>.splide__arrows .splide__arrow--prev{
  top: 0;
}

.team__carousel.splide--ttb>.splide__arrows .splide__arrow--next{
  bottom: 0;
}

.team__slide{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-content: center;
}

.team__item{
  perspective: 500px;
  min-height: 210px;
  /*width: 45%;*/
  width: 100%;
  margin-bottom: 15px;
  margin-right: 15px;
}

@media(min-width: 768px){
  .team__item{
    min-height: 200px;
  }
}

@media(min-width: 1200px){
  .team__item{
    min-height: 250px;
  }
}

@media(min-width: 1920px){
  .team__item{
    min-height: 270px;
  }
}

.team__item__content{
  width: 100%;
  height: 100%;
  transition: transform 1s;
  transform-style: preserve-3d;
}

.team__item:hover .team__item__content{
  transform: rotateY( 180deg );
  transition: transform 0.5s;
}

.team__item__side{
  backface-visibility: hidden;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 50px 0px;
  overflow: hidden;
  transition: 0.3s;
}

.team__item__side--a{}
.team__item__side--b{
  transform: rotateY(180deg);
  background: #FFC500;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*@media(min-width: 1200px){
  .team__item__side--b{
    display: flex;
    align-items: center;
    justify-content: center;
  }
}*/

.team__item__side__inner{
  padding: 15px;
  font-size: 15px;
  line-height: 1.3;
}

@media(min-width: 1200px){
  .team__item__side__inner{
    font-size: 18px;
  }
}

.team__item__image{
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.team__item__fullname{
  margin-bottom: 9px;
  color: #FFFFFF;
  font-weight: 600;
}

.team__item__position{
  color: #17539E;
  font-weight: 400;
}