﻿/* *****************************************************
CSS für Lean und Agil

** ***************************************************** */
:root {
	--pagetitlecolor: #F0F0F0;		/* almost white */
	--pagesubtitlecolor: #C0C0C0;	/* silver */
	--sectiontitlecolor: #3335b5;	/* light blue */
	--contenttextcolor: #0C0C0C; 	/* almost black */
	--copyrightcolor: #2659AE;		/* electric blue */
	--contentbackground: #FAFAFA;	/* darkwhite */

/* Desktop set for font size */
	--biggesttext: 	36px;			/* Pagetitle */
	--biggertext: 	32px;			/* Contenttitle */
	--bigtext: 		28px;			/* Pagesubtitle */
	--normaltext: 	22px;			/* Content */
	--smalltext: 	10px;			/* Footer */

/* Font */
	--fontfamilyTitle: 'Raleway', sans-serif;
	--fontfamily: 'Baloo Paaji 2', sans-serif;
}

/******************************************************* 
** General Responsive settings *************************
******************************************************** */

* {
  box-sizing: border-box;				/* Grid View */
}


.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

	
[class*="col-"] {						/* all columns are floating to left */
  float: left;
/*  border: 1px solid red; */
}

.global {
  float: left;
/*  border: 1px solid red; */
}

/* Use a media query to add a break point at 800px: */
@media screen and (max-width: 1000px) {
  col-2, .col-4, .col-5 ,.col-6, .col-7, .col-8, col-10 {
    width: 100%; /* The width is 100%, when the viewport is 1000px or smaller */
	max-width: 100%;
  }

/* Mobile set for font size */
	:root {	
		--biggesttext: 	20px;			/* Pagetitle */
		--biggertext: 	18px;			/* Contenttitle */
		--bigtext: 		20px;			/* Pagesubtitle */
		--normaltext: 	16px;			/* Content */
		--smalltext: 	10px;			/* Footer */
	}
}

.zeile::after {
  content: "";
  clear: both;
  display: table;						/* Make the container element behave like a table */
}

/* body Structure ************************************

	Global
		Pageheader
		Menu
			Navi
		Page

			Section
		Footer
** ***************************************************** */

body {
	color: var(--contenttextcolor);
	width:100%;
}

.Global {
	width:100%;
	max-width: 100%;
/*	flex: left;				/* Menu und Page */
/*	overflow:auto; */
}

/* Header Structure ************************************

	Pageheader
		- Pageheaderpicture
			- Pagetitle
			- Pagesubtitle
			
** ***************************************************** */


.Pageheader {
	text-align:left;
	margin-top: 0;
	position: sticky;
	top: 0;
	z-index: 2000;									/* Stay behind all */
}

.Pageheaderpicture {
	background-color: var(--sectiontitlecolor);
	background-position: top;
	background-repeat: no-repeat;
	height: auto;
	display: flex;
	flex-wrap: wrap;								/* bricht um, wenn Platz zu schmal */
}

.Pagetitle {
	font-family: var(--fontfamily);
	font-style: var(--fontstyle);
	font-size: var(--biggesttext);
	color: var(--pagetitlecolor);
  	padding: 10px 15px 0 15px;
	width:100%;
}

.Pagesubtitle {
	font-family: var(--fontfamily);
	font-size: var(--bigtext);
	color: var(--pagesubtitlecolor);
  	padding: 10px 15px 10px 15px;
	width: 100%;
}

.Menu {
	background-color: var(--sectiontitlecolor);
	width: 100%;
	float: left;
	position: sticky;
	top: 0;
	z-index: 1900;									/* Stay behind all */
}

.Navi {
	margin-left:15px;
	width:100%;
}

.Navi a {								/* The navigation menu links */
	padding-top: 6px;
	padding-right: 1%;
	padding-bottom: 6px;
	padding-left: 1%;
	text-decoration: none;
	font-family: var(--fontfamily);
	font-size: var(--normaltext);
	color: var(--pagetitlecolor);
}

.Page {
	width: 100%;
	float: left;
	background-color: var(--contentbackground);
}


/* Content Structure ************************************

	Section
		- Sectiontitle
		- Sectionpicture
			- Sectioncontenttitle
				- Sectioncontent
		- Sectiontitle
		- Sectioncontent
			
** ***************************************************** */
.Section {
  	padding-left: 25px;
  	padding-right: 15px;
}

.Sectiontitle {
	text-align:center;
	font-family: var(--fontfamilyTitle);
	font-size: var(--biggesttext);
	color: var(--sectiontitlecolor);
  	margin: 0;
  	padding-top: 50px;
  	padding-bottom: 25px;
}

