@media screen and (min-width: 600px) {
	.typewriter-small h5 {
		visibility: hidden;
	}
	.typewriter h5 {
		overflow: hidden; /* Ensures the content is not revealed until the animation */
		/* The typwriter cursor */
		/* border-right: .15em solid white;  */
		white-space: nowrap; /* Keeps the content on a single line */
		margin: 0 auto; /* Gives that scrolling effect as the typing happens */
		letter-spacing: .01em; /* Adjust as needed */
		text-align: center;
		animation: 
		typing 4s steps(30, end)
		blink-caret .75s step-end infinite;
	}
	/* The typing effect */
	@keyframes typing {
	  	from { width: 0 }
	  	to { width: 100% }
	}
	/* The typewriter cursor effect */
	@keyframes blink-caret {
	  	from, to { border-color: transparent  }
	  	50% { border-color: White }
	}
}
@media screen and (max-width: 601px) {
	.typewriter h5 {
		visibility: hidden;
	}
	.typewriter-small h5 {
		overflow: hidden; /* Ensures the content is not revealed until the animation */
		/* The typwriter cursor */
		/* border-right: .15em solid white;  */
		white-space: nowrap; /* Keeps the content on a single line */
		margin: 0 auto; /* Gives that scrolling effect as the typing happens */
		letter-spacing: .01em; /* Adjust as needed */
		text-align: center;
		animation: 
		typing 3.5s steps(40, end),
		blink-caret .75s step-end infinite;
	}
	/* The typing effect */
	@keyframes typing {
		from { width: 0% }
		to { width: 100% }
	}
	/* The typewriter cursor effect */
	@keyframes blink-caret {
		from, to { border-color: transparent }
		50% { border-color: white; }
	}
}
