
/* ==================== style/normalize.css ==================== */


/* ----------------------- Normalize.css (Auszüge) ------------------------- */
/* https://github.com/necolas/normalize.css/blob/master/normalize.css */

html {
  line-height: 1.2; /* ungefähr line-height: normal */
  -webkit-text-size-adjust: 100%;
  -webkit-font-variant-ligatures: no-common-ligatures; /* verhindert im Safari Fehler bei bedingten Trennstrichen nach Ligaturen, z.B. ft in Gemeinschafts-praxis */
  font-variant-ligatures: no-common-ligatures; /* neuerdings funktioniert nur noch die prefixlose Variante */
}

body,
figure {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main, /* wichtig für MSIE bis 11, Android bis 4.3, Opera 12 */
nav,
section {
  display: block;
}

summary {
  display: list-item;
}

figcaption:empty {
  display: none;
}

hr {
  overflow: visible; /* Chrome, Opera, Edge, MSIE */
}

video {
  display: inline-block; /* MSIE 8/9 */
}

a {
  background: transparent; /* Remove the gray background color from active links in MSIE 10 */
}

a:active {
  outline: 0;
}

b,
strong {
  font-weight: 400;
}

i,
em,
i b,
i strong,
em b,
em strong {
  font-weight: 300;
}

small {
  font-size: 82%;
}
small small {
  font-size: 1em;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.45em;
}
sub {
  bottom: -0.2em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden; /* Hide the overflow in IE */
}


button,
input,
optgroup,
select,
textarea {
  font-size: inherit;
  margin: 0; /* Firefox 4+, Safari, and Chrome */
}

button {
  overflow: visible; /* `overflow` set to `hidden` in MSIE 8-11 */
}

button::-moz-focus-inner, /* Remove inner padding and border in Firefox 4+ */
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto; /* Remove default vertical scrollbar in MSIE 8-11. */
}

[hidden] { /* angeblich für MSIE 10 */
  display: none;
}


/* ==================== style/fonts.css ==================== */


/* lato-300 - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local(''),
       url('../System/Fonts/lato-v22-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../System/Fonts/lato-v22-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* lato-300-italic - latin */
@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local(''),
       url('../System/Fonts/lato-v22-latin-300italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../System/Fonts/lato-v22-latin-300italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* wird hier als Bold verwendet: */
/* lato-regular - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(''),
       url('../System/Fonts/lato-v22-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../System/Fonts/lato-v22-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


/* ==================== style/html-body.css ==================== */


@media screen {
  html {
    overflow-y: scroll;
  }

  body {
    color: #565757;
    background-color: #c8cbd5;
  }
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 1.25em;
}


/* ----------------------- Helper ------------------------- */

#nojs .if-js,
#js .if-nojs {
  display: none;
}



/* ==================== style/grid.css ==================== */


.grid {
  overflow: hidden; /* verhindert den durch den negativen Einzug verursachten waagerechten Scrollbalken */
}


.grid > ul,
.grid > ol {
  list-style: none;
  padding-left: 0;
}

.grid > * { /* <ul>, <div> o.ä. */
  display: block; /* vorsichtshalber */
  margin-top:    -4%;
  margin-right:  0;
  margin-bottom: 0;
  margin-left:   -4%;
}

.grid > *:after { /* clearfix */
  content: '';
  display: block;
  height: 0;
  width: 0;
  clear: both;
}


.grid > * > * { /* <li>, <figure>, <a>, <section> u.ä. */
  float: left;
  box-sizing: border-box;
  background-clip: content-box; /* damit Hintergrundfarbe und Hintergrundbild nicht in den padding fließt */
  background-color: transparent;
  padding-top:    4%;
  padding-right:  0;
  padding-bottom: 0;
  padding-left:   4%;
  margin: 0;
}


