/* open-sans-300 - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/open-sans-v34-latin-300.eot'); /* IE9 Compat Modes */
	src: local(''),
	url('../fonts/open-sans-v34-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('../fonts/open-sans-v34-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
	url('../fonts/open-sans-v34-latin-300.woff') format('woff'), /* Modern Browsers */
	url('../fonts/open-sans-v34-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
	url('../fonts/open-sans-v34-latin-300.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-regular - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/open-sans-v34-latin-regular.eot'); /* IE9 Compat Modes */
	src: local(''),
	url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
	url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), /* Modern Browsers */
	url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
	url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-600 - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/open-sans-v34-latin-600.eot'); /* IE9 Compat Modes */
	src: local(''),
	url('../fonts/open-sans-v34-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('../fonts/open-sans-v34-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
	url('../fonts/open-sans-v34-latin-600.woff') format('woff'), /* Modern Browsers */
	url('../fonts/open-sans-v34-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
	url('../fonts/open-sans-v34-latin-600.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-300italic - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 300;
	src: url('../fonts/open-sans-v34-latin-300italic.eot'); /* IE9 Compat Modes */
	src: local(''),
	url('../fonts/open-sans-v34-latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('../fonts/open-sans-v34-latin-300italic.woff2') format('woff2'), /* Super Modern Browsers */
	url('../fonts/open-sans-v34-latin-300italic.woff') format('woff'), /* Modern Browsers */
	url('../fonts/open-sans-v34-latin-300italic.ttf') format('truetype'), /* Safari, Android, iOS */
	url('../fonts/open-sans-v34-latin-300italic.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-italic - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 400;
	src: url('../fonts/open-sans-v34-latin-italic.eot'); /* IE9 Compat Modes */
	src: local(''),
	url('../fonts/open-sans-v34-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('../fonts/open-sans-v34-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
	url('../fonts/open-sans-v34-latin-italic.woff') format('woff'), /* Modern Browsers */
	url('../fonts/open-sans-v34-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
	url('../fonts/open-sans-v34-latin-italic.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-600italic - latin */
@font-face {
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 600;
	src: url('../fonts/open-sans-v34-latin-600italic.eot'); /* IE9 Compat Modes */
	src: local(''),
	url('../fonts/open-sans-v34-latin-600italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('../fonts/open-sans-v34-latin-600italic.woff2') format('woff2'), /* Super Modern Browsers */
	url('../fonts/open-sans-v34-latin-600italic.woff') format('woff'), /* Modern Browsers */
	url('../fonts/open-sans-v34-latin-600italic.ttf') format('truetype'), /* Safari, Android, iOS */
	url('../fonts/open-sans-v34-latin-600italic.svg#OpenSans') format('svg'); /* Legacy iOS */
}


/*---------------------------- MODAL FOR ALERTS ----------------------------*/
.infomodal {
	display: none;
	position: fixed;
	z-index: 1002;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.7);
}

.modalcontent {
	display: none;
	/*color: #fff !important;*/
	width: 70%;
	max-width: 400px;
	position: absolute;
	left: 0;
	right: 0;
	top: 45%;
	background-color: #fff;
	margin: auto;
	padding: 1em;
	border-radius: 0;
	transform: translateY(-50%);
	text-align: center;
}

.modalcontent img {
	max-width: 100%;
	height: auto;
}

/* The Close Button */
.closeInfomodal {
	width: 40px;
	height: 41px;
	background-color: #009685;
	padding: 0 0.5em;
	position: absolute;
	right: 0;
	top: 0;
	color: #fff;
	font-size: 18px;
	line-height: 20px;
	font-weight: normal;
	border-radius: 50%;
	/*			border: 3px solid #fff;*/
	border: none;
	-webkit-transform: translateX(50%) translateY(-50%);
	transform: translateX(50%) translateY(-50%);
}

.closeInfomodal:hover,
.closeInfomodal:focus {
	color: #009685;
	background-color: #fff;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

/* ----------------------------------------------------------------------------------------------------------
 01 General ----------------------------------------------------------------------------------------
 ---------------------------------------------------------------------------------------------------------- */

.rc4 {
                display:none;
}

.errbox {
	background:#ffdede;
	padding:10px;
	margin:0 0 3em 0;
	border:#ebccd1 1px solid;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
}

.errbox p {
	color:red;
	margin-top:0;
	margin-bottom:0;
}

*{ -webkit-appearance: none;}


 #prepage {background:#fff;display:block;height:100%;overflow:hidden;position:absolute;right:0;top:0;bottom:0;left:0;width:100%;z-index:9998;}

 body {
 	background: #f9f9f9;
 	font-family: 'Open Sans', 'Verdana', 'Arial', sans-serif;
 	color: #2d2d2d;
 	font-size:13px;
 	line-height:20px;
 	overflow-x: hidden;
 }

 /* TYPOGRAPHY */
 @font-face {font-family: 'NovecentowideBookBold';src: url('../fonts/2D04C8_0_0.eot');src: url('../fonts/2D04C8_0_0.eot?#iefix') format('embedded-opentype'),url('../fonts/2D04C8_0_0.woff2') format('woff2'),url('../fonts/2D04C8_0_0.woff') format('woff'),url('../fonts/2D04C8_0_0.ttf') format('truetype');}
 

 @font-face {font-family: 'NovecentowideLightRegular';src: url('../fonts/2D04C8_1_0.eot');src: url('../fonts/2D04C8_1_0.eot?#iefix') format('embedded-opentype'),url('../fonts/2D04C8_1_0.woff2') format('woff2'),url('../fonts/2D04C8_1_0.woff') format('woff'),url('../fonts/2D04C8_1_0.ttf') format('truetype');}
 

 h1,h2,h3,h4,h5,h6 {
 	font-weight:normal;
/*	hyphens: auto; */
 }

 h3 {
 	font-size:29px;
 	color: #333;
 	font-weight:300;
 	margin-top:0;
 	line-height:1.4em;
 	overflow-wrap:break-word;
 }

 h1, h2 {
 	font-family: 'NovecentowideBookBold';
 	font-size: 50px;
 	line-height: 50px;
 	margin-bottom: 40px;
 	font-weight: normal;
 	text-transform: uppercase;
 	word-wrap:break-word;
 }

 h4 {
 	font-family: 'NovecentowideBookBold';
 	font-size: 24px;
 	line-height: 1.2em;
 	margin-bottom: 40px;
 	font-weight: normal;
 	text-transform: uppercase;
 	word-wrap:break-word;
 	margin:0 0 0.5em 0;
 }

.fullWidthGroupProducts h4 {
	font-size: 20px;
	font-family: 'Open Sans', 'Verdana', 'Arial', sans-serif;
 	font-weight:300;
 	text-transform: inherit;
}

.jobs h5 {
	font-size: 16px;
 	text-transform: uppercase;
}

hr { border-width: 0.5px;
 }

 .item h3, #tab_unternehmen h3 , #tab_komponentenerprobung h3, #tab_fahrzeugerprobung h3  {
 	font-size:30px;
 	color: #333;
 	font-weight:300;
 }
 p {
 	font-weight: 400;
 } 

 .link-icon {
 	font-size:22px;
 	padding: 5px;
 }

 #menu-top {

 	z-index: 9998;
 	position:relative;
 }

ul {
    margin: 0 0 0 1.2rem;
    padding: 0;
}


ul li {
    margin: 0;
    padding: 0;
}

li, 
a, 
img {
	outline: none !important;
}

section {
	padding-top: 110px;
	overflow: hidden;
}

.section-page {
	padding:50px 0;
	overflow: hidden;
	position:relative;
	background-size:cover;
	background-position:50% 0;
	background-repeat: no-repeat;
}

.last-section .full-width-container {
	opacity: 1!important;
}

.pattern-overlay {
	background-image:url(img/overlay-pattern.png);
	background-repeat: repeat;
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
	position: absolute;
	z-index: 1;
	display: block;
}

.color-overlay {
	background-color: rgba(0,0,0,.7);
	background-repeat: repeat;
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
	position: absolute;
	z-index: 1;
	display: block;
}

.section-page .container {
	position:relative;
	z-index:3;
}

.border {
	border-top: 1px solid #f0f0f0;
	padding-top: 20px;
}

a {
	color:#009685;
}

a:hover {
	text-decoration:underline;
	color:#009685;
}

#impressum {
	margin-bottom:0px;
	background:#000000;
	color:#f1f1f1;
	position: relative;
	z-index: 2;
}

#impressum a {
	color:#fff;
}

#impressum a:hover {
	text-decoration:none;
}

#impressum ul li {
	list-style-type: none;
}

#impressum h3 {
	margin-bottom:20px;
	color:#fff;
}

#logo {
opacity:0;
}

.logos:hover {
	cursor:pointer;
	-moz-transform:  scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform:  scale(1.1);
	transform:  scale(1.1);	
}

.logos {
	margin: 0 0 20px 20px;
	display: table-cell;
	background: #fff none repeat scroll 0 0;
	border-radius: 85px;
	box-sizing: border-box;
	color: #fff;
	font-family: "NovecentowideLightRegular";
	font-size: 24px;
	height: 170px;
	position: relative;
	text-align: center;
	vertical-align: middle;
	width: 170px;
	z-index: 0;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	overflow: hidden;
}

.logosRectangle {
	margin: 0 20px 0 0;
	display: block;
	background: #fff none repeat scroll 0 0;
	box-sizing: border-box;
	color: #fff;
	font-family: "NovecentowideLightRegular";
	font-size: 24px;
	position: relative;
	text-align: center;
	vertical-align: middle;
	width: 240px;
	padding: 10px;
	z-index: 0;
	-moz-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	overflow: hidden;
}

.logos img {
	width:110px !important; 
	height:auto !important;
}

.logo-wrapper {
	display: inline-block;
	height: 165px;
	margin: 20px 20px 20px 0;
	width: 165px;
}

.logosRectangle-wrapper {
	margin: 20px 20px 20px 0;
	width: 240px;
	float: left;
}

.padding-top {
	margin-top:1px;
	margin-bottom:-1px;
}

input[type="text"],input[type="submit"],input[type="email"],textarea {
	-webkit-appearance: none;
	border:0;
	border-radius:0;
}

.center {
	text-align: center;
}

.last-section {
	overflow:visible;
}

p {
	clear: both;
}

.video-bg {
	position: absolute;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
}

#btn-menu-container .btn-navbar:focus {
	border: none;
	box-shadow: none;
	outline: none;
}


/*TABLE*/
table {
	border-collapse: collapse;
	width:100%;
}

caption {
	padding:10px;
	background-color: #009685;
	color:#fff;
	text-align:left;
	border-collapse: collapse;
	font-weight: bold;
	font-size:16px;
}

tr,td {
	border:2px solid #009685;
	padding:10px;
	width:50%;
}


/* ----------------------------------------------------------------------------------------------------------
 02 Menu ----------------------------------------------------------------------------------------
 ---------------------------------------------------------------------------------------------------------- */

 .navbar .collapse {
 	float: right;
 	display: table;
 	margin-right: 30px;
 }

 .navbar .collapse #nav-menu {
 	display: table-cell;
 	vertical-align: middle;
 	float: none;
 }

 .navbar-inner {
 	border:0;
 }

 .navbar-inverse .navbar-inner {
 	background-color: transparent;
 	background-image: none;
 	border:none;
 	box-shadow: none;
 	-webkit-transition: all 0.4s ease;
 	-moz-transition: all 0.4s ease;
 	-o-transition: all 0.4s ease;
 	-ms-transition: all 0.4s ease;
 	transition: all 0.4s ease;
 	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
 }

 .page-template-main-template #menu-top {
 	opacity: 0;
 	position: relative;
 }

 .page-template-main-template .navbar-inverse .navbar-inner {
 	border: none!important;
 }

 .page-template-main-template .navbar-inverse .nav-bar-visible {
 	display: block;
 }

 .page-template-main-template .fixed .navbar-inverse .navbar-inner {
 	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }

 .page-template-main-template .navbar-inverse .navbar-inner:hover {
 	background:rgba(0,0,0,.3);
 }

 .navbar .nav > li > a {
 	padding: 0px 0 0px 15px;
 	font-family: 'Open Sans', 'Verdana', 'Arial', sans-serif;
 	text-transform:uppercase;
 	font-weight:400;
 	box-shadow:none!important;
 	text-shadow:none!important;
 	color:#fff;
 	background:#fff;
 }

 .navbar .nav > li {
 	position: relative;
 }

 .navbar .nav > li > a:hover {
 	background:#fff!important;
 	box-shadow:none!important;
 }

 .navbar .nav > li.active > a {
 	background:#fff!important;
 	box-shadow:none!important;
 }

 .center-logo img {
 	display:block;
 	margin:auto;
 }

 #mini-logo {
 	width:auto;
 	float:left;
 	display: table;
 }

 #mini-logo a {
 	display:table-cell;
 	vertical-align: middle;
 }

 #mini-logo img {
 	height:44px;
 	width:auto;
 	display:block;
 }

 .sub-menu {
 	opacity: 0;
 	visibility: hidden;
 	z-index: -1;
 	position: absolute;
 	width: 170px;
 	height: auto;
 	padding: 10px;
 	background:#ffffff; 
 	list-style: none;
 	left: 50%;
 	margin-left: -85px;
 	-webkit-transition: all 0.8s ease;
 	-moz-transition: all 0.8s ease;
 	-o-transition: all 0.8s ease;
 	-ms-transition: all 0.8s ease;
 	transition: all 0.8s ease;
 	border: 1px solid #ccc;
 }

 .sub-menu li {
 	text-align: center;
 	line-height: 30px;
 }

 .sub-menu li a {
 	display: block;
 	color:#999;
 	font-family: 'Open Sans', 'Verdana', 'Arial', sans-serif;
 	font-size:13px;
 	text-transform: uppercase;
 }

 .navbar .nav > li:hover > .sub-menu {
 	opacity: 1;
 	visibility: visible;
 	z-index: 9;
 }

  .navbar .nav > li:hover {
  	background:#fff;
  }

 .sub-menu .current-menu-item a {
 	color:#999!important;
 }

 .cart-contents {
 	float: right;
 	color:#fff;
 }

 .cart-contents:hover {
 	text-decoration: none;
 }

 .cart-contents .cart-icon {
 	font-size: 18px;
 	margin-right: 5px;
 	color:#fff;
 }

 #btn-menu-container {
 	display: none;
 } 

 .navbar .btn-navbar .icon-bar {
 	box-shadow: none;
 	width: 25px;
 	height: 3px;
 	border-radius: 0;
 }

 .scroll-hint {
 	bottom: 0;
 	color: #fff;
 	cursor: pointer;
 	left: 50%;
 	margin: 0 0 20px -50px;
 	position: absolute;
 	text-align: center;
 	text-shadow: 0 4px 4px rgba(0,0,0,0.7);
 	text-transform: uppercase;
 	font-size:18px;
 	width: 100px;
 	z-index: 2147483647;
 }

