body {
	color: #494948;
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	font-weight: 300;
	line-height: 1.4;
}

p {
	margin: 0px 0px 25px 0px;
}

a {
	color: #679d2e;
}


.container {
  display: grid;
  /* grid-template-columns: 30px 30% 30% 30% 30px; */  
  /* grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr; */
  grid-template-columns: 0px 30% 30% 30% 0px;
  gap: 10px 10px;
  grid-auto-flow: row;
  grid-template-areas:
    ". . logo . ."
    ". texttop texttop imgright ."
    ". imgmain imgmain imgmain ."
    ". headline headline . ."
    ". imgleft textbottom textbottom ."
    ". address textbottom textbottom .";
  
  max-width: 95%;
  width: 1180px;
  margin: 0px auto;
  padding-bottom: 30px;
}

.logo {
	grid-area: logo;
	text-align: center;
	padding: 30px 0px 30px 0px;
}
.logo img {
	height: auto;
	width: 350px;
	max-width: 100%;
}
.texttop {
	grid-area: texttop;
	}

.imgright {
	grid-area: imgright;
	position: relative;
}
.imgright img {
	width: 110%;
	height: auto;
	display: block;
	position: absolute;
	right: 0px;
	top: -25%;
}

.imgmain {
	grid-area: imgmain;	
}
.imgmain img {
	width: 100%;
	height: auto;
	display: block;
}

.headline {
	grid-area: headline;
	margin: 0px 0px 30px 0px;
	color: #679d2e;
	font-size: 70px;
	font-weight: 600;
	line-height: 1.0;
}

.imgleft {
	grid-area: imgleft;
}
.imgleft img {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	margin-top: -15%;
}

.address {
	grid-area: address;
	font-size: 16px;
}

.textbottom {
	grid-area: textbottom;
}

/* --- 980px --------------------------------------------- */
@media only screen and (max-width: 979px) {
	body { font-size: 20px;}
	.headline { font-size: 50px; }
}

/* --- 580px --------------------------------------------- */
@media only screen and (max-width: 584px) {
	body { font-size: 18px;}
	.headline { font-size: 35px; }
	
	.logo img {
		max-width: 200%;
		width: 200%;
		position: relative;
		left: -50%;
		
	}
}
/* --- 480px --------------------------------------------- */
@media only screen and (max-width: 479px) and (orientation: portrait) {
}



/* ––––––––– Braucht's das? –––––––––––––––*/

a.popup:link, a.popup:visited {
display: block;
margin-top: 150px;
line-height: 24px;
font-size: 12px;
color: #000000;
}

a.popup:hover {
background: #ffffff; 
}

a.popup span  {
display: none;
}

a.popup:hover span  {
display: block;
position: absolute;
left: 10px;
top: 98px; 
width: 70px;
height: 70px; 
text-decoration: none;
}




/* ––––––––––––– MG 24.03.2023 –––––––––––––––– */

.textbottom,
.textwrapper {
  position: relative;
  z-index: 1;	
}

#popupImage_wrapper {
	display: block;
	position: absolute;
	z-index: 2;
	top: 100px;
	right: 0px;
	max-width: 50vw;
	width: 550px;
	box-shadow: rgba(0, 0, 0, 0.3) 2px 2px 5px;
	border: 5px solid white;
	background-color: white;
	pointer-events: none;
}
#popupImage_wrapper.open {
	z-index: 2;
	pointer-events: all;
	display: block !important;
}

#popupImage {
	max-width: 100%;
	display: block;
}