﻿.fadeInDiv {
  transform: translateY(100px) translateZ(0);
  transition: 1.3s;
  opacity: 0;
}

.fadeInDivinView {
  opacity: 1;
  transform: translateY(0px) translateZ(0);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* Effects don't work in IE. This makes sure the fadeIn elements still display */
  .fadeInDiv {
    opacity: 1;
    transform: translateY(0px) translateZ(0);
  }
}