/* ----------------------------------------------------------------------------------------------------------
 03 Home Template ----------------------------------------------------------------------------------------
 ---------------------------------------------------------------------------------------------------------- */

 .full-home {
 	width:100%;
 	height:100%;
 	display: table;
 	padding:0!important;
 	position:relative;
 }

 .home-container {
 	display: block;
 	margin: auto;
/* 	min-height: 100%;*/
 	padding: 0 20px;
 	position: relative;
 	text-align: center;
/* 	vertical-align: middle;*/	 
 }

 #home {
 	padding:0 !important	
 }

 #home .container {
 	width:100%;
 	display: table-cell;
 	margin: auto;
 	min-height: 100%;
 	padding: 60px 0;
 	position: relative;
 	text-align: center;
 	vertical-align: middle;
 }

 .home-header {
 	margin: auto;
 	margin-bottom: 50px;
 	padding:0 0px;
 	max-width: 1170px;
 	width: 100%;
 	overflow: hidden;
 	text-align:left;
 	position:relative;
 }

 .home-header .left-logo {
 	float: left;
 	margin-left:20px;
 	padding:100px 0;
 }

 .home-header .left-logo img{
 	width:200px; 
 	height:auto;
 }

 @media (max-width: 979px) {
 	.home-headerXX .left-logo {
 		margin-left:-120px;
 	}	
 }

 @media (min-width: 980px) AND (max-width: 1199px) {
 	.home-header .left-logo {
 		margin-left:-0px;
 	}	
 }

 .home-header .left-logo h4 {
 	font-weight:bold;
 	color:#000;
 	font-size:1.75em;
 	line-height:1.3em;
 	max-width:25em;
 }

 #logo-title {
 	font-size:60px;
 	text-align:left;
 	font-family: 'NovecentowideBookBold';
 	font-weight:normal;	
 }

 #mini-slogan {
 	font-family: 'NovecentowideLightRegular';
 	font-weight:bold;
 	text-align:right;
 	font-size:18px;
 	padding-top:8px;
 	position:absolute;
 	right:20px;
 	top:0;
 }

 .language {
 	font-family: 'NovecentowideLightRegular';
 	font-weight:normal;
 	text-align:right;
 	font-size:18px;
 	padding-top:8px;
 	float: right;
 	text-transform: uppercase;
 	display: inline-block;
 	margin:0;
 }

 .language li {
 	float:left;
 	list-style-type: none;
        margin:0;
 }

 .language a {
 	text-decoration: none;
 	text-shadow: 0 0 5px #fff;
 }

 .mobile-language {
 	position:relative !important;
 	right:auto !important;
 	float:left !important;
 	padding:20px !important;
 }

