/*
 | ------------------------------------------
 | Glide styles
 | ------------------------------------------
 | Here are slider styles
 |
*/

.slider {
	position: relative;
	width: 100%;
	/*height: 420px;*/
	overflow: hidden;
}

.slides {
	height: 100%;

	/* Simple clear fix */
	overflow: hidden;

	/**
	 * Here is CSS transitions
	 * responsible for slider animation in modern broswers
	 */
	-webkit-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-moz-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-ms-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-o-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
}

.slide {
	height: 100%;
	float: left;
	clear: none;
}


.slider-arrows {}

.slider-arrow {
	display: block;
	height: 40px;
	width: 32px;
	line-height: 200px;
	font-size: 35px;
	color: #333;
	position: absolute;
	top: 50%;
	outline: 0;
	margin-top: -20px;
	z-index: 99;
	text-indent: -9999px;
}

.slider-arrow--right,
.slider-arrow--left {
}

.slider-arrow--right {
	right:1px;
	background: transparent url(../img/controls.png) -43px -41px no-repeat;
}

.slider-arrow--left {
	left:1px;
	background: transparent url(../img/controls.png) 0 -41px no-repeat;
}

.homeBlock .block a.slider-arrow--right:hover {
	background-position: -43px 0 ;
}

.homeBlock .block a.slider-arrow--left:hover {
	background-position: 0 0 ;
}

.slider-nav {
	position: absolute;
	left: 2%;
	bottom: 25px;
}

.slider-nav__item {
	width: 8px;
	height: 8px;
	float: left;
	clear: none;
	margin: 0 5px;
	background: #999;
	border-radius: 10px;
	opacity: .3;
}

.slider-nav__item:hover { background: #666; }
.slider-nav__item--current { background: #666; }