.intro-animation {
    background-color: black;
	position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    z-index: 10000;
	transition: all 1s linear;
}

.animation-container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.animation-wrapper {
    position: relative;
    opacity: 0;

    animation: showLogo 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    -webkit-animation: showLogo 2s;
    -webkit-animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
    -o-animation: showLogo 2s;
    -o-animation-delay: 1s;
    -o-animation-fill-mode: forwards;
}

.animation-container img {
    width: 200px;
    height: 200px;
}

.logo-text-overlay {
    position: absolute;
    width: 100%;
    bottom: 0;
    margin: 0 auto;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), #000000 6%);
    transform: translate(0, 0);
    height: 30px;

    animation: showText 2s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    -webkit-animation: showText 2s;
    -webkit-animation-delay: 2s;
    -webkit-animation-fill-mode: forwards;
    -o-animation: showText 2s;
    -o-animation-delay: 2s;
    -o-animation-fill-mode: forwards;
}

.logo-text-overlay:hover {
    transform: translate(96%, 0);
}

.preloader-hidden {
    display: none;
}

.visuallyhidden {
    opacity: 0;
  }

@keyframes showLogo {
    from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
}

@keyframes showText {
   0% {
    transform: translate(0, 0);
   }
   100% {
    transform: translate(96%, 0);
   }
}