.typing-title {
                display: block;
                min-height: 2em;
                line-height: 0.88;
                white-space: nowrap;
            }

            .typing-line {
                display: block;
                min-height: 0.88em;
            }

            /* Only ONE cursor - second line */
            .hero-cursor {
                display: inline-block;
                width: 3px;
                height: 0.82em;
                margin-left: 6px;
                background: currentColor;
                vertical-align: baseline;
                position: relative;
                top: 2px;

                animation: heroCursorBlink 0.7s steps(1) infinite;
            }

            @keyframes heroCursorBlink {
                0%,
                50% {
                    opacity: 1;
                }

                51%,
                100% {
                    opacity: 0;
                }
            }

            @media (max-width: 767px) {
                .typing-title {
                    min-height: 2em;
                }

                .hero-cursor {
                    width: 2px;
                    margin-left: 4px;
                }
            }