.mobile-language li {
    margin:0;
}

 #bgvid {
 	left: 0;
 	min-height: 100%;
 	min-width: 100%;
 	position: absolute;
 	top: 0;
 }

     #bg-mobile-img {
       display:none;
        top:60px;
        position:absolute;
    }

@media screen and (max-width:600px) {
    #bgvid {
       display:none;
    }

    #bg-mobile-img {
        width:100%;
        height:auto;
        display:block;
    }

}

 #bgimg {
 	left: 0;
 	min-height: 100%;
 	min-width: 100%;
	height: 100%; 
 	position: absolute;
 	top: 0;
 	background-size: cover;
 }

 #bubbles {
 	margin-top: 60px;
 }

 .big-title span {
 	background:#000;
 	padding:3px 10px;
 }

 #nav-home ul {
 	list-style: none;
 	font-size: 0;
 	margin: 0;
 }

 nav#nav-home ul li {
 	display:inline-block;
 	position:relative;
 	margin-right: 20px;
 	vertical-align: top;
 }

 nav#nav-home >div:last-child {
 	margin-top: 20px;
 }

 nav#nav-home ul li:last-child {
 	margin-right: 0;
 }

 .circle-menu {
 	width: 210px;
 	height: 210px;
 	background: #fff;
 	-moz-border-radius: 50%;
 	-webkit-border-radius: 50%;
 	border-radius: 50%;
 	text-align:center;
 	color:#fff;
 	display:table-cell;
 	vertical-align:middle;
 	margin:auto;
 	position:relative;
 	font-size:22px;
 	line-height:1.2em;
 	font-weight:bold;
 	text-transform:uppercase;
 	z-index: 0;
 	font-family: 'Open Sans', 'Verdana', 'Arial', sans-serif;
 	box-sizing:border-box;
 	-moz-box-sizing:border-box;
 	-webkit-box-sizing:border-box;
 	border:3px solid #009685;
 }

 .label-link {
 	position:relative;
 	display:inline-block;
 	color:#000;
 }

 .spin-effect ul li {
 	-moz-transition: all 0.5s ease;
 	-webkit-transition: all 0.5s ease;
 	-o-transition: all 0.5s ease;
 	transition: all 0.5s ease;
 }

 .spin-effect ul li:hover{
 	-moz-transform:  scale(1.15);
 	-webkit-transform: scale(1.15);
 	-o-transform:  scale(1.15);
 	transform:  scale(1.15);	
 } 

 .spin-effect ul li:hover .label-link {
 	color:#000;
 }

 span.arrow {
 	display:block;
 	background:url(../graphik/arrow.png) no-repeat;
 	width:18px;
 	height:9px;
 	margin-left:-10px;
 	position:absolute;
 	bottom:30px;
 	left:50%;
 	z-index: 3;
 }

span.scroll {
    background:url(../graphik/scroll.png) no-repeat;
}

