/*GLOBALS*/
/* *{margin:0; padding:0; list-style:none;} */
/* a{text-decoration:none;	color:#666;} */
/* a:hover{color:#1bc1a3;} */
/* body, hmtl{background: #ecf0f1; font-family: 'Anton', sans-serif;} */


#slider-wrap{
	width:600px;
	height:300px;
	position:relative;
	overflow:hidden;
}

#slider-wrap ul#slider{
	width:100%;
	height:100%;
	
	position:absolute;
	top:0;
	left:0;		
}

#slider-wrap ul#slider li{
	float:left;
	position:relative;
	width:600px;
	height:300px;	
}

#slider-wrap ul#slider li > div{
	position: absolute;
    width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: rgba(0,0,0,0.6);
    bottom: 0;
    z-index: 100;
    color: #fff;
}

#slider-wrap ul#slider li > div h3{
	font-size:36px;
	text-transform:uppercase;	
}

#slider-wrap ul#slider li > div span{
	font-size:14px;
}

#slider-wrap ul#slider li i{
	text-align:center;
	line-height:300px;
	display:block;
	width:100%;
	font-size:90px;	
}


/*btns*/
.btns{
	position:absolute;
	width:50px;
	height:60px;
	top:50%;
	margin-top:-25px;
	line-height:60px;
	text-align:center;
	cursor:pointer;	
	background:rgba(0,0,0,0.4);	
	z-index:100;
	
	-webkit-user-select: none;  
	-moz-user-select: none; 
	-khtml-user-select: none; 
	-ms-user-select: none;
	
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	-ms-transition: all 0.1s ease;
	transition: all 0.1s ease;

    display: flex;
    align-items: center;
    justify-content: center;
}

.btns:hover{
	background:rgba(0,0,0,0.6);	
}
.btns i {
	color: #fff;
}

#next{right:-50px; border-radius:7px 0px 0px 7px;}
#previous{left:-50px; border-radius:0px 7px 7px 0px;}
#counter{
	top: 20px; 
	right: 20px; 
	width:auto;
	position:absolute;
	color: #fff;
	padding: 5px 10px;
	border-radius: 5px;
	background: rgba(0,0,0,0.6);
}

#slider-wrap.active #next{right:0px;}
#slider-wrap.active #previous{left:0px;}


/*bar*/
#pagination-wrap{
	min-width:20px;
	margin-top:270px;
	margin-left: auto; 
	margin-right: auto;
	height:15px;
	position:relative;
	text-align:center;
}

#pagination-wrap ul {
	width:100%;
}

#pagination-wrap ul li{
	margin: 0 4px;
	display: inline-block;
	width:5px;
	height:5px;
	border-radius:50%;
	background:#fff;
	opacity:0.5;
	position:relative;
  	top:0;
}

#pagination-wrap ul li.active{
  	width:12px;
  	height:12px;
  	top:3px;
	opacity:1;
	box-shadow:rgba(0,0,0,0.1) 1px 1px 0px;	
}

/*Header*/
/* h1, h2{text-shadow:none; text-align:center;}
h1{	color: #666; text-transform:uppercase;	font-size:36px;}
h2{ color: #7f8c8d; font-family: Neucha, Arial, sans serif; font-size:18px; margin-bottom:30px;}  */


/*ANIMATION*/
#slider-wrap ul, #pagination-wrap ul li{
	-webkit-transition: all 0.3s cubic-bezier(1,.01,.32,1);
	-moz-transition: all 0.3s cubic-bezier(1,.01,.32,1);
	-o-transition: all 0.3s cubic-bezier(1,.01,.32,1);
	-ms-transition: all 0.3s cubic-bezier(1,.01,.32,1);
	transition: all 0.3s cubic-bezier(1,.01,.32,1);	
}




