@charset "UTF-8";
/*slider*/

#custom .slider {
   width: 950px;
   height: 460px;
   overflow: hidden;
   position: relative;
}

#custom .slider-item {
    z-index:10;
    opacity: 0;
    width: 100%;
    height: 460px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 20s 0s infinite;
    animation: anime 20s 0s infinite;
}

#custom .slider-item:nth-of-type(2) {
      -webkit-animation-delay: 5s;
      animation-delay: 5s; }

#custom .slider-item:nth-of-type(3) {
      -webkit-animation-delay: 10s;
      animation-delay: 10s; }

#custom .slider-item:nth-of-type(4) {
      -webkit-animation-delay: 15s;
      animation-delay: 15s; }

/*#custom .slider-item:nth-of-type(5) {
      -webkit-animation-delay: 20s;
      animation-delay: 20s; }

#custom .slider-item:nth-of-type(6) {
      -webkit-animation-delay: 25s;
      animation-delay: 25s; }*/

@keyframes anime {
   0% {
     opacity: 0;
   }
   13% {
     opacity: 1;
   }
   30% {
     opacity: 1;
   }
   45% {
     opacity: 0;
     transform: scale(1.1);
      z-index:9;
   }
   100% {
      opacity: 0;
   }
}
