/* UPDATED 2017-10-17 00:37:51 */

.slider-wrap
{
  height: 460px;
}

.slider-copy-wrap
{
  display: block;
  height: 460px;
}

.slider-copy
{
  width: 200px;
  height: 200px;
  top: 0px;
  left: 0px;
  background-color: rgba(34, 34, 34, 0.8);
  color: #999999;
}

/* animation */
/* general */
.slider-image li span
{
  height: 460px;
  
  -webkit-animation: fadeAnimate 30000ms linear 0s infinite;
  -moz-animation: fadeAnimate 30000ms linear 0s infinite;
  -o-animation: fadeAnimate 30000ms linear 0s infinite;
  -ms-animation: fadeAnimate 30000ms linear 0s infinite;
  animation: fadeAnimate 30000ms linear 0s infinite;
}

/* remaining images */

.slider-image li:nth-child(1) span
{
  background-image: url(/assets/files/d9f8a6f786f99cf606a0c1723150a2ea.jpg);
  
}

.slider-image li:nth-child(2) span
{
  background-image: url(/assets/files/3318d244393662426169eac75e91ee84.jpg);
  
  -webkit-animation-delay: 5000ms;
  -moz-animation-delay: 5000ms;
  -o-animation-delay: 5000ms;
  -ms-animation-delay: 5000ms;
  animation-delay: 5000ms;
}

.slider-image li:nth-child(3) span
{
  background-image: url(/assets/files/5e2a054ed3a041b7e3eef835e331ea45.jpg);
  
  -webkit-animation-delay: 10000ms;
  -moz-animation-delay: 10000ms;
  -o-animation-delay: 10000ms;
  -ms-animation-delay: 10000ms;
  animation-delay: 10000ms;
}

.slider-image li:nth-child(4) span
{
  background-image: url(/assets/files/1241acefaed6fc8be191652950b87dd8.jpg);
  
  -webkit-animation-delay: 15000ms;
  -moz-animation-delay: 15000ms;
  -o-animation-delay: 15000ms;
  -ms-animation-delay: 15000ms;
  animation-delay: 15000ms;
}

.slider-image li:nth-child(5) span
{
  background-image: url(/assets/files/4eb1cec64ff8fa8ba8987ef14e63de2c.jpg);
  
  -webkit-animation-delay: 20000ms;
  -moz-animation-delay: 20000ms;
  -o-animation-delay: 20000ms;
  -ms-animation-delay: 20000ms;
  animation-delay: 20000ms;
}

.slider-image li:nth-child(6) span
{
  background-image: url(/assets/files/bddb80b77a2791046a68958c0671beaa.jpg);
  
  -webkit-animation-delay: 25000ms;
  -moz-animation-delay: 25000ms;
  -o-animation-delay: 25000ms;
  -ms-animation-delay: 25000ms;
  animation-delay: 25000ms;
}


/* keyframes */

@-webkit-keyframes fadeAnimate
{
  0% { opacity: 0; -webkit-animation-timing-function: ease-in; }
  4% { opacity: 1; -webkit-animation-timing-function: ease-out; }
  17% { opacity: 1 }
  21% { opacity: 0 }
  100% { opacity: 0 }
}

@-moz-keyframes fadeAnimate
{
  0% { opacity: 0; -moz-animation-timing-function: ease-in; }
  4% { opacity: 1; -moz-animation-timing-function: ease-out; }
  17% { opacity: 1 }
  21% { opacity: 0 }
  100% { opacity: 0 }
}

@-o-keyframes fadeAnimate
{
  0% { opacity: 0; -o-animation-timing-function: ease-in; }
  4% { opacity: 1; -o-animation-timing-function: ease-out; }
  17% { opacity: 1 }
  21% { opacity: 0 }
  100% { opacity: 0 }
}

@-ms-keyframes fadeAnimate
{
  0% { opacity: 0; -ms-animation-timing-function: ease-in; }
  4% { opacity: 1; -ms-animation-timing-function: ease-out; }
  17% { opacity: 1 }
  21% { opacity: 0 }
  100% { opacity: 0 }
}

@keyframes fadeAnimate
{
  0% { opacity: 0; animation-timing-function: ease-in; }
  4% { opacity: 1; animation-timing-function: ease-out; }
  17% { opacity: 1 }
  21% { opacity: 0 }
  100% { opacity: 0 }
}



