
/* Colors and Shades of Grey 

blue = #6acdea, rgba(51, 52, 57, .4)
green = #8fd400 rgba(81, 180, 229, .4)
brown = #b7a66e rgba(183, 166, 109, .4)

grey 1 = #eeeff0
grey 2 = #c8c9ca
grey 3 = #b4b5b6
grey 4 = #a0a1a2

*/

/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	font:inherit;
	vertical-align:baseline;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display:block;
}

body {
	line-height:1;
}

ol,ul {
	list-style:none;
}

blockquote,q {
	quotes:none;
}

blockquote:before,blockquote:after,q:before,q:after {
	content:'';
	content:none;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}
	
/* #Basic Styles
================================================== */

/* first for IE 4–8 */
@font-face { font-family: DIN; 		src: url("../fonts/DINWeb.eot"); }
@font-face { font-family: DIN-Bold; src: url("../fonts/DINWeb-Bold.eot"); }

/* then for WOFF-capable browsers */
@font-face { font-family: DIN; 		src: url("../fonts/DINWeb.woff") 	  format("woff"); }
@font-face { font-family: DIN-Bold; src: url("../fonts/DINWeb-Bold.woff") format("woff"); }


body {
	background:#fff;
	font-family:"DIN", Arial, sans-serif;
	font-size: 13px;
	line-height: 1.5em;
	color:#333439;
	text-align:center;
	min-height: 100%;

/* Fix for webkit rendering */
	-webkit-text-size-adjust:100%;
	-webkit-font-smoothing:antialiased;
	overflow-x:hidden;
}
	
/* #Typography
================================================== */

h1,h2,h3,h4,h5,h6 {
	font-weight:normal;
	text-transform:uppercase;
	line-height:1.5em;
	margin-bottom: 1em;
}

h1 a,h2 a,h3 a,h4 a,h5 a,h6 a {
	font-weight:normal;
	line-height:inherit;
	margin-bottom: inherit;

}

h2,h3,h4,h5,h6 { font-family:"DIN-Bold", Arial, sans-serif; }
h1 { font-size:46px; font-family:"DIN", Arial, sans-serif; }
h2 { font-size:24px; }
h3 { font-size:14px; }
h4 { font-size:18px; }
h5 { font-size:14px; }
h6 { font-size:12px; }

#message-box h2 {font-size: 17px;}
.box-teaser h4 {font-family:"DIN", Arial, sans-serif;}


.subheader {}

p {
	margin:0 0 1.25em;
	
}

p img {
	margin:0;
}

p.lead {
	font-size:21px;
	line-height:27px;
}

em {
	font-style:italic;
}

strong {
	font-family:"DIN-Bold", Arial, sans-serif;
	font-weight: normal;
}

small {
	font-size:80%;
}
	
/*	Blockquotes  */
blockquote,blockquote p {
	font-size:17px;
	line-height:24px;
	font-style:italic;
}

blockquote {
	margin:0 0 20px;
	padding:9px 20px 0 19px;
	border-left:1px solid #ddd;
}

blockquote cite {
	display:block;
	font-size:12px;
	color:#555;
}

blockquote cite:before {
	content:"\2014 \0020";
}

blockquote cite a,blockquote cite a:visited,blockquote cite a:visited {
	color:#555;
}

hr {
	border:solid #ddd;
	border-width:1px 0 0;
	clear:both;
	margin:10px 0 30px;
	height:0;
}

	
/* #Links
================================================== */
a,a:visited {
	color:#333;
	text-decoration:underline;
	outline:0;
}

