.swiper-slide .last-news-box,
.swiper-slide .video-box,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  width: unset;
}

.swiper-wrapper {
  height: unset;
}

.pagination-swiper {
  display: flex;
  align-items: center;
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: var(--color-black);
  border-radius: var(--radius-round);
  border-right: unset;
  margin: unset;
}

.swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background-color: var(--color-black);
  border-radius: 50%;
  position: relative;
}

.swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background-color: var(--color-white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.inverted .swiper-pagination-bullet,
.inverted .swiper-pagination-bullet-active {
  background: var(--color-white);
}

.inverted .swiper-pagination-bullet-active::after {
  background-color: var(--color-black);
}