
/*  
// ---------
// Keyframes
// ---------
*/
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50%); 
  }
  100% {
    opacity: 1;
    transform: none; 
  } 
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-50%); 
  }
  100% {
    opacity: 1;
    transform: none; 
  } 
}
@keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(50%); 
  }
  100% {
    opacity: 1;
    transform: none; 
  } 
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-50%); 
  }
  100% {
    opacity: 1;
    transform: none; 
  } 
}

@keyframes fadeIn {
  0% {
    opacity: 0; 
  }
  100% {
    opacity: 1; 
  } 
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1; 
    transform: none;
  } 
}
@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1; 
    transform: none;
  } 
}

@keyframes flipInY {
  0% {
    opacity: 0; 
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1; 
    transform: none;
  } 
}


[data-animation] {
  opacity: 0;
  animation-timing-function: cubic-bezier(.4,0,.2,1);
  animation-fill-mode: both;
  animation-duration: 1s;
}

/* Disable animation of the childs */
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
  }
}


/* Slide Animations */
.slideInUp {
  animation-name: slideInUp;
}
.slideInDown {
  animation-name: slideInDown;
}
.slideInLeft {
  animation-name: slideInleft;
}
.slideInRight {
  animation-name: slideInRight;
}


/* Fade Animations */
.fadeIn {
  animation-name: fadeIn;
}
.fadeOut {
  animation-name: fadeIn;
  animation-direction: reverse;
}

/* Zoom Animations */
.zoomIn {
  animation-name: zoomIn;
}
.zoomOut {
  animation-name: zoomIn;
  animation-direction: reverse;
}
.zoomReverseIn {
  animation-name: zoomReverseIn;
}
.zoomReverseOut {
  animation-name: zoomReverseIn;
  animation-direction: reverse;
}


/* Flip Animations */
.flipInY {
  animation-name: flipInY;
}
.flipOutY {
  animation-name: flipInY;
  animation-direction: reverse;
}

/* auto type animation */
.headlines {
    position: relative;
    width: 60em;
    margin: 0 auto;
    border-right: 2px solid rgba(255,255,255,.75);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    line-height: 100%;
    margin: 20px auto;
}
.headlines-main {
    position: relative;
    width: 12em;
    margin: 0 auto;
    border-right: 2px solid rgba(255,255,255,.75);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    line-height: 100%;
    margin: 20px auto;
}
/* Animation */
.anim-typewriter{
  animation: typewriter 4s steps(55) 1s 1 normal both,
             blinkTextCursor 500ms steps(55) infinite normal;
}
.anim-typewriter-main{
  animation: typewriter-main 4s steps(26) 1s 1 normal both,
             blinkTextCursor 500ms steps(26) infinite normal;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 60em;}
}
@keyframes typewriter-main{
  from{width: 0;}
  to{width: 12em;}
}
@keyframes blinkTextCursor{
  from{border-right-color: rgba(255,255,255,.75);}
  to{border-right-color: transparent;}
}


@meia only screen and (max-width:991px) {
 .headlines {
	 display:none;
 }
}

