

.line-1{
  font-family: 'Source Sans Pro', sans-serif; 
  text-transform: uppercase;
  position: relative;
  top: 50%;  
  width: 11em;
  margin: 0 auto;
  border-right: 2px solid rgba(255,255,255,.75);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  transform: translateY(-10%); 
  font-weight: 600;
  height: 95px;
    font-size: 65px;
    padding-top: 40px;   
}

/* Animation */
.anim-typewriter{
  animation: typewriter 4s steps(44) 1s 1 normal both,
             blinkTextCursor 500ms steps(44) infinite normal;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 11.5em;}
}
@keyframes blinkTextCursor{
  from{border-right-color: rgba(255,255,255,.75);}
  to{border-right-color: transparent;}
}