/* Fonts from Google Fonts - more at https://fonts.google.com */

* {
margin: 0;
padding: 0;
}

body {
	background-color: #fff;
	font-family: 'Roboto', sans-serif;
	width:100%;
	overflow-y:scroll;
	color:#666;	
  	height: 100vh;
}
section {
	margin-bottom:20px;
}
h1 {
	font-size:1.5em; 
	font-weight:600;
	margin:30px 0px 30px 0px;	
	text-align: center;	
}
.home {
	font-size:2.250em; 
	margin:10px 0px 10px 0px; 
	font-weight:500;	
	text-align: left;	
	color:#393939;
	line-height: 50px
}
h2 {
	font-size:1.350em; 
	font-weight:600; 
	margin:30px 0px 30px 0px;			
}
.newstitle { /*style for news title or h2*/
	font-size:1.350em; 
	font-weight:600; 
	margin:30px 0px 30px 0px;	
  	line-height: 1.2;
	}
.center {
	text-align:center;
}
.largefont {
	font-size:3.250em;
	font-weight:500;
	color:#999;	
}	
.mediumfont {
	font-size:2.250em;
	font-weight:500; 
}
.smallfont {
	font-size:0.7em;
}
.spanlargefont {
	font-size:0.450em;
	font-weight:600; 
	color:#666666;
	margin:30px 0px 60px 0px;		
	display: block;
}
h3 {
	font-size:1.250em; 
	font-weight:600; 
	margin:0px 0px 30px 0px; 	
}
.newstitlesmall { /*substitute h3*/
	font-size:1.250em; 
	}
h4 {
	font-size:1.1250em;
	font-weight:500;
	margin:10px 0px 10px 0px;
	color:#393939;
}
.home3 {   /*old h5 just in homepage*/
	font-size:2em;
	font-weight:500;
	text-align:center;
	margin-top:30px;
	margin-bottom:30px;
}
p, td {
	font-size:1.12em;
	font-weight:400;
	margin-bottom:10px;
	line-height: 1.9;
}
	
.bold {
	font-weight:600;
}

							/*--------Header--------*/
header {
	background-color:#fff;
	margin-bottom:10px;
}
.logo {
	position:relative;
	float:right;
	margin:10px 0px 10px 0px;	
}
.menuicon { /*mobile navigation*/
	margin-top:10px;
	display:none;
	position:relative;
	float:left;
}
.closehidden {/*mobile navigation*/
	display:none;
}
.lang { /*languages area*/
	position: relative;
	float:left;
	margin:10px 0px 10px 0px;	
	width:380px;	
}
#suche {
	float:left;
	}
.mod-languages a:hover{
	text-decoration:underline
}
.mod-languages .lang-active a {/*selected language*/
	color:#8c8c8c;
}
.mod-languages a { /*languages links*/ 
	color:#666;
	font-size:0.7500em;
	float:left;
	margin-right:10px;
	margin-bottom:0px;
}	
div.mod-languages li {
	margin:0 5px 0 5px;
}

							/*-------- Navigation first level--------*/
nav {
	margin:auto;
	z-index:300;	
}
ul#navi {
	list-style:none;
	line-height:20px;
	float:left;
	overflow: hidden;
	margin-left:-5px;	
}
ul#navi li{
	display:block;
	float:left;
	padding:5px;
	height:20px;
}
ul#navi li a {/*navigation links*/
	color:#666;
	font-size:1.125em;
	font-weight:500;
	display:inline-block;
	width:140px;	
	border-right: 1px solid #e6e6e6;
	margin-bottom:0px;
	
}
ul#navi li a:hover {
	text-decoration:underline;
	color:#ff0099;
}
ul#navi li.active a { /*current menu option level 1*/
	color:#ff0099;	
}
ul#navi li.active ul li a { /*links in second level*/
	color:#666;
}
						/*-------- Navigation second level--------*/
ul#navi li:hover ul{
	display:block;	
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1s;
}
ul#navi li ul {
	list-style:none;
	line-height:30px;
	background-color:#efefefe0;
	position:absolute;
	z-index:99;
	/*top:100px;*/
	margin-left:-10px;
	height:auto;
	min-width:130px;	
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	display:none;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}
ul#navi li ul li{
	padding:0px;
	display:block;
	float:none;
	height:auto;
    transition: background 0.1s ease;
    display:flex;
}

ul#navi li ul li:hover{
	background: #c1c1c133;
    border-radius: 4px;
}

ul#navi li ul li:hover a {
	color: #e5007d;
  	text-decoration: underline;
}

ul#navi li ul li a {
	display:block;
	float:none;
	width:fit-content;
	border-right:none;	
    padding: 5px 11px 5px 11px;
}
ul#navi li ul li.active a { /*current menu option level 2*/
	font-weight:bold;	
}

ul#navi li ul li.active a:before {
	content:url("/images/img/8-point-pink.png");	
	padding-right:10px;
}
					/*-------- Navigation third level--------*/

ul#navi ul ul.none { /*third level in navigation hidden*/
	display:none;
}						
						/*-------- Mobile navigation--------*/
#hidemenuicon {
    will-change: transform, z-index;
    transition: transform 0.3s ease;
	position: absolute;
    top: 7px;
    display: block;
    transform: scale(1);
    z-index: 100;
}

