body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 180px 10px 10px 10px 100px 40px 160px 40px auto auto auto auto 200px auto;
	margin:0; /* If you want no margin */
	padding:0; /*if your want to padding */  
	  overflow-x: hidden; /* Hide horizontal scrollbar */
}

:root {
  --scale_speed: all 0.8s linear;
  --scale_factor_light: 1.02;
  --scale_factor: 1.05;
}



.header_nav_left {
  grid-column: 1 / span 2;
  grid-row:    1;
  height: 0px;
}

.header_nav_center {
  grid-column: 3 / span 2;
  grid-row:    1;
  height: 200px;
}

.header_nav_right {
  grid-column: 5 / span 2;
  grid-row:    1;
  height: 0px;
}

.impressum_logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 800px;
}


.vongartzen_header {
  grid-column: 1 / span 6;
  grid-row:    2;
  height: 0px;
  text-align: center;
}

.vongartzen_header_text {
font-family: "Bahnschrift", Avenir;
font-size:	25px;
color: #333333;
align: right;
font-weight: lighter;
 }

.vongartzen_header_ad {
font-family: "Bahnschrift", Avenir;
font-size:	20px;
color: #333333;
align: right;
font-weight: lighter;
 }



.brands_left {
  grid-column: 1 / span 1;
  grid-row:    3;
  height: 0px;
}


.innovationship_ref {
  grid-column: 2 / span 2;
  grid-row:    3;
  height: 0px;
  margin-right: 15px;
}

.abtauchen_ref {
  grid-column: 4 / span 2;
  grid-row:    3;
  height: 0px;
  margin-left: 15px;
}


.brands_right {
  grid-column: 6 / span 1;
  grid-row:    3;
  height: 0px;
}


.brands_inner {
  background-color:	#f1f1f1;
  height: auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 5px 5px 10px #aaaaaa;
  padding:20;
  filter: brightness(1);
  background-size: cover;
  /* VERZÖGERUNG */
  -webkit-transition: var(--scale_speed);
  -moz-transition: var(--scale_speed);
  -ms-transition: var(--scale_speed);
  -o-transition: var(--scale_speed);
  transition: var(--scale_speed);
  } 

.brands_inner:hover {
	-webkit-transform: scale(var(--scale_factor));
	-moz-transform: scale(var(--scale_factor));
	-ms-transform: scale(var(--scale_factor));
	-o-transform: scale(var(--scale_factor));
	transform: scale(var(--scale_factor));
	filter: brightness(1.05);
}

.innovationship_logo_box {
  height: 300px;
}


.innovationship_logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 400px;
}


.abtauchen_logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 300px;
}

   .brands_topic{
font-family: "Bahnschrift", Avenir;
font-size:	40px;
color: #0088d7;
}



  .logo_text{
font-family: "Fira Sans", Avenir;
font-size:	25px;
color: #222222;
text-align: center;
}

  .logo_link{
font-family: "Fira Sans", Avenir;
font-size:	20px;
color: #222222;
text-align: center;
margin-top: 20px;
height: 30px;
}


.vongartzen_ug {
  grid-column: 1 / span 6;
  grid-row:    4;
  height: 0px;
  text-align: center;
}

.vongartzen_ug_text {
font-family: "Bahnschrift", Avenir;
font-size:	20px;
color: #666666;
align: right;
font-weight: lighter;
 }



.contact {
  grid-column: 1 / span 6;
  grid-row:    5;
  height: 0px;
  text-align: center;
 }


.contact_header {
  background-color: #ffffff;
  font-family: "Bahnschrift", Avenir;
  font-size:	40px;
  color: #333333;
 }

     .email{
font-family: "Bahnschrift", Avenir;
font-size:	40px;
color: #0088d7;
}





.impressum_left {
  grid-column: 1 / span 1;
  grid-row:    6;
  height: 0px;
}


.impressum_box {
  grid-column: 2 / span 4;
  grid-row:    6;
  height: 0px;
}

.impressum_right {
  grid-column: 6 / span 1;
  grid-row:    6;
  height: 0px;
}



.accordion {
  background-color: #ffffff;
  font-family: "Bahnschrift", Avenir;
  font-size:	30px;
  color: #0088d7;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: center;
  border: none;
  outline: none;
  transition: 0.4s;
}


.active, .accordion:hover {
  background-color: #f1f1f1;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-family: "Bahnschrift", Avenir;
  font-size:	20px;
  color: #333333;
  font-weight: lighter;
}


  @keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
}