.slider {
  position: relative;
}

#slider {
  position: relative;
  overflow: hidden;
  width: 100% !important;
}
#slider ul {
  position: relative;
  margin: 0;
  padding: 0;
  height: auto;
  width: 99999px;
  overflow: hidden;
  list-style: none;
}
#slider ul li {
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: auto;
  text-align: center;
}
#slider ul li .slide {
  background-size: cover;
  width: 100%;
  height: 80vh;
}
#slider ul li img{
  width: 100%;
  height: 100%;
}
button.control_prev, button.control_next {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: block;
  border: none;
  width: 3em;
  height: 3em;
  line-height: 1.9em;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 2rem;
  opacity: 0.8;
  cursor: pointer;
  border-radius: 50%;
  transform: translateY(-50%);
}
button.control_prev:focus, button.control_next:focus {
  outline: none;
  border: 1px rgba(255, 255, 255, 0.5) solid;
}
button.control_prev:hover, button.control_next:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
}

button.control_prev {
  left: 2rem;
}

button.control_next {
  right: 2rem;
}

.progress {
  position: absolute;
  background: rgba(255, 255, 255, 0.3) !important;
  height: .5rem !important;
  width: 100%;
  bottom: 0;
  margin-bottom: 0 !important;
  border-top: 1px rgba(0, 0, 0, 0.15) solid;
}
.progress .bar {
  height: 100%;
  width: 0%;
  background: #229022;
}

.teaser {
  position: absolute;
  top: 50%;
  left: 8%;
  text-align: left;
  width: 100%;
  color: #fff;
  transform: translateY(-50%);
}
.teaser h2 {
  width: 45%;
  font-size: 28px;
   text-transform: uppercase; 
  line-height: 1.5em;
  color: #fff;
  background: rgba(0, 175, 239, 0.9);
  /*background-color: #970048;*/
  padding: 10px 10px;
  font-weight: 600;
}
.teaser p {
  font-size: 16px;
  line-height: 1.8em;
  width: 45%;
  padding: 10px 15px;
  background-color: #090909;
}
/*.teaser h3 {
  border-bottom: 2px #fff solid;
  width: 33%;
  padding: 1.5rem 0;
  margin: 0rem auto;
  min-width: 25rem;
}*/
.teaser a {
  margin-left: .5rem;
  margin-right: .5rem;
}
@media all and (max-width: 768px){
  /*#slider ul li{
    width: auto;
  }*/
  .teaser{
    left: 1%;
    width: 98%;
  }
  .teaser p {width: 100%;}
  .teaser h2{width: 100%;margin-bottom: 70px;}
}