/*
 * jQuery FlexSlider v1.8
 * http://flex.madebymufffin.com
 *
 * Copyright 2011, Tyler Smith
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
 #container {width: 80%; max-width: 800px; margin: 0 auto;}
/* Browser Resets */
.flex-container a:active,
.flexslider a:active {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;} 

/* FlexSlider Necessary Styles
*********************************/ 
.flexslider {width: 100%; margin: 0; padding: 0; overflow:hidden;}
.flexslider .slides > li {display: none;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {max-width: 100%; width:100%; display:block; }
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; z-index: 99999;} 
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
*********************************/
.flexslider { position: relative; zoom: 1; z-index:0; min-height:490px; }
.inner-slider .flexslider {min-height:auto;}
.flexslider .slides {zoom: 1;}
/* .flexslider .slides > li { background-size:cover; background-position:center center;} */
.flexslider .slides > li::after {  position: absolute; content: ""; background: rgba(0,0,0,1);
  background: -moz-linear-gradient(left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(255,255,255,0) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,0,0,0.5)), color-stop(50%, rgba(0,0,0,0.3)), color-stop(100%, rgba(255,255,255,0)));
  background: -webkit-linear-gradient(left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(255,255,255,0) 100%);
  background: -o-linear-gradient(left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(255,255,255,0) 100%);
  background: -ms-linear-gradient(left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(255,255,255,0) 100%);
  background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(255,255,255,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff', GradientType=1 );width: 100%; height: 100%; left: 0; top: 0;}
.inner-slider .flexslider .slides > li { min-height:auto;}
/* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish */
.flex-container {zoom: 1; position: relative;}

/* Caption style */
/* IE rgba() hack */
.flex-caption {zoom: 1; }
.flex-caption {position:absolute; ; width:100%; z-index:9; top: 45%; transform: translateY(-50%);}
.flex-cont { float: left; width: 100%; max-width: 500px;}
.flex-cont h1 { color:#FFFFFF; font-size:32px; line-height:48px; font-family: 'lorabold'; margin-bottom: 20px;}
.flex-cont h1 br { display: none;}
.flex-cont span { display: inline-flex; align-items: center; justify-content: center; font-family: 'loraitalic'; width: auto; height: auto; border-radius: 3px; background: #BF0D0D;transition:all .5s ease;
font-size: 18px; line-height: 30px; color: #FFFFFF; padding: 12px 25px;}

/* Control Nav */
.flex-control-nav { margin: 0 auto; position: absolute; bottom:30px; text-align: center; z-index:9999; left: 0; right:0;}
.flex-control-nav li { cursor: pointer; margin: 0 15px 0px 0; display:inline-block; zoom: 1; *display: inline;}
.flex-control-nav li:last-child {margin: 0;}
.flex-control-nav li a {width: 11px; height: 11px; display: block; background:#FFFFFF; cursor: pointer; text-indent: 9999px; border-radius:50%; transition:all .5s ease; }
.flex-control-nav li a:hover {background:#BF0D0D;}
.flex-control-nav li a.flex-active {background:#BF0D0D; cursor: default;}

/* Direction Nav */
.home-banner .flex-direction-nav { display:block; width: 100%; position: absolute; top: 50%; transform: translateY(-50%); left: 0; margin: 0 auto; z-index: 99;}
.home-banner .flex-direction-nav li a {width:50px; height:50px; margin: 0px 0 0; display: block; position: absolute; top: 50%; cursor: pointer; text-indent: -9999px; z-index:9999; transition:all .5s ease; border: 2px solid #fff;}
.home-banner .flex-direction-nav li .flex-next { right: 30px; background: url(../images/slider-arrw-rgt.svg) no-repeat center center; border-radius: 50%;}
.home-banner .flex-direction-nav li .flex-next:hover { background: #BF0D0D url(../images/slider-arrw-rgt.svg) no-repeat center center; border: 2px solid #BF0D0D;}
.home-banner .flex-direction-nav li .flex-prev {left:30px; background: url(../images/slider-arrw-lft.svg) no-repeat center center; border-radius: 50%;}
.home-banner .flex-direction-nav li .flex-prev:hover { background: #BF0D0D url(../images/slider-arrw-lft.svg) no-repeat center center; border: 2px solid #BF0D0D;}
