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

.about-swiper__next {
  position: absolute;
  top: 40%;
  z-index: 1;
  right: 25%;
}
.one-projects-swiper .swiper-slide-next img {
  opacity: 1 !important;
}
.about-swiper__pagination {
  position: absolute;
  bottom: 50px !important;
  z-index: 11;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.about-swiper__pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5490196078);
  width: 4px;
  height: 4px;
  border-radius: 0 !important;
  opacity: 0.8;
  min-width: 4px;
}
.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);
  }
}

.one-projects-swiper .swiper-slide img{
  height: 670px;
  object-fit: cover;
  width: auto;
  transform: translate3d(0px, 0, 0px)!important;
  cursor: none;
}
 
.one-projects-swiper {
  overflow: hidden;
}

.one-projects-swiper .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.one-projects-swiper .swiper-slide img {
  height: 670px;     
  width: auto;        
  max-width: none;    
  object-fit: contain;
  display: block;
}

.one-projects-swiper .swiper-slide-next img {
  opacity: 1 !important;
}

.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);
}

.one-projects-swiper {
    cursor: none;
}

.about-swiper__next, .about-swiper__prev{
  opacity: 0!important;
  width: 50%;
  height: 100%;
}

.about-swiper__next{
  top: 0;
  right: 0;
}

.about-swiper__prev{
  top: 0;
  left: 0;
  position: absolute;
  z-index: 5555;
}

@media screen and (max-width: 1200px){
  .one-projects-swiper .swiper-slide img{
    height: 550px;
  }
}

@media screen and (max-width: 600px){
  .one-projects-swiper .swiper-slide img{
    height: 300px;
  }

  .about-swiper__pagination{
    gap: 15px;
    bottom: 20px!important;
  }

  .about-swiper__next, .about-swiper__prev{
    display: none;
  }
}
