/* Basics */

a:link {
	color:#000;
 	text-decoration: none;
}

a:visited {
	color:#000;
 	text-decoration: none;
}

img {
      max-width:800px;
      height: auto;
}

input::placeholder {
    opacity: 0.4;
    color: red;
}

label {
  font-size: 14px;
  color: #000;
}



/* Burger */

h2 {
  vertical-align: center;
  text-align: center;
  margin-bottom:0px;
  color:#2A4D69;
}

h3 {
  font-family: "Arial"; 
  vertical-align: center;
  text-align: center;
  margin-bottom:0px;
  font-weight: bold; 
  font-size: 20px; 
  color:#2A4D69;

}


html, body {
  margin: 0px;
  margin-top:-20x;
  height: 100%;
  font-family: "Arial";
  font-size: 18px; 
}


* {
  font-family: "Arial";
  font-size: 18px; 
  line-height: 1.4; 
  box-sizing: border-box;
}

.top-nav {

  margin-top:0px;
  position:fixed;
  width:100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #2A4D69 ;
  color: #FFF;
  height: 50px;
  padding: 10px;
  font-color: #000;
  z-index:10000;

}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;

}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 1000px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border-top: 3px solid #FFF;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: right;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: #fff;
    background-color: #000;
	opacity:0.9;
  }
  .menu > li:not(:last-child) {
    border-bottom: 2px solid #FFF;
  }
}

/* Basics */

body {
	background-color: #FAFAFA;
	margin:0px;
}

h1 {
	font-family: "Arial"; 
	font-weight: bold; 
	font-size: 30px; 
	color:#ff4848;
}

h2 {
	font-family: "Arial"; 
	font-weight: bold; 
	font-size: 24px; 
	text-align: left;
	margin-top: 40px;
	margin-bottom: 20px;
}


/* Bildschirm Aufösung*/

@media only screen and (min-width:600px) {
	div.mobil {
		display:none; 
	}
}


@media only screen and (max-width:599px) {
	div.desktop {
		display:none;
	}
}



/* Akkordion */

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  transition: 0.4s;
  margin-top:4px;
}

.active, .accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 12px;
  font-size: 15px;
  font-align: left;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}


/* Grid */

.grid {
 	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); 
}

.grid div {
	background: #FFFFFF;
	border: 0px solid #BBBBBB;
	color: #000000;
	margin: 0.5em;
/*	padding-bottom: 5px; */
}


