@media (width < 65em) {
.container {
	display: grid;
	grid-template-rows: 80px 1fr lfr 120px;
	grid-template-columns: auto 80% auto;
	grid-row-gap: 0px;
	grid-column-gap: 0px;
}

div.picone {
	width: 110%;
   height: auto;
   overflow: hidden;
  	object-fit: cover;
  	border-radius: 0em 2em 2em 0em;
}

div.picone img {
	width: 100%;
	height: auto;
	/* SCALE */
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	/* VERZÖGERUNG */
	-webkit-transition: all 2.3s ease-in;
	-moz-transition: all 2.3s ease-in;
	-ms-transition: all 2.3s ease-in;
	-o-transition: all 2.3s ease-in;
	transition: all 2.3s ease-in;
}

div.picone img:hover {
	-webkit-transform: scale(3);
	-moz-transform: scale(3);
	-ms-transform: scale(3);
	-o-transform: scale(3);
	transform: scale(3);
}

leftsidetop{
	background: grey;
	grid-column-start: 1;
	grid-column-end: 2;
	grid-row-start: 1;
	grid-row-end: 2;
}
leftside{
	background: #00CED1;
	grid-column-start: 1;
	grid-column-end: 2;
	grid-row-start: 2;
	grid-row-end: 4;
}
leftsidebottom{
	background: darkgrey;
	grid-column-start: 1;
	grid-column-end: 2;
	grid-row-start: 4;
	grid-row-end: 5;
}
rightsidetop{
	background: grey;
	grid-column-start:3;
	grid-column-end: 4;
	grid-row-start: 1;
	grid-row-end:2;
}
rightside{
	background: #00CED1;
	grid-column-start:3;
	grid-column-end: 4;
	grid-row-start: 2;
	grid-row-end: 4;
}
rightsidebottom{
	background: darkgrey;
	grid-column-start: 3;
	grid-column-end: 4;
	grid-row-start: 4;
	grid-row-end: 5;
}
topheader {
	background: grey;
	grid-column-start: 2;
	grid-column-end: 3;
	grid-row-start: 1;
	grid-row-end: 2;
}
content1 {
	background: white;
	grid-column-start: 2;
	grid-column-end: 3;
	grid-row-start: 3;
	grid-row-end: 4;
}
content2 {
	background: white;
	grid-column-start: 2;
	grid-column-end: 3;
	grid-row-start: 2;
	grid-row-end: 3;
}
bottomfooter {
	background: darkgrey;
	grid-column-start: 2;
	grid-column-end: 4;
	grid-row-start: 4;
	grid-row-end: 5;
}
#contenthead {
	 font-family: Calibri, sans-serif;
    font-size: 15pt;	
    color: #00CED1;
    border:0px none;
    background-color: white;
    text-align: right;
    font-weight: bold;
    padding: 10px 10px 10px 10px;
    position: relative;
    top: 0px;
    right: 0px;
    float: right;
    width: 80%;
}
#contentbody {
	 font-family: Calibri, sans-serif;
    font-size: 13pt;	
    color: #000000;
    border:0px none;
    background-color: #FFFFFF;
    text-align: left;
    font-weight: normal;
    padding: 50px 50px 50px 50px;
    position relative;
    top: 0px;
    left: 0px;
}
#headheadleft {
	 display: none;
}

#headheadall {
	 position: static;
	 top: 0px;
	 left: 0px;
	 font-family: Calibri, sans-serif;
    font-size: 15pt;	
    border:0px none;
    text-align: left;
    font-weight: bold;
    padding: 30px 0px 0px 0px;
    background: grey;
    color: white;
    float: left;
    z-index: 99;
}

#headheadright {
	 display: none;
}
#bodybody {
	 position: relative;
	 top: 0px;
	 right: 0px;
	 font-family: Calibri, sans-serif;
    font-size: 15pt;	
    border:0px none;
    text-align: center;
    font-weight: normal;
    padding: 30px 0px 0px 0px;
    background: darkgrey;
    color: white;
}
#bodybodybottom {
	 position: static;
	 bottom: 0px;
	 font-family: Calibri, sans-serif;
    font-size: 15pt;	
    border:0px none;
    text-align: center;
    font-weight: normal;
    padding: 0px 0px 30px 0px;
    background: #FFFFFF;
    color: white;
}

#brigantis {
	display: none;
}

#brigantishead {
	display: none;
}

.dropbtn {
    background-color: grey;
    color: white;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    
}

.dropdown {
    position: relative;
    display: inline-block;
    z-index: 99;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: grey;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
    color: black;
    padding: 8px 6px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: lightgray;}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: lightgrey;
}

}

