/*
 | ------------------------------------------
 | Glide styles
 | ------------------------------------------
 | Here are slider styles
 | 
*/

.slider {
	position: relative;
	height: 450px;
	overflow: hidden;
	width:1200px;
	margin-top: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 {}

		.slider-arrow {
			position: absolute;
			display: block;
			margin-bottom: -20px;			
			width: 60px;
			height: 60px;
			line-height: 60px;
			text-decoration: none;
			text-align: center;
			color: #fff;
			font-size: 2em;
			background-color: #333;
			background-color: rgba(50,50,50,.3);
			border-radius: 50%;
		}



	.slider-nav {
		position: absolute;
		bottom: 0px;
	}

		.slider-nav__item {
			width: 10px;
			height: 10px;
			float: left;
			clear: none;
			display: block;
			margin: 0 10px;
			background: #b9c9d5;
			border-radius:100%;
		}

				.slider-nav__item:hover { background: #3db7ef; }
				.slider-nav__item--current { background: #3db7ef; }

.in_prols a{width:383px; border:1px solid #ccc; float:left; margin:0 7px;}
.in_prols img{display:block;}
.in_prols span{display:block; height:33px; line-height:33px; background:#3db7ef; text-align:center; font-size:14px; font-weight:bold;transition:all  300ms;-webkit-transition:all  300ms;-moz-transition:all  300ms;-o-transition:all  300ms;}
.in_prols a:hover span{background:#172646;}