.jpage .section .slider {
  display: flex;
  overflow-x: scroll;
  position: relative;
  height: 100%;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.jpage .section .slider:focus {
  outline: none;
}

.jpage .section .slider::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.jpage .section .slider .slide {
  min-width: 100vw;
  height: 100%;
  scroll-snap-align: start;
}

.jpage .section .slider .right-slider-btn,
.jpage .section .slider .left-slider-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.jpage .section .slider .nav-slider {
  position: sticky;
  top: 92%;
  right: 50%;
  transform: translateX(50%);
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jpage .section .slider .nav-slider button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  margin: 0 4px;
  background-color: #fff;
  border: none;
  opacity: 0.5;
  transition: all 0.7s ease;
  cursor: pointer;
}

.jpage .section .slider .nav-slider button.active-slide {
  width: 12px;
  height: 12px;
  opacity: 1;
  transition: all 0.7s ease;
  margin: 6px;
}
