/*
OPCJONALEN ELEMENTY:
1. #slider-nav - punkty, dolna nawigacja 
2. #slider-arrows - strzałki, boczna nawigacja prev-next
3. #slider-down - strzałka scrolująca w dól
4. #slider hgroup
*/


#slider {
	position: relative;
	width: 100%;
	height: 70%;
	text-align: center;
	overflow: hidden;
}


#slider .slide {
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: white;
	background-position: center;
	background-size: cover;
}

#slider .slide.active {
	z-index: 4;
}

#slider .slide.next {
	z-index: 3;
}

#slider-nav {
	text-align: center;
	position: absolute;
	z-index: 6;
	bottom: 25px;
	left: 45px;
	margin: auto;
}

#slider-nav a {
	display: inline-block;
	width: 10px;
	height: 10px;
	position: relative;
	border: 2px solid #C68D34;
	margin: 0 3px;
	border-radius: 50%;
}

#slider-nav a.active, #slider-nav a:hover{
	background-color: #C68D34;
	border-color: #C68D34;
}

#slider figure {
	position: absolute;
	z-index: 5;
	width: 80%;
	height: 60%;
	max-width: 530px;
	max-height: 400px;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: url(../img/slider-logo.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}


/* #Base 1024 Grid
================================================== */
@media only screen and (max-width: 1024px) {
	
#slider-nav {
	bottom: 20px;
	left: 30px;
}
	
}

/* #Base 750 Grid
================================================== */
@media only screen and (max-width: 750px) {
	
#slider-nav {
	bottom: 15px;
	left: 20px;
}

}

/* #Base 500 Grid
================================================== */
@media only screen and (max-width: 500px) {

#slider-nav {
	bottom: 10px;
	left: 12px;
}

#slider-nav a {
	width: 8px;
	height: 8px;
	border: 2px solid #C68D34;
	margin: 0 3px;
}

}