/*==================================================
SCROLL TO EXPLORE
==================================================*/

.mfnxt-scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 22px;
    background: var(--c-white);
    color: var(--c-muted);
    font-family: var(--primary-font);
}

.mfnxt-scroll-line {
    position: relative;
    width: 40px;
    height: 1px;
    overflow: hidden;
    background: var(--c-line);
}

.mfnxt-scroll-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    animation: mfnxtScrollLine 2s ease-in-out infinite;
}

.mfnxt-scroll-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .14em;
    color: #71809A;
}

.mfnxt-scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--primary-color);
    animation: mfnxtScrollArrow 1.6s ease-in-out infinite;
}

@keyframes mfnxtScrollLine {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(200%);
    }
}

@keyframes mfnxtScrollArrow {

    0%,
    100% {
        transform: translateY(-3px);
        opacity: .5;
    }

    50% {
        transform: translateY(4px);
        opacity: 1;
    }
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:576px) {

    .mfnxt-scroll-indicator {
        height: 60px;
        gap: 9px;
    }

    .mfnxt-scroll-line {
        width: 28px;
    }

    .mfnxt-scroll-text {
        font-size: 10px;
        letter-spacing: .12em;
    }

    .mfnxt-scroll-arrow {
        font-size: 12px;
    }

}