span.right {
    background:url(../graphik/right.png) no-repeat;
    width:9px;
     height:19px;
    margin-left:-5px;
    bottom:25px;
}

 #nav-home .custom-link span.arrow {
 	display:none;
 }

 .ie8 .page-1 .container {
 	padding:50px 0;
 	position:relative;
 	height:auto;
 	width:940px;
 	top:auto;
 	left:auto;
 	margin-top:0;
 	margin-left:auto;
 }

 .navbar .nav > li:hover > .sub-menu {top:60px;} 
 .navbar .collapse #nav-menu,#mini-logo a,.cart-contents,.cart-contents span{ height:60px;}
 .fixed .navbar-inverse .navbar-inner {background: #ffffff!important;}
 .navbar .nav > li > a,.cart-contents {line-height: 60px;}
 .fixed .navbar .nav > li > a, .fixed .cart-contents,.fixed .cart-contents span, .sub-menu li a {color: #000000;}
 .fixed .navbar .btn-navbar .icon-bar {background-color: #000000;}
 .fixed .navbar .nav > li > a:hover, .fixed .navbar .nav > li.active > a,.fixed .navbar-inverse .nav .active>a:focus, .fixed .navbar .nav > .current-menu-item > a, .cart-contents:hover, .cart-contents span:hover {color: #009685; font-size:1em;}


/* ----------------------------------------------------------------------------------------------------------
 04 �ber uns ----------------------------------------------------------------------------------------
 ---------------------------------------------------------------------------------------------------------- */

 #staff {
 	overflow: hidden;
 }

 .col-title {
 	font-size: 20px;
 	font-weight: normal;
 	line-height: 20px;
 	font-style:normal;
 	font-weight:300;
 }

 .tab-content {
 	overflow: hidden;
 }

 .nav-tabs {
 	border: 0;
 }

 .nav-tabs li a {
 	border: 0;
/* 	background: #007366;*/
 	background: #006257;
 	font-weight: normal;
 	color: #ffffff!important;
 	border-radius: 0;
 	font-weight:300;
 	text-transform:uppercase;
 	margin-bottom:3px;
 	-webkit-transition: all 0.2s ease-in-out;
 	-moz-transition: all 0.2s ease-in-out;
 	-o-transition: all 0.2s ease-in-out;
 	-ms-transition: all 0.2s ease-in-out;
 	transition: all 0.2s ease-in-out;
 }

 .nav-tabs > li {
    margin: 0 1px 1px 0;
}

 .nav-tabs > li > a:hover {
 	color: #ffffff;
 	border: 0!important;
 	border-radius: 0;
 	background: #000000;
 	border-radius: 0;
 }

 .nav-tabs > .active > a {
 	color: #ffffff;
 	border: 0!important;
 	border-radius: 0;
 }

 .nav-tabs > .active > a:hover {
 	color:#fff;
 }

.tab-content a{color:#fff;}

#tab_komponentenerprobung .nav-tabs > .active > a, #tab_unternehmen .nav-tabs > .active > a, #tab_fahrzeugerprobung .nav-tabs > .active > a {
	background: #000000 !important;
 	color: #ffffff;
 	border: 0;
 	border-radius: 0;
}

#tab_unternehmen .nav-tabs > .active > a:hover, #tab_komponentenerprobung .nav-tabs > .active > a:hover, #tab_fahrzeugerprobung .nav-tabs > .active > a:hover {
 	background: #000000 !important;
 	color: #ffffff;
 	border: 0;
 	border-radius: 0;
 }

#fahrzeugerprobung,
#fahrzeugerprobung h3,
#komponentenerprobung h3,
#unternehmen h3 {
 	color:#fff !important;
 }

/*#fahrzeugerprobung .tab-content a,
 #downloads a {
 	color:#fff;
 	text-decoration: underline;
 }*/

 .vorlage1 {
 	margin-bottom:40px;
 }

 #markerinfo-content,
 #markerinfo-content h3 {
 	color:#000 !important;
 	background:transparent !important;
 }

 #markerinfo-content a {
 	color:#009685 !important;
 }

 #map_canvas {
 	height:850px;
 	margin:0;
 }

 #firma1 .span9 {
 	margin: 0;
 }

 #side_bar a {
 	text-decoration: none !important;
 }

 .standortinfo,
 .adressinfo,
 .footerlink {
/* 	background: #007366 none repeat scroll 0 0;*/
 	background: #006257 none repeat scroll 0 0;
 	color: #ffffff !important;
 	font-weight: 300;
 	margin-bottom: 3px;
 	text-transform: uppercase;
 	transition: all 0.2s ease-in-out 0s;
 	display: inline-block;
 	padding: 8px 12px;
 	margin:0 10px 15px 0;
 }

 .footerlink {
 	background: #009685 none repeat scroll 0 0;
 	-webkit-transition: all 0.4s ease;
 	-moz-transition: all 0.4s ease;
 	-o-transition: all 0.4s ease;
 	-ms-transition: all 0.4s ease;
 	transition: all 0.4s ease;
 }

 .footerlink a {
 	color:#fff;
 	text-decoration:none;
 }

 .footerlink:hover {
 	background:#007366 none repeat scroll 0 0;
 }

 .standortinfo.active,
 .adressinfo.active {
 	background:#000;
 }

 .standortinfo-toggle,
 .adressinfo-toggle {
 	display:none;
 }

 .standortinfo-toggle a,
 .adressinfo-toggle a {
 	text-decoration:underline;
 }

 #side_bar h3 {
 	margin-top:0;
 }

 .divider {
 	margin-bottom:20px;
 }


