/*Animation*/
@keyframes fadein {
  /* declare animation actions here */
}

.fadein {
  animation-name: fadein;
  animation-duration: 3s; 
  animation-timing-function: ease-in-out; 
  animation-delay: 0;
  animation-direction: alternate;
  animation-iteration-count: 1;
  animation-fill-mode: none;
  animation-play-state: running; 
}
@keyframes fadein {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

/*menu*/


/*smaller screens*/
@media only screen and (max-width: 767px) {
@keyframes grow {
  /* declare animation actions here */
}

.grow {
    display:block;
  animation-name: grow;
  animation-duration: 0.8s; 
  animation-timing-function: ease-in-out; 
  animation-delay: 0;
  animation-direction: alternate;
  animation-iteration-count: 1;
  animation-fill-mode: none;
  animation-play-state: running; 
}
@keyframes grow {
  0% {
    height:0px;padding:0px;overflow:hidden;
  }
  100% {
    height:auto;
  }
}
}
