/* side-by-side für ob.html */
.side-by-side {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Grid für Produkte */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

/* Einzelnes Produkt */
.product {
  flex: 1 1 calc(33.333% - 20px); /* 3 Spalten */
  box-sizing: border-box;
  text-align: center;
}

/* Bilder responsiv */
.product img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Für Handy (max. 768px): nur 1 Spalte */
@media (max-width: 768px) {
  .product {
    flex: 1 1 100%;
  }
}

.module-wrapper {
  display: inline-block; /* passt sich der Breite des Titels an */
  text-align: left;
}

.module-title {
  margin: 0;
}

.module-list {
  margin: 0;
  padding-left: 1.2em; /* sorgt für Abstand für die Bullets */
  list-style-type: disc; /* Bullets aktiv */
}

body {
	margin: 5px;
	background-color: #ddd; /*e9ebee;*/
	color:#000;
	font-family:Arial, Helvetica, sans-serif;
}
.header {
	margin: 20px auto;
	text-align: center;
	background: #e1e2e3;
	color:#999;
	font-size: 16px;
	font-variant:small-caps;
}
h1 {
	color:teal;
	filter: drop-shadow(0px 0px 2px #fde);
}
a:link {
	color: #0474bc;
	text-decoration: underline;
}
a:visited {
	color: #034;
	text-decoration: underline;
}
a:hover {
	color: #02529a;
	background-color:#eee;
	text-decoration: none;
}
a:active {
	color: #b00;
	text-decoration: none;
}
#navbar {
	display: grid;
	min-height: 32px;
	grid-auto-flow: column;
	background-color: #ddd;
	grid-gap: 1.5em;
	padding: 0 20px;
	-webkit-box-shadow: -1px 4px 5px 0px rgba(209, 205, 209, 1);
	-moz-box-shadow: -1px 4px 5px 0px rgba(209, 205, 209, 1);
	box-shadow: -1px 4px 5px 0px rgba(209, 205, 209, 1);
}
#logo {
	display: grid;
	justify-content: start;
	align-content: center;
	font-family: "Open Sans", sans-serif;
	font-size: 30px;
	font-weight: 700;
	color: #000;
}
.logo span {
	color: #0474bc;
}
#links {
	display: grid;
	justify-content: right;
	align-content: center;
	grid-auto-flow: column;
	grid-gap: 1.5em;
	font-family: "Open Sans", sans-serif;
}
#links a {
	text-decoration: none;
	color: #333;
	text-transform: uppercase;
	font-weight: bold;
}
#links a:hover {
	color: #0474bc;
}
.fltclear {
	clear:both;
}
.fltrt {
	float: right;
	margin-left: 8px;
}
.fltlft {
	float: left;
	margin-right: 8px;
}
.floatClear {
	clear:both;
}
.floatRight {
	float:right;
}
.floatLeft {
	float:left;
	margin-right: 25px;
}
img {
	max-width:98%;
	padding:5px;
	-webkit-filter: drop-shadow(10px 10px 20px #333);
	filter: drop-shadow(10px 10px 20px #333);
}
a img:hover {/* img link hover */
	color: #0454ac;
	color: #222;
	/*box-shadow:0 0 10px 0px;*/
	-webkit-filter: drop-shadow(10px 10px 30px #222);
	filter: drop-shadow(10px 10px 10px #222);
}
#Schrift {
	font-family: Georgia, "Times New Roman", Times, serif;
}
.Blocksatz {
	text-align: justify;
}
.textBox {/* grey text background */
/*
	overflow: hidden;
	background-color: #444;
	position: -webkit-sticky; /* Safari */
	/*width: 300px;
	*/
}
.red {
	color: #C00;
}
#Schrift {
	font-family: Georgia, "Times New Roman", Times, serif;
}
/* =======================
******* Mobile Menu ******
========================*/

.mobile-menu {
	display: block;
	list-style-type: none;
	background-color: #fff;
	float: right;
	width: 150px;
	padding: 5px 0 50px 0;
	border: 1px solid #eee;
	z-index: 55;
}
.mobile-links li {
	line-height: 2.8rem;
}
.mobile-btn {
	display: grid;
	justify-content: right;
	align-content: center;
	grid-auto-flow: column;
	cursor: pointer;
}
.nav-list {
	font-family: "Open Sans", sans-serif;
	list-style-type: none;
}
.nav-list:hover {
	opacity: 0.5;
	cursor: pointer;
}
.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: #111;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 60px;
}
.sidenav a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 25px;
	color: #818181;
	display: block;
	transition: 0.3s;
}
.sidenav a:hover {
	color: #0474bc;
}
.sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
}
a {
	font-family: "Open Sans", sans-serif;
	text-decoration: underline;
}

/* Mobile to Tablet  */

@media (min-width: 320px) and (max-width: 767px) {
 #links, .mobile-menu {
 display: none;
}
 #logo {
 display: inline-grid;
 grid-template-columns: auto auto;
 grid-gap: 15px;
}
}

/* Tablet to Desktop */
@media (min-width: 768px) {
 .mobile-menu, .mobile-btn, .fa-bars {
 display: none;
}
}
.container {/* responsive main frame */
	max-width: 955px;
	margin: 0 auto;
	text-align: left;
}
.size {
	font-size: 9px;
}
.size {
	font-size: 10px;
}
.size {
	font-size: 10px;
	font-style: italic;
}
.size {
	font-size: 10px;
	font-style: italic;
}
.redHeadline {
	color: #F00;
}
.white {
	color: #FFF;
}
.white {
	color: #FFF;
}
.tial {
	color: #008080;
}
.tial {
	color: #008080;
	font-style: normal;
}
.tial {
	color: #008080;
	font-style: italic;
}
.tial {
	color: #008080;
}
.green {
	color: #008091;
}
.green {
	color: #0080AB;
}
.left {
	text-align: left;
}
.ledt {
	text-align: left;

}
.left {
	text-align: left;
}
.left {
	text-align: left;
}