/* ----------------------------------------------------------------------------------------------------------
 06 Portfolio Template ----------------------------------------------------------------------------------------
 ---------------------------------------------------------------------------------------------------------- */

 .portfolio-wrapper,.portfolio-detail-container,.portfolio-loading, .clearingfix {
 	clear:both;
 }

 .portfolio-wrapper {
 	list-style: none;
 	margin:30px 0 0 0;
 	padding:0;
 }

 ul.portfolio-wrapper .item {
 	position:relative;
 }

 #portfolio a.link-portfolio {
 	background: #009685;
 	color: #ffffff!important;
 	text-decoration: none;
 	font-weight: normal;
 	padding: 8px 12px;
 	margin-top: 20px;
 	display: block;
 	width: 94px;
 	-webkit-transition: all 0.2s ease-in-out;
 	-moz-transition: all 0.2s ease-in-out;
 	-o-transition: all 0.2s ease-in-out;
 	-ms-transition: all 0.2s ease-in-out;
 	transition: all 0.2s ease-in-out;
 	text-transform:uppercase;
 }

 .item-content {
 	width: 100%;
 	height: 100%;
 	position: relative;
 	cursor: pointer;
 	display:inline-block;
 }

 .item {
 	margin: 0 20px 20px 0 !important;
 	display:block;
 	width: calc(20% - 20px);
 }

 .info-wrapper {
 	position:absolute;
 	color:#fff;
 	z-index: 2;
 	display:block;
 	width: 100%;
 	height: 100%;
 	-moz-border-radius: 50%;
 	-webkit-border-radius: 50%;
 	border-radius: 50%;
 	bottom:0;
 	right:0;
 	-webkit-transition: all 0.4s ease-in-out;
 	-moz-transition: all 0.4s ease-in-out;
 	-o-transition: all 0.4s ease-in-out;
 	-ms-transition: all 0.4s ease-in-out;
 	transition: all 0.4s ease-in-out;
 	text-align:center;
 	opacity:1;
 }

 .content-info {
 	position:relative;
 	width:100%;
 	height:100%;
 	display:table;
 }

 .content-info h3{
 	color:#fff!important;
 	font-size:18px;
 }

 .info-wrapper .btn-more {
 	width: 42px;
 	height: 16px;
 	-moz-border-radius: 23px;
 	-webkit-border-radius: 23px;
 	border-radius: 23px;
 	color:#fff;
 	padding:13px 0;
 	border: 2px solid #fff;
 	text-align: center;
 	display: block;
 	margin: auto;
 	font-size: 22px;
 	line-height: 16px;
 	box-sizing: content-box;
 }

 .hidden-info {
 	-webkit-transition: all 0.2s ease-in-out;
 	-moz-transition: all 0.2s ease-in-out;
 	-o-transition: all 0.2s ease-in-out;
 	-ms-transition: all 0.2s ease-in-out;
 	transition: all 0.2s ease-in-out;
 	position:relative;
 	vertical-align:middle;
 	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
 	filter: alpha(opacity=0);
 	opacity: 1;
 	display:table-cell;
 	background: #009685;
 	border-radius:500px;
 	padding:15px;
 	max-width:174px;
 	overflow-wrap: break-word;
 }

 .hidden-info h3 {
 	margin-bottom:0;
 	font-weight:bold;
 	font-size:21px;
 }

 .item-content:hover .info-wrapper {
 	text-decoration:none;
 }

 .item-content:hover .hidden-info {
 	opacity: 0;
 }

 .portfolio-detail-container {
 	display:block;
 	height:100%;
 }

 .portfolio-item {
 	position:relative;
 }

 .portfolio-item .vid {
 	display:block;
 	margin: 0 auto 30px auto;
 	border:0;
 }

 .portfolio-item > img {
 	display:block;
 	margin:0 auto 30px auto;
 	max-width:770px;
 	width:100%;
 }

 .portfolio-item > img.full-img {
 	width: auto;
 	max-width: 100%;
 }

 .portfolio-item .portfolio-title {
 	margin-bottom:20px;
 	font-weight:300;
 }

 .button-controls {
 	position:absolute;
 	right:0;
 	top:10px;
 	list-style: none;
 	margin:0;
 	padding:0;
 	overflow:hidden;
 }

 .button-controls li {
 	margin-left:10px;
 	float:left;
 }

 .button-controls .description-btn span, .button-controls .visit-link span {
 	padding-top:11px;
 }

 .button-controls .close-item span {
 	padding-top:10px;
 }

 .nav-control {
 	font-weight:300;
 	display: inline-block;
 	width: 40px;
 	height: 40px;
 	line-height: 40px;
 	text-align: center;
 	color: #666;
 	font-size: 20px;
 	-webkit-border-radius: 80px;
 	-moz-border-radius: 80px;
 	-ms-border-radius: 80px;
 	border-radius: 80px;
 	-webkit-transition: all 0.2s ease-in-out;
 	-moz-transition: all 0.2s ease-in-out;
 	-o-transition: all 0.2s ease-in-out;
 	-ms-transition: all 0.2s ease-in-out;
 	transition: all 0.2s ease-in-out;
 }

 .nav-control:hover span{
 	color:#fff;
 	text-decoration:none;
 }

 .portfolio-item .carousel {
 	margin-bottom:0px;
 }

 .portfolio-item .description-item {
 	display:none;
 	position:absolute;
 	top:8px;
 	right:0;
 	background:#fff;
 	color:#666666;
 	border-bottom:1px solid #d3d3d3;
 	border-right:1px solid #f0f0f0;
 	z-index: 1000;
 }

 .portfolio-item .description-item .content-item {
 	padding: 55px 20px 20px 20px;
 }

 .portfolio-item .portfolio-link-wrapper {
 	text-align:center;
 }

 .img-circle {
 	max-width:100% !important;
 	height:auto !important;
 }

 .portfolio-item .portfolio-link-wrapper .link-portfolio {
 	display:inline-block;
 	margin:auto;
 	text-align:center;
 }

 .portfolio-item .no-lightbox {
 	display:block;
 	position:relative;
 	background:transparent;
 	border:0;
 	top:auto;
 	right:auto;
 }

 .portfolio-item .no-lightbox .content-item {
 	padding:0;
 }

 .portfolio-item .description-item img {
 	margin:10px 0 20px 0;
 }

 .portfolio-item .description-item .content-item #close-content {
 	position:absolute;
 	right:20px;
 	top:20px;
 	font-size:20px;
 }

 .portfolio-carousel img {
 	display:block;
 	margin:auto;
 }

 a.arrow {
 	display: inline-block;
 	font-weight: 300;
 	padding: 0;
 	position: absolute;
 	text-align: center;
 	top: 50%;
 	margin-top:-20px;
 	margin-left:0;
 }

 a.arrow span{
 	margin-top: 11px;
 }

 a.next-arrow {
 	right:0;	
 }

 a.prev-arrow {
 	left:0;
 }

 a.next-arrow span {
 	margin-right: -2px;
 }

 a.prev-arrow span{
 	margin-left:-2px;
 }

 .portfolio-loading {
 	display:none;
 	position:relative;
 	margin-bottom:30px;
 }

 .portfolio-loading img {
 	position:absolute;
 	top:50%;
 	left:50%;
 }

 #overlay {
 	position: fixed;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 100%;
 	background-color: #000;
 	filter:alpha(opacity=50);
 	-moz-opacity:0.5;
 	-khtml-opacity: 0.5;
 	opacity: 0.5;
 	z-index: 999;
 	display:none;
 }

 .ie8 .info-wrapper {
 	background-color: transparent;
 }

 .white-popup {
 	background: #fff none repeat scroll 0 0;
 	margin: 20px auto;
 	max-width:1230px;
 	padding: 50px 30px;
 	position: relative;
 	width: auto;
 }

.two-columns {
 	/*margin-top:3em;*/
 }

 /*360 Grad Produktpr�sentation*/

/* .threesixty {
 	margin:0;
 	border:5px solid #009685;
 }

 .threesixty .img-container {
 	width: 100%;
 	max-width:640px;
 	margin: 0 auto;
 	padding:0;
 	cursor: ew-resize;
 }

 .threesixty .img360 {
 	width: 100%;
 	margin: 0;
 	padding: 0;
 	line-height: 0;
 }

 .threesixty img {
 	width: 100%;
 	margin: 0;
 	padding: 0;
 }

 .threesixty #preload-imgs {
 	display:none;
 }

 .threesixty p {
 	text-align: center;
 }*/

/* ----------------------------------------------------------------------------------------------------------
 07 Contact Template ----------------------------------------------------------------------------------------
 ---------------------------------------------------------------------------------------------------------- */

input, button, select, textarea {
 	font-family: 'Open Sans', 'Verdana', 'Arial', sans-serif;
 }

 .email-link {
 	font-family: 'Open Sans', 'Verdana', 'Arial', sans-serif;
 	color:#000000;
 	text-decoration:underline;
 }

 #find-us h3, #contact-info h3 {
 	margin-bottom:30px;
 }

 #find-us ul li {
 	line-height:30px;
 	font-size:15px;
 	font-weight:400;
 }

 #find-us ul.contact-info li span {
 	width:20px;
 	text-align:center;
 }

 #contact ul li {
 	margin-bottom: 10px;
 }

 ul.social {
 	margin-top:20px;
 } 

 ul.social li {
 	margin-right:10px;
 	float:left;
 }

 ul.social li a span{
 	-webkit-transition: all 0.2s ease-in-out;
 	-moz-transition: all 0.2s ease-in-out;
 	-o-transition: all 0.2s ease-in-out;
 	-ms-transition: all 0.2s ease-in-out;
 	transition: all 0.2s ease-in-out;
 }

 input[type="text"],input[type="email"], textarea {
 	border: none;
 	background: transparent;
 	border-bottom: 1px solid #999;
 	box-shadow: none;
 	margin-bottom: 20px;
 	border-radius: 0;
 	font-weight:400;
 }

 textarea:focus, input[type="text"]:focus,input[type="email"]:focus {
 	border-bottom: 1px solid #f0f0f0;
 	box-shadow: none;
 	-webkit-box-shadow: none;
 	-moz-box-shadow: none;
 	border-radius: 0;
 }

 input[type="submit"] {
 	border: 0;
 	background: #009685;
 	padding: 10px 20px;
 	text-transform:uppercase;
 	font-weight:300;
 	color:#fff;
 	-webkit-transition: all 0.2s ease-in-out;
 	-moz-transition: all 0.2s ease-in-out;
 	-o-transition: all 0.2s ease-in-out;
 	-ms-transition: all 0.2s ease-in-out;
 	transition: all 0.2s ease-in-out;
 }


