/*
 * 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
*********************************/
.slides,
.flex-control-nav,
.flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
    zoom: 1;
    margin: 0;
    padding: 0;
    position: relative;
}
.flexslider > .slides {
    zoom: 1;
}
.flexslider > .slides > li {
    /* Hide the slides before the JS is loaded. Avoids image jumping */
    display: none;
    position: relative;
    -webkit-backface-visibility: hidden;
    -webkit-transition: opacity 1s ease;
    -moz-transition:    opacity 1s ease;
    -o-transition:      opacity 1s ease;
    transition:         opacity 1s ease;
}

.flex-pauseplay span {
    text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
    height: 0;
    clear: both;
    line-height: 0;
    display: block;
    visibility: hidden;
}
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;
}

/* FlexSlider Default Theme
*********************************/
.flex-viewport {
    max-height: 2000px;
    -webkit-transition: all 1s ease;
    -moz-transition:    all 1s ease;
    -o-transition:      all 1s ease;
    transition:         all 1s ease;
}
.hero-wrap .loading .flex-viewport {
    margin: 0 auto;
    max-height: 300px;
}

.hero-wrap .slides {
	height: 430px;
}

/* Direction Nav */
.flex-direction-nav {
	left: 0;
	top: 50%;
	height: 0;
	z-index: 10;
	width: 100%;
	position: absolute;
}
.flex-direction-nav a {
	z-index: 10;
	display: block;
	overflow: hidden;
	pointer-events: auto;
	text-indent: -9999em;
	letter-spacing: 133px;
	background-position: center;
	background-repeat: no-repeat;
	-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-prev {
	float: left;
}
.flex-next {
	float: right;
}

.hero-wrap .flex-direction-nav a {
	width: 65px;
	height: 65px;
	opacity: 0.4;
	margin-top: -30px;
	background-color: #00432C;
}

.instagram-wrap .flex-direction-nav a,
.instagram-wrap-cms .flex-direction-nav a {
	width: 30px;
	height: 30px;
	margin-top: -15px;
}

.instagram-wrap .flex-prev,
.instagram-wrap-cms .flex-prev {
    margin-left: -35px;
}
.instagram-wrap .flex-next,
.instagram-wrap-cms .flex-next {
    margin-right: -35px;
}

.instagram-wrap .flex-prev,
.instagram-wrap-cms .flex-prev,
.pagination > .pag-prev > a > .icon {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMzAiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTgiIGhlaWdodD0iMzAiPjxwYXRoIGQ9Ik0wIDE1bDE1LjUgMTUgMi41LTIuNDJMNSAxNSAxOCAyLjQyIDE1LjUgMCAwIDE1eiIgZmlsbD0iIzA4NDIyYiIvPjwvc3ZnPg==');
}
.instagram-wrap .flex-next,
.instagram-wrap-cms .flex-next,
.pagination > .pag-next > a > .icon {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMzAiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTgiIGhlaWdodD0iMzAiPjxwYXRoIGQ9Ik0xOCAxNUwyLjUgMzAgMCAyNy41OCAxMyAxNSAwIDIuNDIgMi41IDAgMTggMTV6IiBmaWxsPSIjMDg0MjJiIi8+PC9zdmc+');
}

.hero-wrap:hover .flex-prev,
.hero-wrap:hover .flex-next { opacity: 0.7; }
.hero-wrap:hover .flex-next:hover,
.hero-wrap:hover .flex-prev:hover { opacity: 0.95; }

.flex-direction-nav .flex-disabled { opacity: 0.1!important; filter:alpha(opacity=0.1); cursor: default; }
.flex-direction-nav a:before  { display: inline-block; }

.flex-control-nav {
	height: 0;
	z-index: 10;
	width: 100%;
	bottom: -10px;
	position: absolute;
	text-align: center;
}
.flex-control-nav li {
	margin: 0 6px;
	display: inline-block;
}
.flex-control-nav a {
	cursor: hand;
	width: 10px;
	height: 10px;
	display: block;
	overflow: hidden;
	text-indent: -9999em;
	letter-spacing: 133px;
	background-color: #ccc;
	border-radius:			10px;
	-moz-border-radius:		10px;
	-webkit-border-radius:	10px;
}
.flex-control-nav a.flex-active {
	background-color: #0C422C;
}

