.main_img:nth-of-type(2) {
      -webkit-animation-delay: 6s;
      animation-delay: 6s; }

    .main_img:nth-of-type(3) {
      -webkit-animation-delay: 12s;
      animation-delay: 12s; }

    .main_img:nth-of-type(4) {
      -webkit-animation-delay: 18s;
      animation-delay: 18s; }

    .main_img:nth-of-type(5) {
      -webkit-animation-delay: 24s;
      animation-delay: 24s; }

    .main_img:nth-of-type(6) {
      -webkit-animation-delay: 30s;
      animation-delay: 30s; }

      @keyframes anime {
        0% {
              opacity: 0;
          }
          8% {
              opacity: 1;
          }
          17% {
              opacity: 1;
          }
          25% {
              opacity: 0;
              transform: scale(1.08) ;
               z-index:9;
          }
          100% { opacity: 0 }
      }
