/*
 * jQuery FlexSlider v2.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)
 */

/* Zoom in Keyframes */
@-webkit-keyframes zoomin {
  0% {transform: scale(1);}
  100% {transform: scale(1.2);}
}
@keyframes zoomin {
  0% {transform: scale(1);}
  100% {transform: scale(1.2);}
} /*End of Zoom in Keyframes */



.flexslider {
	background-color: #000;
	position: relative;
    overflow: hidden;
}

.flexslider > ul.slides > li {
}

.flexslider .slides > li { 
	background-position: center center;
	height: 100vh;
	width: 100%;
	display: block;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-webkit-backface-visibility: hidden;
    -webkit-animation: zoomin 8s ease-in infinite;
    animation: zoomin 8s ease-in infinite;
    overflow: hidden;
}

.flexslider-container {
	height: 100vh;
	float: left;
	width: 100%;
	position: fixed; 
	z-index: -1;
    overflow: hidden;
}


.flexslider .slides > li {display: none; overflow: hidden; list-style: none;} /* Hide the slides before the JS is loaded. Avoids image jumping */


.flexslider .slides, 
.flex-viewport {
	height: 100vh;
}

.flexslider {
	height: 100vh;
	overflow: hidden;
}

.flexslider .slides > li img {
	width: auto;
	height: 100vh;
}

ul.slides {
	margin: 0;
	padding: 0;
}

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



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

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {display: block;}






/* Control Nav */
.flex-control-nav {width: 98%; position: absolute; text-align: center; bottom: 0; height: 5%; z-index: 222; display: none;}
.flex-control-nav li {margin: 0 4px; display: inline-block; zoom: 1; *display: inline;}
.flex-control-paging li a {width: 7px; height: 7px; display: block; cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; transition-property: background; 
	transition-duration: .55s;
	transition-timing-function: linear; background-color: #FFF; opacity: 0.4; font-size: 0; 
 }
.flex-control-paging li a:hover {background: #FFF; width: 7px; height: 7px; opacity: 1; }
.flex-control-paging li a.flex-active { background: #FFF; width: 7px; height: 7px; opacity: 1; }

.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.flex-control-thumbs img {width: 100%; display: block; opacity: 0.9; cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}


#caption {
	width: 42.5%;
	float: left;
	padding: 10vh 50% 15vh 7.5%;
	position: absolute;
	bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7), rgba(0,0,0,0));
    z-index: 222;
}

#caption h1 {
    color: #FFF;
}




@media only screen and (max-width: 1450px) {
#caption {
	width: 62.5%;
	padding: 10vh 30% 15vh 7.5%;
}    
}


@media only screen and (max-width: 1024px) {
#caption {
	width: 52.5%;
	padding: 10vh 40% 15vh 7.5%;
}    
}



@media only screen and (max-width: 900px) {
#caption {
	width: 62.5%;
	padding: 10vh 30% 15vh 7.5%;
}    
}





@media only screen and (max-width: 700px) {
#caption {
	width: 85%;
	padding: 10vh 7.5% 15vh 7.5%;
}    
}

