/*=== Animation ===*/
/* Mouse wheel */
@-webkit-keyframes mouse-wheel {
    0% { -webkit-transform: translate(0, 0); transform: translate(0, 0); opacity: 0; }

    50% { opacity: 0.75 }

    100% { -webkit-transform: translate(0, 15px); transform: translate(0, 15px); opacity: 0; }
}

@keyframes mouse-wheel {
    0% { -webkit-transform: translate(0, 0); transform: translate(0, 0); opacity: 0; }

    50% { opacity: 0.75 }

    100% { -webkit-transform: translate(0, 15px); transform: translate(0, 15px); opacity: 0; }
}


/* Page Jump */
#page-jump {display: none; }

@media (min-width: 997px) {
    /* Page Jump */
    #page-jump {margin: auto auto 15px auto;display: block;color: #fff;width: 100px;height: 150px;/* background: rgba(255, 255, 255, .85); */position: absolute;bottom: -255px;left: 50%;-webkit-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);border-radius: 50%;/* border: 2px dashed #b5b5b5; */}
    #page-jump:before {content: '';display: block;width: 100%;height: 100%;position: absolute;top: 0;left: 0;/* background: #fff; *//* z-index: -1; */}
    #page-jump:after {content: "";display: block;width: 40px;height: 60px;background: url(/assets/svg/down-arrows-white.svg) center / 100% no-repeat;position: absolute;top: 12px;left: calc(50% - 12.5px);-webkit-animation: mouse-wheel 2s infinite;animation: mouse-wheel 2s infinite;z-index: 4;}
    #page-jump { background: none; }
    #page-jump { bottom: 0px }
}