.slide {
  margin: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.slide ul li {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding:0;
  display: block;
  width: 100%;
  height: 100%;
  list-style: none;
}

.slide .dots {
  position: absolute;
  left: 0;
  bottom: 4rem;
  width: 100%;
  z-index: 1;
  text-align: center;
}

.slide .dots li {
  display: inline-block;
  margin: 0 1rem;
	width: 0.8rem;
	height: 0.8rem;
	border: 1px solid #fff;
	border-radius: 50%;
  opacity: 0.4;
	cursor: pointer;
	transition: background .5s, opacity .5s;
  list-style: none;
}

.slide .dots li.active {
  background: #fff;
  opacity: 1;
}


.slide .arrow .arrow-left,
.slide .arrow .arrow-right {

  position: absolute;
  z-index: 2;
  bottom: 0;
  bottom: 4rem;
  margin-top: 0;
  display: block;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  opacity: 0.5;
	transition: background .5s, opacity .5s;
	background-color: red;
}

.slide .arrow  .arrow-left:hover,
.slide .arrow  .arrow-right:hover {
  opacity: 1;
}

.slide .arrow .arrow-left {
  left: 2rem;
  background: url("../img/arrow-left.png");
  background-size: contain;
}

.slide .arrow .arrow-right {
  right: 2rem;
  background: url("../img/arrow-right.png");
  background-size: contain;
}