@media (min-width: 769px) {
  .max-1-spaltig > * > *                    { width: 100%; }
  .max-1-spaltig > * > *:nth-child(1n+2)    { clear: left; }

  .max-2-spaltig > * > *                    { width: 50%;  }
  .max-2-spaltig > * > *:nth-child(2n+3)    { clear: left; }

  .max-3-spaltig > * > *                    { width: 33.333333%; }
  .max-3-spaltig > * > *:nth-child(3n+4)    { clear: left; }

  .max-4-spaltig > * > *                    { width: 25%;  }
  .max-4-spaltig > * > *:nth-child(4n+5)    { clear: left; }

  .max-5-spaltig > * > *                    { width: 20%;  }
  .max-5-spaltig > * > *:nth-child(5n+6)    { clear: left; }

  .max-6-spaltig > * > *                    { width: 16.666666%; }
  .max-6-spaltig > * > *:nth-child(6n+7)    { clear: left; }
}


@media (max-width: 768px) and (min-width: 481px) {
  .tablet-1-spaltig > * > *                 { width: 100%; }
  .tablet-1-spaltig > * > *:nth-child(1n+2) { clear: left; }

  .tablet-2-spaltig > * > *                 { width: 50%;  }
  .tablet-2-spaltig > * > *:nth-child(2n+3) { clear: left; }

  .tablet-3-spaltig > * > *                 { width: 33.333333%; }
  .tablet-3-spaltig > * > *:nth-child(3n+4) { clear: left; }

  .tablet-4-spaltig > * > *                 { width: 25%;  }
  .tablet-4-spaltig > * > *:nth-child(4n+5) { clear: left; }

  .tablet-5-spaltig > * > *                 { width: 20%;  }
  .tablet-5-spaltig > * > *:nth-child(5n+6) { clear: left; }

  .tablet-6-spaltig > * > *                 { width: 16.666666%; }
  .tablet-6-spaltig > * > *:nth-child(6n+7) { clear: left; }
}


@media (max-width: 480px) {
  .handy-1-spaltig > * > *                  { width: 100%; }
  .handy-1-spaltig > * > *:nth-child(1n+2)  { clear: left; }

  .handy-2-spaltig > * > *                  { width: 50%;  }
  .handy-2-spaltig > * > *:nth-child(2n+3)  { clear: left; }

  .handy-3-spaltig > * > *                  { width: 33.333333%; }
  .handy-3-spaltig > * > *:nth-child(3n+4)  { clear: left; }

  .handy-4-spaltig > * > *                  { width: 25%;  }
  .handy-4-spaltig > * > *:nth-child(4n+5)  { clear: left; }

  .handy-5-spaltig > * > *                  { width: 20%;  }
  .handy-5-spaltig > * > *:nth-child(5n+6)  { clear: left; }

  .handy-6-spaltig > * > *                  { width: 16.666666%; }
  .handy-6-spaltig > * > *:nth-child(6n+7)  { clear: left; }
}



/* ==================== style/responsive-box.css ==================== */


.responsive-box {
  position: relative;
  height: 0; 
}

a.responsive-box {
  display: block;
}

.responsive-box img,
.responsive-box iframe,
.responsive-box video,
.responsive-box object {
  position: absolute;
  width: 100%;
  height: 100%;
}



/* ==================== style/header.css ==================== */


header {
  max-width: 400px;
}

@media only screen and (max-width: 1280px) {
  header {
    padding-bottom: 3.8%;
    margin: 0 auto;
  }
}

header .responsive-box {
  padding-bottom: 17.5%;
}


@media print {
  header {
    border: 10px solid black;
  }
}


/* ==================== style/nav.css ==================== */



@media only screen and (max-width: 767px) {
  html header,
  html .hero-box,
  html main,
  html footer {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 300ms;
    transition: transform 300ms;
  }
  html.moveout header,
  html.moveout .hero-box,
  html.moveout main,
  html.moveout footer {
    -webkit-transform: translateX(-11em);
    -moz-transform: translateX(-11em);
    -ms-transform: translateX(-11em);
    -o-transform: translateX(-11em);
    transform: translateX(-11em);
  }
  html.moveout header,
  html.moveout .hero-box,
  html.moveout main,
  html.moveout footer { opacity: 0.8; }
}