input[type="submit"]:hover {
 	background:#007366 none repeat scroll 0 0;
 }

 /*.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form textarea {
 	border: none;
 	background: transparent;
 	border-bottom: 1px solid #999;
 	box-shadow: none;
 	margin-bottom: 20px;
 	border-radius: 0;
 	font-weight:400;
 }

 .wpcf7-form .textarea:focus, .wpcf7-form input[type="text"]:focus, .wpcf7-form input[type="email"]:focus {
 	border-bottom: 1px solid #f0f0f0;
 	box-shadow: none;
 	-webkit-box-shadow: none;
 	-moz-box-shadow: none;
 	border-radius: 0;
 }

 .wpcf7-form input[type="submit"] {
 	border: 0;
 	background: #009685;
 	padding: 10px 20px;
 	text-transform:uppercase;
 	font-weight:300;
 	color:#fff;
 	-webkit-transition: all 0.2s ease-in-out;
 	-moz-transition: all 0.2s ease-in-out;
 	-o-transition: all 0.2s ease-in-out;
 	-ms-transition: all 0.2s ease-in-out;
 	transition: all 0.2s ease-in-out;
 }
 span.wpcf7-not-valid-tip {
 	background: none !important;
 	border: 0 !important;
 	color: red;
 	font-size: 10pt;
 	padding: 2px;
 	position: absolute;
 	left: 20%;
 	top: -78% !important;
 	width: 280px;
 	z-index: 100;
 }*/

 #contact-info, #find-us {
 	position:relative;
 }

 #contact-info a {
 	text-decoration:underline;
 }

 #more-contact-information {
 	margin-top: 30px;
 	margin-bottom: 30px;
 }

 #more-contact-information h3 {
 	margin:auto;
 	font-size: 24.5px;
 }

 #more-contact-information ul li, #more-contact-information ol li {
 	font-size:13px;
 	line-height: 20px;
 }

 .color {
 	color:#009685;
 }

 #kontaktformular label.error,
 #hinweis p {
 	background-color:#009685;
 	color:#fff;
 	padding:10px;
 }

 #kontaktformular textarea {
 	resize: none;
 }


/* ----------------------------------------------------------------------------------------------------------
 08 FULL WIDTH----------------------------------------------------------------------------------------
 ---------------------------------------------------------------------------------------------------------- */

 .full-width .row {
 	margin-bottom:20px;
 }

 .full-width h1, 
 .full-width h3,
 .full-width h4,
 .full-width h5,
 .full-width h6 {
 	font-weight:300;
 }

 .alignleft {
 	float:left;
 	margin: 0 20px 20px 0;
 }

 .alignright {
 	float:right;
 	margin: 0 0 20px 20px;
 }

 .aligncenter {
 	display:block;
 	margin:20px auto;
 }

 .alignnone {
 	display:block;
 	margin-bottom:20px;
 }

 .posts {
 	margin:0px 0;
 	padding:0;
 	list-style: none;
 }

 .posts-image {
 	position:relative;
 }

 .posts li {
 	margin-bottom:30px;
 }

 .posts li h3 {
 	line-height: 24px;
 }

 .posts li img {
 	margin: 10px 0;
 }

 .pull-center {
 	display:block!important;
 	text-align:center;
 }

 .full-width-container .row > div{
 	margin-top:30px;
 }

 .full-width-container h1 {
 	margin: 30px 0 10px 0;
 }


/* ----------------------------------------------------------------------------------------------------------
 11 Shortcodes ----------------------------------------------------------------------------------------
 ---------------------------------------------------------------------------------------------------------- */

 .section-page > .container .row iframe {
 	border:0;
 	max-width:100%;
 }

 /* video shortcode */
 .video-wrapper {
 	margin:0 auto;
 	max-width:770px;
 	margin-bottom: 30px;
 }

 .video-container {
 	position: relative;
 	padding-bottom: 56.25%; /* 16:9 */
 	padding-top: 25px;
 	height: 0;
 }

 .video-container .vid {
 	position: absolute;
 	top: 0;
 	left: 0;
 	max-width: 100%;
 	max-height: 100%;
 }



	*::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
}

 /*map shortcode */
 .map-wrapper {
 	position: relative;
 	padding-bottom: 65.25%;
 	padding-top: 30px;
 	height: 0;
 	overflow: hidden;
 }

 .map-wrapper iframe {
 	position: absolute;
 	top: 0;
 	left: 0;
 	width: 100%;
 	height: 100%;
 }

 /* button shortcode */
 .sc-btn {
 	display:block; 
 	padding:8px 12px;
 	-webkit-transition: all 0.2s ease-in-out;
 	-moz-transition: all 0.2s ease-in-out;
 	-o-transition: all 0.2s ease-in-out;
 	-ms-transition: all 0.2s ease-in-out;
 	transition: all 0.2s ease-in-out;
 	color:#fff!important;
 	text-align:center;
 	width:100%;
 	margin:20px 0;
 	clear: both;
 }

 .sc-btn.pull-center {
 	margin-left:auto;
 	margin-right: auto;
 }

 .sc-btn:hover {
 	text-decoration:none;
 }

 /* tabs shortcode */
 .tab-pane {
 	overflow: hidden;
 	background-color: #009685;
 }

 .aws-icon {
 	vertical-align: middle;
 	border-width: 2px;
 	border-radius: 100%!important;
 }

 .fa-border {
 	p
 	adding: 0.40em 0.45em 0.35em!important;
 }
 .icon-container {
 	display: inline-block;
 	vertical-align: middle;
 }

 .title-icon {
 	display: inline-block;
 	vertical-align: middle;
 	margin-left: 10px;
 	font-size: 18px;
 }

/* ----------------------------------------------------------------------------------------------------------
 NEU: BILD/ FILM ABSCHNITTE ----------------------------------------------------------------------------------------
 ---------------------------------------------------------------------------------------------------------- */


 .parallax {
 	min-height:300px;
 	background-attachment:fixed;
 }

 .mfp-content img { 
 	max-width:100% !important;
 	height:auto !important;
 }

