.next-arrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.next-arrow {
    height: 200px;
    width: 200px;
    -webkit-animation: anim-arrow 100s linear infinite;
    animation: anim-arrow 100s linear infinite;
}

@keyframes anim-arrow {
    0% {
        stroke-dashoffset: 800

    }
    100% {
        stroke-dashoffset: 0
    }
}