@charset "utf-8";
/* CSS Document */





html, body {
	height: 100%;
	margin:0px auto;
	
}

html, hmtl a{
	width:100%;
	font-size: 100%; 
	-webkit-text-size-adjust: 100%; 
	-ms-text-size-adjust: 100%;
}

body{
	background: #FFFFFF;
	color:#565655;
	font-weight:300;
	font-size:15px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	line-height:28px;

}






a{
	color:#565655;
	text-decoration: none;
	cursor: pointer;
	
	-webkit-transition: color 0.1s linear 0s;	
	   -moz-transition: color 0.1s linear 0s;
		 -o-transition: color 0.1s linear 0s;
		    transition: color 0.1s linear 0s;
}

a:hover,
a:active,
a:focus{
	outline: 0;
	color:#000000;
	text-decoration:underline;
}





a.kontakt{
	
	color:#868786;
	text-decoration: none;
	cursor: pointer;
	
	-webkit-transition: color 0.1s linear 0s;	
	   -moz-transition: color 0.1s linear 0s;
		 -o-transition: color 0.1s linear 0s;
		    transition: color 0.1s linear 0s;
}



a:hover.kontakt,
a:active.kontakt,
a:focus.kontakt{
	outline: 0;
	color:#868786;
	text-decoration:underline;
}





/* ==================================================
   Typography
================================================== */


h1,
h2,
h3,

h5,
h6{
	margin:0 0 20px 0;
	color:#000;
	font-weight:300;
	font-family: 'Gill Sans', 'Gill Sans MT', 'Myriad Pro', 'DejaVu Sans Condensed', Helvetica, Arial, 'sans-serif'
	line-height:1.5em;
}

h1{
	font-size:35pt;

	color:#000;
	line-height:40pt;
	padding-bottom:15px;
	padding-top:0px;
	margin-top:0px;
	text-transform:uppercase;
}

h2{
	font-size:35pt;
	border-bottom:1px solid #000;
	color:#000;
	line-height:25pt;
	padding-bottom:15px;
	padding-top:0px;
	margin-top:0px;
	
}


h3{
	font-size:24px;
}

h4{
	font-size:16px;
	font-weight:bold;
	padding-bottom:5px;
	margin-bottom:0px;
	
	
}



h5{
	font-size:22px;
	font-family: 'Ubuntu Condensed', sans-serif;
	
	color:#565655;
}

h6{
	font-size:16px;
}

h3.spec {
	color: #FFFFFF;
    font-size: 24px;
    font-weight: 300;
    line-height: 1em;
    margin-bottom: 30px;
	padding-top: 0.4em;
    text-transform: uppercase;
}




.team-rot{
	line-height:18pt;
	border-left:1px solid #b81919; 
	padding-left:20px;
}

.team-blau{
	line-height:18pt;
	border-left:1px solid #00517e; 
	padding-left:20px;
}


.impressum{
	line-height:18pt;

	margin-top:20px;
}


/* ==================================================
   Header
================================================== */

#header {
	max-width:1200px;
	width: 100%;
	z-index: 99;
	background: #FFF;
	border-bottom:1px solid #000;
		margin:0px auto;
}

#header .sticky-nav {
	position: relative;
	width: 100%;
	height: 100px;
	background: #FFF;
	z-index: 1001;

	
	
}

#header .sticky-nav.stuck {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1001;
}

#header #logo {
	color: #FFFFFF;
	float: left;
	padding: 20px 0;
	margin-left: 20px;
}

#header #logo a {
	background: url(../img/logo.gif) no-repeat;
	width: 278px;
	height: 56px;
	text-indent: -9999px;
	display: block;


}

#header #logo a:hover {
	opacity: 0.65;
	filter: alpha(opacity=65);	
}

nav#menu {
	float: right;
	margin-right: 20px;
	background: #FFF;
	font-family: 'Ubuntu Condensed', sans-serif;
}

nav#menu #menu-nav {
	margin: 0;
	padding: 0;	
}

