/* Slider */
#slider{
  width:100%;
  height:100vh;
  position:relative;
  overflow:hidden;
  font-family: "Rubik",sans-serif;
}
.slides{
  width:400%;
  height:100%;
  position:relative;
  animation:slide 30s infinite;
}
.slider{
  width:25%;
  height:100%;
  float:left;
  position:relative;
  z-index:1;
  overflow:hidden;
}

/* Legend */
.legend{
  border:500px solid transparent;
  border-left:800px solid rgba(52, 73, 94, .7);
  border-bottom:0;
  position:absolute;
  bottom:0;
}

/* Contents */
.content{
  width:100%;
  height:100%;
  position:absolute;
  overflow:hidden;
}
.content-txt{
  width:600px;
  height:150px;
  float:left;
  position:relative;
  top:400px;
  margin-left:15%;
  animation:content-s 9.5s infinite;
}
.content-txt h1{
  font-family:Arial;
  text-transform:uppercase;
  font-size:48px;
  color:#fff;
  text-align:left;
  margin-left:30px;
  padding-bottom:10px;
  font-style: italic;
}
.content-txt h2{
  font-family:arial;
  font-weight:normal;
  font-size:24px;
  font-style:italic;
  color:#fff;
  text-align:left;
  margin-left:30px;
}
.content-txt button{
  margin-top:2rem;
  margin-left:30px;
}

/* Switch */
.switch{
  width:120px;
  height:10px;
  position:absolute;
  bottom:50px;
  z-index:99;
  left:30px;
}
.switch > ul{
  list-style:none;
}
.switch > ul > li{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#333;
  float:left;
  margin-right:5px;
  cursor:pointer;
}
.switch ul{
  overflow:hidden;
}
.on{
  width:100%;
  height:100%;
  border-radius:50%;
  background:#f39c12;
  position:relative;
  animation:on 30s infinite;
}

/* Animation */

@keyframes slide{
  0%,100%{
    margin-left:0%;
  }
  29%{
    margin-left:0%;
  }
  33%{
    margin-left:-100%;
  }
  62%{
    margin-left:-100%;
  }
  66%{
    margin-left:-200%;
  }
  95%{
    margin-left:-200%;
  }
}


@keyframes content-s{
  0%{left:-50%;}
  10%{left:20px;}
  15%{left:0px;}
  30%{left:0px;}
  40%{left:0px;}
  50%{left:0px;}
  60%{left:0px;}
  70%{left:0;}
  80%{left:-50%;}
  90%{left:-50%;}
  100%{left:-50%;}
}

@keyframes on{
  0%,100%{
    margin-left:0%;
  }
  29%{
    margin-left:0%;
  }
  33%{
    margin-left:15px;
  }
  62%{
    margin-left:15px;
  }
  66%{
    margin-left:30px;
  }
  95%{
    margin-left:30px;
  }
}




/* Small screen devices (600px and above) */