@media print {
  nav {
    display: none;
  }
}


#nav-opener {
  display: none;
}


@media only screen and (min-width: 768px) { /* Wert ggf. an die Zahl/Gesamtbreite der Navi-Buttons anpassen - siehe auch unten */
  nav li.spacer,
  nav li.spacer ~ li {
    display: none;
  }
}

@media only screen and (max-width: 767px) { /* Wert ggf. an die Zahl/Gesamtbreite der Navi-Buttons anpassen - siehe auch unten */
  #nav-opener {
    display: inline-block;
    position: absolute;
    z-index: 90;
    top: 0;
    right: 0;
  }
  #nav-opener a {
    display: inline-block;
    color: black;
    text-decoration: none;
    padding: 48% 25px;
    background-image: url('data:image/gif;base64,R0lGODlhZABQAIABAP///////yH5BAEAAAEALAAAAABkAFAAAAKZhI+py+0Po5y02ouz3rz7D4biSJbmiabqyrbuC8fyTNf2jef6zvdzAAwKh8Si8YhMKpfMpvMJjUqn1Kr1is1qt9yu9wsOi8fksvmMTqvX7Lb7DY/L5/Sm747P6/f8vv8PGCg4SFhoeIiYqLjIGFH3CBkpOUlZaXmJmam5ydnp+QkaKjoq2Wh6ipqqusra6voKGys7S1tr21oAADs=');
    background-repeat: no-repeat;
    background-size: 1.2em;
    background-position: center center;
  }
  #flyout {
    position: fixed;
    z-index: 91;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #a9acbb;
    line-height: 1.6;
    padding: 36px 0 20px 0;
    border-left: 2px solid white;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 300ms;
    transition: transform 300ms;
  }
  #flyout.open,
  #nojs #flyout:target {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  .no-transform #flyout { display: none; }
  .no-transform #flyout.open,
  #nojs.no-transform #flyout:target { display: block; }
}

@media only screen and (max-width: 767px) and (hover: hover) {
  #nav-opener a:hover {
    opacity: 0.9;
  }
  #nav-opener a:active {
    opacity: 0.8;
  }
}


/* Navigation muss mitscrollen, wenn die Bildschirm-Höhe kleiner ist als Höhe der Navigation, sodass unten Links abgeschnitten sind */
@media (max-height: 30em) and (max-width: 767px) { /* 480px, Höhe der Navigation + Reserve */
  #flyout.open,
  #nojs #flyout:target {
    position: absolute;
    height: 100%;
    min-height: 25em;
  }

  html.moveout {
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    min-height: 28em;
  }

  html.moveout body {
    height: 100%;
    min-height: 28em;
    overflow: hidden;
  }
}


/* ---------------------- LI-Tags ------------------------ */

nav ul {
  list-style: none;
  text-align: right;
  margin: 0;
}

nav li {
  display: inline-block;
  margin-left: 5.5%;
}
@media only screen and (max-width: 1280px) {
  nav ul {
    text-align: center;
  }
  nav li {
    margin-left: 4%;
  }
}

nav li:first-child {
  margin-left: 0;
}


@media only screen and (max-width: 767px) {
  nav ul {
    padding: 0;
  }

  nav li {
    display: block;
    display: list-item;
    padding-left: 0;
    margin-left: 0;
  }

  nav li.spacer {
    margin-top: 1.5em;
  }
}


/* ---------------------- A-Tags ------------------------ */

nav li a,
#nav-closer { 
  text-decoration: none;
}

nav li a {
  text-transform: uppercase;
}


#nav-closer { 
  display: none;
}

@media only screen and (max-width: 767px) {
  nav ul {
    text-align: left;
  }
  nav li a {
    display: block;
    padding: 10px 30px;
  }
  #nav-closer { 
    display: block;
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1;
    position: absolute;
    top: 0;
    right: 0;
    padding: 11px 13px;
  }
}