a.button:visited{color: #fff;}

a:hover,a:focus {
	color:#000;
}

p a,p a:visited {
	line-height:inherit;
}


	
/* #Buttons
================================================== */
.box .more-button {
	position:absolute;
	bottom:15px;
	right:15px;
	z-index:10;
	
}

.kontakt-form .form-button {padding-left: 395px; margin-left: 15px;}
html.ie8 .kontakt-form .form-button, html.ie7 .kontakt-form .form-button {padding-left: 395px;}

.button,
button,
input[type=submit],
input[type=reset],
input[type=button] {
	background-color:#333439;
	color:#fff;
	font-size:12px;
	border: 0;
	text-decoration:none;
	cursor:pointer;
	line-height:normal;
	padding:7px 12px 5px;
	vertical-align: middle;
	font-family:'DIN-Bold', Helvetica, Arial, sans-serif;
	border-radius:2px;
	-webkit-transition:	opacity 250ms ease-out; 
   	   -moz-transition:	opacity 250ms ease-out;
	     -o-transition:	opacity 250ms ease-out;
		    transition:	opacity 250ms ease-out; 
}

.button span {line-height: 1; display: inline-block;}

.button:hover,button:hover,input[type=submit]:hover,input[type=reset]:hover,input[type=button]:hover {
	opacity:0.7;
	color:#fff;
}

.button:active,button:active,input[type=submit]:active,input[type=reset]:active,input[type=button]:active {
	border:0px solid #666;
	background:#ccc;
}

.button.full-width,
button.full-width,
input[type=submit].full-width,
input[type=reset].full-width,
input[type=button].full-width {
	width:100%;
	padding-left:0!important;
	padding-right:0!important;
	text-align:center;
}
	
/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
	border:0;
	padding:0;
}

.button i {
	border-bottom:4px solid transparent;
	border-left:4px solid #fff;
	border-top:4px solid transparent;
	display:inline-block;
	height:0px;
	vertical-align:middle;
	width:1px;
	margin:0px 0 2px 10px;
	zoom: 1;
}

html.ie7 .button i {display: inline}

.arrow-link {text-decoration: none; margin: 10px 0 0 0;}
.arrow-link:hover {text-decoration: underline}

.arrow-link em {
	border-bottom:4px solid transparent;
	border-left:4px solid #000;
	border-top:4px solid transparent;
	content:"";
	display:inline-block;
	text-indent: -9999px;
	height:0px;
	vertical-align:top;
	width:0px;
	margin:5px 5px 0 0;
}

html.ie7 .arrow-link em {display: inline; text-indent: 0; color: #fff; margin-top: 2px;}
html.ie7 .arrow-link:hover {text-decoration: none}

p .more-link {margin-top: 10px; display: block;}


/* #Forms
================================================== */
form {
	margin-bottom:20px;
	overflow: hidden;
}

fieldset {
	margin-bottom:20px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=file],
textarea,select {
	border:1px solid #dcdcdc;
	padding:9px 4px 7px;
	outline:none;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	border-radius:2px;
	font:13px 'DIN', Helvetica, Arial, sans-serif;
	color:#666;
	margin:0;
	width:200px;
	max-width:100%;
	display:block;
	margin-bottom:10px;
	background:#fff;
}

input[type=text] {
height: 14px;
}

#bewerberForm input, #bewerberForm textarea {
width:678px;
}

html.ie7 #bewerberForm input {width: 670; margin-left: 5px;}

#bewerberForm  #captcha {width: 250px; float: left;}

#bewerberForm input.form-button {width: 100px;}

select {
	padding:0;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
textarea:focus {
	border:1px solid #aaa;
	color:#444;
	-moz-box-shadow:0 0 3px rgba(0,0,0,.2);
	-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);
	box-shadow:0 0 3px rgba(0,0,0,.2);
}

input[type=checkbox] {
	display:inline;
}

label span,legend span {
	font-weight:normal;
	font-size:13px;
	color:#444;
}

.sendbuttonbewerber{
	background: transparent url("../img/sendbutton.png") 0 0 no-repeat !important;
    border: 0;
    float: right;
}

