
@charset "utf-8";

@font-face {
font-family: "Header";
src: url("font/Apercu Pro Bold.otf");
}

@font-face {
font-family: "Font";
src: url("font/Apercu Pro Bold.otf");
}

@font-face {
font-family: "Text";
src: url("font/CrimsonText-Regular.ttf");
}

@font-face {
font-family: "semibold";
src: url("font/CrimsonText-SemiBold.ttf");
}

@font-face {
font-family: "Font";
src: url("font/Apercu Pro Bold.otf");
}



@font-face {
font-family: "ItalicF";
src: url("font/CrimsonText-Italic.ttf");
}



.example::-webkit-scrollbar {
  display: none;
}

.example {
  -ms-overflow-style: none; 
  scrollbar-width: none;  
}


body {
	margin:0;
	margin-bottom: 0;
	margin-top: -100px;
	background-color:white;
	background-image:none;
	padding:0;
	border:0;
	overflow-y:hidden;
	overflow-x:hidden;
	font-family: "Text";

}

hr{
	width: 100%;
	color: #384356;
	border-color: #0033FF;
	margin: 50px auto;
}

p{
	color: #384356;
	font-size: 26px;
	font-family: "Text";
}

h1{font-size: 26px;
color: #384356;}

h2{font-size: 30px;

color: #384356;}

h3{font-size: 33px;
	font-family: "Header";
	color: #384356;}

a{
	cursor: pointer;
	color: #384356;
}

.tracking_big{
	letter-spacing: 3px;
}


.tracking_small{
	letter-spacing: 1px;
}

.semibold{
		font-family:"semibold";
}

.italic{
	font-style: italic;
}

/* Animations / General Stuff ----------------------------------------------------------------------------------------------------- */


#fader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
	pointer-events: none;
	background:white;
	animation-duration: 400ms;
  animation-timing-function: ease-in-out;
	opacity: 0;
}

@keyframes fade-out {
    from { opacity: 1 }
      to { opacity: 0 }
}

@keyframes fade-in {
    from { opacity: 0 }
      to { opacity: 1 }
}

#fader.fade-out {
  animation-name: fade-out;
	opacitiy: 0;
}

#fader.fade-in {
    opacity: 1;
    animation-name: fade-in;
}

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 2s all ease;
}

.reveal_slow{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 2s all ease;
}
.reveal_slow.active{
  transform: translateY(0);
  opacity: 1;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}

.scrollcontainer{
		height: calc(100vH - 80px);
		width: 100vW;
		overflow-x: hidden;
		overflow-y: scroll;
  	position: absolute;
  	top:80px;
/*  	scroll-snap-stop: always;
  	scroll-snap-type: y mandatory;*/

	}

.snap{
	scroll-snap-align:center;
}


/* Header  ----------------------------------------------------------------------------------------------------- */


.header{
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 80px;
	text-align: left;
	position: fixed;
	border: none;
	top: 0;
	left: 0;
	background-color: white;
	z-index: 99;
	transition: 1s all ease;
}


.header img {
	height: 50px;
	width: 50px;
	object-fit: fill;
}

.header h1{
	margin: 0px;
	margin-left: 50px;
}

.header h1:hover {
  text-decoration: underline;
}

.menue {
	position: static;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	margin-right: 50px;
	height: 80px;
	color: #384356;
	}

.menue a:hover {
  text-decoration: underline;
}

.menue a{
		color: inherit;
		padding: 20px;
		font-size: 26px;
		text-decoration: none;
}

.header.invert{
	background-color: #1a2b45;
}

.header.invert h1{
	color: white;
}

.menue.invert{
	color: white
}

.totop{
	display: flex;
 	width: 35px !important;
 	height: 35px !important;
	margin-right:auto;
	margin-left: 50px;
	margin-bottom: auto;
	margin-top: auto;
	cursor: pointer;
	overflow: hidden;
	object-fit: fill;
 }



/* Journey / SideMenue ----------------------------------------------------------------------------------------------------- */


