/* Product */
.msi-product {
  display: block;
  width: 80%;
  margin: 30px auto;
  padding: 10px 0;
  background: rgba(255, 255, 2255, 0.5);
}

.msi-product img {
  width: 85%;
}

@media screen and (max-width: 576px) {
  .msi-product {
    display: block;
    width: 100%;
    margin: 50px auto;
    padding: 20px 0;
    background: rgba(255, 255, 2255, 0.5);
  }
}

.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;
  padding: 5px 20px;
}

.slider__Product-item h5 {
  font-size: 18px;
}

.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/2025/NB/windows11/images/chevron-left-solid.png");
  background-repeat: no-repeat;
  background-size: 100%;
  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/2025/NB/windows11/images/chevron-right-solid.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  cursor: pointer;
}

@media (max-width: 991px) {
  .slider__Product-prev {
    left: 0px;
  }

  .slider__Product-next {
    right: 0px;
  }
}