nav#menu #menu-nav li {
	list-style: none;
	display: inline-block;
	padding-left: 30px;	
		padding-top: 30px;
}

nav#menu #menu-nav li:first-child {
	margin-left: 0;	
}

nav#menu #menu-nav li a {
	color: #565655;
	font-size: 17px;
	font-weight: 300;
	line-height: 30px;
	display: block;
	text-transform: uppercase;
	padding-top:15px;
}

nav#menu #menu-nav li.current a
 {
	color: #000000;
	border-bottom:#000 1px solid;
	text-decoration:none;

}


nav#menu #menu-nav li a:hover {
	color: #000000;
	
border-bottom:#000 1px solid;
	text-decoration:none;

}




/* ==================================================
   Mobile Navigation
================================================== */

#mobile-nav {
	display: none;	
}

.menu-nav {
	background:url(../img/menu-mobile.png) 0 0 no-repeat;
	width: 16px;
	height: 16px;
	display: block;
	margin: 22px 0 0 0;
	
	-webkit-transform: rotate(0deg);
	   -moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		 -o-transform: rotate(0deg);
			transform: rotate(0deg);
	
	-webkit-transition: -webkit-transform 250ms ease-out 0s;	
	   -moz-transition: -moz-transform 250ms ease-out 0s;
		 -o-transition: -o-transform 250ms ease-out 0s;
		    transition: transform 250ms ease-out 0s;
}

.menu-nav.open {
	background-position: 0 -16px;
		  
	-webkit-transform: rotate(-180deg);
	   -moz-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		 -o-transform: rotate(-180deg);
			transform: rotate(-180deg);
	
	-webkit-transition: -webkit-transform 250ms ease-out 0s;	
	   -moz-transition: -moz-transform 250ms ease-out 0s;
		 -o-transition: -o-transform 250ms ease-out 0s;
		    transition: transform 250ms ease-out 0s;	
}

#navigation-mobile {
	display: none;
	text-align: right;
	width: 100%;
	background: #26292E;	
	border-bottom: 1px solid #2F3238;
	position: relative;
	float: left;
	z-index: 9999;
}

#navigation-mobile li {
	list-style: none;
	padding: 0 20px;
	border-top: 1px solid #2F3238;
}

#navigation-mobile li a{
	display: block;
	font-size: 16px;
	text-transform: uppercase;
	padding: 20px 0;
}




/* ==================================================
   Section Page
================================================== */

.page {
	max-width:1280px;
	background: #FFF;
	padding: 50px 0;
	position: relative;
	z-index: 99;
		margin:0px auto;
}



.title-page {
	margin-bottom: 0px;	
	
}

.title-page .title {
	font-size: 30pt;
	margin: 0 0 0 0;
	padding-top:0;
}

.title-page .title-description {
	font-size: 15px;
	font-weight: 200;
	margin: 30px 0 0px 0;
	color:#565655;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	
}



/* ==================================================
   Section Portfolio
================================================== */

.work-nav {
	margin-bottom: 30px;
}

.type-work {
	color: #FFFFFF;
	font-size: 24px;
	font-weight: 300;
	line-height: 1em;
	text-transform: uppercase;
}

.work-nav #filters {
	margin: 0;
	padding: 0;
	list-style: none;
}

.work-nav #filters li {
	display: inline-block;
	padding: 0;
	margin-right: 30px;
}

.work-nav #filters li a {
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;	
	display: block;	
}

.work-nav #filters li a:hover {
	color: #FFFFFF;
}

.work-nav #filters li a.selected {
	color: #fff;
}

#thumbs {
	margin: 0;
	padding: 0;	
}

#thumbs li {
	list-style-type: none;
}

.item-thumbs {
	position: relative;
	overflow: hidden;
	margin-bottom: 5px;
	
}

.item-thumbs a + img {
	width: 100%;	
}

