@keyframes indicator-move {
    0% {
        top: -100%;
        opacity: 1;
    }

    50%{
        top: 100%;
    }

    100%{
        top: 200%;
        opacity: 0;
    }
}

#animation-trigger{
    position: fixed;
    z-index: 100;
    height: 10px;
    width: 100%;
    left: 0;
    /* background-color: red; */
    z-index: -100;
}

.fade-on-scroll{
    opacity: 0;
}

img.fade-on-scroll{
    transition: opacity 0.2s ease-in;
}