.slider {
  padding: 0;
  margin: 0;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;  
  display: table;  
  
}

.slider ul {
  width: 1000%;
  height: auto;
  position: relative;
  list-style: none;
  left: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  -moz-animation:slide-animation 15s infinite;
  -webkit-animation:slide-animation 15s infinite;
}
/* 
.slider ul:hover {
  -moz-animation-play-state:paused;
  -webkit-animation-play-state:paused;
} */

.slider li {
  width: 10%;
  list-style: none;
  float: left;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  border-bottom: 3.5px solid #eee;
  border-bottom: 3px solid #000;
}

.slider img {
  max-width: 100%;
  display: block;
  width: 100%;
}
.slider .box{
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0,0,0,0.3);
  position: absolute;
  top: 0;
}

.slider .caption {
  position: absolute;
  
  color: #fcfcfc;
  font-weight: normal;
  max-width: 100%;
  font-size: 30px;
  display: block;
  bottom: 0;
  line-height: 1.5;
  height: 100%;
  width: 100%;
}
.slider .caption .fill{
  position: absolute;
  bottom: 0;
  text-align: left;  
  padding: 10px 20px;
}

.slider .caption h1{
  font-size: 28px;
  text-shadow: 0 0.5px 20px rgba(0, 0, 0, 0.2);
  color: #eee;
  font-weight: 700;
  line-height: 60px;
  margin: 1rem 0;
  font-family: 'Quattrocento Sans', sans-serif;
  margin-left: 10px;
}
.slider .caption p{
  font-size: 20.2px;
  color: #fff;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 15px;
  margin-left: 12px;
}
.slider .caption a.btn{
  background: rgba(255,255,255,0.9);
  padding: 3px 10px;
  font-family: 'Quattrocento Sans', sans-serif;
  color: #000;  
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 10px;
  box-shadow: 0 1px 9px rgba(0,0,0,0.2);
}
.header-down{
  padding: 5.5px 9px;
  background: #000;
  bottom: 20px;
  display: unset;
  position: relative;
  border-radius: 10px 10px 40px 40px;
  color: #fff;
  font-size: 20px;
  moz-animation:load 5s infinite;
  -webkit-animation:load 5s infinite;
  transition: 0.3s
}


@media screen and (max-width : 760px){
  .slider .caption{
    max-width: 100%;
  }
  .slider .caption .fill{
    top: 5%;
    max-width: 100%;
  }
  .slider .caption h1{
    font-size: 20px;  
  }
  .slider .caption p{
    display: none;
  }
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes load {
  0%   { bottom:15px;}
  25%  { bottom:20px;}
  50%  { bottom:20px;}
  75%  { bottom:20px;}
  100% { bottom:15px;}
}

/* Standard syntax */
@keyframes load {
  0%   { bottom:15px;}
  25%  { bottom:20px;}
  50%  { bottom:20px;}
  75%  { bottom:20px;}
  100% { bottom:15px;}
}

@-webkit-keyframes slide-animation {
  1% {left: 0%; opacity: 1;}
  18% {left: 0%; opacity: 1}
  19% {opacity: 0.2;}
  20% {left: -100%; opacity: 1;}
  58% {left: -100%; opacity: 1;}
  59% {opacity: 0.2;}
  60% {left: -200%; opacity: 1;}
  98% {left: -200%; opacity: 1;}
  99% {opacity: 0.5;}
  100% {left: 0%;}
}

@-moz-keyframes slide-animation {
  1% {left: 0%; opacity: 1;}
  18% {left: 0%; opacity: 1}
  19% {opacity: 0.2;}
  20% {left: -100%; opacity: 1;}
  58% {left: -100%; opacity: 1;}
  59% {opacity: 0.2;}
  60% {left: -200%; opacity: 1;}
  98% {left: -200%; opacity: 1;}
  99% {opacity: 0.5;}
  100% {left: 0%;}
}