#showiconclose {
    will-change: transform, z-index;
  	transition: transform 0.3s ease;
  	position: absolute;
    top: 7px;
    display: block;
    transform: scale(0);
    z-index: 10;
}

#steuerung {
    will-change: opacity, z-index;
    transition: opacity 0.3s ease-in-out;
	display:block;
    opacity: 0;
	position: absolute;
	width:100%;
	top:65px;
	left:0px;
	z-index:-1;
	background-color:#efefefe0;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    backdrop-filter: blur(4px);
    border-radius: 8px
	}
#steuerung ul#navi { /*first level*/
	list-style: none;
	margin:0;
	padding:0;
	width:100%;		
}
#steuerung #navi li {
	border-bottom: solid 1px #c5c5c5;
	float:none;
	height:45px;
	margin:0px;
    margin-left: 8px;
    margin-right: 8px;
}
#steuerung #navi a { 
	float:none;
	font-size:1em;
	padding-left:20px;
	line-height:45px;
	border-right:none;	
  	width: 97%;
}
#steuerung #navi li ul {
	display:none;
}		
							/*-------- Banner--------*/
.banner {
	background-color:#efefef;
	padding: 10px 0px 10px 0px;
	height:auto;
    display: grid;
}
.bannerimg { /*picture container*/
	width:60%;
	position:relative;
	float:left;	
}
.bannerimg img {
	width:100%;
  	border-radius: 2px;
	
}	
.alone { /*no banner information*/
	float:none;
	margin:auto;
	
	
}
.content80 .bannerimg { /*picture aligned with content*/
	margin-left:18.5%;
}
.bannerinformation { /*banner information container*/
	position:relative;
	left:1.5%;
/*	background-color:rgba(239, 239, 239, 0.8);  */
	padding-left:10px;	
    display: grid;
}	
.banner-links {
	margin-bottom:20px;
}

.banner-links h2 { /*löschen*/
	margin:10px 0px 10px 0px; 
	font-weight:500; 
}
.banner-links .title { 
	margin:10px 0px 10px 0px; 
	font-weight:500;
	font-size:1.350em;
	color:#393939;
	line-height: 1.2;	
}
.banner-links p, .banner-links a {
	margin-bottom:0px;
}
.banner-links .moremargin{
	margin-top:5px;
	margin-bottom:10px;
}
.banner-links td {
	padding-right:10px;
	vertical-align:top;
}
.banner-links td img {
	margin-top:8px;
}
.bannerinformationmob { /*banner information disaplayed at the end of the site*/
	display:none;
	margin-top:10px;
	border-top-style:solid;
	border-width:1px 0 0 0;
	border-image:linear-gradient(to right,rgba(225, 225, 225, 0), rgba(229, 229, 229, 1), rgba(225, 225, 225, 0)) 100% 1;
}
							/**clearfix*/
section::after, header::after, .banner::after, article::after, #header::after{
	content: "";
	clear: both;
	display: table;
}
.clearfix {
	clear: both;
}
							/*--------Footer--------*/
footer {
	background-color:#efefef;
}
#breadcrumb { /*Breadcrumbs in footer*/
	background-color:#ff0099;
}	
ul.breadcrumb {
	list-style: none;
	line-height:40px;	
	min-height:40px;
}
ul.breadcrumb li {
	display:inline;
}
ul.breadcrumb li+li+li:before {
	content:url("/images/img/8-point.png");	
	padding:8px;	
}
ul.breadcrumb li a  {
	color:#fff;
	font-weight:500;
	display:inline;	
}
ul.breadcrumb li a:hover {
	text-decoration:underline;
	color:#fff;
}
ul.breadcrumb li.active {
	font-weight:bold;
	color:#fff;
}
.divider {
	display:none;
}
.footerinfo { /*contact information and links*/
	width:200px;
	float:left;
	font-size:0.75em;
	margin-top:10px;
	padding-bottom:10px;
	margin-right:60px;
	color:#666;
}
.footerinfo .country, .bannerinformation .country {
	border-width:0;
	padding-left:0px;
    margin: 0px;
}
.tel-mail {
	display:inline;
	text-decoration:underline; 
} 
ul#nav_footer, ul.rightsnav { 
	list-style: none;
}
ul#nav_footer { /*links to categories*/
	margin-top:10px;
	line-height:24px;
}
ul#nav_footer li{
	border-bottom:1px solid #dcdcdc;
}
ul#nav_footer li a {
	color:#666;
	display:inline;
    font-weight: 500;
}
.rights { /*links to rights and contact*/
	margin: 0 auto;
	max-width: 500px;	
}
ul.rightsnav li{
	width:150px;
	float:left;	
	padding-top:10px;
	text-align:center;	
 }
ul.rightsnav li a {
	font-size:0.75em;
	color:#666;	
	padding-left:5px;
	border-right:1px solid #e6e6e6;
}
.langmob { /*Search and languages in mobile*/
	display:none;	
}
.langlist li {
	display:inline;
}
									/*--------controls---------*/
input { 
	border: 1px solid #e6e6e6;
	float:left;
	height:20px;
    border-radius: 4px;
    background-size: 9% !important;
}
input:active, ..inputbox:active, .visform input:focus {
	border:1px solid #ff0099;
}
button {
	border: none;
	background-color:transparent;
	float:left;
}
button:active {
	background-color: #f2f2f2;
}	
.inputbox {
	border: 1px solid #707070;	
}
.inputbox option {
	font-family: 'Roboto', sans-serif;	
}
									/*--------general classes---------*/
