/* CSS Document */

/* ==========================================================================
   03. INTRO
   ========================================================================== */

#intro {
	width: 100%;
	height: 100%;
	position: relative;
	top: 0px;
	z-index: 1;
	display: block;
	overflow: hidden;
	padding: 0 !important;
}
  
#slides {
	position: relative;
}

#slides .scrollable {
	height: 100%;
	position: relative;
	top: 0;
	left: 0;
	*zoom: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

#slides .scrollable:after {
	content: "";
	display: table;
	clear: both;
}

/*------------------------------------------*/
/*	 INTRO SLIDER CONTENT
/*------------------------------------------*/

.intro-content {
	width: 90%; 
	position: absolute;
	left: 50%;
	top: 50%;
	color: #fff;
	text-align: center;
	display: inline-block;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

/*------------------------------------------*/
/*	 INTRO TEXT
/*------------------------------------------*/

#intro h2 {	
	color: #fff;
	font-size: 50px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 3px;
	line-height: 50px;
	margin-bottom: 15px;
}

.intro-content p {	
	color: #fff;
	font-size: 24px;
	line-height: 30px;
	font-weight: 300;
	padding: 0 10%;
}

/*------------------------------------------*/
/*	 INTRO BUTTON
/*------------------------------------------*/

.intro_button .btn {
	font-size: 14px;
	margin-top: 20px;
	padding: 14px 28px;
	font-weight: bold;
	color: white;
	border: 3px solid #fff;
	text-transform: uppercase
}

.intro_button .btn:hover {
}

/*------------------------------------------*/
/*	 Transparent Button
/*------------------------------------------*/

.intro_button .btn.btn-tra {
	background-color: transparent;
	padding: 13px 26px;
	margin-right: 15px;
	border: 2px solid #fff;
}

.intro_button .btn.btn-tra:hover {
	background-color: #0b7d79;
	border-color: #0b7d79;
	color: #fff;
}

/*------------------------------------------*/
/*	 SLIDES NAVIGATION  
/*------------------------------------------*/

.slides-navigation {
	width: 100%;
    position: absolute;
    z-index: 3;
    top: 50%;
	margin-top: -50px
}

.slides-navigation a {
    position: absolute;
    display: block;
	text-decoration: none !important
}

/*------------------------------------------*/
/*	 Next Button  
/*------------------------------------------*/

.slides-navigation a.next {
    right: 0px;
}

.slides-navigation .next.fa-angle-right {
    color: #ddd;
    font-size: 100px;
    opacity: 0.2;
    margin-right: 30px;
}

/*------------------------------------------*/
/*	 Previous Button
/*------------------------------------------*/

.slides-navigation a.prev {
    left: 0px;
}

.slides-navigation .prev.fa-angle-left {
    color: #ddd;
    font-size: 100px;
    opacity: 0.2;
    margin-left: 30px;
}

/*------------------------------------------*/
/*	 Buttons Hover  
/*------------------------------------------*/

.slides-navigation .next.fa-angle-right:hover,
.slides-navigation .prev.fa-angle-left:hover {
	 opacity: 0.7;
	 text-decoration: none !important
}

/*------------------------------------------*/
/*	 SCROLL DOWN MOUSE  
/*------------------------------------------*/

.scroll-down {
    display: block;
	width: 100%;
    position: absolute;
    z-index: 99;  
    left: 0px;
    bottom: 4%;
    text-transform: uppercase;
    color: #ddd;
    font-size: 13px;
	font-weight: 700;
    text-align: center;
	-webkit-animation-name: Floatingx;
    -webkit-animation-duration: 1.8s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-name: Floating;
    -moz-animation-duration: 1.8s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in-out;
}

@-webkit-keyframes Floatingx{
    from {-webkit-transform:translate(0, 0px);}
    65% {-webkit-transform:translate(0, 10px);}
    to {-webkit-transform: translate(0, -0px);    }    
}
    
@-moz-keyframes Floating{
    from {-moz-transform:translate(0, 0px);}
    65% {-moz-transform:translate(0, 10px);}
    to {-moz-transform: translate(0, -0px);}    
}

.mouse {
    width: 18px;
    height: 28px;
	color: #ddd;
	border: 2px solid #ddd;
    border-radius: 9px;
	-webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
    display: block;
    text-align: center;
    margin: 0px auto 10px; 
}

@media (max-width: 1350px) {
	/*------------------------------------------*/
	/*	 Next Button  
	/*------------------------------------------*/
	
	
	.slides-navigation .next.fa-angle-right {
		font-size: 70px;
		margin-right: 15px;
	}
	
	/*------------------------------------------*/
	/*	 Previous Button
	/*------------------------------------------*/
	
	.slides-navigation .prev.fa-angle-left {
		font-size: 70px;
		margin-left: 15px;
	}

}

@media (max-width: 950px) {
	.intro-content {width: 85%}
}

@media (max-width: 640px) {
	
	.intro-content {width: 80%}
	/*------------------------------------------*/
	/*	 Next Button  
	/*------------------------------------------*/
	
	
	.slides-navigation .next.fa-angle-right {
		font-size: 55px;
		margin-right: 5px;
	}
	
	/*------------------------------------------*/
	/*	 Previous Button
	/*------------------------------------------*/
	
	.slides-navigation .prev.fa-angle-left {
		font-size: 55px;
		margin-left: 5px;
	}

}
