/**************/
/* TYPEWRITER */
/**************/


#typeWriter {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    font: normal 20px 'liberation_sansregular';
    color: #fff;
    margin: 0px 0 0 0;
    padding: 0 0 0 15px;
    letter-spacing: 2px;
}

#typeWriter span {
    display: block;

}

#typeWriter :last-child::after {
    content: '_';
    display: inline-block;
    animation: blink 1s step-end infinite;
    display: none;
}

#typeWriter #init::after {
    display: none;
}

#typeWriter span.typewriter-item::before {
    content: '';
    display: inline-block;
    margin-right: 10px;
    display: none;
}

@keyframes blink {

    from,
    to {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@media(max-width:1023px) {
    #typewriter {
        font-size: 17px;
    }
}



@media(max-width:767px) {
    #typeWriter {
        font-size: 15px;
        left: 0;
    }
}


@media(max-width:567px) {
    #typeWriter {
        letter-spacing: 0;
        margin-top: 0;
    }
}