.slide-container {
  max-width: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  z-index: 99;
}
.slide-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.black-strip {
  position: absolute;
  height: 100%;
  width: 160px;
  z-index: 9;
}
.black-strip.left {
  background-image: linear-gradient(
    to left,
    rgba(6, 6, 6, 0) 0%,
    rgba(6, 6, 6, 0.6) 70%,
    rgba(6, 6, 6, 1) 100%
  );
  left: 0%;
}
.black-strip.right {
  background-image: linear-gradient(
    to right,
    rgba(6, 6, 6, 0) 0%,
    rgba(6, 6, 6, 0.6) 70%,
    rgba(6, 6, 6, 1) 100%
  );
  right: 0%;
}
.slide-section-container {
  width: 100%;
  height: 170px;
  margin: 0 auto 6em auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.slide-section-container::-webkit-scrollbar-thumb,
.slide-section-container::-webkit-scrollbar,
.slide-section-container::-webkit-scrollbar-track {
  display: none;
}
.slide-section-container .slider-thumbnail {
  flex: 0 0 auto;
  object-fit: cover;
  cursor: default;
  margin: 5px;
  overflow: hidden;
  transform: scale(0.95);
  transition: all 0.3s;
}
.slide-section-container .slider-thumbnail img {
  width: 160px;
}
@media screen and (max-width: 768px) {
  .slide-container {
    max-width: 80%;
    margin: 0;
  }
  .black-strip.left {
    left: -1%;
  }
  .parallax-mirror {
    width: 90% !important;
  }
  .parallax-window .black-strip {
    width: 50% !important;
  }
  .slide-container.none {
    max-width: 100%;
  }
}
