
.typing::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: #4FC3F7;
    animation: cursorBlink 0.8s steps(3) infinite;
}

@keyframes cursorBlink {

    0%,
    75% {
        opacity: 1;
    }

    76%,
    100% {
        opacity: 0;
    }
}

.typing {
    position: relative;
    /*-webkit-box-reflect: below 1px linear-gradient(transparent, #3333);*/
}

.typing{
    overflow: hidden;
    animation: type 10s steps(11) infinite;
}

@keyframes type {

    0%,
    100% {
        width: 0%;
    }

    30%,
    60% {
        width: 100%;
    }
}

@media(max-width: 330px) {
    .typing h2:not(:first-child) {
        font-size: 3rem;
        animation: type 5s steps(10) infinite;
    }

    @keyframes type {

        0%,
        100% {
            width: 0px;
        }

        30%,
        60% {
            width: 305px;
        }
    }
}