/**
@Author: Edinson Tique
@Name: QCSlider Pluggin
@Version: 1.4.3
@Year: 2018
@Contact: www.fb.com/QueCodigoPG
@Libraries: jQuery
**/
:root {
  --opacity-slide: 0;
  --height-slider: 350px;
  --color-slider:#1f77b6;
  --height-responsive: 350px;
}

body {
  margin: 0;
  padding: 0;
}

section.slide {
  position: relative;
  float: left;
  display: block;
  width: 100%;
  height: var(--height-slider);
}
@media only screen and (max-width: 766px) {
  section.slide {
    height: var(--height-responsive);
  }
}
section.slide .slider-container {
  width: 100%;
  height: 100%;
  float: left;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background-color: #FFFFFF;
}
section.slide .slider-container .slider-wrapper {
  margin: 0;
  padding: 0;
  width: 100%;
  z-index: 90;
  height: 100%;
  position: relative;
}
section.slide .slider-container .slider-wrapper li {
  display: none;
}
section.slide .slider-container .slider-wrapper li.slide-current {
  display: block;
}
section.slide .slider-container .slider-wrapper li.video {
  height: 100%;
  position: relative;
  background: #000000;
}
section.slide .slider-container .slider-wrapper li.video .include {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
}
section.slide .slider-container .slider-wrapper li.video .include::before {
  top: 0;
  left: 0;
  z-index: 4;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}
section.slide .slider-container .slider-wrapper li.video .include iframe, section.slide .slider-container .slider-wrapper li.video .include object, section.slide .slider-container .slider-wrapper li.video .include embed, section.slide .slider-container .slider-wrapper li.video .include video {
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
}
section.slide .slider-container .slider-wrapper li img {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.slide .slider-container .slider-wrapper li .capa {
  bottom: 1px;
  left: 0;
  width: 100%;
  z-index: 92;
  /* height: 100%; */
  display: block;
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .7));
  padding: 1em;
  margin-bottom: 50px;
  opacity: 1;
  transition: opacity .3s ease-in-out;
}
section.slide .slider-container .slider-wrapper li:hover .capa {
  opacity: 0;
}
section.slide .slider-container .slider-wrapper li .capa h3{
  color: #fff;
  font-size: 1em !important;
}
section.slide .slider-container .slider-wrapper li .capa p{
  color: #fff;
  font-size: .7em;
  padding: 0 !important;
  margin: 0 !important;
  font-weight: 500;
}
section.slide .slider-container .drt-control {
  bottom: 0;
  z-index: 290;
  color: white;
  padding: 7px 18px 7px 18px;
  cursor: pointer;
  font-size: 22px;
  position: absolute;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background: rgba(0, 0, 0, var(--opacity-slide));
}
@media only screen and (max-width: 766px) {
  section.slide .slider-container .drt-control {
    padding: 9px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 414px) {
  section.slide .slider-container .drt-control:hover {
    background: rgba(0, 0, 0, .3);
  }
}
section.slide .slider-container .drt-control:hover {
  background: rgba(0, 0, 0, var(--opacity-slide));
}
section.slide .slider-container .drt-control.control-left {
  left: 0px;
  /* border-radius: 0px 50px 50px 0px; */
}
section.slide .slider-container .drt-control.control-right {
  right: -1px;
  /* border-radius: 50px 0 0 50px; */
  /* padding-left: 18px; */
}
section.slide .slider-container .slider-controls {
  z-index: 90;
  width: 100%;
  bottom: 0px;
  padding: 5px;
  text-align: center;
  margin-bottom: 0px;
  position: absolute;
  padding-bottom: 15px;
  background: rgba(0, 0, 0, 0.7);
  /* -webkit-box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.2); */
  /* box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.2); */
}
@media only screen and (max-width: 766px) {
  section.slide .slider-container .slider-controls {
    background: rgb(0, 0, 0, .3) !important;
    padding: 8px !important;
  }
}
@media only screen and (max-width: 414px) {
  section.slide .slider-container .slider-controls {
    padding: 12px !important;
  }
}
section.slide .slider-container .slider-controls li {
  zoom: 1;
  width: 25px;
  height: 8px;
  margin: 0 6px;
  cursor: pointer;
  *
  display: inline;
  background: #DA4453;
  text-indent: -9999px;
  display: inline-block;
  background: rgba(255,255,255, 0.9);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 766px) {
  section.slide .slider-container .slider-controls li {
    width: calc(25% - 40px);
  }
}
section.slide .slider-container .slider-controls li.active {
  background: var(--color-slider);
}
section.slide .slider-container .tempo-bar {
  position: absolute;
  bottom: 0px;
  height: 5px;
  background: var(--color-slider);
  width: 0%;
  z-index: 91;
  display: block;
  float: left;
}
