@charset "utf-8";


/*
* Webseite finalisieren Esther Matusche
* Monatsaufgabe 9
* Online-Schule für Gestaltung: Webdesign-Kurs
*/



/* Reset * * * * * * * * */

*{
	margin: 0;
	padding: 0;
	-mozbox-sizing: border-box;    
	-webkit-box-sizing: border-box;    
	box-sizing: border-box; 
}

html { 
  font-size: 100%; /* Browserstandard: 16px */
	position: relative; 
	height: auto;
}

body{
	font-family: 'futura-pt-condensed', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 21px;
	font-size: 1.313rem;
	line-height: 124%;
	color: #283240;
	background: #C6C6C6;
	letter-spacing: 1px;
	width: 100%;
	height: auto;
}

img{
	max-width: 100%;
}


/* Layout * * * * * * * * */

.wrapper{
	width: 100%;
	height: auto;
	margin: 0 auto;
	overflow: hidden;
}

#wrapper{
	width: 100%;
	height: auto;
	margin: auto;
}

header{
	background: #283240;
	height: 80px;
	padding: 10px 20px;
}

.home{ 
	margin: auto;
	margin-bottom: 0 !important;
}

.Logo{
}

.teaser{
	min-width: 100%;
	display: grid;
	justify-content: center;
	align-items: center;
	background-color: #3986be;
	background-image: url(../images_optimiert/Farbfuellung_Pixel.png);
}

.img-teaser{
	width: 80%;
	height: 80%;
	display: grid;
	justify-content: center;
	align-items: center;
	margin-top: 1%;
	margin-left: 10%;
	position:inherit;
}

.img-teaser:hover{
	-webkit-animation: spin 3s linear infinite;
	-moz-animation: spin 3s linear infinite;
	animation: spin 3s linear infinite;
}

/*use keyframes*/
@-webkit-keyframes spin{
	100%{transform: rotate(360deg);}
}
@-moz-keyframes spin{
	100%{transform: rotate(360deg);}
}
@keyframes spin{
	100%{transform: rotate(360deg);}
}

.homebutton{
	min-width: 100%;
	justify-content: center;
	align-items: center;
	margin-top: -10px;
	position: fixed;
	display:grid;
	z-index: 1;	
}


.scroll{
	min-width: 100%;
	display: grid;
	justify-content: center;
	align-items: center;
	margin-top: -40px;
	position: absolute;
	z-index: 3;
}

.scroll a{
	display: block;
	width: 102px;
	height: 67px;
	line-height: 0;
}

.scroll img{
	display: block;
	width: 100%;
	height: 100%;
}


#content{
	width: 100%;
	background:#C6C6C6;
	padding: 0 5%;	
  	padding-bottom: 10px
}

.img-arbeitsproben{
	margin: 10px 20px 20px 0;
}

.leistungen{
	color: #283240;
	padding-bottom: 100px;
}

.profil{
	margin-bottom: 150px;
}

#ueber{
	background-color: #283240;
	color:#C6C6C6;
	padding: 20px 80px;
	align-content: center;
	text-align: center;
}

.img-portrait{
	align-content: center;
	margin: 10px 20px 30px 20px;
}

#projekte{
	width: 100%;
	text-align: center;
	background: #C6C6C6;
	padding-top: 20px;
	padding-bottom: 140px;
	margin-bottom: 0;
}

#kontakt{
	width: 100%;
	background:#C6C6C6;
	padding-top: 10px;
  	padding-bottom: 140px;
	margin-bottom: 60px;
}

#footer_mini{
	display: none;
	position: relative;
	z-index: 2;
}

#footer{
	font-family: 'futura-pt-condensed', Helvetica, Arial, sans-serif;
	text-decoration: none;
	background: #283240;
	letter-spacing: 1px;
	font-size: 19px;
	font-size: 1.188rem;
	font-weight: 400;
	color: #fff;
	text-align: center;
	align-content: center;
	padding: 30px 0;
	position: relative;
	z-index: 2;
	min-width: 100%; 
	height: auto;
	margin-top: 0;
}

footer p a{
	color: #fff;
}