.img-border {
 	border:3px solid #009685;
 }

 /*--------------------------------------------------------*/
 /*VORLAGE ZWEISPALTIG*/
 /*--------------------------------------------------------*/
 .two-columns {
     display: flex;
    -webkit-display:flex;
    justify-content: space-between;
    flex-wrap:wrap;
    width: 100%;
 }

 .column-half {
 	width: calc(50% - 20px);
 }

 .column-half img {
 	height: auto !important;
 	max-width: 100%;
 }

 /*--------------------------------------------------------*/
 /*VORLAGE DREISPALTIG*/
 /*--------------------------------------------------------*/
 .three-columns {
    display: flex;
    -webkit-display:flex;
    justify-content: space-between;
    flex-wrap:wrap;
    width: 100%;
}
.column-third {
    width: calc(33.3% - 20px);
}

.column-third img {
    height: auto;
    width: 100%;
}

.column-2third {
    width: calc(66.6% - 20px);
}

.fullWidthGroupProducts {
	width: 100%;
}

.fullWidthGroupProducts:first-child {
	margin-bottom: 3em;	
}

.fullWidthGroupProducts .productinner {
	display: inline-block;
	float: left;
}

.fullWidthGroupProducts .productinner a {
	color: white;
}

/* ----------------------------------------------------------------------------------------------------------
Media Queries ----------------------------------------------------------------------------------------
 ---------------------------------------------------------------------------------------------------------- */

 @media (max-width: 1199px) {
 	nav#nav-home ul li {
 		margin-right:10px;
 	}

 	.circle-menu {
 		height:135px;
 		width:135px;
 		font-size:14px!important;
 	}

 	.circle-menu img {
 		width:60px !important; 
 		height:auto;
 		margin-bottom:-5px;
 	}

 	#mini-slogan {
 		padding-top:4px;
 		font-size:16px;
 	}

 	.single-post .meta-info ul {
 		padding:76px 0;
 	}

 	.meta-info li.tags {
 		width:140px;
 		white-space:nowrap;
 		overflow:hidden;
 		text-overflow:ellipsis;
 		-o-text-overflow:ellipsis;
 	} 

 	.imagetext {
 		width:440px !important;
 	}

 	.home-header {
 		max-width:720px;
 	}

 	.hidden-info {
 		max-width:138px;
 	}

 	.hidden-info h3 {
 		font-size:18px;
 	}
 }

 @media (max-width: 979px) and (min-width: 767px) {
 	.feature-title {
 		font-size: 29px!important;
 	}

 	.navbar .nav {
 		float: left;
 	}

 	.big-title {
 		font-size:40px!important;
 		line-height: 40px!important;
 	}

 }


 @media (max-width: 979px) {

	
 	.navbar,.navbar, .cart-contents {
 		line-height: 60px!important;
 	}

 	.navbar .collapse #nav-menu, #mini-logo a, .cart-contents, .cart-contents span {
 		height: 60px!important;
 	}

 	 .fixed .navbar .nav > li > a {color: #000000; margin:0;}
  	.fixed .navbar .nav > li > a:hover { padding:0; margin:0; background:#fff; color:#009685;}

 	.navbar {
 		box-shadow:0px 0px 10px #333;
 		border-bottom:1px solid #999;
 	}

 	#mini-logo img {
 		height: auto!important;
 		max-height: 50px;
 	}

 	.home-section {
 		height: auto!important;
 	}

 	h1, h2 {
 		font-size:40px;
 	}

 	.navbar .collapse {
 		display: inline;
 		float: left;
 		margin-right: 0;
 		width: 100%;
 	}

 	.column-third {
 		width: calc(50% - 20px);
 		margin-bottom:2em;
 	}

 	.vorlage-leistung .column-third:nth-child(3) {
 		width:100%;
 	}

        .vorlage-leistung-teaser .column-2third {
 		width: 100%;
        }

        .vorlage-leistung-teaser .column-2third .column-half {
 		width: calc(50% - 20px);
        }

        .vorlage-leistung-fakt .column-third {
            margin-top:3em;
        }

 	#btn-menu-container {
 		display: table;
 		float: right;
 	}

 	#btn-menu-container .btn-navbar {
 		float: none;
 		display: table-cell;
 		vertical-align: middle;
 		margin-top: -4px;
 		box-shadow: none;
 		background: transparent;
 		border:none;
 	}

 	#menu-top .navbar-inverse .nav-collapse .dropdown-menu a:hover{background-color:#fff !important;}

 	.navbar-fixed-top, .navbar-fixed-bottom {
 		position: fixed;
 		-webkit-transform: translateZ(0);
 	}

 	.navbar-fixed-top .navbar-inner, .navbar-fixed-bottom .navbar-inner {
 		padding: 0;
 	}

 	.nav-collapse ul {
 		margin-top:10px;
 		padding-top:20px;
 		border-top:1px solid #999;
 		width:100%;
 	}

 	.nav-collapse ul li {
 		padding:10px 0;
 	}

 	.nav-collapse ul > li > a {
 		padding: 0px 10px 0px!important;
 		line-height: 14px!important;
 		height: auto!important;
 	}

 	.nav-collapse ul > li:hover > .sub-menu {
 		top:auto!important;
 		left:auto!important;
 	}

 	.sub-menu {
 		visibility: visible;
 		z-index: 9;
 		opacity: 1;
 		background: transparent;
 		margin-left: 10px;
 		border: 0;
 		top:auto!important;
 		left: auto;
 		position: relative;
 		padding: 0;
 		margin-top:0!important;
 		padding-top: 10px!important;
 	}

 	.sub-menu li {
 		text-align: left;
 		line-height: 10px;
 		padding-bottom: 10px!important;
 	}

 	.nav-collapse ul > li > .sub-menu > li > a {
 		display: block;
 		text-transform: uppercase;
 	}

 	.sub-menu li a:hover {
 		text-decoration: none;
 	}

	span.arrow {
		bottom:20px;
	}

	#blog {
		padding-top:10px;
	}

	#mini-logo {
		padding-left:10px;
	}

	#mini-slogan {
		left:20px;
		padding-top:8px;
		font-size:14px!important;
		line-height: 14px!important;
	}

	.mobile-language {
		left: auto !important;
		width:auto !important;
	}

	.circle-menu:hover .label-link {
		-moz-transform: scale(1) rotate(0deg) translate(0px);
		-webkit-transform: scale(1) rotate(0deg) translate(0px);
		-o-transform: scale(1) rotate(0deg) translate(0px);
		transform: scale(1) rotate(0deg) translate(0px);
		color:#000;
	}
	
	.single-post .meta-info ul {
		padding:46px 0;
		height:93px;
	}

	.meta-info li .label-meta {
		display:none;
	}

	.meta-info li.tags {
		width:100px;
		white-space:nowrap;
		overflow:hidden;
		text-overflow:ellipsis;
		-o-text-overflow:ellipsis;
	}

	.carousel-inner img {
		width:80%;
	}

	.section-page {
		padding: 80px 20px 80px 20px!important;
		background-position:50% 0!important;
	}

	.home-section {
		padding: 80px 0px 80px 0px!important;
	}

	.imagetext {
		width:100% !important;
	}

	.item {
		width:168px;
	}

        #map_canvas,
        #side_bar {
            width:100%;
        }

        #side_bar {
            margin-top:2em;
        }

}

