/* width */
::-webkit-scrollbar {
  width: 6px;
  border-radius: 6px 0 6px 0;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0 6px 6px 0;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 6px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #9f9f9f;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-slide {
  flex-shrink: 0;
  width: fit-content;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide {
  opacity: 0.25;
  filter: blur(2px);
  transition: opacity 0.5s ease;
}

.swiper-slide-active {
  opacity: 1;
  filter: blur(0);
  overflow: hidden;
}

.swiper-slide-active img {
  filter: brightness(1);
  transform: scale(1);
  transition: 0.3s ease-in-out;
}

.swiper-slide-active:hover img {
  filter: brightness(0.8);
  transform: scale(1.05);
}

@media (max-width: 539px) {
  .swiper-slide {
    width: 100%;
  }
}