.social-links{
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.social-link{
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	text-decoration: none;
}

.social-link img{
	display: block;
	width: 20px;
	height: 20px;
}

.social-link:hover img{
	opacity: 0.82;
}

.social-links--profile{
	display: flex;
	justify-content: center;
	margin: 0 0 18px;
}

.social-links--profile .social-links__label{
	color: #C6C6C6;
}

.social-links--profile .social-link{
	color: #fff;
}

.social-links--footer{
	margin-left: 0.65rem;
	gap: 0.45rem;
	vertical-align: middle;
}

.social-links--footer .social-link img{
	width: 18px;
	height: 18px;
}


.footer_fix{
	text-align: center;
	letter-spacing: 1px;
	background: #283240;
	padding: 20px 0;
	color: #fff;
	position:fixed;
	left: 0;
	right: 0;
	bottom: 0;
	height: 90px;
	margin-top: 90px;
}

.button{
	font-weight: 600;
	color: #283240;
	line-height: 0px;
}

.leistungen{
	color: #283240;
}

.alignright{
float: right; 
margin: 5px 0 15px 15px;
}
 
.alignleft{
float: left; 
margin: 5px 15px 15px 0; 
}


/* Raster * * * * * * * * */

.column{
	float: left;
	padding: 1% 40px;
	margin: 25px 1%;
	padding-left: 3%;
}

.column:first-child {
margin-left: 0;
}

.full { 
	width:100%; 
} 
 
.half{ 
	width: 49%; 
} 
 
.third { 
	width: 31%; 
} 
 
.two-thirds{ 
	width: 66%; 
} 
 
.fourth { 
	width: 23.5%; 
} 
 
.three-fourth{
	width:74.5%;
}

.row{ 
width: 100%; 
float: left; 
}


/* Spalten * * * * * * * * */

.col_1, .col_1_2, .col_1_3, .col_1_3_subnavigation, .col_1_3_Leistungen, .col_2_3, .col_2_3_Leistungen, .col_1_4, .col_3_4{
	float: left;
	margin: 20px 10px;
	}

.col_1{ 
	width:940px;
}

.col_1_2{
	width:450px;
	float:inherit;
	margin-bottom: 0px;
}

.col_1_3{
	width: 33%;
	margin-left: 1%;
	margin-right: 1%;
	float:left;
}

.col_1_3_Leistungen{    
	width:320px;
	margin: 20px 20px 10px 320px;
	float: left;
	overflow: hidden;
}

.col_2_3{    
	width:620px;
	margin-left: 85px;
	float: inherit;
}

.col_2_3_Leistungen{    
	width:62%;
	margin: 2% 4% 0 320px;
	float: left;
	overflow: hidden;
}

.col_2_3_Bild{    
	width:100%;
	margin: -10px 0 -10px 320px;
	float: left;
	overflow: hidden;
}

.col_1_4{
	width:200px; 
	margin: 5px 0 20px 10px; 
	float: left;
} 

.col_1_4_subnavigation{
	width:200px;
	margin: 20px 0 0 20px;
	position: fixed;
}
 
.col_3_4{    
	width:720px; 
	margin: 20px 10px 0 20px;
	float: left;
}


/* Navigation */

#navigation{
	float: right;
	margin: 20px 10px 0 0;
}

.navigation-list{
	list-style: none;
	margin: 0;
	padding: 0;
}

#navigation li{
	display: inline;
	margin: 0 0 0 25px;
	list-style: none;
}

#navigation li a{
	font-family: 'futura-pt-condensed', Helvetica, Arial, sans-serif;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 19px;
	font-size: 1.188rem;
	font-weight: 400;
}

#navigation li a:hover, #navigation li a.active, #subnavigation .active, #subnavigation li a:hover, #subnavigation .subnavigation-detail a:hover{    
	color: #ffff00; 
}


/* Subnavigation */

#subnavigation{
	float: left;
	margin: auto;
	overflow: hidden;
}

#subnavigation li{
	list-style: none;
}

#subnavigation .subnavigation-main{
	border-bottom: 2px solid #ffff00;
	padding: 5px 0 3px 0;
}

#subnavigation .subnavigation-main a{
	font-family: 'futura-pt-condensed', Helvetica, Arial, sans-serif;
	color: #283240;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 19px;
	font-size: 1.188rem;
	font-weight: 400;
}


