@import url("normalize.css");
@import url("grid.min.css");
@font-face {
	font-family: "Open Sans Condensed";
	font-style: normal;
	font-weight: 300;
	src: local('Open Sans Condensed Regular'), local('OpenSansCondensed-Regular'), url("OpenSansCondensed_Regular.woff2") format('woff2');
}
@font-face {
	font-family: "Open Sans Condensed";
	font-style: normal;
	font-weight: 700;
	src: local('Open Sans Condensed Bold'), local('OpenSansCondensed-Bold'), url("OpenSansCondensed_Bold.woff2") format('woff2');
}
@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 400;
	src: local('Open Sans Regular'), local('OpenSans-Regular'), url("OpenSans_Regular.woff2") format('woff2');
}
@font-face {
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 700;
	src: local('Open Sans Bold'), local('OpenSans-Bold'), url("OpenSans_Bold.woff2") format('woff2');
}

/* =============================================
   Resets
============================================= */

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

img,
iframe {
   vertical-align : middle;
   border         : none;
   width				: 100%;
}

button  { outline         : none;  }
figure  { margin          : 0;     }
h1 		{ font-family: 'Open Sans Condensed', sans-serif; margin: 0;}
h2 		{ font-family: 'Open Sans Condensed', sans-serif; font-size: 34px; text-transform: uppercase; margin: 0 0 15px 0; color: #222222; letter-spacing: 1px; }
h3 		{ font-family: 'Open Sans Condensed', sans-serif; font-size: 18px; text-transform: uppercase; margin: 0 0 15px 0; color: #222222; letter-spacing: 1px;}
h4 		{ font-family: 'Open Sans', sans-serif; font-size: 14px; text-transform: normal; margin: 0 0 10px 0; color: #666666; font-weight: 400;}
a       { text-decoration : none;  }
nav ul  { list-style      : none;  }

header ul:after {
  content: "";
  display: table;
  clear: both;
}

/* =============================================
   Global Styles
============================================= */

body {
	font-size   : 14px;
	line-height : 1.6;
	background  : #FFF;
	color: 		#666666;
	font-family: 'Open Sans', sans-serif;
	padding-top: 295px;
}

body.margintop {
	padding-top: 478px;
}

.container{
	max-width			:	1310px;
	width					:	100%;
	margin				:	0 auto;
	padding-right	:	15px;
	padding-left	:	15px;
}
	
/* ====== Border ====== */

.border-top:before,
.border-bottom:after{
  content     : "";
  display     : block;
  height      : 1px;
  background  :  #000;
}

.row-g.border-top:before,
.row-g.border-bottom:after {
  width 	: calc(100% - 30px);
  margin	: 0 15px;
}

p {
	margin-bottom: 15px;
}

main strong {
	color: #009999;
} 

/* =============================================
   Main Styles
============================================= */

header .head {
	position: fixed;
	width: 100%;
	z-index: 5000;
	top: 0px;
	height: 295px;
	background: rgba(255,255,255,0.9);
	transition: .2s;
}

header.small .head {
	height: 183px;
}

header .head .logo {
	transition: .2s;
	height: 212px;
	text-align: center;
}

header.small .head .logo {
	height: 100px;
	text-align: center;
}

header .head .logo img {
	height: 100% !important;
	width: auto !important;
	transition: .2s;
}

header.small .head .logo img {
	height: 100% !important;
	width: auto !important;
}

header .top {
	font-family: 'Open Sans Condensed', sans-serif;
	background: 	#ff9933;
	padding: 		7px 0;
	font-size: 		12px;
	font-weight: 	bold;
		height: 33px;
}

header .top a {
	color: 		#666666;

}

header .top .topnav {
	background: none;
	padding: 0px;
	float: left;
}
header .top .topnav ul li {
	display: inline-block;
	margin-right: 15px;
	text-transform: uppercase;
}

header .top nav {
	float: left;
}

header .nav {
	border-top: 	1px solid #ff9933;
	border-bottom: 	1px solid #ff9933;
	text-align: 	center;
	height: 		50px;
	font-family: 'Open Sans Condensed', sans-serif;
	background: rgba(255,255,255,0.9);
}

header .nav li {
	display: 	inline-block;
	position: relative;
}

header .nav li a:hover {
	
}

header .nav li a {
	display: 	block;
	padding: 	0 13px;
	height:     49px;
	line-height: 50px;
	font-size: 	15px;
	color: 		#666666;
	font-weight: 700;
	transition: 		.2s ;
	position: relative;
}

header .nav li a:after {
	content: 	"";
	width: 100%;
	height: 2px;
	background: #009999;
	position: absolute;
	bottom: 0px;
	left: 0px;
	opacity: 0;
	transition: .3s;
}

header .nav li ul {
	position: absolute;
	left: 0px;
	background: #fff;
	border: 1px solid #ff9933;
	border-top: none;
	font-size: 	15px;
	width: 200%;
	transition: .2s;
	opacity: 0;
	visibility: hidden;	
}

header .nav li ul:before {
	content: 	"";
	width: 100%;
	height: 2px;
	background: #009999;
	position: absolute;
	top: -2px;
	left: 0;
	transition: .3s;

}


header .nav li ul li {
	display: block;
	text-align: left;
	width: auto!important;
	position: relative;
}

header .nav li ul li a {
	display: block;
	padding: 8px 13px;
	height: auto;
    line-height: inherit;
    color: #666666;
    font-weight: 400;
    transition: .2s;
    position: relative;
}

header .nav li ul li a:hover {
	background: #ff9933;
}

header .nav li ul li a:after {
	content: 	"";
	width: 0;
	height: 0;
	background: #009999;
	position: absolute;
	bottom: 0px;
	left: 0px;
	opacity: 0;
	transition: .3s;
}

header .nav li ul.sub li ul {
	position: absolute;
	top: 0px;
	left: 100% !important;
	width: 100% !important;
	opacity: 0;
}

header .nav li:hover ul.sub, header .nav li ul.sub li:hover ul {
	opacity: 1;
	z-index: 50000;
	visibility: visible;
}

.border {
	height: 1px;
	width: 100%;
	background: #fff;
	border-top: 30px solid #ff9933;
	border-bottom: 30px solid #ff9933;
	box-sizing: content-box;
	position: relative;
	clear: both;
}

.border:before {
	content: "";
    position: absolute;
    left: 50%;
    width: 30px;
    height: 30px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    top: -45px;
	background: #f8f8f8;
}

.border:after {
	content: "";
    position: absolute;
    left: 50%;
    width: 30px;
    height: 30px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    top: 16px;
	background: #ff9933;
}

.border .arrow {
	font-size: 52px;
	color: #fff;
	height: 100px;
	width: 50px;
	margin: 0 auto;
	position: relative;
	z-index: 500000;
	text-align: center;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
}

main .home {
	background: #f8f8f8;
	padding-bottom: 10px;
	float: left;
}

main .home article a {
	color: #009999;
	transition: .2s;
}

main .home article a:hover {
	color: #666666;
}

main .contentpage {
	padding: 0 0 20px 0;
}

main .contentpage a {
	color: #009999;
	transition: .2s;
}

main .contentpage a:hover {
	color: #000;
		
}

main .home .slides, main .contentpage .slides {
	transform: translateX(200px);
    transition: ease-in .6s;
    transition-delay: .3s;
	opacity: 0;
	margin-bottom: 20px;
	-webkit-box-shadow: 0px 5px 9px -4px rgba(191,191,191,1);
	-moz-box-shadow: 0px 5px 9px -4px rgba(191,191,191,1);
	box-shadow: 0px 5px 9px -4px rgba(191,191,191,1);
}

main .home .slides.animate, main .contentpage .slides.animate {
	opacity: 1;
	transform: translateX(0px);
}

header .nav ul li a:hover:after, .nav ul li a.active:after {
	opacity: 1;
}

main .pekasolfg {
	background: #f8f8f8;
	padding: 50px 0;
	-webkit-box-shadow: 0px 5px 9px -4px rgba(191,191,191,1);
	-moz-box-shadow: 0px 5px 9px -4px rgba(191,191,191,1);
	box-shadow: 0px 5px 9px -4px rgba(191,191,191,1);
}

main .pekasolfg .download {
	text-align: center;
	opacity: 0;
	transform: translateX(-500px);
	transition: .8s ease-out;
}

main .pekasolfg .download.animate {
	opacity: 1;
	transform: translateX(0px);
}

main .pekasolfg .download a {
	color: #ff9933;
	font-weight: 700;
}

main .pekasolfg .dropdown h4 {
	width: 100%;
	display: block;
	padding: 9px 3px 9px 35px; 
	border: 1px solid #e1e1e1;
	margin: 0px;
	position: relative;
	cursor: pointer;
	transition: .2s;
}

main .pekasolfg .dropdown h4:hover {
	background: #fff;
}


main .pekasolfg .dropdown h4:before {
	content: "\f0fe";
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
	position: absolute;
	left: 10px;
	transition: .2s;
	color: #c7c7c7 !important;
}

main .pekasolfg .dropdown h4.active:before {
	content: "\f146";
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
	position: absolute;
	left: 10px;
	color: #c7c7c7 !important;
}
main .pekasolfg .dropdown div {
	display: none;
	background: #fff;
	padding: 12px 30px 11px 30px;
	border: 1px solid #e1e1e1;
}
main .pekasolfgsystem {
	position: relative;
	padding: 50px 0;
	z-index: 200;
	-webkit-box-shadow: 0px 5px 9px -4px rgba(191,191,191,1);
	-moz-box-shadow: 0px 5px 9px -4px rgba(191,191,191,1);
	box-shadow: 0px 5px 9px -4px rgba(191,191,191,1);
}
main .pekasolfgsystem .tabs ul {
	list-style: none;
	float: left;
}

main .pekasolfgsystem .tabs ul li {
	display: block;
	float: left;
	border: 1px solid #e1e1e1;
	cursor: pointer;
	position: relative;
	color: #666666;
	border-bottom: none;
	height: 50px;
	width: 200px;
	line-height: 30px;
	text-align: center;
	
}

main .pekasolfgsystem .tabs ul li:before {
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
	position: absolute;
	left: 40px;
	color: #666666;
}

main .pekasolfgsystem .tabs ul li.active, main .pekasolfgsystem .tabs ul li:hover {
	border-bottom: 1px solid #009999;
	color: #444444;
}

main .pekasolfgsystem .pexfg, main .pekasolfgsystem .pekasolfg2, main .pekasolfgsystem .korosinfg {
	border: 1px solid #e1e1e1;
	border-radius: 2px;
	padding: 10px 19px;
	display: none;
}

main .pekasolfgsystem .pexfg {
	display: block;
}

main .prokuehlsole {
	background: #f8f8f8;
	border-color: #e1e1e1;
	padding: 50px 0;
	position: relative;
	z-index: 100;
	-webkit-box-shadow: 0px 5px 9px -4px rgba(148,148,148,1);
	-moz-box-shadow: 0px 5px 9px -4px rgba(148,148,148,1);
	box-shadow: 0px 5px 9px -4px rgba(148,148,148,1);
}

main .prokuehlsole .contentright {
	text-align: right;
}


main .prokuehlsole .icons .row1, main .prokuehlsole .icons .row2, main .prokuehlsole .icons .row3, main .prokuehlsole .icons .row4 {
	padding-left: 100px;
	position: relative;
}

main .prokuehlsole .icons .row1:before {
	content: "\f07a";
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
	position: absolute;
	left: 10px;
	color: #fff;
	font-size: 30px;
	height: 60px;
	width: 60px;
	background: #d0d0d0;
	border-radius: 50%;
	text-align: center;
	line-height: 60px;
	opacity: 0;
	transition: .8s;
}

main .prokuehlsole .icons .row2:before {
	content: "\f017";
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
	position: absolute;
	left: 10px;
	color: #fff;
	font-size: 30px;
	height: 60px;
	width: 60px;
	background: #d0d0d0;
	border-radius: 50%;
	text-align: center;
	line-height: 60px;
	opacity: 0;
	transition: .8s;
}

main .prokuehlsole .icons .row3:before {
	content: "\f0e7";
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
	position: absolute;
	left: 10px;
	color: #fff;
	font-size: 30px;
	height: 60px;
	width: 60px;
	background: #d0d0d0;
	border-radius: 50%;
	text-align: center;
	line-height: 60px;
	opacity: 0;
	transition: .8s;
}

main .prokuehlsole .icons .row4:before {
	content: "\f0ca";
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
	position: absolute;
	left: 10px;
	color: #fff;
	font-size: 33px;
	height: 60px;
	width: 60px;
	background: #d0d0d0;
	border-radius: 50%;
	text-align: center;
	line-height: 60px;
	opacity: 0;
	transition: .8s;
}

main .prokuehlsole .icons .row1.animate:before, main .prokuehlsole .icons .row2.animate:before, main .prokuehlsole .icons .row3.animate:before, main .prokuehlsole .icons .row4.animate:before {
	opacity: 1;
}

main .contentpage ul, main .contentpage ol {
	margin: 0 0 10px 20px;
}

main .dropdown ol, main .dropdown ul {
    margin: 0px 0 20px 30px;
    padding: 0px;
}

main .dropdown a {
	color: #009999;
	transition: .2s;
}

main .dropdown a:hover {
	color: #000;
}

main .prokuehlsole article a {
	color: #009999;
	transition: .2s;
}
main .prokuehlsole article a:hover {
	color: #000;
}

/* =============================================
   Contact Form
============================================= */

main .contact {
	background: #ff9933;
	padding: 70px 0;
}

main .contact .call {
	background: #fff;
	text-align: center;
	color: #222222;
	padding: 40px 0 10px ;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	position: relative;
	margin-bottom: 30px;
}

main .contact .call strong {
	color: #000;
}

main .contact .call:before {
	content: "\f095";
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
	position: absolute;
	 left: 50%;
    transform: translateX(-50%);
	top: -30px;
	font-size: 32px;
	color: #fff;
	background: #009999;
	border-radius: 50%;
	line-height: 60px;
	width: 60px;
	height: 60px;
}

main .contact .contactform .fieldrow {
	margin-bottom: 15px;
	padding: 0 5px;
}
ain .contact .contactform .fieldrow.datenschutz, main .contactform .fieldrow.datenschutz, main .contact .contactform .fieldrow.datenschutz-en, main .contactform .fieldrow.datenschutz-en {
	clear: both;
	margin-bottom: 10px;
	float: left;
}
main .contact .contactform .fieldrow.datenschutz label, main .contactform .fieldrow.datenschutz label, main .contact .contactform .fieldrow.datenschutz-en label, main .contactform .fieldrow.datenschutz-en label {
	display: inline-block;
	width: 95%;
	float: left;
	font-size: 11px;
}

main .contact .contactform .fieldrow.datenschutz input, main .contactform .fieldrow.datenschutz input, main .contact .contactform .fieldrow.datenschutz-en input, main .contactform .fieldrow.datenschutz-en input {
	display: inline-block;
	float: left;
	width: auto;
	margin-right: 5px;
	margin-top: 2px;
}

main .contact .contactform .fieldrow label, main .contactform .fieldrow label {
	display: none;
}

main .contact .contactform input, main .contact .contactform textarea {
	width: 100%;
	border: 1px solid #e1e1e1;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #fff;
	padding: 8px;
	color: #8d8d8d;
	font-size: 15px;
}

main .contact .contactform textarea {
	resize: none;
	height: 120px;
}

main .contact .contactform button {
	background-color: #009999;
    color: #ffffff;
	border: 1px solid #007777;
	margin: 0;
    padding: 16px 20px;
    border-radius: 2px;
    font-weight: normal;
    min-width: 142px;
    outline: none;
	font-size: 13px;
	transition: all 0.3s ease-out;
}

main .contact .contactform button:hover {
	background: #ff9933;
}

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

footer .top {
	background: 	#333333;
	padding: 	40px 0;
	color: 		#aaaaaa;
	font-size: 		14px;
}

footer .top .logos span img {
	background: #222222;
	margin-right: 4px;
	margin-top: 20px;
}

footer .bottom {
	padding: 		15px 0 0;
	background: #000;
	color: #fff;
	font-size: 		13px;
	font-weight: 	normal;
}

footer .legal {
	float: left;
}

footer nav {
	float: right;
	text-align: right;
}

footer nav a {
	color: #ff9933;
	transition: .2s;
}

footer nav a:hover {
	color: #fff;
}

footer .bottom nav ul li {
	display: inline-block;
	margin-left: 20px;
}

footer .top nav ul li {
	margin: 0 0 10px 0;
}

footer h4 {
	font-weight: 700;
	color: #919191;
}

footer .scrollup {
	position: fixed;
    border-radius: 2px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-decoration: none;
    text-align: center;
    opacity: 0;
    right: 50px;
    bottom: 50px;
    z-index: 1030;
	background-color: #111111;
	transition: all 0.6s ease-out;
	color: #fff;
}

footer .scrollup.animate {
	opacity: 0.7;
}

footer .downloads img {
	max-width: 100% !important;
	height: auto !important;
}

.contact a{
	color:#000;
	text-decoration:underline;
}
/* =============================================
   Media Queries
============================================= */

@media (max-width: 1024px) {
  
  /* ====== Global Styles ======*/
  
  .container{
    padding-right	:	10px;
    padding-left	:	10px;
  }
  
  /* ====== Header ====== */
  
  header .container,
  header .row,
  header .row-g {
    padding-right: 0;
    padding-left: 0;
  }
  
  header nav {
    background: lightgrey;
    display: none;
  }
  
  header nav li {
    float: none;
    border-bottom: 1px solid #000;
  }
  
  header nav li:last-child {
    border: none;
  }
  
  header nav a {
    display: block;
    padding: 10px 20px;
  }
	
	body {
		padding-top: 220px;
	}
	header .top {
		    min-height: 60px;
    line-height: 25px;
		padding: 7px 20px;
	}
	
	header .head {
    position: fixed;
    width: 100%;
    z-index: 5000;
    top: 0px;
    height: 220px;
    background: rgba(255,255,255,0.9);
    transition: .2s;
	border-bottom: 	1px solid #ff9933;
	}
	
	
	header.small .head {
    height: 150px;
	}
	
	header .top ul {
		width: 100%;
		text-align: left ;
	}
	
	header .head .logo {
    transition: .2s;
    height: 100%;
	width: auto;
    text-align: center;
	}
	
	header.small .head .logo {
    height: 90px;
    text-align: center;
	}
	
	header .head .logo img {
    height: 70% !important;
    width: auto !important;
    transition: .2s;
	}
	
	header.small .head .logo img {
    height: 100% !important;
    width: auto !important;
	}
	
	header .head .nav, header .head .mobile {
		display: none;
		position: absolute;
		border-top: 1px solid #ff9933;
		border-bottom: 1px solid #ff9933;
		text-align: center;
		font-family: 'Open Sans Condensed', sans-serif;
		background: #f8f8f8;
		top: 0px;
		width: 100%;
		height: 100vh;
		padding-top: 50px;
		overflow: scroll;
	}
	
	header .head .nav li ul, header .head .nav li ul li ul {
		opacity: 1;
		position: relative;
		border: none;
		background: #f8f8f8;
		visibility: visible;
		width: 100%;
	}
	
	header .nav li ul.sub li ul {
		left: 0 !important;
		text-indent: 40px;
	}
	
	header .nav li ul:before {
		content: none;
	}
	
	header .nav li ul.sub li ul li {
		border: none;
	}
	header .nav li {
    display: block;
    position: relative;
	border-bottom: 1px solid #e1e1e1;
		text-align: left;
}
	
	header .nav li ul li {
    display: block;
    text-align: left;
    width: auto!important;
    position: relative;
	border: none;
}
	
	
	
  
}

@media (max-width: 900px) {

}

@media (max-width: 767px) {
	
	body {
		padding-top: 220px;
	}
	header .top {
		    min-height: 60px;
    padding: 7px 10px;
	}
	
	header .head {
    position: fixed;
    width: 100%;
    z-index: 5000;
    top: 0px;
    height: 220px;
    background: rgba(255,255,255,0.9);
    transition: .2s;
	border-bottom: 	1px solid #ff9933;
	}
	
	
	header.small .head {
    height: 130px;
	}
	
	header .top ul {
		width: 100%;
		text-align: left ;
	}
	
	header .head .logo {
    transition: .2s;
    height: auto;
	width: 100%;
    text-align: center;
	}
	
	header.small .head .logo {
    height: 70px;
    text-align: center;
	}
	
	header .head .logo img {
    height: auto !important;
    width: 100% !important;
    transition: .2s;
	}
	
	header.small .head .logo img {
    height: 100% !important;
    width: auto !important;
	}
	
	header .head .nav {
		display: none;
		position: absolute;
		border-top: 1px solid #ff9933;
		border-bottom: 1px solid #ff9933;
		text-align: center;
		font-family: 'Open Sans Condensed', sans-serif;
		background: #f8f8f8;
		top: 0px;
		width: 100%;
		height: 100vh;
		padding-top: 50px;
		overflow: scroll;
	}
	
	header .head .nav li ul, header .head .nav li ul li ul {
		opacity: 1;
		position: relative;
		border: none;
		background: #f8f8f8;
		visibility: visible;
		width: 100%;
	}
	
	header .nav li ul.sub li ul {
		left: 0 !important;
		text-indent: 40px;
	}
	
	header .nav li ul:before {
		content: none;
	}
	
	header .nav li ul.sub li ul li {
		border: none;
	}
	header .nav li {
    display: block;
    position: relative;
	border-bottom: 1px solid #e1e1e1;
		text-align: left;
}
	
	header .nav li ul li {
    display: block;
    text-align: left;
    width: auto!important;
    position: relative;
		border: none;
}
	main .pekasolfgsystem .tabs ul li {
    display: block;
    float: left;
    border: 1px solid #e1e1e1;
    cursor: pointer;
    position: relative;
    color: #666666;
    border-bottom: none;
    height: 65px;
    width: 33.3333333333333%;
    line-height: 25px;
    text-align: center;
}
	
	main .pekasolfgsystem .tabs ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 5px;
    color: #666666;
}
	main .prokuehlsole .contentright {
    text-align: left;
}

}
