

/* HELPER CLASSES
�������������������������������������������������� */

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.l-left {
	float: left;
}

.l-right {
	float: right;
}

.end {
	margin-top: 30px;
	font-size: 3em;
	font-weight: bold;
	opacity: 0;
	-webkit-transform: translateY(300px);
	    -ms-transform: translateY(300px);
	        transform: translateY(300px);
	-webkit-transition: opacity, -webkit-transform 1s;
	        transition: opacity, transform 1s;
	-webkit-transition-delay: 1s;
	        transition-delay: 1s;
}

/* NAV STYLES
�������������������������������������������������� */

.header-top {
	
	height: 70px;
	padding: 0 10px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 12;
	box-sizing: border-box;
}

/* Bis 499 Pixel Bildschirmbreite (Handy Portrait)
* --------------------------------------- */
@media (max-width: 499px) {
		.menubutton{
			margin-top: 10px;
		}
}
  /* Zwischen 499 und 825 Pixel und Landscape (Handy Landscape)
* --------------------------------------- */
@media all and (min-width: 500px) and (max-width: 825px) and (orientation : landscape){ 
	.menubutton{
		margin-top: 10px;
	}
}

/* MQ STYLES


@media screen and (max-width: 767px) {
	nav ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	nav li {
		margin-top: 1px;
	}
  
  nav li a {
    font-size: 1.5em;
  }
  
  .scroll-icon {
    display: none;
  }
}

@media screen and (max-width: 400px) {
  html {
    font-size: 50%;
  }
  
  .open-menu ~ nav {
		padding: 20px 0;
	}

	nav li a {
		padding: 3px;
	}
}
�������������������������������������������������� */