/* *** Easter Eggs *** */
@media (min-width: 768px) {
	.custom-logo-link:after {
		left: -200px;
		/*width: 100px;
		height: 50px;
		top: 28px;*/
		width: 50px;
		height: 50px;
		top: 60px;
		/*opacity: 0;*/
		transform: scale(0.85);
		transition: all 4.5s;
		transition-delay: 0.5s;
		content: "";
		position: absolute;
		z-index: 0;
		background-size: contain;
		background-repeat: no-repeat;
		background-image: url(assets/images/bike.png);
	}
	.custom-logo-link:hover:after {
		left: 100%;
		transform: scale(1);
	}

}