/* CSS Document */
*{
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-rendering: optimizeLegibility;
}
@font-face{
	font-family:'bebasneue';
	src: url('fonts/BebasNeueBook.woff') format('woff'), 
		url('fonts/BebasNeueBookd41d.eot?#iefix') format('embedded-opentype'),  
		url('fonts/BebasNeueBook.otf')  format('opentype'),
		url('fonts/BebasNeueBook.ttf')  format('truetype'), 
		url('fonts/BebasNeueBook.svg#BebasNeueBook') format('svg');
	font-weight: 200;
}
@font-face{
	font-family:'bebasneue';
	src: url('fonts/BebasNeueRegular.woff') format('woff'), 
		 url('fonts/BebasNeueRegulard41d.eot?#iefix') format('embedded-opentype'),  
		 url('fonts/BebasNeueRegular.otf')  format('opentype'),
		 url('fonts/BebasNeueRegular.ttf')  format('truetype'), 
		 url('fonts/BebasNeueRegular.svg#BebasNeueRegular') format('svg');
	font-weight: 300;
}
@font-face{
	font-family:'roboto';
	src: url('fonts/Roboto-Light.ttf');
	font-weight: 200;
}
body{
	width: 100%;
	overflow:hidden;
	font-family:'roboto';
	color: #464646;
	background-color: #f0f0f0;
}
h1{
	background: #1e1e1e;
	font-family:'bebasneue';
	font-weight: 200;
	color: #00a56b;
}
h2{
	width: 100%;
	font-family:'bebasneue';
	font-weight: 200;
	color: #464646;
}
#diaShow{
	display: none;
}

/*	HEADER 	*/
#menueBar{
	position: fixed;
	width: 100%;
	height: 75px;
	background: #1e1e1e;
	z-index: 1000;
	top: 0;
}
#mainMenue{
	position: fixed;
	background: rgba(30,30,30,.9);
	width: 100vw;
	height: 100%;
	top: 75px;
	right: -100vw;
	opacity: 0;
	-webkit-transition: opacity 350ms ease-in-out;
	-moz-transition: opacity 350ms ease-in-out;
	transition: opacity 350ms ease-in-out;
}
#mobileMenueButton{
	display: block;
	height: 3em;
	width: 3em;
	float: right;
	margin: .85em .85em 0 0;
	background: url(Images/layout/menuebutton.svg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	cursor: pointer;
}
#centerMenueBar ul{
	margin-top: 2em;
	width: auto;
	float: right;
	list-style: none;
}
#centerMenueBar ul li{
	float: left;
	padding: 20px 50px;
	width: 100%;
	box-sizing: border-box;
	text-align: right;
}
#centerMenueBar a{
	font-family:'bebasneue';
	font-weight: 200;
	font-size: 1.5em;
	text-decoration: none;
	color: #8c8c8c;
	width: 100%;
}
#logo{
	height: 3em;
	width: 130px;
	float: left;
	margin: 0.85em 0 0 0.85em;
}
#logo a{
	text-decoratoin: none;
	display: inline-block;
	font-size: 1em;
}
#logolayer{
	width: 100%;
	height: 2.5em;
	background-image:url(Images/layout/ipk_logo.svg);
	background-size: 100% auto;
	background-repeat: no-repeat;
}
#location{
	font-family:'bebasneue';
	font-weight: 300;
	background: #1e1e1e;
	color: #00a56b;
	letter-spacing: 1em;
}
#pageLoading{
	font-family:'bebasneue';
	position: fixed;
	top: 0;
	z-index: 501;
	height: 100vh;
	width: 100%;
	overflow: hidden;
	padding: 30% 0 0 0;
	background: #1e1e1e;
	color: #00a56b;
	opacity: 1;
	font-size: 3em;
	text-align: center;
	visibility: visible;
	-webkit-transition: opacity 500ms ease-out;
	-moz-transition: opacity  500ms ease-out;
	-o-transition: opacity  500ms ease-out;
	transition: opacity  500ms ease-out;
}
.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
}
.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1); 
}
.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00a56b;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
          animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
      -ms-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}
.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
          transform: scale(1.1) rotateZ(90deg);
}
.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
          transform: scale(1.1) rotateZ(180deg);
}
.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
          transform: scale(1.1) rotateZ(270deg);
}
.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s; 
}
.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  } 
}
@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  }
}
/*		Content 	*/
#tempImage{
	display: none;
	opacity: 0;
}
#content{
	width: 100%;
	top: 0;
	margin-top: 115px;
	background: #f0f0f0;
}
#centerSection{
	padding: 0 10px;
}
section{
	width: 100%;
	float: left;
	display: inline;
	min-heigt: 300px;
	margin-bottom: 5em;
	background: #f0f0f0;
}
section h1{
	width: 100%;
	color: #dcdcdc;
	text-align: center;
	font-size: 1.8em;
	padding: 10px 0 0 0;
	height: 40px;
	font-style: normal;
	position: absolute;
	left: 0;
	margin-top: -40px;
	z-index: 500;

}
section h2{
	text-align: center;
	margin: 0 0 20px;
	width: 100%;
	padding: 1em 0 .5em 0;
	background: #373737;
	color: #00a56b;
}
.sectionContainer{
	width: 100%;
}
.corporateColor{
	color: #00a56b;
}
.corporateColorClickable{
	color: #00a56b;
	cursor: pointer;
}
.sectionContent p, .sectionContentWide p{
	float: left;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 2em;
	font-family:'roboto';
	font-size: 1.2em;
	font-weight: 200;
}
.sectionContent a, .sectionContentWide a{
	text-decoration: none;
	font-family: 'roboto';
	font-size: 1em;
	font-weight: 200;
	color: #00a56b;
}
.sectionContent a:hover, sectionContentWide a:hover{
	color: #006C46;
}
.sectionImage, .sectionImageWide{
	float: left;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
}
.sectionImage img, .sectionImageWide img{
	margin: 1.5em auto;
	width: 100%;
}

