.feedback {
  background-color: #E8EAED;
  position: relative;
  padding: 160px 0;
}

.feedback-business {
  background-color: #fff;
}

.feedback__title {
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.feedback__subtitle {
  font-family: 'Bebas-Neue-bold';
  position: absolute;
  font-size: 220px;
  line-height: 20px;
  color: #F0F1F3;
  z-index: 1;
}

.feedback__pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 6;
}

.feedback__pagination .swiper-pagination-bullet {
  width: 90px; 
  height: 3px; 
  border-radius: 0;
  background: rgba(205, 210, 216, 1);
  opacity: 1;
  transition: all 0.3s ease;
}

.feedback__pagination .swiper-pagination-bullet-active {
  background: #FF1493; 
  transform: none; 
}

.feedback__swiper {
  overflow: hidden;
}

.feedback__wrapper {
  display: flex;
  align-items: stretch;
}

.feedback__item {
  height: auto !important;
  width: calc(100% / 3);
  flex-shrink: 0;
  border-radius: 16px;
  background-color: #fff;
  padding: 32px;
  border: 1px solid #F0F1F3;
}

@media (max-width: 767px) {
  .feedback__item {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .feedback__item {
    width: 50%;
  }
}

.feedback__name {
  font-family: 'Montserrat-Bold';
  font-size: 20px;
  color: #000;
}

.feedback__text {
  font-size: 18px;
  line-height: 24px;
  margin-top: 8px;
  color: #000;
}

@media (max-width:1300px) {
  .feedback__subtitle {
    font-size: 120px;
  }
}

@media (max-width:1200px) {
  .feedback {
    padding: 64px 0;
  }
}

@media (max-width:768px) {
  .feedback__subtitle {
    display: none;
  }
  .feedback__title {
    margin-bottom: 24px;
  }
  .feedback__pagination {
    gap: 3px;
  }
  .feedback__pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    border-radius: 50%;
  }
}