.capchacode {border: 1px solid #dcdcdc; padding: 1px; float: left; margin-right: 10px; height: 29px;}


.blue {background-color:#6acdea; }
.green {background-color:#8fd400; }
.brown {background-color:#b7a66e; }
.redalert {border:1px solid red !important;}
.grey-1 {background-color:#eeeff0; }
.grey-2 {background-color:#c8c9ca; }
.grey-3 {background-color:#b4b5b6; }
.grey-4 {background-color:#a0a1a2; }

/* Header ------------------------------- */

.header { height:180px; }
h1.logo { margin-top:21px; margin-left: 2px; }
h1.logo:hover { opacity:0.7; }


/* Nav ------------------------------- */

.nav {
	margin-top:47px;
}

.nav ul {
	width:190px;
	float:left;
	display:inline;
	margin:0;
}

.nav ul.space {margin: 0 50px;}

.nav ul li {
	display:block;
	margin:0 0 8px;
	width:130px;
}

.nav ul li a {
	display:block;
	color:#333439;
	font-size:12px;
	line-height: 1.5em;
	text-decoration:none;
	text-transform:uppercase;
	padding:3px 0;
	border-top:2px solid #333439;
	font-family:"DIN-Bold", Arial, sans-serif;
	
	-webkit-transition:	border-color 300ms ease-out; 
   	   -moz-transition:	border-color 300ms ease-out;
	     -o-transition:	border-color 300ms ease-out;
		    transition:	border-color 300ms ease-out; 
}

.nav ul li.design a {
	border-color:#6acdea;
}

.nav ul li.casstrak a {
	border-color:#8fd400;
}

.nav ul li.visualisierung a {
	border-color:#b7a66e;
}

.nav ul li a:hover {border-top-color: rgba(51, 52, 57, .3);}
.nav ul li.design a:hover {border-top-color: rgba(81, 180, 229, .3);}
.nav ul li.casstrak a:hover {border-top-color: rgba(143, 212, 0, .3);}
.nav ul li.visualisierung a:hover {border-top-color: rgba(183, 166, 109, .3);}


.nav ul.last {
	width:auto;
	float:right;
}

.nav ul.last li {
	width:auto;
}

.nav ul.last li a {
	display:inline;
	border:0;
}

.social {
position: absolute;
top: 15px;
right: 0;
width: 84px;
height: 19px;
}

.social a {
float: left; 
width: 19px; 
height: 19px;
background-position: 0 0;
background-repeat: no-repeat;
}

.social a:hover {opacity: 0.8;}

.social a.social-f { background-image: url(../img/facebook-icon.png); margin-right: 2px; }
.social a.social-x { background-image: url(../img/xing-icon.png); margin-right: 2px; }
.social a.social-l { background-image: url(../img/likendin-icon.png); margin-right: 2px; }
.social a.social-p { background-image: url(../img/googleplus-icon.png); }


/* Content ------------------------------- */

.wrapper {min-height: 100%;}

.curtain {background: #fff; width: 100%; height: 100%; position: absolute; top: 0; left: 0; text-align: center; z-index: 8040;}
.curtain img {position: relative; margin-top: -30px; opacity: 0.9; cursor: pointer;}
.curtain img:hover {opacity: 1}
.curtain {
-moz-box-shadow:    3px 3px 5px 6px #ccc;
-webkit-box-shadow: 3px 3px 5px 6px #ccc;
box-shadow:         3px 3px 5px 6px #ccc;
}

.box-leistungen {
	color:#fff;
	border: 0;
	height: 210px;
	margin-right: 0;
	background-position: 0 0;
}

.box-design {background-color:#6acdea}
.box-startseite.box-design { background-image: url(../img/teaser_design.png); }

.box-cas-strak, .box-cassurface { background-color:#8fd400; }
.box-startseite.box-cas-strak { background-image: url(../img/teaser_cas-strak.png); }

.box-visualisierung,  .box-visualisation {background-color: #b7a66e; }
.box-startseite.box-visualisierung { background-image: url(../img/teaser_visualisierung.png);}

.box-startseite.box-leistungen h2 { font-size:18px; margin: 12px 0 0 5px;}

.box-leistungen a {position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 2; color: #fff; text-decoration: none;}
b.caret {
	border-bottom:8px solid transparent;
	border-left:8px solid #fff;
	border-top:8px solid transparent;
	content:"";
	display:inline-block;
	height:0;
	vertical-align:top;
	width:0;
	position:absolute;
	top:32px;
	left:0;
}

.box-cas-strak .caret {
	border-left-color:#6acdea;
}

.box-visualisierung .caret {
	border-left-color:#8fd400;
}

.pattern-block {
position: absolute;
z-index: 2;
top: 0;
left: 0;
width: 25%;
height: 240px;
opacity: 0.5;
background: transparent url(../img/pattern_dot.png) 0 0 repeat;
}

.box-zitat h2 {font-size: 24px; line-height: 1.2em; margin-top: 28px;}
.box-teaser {font-size: 12px; line-height: 1.25em;}
.box-teaser h4 {margin-bottom: 8px; font-size: 16px;}

.box-teaser ul {
border-top: 1px solid #ccc;
padding-top: 10px;
}

.box-teaser ul li {
border-bottom: 1px solid #ccc;
margin-bottom: 10px;
padding-bottom: 10px;
}

.box-teaser ul li.last {border: 0;}
.box-teaser ul li a {text-decoration: none; }
.box-teaser span.blog-date {display: block;}
.box-headline {background-color: #eeeff0;}


/* Leistungen ------------------------------- */

.projekte {height: 480px;}

.projekte .thumb {
width: 240px; 
height: 240px;
float: left;
position: relative;
border: 1px solid #DCDCDC;
margin: -1px -1px 0 -1px;
}

.projekte .thumb.row-1-first, .projekte .thumb.row-2-first {margin-left: 0; margin-right: -2px;}
.projekte .thumb.row-1-last, .projekte .thumb.row-2-last {margin-left:-2px;}


.projekte .thumb a,
.projekte .thumb .desc,
.projekte .thumb ._bg {
position: absolute;
top: 0;
left: 0;
width: 240px;
height: 240px;
text-align: center;
display: block; 
}

.projekte .thumb a {z-index: 4;}
.projekte .thumb .desc {z-index: 2;}
.projekte .thumb ._bg {z-index: 1;}

.projekte .thumb h4, 
.projekte .thumb h5 {
color: #fff; 
font-size: 14px; 
position: relative;
top: 30px;
}

.projekte .thumb h5 {top: 160px; }

.projekte .thumb .projekt-info i {
position: absolute;
z-index: 3;
top: 50%;
left: 50%;
margin: -19px 0 0 -19px;
width: 38px; 
height: 38px; 
background: transparent url(../img/zoom.png);
}

.design .projekte ._bg 			{ background: rgb(106, 205, 234); 	background: rgba(106, 205, 234, .8); 	}	
.casstrak .projekte ._bg 		{ background: rgb(143, 212, 0); 	background: rgba(143, 212, 0, .7); 		}
.cassurface .projekte ._bg 		{ background: rgb(143, 212, 0); 	background: rgba(143, 212, 0, .7); 		}
.visualisierung .projekte ._bg 	{ background: rgb(183, 166, 110); 	background: rgba(183, 166, 110, .7); 	}
.visualisation .projekte ._bg 	{ background: rgb(183, 166, 110); 	background: rgba(183, 166, 110, .7); 	}
.unternehmen .projekte ._bg 	{ background: rgba(153, 152, 147); 	background: rgba(153, 152, 147, .7); 	}
.company .projekte ._bg 	{ background: rgba(153, 152, 147); 	background: rgba(153, 152, 147, .7); 	}


.box-leistungen ul li {margin: 0;}
.box-leistungen ul li p {margin: 0;}

/* Unternhemen ------------------------------- */

.unternehmen .block h3 {color: #000; font-size: 24px; margin-top: 130px; margin-bottom: 0.5em;}
.unternehmen .block h4 {color: #000; font-size: 14px;}


/* Karriere ------------------------------- */

.karriere .block h4 {font-size: 13px; margin-bottom: 2em;}


/* Kontakt ------------------------------- */

form.kontakt-form .width-3 input {width: 230px;}
form.kontakt-form .box {padding-top: 20px;}

/* Kunden ------------------------------- */

.kunden-logo {width: 99px; height: 99px; text-align: center; padding: 10px; margin: 0 -1px -1px 0; border: 1px solid #dcdcdc;}
.kunden-logo img {vertical-align: middle;}
.kunden-claim {margin: 0 -1px -1px 0; border: 1px solid #dcdcdc; width: 359px; text-align: center; height: 99px; padding: 10px 0;}
.kunden-claim p {padding-top: 40px; font-size: 18px; text-transform: uppercase;}

/* Blog ------------------------------- */

h2.poster { color:#FFFFFF;font-size:250px; margin: -60px 0 0 0;}
.post-meta {padding-top: 20px;}
.post-meta span {display: block; border-bottom: 1px solid #dcdcdc; margin-bottom: 10px; padding-bottom: 10px;}

/* Gallery ------------------------------- */
.gallery .header,
.gallery .footer {
display: none;
}

.gallery h2 {
margin: -23px 0 0 5px;
display: none;
}

.gallery p {margin: 5px 0 0 5px;}

.gallery .thumbnails{
    margin-right: 1px;
    margin-bottom: 1px;
    padding: 0;
}

.padder{padding: 5px 30px 5px 5px;}
.thumbnails {margin-right: 1px;}

/* use a semi-transparent image for the overlay */
#overlay {
    color:#efefef;
    height:650px;
}
/* container for external content. uses vertical scrollbar, if needed */
  div.contentWrap {
    height:641px;
    overflow-y:auto;
  }

/* Footer ------------------------------- */

.footer {
	background:#eeeff0;
	height: 80px;
	position: relative;
	top: 80px;
	z-index: 8011;
}

.footer .box {
	height:60px;
}

.footer-links {
	float:right;
	margin:10px -5px 0 0;
}

.footer-links li {
	display:block;
	float:left;
	border-left:1px solid #dcdcdc;
	line-height:60px;
	padding:0 30px;
}

.footer-links li a {
	font-size:11px;
	text-decoration:none;
}

.footer-links li a:hover {opacity: 0.5;}

.footer .box-copy {
	background:#bcbdbe;
	color:#fff;
	height: 50px;
	padding: 15px;
}

.footer .box-copy * {
	font-size:11px;
	display:block;
	margin:20px 0 0 20px;
}

/* Scrollbar ------------------------------- */

#scrollbar1 { width:  690px; clear: both; margin: 0; }
#scrollbar1 .viewport { width: 650px; height: 190px; overflow: hidden; position: relative; }
#scrollbar1 .overview { list-style: none; position: absolute; left: 0; top: 0; }

#scrollbar1 .thumb { background-color: #dcdcdc; border-radius: 20px; -moz-border-radius: 20px; -webkit-border-radius: 20px; }
#scrollbar1 .thumb:hover { background-color: #333439; }
#scrollbar1 .scrollbar { position: relative; float: right; width: 8px; }
#scrollbar1 .track { background-color: #fff; border: 0px solid #dcdcdc; padding: 1px;height: 100%; width:8px; position: relative; padding: 0; }
#scrollbar1 .thumb { height: 20px; width: 8px; cursor: pointer; overflow: hidden; position: absolute; top: 0; }
#scrollbar1 .thumb .end {display: none; }
#scrollbar1 .disable{ display: none; }
.noSelect { user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; }


/* CSS Animationen ------------------------------- */


.projekte .thumb:hover .projekt-info * {
	opacity:0.999;
	-webkit-transition-property: opacity;
	-webkit-transition-duration: 0.4s;
	-webkit-transition-timing-function: ease-out;
	-webkit-transition-delay: 0;
			transition-property: opacity;
			transition-duration: 0.4s;
			transition-timing-function: ease-out;
			transition-delay: 0;
}

.projekte .thumb:hover .projekt-info i {transition-duration: 1.2s;}

.projekte .thumb .projekt-info * {
	opacity:0;
	-webkit-transition-property: opacity;
	-webkit-transition-duration: 1s;
	-webkit-transition-timing-function: ease-in;
	-webkit-transition-delay: 0;
			transition-property: opacity;
			transition-duration: 1s;
			transition-timing-function: ease-in;
			transition-delay: 0;
}

.prev-next-navigation{
    border-top: 1px solid #DCDCDC;
    height: 7px;
    margin-bottom: 20px;
    padding-top: 10px;
    clear: both;
    display: block;
    position: relative;
    top: 10px;
}
.alignright{
	float: right
}

.alignleft{
	float: left;
	margin-right: 10px;
}

html.ie7 .projekte .thumb .projekt-info *, 
html.ie8 .projekte .thumb .projekt-info * {
visibility: hidden;
}

html.ie7 .projekte .thumb:hover .projekt-info *, 
html.ie8 .projekte .thumb:hover .projekt-info * {
visibility: visible; 
}

.fancybox-lock {
overflow: scroll!important;
}

.box-noborder{
	width: 200px;
}

.unternehmen .projekte,
.company .projekte  {
    height: auto !important;
}

	
