				/* [ON BIG SCREENS] */
			/* (A) WRAPPER */
			
			html {
				scroll-behavior: smooth;
			}
			
			#hamnav {
				width: 100%;
				color: #F46D05;
				background-color: rgba(255, 255, 255, 0.1);
				position: sticky;
				top: 0px;
				/*	wichtig!!!*/
				z-index: 1;
			}
			/* (B) HORIZONTAL MENU ITEMS */
			
			#hamitems {
				/*	display: block;*/
				text-align: center;
				width: 100%;
				padding: 1em;
				color: #F46D05;
				background-color: rgba(255, 255, 255, 0.6);
				text-align: center;
				text-decoration: none;
				line-height: 1.1em;
				font-size: 1.4em;
				font-family: Staatliches;
				letter-spacing: 0.09em;
			}
			
			#hamitems a {
				text-align: center;
				flex-grow: 1;
				flex-basis: 0;
				padding: 1em;
				color: #000;
				text-decoration: none;
				line-height: 1.2em;
				letter-spacing: 0.09em;
			}
			
			#hamitems a:hover {
				color: #F46D05;
			}
			/* (C) HIDE HAMBURGER */
			
			#hamnav label,
			#hamburger {
				display: none;
			}
			/* [ON SMALL SCREENS] */
			
			@media screen and (max-width: 768px) {
				/* (A) BREAK INTO VERTICAL MENU */
				#hamitems a {
					box-sizing: border-box;
					display: block;
					width: 100%;
					padding: 0.1em;
					color: #F46D05;
					/*border-top: 1px solid #F46D05;*/
					/*border-bottom: 1px solid #F46D05;*/
				}
				#hamitems a:hover {
					background-color: rgba(255, 102, 0, 0.2);
					color: #fff;
				}
				/* (B) SHOW HAMBURGER ICON */
				#hamnav label {
					display: inline-block;
					color: #F46D05;
					;
					/*background: #F46D05;*/
					font-family: 'Roboto Condensed', sans-serif;
					font-weight: bold;
					font-style: normal;
					font-size: 1.2em;
					padding: 10px;
					border: 2px dotted #F46D05;
					background-color: rgba(255, 255, 255, 0.8);
					border-radius: 0 20px 20px 0;
					/*border-radius: 50%;*/
				}
				/* (C) TOGGLE SHOW/HIDE MENU */
				#hamitems {
					display: none;
				}
				#hamnav input:checked~#hamitems {
					display: block;
					padding: 0.001em;
				}
