.team .container--tabs {
  overflow: hidden;
}
.team .container--tabs .nav-tabs {
  float: left;
  width: 100%;
  margin: 0;
  list-style-type: none;
  padding-left: 0;
}
.team .container--tabs .nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.team .container--tabs .nav-tabs > li > a {
  float: left;
  margin-right: 2px;
  line-height: 1.42857143;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.team .container--tabs .nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}
.team .container--tabs .nav-tabs > li.active > a,
.team .container--tabs .nav-tabs > li.active > a:hover,
.team .container--tabs .nav-tabs > li.active > a:focus {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}

.team .container--tabs .tab-content {
  float: left;
  width: 100%;
}
.team .container--tabs .tab-content > .tab-pane {
  display: none;
}
.team .container--tabs .tab-content > .tab-pane.active {
  display: block;
  padding: 2.5% 3.5%;
  background-color: #efefef;
}
.team .container--tabs .tab-content > .active {
  display: block;
}

.team .container--tabs .tab-content :is(p,ul,ol) {
  color: #727272;
  font-size: 16px;
  line-height: 24px;
}

/*team carousel*/
{# 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: 120px;
  width: 45%;
  margin-bottom: 15px;
  margin-right: 15px;
}

@media(min-width: 1200px){
  .team__item{
    min-height: 200px;
  }
}

@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;
}

@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;
}