
.slideshow{
	width: 100%;
	
	position: relative;
}
.slider{
	padding: 0 !important;
}
.slider li, ul{
	width: 100%;
	list-style: none;
	text-decoration: none;
}

.slider li{
	overflow: hidden;
}

.slider li img{
	width: 100%;
	margin: 0;
}

.slider .caption{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding: 15px 50px;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	text-align: center;
	color: #fff;
	z-index: 1;
}

.slider .caption h1{
	font-size: 60px;
	font-family: "Ramadra";
	text-shadow: 2px 2px 0 #000;
}

.slider .caption p{
	margin-top: 10px;
	font-size: 16px;
	background: rgba(0,0,0,0.3);
	border-radius: 8px;
	padding: 10px;
}

.pagination{
	position: absolute;
	top: 40%;
	width: 100%;

	display: flex;
	justify-content: center;
	list-style: none;
	z-index: 1002;
}

.pagination li{
	font-size: 20px;
	margin: 2px 5px;
	color: #858585;
	cursor: pointer;
	z-index: 1002;
}

.left, .right{
	position: absolute;
	top: 0;
	height: 100%;

	display: flex;
	align-items: center;

	color: #fff;
	font-size: 18px;
	cursor: pointer;
	z-index: 2;
}

.left{
	
	left: 10px;
	
}

.right{
	right: 10px;
}


@media screen and (max-width: 970px){
	.slider li img{
		width: 970px;
	}
	.slider li {
		display: flex;
		justify-content: center;
		align-items: center;
		
	}
}
@media screen and (max-width: 600px){
	
	.slider .caption p{
		display: none;
	}

	.slider .caption h1{
		font-size: 30px;
	}

	.left, .right{
		font-size: 18px;
	}

	.slider li img{
		width: 600px;
	}

	.pagination{
		display: block;
	}
}
@media screen and (max-width: 500px){
.cont-slider{
       display: none;
    }
}