p {
  margin: 0;
}
html {
    min-height: 100vh; /* Seite mindestens so hoch wie das Fenster */
}

body {
  min-height: 100vh; /* Seite mindestens so hoch wie das Fenster */
	font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
	font-size: 16px;
}

.gesamtinhalt {
  flex: 1; /* nimmt den Platz ein */
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

h3 {
	font-size: 17px;
	font-weight: bold;
}

.wrapper {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.wrapper.header {
	display: flex;
    align-items: center;      /* Vertikal zentrieren */
    justify-content: space-between; /* Logo links, Sprachwahl rechts */
}

.zeileoben {
	width: 100%;
	max-height: 259px;
	overflow: hidden;
	display: flex;
	flex-direction: row;
  background-color: white;
}

.logo {
	width: 100%;
	max-width: 250px;
	height: auto;
	display: flex;
	justify-content: left;
}

.logo img {
  padding: 10px 5px;
}

a, a:link {
	color: #89a147;
	font-weight: bold;
	text-decoration: none !important;
}

a:hover {
	color: #242021;
}

.zeilemitte {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex: 1; /* schiebt den Footer nach unten */
}

.hauptbereich {
	display: flex;
	flex-wrap: nowrap;
}

.hauptbereich p {
    line-height: 22px;
}

.hauptbereich li {
  margin-left: 40px;
  line-height: 22px;
  list-style-position: inside;
  list-style-type: disc;
}

.footer {
	width: 100%;
	background-color: black;
	display: flex;
	flex-direction: column;
	padding: 0px 40px 50px 40px;
  	color: white;
	background-image: url("/images/allgemein/dolomit-3-dark.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: 100% 0;
}

.footer .wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer h3 {
  color: white;
  text-transform: uppercase;
}

.geiger {
	background: #0000008a;
	text-align: center;
	padding: 30px;
	display: flex;
	align-self: center;
}

.logounten {
  max-width: 165px;
  margin-top: 50px;
}

.logounten img {
	margin-bottom: 50px;
}

.anschrift {
	line-height: 27px;
  margin-top: 48px;
}

.anschrift img {
	margin-top: 15px;
}

.btn.btn-primary {
	background: #c00a1d;
	border: none;
	color: white;
}