@media (max-width: 767px) {
	body {
		padding:0;
	}
	
	#map_canvas {
 	height:485px;
 	}

	#logo {
		margin:auto;
		float: none!important;
	}

	#bubbles {
		display:none;
	}

	.scroll-hint {
		display:none;
	}

	.home-header {
		max-width:100% !important;
		padding: 0;
	}

	.home-container {
		width:auto;
		position:relative;
		padding:0 20px;
		top:auto;
		left:auto;
		margin:0;
	}

	.column-third,
	.column-2third  {
		width: 100%;
	}

	.column-half {
		width: 100%;
        margin-bottom:20px;
	}


        .vorlage-leistung-fakt .column-half:nth-of-type(even) {
            margin-top:2em;
        }

	.two-columns {
		margin-top:0;
	}

	#impressum {
		padding-left:20px;
		padding-right:20px;
	}

	.big-title {
		font-size: 30px!important;
		line-height: 40px!important;
		margin-bottom: 10px;
	}

	.three-big,.two-big,.one-big   {
		height: auto;
	}

	.parallax {
		min-height:200px;
	}

	h1, h2 {
		font-size: 30px!important;
		line-height: 30px!important;
		margin-bottom: 20px;
	}

	.navbar .nav {
		float: left;
	}

	#slogan {
		margin: 30px 0;
	}

	#contact-info {
		clear: both;
		margin-top: 80px;
	}

	#logo img {
		display:block;
		margin:auto;
	}

	#home .container {
		padding:0;
	}

	#mini-slogan {
		width:100%;
		left:0;
		line-height:20px;
		display:none;
	}

	.mobile-language {
		display:block !important;
	}

	.navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
		margin: 0;
	}

	.home-header {
		margin-bottom:30px;
	}

	nav#nav-home ul li {
		width:170px;
		margin:20px auto 0!important;
		display: block;
	}

	.circle-menu {
		width:150px;
		height:150px;
	}

	.label-link {
		font-size:24px;
	}

	span.arrow {
		bottom:30px;
	}

	.span4 {
		margin-bottom:40px;
	}

	.magnifier {
		opacity: 1;
		position: relative;
		height: auto;
		display: block;
		-webkit-transition: none;
		-moz-transition: none;
		-o-transition: all 0 ease;
		transition: none;
		text-align:center;
		z-index:9999;
		margin: auto;
	}

	.magnifier img {
		display:block;
		margin: auto;
	}

	.magnifier:hover {
		opacity: 1;
	}

	.magnifier:after {
		content: '';
		display: none;
		width: 100%;
		height: 100%;
		position: absolute;
		opacity: 0;
		left: 0;
		top: 0;
		background: transparent;
		-webkit-transition: none;
		-moz-transition: none;
		-o-transition: all 0 ease;
		transition: none;
	}

	#portfolio a.link-portfolio {
		-webkit-transition: none;
		-moz-transition: none;
		-o-transition: all 0 ease;
		transition: none;
	}

	.magnifier:hover:after {
		opacity: 0;
	}

	ul.portfolio-wrapper .item{
		margin-left:auto;
		margin-right: auto;
		float:left;
	}

	ul.portfolio-wrapper .item img {
		width:auto;
	}

	.home-section {
		padding-left: 0!important;
		padding-right:0!important;
	}

	.carousel-inner img {
		width:100%;
	}

	.nav-control {
		width: 30px;
		height: 30px;
		font-size: 14px;
		-webkit-border-radius: 18px;
		-moz-border-radius: 18px;
		-ms-border-radius: 18px;
		border-radius: 18px;
		line-height: 30px;
		margin-right:5px;
		margin-bottom:10px;
		position:relative;
	}

	.button-controls li {
		margin-left:0px;
		margin-right:3px;
	}

	.button-controls {
		position:relative;
		top:auto;
	}

	.button-controls .description-btn span, .button-controls .visit-link span {
		padding-top:9px;
	}

	.button-controls .close-item span {
		padding-top:8px;
	}

	.close-item,.description-btn,.visit-link {
		top:auto;
		right:auto;
	}

	a.arrow {
		bottom:-15px;
		margin:0;
		top:auto;
		position:absolute;
	}

	a.arrow span {
		margin-top: 9px;
	}

	#image-data img {
		width:100%;
	}

	.single-post .meta-info ul {
		padding:10px 24px;
		height:auto;
	}

	.single-post .meta-info ul li {
		display:inline-block;
		margin-right:15px;
	}

	.single-post .meta-info ul li:last-child {
		margin-right: 0;
	}

	.excerpt-meta {
		position:relative;
	}

	.excerpt-meta .excerpt {
		margin-top:20px;
	}

	.excerpt p {
		border:0;
		padding:0;
	}

	.blog-article .meta-info {
		position:absolute;
		top:-18px;
		padding:0;
	}

	.blog-article .meta-info li {
		display:inline-block;
		margin-right:20px;
		overflow:hidden;
	}

	.blog-article .meta-info li.tags {
		display:none;
	}

	.social-post {
		float:none;
		margin-top:10px;
	}

	.single-tags {
		float:none;
		margin-bottom:20px;
	}

	#sidebar {
		margin-top:40px;
	}

	.product-container > div {
		width: 100%;
	}

	.product-container > .left-product {
		margin-top: 60px;
	}

	.product-name span {
		display: block;
	}

	.cart-buttons .button {
		margin-bottom: 10px!important;
	}

	#side_bar {
		margin-top:20px;
	}

	#side_bar h3 {
		margin-top:30px;
	}

}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
	.circle-menu:hover .label-link {
		-moz-transform: scale(1) rotate(0deg) translate(0px);
		-webkit-transform: scale(1) rotate(0deg) translate(0px);
		-o-transform: scale(1) rotate(0deg) translate(0px);
		transform: scale(1) rotate(0deg) translate(0px);
		color:#000;
	}

	.nav-collapse {
		display:block!important;
	}
}

@media only screen and (max-device-width: 1024px) {

	.info-wrapper {
		background:transparent!important;
	}

	.section-page {
		background-attachment:scroll!important;
	}

}

@media screen and (max-width: 580px) {

        .vorlage-leistung-teaser .column-2third .column-half {
 		width: 100%;
                margin-bottom:20px;
        }

        tr, td {
            font-size:0.9em;
            padding:5px;
        }

}


@media (max-width: 440px) {
	h3 {
		font-size:24px;
	}
}

#new-measurement-center-in-spain,
#links,
#willkommen,
#links h3,
#pruefstand-personal,
#pruefstand-equipment,
#fahrzeugerprobung,
#komponentenerprobung,
#unternehmen {
	background-color: #009685;
	color:#fff;
}

#akkreditierung {
    padding:0 !important;
}

#news h2 {
	color: #009685;
}
#news .border {
	border-top: 1px solid #999;
}
#tab_news .nav-tabs > .active > a{
	background: #000000 !important;
	color: #ffffff;
	border: 0;
	border-radius: 0;
}
#tab_news .nav-tabs > .active > a:hover{
	background: #000000 !important;
	color: #ffffff;
	border: 0;
	border-radius: 0;
}
#news .tab-pane {
	background-color: #f9f9f9;
}
