@keyframes animationOne {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes animationTwo {
    0% {
        opacity: 0;
        transform: scale(0.1, 0.1);
    }

    40% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1.2, 1.2);
    }
}

.home [data-animation='1'] {
    animation: animationOne 0.6s cubic-bezier(0.33, 0, 0.67, 1) forwards;
    -webkit-animation: animationOne 0.6s cubic-bezier(0.33, 0, 0.67, 1) forwards;
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    opacity: 0;
}

.home [data-animation='2'] {
    animation: animationOne 0.6s cubic-bezier(0.33, 0, 0.67, 1) forwards;
    -webkit-animation: animationOne 0.6s cubic-bezier(0.33, 0, 0.67, 1) forwards;
    animation-delay: 1.25s;
    -webkit-animation-delay: 1.25s;
    opacity: 0;
}

.home [data-animation='3'] {
    animation: animationOne 0.6s cubic-bezier(0.33, 0, 0.67, 1) forwards;
    -webkit-animation: animationOne 0.6s cubic-bezier(0.33, 0, 0.67, 1) forwards;
    animation-delay: 1.625s;
    -webkit-animation-delay: 1.625s;
    opacity: 0;
}

.home [data-animation='4'] {
    animation: animationOne 0.6s cubic-bezier(0.33, 0, 0.67, 1) forwards;
    -webkit-animation: animationOne 0.6s cubic-bezier(0.33, 0, 0.67, 1) forwards;
    animation-delay: 2s;
    -webkit-animation-delay: 2s;
    opacity: 0;
}

.home [data-animation='5'] {
    animation: animationOne 0.6s cubic-bezier(0.33, 0, 0.67, 1) forwards;
    -webkit-animation: animationOne 0.6s cubic-bezier(0.33, 0, 0.67, 1) forwards;
    animation-delay: 2.375s;
    -webkit-animation-delay: 2.375s;
    opacity: 0;
}
