/* CSS Mini Reset */
/******************/
html{color:#000;}div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;*font-size:100%}legend{color:#000}#yui3-css-stamp.cssreset{display:none}

.clear{ clear:both; }
.nopadl{ padding-left:0px !important;	}
.nopadr{ padding-right:0px !important; }
.nopad{padding-left:0px !important; padding-right:0px !important; }
.input_wrongdiv { display: none; color:#ff0000; }
.after_send { display: none; }
/* STYLES */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
input:focus, select:focus, textarea:focus {
    outline:none !important;
}
/*input, select, textarea {
	-moz-appearance: none;
   -webkit-appearance: none;
   appearance: none;
}*/





:root {
	/*TYPO*/

	--fs-std: 20px;
    --lh-std: 30px;

    --fs-big: 60px;
    --lh-big: 70px;

	--fs-med: 30px;
	--lh-med: 40px;

	--fs-sml: 13px;
	--lh-sml: 23px;

	--m-huge:175px;
	--m-big: 120px;
	--m-med: 60px;
	--m-sml: 20px;

	--c-green: #52FF00;
}

body{
    font-size: var(--fs-std);
	line-height: var(--lh-std);
	color:#000;
	font-family:"parabolica";
    overflow-x:hidden;
}

strong{
    font-weight:700;
}
a:link, a:visited {

}
a:hover{

}
li{

}
li:before{

}

.input_wrongdiv{
	color: red;
}
.input_wrongdiv, .after_send{
	display: none;
}

h1{
	font-size: var(--fs-big);
	line-height: var(--lh-big);
}

h2{
	font-size: var(--fs-med);
	line-height: var(--lh-med);
}


header{
	margin-top: 40px;
	height: 80px;
	position: fixed;
	top:0;
	width: 100%;
	z-index: 2;
	background: #fff;
	transition:all 0.5s;
}
header.sml{
	margin-top:0;
}
#logo{
	margin-top: 16px;
	margin-left: calc(16.667% - 50px);
}
.c-hamburger{
	position: absolute;
	right: 65px;
	top:18px;
	z-index: 2;
}
.nav{
	z-index: 3;
	position: fixed;
	top: 120px;
	left: 0;
	width: 100vw;
	height: calc( 100vh - 120px);
	background: #fff;
	display: none;
	flex-wrap: wrap;
}
header.sml .nav  {
	top: 80px;
	height: calc( 100vh - 80px);
}
.nav a{
	color: #000;
	text-decoration: none;
}
.nav > li:first-child{
	margin-left: 16.667%;
	width: 41.667%;
	padding-top: var(--m-med);
}
.nav > li{
	border-right: 1px solid #000;
	font-size: var(--fs-med);
	line-height: var(--lh-med);
    display: inline-block;
	vertical-align: top;
    height: calc(100vh - 220px);
}

.nav > li:not(:first-child){
	width: 16.667%;
	padding: var(--m-med) 15px;
}
.nav > li:first-child > ul > li{
	margin-top: calc(var(--m-med) / 2);
}
.nav > li > ul > li:first-child{
	margin-top: calc(var(--m-med) / 2);
}
.nav > li > ul > li > a{

}
.nav > li:first-child > ul > li > a{
	pointer-events: none;
	font-size: var(--fs-sml);
	line-height: var(--lh-sml);
	font-family:"iki-mono-variable";
	font-weight: 200;
	letter-spacing: 20%;
	text-transform: uppercase;
}
li.navfooter{
	position: absolute;
	bottom: 20px;
	border-right: 0 !important;
	width: 100vw !important;
	border-top: 1px solid #000;
	height: var(--m-big);
	z-index: 3;
	background: #fff;
	font-size: var(--fs-std);
	line-height: var(--lh-std);
	padding: var(--m-sml) 16.667% !important;
    left: 0;
}
.navfooter img{
	position: absolute;
	top: 28px;
	left: 14%;
}

.container-fluid{
	z-index: 0;
	margin-top:120px;
}
.jobbtn{
	background: var(--c-green);
	width: 100px;
 	height: 85px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -42px;
	right: 16.667%;
	margin-right: 15px;
}
.jobbtn a{
	color:#fff;
    text-decoration: none;
    padding-top: 40px;
}
.jobtriangle{
    width: 100px;
    height: auto;
    border-style: solid;
    border-width: 35px 50px 0 50px;
    border-color: var(--c-green) transparent transparent transparent;
    transform: rotate(0deg);
    position: absolute;
    left: 0;
    bottom: -35px;
}
.jobbtn:hover{
	color: #fff;
	text-decoration: none;
}
footer{
	margin-bottom: var(--m-big);
	position: relative;

}
footer::after{
	content: '';
	height: 1px;
	width: 100vw;
	position: absolute;
	left: 0;
	bottom: -60px;
	background: #000;
}
footer h1{
	font-size: var(--fs-sml);
	line-height: var(--lh-sml);
	margin-top:50px;
	margin-bottom:var(--m-sml);
	font-family:"iki-mono-variable";
	font-weight: 200;
	letter-spacing: 20%;
	text-transform: uppercase;
}
footer a, footer a:hover{
	color: #000;
	text-decoration: none;
}
.footerleft, .footercenter, .footerright{
	padding-bottom:50px;
}
.footerright.up img{
	margin-right: var(--m-sml);
}
.footericon{
	width: 40px;
	height: 40px;
	position: absolute;
	top: 102px;
	left: -40px;
}
.footerright{
    padding-left:15px;
}

.btop{ border-top: 1px solid #000; }
.bbottom{ border-bottom: 1px solid #000; }
.bleft{ border-left: 1px solid #000; }
.bright{ border-right: 1px solid #000; }
.imgwrapper img {
	width:100%;
	height: auto;
}
.modflex > .simpli_mod {
	display: flex;
	width: 100%;
}
.simpli_mod_text {
	position: relative;

}
.linehelper{
	position: absolute;
	height:100%;
}

/* home */
.hometxt{
	position: relative;
}
.hometxt > .simpli_mod > div{
	padding-top: var(--m-med);
	padding-bottom: var(--m-med);
}
.subline{
	padding-bottom: var(--m-huge);
	font-size: var(--fs-sml);
	font-family:"iki-mono-variable";
	font-weight: 200;
	letter-spacing: 20%;
	text-transform: uppercase;
}
.hometxt h1{
	margin-bottom: var(--m-med);
}
.leftnumber{
	font-size: var(--fs-big);
	padding-top: var(--m-med);
	padding-bottom: var(--m-sml);
	display: block;
}
.lefttxt{
	font-weight: 700;
}
.producttxt, .projecttxt, .newstitle{
	padding-top: var(--m-med);
	padding-bottom: var(--m-huge);
}
.producttxt h2, .projecttxt h2, .newstitle{
	padding-bottom: var(--m-med);
}
.newscontent{
	padding-bottom: var(--m-huge);
}
.newstitle{
	padding-left: 15px;
}
.newsdate{
	font-size: var(--fs-sml);
	padding-bottom: 10px;
	font-family:"iki-mono-variable";
	font-weight: 200;
	letter-spacing: 20%;
}
.hometxt2 .imgwrapper img{
	padding-bottom: 80px;
}
.aboutimg {
	margin-top:-100px;
}
.aboutimg img{
	width: 100%;
}
.greenbubble {
	background: url(/img/arrow.svg) no-repeat center bottom 30px var(--c-green);
	background-size: 30px 20px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	text-align: center;
	align-items: center;
	display: grid;
	color:#fff;
	margin-left: auto;
	margin-right: auto;
	margin-top:-40px;
	margin-bottom: 80px;
	position: relative;
	rotate: 10deg;
	padding: 5px;
}
.greenbubble:hover, .greenbubbledef:hover{
	color:#fff;
	text-decoration: none;
}
.aboutus h1{
	margin-top:var(--m-med);
	margin-bottom: var(--m-med);
	padding-left:30px;
}
.linkbtn:hover{
	color:#000;
	text-decoration: none;
}

/*default*/

.defaulttxt{
	position: relative;
}
.defaultimg img{
    width:100%;
}
.greenbubbledef{
	background: url(/img/arrow.svg) no-repeat center bottom 30px var(--c-green);
	background-size: 30px 20px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	text-align: center;
	align-items: center;
	display: grid;
	color:#fff;
	rotate: 10deg;
	position: absolute;
	bottom: 400px;
	right: -120px;
	padding: 5px;
}
.sublinedef{
	font-size: var(--fs-sml);
	line-height: var(--lh-sml);
	padding-bottom: var(--m-med);
	padding-top: var(--m-med);
	font-family:"iki-mono-variable";
	font-weight: 200;
	letter-spacing: 20%;
	text-transform: uppercase;
}
.defaulttxt, .defaulttxt h1{
	padding-bottom: var(--m-med);
}
.contentnav a{
	color: #000;
	padding-top: var(--m-sml);
	padding-bottom: var(--m-sml);
	padding-left: var(--m-med);
	font-size: var(--fs-med);
	line-height: var(--lh-med);
	display: block;
	text-decoration: none;
	border-bottom: 1px solid #000;
	width: 90%;
}
.contentnav a:hover{
	color: var(--c-green);
}
.navnum{
	font-size: var(--fs-sml);
	line-height: var(--lh-sml);
	position: absolute;
	left: 20px;
	font-family:"iki-mono-variable";
	font-weight: 200;
	letter-spacing: 20%;
}
.trigger{
	color: #000;
	padding-top: var(--m-sml);
	padding-bottom: var(--m-sml);
	padding-left: var(--m-med);
	font-size: var(--fs-med);
	line-height: var(--lh-med);
	display: block;
	text-decoration: none;
	border-bottom: 1px solid #000;
	width: 90%;
    cursor:pointer;
}
.trigger:hover{
	color:var(--c-green);
}
.trigger_active{
	border-bottom: none;
	padding-bottom: var(--m-sml);
}
.accordiontxt{
	padding-bottom: var(--m-med);
}
.accordiontxt img{
	padding-bottom: var(--m-sml);
}
.context{
	padding-bottom: var(--m-med);
    padding-top: var(--m-sml);
    display: block;
}

/*company*/

.historyitem{
	display: flex;
	padding-bottom:80px;
	position: relative;
}
.historyitem:first-child{
	padding-top: 80px;
}
.historyitem::after{
	width: 1px;
	content: "";
	background: #000;
	height: 100%;
	position: absolute;
	left: 30px;
	top:0;
}
.bubble{
	background: #000;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	font-size: var(--fs-sml);
	line-height: var(--lh-sml);
	font-family:"iki-mono-variable";
	font-weight: 200;
	letter-spacing: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.5s;
}
.bubble.act{
	width: 100px;
	height: 100px;
	margin-left: -20px;
}
.bubblecon{
	padding: 0;
	margin-left: 15px;
	padding-top: 15px;
	margin-top: 50px;
	transition: all 0.5s;
    display:none
}
/*.bubblecon.act{
	opacity: 1;
}*/
.teamtxt{
	margin-top:var(--m-sml);
	margin-bottom: var(--m-med);
}
.teaminfo{
	padding-top: 100px;
	padding-left:var(--m-med);
}
.teamimg::before{
	content: "";
	border-top: 1px solid #000;
	width: 870px;
	display: block;
	position: absolute;
	top:var(--m-med);
	left:0;
}
.teamimg img{
	z-index:1;
	position: relative;
	width: 100%;
}

.teamfunction{
	padding-bottom: var(--m-sml);
}
.teaminfo a {
    color:#000;
    text-decoration:none;
    display:inline-block;
    white-space: nowrap;
}
.team .simpli_mod_gallery{
	width: calc(100% + 30px);
	margin-left:-15px;
}
.teamgal{
	margin-bottom: 100px;
	width: 100%;
}
.teamgal img{
	transform: translateX(30px);
	width: 100%;
}
.teamwrapper{
	margin-bottom: var(--m-sml);
}

.application .teamimg::before{
    border-top:none;
}
.careertxt{
    padding-bottom:20px;
}
.careertxt a{
    color: #000;
    text-decoration: none;
    padding-bottom: 5px;
    padding-top:5px;
    padding-left:5px;
    display: block;
    background: url("/img/icon_dl.svg") no-repeat right 10px center;
    background-size: 12px auto;
    width: 30%;
    border-bottom: 1px solid #000;
}
.careertxt a:hover{
    color: var(--c-green);
    background: url("/img/icon_dl_green.svg") no-repeat right 10px center;
    background-size: 12px auto;
}






















/* CONTENT */
#logo{

}
.nav{

}
.nav li{

}
.actnav a{

}

/* FORM */
#fcontent{
    margin-top:100px;
    margin-bottom: 50px;
    position: relative;
    float: left;
}
.frow{
    position: relative;
    float: left;
    width:100%;
}
.fval{
    display: inline-block;
    width:calc(100% - 400px);
    float: left;
}
.flabel{
    display: inline-block;
    width:400px;
    float: left;
    font-weight:700;
}
.formeo.formeo-render .formeo-row{
    width:100%;
}
.formeo-column{
  width: 100% !important;
}
.formeo-row-wrap > .f-field-group > label{
	display: none !important;
}
.formeo-row > .f-field-group > label{
	display: none !important;
}
label.showlabel {
    display:block !important;
    opacity:1 !important;
}
.f-field-group li{
    list-style: none;
}
.f-checkbox input{
	float: left;
    clear:left;
}
.f-radio label {
display: inline-block !important;
  font-size: 18px !important;
  opacity: 1 !important;
  width: calc(100% - 30px) !important;
  font-weight: 400 !important;
  padding-left: 10px;
}

.f-checkbox label{
    display: inline-block !important;
    font-size:18px !important;
    width:auto !important;
    font-weight:400 !important;
	float: left;
	max-width: calc(100% - 30px);
    padding-left: 10px;
	margin-top: -5px;
}
.formeo input[type="date"]{
    color:#9CAF4D;
}

/* ETC */
.embed-container{
	position: relative;
	padding-bottom: 56.25%; /* ratio 16x9 */
	height: 0;
	overflow: hidden;
	width: 100%;
	height: auto;
}
.embed-container iframe, .embed-container video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#cookie_wrapper{
	position:fixed;
	left:0;
	bottom:0px;
	color:#fff;
	background:#000;
	min-height:48px;
	text-align:center;
	font-size:17px;
	line-height:22px;
	padding:15px;
	width:100%;
	z-index:9999999;
}
#cookie_wrapper a{
	color:#fff !important;
	text-decoration:underline !important;
}
#cookie_accept,#cookie_deny{
	cursor:pointer;
	background:#fff;
	color:#000;
	display:inline-block;
	padding:5px 8px;
	margin-left:8px;
}
#cookie_accept:hover,#cookie_deny:hover,#cookie_wrapper a:hover{
	opacity: 0.7;
}
#cookie_accept_black{
	position:absolute;
	right:15px;
	top:5px;
	cursor:pointer;
}
#policylogo {
	width: 200px;
	margin-top: 25px;
}
#cptitle {
	font-weight: 700;
	font-size: 28px;
	margin-bottom: 15px;
}
.darker {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgb(0,0,0,0.7);
	z-index: 9999;
}