.Sectionpicture {
	text-align: center;
	max-width:100%;
}

.Sectionpicture img {
	max-width:100%;
	height:auto;
}

.Sectioncontenttitle {
	font-family: var(--fontfamilyTitle);
	font-size: var(--bigtext);
	color: var(--sectiontitlecolor);
	text-align:left;
  	padding-top: 22px;
	display: flex;
	flex-flow: column nowrap;
}

.Sectioncontent {
	font-family: var(--fontfamily);
	font-size: var(--normaltext);
	color: black;
	text-align : justify;
  	padding-top: 10px;
	padding-left: 0px;
}
.Sectionlaufbahn {
	
	display: flex;
	color: var(--contenttextcolor);
	
}


/* Footer Structure ************************************

	Footer
		- Footerpicture
			- Footertitle
			- Footercontenttitle
			- Footercontent
			- Copyright
** ***************************************************** */

.Footer {
/*	background-image: url('../pictures/patrick-tomasso-QMDap1TAu0g-unsplash.jpg');	*/
	background-color: var(--sectiontitlecolor);
  	margin: 0;
 	padding: 0;
	width:100%;

}

.Footerpicture {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	padding: 0;
	margin: 0;
}

.Footertitle {
	text-align:center;
	font-family: var(--fontfamily);
	font-size: var(--normaltext);
	color: var(--pagetitlecolor);
  	padding: 20px 15px 0 15px;
}

.Footercontenttitle {
	font-size: var(--smalltext);
	font-family: var(--fontfamily);
	text-align:left;
  	padding: 15px 15px 0 15px;
	color: var(--pagetitlecolor);
	display: flex;
	flex-wrap: wrap;								/* bricht um, wenn Platz zu schmal */
}

.Footercontent {
	font-size: var(--smalltext);
	font-family: var(--fontfamily);
	text-align:left;
	color: var(--pagesubtitlecolor);
}

.Copyright {
	background-color: var(--sectiontitlecolor);
	font-family: var(--fontfamily);
	color: var(--pagetitlecolor);
	width: 100%;
	padding-top: 22px;
	padding-left: 30px;
	padding-right: 15px;
	text-align: center;
	font-size: var(--smalltext);
}


/* +++++++++++++++++++++++++++++++++++++++++++++++
   Timline Laufbahn
   ++++++++++++++++++++++++++++++++++++++++++++++ */

.blue-bg {
  height: 100%;
}

.circle {
	font-weight: bold;
	padding: 15px 20px;
	border-radius: 50%;
	background-color: #3335B5;
	color: #F5F5F5;
	max-height: 70px;
	z-index: 2;
	vertical-align: middle;
}

.how-it-works.row {
  display: flex;
}
.how-it-works.row .col-2 {
  display: inline-flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
}
.how-it-works.row .col-2::after {
  content: "";
  position: absolute;
  border-left: 3px solid #3335B5;
  z-index: 1;
}
.how-it-works.row .col-2.bottom::after {
  height: 50%;
  left: 50%;
  top: 50%;
}
.how-it-works.row .col-2.bottom.right::after {
  height: 50%;
  left: calc(50% - 3px);
  top: 50%;
}
.how-it-works.row .col-2.full.left::after {
  height: 100%;
  left: 50%;
}
.how-it-works.row .col-2.full.right::after {
  height: 100%;
  left: calc(50% - 3px);
}
.how-it-works.row .col-2.top::after {
  height: 50%;
  left: calc(50% - 3px);
  top: 0;
}
.how-it-works:hover {
	font-size: var(--bigtext);
}


.timeline div {
	padding: 0;
	height: 40px;
}
.container {
	font-family: var(--fontfamily);
	font-size: var(--normaltext);
	color: var(--contenttextcolor);
}
.timeline hr {
  border-top: 3px solid #3335B5;
  margin: 0;
  top: 17px;
  position: relative;
}
.timeline .col-2 {
  display: flex;
  overflow: hidden;
}
.timeline .corner {
  border: 3px solid #3335B5;
  width: 100%;
  position: relative;
  border-radius: 15px;
}
.timeline .top-right {
  left: 50%;
  top: -50%;
}
.timeline .left-bottom {
  left: -50%;
  top: calc(50% - 3px);
}
.timeline .top-left {
  left: -50%;
  top: -50%;
}
.timeline .right-bottom {
  left: 50%;
  top: calc(50% - 3px);
}
.circle a {
	text-decoration: underline;
	
	font-size: var(--bigtext);
	color: var(--pagetitlecolor);
	display: block;
}

