.about-page-swiper {
  position: relative;
  margin-top: 110px;
}

.about-swiper__next {
  position: absolute;
  top: 40%;
  z-index: 1;
  right: 25%;
}

.about-swiper__pagination {
  position: absolute;
  bottom: 50px !important;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.about-swiper__pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5490196078);
  width: 4px;
  height: 4px;
  border-radius: 0 !important;
  opacity: 0.8;
}
.about-swiper__pagination .swiper-pagination-bullet-active {
  position: relative;
  background: #fff;
}
.about-swiper__pagination .swiper-pagination-bullet-active::after {
  border-radius: 50%;
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  border: 1px solid #fff;
  top: -11px;
  position: absolute;
  left: -11px;
}

.about-swiper__next img {
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: 50% 50%;
  will-change: transform;
}

.about-swiper__next.is-prev img {
  transform: rotate(180deg);
}

.about-swiper__next.is-next img {
  transform: rotate(0deg);
}

.about-swiper__next.is-bounce img {
  animation: aboutArrowBounce 0.28s ease;
}

@keyframes aboutArrowBounce {
  0% {
    transform: var(--aboutArrowRotate, rotate(0deg)) translateX(0);
  }
  40% {
    transform: var(--aboutArrowRotate, rotate(0deg)) translateX(6px);
  }
  100% {
    transform: var(--aboutArrowRotate, rotate(0deg)) translateX(0);
  }
}

@media screen and (max-width: 992px){
    .about-swiper__next {
        display: none;
    }
    .about-swiper__pagination {
        display: none;
    }
}

.arrow-cursor {
    height: 110px;
    left: -75px;
    pointer-events: none;
    position: absolute;
    top: -55px;
    width: 150px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: transform; 
}

.arrow-cursor__icon {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-swiper__next, .about-swiper__prev{
  opacity: 0!important;
  width: 0;
  height: 0;
}

.about-page-swiper,
.about-page-swiper * {
  cursor: none;
}