/* ONSCROLL TRIGGER */
.scroll-parent {
    height: calc(100vh - var(--headerH));
    margin-block-start: var(--headerH);
    overflow-y: auto;
}

/* HIDE THE SCROLL PARENT SCROLLBAR */
.scroll-parent::-webkit-scrollbar {
    display: none;
}

.scroll-parent {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ONSCROLL PROGRESS BAR */
.progress {
    position: relative;
    top: 1px;
    height: 1px;
    background: transparent;
    /* border-top: 1px solid var(--line); */
}

.progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: rgba(0, 0, 0, .8);
    transform-origin: left;
}

/* ONSCROLL ANIMATE IN */
.anim {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease;
}

.anim.in {
    opacity: 1;
    transform: translateY(0);
}