#subnavigation .subnavigation-detail{
	border-bottom: 1px solid #ffff00;
	margin: 0;
	padding: 2px 0px 2px 15px;
}

#subnavigation .subnavigation-detail a{
	font-family: 'futura-pt-condensed', Helvetica, Arial, sans-serif;
	color: #283240;
	font-size: 17px;
	font-size: 1.063rem;
	font-weight: 400;
}


/* Drop-Down-Men */

#navigation li ul li a{ 
	display: block;
	text-transform: none;
	font-size: 18px;
	font-size: 1.125rem;
	border-bottom: 1px solid #fff;
}

#navigation li ul{
	position: absolute;
	top: 27px;
	left: 0;
	background:#283240;
	display: none;
}

#navigation li{
	position: relative;
}

#navigation li:hover ul{
	display: block;
}

#navigation li ul li{
	margin: 0;
	}

#navigation li a{
	padding: 8px 10px 10px 10px;
}



/* Navigation mobile */

#mobile-menu-btn{ 
	float: right;
	display: none; 
}

#navigation_mobile{
	position: absolute;
	top: 10px;
	right: 36px;
}

#navigation_mobile{
	float: inherit;
	display: none;
	box-shadow: 2px 2px 4px #283240;
}

#navigation_mobile li{
	position: relative;
	display: block;
	list-style: none;
	background: #283240;
	padding: 2px 10px
}

#navigation_mobile li a{
	display: block;
	text-transform: none;
	font-size: 18px;
	font-size: 1.125rem;
}

#navigation_mobile li a{
	font-family: 'futura-pt-condensed', Helvetica, Arial, sans-serif;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 16px;
	font-size: 1.000rem;
	font-weight: 400;
}


#navigation_mobile li a:hover, #navigation_mobile li a.active{    
	color: #ffff00; 
}



/* Projekte Container * * * * * * * * */

#container{
	width: 100%;
	align-content: center;
	margin-right: 40px;
	margin-left: 30px;
	padding-right: 2%;
	padding-left: 2%;
}

#container1{ width: 300px; height: 280px; margin:20px 10px 45px 10px; float: left;
}
#container2{ width: 300px; height: 280px; margin:20px 10px 45px 10px; float: left; 
}
#container3{ width: 300px; height: 280px; margin:20px 10px 45px 10px; float: left; 
}
#container4{ width: 300px; height: 280px; margin:20px 10px 45px 10px; float: left; 
}
#container5{ width: 300px; height: 280px; margin:20px 10px 45px 10px; float: left; 
}
#container6{ width: 300px; height: 280px; margin:20px 10px 45px 10px; float: left; 
}
#container7{ width: 300px; height: 280px; margin:20px 10px 45px 10px; float: left; 
}
#container8{ width: 300px; height: 280px; margin:20px 10px 45px 10px; float: left; 
}
#container9{ width: 300px; height: 280px; margin:20px 10px 45px 10px; float: left; 
}
#container10{ width: 300px; height: 280px; margin:20px 10px 45px 10px; float: left; 
}
#container11{ width: 300px; height: 280px; margin:20px 10px 45px 10px; float: left; 
}
#container12{ width: 300px; height: 280px; margin:20px 10px 45px 10px; float: left; 
}
#container13{ width: 300px; height: 280px; margin:20px 10px 45px 10px; float: left; 
}
#container14{ width: 300px; height: 280px; margin:20px 10px 45px 10px; float: left; 
}
#container15{ width: 300px; height: 280px; margin:20px 10px 45px 10px; float: left; 
}
#container16{ width: 300px; height: 280px; margin:20px 10px 45px 10px; float: left; 
}


/* Typografie */

h1, h2, h3, h4, h5, h6 {
	font-family: 'futura-pt', Helvetica, Arial, sans-serif;
	font-weight: 300;
	font-style: normal;
	margin: 0 0 10px 0;
}

h1{
	font-size: 40px;
	font-size: 2.500rem;
	color:#ffff00;
	letter-spacing: 1px;
	font-weight: 300;
	line-height: 120%;
	margin: 0 0 20px -4px;
}

h2{
	font-size: 36px;
	font-size: 2.250rem;
	letter-spacing: 1px;
	font-weight: 300;
	line-height: 111%;
}

