@charset "utf-8";
/* CSS Document */
body {
  font-family: "Verdana", sans-serif;
  margin: 0;
  padding: 0px;
  scroll-behavior: smooth; 
  background-color: #b4d5f3;
}
.marquee {
    max-width: 100%; /* iOS braucht das */
    white-space: nowrap;
    overflow: hidden;
    font-size: 24px;
    color: #BDEDFA;
    background-color: #0C147D;		/* hier evtl. noch font-size, color usw. */
    height: 45px;
    border-top-style: solid;
    border-top-color: #81A2A7;
    border-bottom-style: solid;
    border-bottom-color: #81A2A7;
	}

.marquee span {
    display: inline-block;
    padding-left: 105%; /* die zusÃ¤tzlichen 5% erzeugen einen verzÃ¶gerten Start und vermeiden so ein Ruckeln auf langsamen Seiten */
    animation: marquee 20s linear infinite;
	}

	/* Optional: mouseover (oder Tipp auf dem Touchscreen) pausiert die Laufschrift */
.marquee span:hover {
    animation-play-state: paused;
    padding-top: 10px;
    /*margin-top: 10px;*/
    /*margin-bottom: 10px;*/
    padding-bottom: 5px;
	}

	/* Make it move */
	@keyframes marquee {
		0%   { transform: translateX(0); }
		100% { transform: translateX(-100%); }
	}

.whitetext {
    color: #ffffff;
}
.bg-dark {
    background-color: #ef6800!important;
}
.nav-link {
    color: #ffffff!important;
    text-align: center;
}
.nav-link:hover {
    text-decoration: underline;
}
.dropdown-item {
    color: #333333!important;
    text-align: center;
}
.dropdown-item:hover {
    color: #ffffff!important;
    background-color: #ef6800;
}
.symbole {
    background-color: #ef6800;  
}
.left {
    text-align: left;
}
.footerimg {
  height: 80px;
}

input.form-control {
  height: 50px;
  font-size: 1rem;
}
.center {
  text-align: center;  
}
.centerimg {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.teltext {
    color: #ffffff;
}
.teltext:hover {
    text-decoration: underline;
}
.foottext {
    color: #FFFFFF;
}
.foottext:hover {
    color: #333c90;
}

    /* Footer */
.footer {
      background-color: #EF6800;
      color: #ffffff;
      padding: 2rem 1rem;
    }
.footer-box {
      text-align: center;
      margin-bottom: 1rem;
    }
.main p, main img, main h1, main h2, main h3, main h4, main h5, main h6, main div {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/*LIGHTBOX_BEGIN*/
.gallery-container {
      padding: 30px;
      max-width: 1600px;
      margin: auto;
    }

    .gallery-flex {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .gallery-flex a {
      display: block;
      flex: 0 0 auto;
    }

    .gallery-flex img {
      width: 300px;
      height: 169px;
      object-fit: cover;
      border-radius: 4px;
      transition: transform 0.2s ease;
    }

.gallery-flex img:hover {
      transform: scale(1.03);
    }

@media (max-width: 768px) {
      .gallery-flex img {
        width: 100%;
        height: auto;
      }
    }
.symbole {
    border-radius: 30px;
    background-color: #ef6800;
}
.rund {
    border-radius: 30px;
}
.schatten {
    -webkit-box-shadow: 5px 5px 10px #676666;
    box-shadow: 5px 5px 10px #676666;
}

