/*
 * 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; height: 100%;object-fit: cover;} 
.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:600px; }
.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,0.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; top: 50%; text-align:center; width:100%; z-index:9; transform: translateY(-50%);}
.flex-caption p { color:#FFFFFF; font-size:16px; line-height:26px; letter-spacing: -0.16px;font-family: 'Montserrat-Regular';}
.flex-caption p span{font-family: 'Montserrat-Bold'; }
.flex-caption .des-btns { display: flex; align-items: center; justify-content: center; margin-top: 40px;}
.flex-caption a.saber-btn { display: flex; align-items: center; justify-content: center; letter-spacing: 1.07px; font-family: 'Montserrat-Bold'; font-size:12px; line-height: 15px; color:#FFFFFF; border:1px solid #FFFFFF; padding: 0 15px; height: 55px; width: 185px; background: none; transition:all .5s ease; 
text-transform: uppercase;}
.flex-caption a.saber-btn:hover { background: #fff; color: #000;}

/* Control Nav */
.flex-control-nav {width:100%; margin:0 auto; position: absolute; bottom:45px; z-index:9999; right: 0; text-align: center; left: 0; }
.flex-control-nav li {margin: 0 20px 0px 0; display:inline-block; zoom: 1; *display: inline;}
.flex-control-nav li:last-child { margin: 0;}
.flex-control-nav li a {width: 10px; height: 10px; display: block; background:rgba(255, 255, 255, 0.3); cursor: pointer; text-indent: 9999px; border-radius:50%; -webkit-border-radius:50%; -o-border-radius:50%; -moz-border-radius:50%;  transition: all 0.4s ease;}
.flex-control-nav li a:hover {background:#ffffff;}
.flex-control-nav li a.flex-active {background:#ffffff; cursor: default; position: relative;}

/* Direction Nav */
.flex-direction-nav { display:block; }
.flex-direction-nav li a {width:18px; height:32px; margin: 0px 0 0; display: block;  position: absolute; top: 50%; cursor: pointer; text-indent: -9999px; z-index:9999; }
.flex-direction-nav li .flex-next {background-position: -25px 0; right:20px;background: url(../images/arrow-rgt.png) no-repeat 0 0; background-position: 0px 0; }
/*.flex-direction-nav li .flex-next:hover {background: url(../images/arrw-rgt.png) no-repeat 0 0;}*/
.flex-direction-nav li .flex-prev {left:20px; background: url(../images/arrow-lft.png) no-repeat 0 0; background-position: 0px 0; }
/*.flex-direction-nav li .flex-prev:hover {left:20px; background: url(../images/arrw-lft.png) no-repeat 0 0;}*/
.flex-direction-nav li .disabled {opacity: .3; filter:alpha(opacity=30); cursor: default;}