/*	Footer 	*/
#footer{
	background: #1e1e1e;
	width: 100%;
	float: left;
	margin-top: 15px;
}
#footer a{
	text-decoration: none;
	color: #00a56b;
}
#centerFooter{
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
	margin: 0 auto;
}
.footerLeft{
	width: 100%;
	float: left;
	padding: 30px 0;
	box-sizing: border-box;
}
.quickContent{
	color: #8c8c8c;
	display: inline-block;
}
.footerLeft h1{
	font-size: 1.8em;
	font-family:'bebasneue';
	color: #00a56b;
}
.footerRight h2{
	letter-spacing: 2px;
	margin-bottom: 10px;
}
.footerRight{
	display: none;
}
table{
	width: 95%;
	float: left;
	margin: 10px 0 0 0;
}
tr{ margin: 10px;}
th{
	text-decoration: none;
	font-family:'roboto';
	font-weight: 200;
	font-size: 1.2em;
}
th:nth-of-type(2){ 
	text-align: left;
	width: 85%; 
}
.icon{
	background-repeat: no-repeat;
	background-size: 1.75em auto;
	width: 1.75em;
	height: 1.75em;
	text-align: center;
	display: inline-block;
}
#post{
	background-image: url(Images/layout/mail.svg);
}
#phone{	
		background-image: url(Images/layout/phone.svg);
}
#fax{
		background-image: url(Images/layout/fax.svg);
}
#mail{
		background-image: url(Images/layout/email.svg);
}
#facebook{
	background-image: url(Images/layout/facebook.svg);
}
.protfoliopreview{
	float: left;
	width: 30%;
	margin-right: 5%;
	cursor: pointer;
	background-position: center;
	background-size: cover;
	-webkit-transition: all 250ms ease-in;
	-moz-transition: all  250ms ease-in;
	-o-transition: all  250ms ease-in;
	transition: all  250ms ease-in;
	 -moz-transform: scale(.95 ,.95);
    -webkit-transform: scale(.95 ,.95);
    transform: scale(.95 ,.95);
	display: inline-block;
}
.protfoliopreview:hover{
	 -moz-transform: scale(1 ,1);
    -webkit-transform: scale(1 ,1);
    transform: scale(1 ,1);
}
.protfoliopreview:nth-of-type(3n+3){
	margin-right: 0;	
}
.moreImages{
	float: left;
	width: 15%;
	margin-right: 2%;
	cursor: pointer;
	-webkit-transition: all 75ms ease-in;
	-moz-transition: all  75ms ease-in;
	-o-transition: all  75ms ease-in;
	transition: all  75ms ease-in;
	 -moz-transform: scale(.95 ,.95);
    -webkit-transform: scale(.95 ,.95);
    transform: scale(.95 ,.95);
}
.moreImages:hover{
	-moz-transform: scale(1 ,1);
    -webkit-transform: scale(1 ,1);
    transform: scale(1 ,1);
}
.moreImages:nth-of-type(6n+6){
	margin-right: 0;	
}
.imagePreviewFrame{
	float: left;
	width: 100%;
	margin: 40px 0 10px 0;
}
.projectMoreImages{
	float: left;
	width: 100%;
	margin: 20px 0 10px 0;
}
.projectDescription{
	float: left;
	width: 100%;
	margin: 10px 0 0;
	height: auto;
	max-height: 0px;
	display: none;
	overflow: hidden;
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}
.projectDetails{
	float: left;
	width: 100%;
	margin-top: 15px;
}
.projectDetails h2{
	float: left;
	background: #1e1e1e;
	font-family:'bebasneue';
	font-weight: 200;
	color: #dcdcdc;
	width: 80%;
	padding: 15px 0 10px 0;
	margin: 0;
	text-align: center;
}
.closeButton{
	float: right;
	background: #00a56b;
	font-family:'bebasneue';
	font-weight: 200;
	color: #1e1e1e;
	width: 20%;
	padding: 15px 0 10px 0;
	margin: 0;
	text-align: center;
	font-size: 1.5em;
	cursor: pointer;
}
.closeButton:hover{
	background: #1e1e1e;
	color: #00a56b;
}
.portfolioTitle{
	float: right;
	width: 100%;
}
.projectDesc{
	float: left;
	margin: 20px 0;
	box-sizing: border-box;
	width: 100%;
}
.cangePictureSection{
	width: 100%;
	margin: 20px 0;
	box-sizing: border-box;
	float: right;
}
.cangePictureSection h3{
	background: #1e1e1e;
	font-family:'bebasneue';
	font-weight: 200;
	color: #dcdcdc;
	width: 100%;
	padding: 15px 10px 10px;
	text-align: left;
	font-size: 1.5em;
}
.consumerLogo{
	float: left;
	width: 33%;
}

#infoBoxDummy{
	width: 485px; 
	height: 288px; 
	z-index: 3; 
	position: fixed; 
	background-color: #000; 
	opacity: .7; 
	display: none;
}
#ncShowSubmenuNoteId,
#ncShowMenu,
#ncUpdateSelLang,
#ncUpdatePageContentBoxId,
#ncUpdatePageId{
	display: none;
}
#parameterInfo > img{
	position: absolute; 
	margin: 8px 0 0 778px; 
	cursor: pointer;
}