.k-hsh-main-heading-wrapper h3 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #166534;
}

.k-hsh-heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.k-hsh-sub-heading-wrapper {
    text-align: right;
}

.k-hsh-sub-heading-wrapper span {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.k-hsh-main-heading-wrapper h3 .shine-text {
    background: linear-gradient(to right, #166534 0%, #32b32c 12%, #32b32c 22%, #166534 38%);
    background-size: 200% auto;
    background-position: -100% center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-heading 3.2s linear infinite;
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

.k-hsh-main-heading-wrapper h3 .shine-text.is-visible {
    animation-play-state: running;
}

@keyframes shine-heading {
    0% {
        background-position: 100% center;
    }

    85% {
        background-position: -100% center;
    }

    100% {
        background-position: -100% center;
    }
}