.stickmenue{
	display: flex;
	margin-top: -80px;
	position: fixed;
	min-height: 100vh;
	left: 30px;
	flex-flow: column nowrap;
	justify-content: center;
	max-width: 400px;
	transform: translateX(-150px);
	opacity: 0;
	transition: 1s all ease;
}


.stickmenue.active{
	transform: translateX(0);
  opacity: 1;
}

.entry{
}


.stickmenue a{
	padding: 30px;
	text-decoration: none;
	cursor: pointer;
	font-size: 24px;
	font-family: "Semibold";
	transform: rotate(35deg); 
	text-align: left;
}

.stickmenue a:hover {
	text-decoration: underline;
	opacity: 1 !important;
}


/* Container ------------------------------------------------------------------------------------------ */

.container{
	overflow: visible;
	width:100%;
	height:calc(100vH - 100px);
	background-color:white;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;

}


.content{
	positon: relative;
	display: flex;
	width: 80%;
	margin: auto;
}

.col{
	display: flex;
	flex-flow: column wrap;
}

.row{
	display: flex;
	flex-flow: row wrap;
}

.cen{
	justify-content: center;
	align-items: center;
}

.start{
	justify-content: flex-start;
	align-items: flex-start;
}

/* Questionar ------------------------------------------------------------------------------------------ */


.rows{  
  	display: flex;
  	flex-flow: row nowrap;
  	width: 100%;
  	margin-top: 10px;
  	}

 .sel {
 	font-size: inherit;
 	font-family: var(--mainfont);
 	padding-left: 20px;
 	font-size: 24px;

 }

 .point{
 	width: 20px;
 	height: 20px;
 	min-height: 20px;
 	min-width:20px ;
 	border: none;

 }




/* Text ------------------------------------------------------------------------------------------ */

.text{
	padding: 50px;
	width: 35%;
	min-width: 30%;
	max-width:30% ;
	margin: 50px;
}


.tl{text-align: left;}
.tc{text-align: center;}
.tr{text-align: right;}



.ac{
	text-decoration: underline !important;
}

.indent{
	padding-left: 50px;
}

.last{
	height: 500px;
	margin-bottom: 200px;
}

/* Contact ------------------------------------------------------------------------------------------ */

.contact{
	position: absolute;
	top: 0;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	padding: 20px;
	width: 100%;
	height: 90vH;
}


/* Footer ------------------------------------------------------------------------------------------ */

.footer {
	overflow:hidden;;
	bottom:0%;
	width:100%;
	height:80px;
	display:flex;
	flex-flow:row nowrap;
	background-color:	#1a2b45;
	align-items: center;
	justify-content:center;
	margin-top: 200px;
}

.footer p{
	color: white;
	padding: 30px
}

.footer img{
	display: none;
	padding:30px;
	width: 30px;
	height: 30px;
}


/* FAQ ------------------------------------------------------------------------------------------ */

.faq_img{
	background-color: red;
	width: 50px;
	height: 50px;
	height: auto;
	overflow: hidden;
	object-fit: cover;
	margin: 10px;
}

.faq_question{
	cursor: pointer;
	padding: 0;
	margin: 0;
	text-decoration: underline;
	min-width: 100%;
}

.faq_answer{
	display: none;
	margin:0 !important; padding:0px !important;
	margin-top: 100px;
}

.faq_answer p{
}

.faq_answer.active{
	display: block;
}


/* Join ------------------------------------------------------------------------------------------ */

.join_img{
	width: 50%;
	height: auto;
	overflow: hidden;
	object-fit: cover;
	margin: 10px;
}

.sub_button{	
	margin-top: 50px;
	width: 250px !important;
	height: 80px;
	color: #384356;;
	border-color:#384356;
	background-color: white;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border-radius: 5px;
	font-size: 27px;
	border-style: solid;
	margin-right: 0px;
	font-family: "Font";

}

.sub_button:hover{
	background-color:#384356 ;
	color: white;
}

.sub_form{
	font-family: "ItalicF";
	font-size: 24px;
	color: #384356;;
}

/* About ------------------------------------------------------------------------------------------ */

