body{
	font-family: 'Roboto', sans-serif;
	display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    max-width: 1150px;
}

::-webkit-scrollbar {
    display: none;
}

#iconrow {  
  position: fixed;
  z-index: 15;
  top: 40px;
  float: right;
}

#icons {  
  bottom: 50px;
  height: 50px;
  margin-left: 20px;
  float: right;
  z-index: 15;
  filter: alpha(opacity=35);
  opacity: 0.35;
}

#LOGO {
  position: fixed;
  left: 50%; 
  margin-left: -100px;
  top: 35px;    
  z-index: 15; 
}

#header {
    margin:0 auto;
    position: fixed;
    width:100%;
    z-index:10;
	background-color:#FFFFFF;
    height:120px;
    filter: alpha(opacity=35);
    opacity: 0.35;
}

footer {
	display: block;
    font-size: 2.0em;
    font-weight: bold;
	text-decoration: none;
	margin-top: 50px;
	bottom: 50px;
    text-align: left;
	padding: 20px;
	background-color:#F2F2F2;
    min-height: 80px;
}

.circle {
   width: 50px;
   height: 50px;
   background: rgb(0,0,0);
   border-radius: 50%;
}

/*                           POPUP begin                                */

.button {
  color: #000;
  cursor: pointer;
}

.button:hover {
  background: #06D85F;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index:100;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  position: relative;
  margin: 110px auto;
  padding: 20px;
  padding-right: 20px;
  background: #fff;
  border-radius: 0px;
  width: 90%;
  max-width: 1150px;    
  z-index:100;  
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .closing {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .closing:hover {
  color: #06D85F;
}

.popup .content {
  max-height: 30%;
  overflow: inherit;
}


.innercontainer {
  max-height: calc(100vh - 200px);
  overflow: auto;
}

.img-fit {  
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  max-height: 60vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  
  /*  height: 40vh;*/
  /*  height: 100%;*/
  /*  max-height: 40vh;*/
  /*  object-fit: contain;*/
/*   width: auto;  /* Breite automatisch anpassen, um das Seitenverhältnis zu bewahren */ /* Hinzugefügt 08.05.2025 */
/*   object-fit: contain;  /* Sicherstellen, dass das Bild korrekt skaliert wird */ /* Hinzugefügt 08.05.2025 */	
}

ul.a {
  text-align: left;
  max-width: 350px;
  padding-inline-start: 0px;
}

ul.b {
  text-align: left;
  max-width: 550px;
  padding-inline-start: 0px;
}

.newspaper {
  column-count: 1;
  display: flex;
  align-items: center;
  justify-content: center;
/*  float: left; */
}

/*                                 POPUP end                               */

.container{
    display:grid;
    grid-template-columns: repeat(6,1fr);
    grid-auto-rows:100px 300px;
    grid-gap:50px;
    grid-auto-flow: dense;
	max-width: inherit;
}

.gallery-item{
    width:100%;
    height:100%;
    position:relative;
}

.gallery-item .image{
    width:100%;
    height:100%;
    overflow:hidden;
}



.gallery-item .image img{
    width:100%;
    height:100%;
	object-fit: cover;
    object-position: 50% 90%;
    cursor:pointer;
}


 /*
.gallery-item .image img {
    width: 100%;
    height: auto; 
    max-height: 50vh;
    object-fit: contain;
    object-position: center;
    cursor: pointer;
}
 */
 
.gallery-item .text{
    opacity:0;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    font-size:25px;
    pointer-events:none;
    z-index:4;
}


.w-1{
    grid-column: span 1;
}
.w-2{
    grid-column: span 2;
}
.w-3{
    grid-column: span 3;
}
.w-4{
    grid-column: span 4;
}
.w-5{
    grid-column: span 5;
}
.w-6{
    grid-column: span 6;
}

.h-1{
    grid-row: span 1;
}
.h-2{
    grid-row: span 2;
}
.h-3{
    grid-row: span 3;
}
.h-4{
    grid-row: span 4;
}
.h-5{
    grid-row: span 5;
}
.h-6{
    grid-row: span 6;
}


@media screen and (max-width:600px){
    .container{
        grid-template-columns: repeat(1,1fr);
    }
    .w-1,.w-2,.w-3,.w-4,.w-5,.w-6{
        grid-column:span 1;
    }
}


@keyframes move-down{

    0%{
        top:10%;
    }
    50%{
        top:35%;
    }
    100%{
        top:50%;
    }
}