/* .back{
  width: 100%;
} */

.slider-box{
  width: 100%;
  height: 100vh;
  background: #fff;
  border: none;
  position: relative;
}
.slider-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
  background-color: #fff;
  text-align: center;
}
.slide{
  width: 100%;
  height: 100vh;
  padding: 0;
  margin: 0;
  transition: opacity 1s ease-in;
  opacity: 0;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: 0;
  display: block;
  background: #fff;
}
div.slider-arrow-left,
div.slider-arrow-right {
	display: none;
}
div.dots {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
  text-align: center;
  background: rgba(0,0,0,0);
}
span.dot {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  padding: 0;
  display: inline-block;
  background-color: #BBB;
  border-radius: 5px;
  cursor: pointer;
}
