/* Product */
.slider__Product {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  /* display: flex; */
}

.slider__Product-box {
  height: auto;

}

.slider__Product-item {
  width: calc(100% - 20px);

  height: auto;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.125);
  padding: 5px 20px;
}

.setbg {
  background: none;
  position: relative;
}

.slider__Product-prev,
.slider__Product-next {
  height: 150px;
  width: 50px;
  margin-top: -10px;

  position: absolute;
  z-index: 2;
  top: 30%;
}

.slider__Product-prev {
  left: -30px;
}

.slider__Product-next {
  right: -30px;
}


.slider__Product-prev::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;

  height: 150px;
  width: 50px;

  background: url("https://storage-asset.msi.com/event/2023/NB/windows11-upgrade/images/chevron-left-solid.png");
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  Cursor: pointer;
}

.slider__Product-next::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;

  height: 150px;
  width: 50px;

  background: url("https://storage-asset.msi.com/event/2023/NB/windows11-upgrade/images/chevron-right-solid.png");
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  Cursor: pointer;
}





@media (max-width: 991px) {
  .slider__Product-prev {
    left: 0px;
  }

  .slider__Product-next {
    right: 0px;
  }

}