.home-team .heading_wrapper {
  max-width: 910px;
  margin-left: auto;
  margin-right: auto;
}
.home-team {
  border-radius: 30px;
  background: linear-gradient(0deg, #f8efe4 0%, #f8efe4 100%),
    linear-gradient(0deg, rgba(235, 212, 194, 0.1) 0%, #fffef7 100%), #faf3e9;
}
.home-team_list {
  gap: 50px;
  flex-wrap: wrap;
}
.home-team_list li {
  margin-left: 25px;
  margin-right: 25px;
}
.team-member_image > img {
  position: relative;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  aspect-ratio: 62 / 79;

  height: 100%;
}
.home-team_list li {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.home-team-list__content {
  position: absolute;
  padding: 15px 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-radius: 15px;
  background: white;
  z-index: 3;
}
.team-member_name {
  color: #69745d;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.1px;
  margin-bottom: 6px;
  display: inline-block;
  padding-right: 25px;
  position: relative;
}
.team-member_name::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../../assets/icons/verify.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 20px;
}
.team-member_job {
  display: block;
  color: #686d4f;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  text-transform: uppercase;
}
@media only screen and (max-width: 1560px) {
  .home-team_list li {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .home-team_list .slick-list {
    padding-left: 0 !important;
    padding-right: 50px !important;
  }
}