.img_a{
	overflow: hidden;
	object-fit: cover;
	width: 100px;
	margin: auto;
	padding: 50px;
}

.placeholder{
	min-width: 35%;
	width: 35%;
	display: none;
}

.img_a_team{
	overflow: hidden;
	object-fit: cover;
	width: 380px;
	margin: auto;
	padding: 50px;
}

.team{
	max-width: 20%;
}


.vorhang{
	display: none;
	flex-flow: column nowrap;
	min-height: 100vH;
	min-width: 100vW;
	position: fixed;
	top: 0;
	background-color: white;
	align-items: center;
	justify-content: center;
}

.timeout{
	z-index: 9999;
	display: none;
	position: fixed;
	top: 0;
	min-height: 100vH;
	min-width: 100vW;
}

.redirect_background{
	min-height: 100vH;
	min-width: 100vW;
	background-color: white;
	opacity:1;

}

.redirect{
	display: flex;
	flex-flow: column nowrap;
	min-height: 100vH;
	min-width: 100vW;
	position: fixed;
	top: 0;
	background-color: white;
	align-items: center;
	justify-content: center;
}


.sheep {
	width: 50px;
	height:50px;
 	background-color:red;
	position:fixed; 
}

.correction{
	max-width: 80%;
	width: 50%;
	min-width: 50%;
}

.pos{
	position: relative;
	left: 100px;
}

.sub{
	width: 100vW;
	height: 100vH;
	position:  fixed;
	top: 0;
	left: 0;
	z-index: 999;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;
	text-align: center;

}

.sub_bg{
	width: 100vW;
	height: 100vH;
	position:  fixed;
	top: 0;
	left: 0;
	opacity: 0.8;
	background-color: #384356;
	z-index: 999;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	justify-content: center;

}

.sub_but{
	background-color: #384356;
	border-style: none;
	color: #384356;
	width: 124px;
	height: 124px;;

}

.esub{
	padding: 50px;
	background-color:white ;
	text-align: center;
	border: none;
	outline: none !important;
	text-align: center;
	font-size: 24px;

}

.esub input{

	background-color: white;

}

.headline{
	font-size: 48px;
}


.scale{}

.fixed{
	min-height:80vH;
}

@media only screen and (max-width: 1600px) {
		.vorhang{
			display: none;
			opacity: 1;
		}


	.img_a_team{
		overflow: hidden;
		object-fit: cover;
		width: 200px;
		margin: auto;
		padding: 20px;
	}

.stickmenue a{
	padding: 18px;
	font-size: 18px;
}

p{


	color: #384356;
	font-size: 18px;
	font-family: "Text";
}

h1{font-size: 24px;
color: #384356;}

h2{font-size: 24px;

color: #384356;}

h3{font-size: 24px;
	font-family: "Header";
	color: #384356;}

a{
	cursor: pointer;
	color: #384356;
}

.menue a{
		font-size: 18px;

}

.qoute_txt_container{
	width: 500px;
	height: 500px;
	overflow: hidden;
	font-size: 18px;
	top: 150px;
}

.bubble{
	height: 500px;
	width: 500px;
	position: absolute;
	top: 150px;
}

.headline{
	font-size: 36px;
}

.img_j{
	width: 250px;

}

.description{
	max-height: 250px;
}

.scale{
	margin: 150px 0;
}

.qoute_author{
	height: 50px;
	width: 250px;
	margin: 2px;
	font-size: inherit;
	self-align: right;	
	text-align: right;
	position: relative;
}

.j_button{

	width: 250px;
	height: 60px;
	font-size: 24px;

	
}

.sub_button{

	width: 250px;
	height: 60px;
	font-size: 24px;

}

.sub_form{
	font-family: "ItalicF";
	font-size: 18px;
	color: #384356;;
}


.simulatorbutton{
	width: 150px;
	height: 150px;
	top: 480px;

}

.more{
	font-size: 24px;
	margin-top: 20px;
}



@media only screen and (max-width: 1000px) {
		.vorhang{
			display: flex;
			opacity: 1;
		}
