
.team-slider .slick-track {
  display: flex;
  padding-bottom: 30px;
  gap: 20px;
}

.slick-track:before, .slick-track:after {
  display: none;
}

.team-slider .slick-arrow {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 50px;
	height: 50px;
	z-index: 10;
	background: #fff;
	border: 0;
	border-radius: 50%;
	box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-slider .catalog-slider__prev {
	left: -25px;
	right: auto;
}

.team-slider .catalog-slider__next {
	right: -25px;
	left: auto;
}

.team-slider-item {
  width: 32.3%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 3px 7px 0px #0000001f;
}

.team-slider-item img {
  height: 380px;
  width: 100%;
  object-fit: cover;
}

.team-slider-item-content {
  height: 138px;
  background: #F7F7F7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  top: -5px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.team-slider-item-name {
  color: #404040; 
  text-align: center; 
  font-size: 20px;
  font-weight: 600; 
  line-height: 125%; /* 25px */ 
  letter-spacing: 0.7px;
}

.team-slider-item-job {
  color: #808080; 
  text-align: center; 
  font-size: 14px;
  font-weight: 700; 
  line-height: 110%; /* 15.4px */ 
  letter-spacing: 0.49px;
}

@media screen and (max-width: 768px) { 
  .team-slider .slick-track {
    gap: 0px;
  }

  .team-slider-item {
    margin-right: 15px;
  }

  .team-slider-item img {
    height: 185px;
  }

  .team-slider-item-content {
    height: 90px;
  }
}