h3{
	font-size: 36px;
	font-size: 2.250rem;
	line-height: 111%;
}

h4{
	font-size: 24px;
	font-size: 1.500rem;
	line-height: 116%;
	font-weight: 400;
}

h5{
	font-size: 24px;
	font-size: 1.500rem;
	line-height: 116%;
}

h6{
	font-size: 21px;
	font-size: 1.313rem;
	line-height: 119%;
	font-weight: 400;
}

#teaser h1{
    color: #fff;
    font-size: 25px;
    font-size: 1.563rem;
    line-height: 124%;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 10px 60px 10px 5px;
    text-align: left;
}

#teaser b{
    color: #ffff00;
    font-weight: 800;
}
#teaser h3{
	font-family: 'futura-pt', sans-serif;
	font-weight: 300;
	font-style: normal;
	color: #fff;
	text-align: right;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 44px;
	font-size: 2.750rem;
	line-height: 114%;
	margin: 0 8px 15px 5px;
}

#teaser em{
	font-weight: 600;
	color: #ffff00;
	margin: 0 -2px 0 1px;
}

#teaser h3 em{
	font-weight: 600;
	color: #ffff00;
	margin: 0 10px 0 -7px;
}	

#content h2{
	font-family: 'futura-pt', sans-serif;
	font-weight: 800;
	font-size: 25px;
	font-size: 1.563rem;
	color: #283240;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 5px;
}

#content p{
	border-left: 5px solid #ffff00;
	padding-left: 10px;
}

#content .seo-intro{
	max-width: 960px;
	margin: 0 auto 30px;
	text-align: left;
}

#projekte h3{
	font-weight: 400;
	font-size: 22px;
	font-size: 1.375rem;
	line-height: 116%;
	color: #283240;
	text-align: center;
	margin: 0;
	padding:5px;
}

#projekte p{
	text-align: center;
	letter-spacing: 1px;
	padding-top: 2px;
	padding-bottom: 4px;
}

#projekte .customer-list{
	line-height: 1.55;
	margin: 0 auto;
	padding: 0 20px;
}

#projekte .customer-link{
	color: #283240;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

#projekte .customer-link:hover{
	color: #8b111a;
}

footer p{
	color: #fff;
	line-height: 130%;
	margin: -4px 0 16px 0;
}

footer b{
	color: #ffff00;
	font-family: 'futura-pt', sans-serif;
	font-weight: 800;	
}

footer em{
	color: #fff;
	font-family: 'futura-pt', sans-serif;
	font-weight: 300;	
	font-style: normal;
}

footer a:hover{
	color: #ffff00;
	text-decoration: none;
	text-decoration-line: none;
	text-underline-position: below;
}

#leistungen h1{
	font-family: 'futura-pt', sans-serif;
	color: #ffff00;
	margin: 0 0 20px -3px;
}

#kontakt h2{
	font-family: 'futura-pt', sans-serif;
	color: #283240;
	margin: 40px 0 20px 0;
}

#kontakt a{
	color: #283240;
	font-weight: 600;
}

#kontakt a:hover{
	color: #ffff00;
}

#leistungen h2{
	font-family: 'futura-pt-condensed', sans-serif;
	font-size: 19px;
	font-size: 1.188rem;
	line-height: 106%; 
	color: #283240; 
	Background: #ffff00;
	margin: 30px 0 10px 0;
	text-transform: none;
	font-weight: 600;	
	letter-spacing: 1px;	
	padding: 1px 6px 1px 6px;
}

#leistungen p{
	margin-top: -5px;
}


a{
	color: #fff;
	text-decoration: none;
}


a:hover{
	color: #ffff00;
}

a:focus-visible{
	outline: 3px solid #ffff00;
	outline-offset: 3px;
}

b{
	color: #ffff00;
	text-decoration: none;
	letter-spacing: 2px;
	font-weight: 800;
	font-style: normal;
}

p{
	margin-bottom: 12px;
}

blockquote{
	margin: 12px 0 24px 25px;
	font-style: italic; 
}

blockquote:before{
	content: '«';
	color:#ba1723;
	font-size: 40px;
	font-weight: 600;
	bottom: -30px;
}