.content60 {
	width:60%;
	margin:auto;
}
.content80 {
	width:70%;
	margin:auto;
}
.content90 {
	width:90%;
	margin:auto;
}
.block {
	display: block;
}
.inline {
display:inline;
}	

.nomargin {
	margin:0;
}
img { /*pictures are all block*/
	display:block;
}
.line {
	border-top:solid 1px;
	border-image:linear-gradient(to right,rgba(225, 225, 225, 0), rgba(229, 229, 229, 1), rgba(225, 225, 225, 0)) 100% 1;
	}	
.topline {
	padding-top:30px;
	border-top-style:solid;
	border-width:1px 0 0 0;
	border-image:linear-gradient(to right,rgba(225, 225, 225, 0), rgba(229, 229, 229, 1), rgba(225, 225, 225, 0)) 100% 1;
}
.moremarginbottom {
	margin-bottom:60px; 
}
.moremarginbottom30 {
	margin-bottom:30px; 
}
.morepaddingtop {
	padding:30px 0 0 0; 
}
.paddingtop15 {
		padding:15px 0 0 0; 
}
.paddingtobo15 {
		padding:15px 0 5px 0; 
}
.font500 {/*seminar*/
		font-weight:500;
}

/*--------classes for changing colors---------*/

.black {
	color:#393939;
}
.pink {
	color:#ff0099;
}
.grey {
	color:#666;
}
.white{ /*seminar*/
	color:#fff;
}
.socialmedia {
  margin-top: 5px;
}
.grey-small {
	color:#666;
	font-size:0.9em;
	font-weight:400;
}
.bg-grey {
	background-color:#efefef;
	padding-top:10px; 
	padding-bottom:10px; 	
  	border-radius: 4px;
}
.bg-darkgrey{ /*seminar*/
	background-color:rgba(102,102,102,0.7);
}
.bg-pink{ 
	background-color:rgba(255,0,153,0.7);
}
.bg-pink-full {
	background-color:rgba(255,0,153);
}	
.whitebg {
	background-color:#fff;
}
.lightgrey {
	background-color:rgba(249, 249, 249, 0.6);
}

/*--------links--------*/
a {
	text-decoration:none;
	color:#ff0099;
	display: block;
	margin-bottom:10px;
}
.goto { /*seminar: banner*/
	border:solid;
	border-width:1px;
	border-color: #fff;
	border-radius: 10px;
	padding-left:20px;
	padding-right:20px;
	padding-bottom:10px;
	padding-top:10px;
	margin-left:10px;
	background-color:rgba(255, 255, 255, 0.6);
}

.gotocontent { /*seminar: content*/
	padding-bottom:10px;
	padding-top:10px;
	margin-left:auto;
	margin-right:auto;
	margin-top:40px;
	margin-bottom:30px;
	background-color: #efefef;
	border-left-style:solid;
	border-width:0 0 0 4px;
	border-image:
      linear-gradient(to bottom, rgba(225, 225, 225, 0), rgba(153, 153, 153, 1), rgba(225, 225, 225, 0)) 1 100%;
	width:250px;
	text-align:center;
	font-size:1.25em; 
	font-weight:600;
}
.goto:hover { /*seminar*/
	text-decoration:underline;
	background-color: rgba(255, 255, 255, 1);
}

a:hover {
	text-decoration:underline;
}
.inline { /*display links inline*/
	display:inline;
}

							/*-------- Startseite--------*/
							/*bannerhighlight*/
.slide {
	position:relative;
}
.slideaward {
	position:relative;
}
.slidetext { /*text container*/
	position:absolute;	
	bottom:20%;
	left:15%;
	width:600px;
	background-color: rgba(255, 255, 255, 0.85); /*Banner-Karriere- 0.5*/
	padding:15px;
  	border-radius: 4px;
  	backdrop-filter: blur(1px)
}	
.slidetext h2 {
	margin:10px 0 10px 0; 
	font-weight:500;
}
.slideimg { /*img container*/
	width:60%;
	margin-left:auto;
	margin-right:auto;
	max-width:1142px;
}

