.team .swiper-wrapper {
  max-width: fit-content;
  user-select: none;
}

.team .swiper-slide {
  width: 310px;
}

.team-element {
  display: flex;
  flex-direction: column;
}

.team-element-thumbnail {
  position: relative;
  display: flex;
}

.team-element-thumbnail-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(33, 39, 51, 0.8);
  color: white;
  padding: 48px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.team-element-info {
  background-color: #212733;
  padding: 16px 24px;
  text-align: center;
  flex: 1;
}

.team-element-info-name {
  margin: 0 0 8px;
  color: white !important;
  font-size: 26px;
  line-height: 33px;
  text-transform: uppercase;
}

.team-element-info-position {
  margin: 0;
  color: white;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
}

@media screen and (min-width: 768px) {
  .team-element:hover .team-element-thumbnail-content {
    opacity: 1;
  }
}