blockquote:after{
	content: '»';
	color: #ba1723;
	font-size: 40px;
	font-size: 2.500rem;
	font-weight: 600;
	line-height: 2.5%;
}


/* Formular */
 
label{ 
	display: block;
	cursor: pointer;
	font-weight: 600;
	margin: 10px 0 6px 0;
}
 
input[type='text'],input[type='checkbox'], input[type='radio'],
textarea, select{
	margin-bottom: 5px;
}
 
input[type='text'], textarea, select {
	width: 420px;
	border: 1px solid #283240;
	padding: 5px;
	font-family: 'futura-pt-condensed', sans-serif;
	font-weight: 400;
	font-size: 19px;
	font-size: 1.188rem;
	line-height: 126%;
}
 
textarea{
	height: 140px;
}
 
input:hover, textarea:hover{
	border: 1px solid #ffff00;
}
 
input:focus, textarea:focus{
	border: 1px solid #ffff00;
	background: #eee;
	color: #000000;
	clear: left;
}

#callback{
	margin-top: 20px;
}

input[type='submit'], input[type='reset']{
	border: 0;
	cursor: pointer;
	margin-right: 20px;
	background: #283240;
	padding: 4px 10px;
	color: #fff;
	font-size: 14px;
	font-size: 0.875rem;
	border-radius: 4px;
}
 
input[type='reset']{
background:#A3A3A3;
}
 
input[type='submit']:hover, input[type='reset']:hover{
color: #ffff00;
}

/* Effekte */ 

.js-slidein {
  opacity: 0;
  transform: translateY(100px);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.js-slidein-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Druckformatierung */ 
 
@media print {
 
#header, #footer, #teaser, #navigation, #scroll, #subnavigation { 
display: none; 
} 

#bildbearbeitung {
	
}
#bildbearbeitung {
	
}
.col_2_3_Bild {
	
}
#content{
	
}
}

/* Media Queries * * * * * * * * */ 
 
@media only screen and (min-width: 980px) and (max-width: 1600px) {
 
header{
}
	
.wrapper{
	width: 100%;
}
	
#navigation_mobile{
	display: none;
}	
	
#footer_mini{
	display: none;
}	
		
}
 
@media only screen and (min-width: 760px) and (max-width: 979px) {
 
header{
}
			
.wrapper{
width: 100%;
}

#kontakt{margin-left:30px}

	
#navigation{
	display: none;
}	
	
#subnavigation{
	 
	}	
	
#footer_mini{
	display: none;
}	

	
#Logo {
	max-width: 80%;
	margin: -1px;
}	
	
#teaser h1{
	color: #fff;
	font-size: 20px;
	font-size: 1.250rem;
	font-weight: 300;	
	line-height: 124%;
	letter-spacing: 2px;
	margin: 10px 60px 10px 0;
	text-align: left;
}

#teaser h3{
	font-family: 'futura-pt', sans-serif;
	font-weight: 300;
	font-style: normal;
	color: #fff;
	text-align: right;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 34px;
	font-size: 2.125rem;
	line-height: 114%;
	margin: 3px 0 10px 5px;
}

#content{
	font-size: 98%;
}	
	
#content h2{
	font-size: 24px;
	font-size: 1.500rem;
}	

.leistungen{
	margin-bottom: 600px;
}
	
.profil{
	margin-bottom: 0;
}
	
	
#footer{
	min-width: 100%; 
	height: auto;
	left: 0;
	bottom: 0;
	}

	
	
/* Spalten */

	
.full, .two-thirds, .half, .third, .fourth, .three-fourth{
width: 98%;
margin: 20px 2% !important;
}

.img-teaser{
	width: 60%;
	height: 60%;
	margin-left: 20%;
	overflow: hidden;
}	
		
.col_1_3{
	overflow: inherit;
	width:63%;
	margin: 0 4% 0 250px;
	padding: 0 0 180px 0;
	float: left;
}

.col_2_3_Leistungen{
	overflow: hidden;
	margin-left: 250px;
	margin-bottom: 160px;
	width: 66%;
	}

	
.col_2_3_Bild{
	overflow: hidden;
	margin-left: 250px;
	margin-top: -140px;
	width: 100%;
	}	
	
