body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 10px 10px 10px 10px 100px;
	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 1;
  grid-row:    1;
  height: 0px;
}

.header_nav_center {
  grid-column: 2 / span 1;
  grid-row:    1;
  height: 20px;
}

.header_nav_right {
  grid-column: 3 / span 1;
  grid-row:    1;
  height: 0px;
}

.vongartzen_wappen {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 600px;
}


.contact_link  {
    color: #e4e5e5;
}

.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);
}




.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 1;
  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: #e4e5e5;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: center;
  border: none;
  outline: none;
  transition: 0.4s;
}


.active, .accordion:hover {
  background-color: #ffffff;
}

.accordion:after {
 
  font-size: 13px;
  color: #ffffff;
  float: right;
  margin-left: 5px;
}

.active:after {
 
}

.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:	25px;
  text-align: center;
  color: #white;
  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;
}