@keyframes zoom-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.title h2 strong,
.title-2 h2 strong {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.title h2 strong .word,
.title-2 h2 strong .word {
    visibility: hidden;
    text-transform: none;
    display: inline-flex;
}

.title h2 strong .line-w,
.title-2 h2 strong .line-w {
    content: '';
    display: flex;
    width: 0.3rem;
    background: var(--linear-gradient-5);
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    50% {
        visibility: hidden;
    }
}