/**{box-sizing:border-box}body{margin:0}ul.bo-slider{display:none}.bo-slider{position:relative;width:100%}.bo-slider .bo-slide{display:none}.bo-slider .bo-slide.active{display:block}body .bo-slider .bo-slide img{height:700px;width:100%;object-fit:cover}body .bo-slider .bo-slide video{height:700px;width:100%;object-fit:cover}@media (min-width:640px){.bo-slider .bo-slide img{height:400px}.bo-slider .bo-slide video{height:400px}}@media (min-width:768px){.bo-slider .bo-slide img{height:450px}.bo-slider .bo-slide video{height:450px}}@media (min-width:1024px){.bo-slider .bo-slide img{height:500px}.bo-slider .bo-slide video{height:500px}}@media (min-width:1200px){.bo-slider .bo-slide img{height:550px}.bo-slider .bo-slide video{height:550px}}@media (min-width:1800px){.bo-slider .bo-slide img{height:600px}.bo-slider .bo-slide video{height:600px}}.bo-slider .bo-slide{position:relative}.bo-slider .play-button{cursor:pointer;position:absolute;top:50%;left:50%;width:auto;margin-top:-62px;margin-left:-62px;padding:16px;color:#fff;font-weight:700;font-size:80px;transition:.6s ease;border-radius:0 3px 3px 0;user-select:none}.bo-prev,.bo-slider .bo-next{cursor:pointer;position:absolute;top:50%;width:auto;margin-top:-22px;padding:16px;color:#fff;font-weight:700;font-size:18px;transition:.6s ease;border-radius:0 3px 3px 0;user-select:none}.bo-slider .bo-prev{left:0}.bo-slider .bo-next{right:0}.bo-next:hover,.bo-prev:hover{background-color:rgba(0,0,0,.8)}.bo-dots{margin-top:10px;text-align:center}.bo-dot{cursor:pointer;height:15px;width:15px;margin:0 2px;background-color:#bbb;border-radius:50%;display:inline-block;transition:background-color .6s ease}.bo-dot:hover,.selected{background-color:#717171}.fade{-webkit-animation-name:fade;-webkit-animation-duration:1.5s;-moz-animation-name:fade;-moz-animation-duration:1.5;-ms-animation-name:fade;-ms-animation-duration:1.5;-o-animation-name:fade;-o-animation-duration:1.5;animation-name:fade;animation-duration:1.5s}@-webkit-keyframes fade{from{opacity:.4}to{opacity:1}}@-moz-keyframes fade{from{opacity:.4}to{opacity:1}}@-ms-keyframes fade{from{opacity:.4}to{opacity:1}}@-o-keyframes fade{from{opacity:.4}to{opacity:1}}@keyframes fade{from{opacity:.4}to{opacity:1}}.slide{-webkit-animation-name:slide;-webkit-animation-duration:1.5s;-moz-animation-name:slide;-moz-animation-duration:1.5;-ms-animation-name:slide;-ms-animation-duration:1.5;-o-animation-name:slide;-o-animation-duration:1.5;animation-name:slide;animation-duration:1.5s}@-webkit-keyframes slide{from{opacity:.4;margin-left:100%}to{opacity:1;margin:0}}@-moz-keyframes slide{from{opacity:.4;margin-left:100%}to{opacity:1;margin:0}}@-ms-keyframes slide{from{opacity:.4;margin-left:100%}to{opacity:1;margin:0}}@-o-keyframes slide{from{opacity:.4;margin-left:100%}to{opacity:1;margin:0}}@keyframes slide{from{opacity:.4;margin-left:100%}to{opacity:1;margin:0}}*/
/**
@Author: Edinson Tique
@Name: QCSlider Pluggin
@Version: 1.4.3
@Year: 2018
@Contact: www.fb.com/QueCodigoPG
@Libraries: jQuery
**/
:root {
  --opacity-slide: 0.5;
  --height-slider: 500px;
  --color-slider: #ff3e00;
  --height-responsive: 500px;
}

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 {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 92;
  height: 100%;
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
}
section.slide .slider-container .drt-control {
  top: 40%;
  z-index: 90;
  color: white;
  padding: 30px;
  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: 20px;
    font-size: 20px;
  }
}
section.slide .slider-container .drt-control:hover {
  background: black;
}
section.slide .slider-container .drt-control.control-left {
  left: -20px;
  border-radius: 0px 50px 50px 0px;
}
section.slide .slider-container .drt-control.control-right {
  right: -20px;
  border-radius: 50px 0 0 50px;
}
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.3);
  -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);
  }
}
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(59, 59, 59, 0.5);
  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;
}

