.indicators-section {
  margin: 160px auto;
  max-width: 1264px;
  padding: 0 32px;
}

.indi-top {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-end;
}

.indi-h2 {
  max-width: 480px;
}

.indi-swiper {
  margin-top: 48px;
  overflow: unset;
}

.indi-slide {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
  max-width: 384px;
}
.indi-slide .text-sm {
  max-width: 280px;
}

.indi-value {
  margin-bottom: 24px;
  font-size: 56px;
  font-family: Medium;
  line-height: 80px;
}

.swiper-navs {
  width: 104px;
  height: 48px;
  position: relative;
}

.swiper-button-prev {
  left: unset;
  top: 0;
  margin-top: unset;
}

.swiper-button-next {
  right: 0;
  top: 0;
  margin-top: unset;
}

.swiper-button-prev:after, .swiper-button-next:after {
  display: none;
}

.swiper-nav {
  width: 48px;
  height: 48px;
  border: 1px solid #D1D5DB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-nav svg {
  height: 10px;
  width: 6px;
}

.swiper-button-prev svg {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .indicators-section {
    margin: 64px 0;
    padding: 0 16px;
  }
  .indi-swiper {
    margin-top: 24px;
  }
  .indi-top {
    gap: 16px;
  }
  .swiper-navs {
    width: 72px;
    min-width: 72px;
    height: 32px;
  }
  .swiper-nav {
    width: 32px;
    height: 32px;
  }
}