/* 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% !important;
}

.msi-product h5 {
  font-size: 21px !important;
  font-weight: 600;
}

.msi-product a {
  display: inline-block;
  color: black;
  border: 1px black solid;
  padding: 3% 5%;
  border-radius: 8px;
  margin: 15px;
}

.msi-product a:hover {
  color: white;
  background: linear-gradient(to left, #2585d6, #001968 135%);
  border: none;
}

@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/copilot-plus-consumer/images/slick/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/copilot-plus-consumer/images/slick/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;
  }

}



/*fix button*/
.msi-product .card-body {
  display: block;
  width: 100%;
  text-align: center;
}

.video {
  display: block;
  width: 100%;
  padding: 5% 0;
  position: relative;
  z-index: 0;


}

.video__thumb {
  display: block;
  width: 100%;
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: hidden;
  position: relative;

}

.video__thumb img {
  transform: scale(1.1);
  transition: 0.3s all ease-in;
}

.video__thumb:hover img {
  transform: scale(1);
}

.video__Btn {
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 5;
  opacity: .5;
  transition: 0.3s all ease-in;

}

.video__thumb:hover .video__Btn {
  opacity: 0.9;


}