.subtitle {
    transform: translateY(-20px);
}

.boxTop {
    transform: translateY(40px);
}

h2.parallaxh2 {
    transform: translateY(70px);
}

.boxMid, .boxBottom {
    transform: translateY(-10px);
}

.subtitle.parallaxActive {
    transition: -webkit-mask-position 0.9s 0.2s, mask-position 0.9s 0.2s, transform 0.9s 0.2s, opacity 0.9s 0.2s;
}

.boxTop.parallaxActive {
    transition: -webkit-mask-position 0.9s 0.4s, mask-position 0.9s 0.4s, transform 0.9s 0.4s , opacity 0.9s  0.4s;
}

.boxMid.parallaxActive, .boxBottom.parallaxActive {
    transition: -webkit-mask-position 1.2s 0.6s, mask-position 1.2s 0.6s, transform 1.2s 0.6s, opacity 1.2s 0.6s;
}

.parallaxh2, .subtitle, .boxTop, .boxMid, .boxBottom {
    opacity: 0;
}

.parallaxh2.parallaxActive, .subtitle.parallaxActive, .boxTop.parallaxActive, .boxMid.parallaxActive, .boxBottom.parallaxActive {
    transform: translateY(0);
    opacity: 1;
}

.parallaxh2, .subtitle, .boxTop, .boxMid, .boxBottom {
transition: all 1s ease-out;
}

.centralLogo {
    animation: fadeIn 2s forwards;
}

.rightNav, .leftNav, #video {
    opacity: 0;
    animation: fadeIn 2s 2s forwards;
}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}