.slider {
	position: relative;
	display: block;
	overflow: hidden;
	z-index: 1;
	width: 100%;
	max-width: 800px;
	height: 500px;
}
.slider .nav-prev, .slider .nav-next {
	position: absolute;
	display: inline-block;
	width: 50px;
	height: 50px;
	bottom: 12px;
	background: url('/scripts/svg-sprite-navigation.svg') no-repeat;
	background-size: 100%;
	z-index: 5;
}
.slider .nav-prev { left: 0; background-position: 0 -400px; }
.slider .nav-next { right: 0; background-position: 0 -450px; }

.slide {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: top center;
	background-repeat: no-repeat;
}
.slide:first-child {
	display: inline-block;
}
.slide a {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	text-decoration: none;
}
@media (min-width: 500px) {
.slide span {
	position: absolute;
	bottom: -10px;
	left: 0;
	display: block;
	width: calc(100% - 100px);
	padding: 10px 50px;
	background-color: transparent;
	text-align: center;
	font-weight: bold;
	font-size: .9rem;
	color:#fff;
	z-index: 999;
}
}
@media (max-width: 499px) {
.slide span {
	position: absolute;
	bottom: -10px;
	left: 0;
	display: block;
	width: calc(100% - 100px);
	padding: 10px 50px;
	background-color: transparent;
	text-align: center;
	font-size: .7rem;
	font-weight:bold;
	color:#fff;
	z-index: 999;
}
}