

.slider-wrap section {
  position: absolute;
  z-index:-1;
}

.sliders {
  list-style: none;
  width: 100%;
  text-align: center;
  position: relative;
  padding: 0;
  margin: 0;
}
.sliders img {
	width:100%;
}
.sliders li {
  transition: all 0.2s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  text-align: center;
  padding: 0;
  transition: all 0.2s ease-in;
  opacity: 0;
  visibility: hidden;
}
.sliders li.active {
  display: block;
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.dot-navigation {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	
	bottom: 10%;
	left: 48%;
	display:none;
}
.dot-navigation li {
	width: 10px;
	height: 10px;
	background-color: rgba(0, 0, 0, 1);
	display: inline-block;
	border-radius: 50%;
	border: 2px solid white;
	cursor: pointer;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	
	bottom: 30%;
	
}
.dot-navigation li.active {
  background-color: white;
  border: 2px solid rgba(230, 100, 7, 1);
}

.next-previous-navigation {
	display: flex;
	position: absolute;
	top: calc(50% - 40px);
	left: 0;
	right: 0;
	z-index: 3;
	font-size: 3rem;
	line-height: 1;
	user-select: none;
	color: #FFF;
	
}
.next-previous-navigation .next,
.next-previous-navigation .previous {
  cursor: pointer;
  padding: 10px;
  background:rgba(0, 0, 0, .7);
}
.next-previous-navigation .next {
  margin-left: auto;
}
.next-previous-navigation .previous {
  margin-right: auto;
}