.arrow {
    position: fixed;
    transform: translate(-50%, -50%);
    transform: rotate(0deg);
    bottom: 10%;
    left: 50%;
}

.arrow span {
    display: block;
    width: 5vh;
    height: 5vh;
    transform: rotate(45deg);
    margin: -10px;
    animation: arrowAnimation 2s infinite;
    border-bottom: 5px solid red;
    border-right: 5px solid red;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes arrowAnimation {
    0% {
        opacity: 0;
        -webkit-filter: blur(16px);
		    filter: blur(16px);
        transform: rotate(45deg) translate(-20px, -20px);
    border-bottom: 5px solid rgb(106, 17, 75);
    border-right: 5px solid rgb(106, 17, 75);
    }
    10% {
        border-bottom: 5px solid rgb(106, 17, 75);
        border-right: 5px solid rgb(106, 17, 75);
    }
    35% {
        /* -webkit-filter: blur(2px);
		    filter: blur(2px); */
        -webkit-filter: blur(1px);
        filter: blur(1px);
        opacity: 1;
        border-bottom: 5px solid white;
        border-right: 5px solid white;
    }
    50% {
        border-bottom: 5px solid rgb(106, 17, 75);
        border-right: 5px solid rgb(106, 17, 75);
    }
    65% {
        border-bottom: 5px solid rgb(9, 8, 98);
        border-right: 5px solid rgb(9, 8, 98);
    }
    80% {
        /* -webkit-filter: blur(2px);
		    filter: blur(2px); */
        /* opacity: 1; */
        border-bottom: 5px solid red;
        border-right: 5px solid red;
    }
    100% {
        -webkit-filter: blur(16px);
        filter: blur(16px);
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
        border-bottom: 5px solid rgb(106, 17, 75);
        border-right: 5px solid rgb(106, 17, 75);
    }
}