
/* main landing opening text */

div-animate {
  display:inline-block;
  overflow:hidden;
  white-space:nowrap;
  position: relative;
  animation:5s infinite;
	animation-timing-function: ease-in-out;

}

div-animate:first-of-type {  
  animation: showup 3s infinite!important;
}

div-animate:last-of-type {
  width:0px;
  animation: reveal 10s infinite!important;
}

div-animate:last-of-type span {
  margin-left:-355px;
  animation: slidein 60s infinite !important;
}

@keyframes showup {
    0% {opacity:0;}
    20% {opacity:1;}
    80% {opacity:1;}
    100% {opacity:0;}
}

@keyframes slidein {
    0% { margin-left:-800px; }
    20% { margin-left:-800px; }
    35% { margin-left:0px; }
    100% { margin-left:0px; }
}

@keyframes reveal {
    0% {opacity:0;width:0px;}
    20% {opacity:1;width:0px;}
    30% {width:400px;}
    80% {opacity:1;}
    100% {opacity:0;width:1000px;}
}



