.line {
  width: 100%;
  height: 100px;
  clear: both;
}

.container {
  width: 100%;
  max-width: 80%;
  margin: auto;
}

/* Gaming Laptops */
.slider__Laptops {
  width: 100%;
  height: 300px;
  position: relative;
  z-index: 1;
}

.slider__Laptops-box {
  height: 300px;
}

.slider__Laptops-item {

  width: calc(100% - 20px);

  height: 300px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.setbg {
  background: none;
  position: relative;
}

.slider__Laptops-prev,
.slider__Laptops-next {
  height: 20px;
  width: 20px;
  position: absolute;
  z-index: 2;
  top: 50%;
}

.slider__Laptops-prev {
  left: -50px;
}

.slider__Laptops-next {
  right: -75vw;
  top: -170px;
}

.slider__Laptops-prev::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;

  width: 45px;
  height: 45px;

  background: url("../images/chevron-left-solid.svg");
  background-repeat: no-repeat;
}

.slider__Laptops-next::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;

  width: 50px;
  height: 50px;

  background: url("../images/chevron-right-solid.svg");
  background-repeat: no-repeat;
}

/* END Gaming Laptops */


/* Gaming Desktops */
.slider__Desktops {
  width: 100%;
  height: 300px;
  position: relative;
  z-index: 1;
}

.slider__Desktops-box {
  height: 300px;
}

.slider__Desktops-item {

  width: calc(100% - 20px);

  height: 300px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.setbg {
  background: none;
  position: relative;
}

.slider__Desktops-prev,
.slider__Desktops-next {
  height: 20px;
  width: 20px;
  position: absolute;
  z-index: 2;
  top: 50%;
}

.slider__Desktops-prev {
  left: -50px;
}

.slider__Desktops-next {
  right: -30px;
}

.slider__Desktops-prev::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;

  width: 45px;
  height: 45px;

  background: url("../images/chevron-left-solid.svg");
  background-repeat: no-repeat;
}

.slider__Desktops-next::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;

  width: 50px;
  height: 50px;

  background: url("../images/chevron-right-solid.svg");
  background-repeat: no-repeat;
}

/* END Gaming Desktops */



/* list */
.list {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 20px;
}

.list-box {
  height: auto;
  width: 20%;
  float: left;
  text-align: center;
  padding-right: 20px;
}

/* END list */



/* RWD */
@media (max-width: 991px) {
  .container {
    width: 100%;
    max-width: 95%;
    margin: 0px 10px 0px 10px;
  }

  .slider__Laptops-prev {
    left: -20px;
  }

  .slider__Laptops-next {
    right: -85vw;
  }

  .slider__Desktops-prev {
    left: -20px;
  }

  .slider__Desktops-next {
    right: -10px;
  }
}