/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/



.toptext .container {
	text-align: left;
	/*max-width: 100%;*/
	margin-left: 10px;
}

.toptext .typity {
	background-position: 0% 100%;
	border-bottom: 3px solid #FFBD30;
	box-sizing: border-box;
	color: #363636;
	font-size: 3rem;
	font-weight: 400;
	padding-right: 2px;
	position: relative;
	transition: background-position 1s;
}

	.toptext .typity::after {
		animation: blink-cursor 0.75s step-end infinite;
		background-color: transparent;
		content: "";
		display: block;
		height: 2rem;
		position: absolute;
		right: 0;
		bottom: 0;
		width: 2px;
	}

	.toptext .typity.highlight {
		background-image: linear-gradient(to left, rgba(0, 0, 0, 0.2) 50%, transparent 50%);
		background-position: 100% 100%;
		background-repeat: no-repeat;
		background-size: 200% 2rem;
	}

		.toptext .typity.highlight::after {
			animation: none;
		}

@keyframes blink-cursor {
	0% {
		background-color: transparent;
	}

	50% {
		background-color: black;
	}
}

@media only screen and (max-width: 600px) {

	.toptext .typity {
		border-bottom: 2px solid #FFBD30;
	}
}
