         
        @media screen and (min-width: 961px) 
        { ::-webkit-scrollbar-thumb { border-radius: 10px; background-color: #ffffff; } 
        ::-webkit-scrollbar { background-color: #000; } 
        ::-webkit-scrollbar { width: 5px; height: 5px; } 
        ::-webkit-scrollbar-thumb:hover { background-color:#ff8800; } }
        
        
.custom-swiper {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.custom-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.custom-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  color: white;
}




SmoothScroll({
    // Время скролла 400 = 0.4 секунды
    animationTime    : 800,
    // Размер шага в пикселях 
    stepSize         : 75,

    // Дополнительные настройки:
    
    // Ускорение 
    accelerationDelta : 30,  
    // Максимальное ускорение
    accelerationMax   : 2,   

    // Поддержка клавиатуры
    keyboardSupport   : true,  
    // Шаг скролла стрелками на клавиатуре в пикселях
    arrowScroll       : 50,

    // Pulse (less tweakable)
    // ratio of "tail" to "acceleration"
    pulseAlgorithm   : true,
    pulseScale       : 4,
    pulseNormalize   : 1,

    // Поддержка тачпада
    touchpadSupport   : true,
})


     