.our-people {
  overflow: hidden;
  background: #000;
  color: #fff;
  padding-top: 80px;
  text-align: center;
}

.our-people h2 {
  font-size: 64px;
  font-weight: 600;
  line-height: 64px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.people-carousel {
  display: flex;
  padding-bottom: 156px;
  margin-left: 152px;
}

.people-carousel .slick-list .slick-track {
  display: flex;
  gap: 24px;
}

.people-carousel .slick-list .slick-track::before, .people-carousel .slick-list .slick-track::after {
    content: unset;
}


.people-carousel .person-card {
  display: flex;
  flex-direction: column;
  height: auto;
  background: #191919;
}

.people-carousel .person-card img {
  width: 100%;
  object-fit: cover;
}

.people-carousel .person-card .info {
  padding: 48px;
  text-align: left;
}

.people-carousel .person-card .info .name {
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
  color: #ece81a;
  text-transform: uppercase;
  margin: 0;
}

.people-carousel .person-card .info .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #8c8c8e;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 24px;
}

.people-carousel .person-card .info .quote {
  font-size: 21px;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
}

.people-carousel .slick-prev,
.people-carousel .slick-next {
  background: #ece81a;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  position: absolute;
  top: unset;
  bottom: 52px;
  cursor: pointer;
  &::before {
    content: unset;
  }
}

.people-carousel .slick-prev img,
.people-carousel .slick-next img {
  margin: auto;
}

.people-carousel .slick-prev {
  left: unset;
  right: 252px;
}

.people-carousel .slick-arrow.slick-disabled {
  opacity: 0.2;
}

.people-carousel .slick-next {
  right: 176px;
}

@media (max-width: 1440px) {
  .people-carousel .slick-prev {
    right: 207px;
  }
  .people-carousel .slick-next {
    right: 131px;
  }
}

@media (max-width: 1280px) {
  .people-carousel .slick-prev {
    right: 194px;
  }
  .people-carousel .slick-next {
    right: 118px;
  }
}

@media (max-width: 1024px) {
  .people-carousel .slick-prev {
    right: 206px;
  }
  .people-carousel .slick-next {
    right: 130px;
  }
}

@media (max-width: 768px) {
  .our-people {
    padding-top: 56px;
  }
  .our-people h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 44px;
    margin-top: 0;
    margin-bottom: 36px;
  }
  .people-carousel {
    margin-left: 16px;
    padding-bottom: 92px;
  }
  .people-carousel .person-card img {
    width: 100%;
    height: 264px;
  }
  .people-carousel .person-card .info {
    padding: 24px;
  }
  .people-carousel .person-card .info .name {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
  }
  .people-carousel .person-card .info .title {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 16px;
  }
  .people-carousel .person-card .info .quote {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }
  .people-carousel .slick-prev,
  .people-carousel .slick-next {
    width: 32px;
    height: 32px;
    bottom: 24px;
  }
  .people-carousel .slick-prev img,
  .people-carousel .slick-next img {
    width: 20px;
    height: 20px;
  }
  .people-carousel .slick-prev {
    right: 74px;
  }
  .people-carousel .slick-next {
    right: 32px;
  }
}