/* --------------------- Link-Farben --------------------- */

nav li a { 
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 3px solid transparent;
}

nav a { 
  color: white;
}

nav li.curdir a {
  font-weight: 400;
  border-bottom: 3px solid white;
}

@media only screen and (max-width: 1280px) {
  nav a { 
    color: #565757;
  }
  nav li.curdir a {
    border-bottom: 3px solid #565757;
  }
}

@media only screen and (max-width: 767px) {
  nav li.curdir a {
    border-bottom: none;
    text-decoration: underline;
  }
}


/* -------------------- Hover-Farben ---------------------*/

@media (hover: hover) {
  nav a:hover { color: #e0e0e0; }
}

@media only screen and (max-width: 1280px) and (hover: hover) {
  nav a:hover { color: black; }
}


/* -------------------- Active-Farben ---------------------*/

@media (hover: hover) {
  nav a:active { color: #d0d0d0; }
}

@media only screen and (max-width: 1280px) and (hover: hover) {
  nav a:active { color: black; }
}


/* ==================== style/header-nav.css ==================== */


.head {
  background-color: black;
}


@media screen {
  .head > div {
    margin: 0 auto;
    max-width: 1280px;
    box-sizing: border-box;
  }

  .head .header,
  .head .nav {
    box-sizing: border-box;
  }
}


@media only screen and (min-width: 1281px) {
  .head {
    padding-top: 48px;
    padding-bottom: 22px;
    border-bottom: 15px solid white;
  }

  .startseite .head {
    border-bottom: none;
  }

  .head .header,
  .head .nav {
    display: inline-block;
    padding: 0;
  }

  .head .header {
    width: 33.33333%;
    padding-left: 10px;
  }

  .head .nav {
    width: 66.66666%;
    position: relative;
    top: -2px;
    padding-right: 10px;
  }
}


@media only screen and (max-width: 1280px) {
  .head {
    background-color: transparent;
  }

  .head .header {
    background-color: black;
    padding-top: 3.8%;
  }
 
  .head .nav {
    background-color: white;
    padding: 1.4%;
  }
}


@media only screen and (max-width: 767px) {
  .head {
    background-color: black;
    padding-bottom: 2%;
  }

  .head .header {
    max-width: 72%;
    padding-left: 10px;
  }

  .head .nav {
    background-color: transparent;
    padding: 0;
  }
}


/* ==================== style/hero.css ==================== */


.hero-box {
  background-color: white;
  padding-bottom: 30px;
}

@media only screen and (max-width: 1280px) {
  .hero-box {
    padding-bottom: 3%;
  }
}

@media only screen and (max-width: 767px) {
  .hero-box {
    padding-bottom: 20px;
    margin-bottom: -1px; /* sonst zeigen einige Browser zwischen Hero und Inhalt eine Haarlinie (durchscheinender Hintergrund) */
  }
}

.startseite .hero-box {
  padding-bottom: 0;
}


.hero {
  margin: 0 auto;
}

.startseite .hero {
  max-width: none;
}

@media screen {
  .hero {
    max-width: 1260px;
  }
}


.hero .responsive-box {
  padding-bottom: 34.69%;
}



/* ==================== style/main.css ==================== */


@media screen {
  .page-padding {
    padding-left: 4%;
    padding-right: 4%;
  }
}


main {
  line-height: 1.5;
  padding-bottom: 80px; /* maximale Randhöhe */
  background-color: white;
}

@media only screen and (max-width: 1280px) {
  main {
    padding-bottom: 6%; /* mittlere Randhöhe */
  }
}

@media only screen and (max-width: 767px) {
  main {
    padding-bottom: 40px; /* minimale Randhöhe */
  }
}

main a           { color: #565757; font-style: italic; }
main a:visited   { color: gray; }
@media (hover: hover) {
  main a:hover   { color: black; }
  main a:active  { color: gray; }
}

@media print {
  main { padding-bottom: 0; }
  main a,
  main a:visited,
  main a:hover,
  main a:active { color: black; text-decoration: underline; }
  main a[href^="http"]:after { content: " <"attr(href)">"; }
  main .notprinturl a[href^="http"]:after,
  main a[href^="http"].notprinturl:after { content: ""; }
}


article {
  max-width: 1280px;
  margin: 0 auto;
}

p,
.p {
  margin: 0 0 1em 0;
}

.nowrap {
  white-space: nowrap;
}


/* ==================== style/h1-h6.css ==================== */


h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-top: 0;
}

h1 { 
  font-size: 1.33em;
  color: #565757;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 4%;
}

h2 { 
  font-size: 1.25em;
  margin-bottom: 0.8em;
}


h3, h4, h5, h6 {
  font-size: 1em;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  h1 {
  font-size: 1em;
  }
}

/* ==================== style/galerie.css ==================== */


.galerie article {
  padding-top: 60px;
}


@media only screen and (max-width: 1280px) {
  .galerie article {
    padding-top: 3%;
  }
  .galerie .page-padding {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .galerie article {
    padding-top: 40px;
  }
}


.galerie h1 {
  height: 1px;
  overflow: hidden;
  margin: 0;
}


#js .bildershow {
  position: relative;
  height: 0; 
  overflow: hidden;
  padding-bottom: 56.25%
}

#js .bildershow .slidebar {
  position: absolute;
  width: 100%;
  height: 100%;
  
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  -webkit-backface-visibility: hidden; /* unterdrückt im Safari das "Flickern" beim Zurückspringen des Filmstreifens */
}



.bildershow .slidebar > * {
  position: relative;
  height: 0; 
  padding-bottom: 56.25%;
}

.bildershow .slidebar img {
  position: absolute;
  width: 100%;
  height: 100%;
}



#js .bildershow .slidebar > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#nojs .bildershow .slidebar > * {
  margin-bottom: 2em;
}

