* {
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url("SourceSansPro-Regular.ttf");
  font-weight: normal;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url("SourceSansPro-Bold.ttf");
  font-weight: bold;
}
body {
  font-family: 'Source Sans Pro', sans-serif;
  height: 100%;
  min-height: 100%;
}
#touchpoint {
  display: grid;
  grid-row: 4;
  grid-template-rows: 1.8fr [header] 0.8fr [navi] 6.4fr [inhalt] 1fr [footer];
  grid-template-columns: 50% 50%;
  grid-gap: 0px;
  width: 100vw;
  height: 100vh;
}
#header {
  background-color: #f4f8fc;
  grid-row: 1;
  grid-column: 1 / span 2;
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-column-span: 2;
}
#hlogo {
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
#hlogo a {
  width: 100%;
  text-align: center;
}
#hlogo img {
  width: 30%;
}
#navi {
  background-color: #46817f;
  grid-row: 2;
  grid-column: 1 / span 2;
  -ms-grid-column: 1;
  -ms-grid-row: 2;
  -ms-grid-column-span: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
#navi .button {
  background-color: white;
  color: #46817f;
  border-radius: 5px;
  margin: 0 20px;
}
#navi .button a {
  padding: 10px 20px;
  color: #46817f;
  font-size: 1.3em;
  text-transform: uppercase;
  display: block;
  letter-spacing: 3px;
  font-weight: bold;
}
#inhalt {
  grid-row: 3;
  grid-column: 1 / span 2;
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-column-span: 2;
  overflow-y: scroll;
  font-size: 1.1em;
}
#inhalt::after {
  content: "";
  background-image: url("baumgross.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 20%;
  opacity: 0.1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 10%;
  position: absolute;
  z-index: -1;
}
table {
  border-collapse: collapse;
  border-spacing: 10px;
  margin: 20px;
}
table th {
  color: #46817f;
  padding: 10px;
}
table tr {
  border: 1px solid #AAAAAA;
  padding: 5px 5px;
  margin: 5px;
}
table td, table th {
  vertical-align: top;
  text-align: left;
  padding: 5px 10px;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 10px 0 0;
}
li {
  margin-left: 40px;
}
h4 {
  color: #46817f;
  margin: 10px 0px -10px 20px;
}
#soundoffon {
  position: fixed;
  z-index: 1000;
  color: #46817f;
  margin: 20px;
  padding: 10px 20px;
  font-size: 1.5em;
	  border: 1px solid white;
  border-radius: 5px;
  background-color: #0b8280;
  color: white;
  font-weight: bold;
}
#inhalt #ueberschrift {
  padding: 20px 20px 0px;
  text-align: center;
  color: #0b8280;
  ;
}
#inhalt #links {
  padding: 1% 2% 2%;
  width: 46%;
  float: left;
}
#inhalt #rechts {
  padding: 1% 2% 2%;
  width: 46%;
  float: left;
  height: 100%;
}
#inhalt .center {
  text-align: center;
}
#inhalt p {
  padding: 10px 20px;
}
#inhalt video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#footer {
  background-color: #0b8280;
  text-align: center;
  color: #fff;
  font-weight: 300;
  font-size: 1.1em;
  line-height: 1.3;
  grid-row: 4;
  grid-column: 1 / span 2;
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-column-span: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}
a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}
@supports (display: grid) {
  .nachricht {
    display: none;
  }
}