/*
* ====================================================
* Slideshow
* ====================================================
*/
.lSSlideWrapper, .lSSlideOuter, .slideshow, .slide-item {
  position: relative;
  width: 100%;
}

.slide-item {
  display: block;
  width: 100%;
  background-position: center center;
  background-size: 100%;
  /*For old browsers*/
  background-size: cover;
}

.slideshow-cta-title-deco-color{ color: red; }
.slideshow-cta-description-deco-color{ color: yellow; }

/* 
* --------------------------------------------------------------------------------
* Styles for custom next prev buttons, change classname in html to apply an style
* --------------------------------------------------------------------------------
*/
/*General Styles*/
.lSSlideOuter .lSAction{
  opacity: 0;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
}
.lSSlideOuter:hover .lSAction{
  opacity: 1;
} 
.lSAction > a{
  background-image: none;
  width: auto;
  height: auto;
  padding: 2px 20px;
  color: #ffffff;
  font-size: 2.5em;
  margin-top: -29px;
}
.lSAction > a:hover{
  color: #fff;
}
.lSAction > .lSPrev{
  left: 0;
}
.lSAction > .lSNext{
  right: 0;
}

/*Minimal*/
.nav-minimal .lSNext, .nav-minimal .lSPrev {
  background: none;
}
/*Square*/
.nav-square .lSNext, .nav-square .lSPrev {
  background: #000;
}
/*Circle*/
.nav-circle .lSNext{
  padding: 7px 25px;
  background: #000;
  border-radius: 40px;
  right: 10px;
}
.nav-circle .lSPrev{
  padding: 7px 25px;
  background: #000;
  border-radius: 40px;
  left: 10px;
}
/*Radius*/
.nav-radius .lSNext {
  background: #000;
  border-radius: 12px 0 0 12px;
}
.nav-radius .lSPrev{
  background: #000;
  border-radius: 0 12px 12px 0;
}


/*
* ----------------------------------------------------
* Dots navigation:  o o o o
* ----------------------------------------------------
*/
.lSSlideOuter .lSPager.lSpg{
  position: absolute;
  width: 100%;
  bottom: 15px;
    opacity: 0;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
}
.lSSlideOuter:hover .lSPager.lSpg{
  opacity: 1;
}
/*normal dot*/
.lSSlideOuter .lSPager.lSpg > li a{
  border: 1px solid #ffffff;
  background: none;
  width: 12px;
  height: 12px;
  outline: none;
}
/*active dot*/
.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a{
  background: rgba(255,255,255,.8);
}

/*
* ----------------------------------------------------
* Dots navigation:  o o o o
* ----------------------------------------------------
*/
.lSSlideOuter .lSPager.lSpg {
  position: absolute;
  width: 100%;
  bottom: 15px;
  opacity: 0;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
  -ms-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

.lSSlideOuter:hover .lSPager.lSpg {
  opacity: 1;
}

/*normal dot*/
.lSSlideOuter .lSPager.lSpg > li a {
  border: 1px solid #ffffff;
  background: none;
  width: 12px;
  height: 12px;
  outline: none;
}

/*active dot*/
.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
  background: rgba(255, 255, 255, 0.8);
}

/*
* ----------------------------------------------------
* Slide Captions
* ----------------------------------------------------
*/
/*Caption*/
.slide-item .caption * {
  -webkit-backface-visibility: hidden;
  /*Webkit: prevent flickers*/
  -webkit-transition: translate3d(0, 0, 0);
  /*Fix antialias problems in Webkit*/
}

.slide-item .caption {
  width: 46%;
  padding: 15px;
}

.slide-item .caption .caption-inner {
  background: rgba(0, 0, 0, 0.7);
  display: inline-block;
  padding: 30px;
  background: rgba(0, 0, 0, 0.2);
}

.slide-item .caption .title {
  font-size: 1.65em;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
}

.slide-item .caption .description {
  font-size: 1.10em;
  color: #ffffff;
  margin-bottom: 15px;
}

.slide-item .caption a.button {
  font-size: .85em;
  display: inline-block;
  background: #2B2B2B;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 15px;
}

.slide-item .caption a.button:hover {
  text-decoration: none;
  background: #000000;
  cursor: pointer;
}

/*Positions: bottom-left*/
.slide-item .caption.bottom-left {
  position: absolute;
  bottom: 40px;
  left: 30px;
}

/*Positions: bottom-center*/
.slide-item .caption.bottom-center {
  width: 100%;
  text-align: center;
  bottom: 40px !important;
  top: auto !important;
}

.slide-item .caption.bottom-center .caption-inner {
  text-align: center;
  bottom: 40px;
}

/*Positions: bottom-right*/
.slide-item .caption.bottom-right {
  position: absolute;
  bottom: 40px;
  right: 30px;
}
.slide-item .caption.bottom-right .caption-inner{
  text-align: left;
}

/*Positions: center-left*/
.slide-item .caption.center-left {
  width: 100%;
  left: 0 !important;
  text-align: left !important;
  padding-right: 60px;
}

.slide-item .caption.center-left .caption-inner {
  text-align: left;
}

/*Positions: center-right*/
.slide-item .caption.center-right {
  width: 100%;
  left: 0 !important;
  text-align: right !important;
  padding-right: 60px;
}

.slide-item .caption.center-right .caption-inner {
  text-align: left;
}

/*
* ----------------------------------------------------
* Ken Burns Effect (slow transition of background)
* ----------------------------------------------------
*/
.kenburns {
  overflow: hidden;
}

.kenburns > .zoom-this {
  background-position: center center;
  /*For old browsers*/
  background-size: 100%;
  /*For old browsers*/
  background-position: center no-repeat;
  background-size: cover;
  position: absolute;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation: kenburns-effect 9s ease-in-out infinite alternate;
  animation: kenburns-effect 9s ease-in-out infinite alternate;
}

.kenburns > .zooming {
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation: kenburns-effect 9s ease-in-out infinite alternate;
  animation: kenburns-effect 9s ease-in-out infinite alternate;
}

@-webkit-keyframes kenburns-effect {
  0% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
  }
}

@keyframes kenburns-effect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

/*
* ====================================================
* Media Querys for Slideshow
* ====================================================
*/
/* Tablet, ipad portrait 768px */
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .slide-item .caption {
    widows: 40%;
  }
  /*Slide caption*/
  .slide-item .caption {
    width: 52%;
    padding: 8px;
  }
  .slide-item .caption .title {
    font-size: 1.15em;
    margin-bottom: 10px;
  }
  .slide-item .caption .description {
    font-size: .85em;
    margin-bottom: 10px;
  }
  .slide-item .caption a.button {
    font-size: .75em;
  }
}

/* Tablet, ipad landscape 1024px */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .slide-item .caption {
    widows: 40%;
  }
}

/* Mobile portrait ancho 300px */
@media only screen and (max-width: 767px) {
  /*Slideshow*/
  .slide-item {
    height: 300px;
  }
  /*Slide caption*/
  .slide-item .caption {
    width: 82%;
    padding: 8px;
  }
  .slide-item .caption .title {
    font-size: 1.1em;
    margin-bottom: 10px;
  }
  .slide-item .caption .description {
    font-size: .8em;
    margin-bottom: 10px;
  }
  .slide-item .caption a.button {
    font-size: .75em;
  }
}

/* Mobile landscape ancho 420px */
