@charset "UTF-8";

.complete~#mv_outer .mv_text{  
animation-name: smooth-fadein-out; 
  animation-duration: 15s; 
  animation-timing-function: ease-in-out; 
  animation-delay: 2s; 
  animation-iteration-count:1; 
  animation-direction: alternate; 
  animation-fill-mode:none; 
  opacity: 0; 
} 

  

@keyframes smooth-fadein-out { 
  0% {opacity: 0;} 
  50% {opacity: 1;} 
100% {opacity: 0;} 
}