#js .bildershow  .slidebar > *:first-child {
  z-index: 1; /* damit beim Laden der Seite sofort das erste Bild angezeigt wird (sonst läge das letzte oben) */
}


.galerie-container {
  position: relative;
}
.galerie-container > * { /* sonst werden die Buttons unter Android von der Galerie verdeckt */
  -webkit-backface-visibility: hidden;
}

.galerie-container button {
  line-height: 1;
  background-color: transparent;
  position: absolute;
  top: 0;
  height: 100%;
  padding: 0 20px;
  border: none;
  cursor: pointer;
  opacity: 0.6;
}

@media only screen and (max-width: 530px) {
  .galerie-container > :first-child + button {
    padding-right: 15px;
  }
  .galerie-container > :first-child + button + button {
    padding-left: 15px;
  }
  .galerie-container button img {
    width: 11px;
    height: 23px;
  }
}

#nojs .galerie-container button {
  display: none;
}

@media print {
  .galerie-container button { display: none; }
}

@media (hover: hover) {
  .galerie-container button:not(:disabled):hover {
    opacity: 1;
  }

  .galerie-container button:not(:disabled):active {
    opacity: 0.75;
  }

  .galerie-container button:focus {
    outline: none;
  }
}


.galerie-container > :first-child + button {
  text-align: right;
  right: 0;
  z-index: 2;
}

.galerie-container > :first-child + button + button {
  text-align: left;
  left: 0;
  z-index: 3;
}

.galerie-container button:disabled {
  opacity: 0.1;
  cursor: default;
}


.galerie-player {
  margin-top: 2%;
  text-align: center;
}

.galerie-player button {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.galerie-player button[disabled] {
  display: none;
}

#nojs .galerie-player {
  display: none;
}
.position-display {
  line-height: 1;
  margin-top: 5px;
}