.item-thumbs .hover-wrap {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	
	opacity: 0;
	filter: alpha(opacity=0);
	
	-webkit-transition: opacity 250ms ease-out 0s;	
	   -moz-transition: opacity 250ms ease-out 0s;
		 -o-transition: opacity 250ms ease-out 0s;
		    transition: opacity 250ms ease-out 0s;
}

.item-thumbs:hover .hover-wrap,
.item-thumbs.active .hover-wrap {
	opacity: 1;
	filter: alpha(opacity=100);
}

.item-thumbs .hover-wrap .overlay-img {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #000;
	
	opacity: 0.50;
	filter: alpha(opacity=50);
	z-index:3;
}

.item-thumbs .hover-wrap .overlay-img-thumb {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -16px 0 0 -16px;
	color: #FFFFFF;
	font-size: 32px;
	line-height: 1em;
	opacity: 1;
	filter: alpha(opacity=100);
	z-index:3;
}




#thumbs a{
	color:#909190;
	text-decoration:none;
}

#thumbs a:hover{
	color:#909190;
	text-decoration:underline;
}

#thumbs h2{
	color:#FFF;
	text-decoration:none;
	border-bottom:1px solid #FFF;
	text-align:center;
	
	font-size:20px;
	text-transform:uppercase;
	padding-bottom:0;
	margin-top:30px;

}


.overlay{
	color:#FFF;
	text-decoration:none;
	text-align:center;
	font-size:16px;
	margin-top:5px;
	
}


.newmedia {
	color:#000;
	
	
}


#overlay-info{
	
	
	position:absolute;
	z-index:5;
	text-align:center;
	margin: 0 auto;
	left: 50%;
    top: 50%;
    width:200px;
    height: 200px;
    margin-top: -100px;
    margin-left: -100px;

}

/* ==================================================
   Margin Bottom Sets
================================================== */

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

.margin-10{
	margin-bottom:10px !important;
}

.margin-15{
	margin-bottom:15px !important;
}

.margin-20{
	margin-bottom:20px !important;
}

.margin-30{
	margin-bottom:30px !important;
}

.margin-40{
	margin-bottom:40px !important;
}

.margin-50{
	margin-bottom:50px !important;
}

.margin-60{
	margin-bottom:60px !important;
}

.margin-70{
	margin-bottom:70px !important;
}

.margin-80{
	margin-bottom:80px !important;
}




/* ==================================================
   Footer
================================================== */

footer {
	max-width:1200px;
	width: 100%;
	margin:0px auto;
	position: relative;
	height: auto;
	background-color: #FFF;
	border-top:1px solid #000;
	z-index: 99;
	padding-bottom:25px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	
}

footer .credits {
	color: #565655;
	font-size: 15px;
	margin-bottom: 0;
	padding: 20px 0px;
	
}




footer li.current a,
footer li a:hover {
	color: #000000;
	text-decoration:underline;
}


nav#footermenu {
	float: right;
	padding-top:20px;
	background: #FFF;
}

nav#footermenu #footermenu-nav {
	margin: 0;
	padding: 0;	
}

nav#footermenu #footermenu-nav li {
	list-style: none;
	display: inline-block;
	margin-left: 30px;	
		
}

nav#footermenu #footermenu-nav li:first-child {
	margin-left: 0;	
}

nav#footermenu #footermenu-nav li a {
	color: #565655;
	font-size: 15px;
	font-weight: 300;
	line-height: 35px;
	display: block;
	text-transform: uppercase;
}

nav#footermenu #footermenu-nav li.current a,
nav#footermenu #footermenu-nav li a:hover {
	color: #000000;
	text-decoration:underline;
}

/* ==================================================
   Back to Top
================================================== */

#back-to-top {
	display: block;
	background: url(../img/arrow_up.gif) #fff no-repeat center;
	border: #1a171b 1px solid;
	
	width: 50px;
	height: 50px;
	z-index: 99;
	float:right;
	
	
	
	
}

#back-to-top:hover {
background: url(../img/arrow_up.gif) #fff no-repeat center;
	border: #1a171b 1px solid;
}

