/* 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%;
}

.msi-product .btn {
  background-color: var(--windows-dark-3d5f5e);
  color: white;
  margin: 15px auto;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display:inline-block !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  text-align: center !important;
  cursor: pointer;
}

@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/windows11Pro/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/windows11Pro/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;
  }

}