@charset "utf-8";
/* CSS Document */

/********************* Projekt *********************/
/***************************************************/

*{
	box-sizing: border-box;
}

html, body {
	margin: 0;
	background-color: white;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 16px;
	font-size: 100%;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif";
}

h1 {
	font-size: 2.25em;
	color: black;
}

h2 {
	font-size: 1.8em;
	color: black;
}

span {
	color: chocolate;
}

/************************* Links *************************/
/*********************************************************/

a {
  color: #000;
}

a:link, a:visited {
	color: grey;
	text-decoration: underline;
}

a:hover, a:focus, a:active {
	color: red;
}

a.footer:link, a.footer:visited {
	color: green;
	text-decoration: underline;
}

a.footer:hover, a.footer:focus, a.footer:active {
	color: lightblue;
}

/************************* Layout *************************/
/**********************************************************/

header, nav, div, main, article, section, footer { /***** For older browsers *****/
	display: block;
}

header {
	background-color: white;
	padding: 0 0 0 2em;
	color: white;
	}

nav {
	background-color:transparent;
	width: 100%;
	text-align: right;
	margin: 0 1em 0 1em 0;
	padding-top: 10px;
	padding-bottom: 10px;
	color: white;
}

main {
	background-image: none;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	background-attachment: fixed;
	}

article {
	align-content: center;
	background-color: white;
	width: 100%;
	}

section {
	width: 230px;
	}

footer {
	background-color: white;
	height: 100px;
	text-align: left;
	margin: 0 auto;
	padding-left: 2em;
	padding-bottom: 10px;
	color: black;
	}
/************************* Klassen *************************/
/***********************************************************/
.text-color {
	color: #FFFFFF;
}

.img-responsive {
	max-width: 100;
	height: 120px;
}

.img-responsive-max {
	width: 120px;
	height: 120px;
}

.clearfix::after { /* fixes float failure */
	content: "";
	clear: both;
	display: table;
}

.copyright {
	background-color: white;
	color: black;
	font-size: 1em;
	text-align: center;
}

.home-start {
	font-size: 0.6em;
	color: black;
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif";
}

.home-footer {
	background-color: white;
	font-size: 0.6em;
	color: black;
	font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", "sans-serif";
}

.divfooter {
	background-color: white;
	text-align: center;
}

.footer {
background-color: white;
  width:100%;  
  height: 60px;
	padding-top: 1em;
  clear:both;
  overflow: hidden;
  text-align: center;
  
}

.grid {
	width: 230px;
	padding-right: 10px;
	padding-bottom: 10px
}



/*********************** Burgermenu Classes ***********************/

.header {
  background-color: transarent;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: fixed;
  width: 100%;
  z-index: 3;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none; /***************** points are deleted ***************************/
  overflow: hidden;
  background-color: dimgrey;
}

.header li a { 
  display: block; /***************** makes a block in the link ***************************/
  padding: 10px 20px;
  border-right: 0px solid #f4f4f4;
  text-decoration: none;
	background-color: white; /***************** background hinter dem link ***************************/
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: darkgray;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}




.column {
    flex: 100%;
    max-width: 100%;
  }


/******************************************************/
/****************** BREAKPOINTS ***********************/
/******************************************************/

@media screen and (min-width:353px) {
	
	}

@media screen and (min-width:576px) {
	
	}

@media screen and (min-width:768px) {
	
	
	/********************* section classes ********************/
	
.header li {
    float: left;
  }
  .header li a {
    padding: 15px 20px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
	


@media screen and (min-width: 992px) {
	
	


@media screen and (min-width:1200px) {
	
	
	}
	}
	
	/***********************   flex classes   ***********************/

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 3.4em 0 0 2em;
	}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
	
}

.column img {
  margin: 0 10px 10px 0;
	  vertical-align: middle;
	
}
}