.swiper-pagination {
  position: absolute;
  width: 100%;
  top: 50%;
  margin-top: -16px;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.prev,
.next {
  position: absolute;
  margin: 10px;
  border-radius: 4px;
  background: #10182880;
  top: calc(50% - 16px);
  color: #fff;
  width: 32px;
  height: 32px;
  align-items: center;
  display: flex;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}

.prev.prev-in {
  left: 2%;
}
.next.next-in {
  right: 2%;
}

.prev.prev-out {
  left: -3%;
}
.next.next-out {
  right: -3%;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active.swiper-pagination-bullet-active-main {
  background-color: var(--color-primary-500);
}
