.footer-animation {
    box-sizing: border-box;
    height: 85vw;
    min-width: 100vw;
    position: relative;
    overflow: hidden;
    z-index: 8;
    margin-top: 100px;
}
.fa-parallax-items {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 85vw;
    width: 100vw;
    min-width: 100vw;
    display: block;
    z-index: 8;
}

/* Scale: 1 + (translateZ * -1) / perspective */

.fa-parallax-items.stars img {
    width: 3px;
    height: 3px;
    top: 0;
    left:0;
    animation: fa-star 3s infinite alternate linear;
    animation-delay: 0.3s;
}
.fa-parallax-items.sun img {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    bottom: -11%;
}
.fa-parallax-items.mountains img {
    bottom: -6%;
}
.fa-parallax-items.clouds-top-2 img {
    top: -15% !important;
    animation: fa-clouds-top 120s infinite linear !important;
    animation-delay: 0.3s;
}
.fa-parallax-items.trees-1,
.fa-parallax-items.clouds-top-1 {
    /*-webkit-transform: translateZ(-0.12px) scale(1.12);
    transform: translateZ(-0.12px) scale(1.12);*/

}
.fa-parallax-items.clouds-top-1 img {
    top: -14% !important;
    animation: fa-clouds-top 90s infinite linear !important;
    animation-delay: 0.3s;
}

.fa-parallax-items.clouds-mid img {
    width: 10%;
    height: 5%;
    transform: translateX(130vw);
    animation: fa-clouds-mid 20s infinite linear;
    animation-delay: 0.3s;
}

.fa-parallax-items.balloon img {
    animation: fa-balloon 8s infinite alternate ease-in-out;
    animation-delay: 0.3s;
}
.fa-parallax-items.clouds-top-0 img,
.fa-parallax-items.clouds-top-1 img,
.fa-parallax-items.clouds-top-2 img {
    width: 100%;
    top: -2px;
    left: 0;
    animation: fa-clouds-top 60s infinite linear;
    animation-delay: 0.3s;
}
.fa-parallax-items.clouds-top-0 img:last-child,
.fa-parallax-items.clouds-top-1 img:last-child,
.fa-parallax-items.clouds-top-2 img:last-child {
    left: calc(100% - 2px);
}

.fa-parallax-items img {
    position: absolute;
    width: 110%;
    height: auto;
    left: 0;
    bottom: -5%;
}

.fa-sky-background,
.fa-sky-background-top-light {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(
            #182c33 0%,
            #20404e 3%,
            #345864 8%,
            #476e7f 15%,
            #517a88 19%,
            #568393 25%,
            #e3e3c8 92%
    ) center/100% 100% no-repeat;
    -webkit-transform-style: inherit;
    transform-style: inherit;
}

@keyframes fa-balloon {
    0%   { transform: translate3D(0, -20.75vw, 0);}
    100% { transform: translate3D(0, 20.75vw, 0);}
}

@keyframes fa-star {
    0%   { transform: scale(1.0); }
    20% { transform: scale(0.4); }
    40% { transform: scale(0.2); }
    60% { transform: scale(0.8); }
    80% { transform: scale(0.2); }
    100% { transform: scale(0.4); }
}
@keyframes fa-clouds-mid {
    to   { transform: translateX(130vw); }
    from   { transform: translateX(-130vw); }
}
@keyframes fa-clouds-top {
    from   { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}