.col_1_3_Leistungen{
	overflow: inherit; 
	margin: -60px 0 20px 250px;
	width: 90%;
	}
	
	
	
/* Navigation */

#navigation{
	display: none;
}	
#navigation_mobile{
	
}	
	
a#mobile-menu-btn{ 
	display: block; 
	overflow: inherit;
	top: 0px;
	right: 0px;
	position:absolute;
	color: #fff;   
	text-decoration: none;    
	margin: -4px 4px; 
}

nav#navigation_mobile{

}


nav#navigation_mobile li a{
	
}
	
	
}

 
@media only screen and (max-width: 759px) {
 
header{
	background: #283240;
	width: 100%;
	height: 80px;
}
 
.wrapper{
	width: 100%;
	margin: 0;
}
	
/* Formular */
	
#kontakt{margin-left: -40px}
	

label{ 
	display: block;
	cursor: pointer;
	font-weight: 600;
	margin: 10px 0 6px 0;
}
 
input[type='text'],input[type='checkbox'], input[type='radio'],
textarea, select{
	margin-bottom: 5px;
}
 
input[type='text'], textarea, select {
	width: 340px;
	border: 1px solid #283240;
	padding: 5px;
	font-family: 'futura-pt-condensed', sans-serif;
	font-weight: 400;
	font-size: 19px;
	font-size: 1.188rem;
	line-height: 126%;
}
 

/* Spalten */

	
.full, .two-thirds, .half, .fourth, .three-fourth{
	width: 90%;
	margin: 25px 0% !important;
}

.third{
	width: 100%;
	}
	
.col_1_3{
	overflow: inherit;
	margin-left: 30px;
	padding: 0 0 120px 0;
	width: 86%;
}

.col_2_3_Leistungen{
	overflow: hidden; 
	margin-left: 30px;
	margin-bottom: 120px;
	width: 90%;
	}

	
.col_2_3_Bild{
	overflow: hidden; 
	margin-left: 30px;
	margin-top: -120px;
	width: 100%;
	}	
	
.col_1_3_Leistungen{
	overflow: inherit; 
	margin: -40px 0 5px 30px;
	width: 90%;
	}
	

	
/* Layout */

#container{
	align-content: center;
	margin: 0 20px;
	}	
	
	
#Logo {
	margin: -1px -5px 0 -8px;
	max-width: 60%;
}

#ueber{
	padding: 20px 20px;
}
	
.row{
	padding: 0 0 0 40px;
}
	
	
.img-teaser{
	width: 94%;
	height: 94%;
	margin-left: 3%;
	overflow: hidden;
}	
	
#teaser h1{
	color: #fff;
	font-size: 20px;
	font-size: 1.250rem;
	font-weight: 300;	
	line-height: 124%;
	letter-spacing: 2px;
	margin: 10px 60px 10px 12px;
	text-align: left;
}

#teaser h3{
	font-family: 'futura-pt', sans-serif;
	font-weight: 300;
	font-style: normal;
	color: #fff;
	text-align: right;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 30px;
	font-size: 1.875rem;
	line-height: 114%;
	margin: 3px 12px 10px 5px;
}

#content{
	font-size: 90%;
	padding: 0 0px;
	}	
	
#content h2{
	font-size: 20px;
	font-size: 1.250rem;
	}	

	
.profil{
	margin-bottom: 0;
}
	
	
#footer{
		display: none;
	}	
	
#footer_mini{
	display: block;
	text-align: center;
	font-size: 90%;
	letter-spacing: 1px;
	background: #283240;
	padding: 14px 0 8px 0;
	color: #fff;
	position: relative;
	z-index: 2;
	min-width: 100%; 
	height: auto;
	margin-top: 0;
}

/* Navigation */

#navigation{
	display: none;
}	
#navigation_mobile{
	
}	
	
#mobile-menu-btn{ 
	display: block; 
	overflow: inherit;
	top: 0px;
	right: 0px;
	position:absolute;
	color: #fff;   
	text-decoration: none;    
	margin: -4px 4px; 
}

#navigation_mobile{

}


#navigation_mobile li a{
	
}
	
/* Subnavigation */
	
	#subnavigation{
		display: none;
	}	
}
