.slide {
	width: 100%;
	background: #ccc;
	overflow: hidden;
	display: block;
	height: 100% !important;
	box-sizing: border-box;		
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
}
.slide ul {
	margin: 0;
	list-style: none;
}
.slide ul li {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  list-style: none !important;
  padding: 0;
}
.slide ul li::before {
	display: none;
}
.slide ul li  {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none; 
	-moz-user-select: none; 
	-ms-user-select: none; 
	user-select: none; 
	cursor: grab;
}
.slide ul li:active:hover {
	cursor: grabbing;
}
.slide .dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  width: 100%;
  z-index: 4;
  text-align: center;
  padding: 0;
}
.slide .dots li {
	display: inline-block;
	margin: 0 10px;
	width: 15px;
	height: 15px;
	border: 2px solid #fff;
	border-radius: 50%;
	cursor: pointer;
	transition: background .5s, opacity .5s;
	list-style: none;
}
.slide .dots li.active {
	background: var(--secondary);
	border-color: var(--secondary);
}
.slide .arrow {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background .5s, opacity .5s;
  pointer-events: none;
}
.slide .arrow .arrow-left, .slide .arrow .arrow-right {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  display: block;
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: 1;
  transition: background .5s, opacity .5s;
  pointer-events: all;
  font-size: 50px;
  color: #fff;
  text-decoration: none !important;
}
.slide .arrow  .arrow-left:hover,
.slide .arrow  .arrow-right:hover {
	color: var(--secondary);
}
.slide .arrow .arrow-left {
  left: 70px;
}
.slide .arrow .arrow-right {
  right: 70px;
}
@media screen and (max-width: 780px) {
	.slide .dots,
	.slide .arrow {
		display: none;
	}
}
@keyframes slide {
  from {transform: scale(1.4); filter: blur(5px);}
  to {transform: scale(1); filter: blur(0px);}
}
