.typewriter {
  display: block;
  white-space: nowrap;
}


.cursor {
  display: inline-block;
  background: transparent;
  width: 2px;
  animation: blink 0.7s steps(1) infinite;
  line-height: 0.75;
  position: relative;
    top: 2px;
}

@keyframes blink {
  50% {
    background: transparent;
  }
  0%, 100% {
    background: #000;
  }
}
.eyebrow-text {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.typed-text {
    animation: type 0.15s steps(1) 0.15s 0.5 normal both, cursor 0.15s step-end infinite;
    position: relative;
}

@keyframes type {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes cursor {
  50% {
    border-color: transparent;
  }
}

@media (max-width: 390px) {
	.typewriter-words {
		font-size: 25px !important;
	}
}

@media (max-width: 375px) {
  .typewriter-words, .typewriter-words a {
    font-size: 24px !important;
  }
}