/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */


/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav { margin: 0; padding: 0; list-style: none;}

/* FlexSlider Necessary Styles
*********************************/
.flexslider { margin: 0; padding: 0; }
.flexslider li { height: 100vh; }
.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden; } 
.flexslider .slides img { width: 100%; display: block; z-index: 1; }
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "\0020"; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .slides { display: block; }
html .slides { height: 1%; }

/* Direction Nav */
.flex-direction-nav { height: 0; }

.flex-direction-nav a  { 
	text-decoration:none; 
	display: none; 
	background: url(../img/slides-arrow.png) no-repeat left center;
	margin: -20px 0 0; 
	position: absolute; 
	top: 45%;  
	z-index: 10; 
	overflow: hidden; 
	cursor: pointer; 
	text-indent: -9999px; 
	-webkit-transition: all 0.3s ease; 
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease; 
	transition: all 0.3s ease
}

.flex-direction-nav .flex-prev { left: 20px; }

.flex-direction-nav .flex-next { right: 20px; background-position: right center;}

.flex-prev:hover, .flex-next:hover { opacity: 1; }

/* Control Nav */
.flex-control-nav {
	width: 100%; 
	position: absolute; 
	bottom: -86%; 
	text-align: center; 
	z-index: 3; 
}

.flex-control-nav li { 
	margin: 0 7px; 
	display: inline-block; 
	zoom: 1;  
}

.flex-control-paging li a {
	width: 15px;
	height: 15px;
	display: block;
	text-indent: -9999px;
	border: 1px solid #FFF;
	border-radius: 99px;
}

.flex-control-nav li a:hover{
	background-color: rgba(0,0,0,0.6);
}

.flex-control-nav .flex-active { 
	background-color: #FFB10D;
}

@media screen and (min-width: 480px){
	
	.flex-direction-nav a {
		width: 26px; height: 52px;
		background-size: 50px;
}

@media screen and (max-height: 320px) and (orientation:landscape){
	.flex-control-nav { 
		margin-top: -23%;
	    position: relative;
	}
	
}

@media screen and (min-width: 768px){

	.flex-control-paging li a {display: none;}
	
	.flex-direction-nav a  { 
		width: 33px; height: 65px;
		background-size: 65px;
		display: block;
		opacity: 0.3;
	}

}

@media screen and (min-width: 960px){
	.flex-direction-nav a  { 
		width: 42px; height: 85px;
		background-size: 85px;
	}

}

@media screen and (min-width: 1920px){
	.flex-direction-nav a  { 
		width: 75px; height: 150px;
		background-size: 150px;
	}

}


