/*
 | ------------------------------------------
 | Glide styles
 | ------------------------------------------
 | Here are slider styles
 | 
*/

.slider {
	position: relative;
	width: 100%;
	height: 96px;
	overflow: hidden;
	margin: 60px 0 40px;
}
        
.slides {
	height: 100%;
	
	/* Simple clear fix */
	overflow: hidden;
	
	/**        
	 * Prevent blinking issue
	 * Not tested. Experimental.
	 */
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;

	/**
	 * 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 {
	overflow: hidden;
}

.slider-arrow {
	font-size: 0;
	line-height: 0;
	text-indent: -9999px;
	width: 80px;
	height: 96px;
	position: absolute;
	top: 1571px;
	z-index: 100;
	cursor: pointer;
}

.slider-arrow--right {
	background: url(../images/index/btn_next.png) no-repeat center center;
	right: 0;
}
.slider-arrow--left {
	background: url(../images/index/btn_prev.png) no-repeat center center;
	left: 0;
}


.slider-nav {
	position: absolute;
	bottom: 30px;
	display: none;
}

.slider-nav__item {
	width: 12px;
	height: 12px;
	float: left;
	clear: none;
	display: block;
	margin: 0 5px;
	background: #fff;
}

.slider-nav__item:hover { background: #ccc; }
.slider-nav__item--current { background: #ccc; }

.slide h3 {
	font-size: 34px;
	line-height: 1.6;
	text-align: center;
}
.slide p {
	font-size: 20px;
	line-height: 1.6;
	text-align: center;
}
