.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.slide ul li {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  list-style: none;
}
@media only screen and (max-width: 639px) {
  .slide ul li:first-child {
    background-position: left 70% center !important;
  }
}
.slide .dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  width: 100%;
  z-index: 4;
  text-align: center;
}

.slide .dots li {
  display: inline-block;
  margin: 0 10px;
  width: 11px;
  height: 11px;
  border-radius: 0;
  transform: rotate(45deg);
  opacity: 1;
  cursor: pointer;
  transition: background .5s, opacity 0.5s;
  list-style: none;
  background: #ffffff;
}

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

.slide .arrow {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background .5s, opacity .5s;
}

.slide .arrow .arrow-left,
.slide .arrow .arrow-right {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  display: block;
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: 0.5;
	transition: background .5s, opacity .5s;
}

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

.slide .arrow .arrow-left {
  left: 20px;
  background: url("../images/arrow-left.png");
}

.slide .arrow .arrow-right {
  right: 20px;
  background: url("../images/arrow-right.png");
}
@media only screen and (max-width: 639px) {
	.slide .dots {bottom: 4px;}
}