.slideimg a:hover {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.slideimg img {
	width:100%;
  	border-radius: 2px
} 
.slideimgaward  { 
	
	position:absolute;	
	bottom:20%;
	right:16%;
	background-color: rgba(255, 255, 255, 0.85); 
    margin-bottom: clamp(205px, 10.6%, 400px);
  	border-radius: 4px;
  	backdrop-filter: blur(1px)
}

.slidevideoaward {
  	position:absolute;	
	bottom:20%;
    right: clamp(215px, 16%, 800px);
	background-color: rgba(255, 255, 255, 0.85); 
	margin-bottom:4.6%;
  	border-radius: 4px;
  	backdrop-filter: blur(1px)
}

.slideimgaward a {
	margin-bottom:0;
}
							/*end of bannerhighlight*/
							/*banner responsive*/
.bannerresponsive {
	display: none;
	position:relative;
}
.tile {
	position:relative;
	float:left;
	width:30%;	
	padding:5px;
}
.tile img {
	width:100%;
}
							/*end of banner responsive*/				
							/*category*/
.category:hover, .highlightcontent img:hover { 
/*	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    box-shadow: 0px 6px 8px 1px rgb(99 99 99 / 40%);
}

.category:hover .transparentbox { 
}

.category:hover img{ 
}

.category {
	position:relative;
	width:470px;	
	float: left;
	margin-right:2%;
	margin-bottom:4%;
    transition: box-shadow 0.1s ease-in-out;
}
/*Speziell für Tag-Liste*/
.list-striped{
	position:relative;
	width:60%;	
	float: none;
	margin:auto;
}
li.cat-list-row0.clearfix img, li.cat-list-row1.clearfix img {
    max-width: 30%;
}
li.cat-list-row0.clearfix article, li.cat-list-row1.clearfix article {
    width: 100%;
}
li.cat-list-row0.clearfix::marker, li.cat-list-row1.clearfix::marker {
    content: '';
}
.tag-body>.custom {
    display: none;
}
li.cat-list-row0.clearfix .newstitle, li.cat-list-row1.clearfix .newstitle {
    display: none;
}
/* Ende Tag-Liste*/
.categoryright {
	margin-right:0px;
	margin-left:2%;	
}
.category img, .categoryhome img {
	width:100%;
}
.transparentbox {
	position: absolute;
	bottom:0px;
	width:100%;
	background-color: #ffffffd6;
  	backdrop-filter: blur(6px);
}
.transparentbox h2 {
	text-align:center;
	color:#ff0099; 
	font-size:1.125em;
	margin:10px 0px 10px 0px; 
}
.transparentbox h2:hover {
	text-decoration:underline;
}
.categoryhome { /*categories in home larger*/
	width:48%;		
}
.blockcategoryhome { /*category area centered*/
	margin-left:auto;
	margin-right:auto;
	width:100%;
}
	
						/*highlight*/
.highlight {
	background-color:#f9f9f9;	
	height:670px; 
	width:31%;
	border-right-style:solid;
	border-width:0 1px 0 0;
	border-image:
      linear-gradient(to bottom, rgba(225, 225, 225, 0), rgba(229, 229, 229, 1), rgba(225, 225, 225, 0)) 1 100%;
	float:left;	
	position:relative;	
  	margin: 1%;
  	border: none;
  	border-radius: 4px;
}
.highlight img {
	width:auto;
    max-height: 237px;
	margin-top:18px; 
}
.highlight a {
    display: grid;
    justify-content: center;
  	overflow: hidden;
}
.highlightcontent {
	width:90%;
	margin:auto;
}
.highlightlink {
	position:absolute;
	bottom:0px;
	width:100%;
	height:40px;
	border-top-style:solid;
	border-width:1px 0 0 0;
	border-image:linear-gradient(to right,rgba(225, 225, 225, 0), rgba(229, 229, 229, 1), rgba(225, 225, 225, 0)) 100% 1;
}	
.highlightlink a {
	font-size:1.250em;
	font-weight:500;
	text-align:center;
	line-height:40px;
}
.highlightlink a:hover {
	color:#ff0099;
}
.absolute { /*links readmore*/
	position:absolute;
	bottom:50px;
}
.greybox {
	width:100%;
	height:40px;
	background-color:#666;
	position:absolute;
	bottom:0px;
	opacity: 0.7;
}
.greybox a{
	color:#fff;
	font-size:1.250em;
	font-weight:500;
	text-align:center;
	padding-top: 6px;;
}	
						/*end of highlight*/
						/*product*/
.product {
	width:33%;
	height: 80%;
	border-right-style:solid;
	border-width:0 1px 0 0;
	border-image:
    linear-gradient(to bottom, rgba(225, 225, 225, 0), rgba(229, 229, 229, 1), rgba(225, 225, 225, 0)) 1 100%;
	float:left;
	background-color:#fff;
	margin-bottom:2%;
 	border-radius: 4px;
 	transition: box-shadow 0.1s ease-in-out;
}	

.product:last-child {
  	border-image:none;
  	border: none;
}

.product img {
		height:160px;
		margin:auto;
}
.product:hover {
/*  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    box-shadow: 0px 6px 8px 1px rgb(99 99 99 / 40%);
    z-index: 200;
    position: relative;
}
.product a {
		text-align:center;
		padding-top:10px;
}
						/*end of product*/
						/*equipment*/
.product ul {
	list-style:none;
	background-color:#efefef;
	color:#666;
	text-align:center;	
	line-height:30px;
	width:95%;
	margin:auto;	
}
.product li {
	border-bottom: solid 1px #fff;
	padding-left:7px;
	padding-right:7px;
}

.psmall { /*4 products next to each other possible */
	width:282px;
}
.wideproducts .psmall {
	width:367px;
}
.doubleheight { /*table information*/
	height:60px;
}
.trippleheight {
	height:90px;
} 
.squareheight {
	max-height:40px;
	height:40px;
	line-height:40px;
}
						/*end of equipment*/	
						/*articles*/
article {
	width:60%;
	margin:auto;	
}
.articletext, .articlepictures, .articlebullet {
	margin-bottom:30px;
}
.articletext img, .articlebullet img, .articletable img, .headquarters {
	float:left;
	margin-right:5px;
	max-width:35px;
}

.articletext h3, .articlebullet h3, .articletable h3, .list h3 {
	padding-top:5px;
}

.articletable h2, .articletable a {
	margin:0; 
} 

.articletable a, .product a{
		font-weight: 600; 
}

.articletext ol {
	font-size:1.12em;
	margin-left:20px;
}
.articlepictures {
	background-color: #f9f9f9;
	padding-left:10px;
  	padding-right:10px;
	padding-bottom:10px;
}	

.height {
	overflow: hidden;
}
.articlepictures ol {
	position:absolute;
	top:40px;
	left:520px;
  font-size:1.12em;  
}
.column { /*two pictures next to each other in articlepictures */
	width:50%;
	float:left;
}
.articleslideshow {
	width:60%;
	padding-bottom:10px;
}
video {
	display:block;	
	width:60%;
}
.articlepictures img, .articleslideshow, video {
	margin:auto;
}
.relative { /*position of ol next to picture*/
	position:relative;
}
.relative img {
	margin-left:0px;
}
.articlebullet ul {
	margin-top:20px;
	line-height:30px;
  	list-style:disc;
	padding-left:1em;
}

 .articlebullet ul li {
	font-size:1.12em;
 }	
 .articletable table {
	width:100%;
	border-collapse: collapse;
	margin-top:20px;
	margin-bottom:20px;	 
  }
.articletable td {
	line-height:30px;
	border-bottom: solid 1px #e6e6e6;
	width:50%;
	vertical-align:top;
 }
 
.articletable td.tdbottom { /*for the m2 and m3 align bottom*/
	line-height:30px;
	border-bottom: solid 1px #e6e6e6;
	width:50%;
	vertical-align:bottom;
} 
.articletable .threeproducts {
	table-layout: auto;
}
.articletable .threeproducts td {
	line-height:30px;
	border-bottom: solid 1px #e6e6e6;	
	width:auto;
 }
.articletable .threeproducts thead td {
	line-height:30px;
	border-bottom: solid 1px #999999;	
 }
.articletable .fixedwidth td { /*5 columns*/
	width:20%;
}	
.articletable .fixedwidth-6c td { /*6 columns*/
	width:16%;
}	
.articletable .threeproducts .align-bottom { /*options header*/
	vertical-align:bottom;
}
.articletable td img { /*tick align with text in tables*/
 	padding-top:7px;
}
article .category, article .categoryright {
	width:48%;
}
.country {
	float:left;
	width:369px;
	height:480px;
	margin-bottom:10px;
	padding-left:10px;
	border-right-style:solid;
	border-width:0 1px 0 0;
	border-image:
      linear-gradient(to bottom, rgba(225, 225, 225, 0), rgba(229, 229, 229, 1), rgba(225, 225, 225, 0)) 1 100%;	
}
.country-small {
	height:auto;
}
.country-large {
	margin-bottom:10px;
}

.country h2{ /*löschen*/
	font-weight:500; 
	margin: 10px 0 10px 0;
}
.country .countrytitle {
	font-weight:500; 
	margin: 10px 0 10px 0;
	color:#393939;
	font-size: 1.350em;
	line-height: 1.2;
}
.country h3 { /*löschen*/
	padding-top:5px; 
}
.country .countryname { 
	padding-top:5px; 
	font-size: 1.250em;
	font-weight:600; 
	margin: 0 0 30px 0;	
	line-height: 1.2;
}

.country table, .address {
/*	margin-bottom:10px;  */
}	
.address {
/*	min-height:85px;  */
}
.footerinfo .address { /*Pink address in footer*/
	min-height:auto;
}
.country td {
	min-width:25px;
}	
.nocontact {
	margin-top:45px;
}
.country p, .country a{
	margin-bottom:0px;
    font-weight: 500;
}
							/*Jobs*/   
.job { 													
	padding: 20px 30px 10px 30px;
	background-color: #efefef;
	margin-bottom:10px;
}
					
ul.stellen {
	margin-bottom: 20px;
	list-style:none;
}					
ul.stellen li {
	padding: 20px 30px 10px 30px;
	background-color: #efefef;
	margin-bottom:10px;
	border-left-style:solid;
	border-width:0 0 0 4px;
	border-image:
      linear-gradient(to bottom, rgba(225, 225, 225, 0), rgba(153, 153, 153, 1), rgba(225, 225, 225, 0)) 1 100%;
}	
						/*lists*/
.list {
	float:left;
	width:100%;
	margin-top:10px;
	margin-bottom:10px;
	padding-bottom:10px;
	padding-top:10px; 
	border-width: 0 0 1px 0;
	border-bottom-style:solid;
	border-image:linear-gradient(to right,rgba(225, 225, 225, 0), rgba(229, 229, 229, 1), rgba(225, 225, 225, 0)) 100% 1;	
}	

.adz img {
  	filter: saturate(0.0) brightness(1.1);
    transition: filter 0.3s ease-in-out;
}

.adz img:hover {
  	filter: saturate(1.0) brightness(1.0);
}

.border_none {
    border-bottom-style: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.nobottomline { /*element no line top or bottom*/
	border-width:0;
}
.list img {
	float:left;
	max-width:130px;
	padding-right:5px;
    top: 16px;
    position: relative;
}
.list .text {
	margin-left:150px;
}
.list .text h2, .list .text .newstitle { 
	margin-top:0px;
}
				/*picture left: text right*/
.picturetext img {
	float:left;	
	margin-bottom:30px;
}
.picturetext .text {
	margin-left:220px;
}

                  /*blog - Aktuelles*/    
.blog article { 
	margin-top:10px;
}
.blog article .list img {
	width:230px;
	max-width:none;
}	
.blog article .list .text {
	margin-left:250px;
}
.blog article .list article { /*in list no article style*/
	width:100%;
	margin-top:0px;
}
.blog article .list .banner { /*in list no banner*/
	display:none;
}
.imgblog {
	max-width: 600px;
}
ol  {				
	line-height:1.8;
	margin-bottom:20px;
}
ol li {
	counter-increment: list;
	list-style-type: none;
	position: relative;
}
ol li:before {
	color: #ff0099;
	content: counter(list) ".";
	left: -32px;
	position: absolute;
	text-align: right;
	width: 26px;
}

						/*timeline*/
.timeline {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

.timeline::after { /* The actual timeline (the vertical ruler) */
	content: '';
	position: absolute;
	width: 6px;
	background-color: #efefef;
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -3px;
}
.container { /* Container around content */
	padding: 10px 40px;
	position: relative;
	width: 50%;
	box-sizing: border-box;
}
.container::after {/* The circles on the timeline */
	content: '';
	position: absolute;
	width: 25px;
	height: 25px;
	right: -17px;
	background-color: #fff;
	border: 4px solid #8c8c8c;
	top: 15px;
	border-radius: 50%;
	z-index: 1;
}
.left {/* Place the container to the left */
	left: 0;
}
.lineright {
	border-width: 0 4px 0 0;
	border-right-style:solid;
	border-image:
      linear-gradient(to bottom, rgba(225, 225, 225, 0), rgba(153, 153, 153, 1), rgba(225, 225, 225, 0)) 1 100%;
}
.right {/* Place the container to the right */
  left: 50%;
}
.lineleft {
	border-width: 0 0 0 4px;
	border-left-style:solid;
	border-image:
      linear-gradient(to bottom, rgba(225, 225, 225, 0), rgba(153, 153, 153, 1), rgba(225, 225, 225, 0)) 1 100%;
}
.right::after {/* Fix the circle for containers on the right side */
  left: -16px;
}
.content {/* The actual content */
  padding: 20px 30px;
  background-color: #efefef;
  position: relative;
}		

			/*contact information at the end of the product page*/
.contact {
	width:200px;
	margin:auto;
}
.contact img {
	width:35px;
	margin: auto;
}								
						/*end of timeline*/	
						/*search + pagination + dropdown number of results*/
.searchtext {					
	overflow-x: hidden;
	text-indent: -16ch;
	}
.counter {
	float: left;
	}
.pagination ul {
	margin-bottom:60px;
	margin-left:60px;
	float:left;
	}
.pagination ul li {
	list-style:none;
	float:left;
	width:28px;
	background-color:#dcdcdc;
	text-align:center;	
	margin-right:10px;
	margin-bottom:10px;
	}
.pagination ul .pagination-start, .pagination ul .pagination-prev, .pagination ul .pagination-next, .pagination ul .pagination-end {
	background-color:#fff;	
	text-align:left;
	width:65px;
	}
.pagination ul .pagination-next {
		margin-left:12px;
	}
.pagination ul li a {
	display:inline;
	}	
.pagination ul li span { /*actual page bold*/
	font-weight:600;
	}
.pagination ul .pagination-start span, .pagination ul .pagination-prev span, .pagination ul .pagination-next span, .pagination ul .pagination-end span {
	font-weight:500;	
	}
					
					/*comments*/
.comment {
	background-image:
	 linear-gradient(rgba(237, 237, 237, 1) 40%, rgba(225, 225, 225, 0));
	font-style: italic;
	padding: 20px;
	border-width: 0 0 0 4px;
	border-left-style:solid;
	border-image:
      linear-gradient(to bottom, rgba(255, 0, 153, 1), rgba(225, 225, 225, 0)) 1 100%
	}	
	
						/*-------Unsere Werte--------*/
.padding-werte {
padding-left:15px;
padding-right:15px;
	}
.row {
	width:100%;
	display:flex;
	position:relative;
}
.werte-text-box {
min-height:380px; /*text as high as picture*/
color:#fff;
}

.bg-werte {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	visibility:visible;
}
.werte1 {
	background-image: url("/images/img/bg-company.jpg");
}
.werte2 {
	background-image: url("/images/img/bg-soldering.jpg");
}
.werte3 {
	background-image: url("/images/img/bg-drying.jpg");
}
.werte4 {
	background-image: url("/images/img/bg-plasma.jpg");
}
.werte5 {
	background-image: url("/images/img/bg-mitarbeiter.jpg");
}
							/*-------End Unsere Werte--------*/

							/*-----Visforms--*/
.category-desc { /*text before box*/
	margin:auto;
	/*width:80%;*/
	padding-bottom:20px;
}
.fieldset-1 { /*box with form*/
	border: 1px solid #b2b2b2;
	width:80%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	margin: auto;
}

.visCSSlabel { /*labels*/
	float:none;
	width:80%;
	margin:auto;
	margin-top:15px;
}
.vis_mandatory { /*label mandatory*/
	display:block;	
	width:80%;
	margin:auto;
	margin-top:15px;
}
.visCSSinput { /*input box*/
	float:none;
	display:block;
	width:80%;
	margin:auto;
}

.visBtnCon input { /*button submit*/
	float:none;
	height:auto;
	color:#f09;
	padding-bottom:10px;
	padding-top:10px;
	margin-left:auto;
	margin-right:auto;
	margin-top:40px;
	margin-bottom:30px;
	background-color: #efefef;
	border-left-style:solid;
	border-width:0 0 0 4px;
	border-image:
      linear-gradient(to bottom, rgba(225, 225, 225, 0), rgba(153, 153, 153, 1), rgba(225, 225, 225, 0)) 1 100%;
	width:250px;
	text-align:center;
	font-size:1.25em; 
	font-weight:600;
}
	.visBtnCon input:hover { 
	text-decoration:underline;
	}
						/*--------Responsive--------*/
						
	@media screen and (min-width: 1930px) {		 /*new*/			
	header, #inhalt, footer {
    	max-width:3840px; 
		margin:auto;
	}
/*	.bannerinformation {
		position:relative;
		float:left;
		left:0px;
      	max-width: 390px;
        max-height: 80px;
	}	*/
}
@media screen and (max-width: 1440px) {/*kindle fire*/
.content80, article, .content60 { 
	width:90%;
	margin:auto;
	}
	.category,.product, .wideproducts .product, .country {
	 width: 48%;	
	}	
	.categoryhome {
	width:40%;
	}
	.highlight {
	width:48%;
	max-width:570px; 
	margin-bottom:20px;
	}
	.footerinfo .country {
	width:100%
	}
	.content80 .bannerimg {
	margin-left:0;
	width:100%;
    }		
    .slideimg {
	width:80%;
	}
	.slideaward { /*Banner-Karriere*/
		bottom:2%;
	}
	.slideimgaward { /*Banner-Karriere*/
		margin-bottom:1%;
		right:2%
	}
	.karriere { /*Banner-Karriere*/
		bottom:2%;
	}
}
@media screen and (max-width: /*992px*/ 1440px) {/*ipad*/
	nav {
	width:100%;
	}		
	.categoryhome {
	width:48%;
	}
	.bannerimg {
	width:90%;
	float:none;
	margin:auto;
	}
	.bannerinformation  {
	display:none;
	}
	.bannerinformationmob {
	display:block;
	width:100%;
	margin-left:auto;
	margin-right:auto;
	}	
	.bannerinformationmob .bannerinformation {
	display:block;
	width:100%;
	position:relative;
	left:0;
	background-color:inherit;
	padding-left:0px;		
	}
	.bannerinformation {
	margin-left:0px;
	}
	.slideimg {
	width:100%;
	}
	.slidetext {
	left: 2%;
    bottom: calc(4% - 2px);
/*	background-color: rgba(255, 255, 255, 0.7); */
	}
	.karriere .home{ /*Banner-Karriere*/
    margin:0;
	}
	.blockcategoryhome {
		margin:0px;
		width:100%;
	}	
	/*seminar*/
	.banner .content80 .column img {
		width:100%;
		padding-top:2%;
	}
	.banner .content80 .column .mediumfont {
		font-size:1.5em;		
	}
	.banner .content80 .column h2 {
		margin: 10px 0 10px 0;
	}
	.banner .content80 .column .goto {
		display:block;
		margin-left:0px;
		margin-top:10px;
		width:220px;
	}
	/*end of seminar*/	
	.column .list img { /*Icons in Ausbildung*/
		max-width:35px;
	}
	.column .list p{ /*some space with next column*/
		padding-right:2px;
	}	
}
@media screen and (max-width: /*992px 768px*/800px) {
	body {
		-webkit-text-size-adjust:none;
	}
	h3 {
	font-size:1.350em;
	}
	.largefont {
	font-size:2.500em;	
	}
    .banner {
      padding: 10px 0px 8px 0px;
 	 }
	.home {
	font-size:2em;
	}
	.karriere { /*Banner-Karriere*/
    padding:0 0 0 15px;
	}
	.karriere .home {
		line-height:40px;
	}			
	.articletable .threeproducts td, .product li { /*comparation tables and products text smaller*/
	font-size:0.95em;		
	}
	.largepicture {
		width:100%; /*large pictures displayed smaller*/
	}
	.highlight { /*larger height - more distance to read more link */
	height:750px;	
	}	
	ul.topnav li a{
	margin-top:5px;
	}	
	.articleslideshow, video {
	width:90%;
	}
	.column img {
	width:100%;
	}
	.slide {
		margin:0;
	}
	.slidetext {
	left:0px;
	width:100%;
	background-color: rgba(255, 255, 255, 0.85);
	bottom:3px;	
	}
	.comment img { /*Picture in comment smaller*/
		width:70%;
	}
	.slideimgaward  { /*img container*/
		margin-left:auto;
		margin-right:auto;
        margin-bottom: 0%;
		position:relative;	
		right:0;
		/*bottom:-300px;
		right:10%;*/

	}
    .slideaward {
      bottom: -0.90%;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: center;
  	}
  
	.slideimgaward img {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
}
@media screen and (max-width: 667px) { /*iphone 6/7/8/se2020*/
	.country100 {
	 width: 98%;
	 }
	.pagination ul {
	float:none;
	margin-left:0px;
	}
	.counter {
	float:none;
	}
	.largeproduct { /*corrects float when products have different hights*/
	height:536px;
	}
	.articlepictures ol { /*ol list at the bottom of the picture*/
	position:relative;
	top:20px;	
	left:10px;
	}	
	.column::after {
	content: "";
	clear: both;
	display: table;
	}
	
}	

@media screen and (max-width: 800px) {
	header {
	margin-bottom:0px;
	}
	#hauptmenu, .compare { /*no menu and no comparation*/
	display:none;
	}
	.menuicon {
	display:block;
	}
	nav {
	margin-left:0px;
	}
	.lang {
	display:none;
	}
	.longword { /*changes size of largefont class in case of large word*/
	font-size:2.100em;
	text-align:left;
	}	
	.karriere { /*Banner-Karriere*/
	padding:0;
	}
	.karriere p { 
		margin-bottom:0px;
	}
	.banner-tile{
	float:left;
	width:60%;	
	margin-left:20%;
	padding:0px;
	}
	.category, .product,.wideproducts .product, .footerinfo, article .category, .country, .column, .highlight  {
	 width: 100%;
	 float: none;
	}
	.categoryhome {
	width:100%;	
	}
	.categoryright	{
	margin-left:0px;
	}
	.product,.wideproducts .product, .highlight {
	border-right:none;	
	border-bottom-style:solid;
	border-width:0 0 1px 0;
	border-image:linear-gradient(to right,rgba(225, 225, 225, 0), rgba(229, 229, 229, 1), rgba(225, 225, 225, 0)) 100% 1;	
    padding-top: 1px;
	}
	.articlepictures img, .imgblog, .googlemap {
	width:100%;
	}
	.country {
	height:auto;
	border-right:none;	
	border-bottom-style:solid;
	border-width:0 0 1px 0;
	border-image:linear-gradient(to right,rgba(225, 225, 225, 0), rgba(229, 229, 229, 1), rgba(225, 225, 225, 0)) 100% 1;
	}
	.footerinfo .country {
	border-bottom-style:none;
	}
	ul#nav_footer {
		line-height:25px;
	}
	.langmob { /*language in footer*/
	display:block;
	}
	/*div.mod-languages ul*/
	.footerinfo ul.lang-inline {
		width:100%;
		line-height:25px;
		margin-top:10px;
	}
	div.mod-languages ul.lang-inline li  {
		display:block;
		margin:0;
		border-bottom-style:solid;
		border-width:1px;
		border-color:#dcdcdc;
	}
	.mod-languages a { /*languages links*/ 
	display:inline;
	color:#666;
	font-size:1em;
	float:none;	
	}
	.slidetext h2, .slidetext .home{
	 display:none;
	}
	.slidetext {		
		text-align:center;
		padding-left:0px;
      
	}
	.slidetext a {
		margin-bottom:0px;
	}
		.slideimgaward  { /*img container*/
		display: flex;
        margin-left: auto;
        margin-right: auto;
		position:relative;	
		right:0;
	}
  
		.slidevideoaward  { /*preview container*/
        position: relative;
        bottom: 0px;
        right: 0px;
        margin-bottom: 0px;
        margin-right: auto;
        display: flex;
        align-items: center;
	}
  
	.slideimgaward img {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	.bannerresponsive { /*startseite*/
	display:block;
	height:110px;
	}
	.highlight { /*highlight area heigh not anymore fixed, links relative position*/
		height:auto;
	}	
	.highlight a {
	position:relative;
	bottom:0px;
	}
	.highlight .highlightlink {
	position:relative;
	}
	ol {
	margin-left:10px;
	}
	.list .text, .picturetext .text {
	float:left;
	width:100%;
	margin-left:0px;
	}	
	.blog .list { /*news with bg and margin/padding*/
	background-color: #f9f9f9;
	margin-bottom:10px;
	}
	.blog article .list .text {
	float:left;
	margin-left:0px;
	padding-right:10px;
	padding-left:10px;
	}
	.blog .list img {
	padding-top:16px;
	}	
	.list img {  /*img in list smaller and centered*/
	width:50px;
	margin-right:auto;
	margin-left:auto;
	margin-bottom:10px;
	float:none;
	}	
	.references .list img, .kasten .list img { /*reference company logos and trades bigger*/
		width:80px;
	}	
		/*timeline*/ 
	.timeline::after {/* Place the timelime to the left */
	left: 31px;
	}  
	.container {/* Full-width containers */
	width: 100%;
	padding-left: 70px;
	padding-right: 25px;
	}  
	.left::after, .right::after { /* Make sure all circles are at the same spot */
	left: 15px;
	}
	.lineright { /*all lines to left*/
	border-width: 0 0 0 4px;
	border-left-style:solid;
	border-right-style: none;
	}  
	.right {/* Make all right containers behave like the left ones */
	left: 0%;
	}
	.pagination ul .pagination-start, .pagination ul .pagination-prev, .pagination ul .pagination-next, .pagination ul .pagination-end {
	display:none;
	}
	.row { /*Werte = remove picture*/
	flex-direction:column;	
	}
}