.position-display b {
  display: inline-block;
  background-color: #ccc;
  width: 8px;
  height: 8px;
  margin-left: 1px;
}
.position-display b:first-child {
  margin-left: 0;
}

@media only screen and (max-width: 479px) {
  .position-display b {
    width: 5px;
    height: 5px;
  }
}


.position-display b.curpoint {
  background-color: #777;  
}

#nojs .position-display {
  display: none;
}


/* ==================== style/textbox-kontaktbox.css ==================== */


.text-box {
  text-align: center;
  /* margin-bottom: 2.6%; */
}


/* Bullit */
.text-box > div:first-child {
  background-color: #c8cbd5;
  margin: 0 auto;
  width: 56px;
  height: 56px;
  padding: 11px;
  box-sizing: border-box;
  border-radius: 100%;
  margin-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .text-box > div:first-child {
    margin-bottom: 0.5em;
  }
}


.text-box h2 {
  font-size: 1.2em;
  margin-bottom: 1%;
}

@media only screen and (max-width: 767px) {
  .text-box h2 {
    margin-bottom: 1%;
  }
}



.kontaktadresse {
   margin-bottom: 2em;
}

@media only screen and (max-width: 767px) {
  .kontaktadresse {
    margin-bottom: 3.3em;
  }
  .kontaktadresse p {
    margin-bottom: 0.5em;
  }
}


.kontaktadresse img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1.2em;
}

.kontaktadresse h2 {
  margin-bottom: 0;
}



/* ==================== style/footer.css ==================== */


footer {
  padding-top: 32px;
  padding-bottom: 40px;
  background-image: url('../counter/count.php');
  background-repeat: no-repeat;
}

@media print {
  footer {
    display: none;
  }
}


footer > div {
  max-width: 1280px;
  margin: 0 auto;
}


footer .grid {
  max-width: 540px;
  margin-left: auto;
}

footer li {
  text-align: right;
}


@media only screen and (max-width: 1280px) {
  footer .grid {
    margin-right: auto; 
  }

  footer li {
    text-align: center;
  }
}


footer a {
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
}

@media (hover: hover) {
  footer a:hover {
    text-decoration: underline;
  }
}




/* ==================== style/startseite.css ==================== */


.startseite .telefon,
.startseite .claim {
  font-size: 1.33em;
  font-weight: 400;
  line-height: 2;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  padding-top: 0.5em;
}

@media only screen and (max-width: 1280px) {
  .startseite .telefon,
  .startseite .claim {
    font-size: 1.2em;
    line-height: 1.7;
    white-space: normal;
  }
}

@media only screen and (max-width: 767px) {
  .startseite .telefon {
  font-size: 1em;
  }
}

.startseite .claim h1 {
  font-size: 1em;
  line-height: inherit;
  margin: 0;
}

.startseite .telefon a {
  color: inherit;
  font-style: normal;
  text-decoration: none;
}

@media (hover: hover) {
  .startseite .telefon a:hover {
    text-decoration: underline;
  }
}


/* ==================== style/impressum.css ==================== */


.impressum main {
  text-align: center;
}

.impressum .links {
  list-style: none;
  padding-left: 0;
  line-height: 1.2;
  color: #aaa;
  margin-top: 2em;
}

@media print {
  .impressum .links {
    display: none;
  }
}

.impressum .links li {
  white-space: nowrap;
  margin-top: 0.7em;
}

@media (min-width: 840px) {
  .impressum .links li {
    display: inline-block;
  }

  .impressum .links li:not(:last-child):after {
    content: ' · ';
    display: inline-block;
    margin: 0 2px 0 5px;
  }
}


.impressum .links a {
  font-style: normal;
  text-decoration: none;
  color: #aaa;
}

@media (hover: hover) {
  .impressum .links a:hover {
    text-decoration: underline;
  }
}


@media screen {
  .impressum .notprinturl {
    display: none;
  }
}





/* ==================== style/datenschutz.css ==================== */


.datenschutz h1 {
  margin-bottom: 1.3em;
}
