@import url("vendor/fontawesome/css/all.min.css") layer(fontawesome);

@layer fontawesome, basis, inline-stile, ueberschreibungen;

/*
 * Bereinigte CSS-Kaskade (2026)
 * -----------------------------
 * Die historische Datei bestand aus mehreren Generationen mit immer
 * staerkeren Selektoren. Statt 633 einzelner Prioritaets-Anweisungen
 * ordnen Cascade Layers jetzt Basisregeln, ehemalige Inline-Stile und
 * gezielte Ueberschreibungen. So bleibt die bisherige Prioritaet erhalten,
 * waehrend kuenftige Aenderungen ohne globale Prioritaetsmarker moeglich sind.
 */

@layer basis {

/* Quelle: styles.css */
body {
margin: 0;
}

/* Stellenangebot MFA */
body.stellenangebotseite #mainContent {
  padding-bottom: 54px;
}

.stellenangebot {
  max-width: 980px;
  margin: 0 auto;
}

.stellenangebot-kopf {
  margin-bottom: 24px;
  padding: 30px 32px;
  border: 1px solid var(--praxis-rand);
  border-radius: 14px;
  background: linear-gradient(135deg, #f7fbfe 0%, var(--praxis-hellblau) 100%);
  box-shadow: 0 8px 24px rgba(34,67,96,.09);
}

.stellenangebot-kopf h1 {
  margin: 8px 0 14px;
  color: var(--praxis-blau-dunkel);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

.stellenangebot-einleitung {
  max-width: 800px;
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
}

.stellenstatus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 7px 12px;
  border: 1px solid #abd2bd;
  border-radius: 999px;
  background: #edf8f1;
  color: #24623e;
  font-size: 14px;
  font-weight: 700;
}

.stellenstatus i {
  color: #2d8a55;
  font-size: 9px;
}

.stellen-fakten {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.stellen-fakten > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--praxis-rand);
  border-radius: 11px;
  background: #fff;
}

.stellen-fakten i {
  flex: 0 0 auto;
  color: var(--praxis-blau);
  font-size: 21px;
}

.stellen-fakten span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
  line-height: 1.35;
}

.stellen-fakten strong {
  color: var(--praxis-blau-dunkel);
}

.stellen-spalten {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.stellen-karte {
  padding: 25px 27px;
  border: 1px solid var(--praxis-rand);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(34,67,96,.07);
}

.stellen-karte h2,
.stellen-vorteile h2,
.stellen-bewerbung h2 {
  margin: 0 0 16px;
  color: var(--praxis-blau-dunkel);
  font-size: 24px;
  line-height: 1.25;
}

.stellen-karte h2 i {
  margin-right: 7px;
  color: var(--praxis-blau);
}

.stellen-karte ul {
  margin: 0;
  padding-left: 21px;
}

.stellen-karte li {
  margin-bottom: 10px;
  line-height: 1.55;
}

.stellen-vorteile {
  margin-bottom: 24px;
  padding: 27px;
  border-radius: 13px;
  background: var(--praxis-blau-dunkel);
  color: #fff;
}

.stellen-vorteile .team-kicker,
.stellen-vorteile h2 {
  color: #fff;
}

.stellen-vorteile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stellen-vorteile-grid > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 9px;
  background: rgba(255,255,255,.08);
}

.stellen-vorteile-grid i {
  width: 24px;
  color: #ffd166;
  font-size: 19px;
  text-align: center;
}

.stellen-bewerbung {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px;
  border: 1px solid #bcd4e6;
  border-radius: 13px;
  background: #eef6fc;
}

.stellen-bewerbung-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--praxis-blau);
  color: #fff;
  font-size: 22px;
}

#mainContent .stellen-bewerbung a.btn-sekundaer {
  border-color: var(--praxis-blau);
  background: #fff;
  color: var(--praxis-blau-dunkel);
  box-shadow: none;
}

#mainContent .stellen-bewerbung a.btn-sekundaer:hover,
#mainContent .stellen-bewerbung a.btn-sekundaer:focus-visible {
  background: #dcecf7;
  color: var(--praxis-blau-dunkel);
}

.stellen-datenschutz {
  margin: 12px 0 0;
  color: #4d6070;
  font-size: 14px;
}

@media (max-width: 940px) {
  .stellen-fakten {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .stellenangebot-kopf {
    padding: 23px 20px;
  }

  .stellenangebot-einleitung {
    font-size: 16px;
  }

  .stellen-spalten,
  .stellen-vorteile-grid {
    grid-template-columns: 1fr;
  }

  .stellen-karte,
  .stellen-vorteile,
  .stellen-bewerbung {
    padding: 21px 19px;
  }

  .stellen-bewerbung {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .stellen-fakten {
    grid-template-columns: 1fr;
  }

  .stellen-fakten > div {
    min-height: 72px;
  }
}


/* Gut erkennbare Notfallkontakte in jeder Seitenleiste, die sie anbietet
   (nicht mehr auf die Startseite beschränkt). */
#sidebar .sidebar-notfall-hinweis {
  margin: 14px 0 8px;
  font-size: 14px;
  line-height: 1.45;
}

#sidebar a.sidebar-notfall {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 46px;
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid #d9b8b5;
  border-radius: 8px;
  background: #f3e7e6;
  color: #713632;
  box-shadow: 0 4px 12px rgba(25, 62, 97, 0.10);
  font-size: 15px;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
}

/* Prioritaetsmarker nötig: eine allgemeinere Regel (#sidebar > a:hover) setzt
   beim Hover font-weight: inherit Prioritaetsmarker, wodurch die Schrift hier
   sonst dünner wirken würde als im Ruhezustand. */
#sidebar a.sidebar-notfall:hover,
#sidebar a.sidebar-notfall:focus-visible {
  border-color: #cda5a2;
  background: #ead8d6;
  color: #632d29;
}

#wrapper {
width : 1366px;
background-color : white;
height : auto;
margin : 0 auto;
}
#header {
width : 100%;
height : 310px;
background-color : white;
float : left;
margin-top : 0;
margin-bottom : 0;
background-image : url(header-1.webp);
background-repeat : no-repeat;
}
#cssmenu {
width : auto;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
padding : 0;
margin : 0;
height : auto;
line-height : 1;
font-family : 'Lato', sans-serif;
font-weight : 400;
font-size : 1em;
color : #ffffff;
border-radius: 5px 5px 5px 5px;
}
#cssmenu:before, #cssmenu:after, #cssmenu > ul:before, #cssmenu > ul:after {
content : "";
display : table;
}
#cssmenu:after, #cssmenu > ul:after {
clear : both;
}
#cssmenu ul {
background : #3b5998;
border : #2b4479 solid 1px;
border : #2d4373 solid 1px;
}
#cssmenu ul > li {
float : left;
list-style : none;
}
#cssmenu ul > li > a {
display : block;
text-decoration : none;
padding : 18px 25px;
position : relative;
}
#cssmenu ul > li > a:hover {
background : #2d4373;
color : orange;
transition: 0.6;
}
#cssmenu ul > li > a:hover:before {
content : "";
z-index : 2;
position : absolute;
border-left : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-right : 0;
width : 100%;
height : 100%;
top : 0;
left : -1px;
transition: 0.6;
}
#cssmenu ul > li > a:hover:after {
content : "";
z-index : 2;
position : absolute;
border-right : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-left : 0;
width : 100%;
height : 100%;
top : 0;
right : -1px;
transition: 0.6;
}
#cssmenu > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul {
width : 200px;
position : absolute;
}
#cssmenu > ul > li > ul > li {
float : none;
position : relative;
}
#cssmenu > ul > li > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul > li > ul {
left : 200px;
top : 1px;
width : 200px;
}
#cssmenu > ul > li > ul > li > ul > li {
float : none;
}
#unternav ul {
margin-left : -45px;
height : auto;
width : 100%;

}
#unternav ul li {
float : left;
margin-top : -13px;
text-align : center;
width : auto;
height : auto;
border: 1px solid lightgrey;
border-radius: 3px 3px 3px 3px;
}
#unternav li {
display : inline-block;
padding : 3px 9px;
background-color : white;
margin-left : 5px;
}
#unternav li a {
color : black;
font-size : 1em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#unternav li:hover {
font-size : 1em;
border : black solid 1px;
background-color: lightgrey;
border: 1px solid black;
transition: 0.5;
}
#unternav li a:hover {
color : black;
font-size : 1em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#sidebar {
float : left;
width : 33%;
height : auto;
padding-left : 15px;
background-color : white;
clear : both;
box-sizing: border-box;
}
#sidebar p {
font-family: 'Roboto', sans-serif;
font-size : 1em;
color : black;
line-height : 1.5em;
font-weight : 300;
padding-left : 10px;
}
#sidebar a {
font-size : 1em;
color : blue;
text-decoration : underline;
display : block;
width : 70%;
height : auto;
margin-top: -11px;
padding :2px;
border: 1px solid lightgrey;
border-radius: 3px 3px 3px 3px;
box-sizing: border-box;

}
#sidebar a:hover {
color : black;
text-decoration : none;
font-weight : 300;
border : black solid 1px;
background-color: lightgray;
transition: 0.2;
}
#mainContent {
width : 66%;
height : auto;
float : right;
padding-left: 15px;
padding-right: 30px;
margin-top: 0px;
text-align : justify;
box-sizing: border-box;
background-color: white;
}
#mainContent p {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
text-align : justify;
}
#mainContent img {
width : 150px;
height : 150px;
float : left;
margin-right : 20px;
margin-bottom: 5px;
box-shadow: 1px 2px 6px lightgrey;
border-radius: 10px;
}
#mainContent ul li {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
margin-left : 160px;
list-style-type : disc;
}
#mainContent > h5 {
margin-left : 160px;
}
#mainContent a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
text-decoration : none;
margin-top : 0;
}
#mainContent a:hover {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : orange;
text-decoration : none;
margin-bottom : 30px;
}
#mainContent p > a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
line-height : 1.6em;
}
#mainContent p > a:hover {
color : orange;
font-size : 1em;
font-weight : 300;
}
h1 {
font-family: 'Roboto', sans-serif;
font-weight: bold;
font-size : 3em;
color : #3b5998;
font-weight : 700;
margin-left : 10px;
margin-top : 30px;
line-height : 1.6em;
}
h2 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 1.5em;
color : black;
margin-left : 10px;
margin-top : -40px;
line-height : 1.1em;
}
h3 {
font-family: 'Roboto', sans-serif;
font-size : 1.4em;
color : #3b5998;
font-weight : 300;
margin-top : 10px;
font-weight: normal;
}
h4 {
font-family: 'Roboto', sans-serif;
font-size : 2em;
font-weight : bold;
color : black;
margin-top : 60px;
}
#sidebar h4 {
color: darkblue;
font-size: 1.3em;
font-weight: 400;

}
h5 {
font-family: 'Roboto', sans-serif;
font-size : 1.7em;
color : black;
font-weight : 500;
margin-top : 0;
}
h6 {
font-family : 'Lato', sans-serif;
font-size : 30px;
color : #3b5998;
font-weight : 700;
margin-top : -30px;
margin-left : 10px;
}
hr {
border : none;
border-top : 1px dotted black;
background-color : #FFFFFF;
height : 1px;
}
#mainContent .fancybox img {
width : 109px;
height : 76px;
margin-top : 15px;
border-radius: 5%;
}
#footer {
width : 50%;
height : 30px;
float : left;
background-color : white;
font-family : sans-serif;
color : #fff;
font-size : 0.6em;
float: right;
text-align: right;
margin-top : 10px;
}

/* Quelle: media-queris.css */

@media screen and (max-width:1366px) {
#wrapper {
width : 1366px;
background-color : white;
height : auto;
margin : 0 auto;
}
#header {
width : 100%;
height : 310px;
background-color : white;
float : left;
margin-top : 0;
margin-bottom : 0;
background-image : url(header-1.webp);
background-repeat : no-repeat;
}
#cssmenu {
width : auto;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
padding : 0;
margin : 0;
height : auto;
line-height : 1;
font-family : 'Lato', sans-serif;
font-weight : 300;
font-size : 1em;
color : #ffffff;
border-radius: 5px 5px 5px 5px;
}
#cssmenu:before, #cssmenu:after, #cssmenu > ul:before, #cssmenu > ul:after {
content : "";
display : table;
}
#cssmenu:after, #cssmenu > ul:after {
clear : both;
}
#cssmenu ul {
background : #3b5998;
border : #2b4479 solid 1px;
border : #2d4373 solid 1px;
}
#cssmenu ul > li {
float : left;
list-style : none;
}
#cssmenu ul > li > a {
display : block;
text-decoration : none;
padding : 15px 44px;
position : relative;
}
#cssmenu ul > li > a:hover {
background : #2d4373;
color : orange;
transition: 0.6;
}
#cssmenu ul > li > a:hover:before {
content : "";
z-index : 2;
position : absolute;
border-left : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-right : 0;
width : 100%;
height : 100%;
top : 0;
left : -1px;
transition: 0.6;
}
#cssmenu ul > li > a:hover:after {
content : "";
z-index : 2;
position : absolute;
border-right : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-left : 0;
width : 100%;
height : 100%;
top : 0;
right : -1px;
transition: 0.6;
}
#cssmenu > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul {
width : 200px;
position : absolute;
}
#cssmenu > ul > li > ul > li {
float : none;
position : relative;
}
#cssmenu > ul > li > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul > li > ul {
left : 200px;
top : 1px;
width : 200px;
}
#cssmenu > ul > li > ul > li > ul > li {
float : none;
}
#unternav ul {
margin-left : -45px;
height : auto;
width : 100%;

}
#unternav ul li {
float : left;
margin-top : -13px;
text-align : center;
width : auto;
height : auto;
border: 1px solid lightgrey;
border-radius: 3px 3px 3px 3px;
}
#unternav li {
display : inline-block;
padding : 3px 9px;
background-color : white;
margin-left : 5px;
}
#unternav li a {
color : black;
font-size : 1em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#unternav li:hover {
font-size : 1em;
border : black solid 1px;
background-color: lightgrey;
border: 1px solid black;
transition: 0.5;
}
#unternav li a:hover {
color : black;
font-size : 1em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#sidebar {
float : left;
width : 33%;
height : auto;
padding-left : 15px;
background-color : white;
clear : both;
box-sizing: border-box;
}
#sidebar p {
font-family: 'Roboto', sans-serif;
font-size : 1em;
color : black;
line-height : 1.5em;
font-weight : 300;
padding-left : 10px;
}
#sidebar a {
font-size : 1em;
color : blue;
text-decoration : underline;
display : block;
width : 70%;
height : auto;
margin-top: -11px;
padding :2px;
border: 1px solid lightgrey;
border-radius: 3px 3px 3px 3px;
box-sizing: border-box;

}
#sidebar a:hover {
color : black;
text-decoration : none;
font-weight : 300;
border : black solid 1px;
background-color: lightgray;
transition: 0.2;
}
#mainContent {
width : 66%;
height : auto;
float : right;
padding-left: 15px;
padding-right: 30px;
margin-top: 0px;
text-align : justify;
box-sizing: border-box;
background-color: white;
}
#mainContent p {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
text-align : justify;
}
#mainContent img {
width : 125px;
height : 125px;
float : left;
margin-right : 40px;
box-shadow: 3px -3px 6px grey;
border-radius: 5%;
}
#mainContent ul li {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
margin-left : 160px;
list-style-type : disc;
}
#mainContent > h5 {
margin-left : 160px;
}
#mainContent a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
text-decoration : none;
margin-top : 0;
}
#mainContent a:hover {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : orange;
text-decoration : none;
margin-bottom : 30px;
}
#mainContent p > a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
line-height : 1.6em;
}
#mainContent p > a:hover {
color : orange;
font-size : 1em;
font-weight : 300;
}
h1 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 3em;
color : #3b5998;
font-weight : 700;
margin-left : 10px;
margin-top : 30px;
line-height : 1.6em;
}
h2 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 1.5em;
color : black;
margin-left : 10px;
margin-top : -40px;
line-height : 1.1em;
}
h3 {
font-family: 'Roboto', sans-serif;
font-size : 1.4em;
color : #3b5998;
font-weight : 300;
margin-top : 10px;
font-weight: normal;
}
h4 {
font-family: 'Roboto', sans-serif;
font-size : 2em;
font-weight : bold;
color : black;
margin-top : 60px;
}
#sidebar h4 {
color: darkblue;
font-size: 1.3em;
font-weight: 400;
}
h5 {
font-family: 'Roboto', sans-serif;
font-size : 1.7em;
color : black;
font-weight : 500;
margin-top : 0;
}
h6 {
font-family : 'Lato', sans-serif;
font-size : 30px;
color : #3b5998;
font-weight : 700;
margin-top : -30px;
margin-left : 10px;
}
hr {
border : none;
border-top : 1px dotted black;
background-color : #FFFFFF;
height : 1px;
}
#mainContent .fancybox img {
width : 109px;
height : 76px;
margin-top : 15px;
border-radius: 5%;
}
#footer {
width : 50%;
height : 30px;
float : left;
background-color : white;
font-family : sans-serif;
color : black;
font-size : 0.8em;
float: right;
text-align: right;
margin-top : 10px;
}
}
@media screen and (max-width:1280px) {
#wrapper {
width : 1260px;
background-color : white;
height : auto;
margin : 0 auto;
}
#header {
width : 100%;
height : 310px;
background-color : white;
float : left;
margin-top : 0;
margin-bottom : 0;
background-image : url(header-1.webp);
background-repeat : no-repeat;
}
#cssmenu {
width : auto;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
padding : 0;
margin : 0;
height : auto;
line-height : 1;
font-family : 'Lato', sans-serif;
font-weight : 300;
font-size : 1em;
color : #ffffff;
border-radius: 5px 5px 5px 5px;
}
#cssmenu:before, #cssmenu:after, #cssmenu > ul:before, #cssmenu > ul:after {
content : "";
display : table;
}
#cssmenu:after, #cssmenu > ul:after {
clear : both;
}
#cssmenu ul {
background : #3b5998;
border : #2b4479 solid 1px;
border : #2d4373 solid 1px;
}
#cssmenu ul > li {
float : left;
list-style : none;
}
#cssmenu ul > li > a {
display : block;
text-decoration : none;
padding : 15px 40px;
position : relative;
}
#cssmenu ul > li > a:hover {
background : #2d4373;
color : orange;
transition: 0.6;
}
#cssmenu ul > li > a:hover:before {
content : "";
z-index : 2;
position : absolute;
border-left : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-right : 0;
width : 100%;
height : 100%;
top : 0;
left : -1px;
transition: 0.6;
}
#cssmenu ul > li > a:hover:after {
content : "";
z-index : 2;
position : absolute;
border-right : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-left : 0;
width : 100%;
height : 100%;
top : 0;
right : -1px;
transition: 0.6;
}
#cssmenu > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul {
width : 200px;
position : absolute;
}
#cssmenu > ul > li > ul > li {
float : none;
position : relative;
}
#cssmenu > ul > li > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul > li > ul {
left : 200px;
top : 1px;
width : 200px;
}
#cssmenu > ul > li > ul > li > ul > li {
float : none;
}
#unternav ul {
margin-left : -45px;
height : auto;
width : 100%;

}
#unternav ul li {
float : left;
margin-top : -13px;
text-align : center;
width : auto;
height : auto;
border: 1px solid lightgrey;
border-radius: 3px 3px 3px 3px;
}
#unternav li {
display : inline-block;
padding : 3px 9px;
background-color : white;
margin-left : 5px;
}
#unternav li a {
color : black;
font-size : 1em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#unternav li:hover {
font-size : 1em;
border : black solid 1px;
background-color: lightgrey;
border: 1px solid black;
transition: 0.5;
}
#unternav li a:hover {
color : black;
font-size : 1em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#sidebar {
float : left;
width : 33%;
height : auto;
padding-left : 15px;
background-color : white;
clear : both;
box-sizing: border-box;
}
#sidebar p {
font-family: 'Roboto', sans-serif;
font-size : 1em;
color : black;
line-height : 1.5em;
font-weight : 300;
padding-left : 10px;
}
#sidebar a {
font-size : 1em;
color : blue;
text-decoration : underline;
display : block;
width : 70%;
height : auto;
margin-top: -11px;
padding :2px;
border: 1px solid lightgrey;
border-radius: 3px 3px 3px 3px;
box-sizing: border-box;

}
#sidebar a:hover {
color : black;
text-decoration : none;
font-weight : 300;
border : black solid 1px;
background-color: lightgray;
transition: 0.2;
}
#mainContent {
width : 66%;
height : auto;
float : right;
padding-left: 15px;
padding-right: 30px;
margin-top: 0px;
text-align : justify;
box-sizing: border-box;
background-color: white;
}
#mainContent p {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
text-align : justify;
}
#mainContent img {
width : 125px;
height : 125px;
float : left;
margin-right : 40px;
box-shadow: 3px -3px 6px grey;
border-radius: 5%;
}
#mainContent ul li {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
margin-left : 160px;
list-style-type : disc;
}
#mainContent > h5 {
margin-left : 160px;
}
#mainContent a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
text-decoration : none;
margin-top : 0;
}
#mainContent a:hover {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : orange;
text-decoration : none;
margin-bottom : 30px;
}
#mainContent p > a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
line-height : 1.6em;
}
#mainContent p > a:hover {
color : orange;
font-size : 1em;
font-weight : 300;
}
h1 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 3em;
color : #3b5998;
font-weight : 700;
margin-left : 10px;
margin-top : 30px;
line-height : 1.6em;
}
h2 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 1.5em;
color : black;
margin-left : 10px;
margin-top : -40px;
line-height : 1.1em;
}
h3 {
font-family: 'Roboto', sans-serif;
font-size : 1.4em;
color : #3b5998;
font-weight : 300;
margin-top : 10px;
font-weight: normal;
}
h4 {
font-family: 'Roboto', sans-serif;
font-size : 2em;
font-weight : bold;
color : black;
margin-top : 60px;
}
#sidebar h4 {
color: darkblue;
font-size: 1.3em;
font-weight: 400;
}
h5 {
font-family: 'Roboto', sans-serif;
font-size : 1.7em;
color : black;
font-weight : 500;
margin-top : 0;
}
h6 {
font-family : 'Lato', sans-serif;
font-size : 30px;
color : #3b5998;
font-weight : 700;
margin-top : -30px;
margin-left : 10px;
}
hr {
border : none;
border-top : 1px dotted black;
background-color : #FFFFFF;
height : 1px;
}
#mainContent .fancybox img {
width : 109px;
height : 76px;
margin-top : 15px;
border-radius: 5%;
}
#footer {
width : 50%;
height : 30px;
float : left;
background-color : white;
font-family : sans-serif;
color : black;
font-size : 0.8em;
float: right;
text-align: right;
margin-top : 10px;
}

}
@media screen and (max-width:1024px) {
#wrapper {
width : 1000px;
background-color : white;
height : auto;
margin : 0 auto;
}
#header {
width : 100%;
height : 260px;
background-color : white;
float : left;
margin-top : 0;
margin-bottom : 0;
background-image : url(header-1.webp);
background-repeat : no-repeat;
background-size: 110%;
}
#cssmenu {
width : auto;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
padding : 0;
margin : 0;
height : auto;
line-height : 1;
font-family : 'Lato', sans-serif;
font-weight : lighter;
font-size : 1em;
color : #ffffff;
border-radius: 5p0.95 5px 5px 5px;
}
#cssmenu:before, #cssmenu:after, #cssmenu > ul:before, #cssmenu > ul:after {
content : "";
display : table;
}
#cssmenu:after, #cssmenu > ul:after {
clear : both;
}
#cssmenu ul {
background : #3b5998;
border : #2b4479 solid 1px;
border : #2d4373 solid 1px;
}
#cssmenu ul > li {
float : left;
list-style : none;
}
#cssmenu ul > li > a {
display : block;
text-decoration : none;
padding : 13px 24px;
position : relative;
}
#cssmenu ul > li > a:hover {
background : #2d4373;
color : orange;
transition: 0.6;
}
#cssmenu ul > li > a:hover:before {
content : "";
z-index : 2;
position : absolute;
border-left : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-right : 0;
width : 100%;
height : 100%;
top : 0;
left : -1px;
transition: 0.6;
}
#cssmenu ul > li > a:hover:after {
content : "";
z-index : 2;
position : absolute;
border-right : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-left : 0;
width : 100%;
height : 100%;
top : 0;
right : -1px;
transition: 0.6;
}
#cssmenu > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul {
width : 200px;
position : absolute;
}
#cssmenu > ul > li > ul > li {
float : none;
position : relative;
}
#cssmenu > ul > li > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul > li > ul {
left : 200px;
top : 1px;
width : 200px;
}
#cssmenu > ul > li > ul > li > ul > li {
float : none;
}
#unternav li a {
color : black;
font-size : 0.9em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#unternav li:hover {
border : black solid 1px;
background-color: lightgrey;
border: 1px solid black;
transition: 0.5;
}
#unternav li a:hover {
color : black;
font-size : 0.9em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#sidebar {
float : left;
width : 33%;
height : auto;
padding-left : 15px;
background-color : white;
clear : both;
box-sizing: border-box;
}
#sidebar p {
font-family: 'Roboto', sans-serif;
font-size : 1em;
color : black;
line-height : 1.5em;
font-weight : 300;
padding-left : 10px;
}
#sidebar a {
font-size : 1em;
color : blue;
text-decoration : underline;
display : block;
width : 70%;
height : auto;
margin-top: -11px;
padding :2px;
border: 1px solid lightgrey;
border-radius: 3px 3px 3px 3px;
box-sizing: border-box;

}
#sidebar a:hover {
color : black;
text-decoration : none;
font-weight : 300;
border : black solid 1px;
background-color: lightgray;
transition: 0.2;
}
#mainContent {
width : 66%;
height : auto;
float : right;
padding-left: 15px;
padding-right: 30px;
margin-top: 0px;
text-align : justify;
box-sizing: border-box;
background-color: white;
}
#mainContent p {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
text-align : justify;
}
#mainContent img {
width : 125px;
height : 125px;
float : left;
margin-right : 40px;
box-shadow: 3px -3px 6px grey;
border-radius: 5%;
}
#mainContent ul li {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
margin-left : 160px;
list-style-type : disc;
}
#mainContent > h5 {
margin-left : 160px;
}
#mainContent a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
text-decoration : none;
margin-top : 0;
}
#mainContent a:hover {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : orange;
text-decoration : none;
margin-bottom : 30px;
}
#mainContent p > a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
line-height : 1.6em;
}
#mainContent p > a:hover {
color : orange;
font-size : 1em;
font-weight : 300;
}
h1 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 2.3em;
color : #3b5998;
font-weight : 700;
margin-left : 10px;
margin-top : 30px;
line-height : 1.6em;
}
h2 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 1.3em;
color : black;
margin-left : 10px;
margin-top : -30px;
line-height : 1.1em;
}
h3 {
font-family: 'Roboto', sans-serif;
font-size : 1.4em;
color : #3b5998;
font-weight : 300;
margin-top : 10px;
font-weight: normal;
}
h4 {
font-family: 'Roboto', sans-serif;
font-size : 2em;
font-weight : bold;
color : black;
margin-top : 60px;
}
#sidebar h4 {
color: darkblue;
font-size: 1.3em;
font-weight: 400;
}
h5 {
font-family: 'Roboto', sans-serif;
font-size : 1.7em;
color : black;
font-weight : 500;
margin-top : 0;
}
h6 {
font-family : 'Lato', sans-serif;
font-size : 30px;
color : #3b5998;
font-weight : 700;
margin-top : -30px;
margin-left : 10px;
}
hr {
border : none;
border-top : 1px dotted black;
background-color : #FFFFFF;
height : 1px;
}
#mainContent .fancybox img {
width : 109px;
height : 76px;
margin-top : 15px;
border-radius: 5%;
}
#footer {
width : 50%;
height : 30px;
float : left;
background-color : white;
font-family : sans-serif;
color : black;
font-size : 0.8em;
float: right;
text-align: right;
margin-top : 10px;
}
}
@media screen and (max-width:980px) {
#wrapper {
width : 950px;
background-color : white;
height : auto;
margin : 0 auto;
}
#header {
width : 100%;
height : 260px;
background-color : white;
float : left;
margin-top : 0;
margin-bottom : 0;
background-image : url(header-1.webp);
background-repeat : no-repeat;
background-size: 110%;
}
#cssmenu {
width : auto;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
padding : 0;
margin : 0;
height : auto;
line-height : 1;
font-family : 'Lato', sans-serif;
font-weight : lighter;
font-size : 1em;
color : #ffffff;
border-radius: 5p0.95 5px 5px 5px;
}
#cssmenu:before, #cssmenu:after, #cssmenu > ul:before, #cssmenu > ul:after {
content : "";
display : table;
}
#cssmenu:after, #cssmenu > ul:after {
clear : both;
}
#cssmenu ul {
background : #3b5998;
border : #2b4479 solid 1px;
border : #2d4373 solid 1px;
}
#cssmenu ul > li {
float : left;
list-style : none;
}
#cssmenu ul > li > a {
display : block;
text-decoration : none;
padding : 13px 18px;
position : relative;
}
#cssmenu ul > li > a:hover {
background : #2d4373;
color : orange;
transition: 0.6;
}
#cssmenu ul > li > a:hover:before {
content : "";
z-index : 2;
position : absolute;
border-left : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-right : 0;
width : 100%;
height : 100%;
top : 0;
left : -1px;
transition: 0.6;
}
#cssmenu ul > li > a:hover:after {
content : "";
z-index : 2;
position : absolute;
border-right : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-left : 0;
width : 100%;
height : 100%;
top : 0;
right : -1px;
transition: 0.6;
}
#cssmenu > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul {
width : 200px;
position : absolute;
}
#cssmenu > ul > li > ul > li {
float : none;
position : relative;
}
#cssmenu > ul > li > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul > li > ul {
left : 200px;
top : 1px;
width : 200px;
}
#cssmenu > ul > li > ul > li > ul > li {
float : none;
}
#unternav li a {
color : black;
font-size : 0.9em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#unternav li:hover {
border : black solid 1px;
background-color: lightgrey;
border: 1px solid black;
transition: 0.5;
}
#unternav li a:hover {
color : black;
font-size : 0.9em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#sidebar {
float : left;
width : 33%;
height : auto;
padding-left : 15px;
background-color : white;
clear : both;
box-sizing: border-box;
}
#sidebar p {
font-family: 'Roboto', sans-serif;
font-size : 1em;
color : black;
line-height : 1.5em;
font-weight : 300;
padding-left : 10px;
}
#sidebar a {
font-size : 1em;
color : blue;
text-decoration : underline;
display : block;
width : 80%;
height : auto;
margin-top: -11px;
padding :2px;
border: 1px solid lightgrey;
border-radius: 3px 3px 3px 3px;
box-sizing: border-box;

}
#sidebar a:hover {
color : black;
text-decoration : none;
font-weight : 300;
border : black solid 1px;
background-color: lightgray;
transition: 0.2;
}
#mainContent {
width : 66%;
height : auto;
float : right;
padding-left: 15px;
padding-right: 30px;
margin-top: 0px;
text-align : justify;
box-sizing: border-box;
background-color: white;
}
#mainContent p {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
text-align : justify;
}
#mainContent img {
width : 110px;
height : 110px;
float : left;
margin-right : 40px;
box-shadow: 3px -3px 6px grey;
border-radius: 5%;
}
#mainContent ul li {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
margin-left : 160px;
list-style-type : disc;
}
#mainContent > h5 {
margin-left : 160px;
}
#mainContent a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
text-decoration : none;
margin-top : 0;
}
#mainContent a:hover {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : orange;
text-decoration : none;
margin-bottom : 30px;
}
#mainContent p > a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
line-height : 1.6em;
}
#mainContent p > a:hover {
color : orange;
font-size : 1em;
font-weight : 300;
}
h1 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 2.3em;
color : #3b5998;
font-weight : 700;
margin-left : 10px;
margin-top : 30px;
line-height : 1.6em;
}
h2 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 1.3em;
color : black;
margin-left : 10px;
margin-top : -30px;
line-height : 1.1em;
}
h3 {
font-family: 'Roboto', sans-serif;
font-size : 1.4em;
color : #3b5998;
font-weight : 300;
margin-top : 10px;
font-weight: normal;
}
h4 {
font-family: 'Roboto', sans-serif;
font-size : 2em;
font-weight : bold;
color : black;
margin-top : 60px;
}
#sidebar h4 {
color: darkblue;
font-size: 1.3em;
font-weight: 400;
}
h5 {
font-family: 'Roboto', sans-serif;
font-size : 1.7em;
color : black;
font-weight : 500;
margin-top : 0;
}
h6 {
font-family : 'Lato', sans-serif;
font-size : 30px;
color : #3b5998;
font-weight : 700;
margin-top : -30px;
margin-left : 10px;
}
hr {
border : none;
border-top : 1px dotted black;
background-color : #FFFFFF;
height : 1px;
}
#mainContent .fancybox img {
width : 109px;
height : 76px;
margin-top : 15px;
border-radius: 5%;
}
#footer {
width : 50%;
height : 30px;
float : left;
background-color : white;
font-family : sans-serif;
color : black;
font-size : 0.8em;
float: right;
text-align: right;
margin-top : 10px;
}
}
@media screen and (max-width:800px) {
#wrapper {
width : 780px;
background-color : white;
height : auto;
margin : 0 auto;
}
#header {
width : 100%;
height : 200px;
background-color : white;
float : left;
margin-top : 0;
margin-bottom : 0;
background-image : url(header-1.webp);
background-repeat : no-repeat;
background-size: 110%;
}
#cssmenu {
width : auto;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
padding : 0;
margin : 0;
height : auto;
line-height : 1;
font-family : 'Lato', sans-serif;
font-weight : lighter;
font-size : 0.93em;
color : #ffffff;
border-radius: 5px9 5px 5px 5px 5px;
}
#cssmenu:before, #cssmenu:after, #cssmenu > ul:before, #cssmenu > ul:after {
content : "";
display : table;
}
#cssmenu:after, #cssmenu > ul:after {
clear : both;
}
#cssmenu ul {
background : #3b5998;
border : #2b4479 solid 1px;
border : #2d4373 solid 1px;
}
#cssmenu ul > li {
float : left;
list-style : none;
}
#cssmenu ul > li > a {
display : block;
text-decoration : none;
padding : 9px 18px;
position : relative;
}
#cssmenu ul > li > a:hover {
background : #2d4373;
color : orange;
transition: 0.6;
}
#cssmenu ul > li > a:hover:before {
content : "";
z-index : 2;
position : absolute;
border-left : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-right : 0;
width : 100%;
height : 100%;
top : 0;
left : -1px;
transition: 0.6;
}
#cssmenu ul > li > a:hover:after {
content : "";
z-index : 2;
position : absolute;
border-right : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-left : 0;
width : 100%;
height : 100%;
top : 0;
right : -1px;
transition: 0.6;
}
#cssmenu > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul {
width : 200px;
position : absolute;
}
#cssmenu > ul > li > ul > li {
float : none;
position : relative;
}
#cssmenu > ul > li > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul > li > ul {
left : 200px;
top : 1px;
width : 200px;
}
#cssmenu > ul > li > ul > li > ul > li {
float : none;
}
#unternav li a {
color : black;
font-size : 0.7em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#unternav li:hover {
border : black solid 1px;
background-color: lightgrey;
border: 1px solid black;
transition: 0.5;
}
#unternav li a:hover {
color : black;
font-size : 0.7em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#sidebar {
float : left;
width : 33%;
height : auto;
padding-left : 15px;
background-color : white;
clear : both;
box-sizing: border-box;
}
#sidebar p {
font-family: 'Roboto', sans-serif;
font-size : 0.9em;
color : black;
line-height : 1.3em;
font-weight : 300;
padding-left : 10px;
}
#sidebar a {
font-size : 0.9em;
color : blue;
text-decoration : underline;
display : block;
width : 80%;
height : auto;
margin-top: -11px;
padding :2px;
border: 1px solid lightgrey;
border-radius: 3px 3px 3px 3px;
box-sizing: border-box;

}
#sidebar a:hover {
color : black;
text-decoration : none;
font-weight : 300;
border : black solid 1px;
background-color: lightgray;
transition: 0.2;
}
#mainContent {
width : 66%;
height : auto;
float : right;
padding-left: 15px;
padding-right: 30px;
margin-top: 0px;
text-align : justify;
box-sizing: border-box;
background-color: white;
}
#mainContent p {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
text-align : justify;
}
#mainContent img {
width : 90px;
height : 90px;
float : left;
margin-right : 40px;
box-shadow: 3px -3px 6px grey;
border-radius: 5%;
}
#mainContent ul li {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
margin-left : 0px;
list-style-type : disc;
}
#mainContent > h5 {
margin-left : 130px;
}
#mainContent a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
text-decoration : none;
margin-top : 0;
}
#mainContent a:hover {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : orange;
text-decoration : none;
margin-bottom : 30px;
}
#mainContent p > a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
line-height : 1.6em;
}
#mainContent p > a:hover {
color : orange;
font-size : 1em;
font-weight : 300;
}
h1 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 2em;
color : #3b5998;
font-weight : 700;
margin-left : 10px;
margin-top : 30px;
line-height : 1.6em;
}
h2 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 1em;
color : black;
margin-left : 10px;
margin-top : -30px;
line-height : 1.1em;
}
h3 {
font-family: 'Roboto', sans-serif;
font-size : 1.4em;
color : #3b5998;
font-weight : 300;
margin-top : 10px;
font-weight: normal;
}
h4 {
font-family: 'Roboto', sans-serif;
font-size : 1.8em;
font-weight : bold;
color : black;
margin-top : 60px;
}
#sidebar h4 {
color: darkblue;
font-size: 1.2em;
font-weight: 400;
}
h5 {
font-family: 'Roboto', sans-serif;
font-size : 1.7em;
color : black;
font-weight : 500;
margin-top : 0;
}
h6 {
font-family : 'Lato', sans-serif;
font-size : 30px;
color : #3b5998;
font-weight : 700;
margin-top : -30px;
margin-left : 10px;
}
hr {
border : none;
border-top : 1px dotted black;
background-color : #FFFFFF;
height : 1px;
}
#mainContent .fancybox img {
width : 109px;
height : 76px;
margin-top : 15px;
border-radius: 5%;
}
#footer {
width : 50%;
height : 30px;
float : left;
background-color : white;
font-family : sans-serif;
color : black;
font-size : 0.6em;
float: right;
text-align: right;
margin-top : 10px;
}
}
@media screen and (max-width:768px) {
#wrapper {
width : 750px;
background-color : white;
height : auto;
margin : 0 auto;
}
#header {
width : 100%;
height : 195px;
background-color : white;
float : left;
margin-top : 0;
margin-bottom : 0;
background-image : url(header-1.webp);
background-repeat : no-repeat;
background-size: 110%;
}
#cssmenu {
width : auto;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
padding : 0;
margin : 0;
height : auto;
line-height : 1;
font-family : 'Lato', sans-serif;
font-weight : lighter;
font-size : 0.94em;
color : #ffffff;
border-radius: 5px 95px 5px 5px 5px;
}
#cssmenu:before, #cssmenu:after, #cssmenu > ul:before, #cssmenu > ul:after {
content : "";
display : table;
}
#cssmenu:after, #cssmenu > ul:after {
clear : both;
}
#cssmenu ul {
background : #3b5998;
border : #2b4479 solid 1px;
border : #2d4373 solid 1px;
}
#cssmenu ul > li {
float : left;
list-style : none;
}
#cssmenu ul > li > a {
display : block;
text-decoration : none;
padding : 10px 15px;
position : relative;
}
#cssmenu ul > li > a:hover {
background : #2d4373;
color : orange;
transition: 0.6;
}
#cssmenu ul > li > a:hover:before {
content : "";
z-index : 2;
position : absolute;
border-left : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-right : 0;
width : 100%;
height : 100%;
top : 0;
left : -1px;
transition: 0.6;
}
#cssmenu ul > li > a:hover:after {
content : "";
z-index : 2;
position : absolute;
border-right : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-left : 0;
width : 100%;
height : 100%;
top : 0;
right : -1px;
transition: 0.6;
}
#cssmenu > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul {
width : 200px;
position : absolute;
}
#cssmenu > ul > li > ul > li {
float : none;
position : relative;
}
#cssmenu > ul > li > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul > li > ul {
left : 200px;
top : 1px;
width : 200px;
}
#cssmenu > ul > li > ul > li > ul > li {
float : none;
}
#unternav li a {
color : black;
font-size : 0.7em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#unternav li:hover {
border : black solid 1px;
background-color: lightgrey;
border: 1px solid black;
transition: 0.5;
}
#unternav li a:hover {
color : black;
font-size : 0.7em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#sidebar {
float : left;
width : 33%;
height : auto;
padding-left : 15px;
background-color : white;
clear : both;
box-sizing: border-box;
}
#sidebar p {
font-family: 'Roboto', sans-serif;
font-size : 0.9em;
color : black;
line-height : 1.3em;
font-weight : 300;
padding-left : 10px;
}
#sidebar a {
font-size : 0.9em;
color : blue;
text-decoration : underline;
display : block;
width : 80%;
height : auto;
margin-top: -11px;
padding :2px;
border: 1px solid lightgrey;
border-radius: 3px 3px 3px 3px;
box-sizing: border-box;

}
#sidebar a:hover {
color : black;
text-decoration : none;
font-weight : 300;
border : black solid 1px;
background-color: lightgray;
transition: 0.2;
}
#mainContent {
width : 66%;
height : auto;
float : right;
padding-left: 15px;
padding-right: 30px;
margin-top: 0px;
text-align : justify;
box-sizing: border-box;
background-color: white;
}
#mainContent p {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
text-align : justify;
}
#mainContent img {
width : 90px;
height : 90px;
float : left;
margin-right : 40px;
box-shadow: 3px -3px 6px grey;
border-radius: 5%;
}
#mainContent ul li {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
margin-left : 0px;
list-style-type : disc;
}
#mainContent > h5 {
margin-left : 130px;
}
#mainContent a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
text-decoration : none;
margin-top : 0;
}
#mainContent a:hover {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : orange;
text-decoration : none;
margin-bottom : 30px;
}
#mainContent p > a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
line-height : 1.6em;
}
#mainContent p > a:hover {
color : orange;
font-size : 1em;
font-weight : 300;
}
h1 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 2em;
color : #3b5998;
font-weight : 700;
margin-left : 10px;
margin-top : 30px;
line-height : 1.6em;
}
h2 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 1em;
color : black;
margin-left : 10px;
margin-top : -30px;
line-height : 1.1em;
}
h3 {
font-family: 'Roboto', sans-serif;
font-size : 1.4em;
color : #3b5998;
font-weight : 300;
margin-top : 10px;
font-weight: normal;
}
h4 {
font-family: 'Roboto', sans-serif;
font-size : 1.8em;
font-weight : bold;
color : black;
margin-top : 60px;
}
#sidebar h4 {
color: darkblue;
font-size: 1.2em;
font-weight: 400;
}
h5 {
font-family: 'Roboto', sans-serif;
font-size : 1.7em;
color : black;
font-weight : 500;
margin-top : 0;
}
h6 {
font-family : 'Lato', sans-serif;
font-size : 30px;
color : #3b5998;
font-weight : 700;
margin-top : -30px;
margin-left : 10px;
}
hr {
border : none;
border-top : 1px dotted black;
background-color : #FFFFFF;
height : 1px;
}
#mainContent .fancybox img {
width : 109px;
height : 76px;
margin-top : 15px;
border-radius: 5%;
}
#footer {
width : 50%;
height : 30px;
float : left;
background-color : white;
font-family : sans-serif;
color : black;
font-size : 0.6em;
float: right;
text-align: right;
margin-top : 10px;
}
}
@media screen and (max-width:736px) {
#wrapper {
width : 720px;
background-color : white;
height : auto;
margin : 0 auto;
}
#header {
width : 100%;
height : 195px;
background-color : white;
float : left;
margin-top : 0;
margin-bottom : 0;
background-image : url(header-1.webp);
background-repeat : no-repeat;
background-size: 110%;
}
#cssmenu {
width : auto;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
padding : 0;
margin : 0;
height : auto;
line-height : 1;
font-family : 'Lato', sans-serif;
font-weight : lighter;
font-size : 0.97em;
color : #ffffff;
border-radius: 5p0.95 5px 5px 5px;
}
#cssmenu:before, #cssmenu:after, #cssmenu > ul:before, #cssmenu > ul:after {
content : "";
display : table;
}
#cssmenu:after, #cssmenu > ul:after {
clear : both;
}
#cssmenu ul {
background : #3b5998;
border : #2b4479 solid 1px;
border : #2d4373 solid 1px;
}
#cssmenu ul > li {
float : left;
list-style : none;
}
#cssmenu ul > li > a {
display : block;
text-decoration : none;
padding : 10px 15px;
position : relative;
}
#cssmenu ul > li > a:hover {
background : #2d4373;
color : orange;
transition: 0.6;
}
#cssmenu ul > li > a:hover:before {
content : "";
z-index : 2;
position : absolute;
border-left : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-right : 0;
width : 100%;
height : 100%;
top : 0;
left : -1px;
transition: 0.6;
}
#cssmenu ul > li > a:hover:after {
content : "";
z-index : 2;
position : absolute;
border-right : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-left : 0;
width : 100%;
height : 100%;
top : 0;
right : -1px;
transition: 0.6;
}
#cssmenu > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul {
width : 200px;
position : absolute;
}
#cssmenu > ul > li > ul > li {
float : none;
position : relative;
}
#cssmenu > ul > li > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul > li > ul {
left : 200px;
top : 1px;
width : 200px;
}
#cssmenu > ul > li > ul > li > ul > li {
float : none;
}
#unternav {
margin-top: -15px;
}
#unternav li a {
color : black;
font-size : 0.7em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#unternav li:hover {
border : black solid 1px;
background-color: lightgrey;
border: 1px solid black;
transition: 0.5;
}
#unternav li a:hover {
color : black;
font-size : 0.7em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#unternav ul li{
margin-top: 5px;
}
#sidebar {
float : left;
width : 33%;
height : auto;
padding-left : 15px;
background-color : white;
clear : both;
box-sizing: border-box;
}
#sidebar p {
font-family: 'Roboto', sans-serif;
font-size : 0.9em;
color : black;
line-height : 1.3em;
font-weight : 300;
padding-left : 10px;
}
#sidebar a {
font-size : 0.9em;
color : blue;
text-decoration : underline;
display : block;
width : 90%;
height : auto;
margin-top: -11px;
padding :2px;
border: 1px solid lightgrey;
border-radius: 3px 3px 3px 3px;
box-sizing: border-box;

}
#sidebar a:hover {
color : black;
text-decoration : none;
font-weight : 300;
border : black solid 1px;
background-color: lightgray;
transition: 0.2;
}
#mainContent {
width : 66%;
height : auto;
float : right;
padding-left: 15px;
padding-right: 30px;
margin-top: 0px;
text-align : justify;
box-sizing: border-box;
background-color: white;
}
#mainContent p {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
text-align : justify;
}
#mainContent img {
width : 90px;
height : 90px;
float : left;
margin-right : 40px;
box-shadow: 3px -3px 6px grey;
border-radius: 5%;
}
#mainContent ul li {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
margin-left : 0px;
list-style-type : disc;
}
#mainContent > h5 {
margin-left : 130px;
}
#mainContent a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
text-decoration : none;
margin-top : 0;
}
#mainContent a:hover {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : orange;
text-decoration : none;
margin-bottom : 30px;
}
#mainContent p > a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
line-height : 1.6em;
}
#mainContent p > a:hover {
color : orange;
font-size : 1em;
font-weight : 300;
}
h1 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 2em;
color : #3b5998;
font-weight : 700;
margin-left : 10px;
margin-top : 30px;
line-height : 1.6em;
}
h2 {
font-family: 'Roboto', sans-serif;
font-weight: 400;
font-size : 0.9em;
color : black;
margin-left : 10px;
margin-top : -30px;
line-height : 1.1em;
}
h3 {
font-family: 'Roboto', sans-serif;
font-size : 1.4em;
color : #3b5998;
font-weight : 300;
margin-top : 10px;
font-weight: normal;
}
h4 {
font-family: 'Roboto', sans-serif;
font-size : 1.8em;
font-weight : bold;
color : black;
margin-top : 60px;
}
#sidebar h4 {
color: darkblue;
font-size: 1.2em;
font-weight: 400;
}
h5 {
font-family: 'Roboto', sans-serif;
font-size : 1.7em;
color : black;
font-weight : 500;
margin-top : 0;
}
h6 {
font-family : 'Lato', sans-serif;
font-size : 30px;
color : #3b5998;
font-weight : 700;
margin-top : -30px;
margin-left : 10px;
}
hr {
border : none;
border-top : 1px dotted black;
background-color : #FFFFFF;
height : 1px;
}
#mainContent .fancybox img {
width : 109px;
height : 76px;
margin-top : 15px;
border-radius: 5%;
}
#footer {
width : 60%;
height : 30px;
float : left;
background-color : white;
font-family : sans-serif;
color : black;
font-size : 9px;
float: right;
text-align: right;
margin-top : 10px;
}
}
@media screen and (max-width:667px) {
#wrapper {
width : 647px;
background-color : white;
height : auto;
margin : 0 auto;
}
#header {
width : 100%;
height : 170px;
background-color : white;
float : left;
margin-top : 0;
margin-bottom : 0;
background-image : url(header-1.webp);
background-repeat : no-repeat;
background-size: 110%;
}
#cssmenu {
width : auto;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
padding : 0;
margin : 0;
height : auto;
line-height : 1;
font-family : 'Lato', sans-serif;
font-weight : 300;
font-size : 0.94em;
color : #ffffff;
border-radius: 5p0.95 5px 5px 5px;
}
#cssmenu:before, #cssmenu:after, #cssmenu > ul:before, #cssmenu > ul:after {
content : "";
display : table;
}
#cssmenu:after, #cssmenu > ul:after {
clear : both;
}
#cssmenu ul {
background : #3b5998;
border : #2b4479 solid 1px;
border : #2d4373 solid 1px;
}
#cssmenu ul > li {
float : left;
list-style : none;
}
#cssmenu ul > li > a {
display : block;
text-decoration : none;
padding : 10px 15px;
position : relative;
}
#cssmenu ul > li > a:hover {
background : #2d4373;
color : orange;
transition: 0.6;
}
#cssmenu ul > li > a:hover:before {
content : "";
z-index : 2;
position : absolute;
border-left : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-right : 0;
width : 100%;
height : 100%;
top : 0;
left : -1px;
transition: 0.6;
}
#cssmenu ul > li > a:hover:after {
content : "";
z-index : 2;
position : absolute;
border-right : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-left : 0;
width : 100%;
height : 100%;
top : 0;
right : -1px;
transition: 0.6;
}
#cssmenu > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul {
width : 200px;
position : absolute;
}
#cssmenu > ul > li > ul > li {
float : none;
position : relative;
}
#cssmenu > ul > li > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul > li > ul {
left : 200px;
top : 1px;
width : 200px;
}
#cssmenu > ul > li > ul > li > ul > li {
float : none;
}
#unternav {
margin-top: -15px;
}
#unternav li a {
color : black;
font-size : 0.7em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#unternav li:hover {
border : black solid 1px;
background-color: lightgrey;
border: 1px solid black;
transition: 0.5;
}
#unternav li a:hover {
color : black;
font-size : 0.7em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#unternav ul li{
margin-top: 5px;
}
#sidebar {
float : left;
width : 33%;
height : auto;
padding-left : 15px;
background-color : white;
clear : both;
box-sizing: border-box;
}
#sidebar p {
font-family: 'Roboto', sans-serif;
font-size : 0.9em;
color : black;
line-height : 1.3em;
font-weight : 300;
padding-left : 10px;
}
#sidebar a {
font-size : 0.9em;
color : blue;
text-decoration : underline;
display : block;
width : 96%;
height : auto;
margin-top: -11px;
padding :2px;
border: 1px solid lightgrey;
border-radius: 3px 3px 3px 3px;
box-sizing: border-box;

}
#sidebar a:hover {
color : black;
text-decoration : none;
font-weight : 300;
border : black solid 1px;
background-color: lightgray;
transition: 0.2;
}
#mainContent {
width : 66%;
height : auto;
float : right;
padding-left: 15px;
padding-right: 30px;
margin-top: 0px;
text-align : justify;
box-sizing: border-box;
background-color: white;
}
#mainContent p {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
text-align : justify;
}
#mainContent img {
width : 90px;
height : 90px;
float : left;
margin-right : 40px;
box-shadow: 3px -3px 6px grey;
border-radius: 5%;
}
#mainContent ul li {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
margin-left : 0px;
list-style-type : disc;
}
#mainContent > h5 {
margin-left : 130px;
}
#mainContent a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
text-decoration : none;
margin-top : 0;
}
#mainContent a:hover {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : orange;
text-decoration : none;
margin-bottom : 30px;
}
#mainContent p > a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
line-height : 1.6em;
}
#mainContent p > a:hover {
color : orange;
font-size : 1em;
font-weight : 300;
}
h1 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 2em;
color : #3b5998;
font-weight : 700;
margin-left : 10px;
margin-top : 30px;
line-height : 1.6em;
}
h2 {
font-family: 'Roboto', sans-serif;
font-weight: 400;
font-size : 0.9em;
color : black;
margin-left : 10px;
margin-top : -30px;
line-height : 1.1em;
}
h3 {
font-family: 'Roboto', sans-serif;
font-size : 1.4em;
color : #3b5998;
font-weight : 300;
margin-top : 10px;
font-weight: normal;
}
h4 {
font-family: 'Roboto', sans-serif;
font-size : 1.4em;
font-weight : bold;
color : black;
margin-top : 60px;
}
#sidebar h4 {
color: darkblue;
font-size: 1.2em;
font-weight: 400;
}
h5 {
font-family: 'Roboto', sans-serif;
font-size : 1.3em;
color : black;
font-weight : 500;
margin-top : 0;
}
h6 {
font-family : 'Lato', sans-serif;
font-size : 30px;
color : #3b5998;
font-weight : 700;
margin-top : -30px;
margin-left : 10px;
}
hr {
border : none;
border-top : 1px dotted black;
background-color : #FFFFFF;
height : 1px;
}
#mainContent .fancybox img {
width : 109px;
height : 76px;
margin-top : 15px;
border-radius: 5%;
}
#footer {
width : 60%;
height : 30px;
float : left;
background-color : white;
font-family : sans-serif;
color : black;
font-size : 9px;
float: right;
text-align: right;
margin-top : 10px;
}
}
@media screen and (max-width:640px) {
#wrapper {
width : 630px;
background-color : white;
height : auto;
margin : 0 auto;
}
#header {
width : 100%;
height : 150px;
background-color : white;
float : left;
margin-top : 0;
margin-bottom : 0;
background-size: 0%;
}
#cssmenu {
width : auto;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
padding : 0;
margin : 0;
height : auto;
line-height : 1;
font-family : 'Lato', sans-serif;
font-weight : 300;
font-size : 0.94em;
color : #ffffff;
border-radius: 5p0.95 5px 5px 5px;
}
#cssmenu:before, #cssmenu:after, #cssmenu > ul:before, #cssmenu > ul:after {
content : "";
display : table;
}
#cssmenu:after, #cssmenu > ul:after {
clear : both;
}
#cssmenu ul {
background : #3b5998;
border : #2b4479 solid 1px;
border : #2d4373 solid 1px;
}
#cssmenu ul > li {
float : left;
list-style : none;
}
#cssmenu ul > li > a {
display : block;
text-decoration : none;
padding : 12px 12px;
position : relative;
}
#cssmenu ul > li > a:hover {
background : #2d4373;
color : orange;
transition: 0.6;
}
#cssmenu ul > li > a:hover:before {
content : "";
z-index : 2;
position : absolute;
border-left : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-right : 0;
width : 100%;
height : 100%;
top : 0;
left : -1px;
transition: 0.6;
}
#cssmenu ul > li > a:hover:after {
content : "";
z-index : 2;
position : absolute;
border-right : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-left : 0;
width : 100%;
height : 100%;
top : 0;
right : -1px;
transition: 0.6;
}
#cssmenu > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul {
width : 200px;
position : absolute;
}
#cssmenu > ul > li > ul > li {
float : none;
position : relative;
}
#cssmenu > ul > li > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul > li > ul {
left : 200px;
top : 1px;
width : 200px;
}
#cssmenu > ul > li > ul > li > ul > li {
float : none;
}
#unternav {
margin-top: -15px;
}
#unternav li a {
color : black;
font-size : 0.6em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#unternav li:hover {
border : black solid 1px;
background-color: lightgrey;
border: 1px solid black;
transition: 0.5;
}
#unternav li a:hover {
color : black;
font-size : 0.6em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#unternav ul li{
margin-top: 5px;
}
#sidebar {
float : left;
width : 33%;
height : auto;
padding-left : 15px;
background-color : white;
clear : both;
box-sizing: border-box;
}
#sidebar p {
font-family: 'Roboto', sans-serif;
font-size : 0.9em;
color : black;
line-height : 1.3em;
font-weight : 300;
padding-left : 10px;
}
#sidebar a {
font-size : 0.9em;
color : blue;
text-decoration : underline;
display : block;
width : 96%;
height : auto;
margin-top: -11px;
padding :2px;
border: 1px solid lightgrey;
border-radius: 3px 3px 3px 3px;
box-sizing: border-box;

}
#sidebar a:hover {
color : black;
text-decoration : none;
font-weight : 300;
border : black solid 1px;
background-color: lightgray;
transition: 0.2;
}
#mainContent {
width : 66%;
height : auto;
float : right;
padding-left: 15px;
padding-right: 30px;
margin-top: 0px;
text-align : justify;
box-sizing: border-box;
background-color: white;
}
#mainContent p {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
text-align : justify;
}
#mainContent img {
width : 75px;
height : 75px;
float : left;
margin-right : 20px;
box-shadow: 3px -3px 6px grey;
border-radius: 5%;
}
#mainContent ul li {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
margin-left : 0px;
list-style-type : disc;
}
#mainContent > h5 {
margin-left : 90px;
}
#mainContent a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
text-decoration : none;
margin-top : 0;
}
#mainContent a:hover {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : orange;
text-decoration : none;
margin-bottom : 30px;
}
#mainContent p > a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
line-height : 1.6em;
}
#mainContent p > a:hover {
color : orange;
font-size : 1em;
font-weight : 300;
}
h1 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 2em;
color : #3b5998;
font-weight : 700;
margin-left : 10px;
margin-top : 30px;
line-height : 1.6em;
}
h2 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 1em;
color : black;
margin-left : 10px;
margin-top : -30px;
line-height : 1.1em;
}
h3 {
font-family: 'Roboto', sans-serif;
font-size : 1.4em;
color : #3b5998;
font-weight : 300;
margin-top : 10px;
font-weight: normal;
}
h4 {
font-family: 'Roboto', sans-serif;
font-size : 1.4em;
font-weight : bold;
color : black;
margin-top : 60px;
}
#sidebar h4 {
color: darkblue;
font-size: 1.1em;
font-weight: 400;
}
h5 {
font-family: 'Roboto', sans-serif;
font-size : 1.3em;
color : black;
font-weight : 500;
margin-top : 0;
}
h6 {
font-family : 'Lato', sans-serif;
font-size : 30px;
color : #3b5998;
font-weight : 700;
margin-top : -30px;
margin-left : 10px;
}
hr {
border : none;
border-top : 1px dotted black;
background-color : #FFFFFF;
height : 1px;
}
#mainContent .fancybox img {
width : 109px;
height : 76px;
margin-top : 15px;
border-radius: 5%;
}
#footer {
width : 70%;
height : 30px;
float : left;
background-color : white;
font-family : sans-serif;
color : black;
font-size : 9px;
float: right;
text-align: right;
margin-top : 10px;
}
}
@media screen and (max-width:600px) {
#wrapper {
width : 590px;
background-color : white;
height : auto;
margin : 0 auto;
}
#header {
width : 100%;
height : 165px;
background-color : white;
float : left;
margin-top : 0;
margin-bottom : 0;
background-size: 0%;
}
#cssmenu {
width : auto;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
padding : 0;
margin : 0;
height : auto;
line-height : 1;
font-family : 'Lato', sans-serif;
font-weight : 300;
font-size : 0.9em;
color : #ffffff;
border-radius: 5p0.95 5px 5px 5px;
}
#cssmenu:before, #cssmenu:after, #cssmenu > ul:before, #cssmenu > ul:after {
content : "";
display : table;
}
#cssmenu:after, #cssmenu > ul:after {
clear : both;
}
#cssmenu ul {
background : #3b5998;
border : #2b4479 solid 1px;
border : #2d4373 solid 1px;
}
#cssmenu ul > li {
float : left;
list-style : none;
}
#cssmenu ul > li > a {
display : block;
text-decoration : none;
padding : 12px 12px;
position : relative;
}
#cssmenu ul > li > a:hover {
background : #2d4373;
color : orange;
transition: 0.6;
}
#cssmenu ul > li > a:hover:before {
content : "";
z-index : 2;
position : absolute;
border-left : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-right : 0;
width : 100%;
height : 100%;
top : 0;
left : -1px;
transition: 0.6;
}
#cssmenu ul > li > a:hover:after {
content : "";
z-index : 2;
position : absolute;
border-right : grey solid 1px;
border-top : 0;
border-bottom : 0;
border-left : 0;
width : 100%;
height : 100%;
top : 0;
right : -1px;
transition: 0.6;
}
#cssmenu > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul {
width : 200px;
position : absolute;
}
#cssmenu > ul > li > ul > li {
float : none;
position : relative;
}
#cssmenu > ul > li > ul > li > ul {
visibility : hidden;
position : absolute;
}
#cssmenu > ul > li > ul > li:hover > ul {
visibility : visible;
position : absolute;
transition: 0.6;
}
#cssmenu > ul > li > ul > li > ul {
left : 200px;
top : 1px;
width : 200px;
}
#cssmenu > ul > li > ul > li > ul > li {
float : none;
}
#unternav {
margin-top: -15px;
}
#unternav li a {
color : black;
font-size : 0.6em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#unternav li:hover {
border : black solid 1px;
background-color: lightgrey;
border: 1px solid black;
transition: 0.5;
}
#unternav li a:hover {
color : black;
font-size : 0.6em;
text-decoration : none;
font-family : 'Lato', sans-serif;
font-weight : 300;
}
#unternav ul li{
margin-top: 5px;
}
#sidebar {
float : left;
width : 33%;
height : auto;
padding-left : 15px;
background-color : white;
clear : both;
box-sizing: border-box;
}
#sidebar p {
font-family: 'Roboto', sans-serif;
font-size : 0.9em;
color : black;
line-height : 1.3em;
font-weight : 300;
padding-left : 10px;
}
#sidebar a {
font-size : 0.9em;
color : blue;
text-decoration : underline;
display : block;
width : 96%;
height : auto;
margin-top: -11px;
padding :2px;
border: 1px solid lightgrey;
border-radius: 3px 3px 3px 3px;
box-sizing: border-box;

}
#sidebar a:hover {
color : black;
text-decoration : none;
font-weight : 300;
border : black solid 1px;
background-color: lightgray;
transition: 0.2;
}
#mainContent {
width : 66%;
height : auto;
float : right;
padding-left: 15px;
padding-right: 30px;
margin-top: 0px;
text-align : justify;
box-sizing: border-box;
background-color: white;
}
#mainContent p {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
text-align : justify;
}
#mainContent img {
width : 75px;
height : 75px;
float : left;
margin-right : 20px;
box-shadow: 3px -3px 6px grey;
border-radius: 5%;
}
#mainContent ul li {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
line-height : 1.6em;
margin-left : 0px;
list-style-type : disc;
}
#mainContent > h5 {
margin-left : 90px;
}
#mainContent a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : black;
text-decoration : none;
margin-top : 0;
}
#mainContent a:hover {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
color : orange;
text-decoration : none;
margin-bottom : 30px;
}
#mainContent p > a {
font-family: 'Roboto', sans-serif;
font-size : 1em;
font-weight : 300;
line-height : 1.6em;
}
#mainContent p > a:hover {
color : orange;
font-size : 1em;
font-weight : 300;
}
h1 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 2em;
color : #3b5998;
font-weight : 700;
margin-left : 10px;
margin-top : 30px;
line-height : 1.6em;
}
h2 {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size : 0.8em;
color : black;
margin-left : 10px;
margin-top : -30px;
line-height : 1.1em;

margin-left : 10px;
margin-top : -30px;
line-height : 1.6em;
}
h3 {
font-family: 'Roboto', sans-serif;
font-size : 1.4em;
color : #3b5998;
font-weight : 300;
margin-top : 10px;
font-weight: normal;
}
h4 {
font-family: 'Roboto', sans-serif;
font-size : 1.4em;
font-weight : bold;
color : black;
margin-top : 60px;
}
#sidebar h4 {
color: darkblue;
font-size: 1.1em;
font-weight: 400;
}
h5 {
font-family: 'Roboto', sans-serif;
font-size : 1.3em;
color : black;
font-weight : 500;
margin-top : 0;
}
h6 {
font-family : 'Lato', sans-serif;
font-size : 30px;
color : #3b5998;
font-weight : 700;
margin-top : -30px;
margin-left : 10px;
}
hr {
border : none;
border-top : 1px dotted black;
background-color : #FFFFFF;
height : 1px;
}
#mainContent .fancybox img {
width : 109px;
height : 76px;
margin-top : 15px;
border-radius: 5%;
}
#footer {
width : 70%;
height : 30px;
float : left;
background-color : white;
font-family : sans-serif;
color : black;
font-size : 9px;
float: right;
text-align: right;
margin-top : 10px;
}
}

/* Quelle: modernisierung.css */
:root {
  --praxis-blau: #315f91;
  --praxis-blau-dunkel: #244a73;
  --praxis-hellblau: #eaf3fa;
  --praxis-rot: #b52b24;
  --praxis-text: #25313c;
  --praxis-rand: #dce5ec;
  --praxis-hintergrund: #f3f6f8;
  --praxis-weiss: #fff;
  --praxis-schatten: 0 12px 32px rgba(34, 67, 96, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--praxis-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

#wrapper {
  background: var(--praxis-weiss);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.umzug-hinweis-top {
  border-radius: 0;
}

.umzug-hinweis-top .umzug-title {
  letter-spacing: -0.02em;
}

#header {
  box-sizing: border-box;
}

#header h1,
#header .header-h1 {
  letter-spacing: -0.025em;
  text-shadow: 0 1px 1px #fff, 0 0 10px rgba(255,255,255,.9);
}

#cssmenu {
  position: relative;
  z-index: 20;
  box-shadow: 0 6px 18px rgba(28, 57, 86, .16);
}

#cssmenu ul {
  display: flex;
  flex-wrap: wrap;
}

#cssmenu ul > li {
  flex: 1 1 auto;
}

#cssmenu ul > li > a {
  min-height: 50px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.container-fluid > .row,
#mainContent,
#sidebar {
  box-sizing: border-box;
}

#sidebar {
  background: linear-gradient(180deg, #f8fbfd 0%, #eef5fa 100%);
  border: 1px solid var(--praxis-rand);
  border-radius: 14px;
  box-shadow: 0 9px 25px rgba(34,67,96,.08);
}

#sidebar h4 {
  padding: 0 0 9px;
  border-bottom: 2px solid #c7dceb;
  line-height: 1.3;
}

#sidebar p {
  margin: 0 0 15px;
  line-height: 1.6;
}

#sidebar h4,
#mainContent h1,
#mainContent h2,
#mainContent h3,
#mainContent h4,
#mainContent h5 {
  letter-spacing: -0.015em;
}

#sidebar > a {
  display: block;
  background: #fff;
  border: 1px solid var(--praxis-rand);
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

#sidebar > a:hover,
#sidebar > a:focus {
  border-color: #9bb9d2;
  box-shadow: 0 5px 14px rgba(49,95,145,.12);
  transform: translateY(-1px);
}

.stellenanzeige {
  box-shadow: 0 7px 20px rgba(34,67,96,.07);
}

#mainContent img:not(.scrollicon img),
.praxis-team {
  box-shadow: 0 8px 20px rgba(34,67,96,.14);
}

a:focus-visible,
button:focus-visible {
  outline-offset: 3px;
}

/* Einfliegende Schnellkontakt-Leiste */
.kontaktleiste {
  position: fixed;
  z-index: 1000;
  top: 50%;
  right: 0;
  width: 238px;
  display: grid;
  gap: 7px;
  transform: translateY(-50%);
  animation: kontaktEinflug .65s cubic-bezier(.22,.8,.3,1) both;
}

.kontaktleiste a {
  width: 238px;
  min-height: 54px;
  padding: 0 16px 0 0;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.25);
  border-right: 0;
  border-radius: 12px 0 0 12px;
  background: var(--praxis-blau-dunkel);
  box-shadow: 0 7px 22px rgba(22,44,66,.23);
  transform: translateX(184px);
  transition: transform .28s ease, background-color .2s ease;
}

.kontaktleiste a:hover,
.kontaktleiste a:focus-visible {
  background: var(--praxis-blau);
  transform: translateX(0);
}

.kontaktleiste .kontakt-icon {
  width: 54px;
  min-width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  font-size: 23px;
  font-weight: 700;
}

.kontaktleiste .kontakt-text {
  padding-left: 4px;
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

.kontaktleiste .kontakt-oben {
  background: #637a8c;
}

@keyframes kontaktEinflug {
  from { opacity: 0; margin-right: -70px; }
  to { opacity: 1; margin-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .kontaktleiste,
  .kontaktleiste a {
    animation: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  #wrapper {
    border-radius: 0;
  }

  .umzug-hinweis-top {
    border-radius: 0;
  }

  #header h2 small {
    display: inline-block;
    margin-top: 4px;
    font-size: 15px;
  }

  #cssmenu ul > li {
    flex: 1 1 25%;
  }
}

@media (max-width: 700px) {
  .kontaktleiste {
    top: auto;
    right: 12px;
    bottom: 12px;
    width: auto;
    display: flex;
    gap: 8px;
    transform: none;
  }

  .kontaktleiste a {
    width: 50px;
    min-height: 50px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    transform: none;
  }

  .kontaktleiste a:hover,
  .kontaktleiste a:focus-visible {
    transform: translateY(-2px);
  }

  .kontaktleiste .kontakt-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }

  .kontaktleiste .kontakt-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
}

/* Quelle: responsive.css */
/* ============================================================
   RESPONSIVE LAYER (echtes Responsive Design statt separater
   mobil.html). Wird als letztes CSS geladen und ersetzt gezielt
   die alten, auf feste Pixel-Breiten "eingefrorenen" Regeln aus
   media-queris.css / media-style-kleine-groesse.css.
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
}

/* Übergang vom Einleitungstext zu den Leistungs-Karten: der Text wird
   als zentrierter, schmalerer "Lead"-Absatz mit einer kleinen
   Akzentlinie unter der Überschrift abgesetzt; ein kurzer, zentrierter
   Zwischentitel führt dann zu den Karten über – so wirkt der Sprung von
   Fließtext zu Karten weniger abrupt, ohne extra Inhalt zu erfinden
   (z. B. eine FAQ, für die es hier keine echten Frage/Antwort-Inhalte
   gibt). */
.leistungen-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.leistungen-intro h4,
.leistungen-intro h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
}

.leistungen-intro h4::after,
.leistungen-intro h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: var(--praxis-blau);
  border-radius: 2px;
  transform: translateX(-50%);
}

/* Gleicher Akzentstrich wie bei "Fachärztliche Leistungen", aber
   linksbündig für Überschriften über normalem Fließtext (z. B. die
   persönliche Begrüßung) – vereinheitlicht die Optik der Abschnitts-
   Überschriften, ohne den Textblock selbst zu zentrieren. */
.abschnitt-titel {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.abschnitt-titel::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: var(--praxis-blau);
  border-radius: 2px;
}

.leistungen-kicker {
  color: var(--praxis-blau-dunkel);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Fachärztliche Leistungen als Karten statt als lange Fließtext-Liste
   mit kleinen umflossenen Bildern – übersichtlicher und besser scanbar,
   vor allem auf dem Handy (dort einspaltig). */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 28px 0 10px;
}

.leistung-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--praxis-rand);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(34,67,96,.08);
  transition: transform .18s ease, box-shadow .18s ease;
  scroll-margin-top: 90px;
}

/* Bei einer ungeraden Anzahl Karten (aktuell 5) bliebe die letzte Karte
   sonst allein in der Zeile stehen mit viel Leerraum daneben – sie wird
   stattdessen zentriert und schmaler dargestellt. */
.leistung-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 11px);
  margin: 0 auto;
}

/* Abschluss-Kachel nach den Leistungs-Karten: fasst noch einmal die
   wichtigsten Praxis-Infos zusammen und schafft einen ruhigeren
   Übergang zum dunklen Footer, statt dass die letzte Karte direkt in
   den Footer übergeht. */
.leistungen-abschluss {
  margin: 34px 0 10px;
  padding: 34px 28px;
  background: var(--praxis-hellblau);
  border-radius: 14px;
  text-align: center;
}

.leistungen-abschluss i {
  color: var(--praxis-blau);
  font-size: 26px;
  margin-bottom: 10px;
  display: inline-block;
}

.leistungen-abschluss p {
  max-width: 520px;
}

.leistungen-abschluss .btn,
.leistungen-abschluss .btn:hover {
  display: inline-block;
}

.leistungen-abschluss-adresse {
  font-size: 13.5px;
  color: #4a5a68;
}

.leistung-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(34,67,96,.14);
}

.leistung-inhalt {
  padding: 18px 20px 22px;
}

@media screen and (max-width: 700px) {
  .leistungen-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .leistung-card:last-child:nth-child(odd) {
    max-width: 100%;
  }
}

html, body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Fußbereich (blaues Band mit Kontakt/Sprechzeiten/Leistungen) soll wie
   der "Wir sind umgezogen"-Hinweis am Kopf trotzdem randlos bleiben. */
footer,
.container-fluid[style*="background-color"] {
  box-sizing: border-box;
}

.container-fluid[style*="background-color"] > .row {
  max-width: 1360px;
}

/* ============================================================
   FOOTER (neu)
   Der alte Footer war ein dreispaltiges Facebook-Blau-Band (#3b5998),
   das Sprechzeiten und Leistungen aus der Sidebar komplett wiederholte
   und dadurch sehr hoch wurde. Der neue Footer ist kompakt, nutzt die
   dunklere Praxis-Farbe (Abgrenzung zum helleren Menü-Blau) und zeigt
   nur, was hier wirklich hingehört: Kontakt/NAP-Angaben (gut fürs
   lokale SEO) und interne Links zu allen Unterseiten.
   ============================================================ */
.site-footer {
  clear: both;
  background: var(--praxis-blau-dunkel);
  color: #eaf0f6;
  padding: 32px 28px 18px;
  box-sizing: border-box;
}

.site-footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.site-footer-col {
  flex: 1 1 260px;
  min-width: 220px;
}

.site-footer h4 {
  letter-spacing: 0;
}

.site-footer p {
  margin: 0 0 10px;
  line-height: 1.55;
  font-size: 14px;
  color: #eaf0f6;
}

.site-footer a {
  color: #eaf0f6;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer-links li {
  margin: 0 0 8px;
  font-size: 14px;
}

.site-footer-bottom {
  max-width: 1360px;
  margin: 20px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 12.5px;
  color: rgba(234,240,246,.75);
}

@media screen and (max-width: 600px) {
  .site-footer {
    padding: 26px 20px 16px;
  }
  .site-footer-inner {
    gap: 22px;
  }
}

body.teamseite .seiten-layout {
  display: grid;
  grid-template-columns: minmax(290px, 320px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 0 0 52px;
}

body.teamseite .seiten-layout #sidebar,
body.teamseite .seiten-layout #mainContent {
  min-width: 0;
}

body.teamseite .seiten-layout #mainContent {
  background: #fff;
  border: 1px solid var(--praxis-rand);
  border-radius: 14px;
  box-shadow: 0 9px 25px rgba(34,67,96,.08);
  text-align: left;
}

body.teamseite #sidebar > a {
  min-height: 48px;
  align-items: center;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: break-word;
}

body.teamseite #sidebar .sidebar-titel {
  padding: 0 0 9px;
  border-bottom: 2px solid #c7dceb;
  line-height: 1.3;
}

body.teamseite .sidebar-hinweis {
  color: var(--praxis-rot);
  font-size: 14px;
  font-weight: 600;
}

body.teamseite #header h1,
body.teamseite #header .header-h1 {
  max-width: 800px;
}

body.teamseite #header h2 {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

body.teamseite .header-kontakt {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 0 7px;
  color: var(--praxis-text);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

body.teamseite .header-kontakt a {
  color: inherit;
  text-decoration: none;
}

body.teamseite #header .header-badge {
  position: relative;
  z-index: 2;
  clear: both;
  border-radius: 20px;
  line-height: 1.3;
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
}

body.teamseite #mainContent p,
body.teamseite #mainContent li {
  color: var(--praxis-text);
  font-size: 16px;
  line-height: 1.65;
}

body.teamseite .team-einleitung {
  margin-bottom: 25px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--praxis-rand);
}

body.teamseite .team-kicker {
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.teamseite .abschnitt-titel {
  line-height: 1.2;
}

body.teamseite .team-hauptkarte {
  overflow: hidden;
  background: #fff;
  border: 1px solid #cfdde8;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(34,67,96,.12);
}

body.teamseite .team-hauptkarte-oben {
  display: grid;
  grid-template-columns: minmax(260px, 38%) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
  padding: 26px;
  background: linear-gradient(135deg, #f7fbfe 0%, #eaf3fa 100%);
}

body.teamseite .profil-bild {
  margin: 0;
}

body.teamseite #mainContent .profil-bild img {
  box-shadow: 0 7px 18px rgba(34,67,96,.16);
}

body.teamseite .team-hauptkarte-inhalt {
  align-self: center;
}

body.teamseite .team-rolle,
body.teamseite .team-funktion {
  letter-spacing: .045em;
  text-transform: uppercase;
}

body.teamseite .team-hauptkarte-inhalt > h2 {
  line-height: 1.15;
}

body.teamseite .team-hauptkarte-inhalt > h3,
body.teamseite .berufliche-stationen > h3,
body.teamseite .team-karte h3,
body.teamseite .team-kontaktbox h3 {
  font-size: 21px;
  line-height: 1.3;
}

body.teamseite #mainContent .qualifikationen-liste {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

body.teamseite #mainContent .qualifikationen-liste li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  background: rgba(255,255,255,.82);
  border: 1px solid #d8e5ef;
  border-radius: 9px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 650;
}

body.teamseite .qualifikationen-liste i {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--praxis-blau);
}

body.teamseite .berufliche-stationen {
  padding: 24px 26px 26px;
  border-top: 1px solid #dce7ef;
}

body.teamseite .stationen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.teamseite .station {
  padding: 16px;
  background: #f8fbfd;
  border: 1px solid var(--praxis-rand);
  border-radius: 10px;
}

body.teamseite .station-jahr {
  display: block;
  margin-bottom: 6px;
  color: var(--praxis-blau);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 850;
}

body.teamseite .stationen-erfahrung {
  padding: 15px 17px;
  background: var(--praxis-hellblau);
  border-left: 4px solid var(--praxis-blau);
  border-radius: 0 8px 8px 0;
}

body.teamseite .team-abschnitt {
  margin-top: 42px;
}

body.teamseite .team-abschnitt-kopf {
  margin-bottom: 20px;
}

body.teamseite .team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

body.teamseite .team-karte {
  display: grid;
  grid-template-columns: 175px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--praxis-rand);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(34,67,96,.07);
}

body.teamseite .team-karte:hover {
  border-color: #b8cede;
  box-shadow: 0 9px 24px rgba(34,67,96,.11);
}

body.teamseite #mainContent .team-karte img {
  object-fit: cover;
  object-position: center top;
}

body.teamseite .team-kontaktbox {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
  padding: 22px 24px;
  background: var(--praxis-hellblau);
  border-left: 5px solid var(--praxis-blau);
  border-radius: 0 12px 12px 0;
}

body.teamseite .team-kontaktbox > i {
  color: var(--praxis-blau);
  font-size: 27px;
}

body.teamseite .team-kontaktbox .btn {
  white-space: nowrap;
}

@media screen and (max-width: 1150px) {
  body.teamseite .team-grid {
    grid-template-columns: 1fr;
  }

  body.teamseite #mainContent .qualifikationen-liste {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 900px) {
  body.teamseite .seiten-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px 40px;
  }

  body.teamseite .seiten-layout #mainContent {
    order: 1;
  }

  body.teamseite .seiten-layout #sidebar {
    order: 2;
  }

  body.teamseite #header {
    min-height: 250px;
  }

  body.teamseite #header h1,
  body.teamseite #header .header-h1 {
    max-width: 76%;
  }

  body.teamseite #header h2,
  body.teamseite .header-kontakt {
    max-width: 76%;
    font-size: 15px;
  }
}

@media screen and (max-width: 700px) {
  body.teamseite .team-hauptkarte-oben,
  body.teamseite .team-karte,
  body.teamseite .team-kontaktbox {
    grid-template-columns: 1fr;
  }

  body.teamseite .stationen-grid {
    grid-template-columns: 1fr;
  }

  body.teamseite .profil-bild {
    max-width: 430px;
  }

  body.teamseite .team-kontaktbox .btn {
    justify-self: start;
  }
}

@media screen and (max-width: 600px) {
  body.teamseite .seiten-layout {
    padding-inline: 16px;
  }

  body.teamseite #header {
    min-height: 270px;
  }

  body.teamseite #header::before {
    background: linear-gradient(100deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.94) 58%, rgba(255,255,255,.25) 82%, rgba(255,255,255,0) 100%);
  }

  body.teamseite #header h1,
  body.teamseite #header .header-h1,
  body.teamseite #header h2,
  body.teamseite .header-kontakt {
    max-width: calc(100% - 48px);
  }

  body.teamseite .header-kontakt {
    font-size: 14px;
  }

  body.teamseite .team-hauptkarte-oben,
  body.teamseite .berufliche-stationen,
  body.teamseite .team-karte,
  body.teamseite .team-kontaktbox {
    padding: 17px;
  }

  body.teamseite .team-kontaktbox .btn {
    width: 100%;
    text-align: center;
  }
}

/* Regionale Anfahrtsseite */
body.anfahrtseite .anfahrt-einleitung {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--praxis-rand);
}

body.anfahrtseite .anfahrt-adresskarte {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  background: linear-gradient(135deg, #f7fbfe 0%, #eaf3fa 100%);
  border: 1px solid #cfdde8;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(34,67,96,.09);
}

body.anfahrtseite .anfahrt-adressicon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--praxis-blau);
  color: #fff;
  border-radius: 50%;
  font-size: 21px;
}

body.anfahrtseite .anfahrt-zusatz {
  color: #536779;
  font-size: 14px;
}

body.anfahrtseite .anfahrt-adresskarte .btn {
  white-space: nowrap;
}

body.anfahrtseite .regionen-abschnitt {
  margin-top: 34px;
}

body.anfahrtseite .regionen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

body.anfahrtseite .region-karte {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--praxis-rand);
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(34,67,96,.06);
}

body.anfahrtseite .region-karte > i,
body.anfahrtseite .anfahrt-hinweise > div > i {
  margin-bottom: 10px;
  color: var(--praxis-blau);
  font-size: 23px;
}

body.anfahrtseite .region-karte a,
body.anfahrtseite .anfahrt-hinweise a {
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.anfahrtseite .anfahrt-hinweise {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

body.anfahrtseite .anfahrt-hinweise > div {
  padding: 20px;
  background: #f8fbfd;
  border-left: 4px solid var(--praxis-blau);
  border-radius: 0 10px 10px 0;
}

@media screen and (max-width: 700px) {
  body.anfahrtseite .anfahrt-adresskarte,
  body.anfahrtseite .regionen-grid,
  body.anfahrtseite .anfahrt-hinweise {
    grid-template-columns: 1fr;
  }

  body.anfahrtseite .anfahrt-adresskarte .btn {
    justify-self: start;
  }
}

@media screen and (max-width: 600px) {
  body.anfahrtseite .anfahrt-adresskarte,
  body.anfahrtseite .region-karte,
  body.anfahrtseite .anfahrt-hinweise > div {
    padding: 17px;
  }

  body.anfahrtseite .anfahrt-adresskarte .btn {
    width: 100%;
    text-align: center;
  }
}

/* Ein Button-Stil statt drei (blaues .btn, dunkles btn-outline-dark,
   gelbes Bootstrap-btn-outline-warning im Footer). Ein dezenter Schatten
   und etwas mehr Schriftgewicht heben die Buttons als klickbare Elemente
   hervor, ohne von der ruhigen Praxis-Optik abzuweichen (kein Farbwechsel,
   keine grelle Fläche – nur ein leichter "Auftrieb"). */
.btn,
.btn-outline-dark,
.btn-outline-warning,
.container-fluid .btn {
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover,
.btn-outline-dark:hover,
.btn-outline-warning:hover {
  transform: translateY(-2px);
}

/* Kopfbild: Das Foto bleibt (siehe Rückmeldung). Statt einzelner,
   unschön wirkender Textboxen sorgt ein durchgehender heller Schleier
   auf der linken Bildhälfte für zuverlässige Lesbarkeit – ein in
   Praxis-Websites übliches, ruhiges Muster. Der alte grelle
   Leuchtschatten auf der Schrift entfällt. */
#header {
  position: relative;
  isolation: isolate;
}

#header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,.94) 0%,
    rgba(255,255,255,.94) 42%,
    rgba(255,255,255,.55) 58%,
    rgba(255,255,255,0) 72%
  );
  pointer-events: none;
}

#header h1,
#header .header-h1,
#header h2 {
  position: relative;
  z-index: 1;
}

/* "Alle Kassen und Privat"-Hinweis im Kopfbereich: als kleines,
   dezentes Praxis-Badge statt als reiner Fließtext. Etwas mehr Kontrast
   und ein feiner Schatten holen es aus der Kopfzeile heraus, ohne durch
   Größe oder Farbe zu dominieren – Größe und Grundfarbe bleiben bewusst
   unverändert. */
.header-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 16px;
  background: var(--praxis-blau);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
}

/* "Alle Kassen und Privat" in der Sidebar stand bisher als reiner
   Fettschrift-Satz zwischen den Sprechzeiten – wie ein verirrter Satz
   statt einer wichtigen Aussage. Als kleines Badge (gleiche Machart wie
   das Badge im Header) hebt es sich jetzt bewusst ab. */
.sidebar-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--praxis-blau);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(34,67,96,.18);
}

/* ---------- Tablet (<=900px): Sidebar + Inhalt untereinander ---------- */
@media screen and (max-width: 900px) {

  #sidebar,
  #mainContent {
    clear: both;
  }

  .container-fluid .btn {
    margin-bottom: 6px;
  }
}

/* ---------- Hamburger-Menü als Schublade von rechts (Tablet/Smartphone) ----------
   Auf schmalen Bildschirmen wirkte das Menü (7 Punkte) plus die separate
   Schnellzugriffs-Buttonreihe ("Vorsorgeuntersuchungen" …) direkt
   übereinander gestapelt sehr unruhig, bevor überhaupt Inhalt zu sehen
   war. Ab 900px (gleiche Schwelle wie die Sidebar) wird das Menü daher
   eingeklappt: ein Menü-Button blendet es als schmale Schublade von
   rechts ein, mit abgedunkeltem Hintergrund. Bewusst nur die wichtigsten
   Menüpunkte – die einzelnen Leistungen erscheinen hier nicht mehr, das
   war auf dem Handy zu viel Information auf einmal; die Schnellzugriffs-
   Buttonreihe bleibt aus demselben Grund ausgeblendet. */
#header {
  position: relative;
}

.nav-toggle {
  display: none;
}

.nav-overlay {
  display: none;
}

@media screen and (max-width: 900px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 8px;
    background: var(--praxis-blau);
    color: #fff;
    font-size: 19px;
    line-height: 1;
    cursor: pointer;
    z-index: 1100;
    box-shadow: 0 3px 10px rgba(0,0,0,.22);
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: var(--praxis-blau-dunkel);
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15,30,45,.45);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }

  .nav-overlay.ist-offen {
    opacity: 1;
    pointer-events: auto;
  }

  body.menue-offen {
    overflow: hidden;
  }

  /* Das Menü liegt als feste Schublade rechts außerhalb des Bildschirms
     und fährt beim Öffnen herein – klarer erkennbar als ein einfaches
     Auf-/Zuklappen im Fließtext. */
  #cssmenu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(78vw, 300px);
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    padding-top: 76px;
    background: var(--praxis-blau-dunkel);
    box-shadow: -8px 0 28px rgba(0,0,0,.28);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 1000;
  }

  #cssmenu.ist-offen {
    transform: translateX(0);
  }
}

/* ---------- Smartphone (<=600px) ---------- */
@media screen and (max-width: 600px) {

  /* Menü wird zu einer vollbreiten, gut antippbaren Liste statt eines
     4-Spalten-Rasters – kein horizontales Gequetsche mehr. */
  #cssmenu ul {
    flex-direction: column;
  }

  #cssmenu ul > li > a {
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  #mainContent h5 {
    text-align: center;
  }

  .row .col-md-4 {
    text-align: center;
  }
}

body.indexseite .leistungen-schnellzugriff {
  padding: 10px 16px 16px;
  background: #fff;
}

body.indexseite .seiten-layout {
  display: grid;
  grid-template-columns: minmax(290px, 320px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 0 0 52px;
}

body.indexseite .seiten-layout #sidebar,
body.indexseite .seiten-layout #mainContent {
  min-width: 0;
}

body.indexseite .seiten-layout #mainContent {
  background: #fff;
  border: 1px solid var(--praxis-rand);
  border-radius: 14px;
  box-shadow: 0 9px 25px rgba(34,67,96,.08);
}

body.indexseite #sidebar > a {
  min-height: 48px;
  align-items: center;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

body.indexseite #sidebar .sidebar-titel {
  padding: 0 0 9px;
  border-bottom: 2px solid #c7dceb;
  line-height: 1.3;
}

body.indexseite .sidebar-hinweis {
  color: var(--praxis-rot);
  font-size: 14px;
  font-weight: 500;
}

body.indexseite #header h1 {
  max-width: 800px;
}

body.indexseite #header h2 {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

body.indexseite .header-fachgebiet,
body.indexseite .header-kontakt {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 0 7px;
  color: var(--praxis-text);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

body.indexseite .header-kontakt {
  max-width: 760px;
  font-size: 18px;
  font-weight: 700;
}

body.indexseite .header-kontakt a {
  color: inherit;
  text-decoration: none;
}

body.indexseite #header .header-badge {
  position: relative;
  z-index: 2;
  clear: both;
  border-radius: 20px;
  line-height: 1.3;
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
}

body.indexseite .praxis-wichtig {
  background: var(--praxis-hellblau);
  border-left: 4px solid var(--praxis-blau);
  border-radius: 0 10px 10px 0;
}

body.indexseite #mainContent .praxis-wichtig li {
  padding-left: 3px;
  font-size: 16px;
  line-height: 1.55;
}

body.indexseite #mainContent .praxis-telefon {
  align-items: center;
  gap: 9px;
  line-height: 1.3;
}

body.indexseite .sprungziel {
  display: block;
  scroll-margin-top: 90px;
}

body.indexseite .leistung-inhalt h3,
body.indexseite .leistungen-abschluss h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

body.indexseite #mainContent .leistung-foto,
body.indexseite .leistung-foto {
  aspect-ratio: 3 / 2;
  object-position: center;
}

body.indexseite .leistungen-abschluss h3 {
  text-align: center;
}

@media screen and (max-width: 900px) {
  body.indexseite .seiten-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px 40px;
  }

  body.indexseite .seiten-layout #mainContent {
    order: 1;
  }

  body.indexseite .seiten-layout #sidebar {
    order: 2;
  }

  body.indexseite #header {
    min-height: 250px;
  }

  body.indexseite #header h1 {
    max-width: 76%;
  }

  body.indexseite #header h2,
  body.indexseite .header-fachgebiet,
  body.indexseite .header-kontakt {
    max-width: 76%;
    font-size: 15px;
  }
}

@media screen and (max-width: 600px) {
  body.indexseite .seiten-layout {
    padding-inline: 16px;
  }

  body.indexseite #header {
    min-height: 270px;
  }

  body.indexseite #header::before {
    background: linear-gradient(100deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.94) 58%, rgba(255,255,255,.25) 82%, rgba(255,255,255,0) 100%);
  }

  body.indexseite #header h1,
  body.indexseite #header h2,
  body.indexseite .header-fachgebiet,
  body.indexseite .header-kontakt {
    max-width: calc(100% - 48px);
  }

  body.indexseite .header-fachgebiet,
  body.indexseite .header-kontakt {
    font-size: 14px;
  }

  body.indexseite .header-badge {
    position: relative;
    z-index: 1;
  }

  body.indexseite .leistung-inhalt {
    padding: 17px 17px 20px;
  }

  body.indexseite .leistung-inhalt h3 {
    text-align: left;
  }

  body.indexseite #mainContent .praxis-telefon {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Icon-Abstände und ruhige Hover-Zustände */
#sidebar > a i,
#cssmenu a i,
.site-footer a i,
#mainContent a i {
  display: inline-block;
  flex: 0 0 auto;
}

body.anfahrtseite #mainContent .region-karte a:hover,
body.anfahrtseite #mainContent .region-karte a:focus,
body.anfahrtseite #mainContent .anfahrt-hinweise a:hover,
body.anfahrtseite #mainContent .anfahrt-hinweise a:focus {
  text-underline-offset: 3px;
}

/* Telefonnummern: klar als anklickbare Kontaktmöglichkeit erkennbar.
   Die zusätzliche Unterstreichung bleibt auch ohne Farbe verständlich. */
a[href^="tel:"] {
  text-underline-offset: 3px;
  white-space: nowrap;
}

@media screen and (max-width: 700px) {
  /* Auf Touch-Geräten erhalten Telefonnummern eine mindestens 44 px hohe
     Tippfläche und heben sich als kompakte Schaltflächen vom Text ab. */
  body a[href^="tel:"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    max-width: 100%;
    margin-block: 4px;
    padding: 8px 12px;
    border: 1px solid #b8d1e4;
    border-radius: 8px;
    background: var(--praxis-hellblau);
    box-sizing: border-box;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
  }

  #header .header-kontakt a[href^="tel:"] {
    padding: 6px 10px;
    background: rgba(255,255,255,.94);
  }
}

/* ============================================================
   Aufklappbares Kontaktmenü
   ============================================================ */
.kontakt-flyout {
  --kontakt-panelbreite: min(430px, calc(100vw - 72px));
  position: relative;
  z-index: 2100;
}

.kontakt-flyout-trigger {
  position: fixed;
  z-index: 2103;
  top: 50%;
  right: 0;
  width: 68px;
  min-height: 192px;
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.35);
  border-right: 0;
  border-radius: 18px 0 0 18px;
  background: var(--praxis-blau-dunkel);
  box-shadow: 0 9px 28px rgba(22,44,66,.28);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: right .32s ease, background-color .2s ease, box-shadow .2s ease;
}

.kontakt-flyout-trigger:hover,
.kontakt-flyout-trigger:focus-visible {
  background: var(--praxis-blau);
  box-shadow: 0 10px 30px rgba(22,44,66,.38);
}

.kontakt-flyout-trigger-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  font-size: 18px;
}

.kontakt-symbol-offen {
  display: none;
}

.kontakt-flyout.ist-offen .kontakt-symbol-geschlossen {
  display: none;
}

.kontakt-flyout.ist-offen .kontakt-symbol-offen {
  display: grid;
}

.kontakt-flyout-trigger-text {
  color: #fff;
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .4px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.kontakt-flyout-hintergrund {
  position: fixed;
  z-index: 2100;
  inset: 0;
  border: 0;
  background: rgba(18,37,54,.44);
  opacity: 0;
  visibility: hidden;
  cursor: default;
  transition: opacity .28s ease, visibility .28s ease;
}

.kontakt-flyout-panel {
  position: fixed;
  z-index: 2102;
  top: 50%;
  right: 0;
  width: var(--kontakt-panelbreite);
  max-height: calc(100vh - 40px);
  padding: 38px 34px 32px;
  overflow-y: auto;
  border: 1px solid var(--praxis-rand);
  border-right: 0;
  border-radius: 20px 0 0 20px;
  background: #fff;
  box-shadow: -14px 14px 44px rgba(22,44,66,.24);
  color: var(--praxis-text);
  opacity: 0;
  visibility: hidden;
  transform: translate(102%, -50%);
  transition: transform .32s ease, opacity .25s ease, visibility .32s ease;
}

.kontakt-flyout.ist-offen .kontakt-flyout-trigger {
  right: var(--kontakt-panelbreite);
}

.kontakt-flyout-nach-oben {
  position: fixed;
  z-index: 2103;
  top: calc(50% + 104px);
  right: 0;
  width: 68px;
  min-height: 58px;
  padding: 8px 6px;
  display: grid;
  place-items: center;
  gap: 2px;
  border: 1px solid rgba(255,255,255,.35);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  background: #637a8c;
  box-shadow: 0 7px 20px rgba(22,44,66,.24);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  transition: right .32s ease, opacity .2s ease, transform .2s ease, background-color .2s ease, visibility .2s ease;
}

.kontakt-flyout-nach-oben.ist-sichtbar {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.kontakt-flyout-nach-oben:hover,
.kontakt-flyout-nach-oben:focus-visible {
  background: var(--praxis-blau);
}

.kontakt-flyout-nach-oben i {
  font-size: 17px;
}

.kontakt-flyout-nach-oben span {
  font-size: 11px;
  line-height: 1.1;
  font-weight: 750;
}

.kontakt-flyout.ist-offen .kontakt-flyout-nach-oben {
  right: var(--kontakt-panelbreite);
}

.kontakt-flyout.ist-offen .kontakt-flyout-hintergrund,
.kontakt-flyout.ist-offen .kontakt-flyout-panel {
  opacity: 1;
  visibility: visible;
}

.kontakt-flyout.ist-offen .kontakt-flyout-panel {
  transform: translate(0, -50%);
}

.kontakt-flyout-schliessen {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--praxis-rand);
  border-radius: 50%;
  background: var(--praxis-hellblau);
  color: var(--praxis-blau-dunkel);
  cursor: pointer;
}

.kontakt-flyout-panel > p {
  color: #50606d;
}

.kontakt-flyout-karte {
  padding: 20px;
  border: 1px solid #ccdfed;
  border-radius: 14px;
  background: var(--praxis-hellblau);
}

body .kontakt-flyout-telefon,
body .kontakt-flyout-telefon:hover,
body .kontakt-flyout-telefon:focus-visible {
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  box-shadow: 0 5px 14px rgba(49,95,145,.25);
  text-align: left;
  box-sizing: border-box;
}

.kontakt-flyout-telefon > i {
  width: 28px;
  font-size: 23px;
  text-align: center;
}

.kontakt-flyout-telefon span {
  display: grid;
  gap: 1px;
}

.kontakt-flyout-telefon small,
.kontakt-flyout-telefon strong {
  color: inherit;
  line-height: 1.25;
}

.kontakt-flyout-telefon small {
  font-size: 13px;
  font-weight: 650;
}

.kontakt-flyout-telefon strong {
  font-size: 19px;
  font-weight: 800;
}

.kontakt-flyout-hinweis {
  color: #415462;
}

.kontakt-flyout-hinweis i {
  margin-right: 6px;
  color: var(--praxis-blau);
}

.kontakt-flyout-aktionen {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.kontakt-flyout-aktionen a,
.kontakt-flyout-aktionen a:hover,
.kontakt-flyout-aktionen a:focus-visible {
  min-height: 48px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--praxis-rand);
  border-radius: 9px;
  background: #fff;
}

.kontakt-flyout-aktionen a:hover,
.kontakt-flyout-aktionen a:focus-visible {
  border-color: #9bbdd6;
  background: var(--praxis-hellblau);
}

.kontakt-flyout-aktionen i {
  color: var(--praxis-blau);
}

body.kontaktmenu-offen {
  overflow: hidden;
}

@media screen and (max-width: 700px) {
  .kontakt-flyout-trigger {
    top: auto;
    right: 10px;
    bottom: 10px;
    width: auto;
    min-width: 96px;
    min-height: 44px;
    padding: 6px 9px;
    flex-direction: row;
    gap: 6px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 999px;
    transform: none;
  }

  .kontakt-flyout-trigger-icon {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .kontakt-flyout-trigger-text {
    font-size: 13px;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .kontakt-flyout.ist-offen .kontakt-flyout-trigger {
    right: 10px;
  }

  .kontakt-flyout-nach-oben {
    top: auto;
    right: 122px;
    bottom: 10px;
    width: 40px;
    min-height: 40px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    transform: translateY(12px);
  }

  .kontakt-flyout-nach-oben.ist-sichtbar {
    transform: translateY(0);
  }

  .kontakt-flyout-nach-oben span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .kontakt-flyout.ist-offen .kontakt-flyout-nach-oben {
    right: 122px;
  }

  .kontakt-flyout-panel {
    top: auto;
    right: 12px;
    bottom: 76px;
    left: 12px;
    width: auto;
    max-height: calc(100vh - 96px);
    padding: 28px 20px 20px;
    border-right: 1px solid var(--praxis-rand);
    border-radius: 18px;
    transform: translateY(calc(100% + 100px));
  }

  .kontakt-flyout.ist-offen .kontakt-flyout-panel {
    transform: translateY(0);
  }

  .kontakt-flyout-karte {
    padding: 16px;
  }

  .kontakt-flyout-aktionen {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 420px) {
  .kontakt-flyout-panel {
    right: 8px;
    bottom: 70px;
    left: 8px;
    max-height: calc(100vh - 82px);
    padding: 24px 14px 16px;
  }

  .kontakt-flyout-schliessen {
    top: 10px;
    right: 10px;
  }

  .kontakt-flyout-trigger {
    right: 8px;
    bottom: 8px;
    min-width: 92px;
    min-height: 42px;
  }

  .kontakt-flyout.ist-offen .kontakt-flyout-trigger {
    right: 8px;
  }

  .kontakt-flyout-nach-oben,
  .kontakt-flyout.ist-offen .kontakt-flyout-nach-oben {
    right: 119px;
    bottom: 8px;
    width: 38px;
    min-height: 38px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .kontakt-flyout-trigger,
  .kontakt-flyout-nach-oben,
  .kontakt-flyout-hintergrund,
  .kontakt-flyout-panel {
    transition: none;
  }
}
/* ============================================================
   Gemeinsame Ergänzungen 2026: Barrierefreiheit, Informationen,
   Notfallhinweise und redaktionelle Unterseiten
   ============================================================ */
.skip-link {
  position: fixed;
  z-index: 5000;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  border-radius: 7px;
  background: #fff;
  color: #163b62;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transform: translateY(-160%);
  transition: transform .15s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.leistungen-schnellzugriff .row,
.leistungen-schnellzugriff .col-md-12 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.leistungen-schnellzugriff {
  padding: 10px 20px 0;
}

.leistungen-schnellzugriff .btn {
  padding: 8px 12px;
  font-size: 14px;
}

.aktuelles-box,
.notfall-box,
.faq-bereich {
  margin: 30px 0;
  padding: 24px;
  border: 1px solid var(--praxis-rand);
  border-radius: 13px;
  background: #f8fbfd;
}

.aktuelles-box {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr);
  gap: 18px;
  align-items: start;
  border-left: 5px solid var(--praxis-blau);
}

.info-box-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--praxis-hellblau);
  color: var(--praxis-blau-dunkel);
  font-size: 20px;
}

.info-kicker {
  color: #52697d;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.notfall-box {
  background: #fff8f7;
  border-color: #e6bbb8;
}

.notfall-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
}

.notfall-grid > div {
  padding: 18px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #ecd5d3;
}

.notfall-nummer {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 7px 15px;
  border-radius: 8px;
  background: #9b2b25;
  font-size: 22px;
  font-weight: 850;
}

.faq-bereich details {
  margin: 10px 0;
  border: 1px solid #ccdce8;
  border-radius: 9px;
  background: #fff;
}

.faq-bereich summary {
  padding: 15px 42px 15px 16px;
  color: var(--praxis-blau-dunkel);
  cursor: pointer;
  font-weight: 750;
}

.faq-bereich details p {
  padding: 0 16px 17px;
}

.kontakt-flyout-notfall {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 9px;
  background: #fff5f4;
  color: #74231e;
}

.kontakt-flyout-notfall a {
  font-weight: 750;
  text-decoration: underline;
}

body.serviceseite .seiten-layout {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0,1fr);
  gap: 20px;
  align-items: start;
  padding-bottom: 52px;
}

body.serviceseite #mainContent {
  background: #fff;
  border: 1px solid var(--praxis-rand);
  border-radius: 14px;
  box-shadow: 0 9px 25px rgba(34,67,96,.08);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(260px, 40%);
  gap: 26px;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--praxis-rand);
}

.service-hero img {
  object-fit: cover;
}

.service-kicker {
  color: var(--praxis-blau);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.service-hero h1 {
  line-height: 1.15;
}

.service-checkliste {
  margin: 18px 0;
  padding: 20px 22px;
  border-radius: 10px;
  background: var(--praxis-hellblau);
}

.service-checkliste li {
  margin: 7px 0;
}

.service-cta {
  margin-top: 32px;
  padding: 24px;
  text-align: center;
  border-radius: 12px;
  background: var(--praxis-hellblau);
}

.service-cta .btn {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 8px;
}

.j1-formular fieldset {
  margin: 22px 0;
  padding: 20px;
  border: 1px solid #cbdce8;
  border-radius: 10px;
}

.j1-formular legend {
  width: auto;
  padding: 0 8px;
  color: var(--praxis-blau-dunkel);
  font-size: 20px;
  font-weight: 800;
}

.j1-frage {
  margin: 14px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #e4ebf0;
}

.j1-frage:last-child {
  border-bottom: 0;
}

.j1-linie {
  display: block;
  min-height: 34px;
  margin-top: 7px;
  border-bottom: 1px solid #687b8c;
}

@media (max-width: 900px) {
  body.serviceseite .seiten-layout {
    display: block;
  }
}

@media (max-width: 700px) {
  .notfall-grid,
  .service-hero {
    grid-template-columns: 1fr;
  }
  .aktuelles-box {
    grid-template-columns: 1fr;
  }
}

@media print {
  .j1-formular {
    font-size: 11pt;
  }
}

/* Textvarianten für semantische Header auf den neuen Unterseiten. */
#header .site-haupttitel {
  position: relative;
  z-index: 1;
  max-width: 820px;
  letter-spacing: -.025em;
  text-shadow: 0 1px 1px #fff, 0 0 10px rgba(255,255,255,.95);
}

#header .site-arztname {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 1px #fff, 0 0 10px rgba(255,255,255,.95);
}

.site-footer h2 {
  line-height: 1.35;
}

.legal-inhalt section {
  padding: 2px 0 16px;
  border-bottom: 1px solid #e2e9ee;
}

.legal-inhalt section:last-of-type {
  border-bottom: 0;
}

.legal-hinweis {
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff4dd;
}

.legal-stand {
  color: #596b7b;
}

/* Wiederhergestellte Button-Proportionen nach Entfernung von Bootstrap. */
a.btn,
button.btn,
.container-fluid a.btn,
#mainContent a.btn,
#mainContent button.btn {
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  white-space: normal;
}

body #mainContent a.notfall-nummer {
  min-width: 150px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(123,35,30,.18);
}

.notfall-grid > div {
  box-shadow: 0 4px 12px rgba(65, 53, 52, .07);
}

.site-footer-col:first-child h4::before,
.site-footer-col:first-child h2::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background-color: var(--praxis-blau);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 12h.01M15 12h.01M12 2a7 7 0 0 0-7 7v3a7 7 0 0 0 14 0V9a7 7 0 0 0-7-7Z'/%3E%3Cpath d='M8 21c0-1.7 1.8-3 4-3s4 1.3 4 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

/* ============================================================
   Leistungen-Schnellzugriff auf der Startseite: Icon-Pillen statt
   Textbuttons – Icon-Kreis und Bezeichnung nebeneinander in einer
   abgerundeten Karte. Die ganze Pille ist Klickfläche (nicht nur der
   Kreis), lange Fachbegriffe brechen nicht um. Springt weiterhin per
   Anker (#a, #b, ...) zur jeweiligen Leistungskarte.
   ============================================================ */
.leistungen-icon-reihe {
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  padding: 4px 0 8px;
}

.leistung-icon-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: auto;
  padding: 5px 16px 5px 5px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--praxis-rand);
  box-shadow: 0 4px 12px rgba(34, 67, 96, .07);
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.leistung-icon-kreis {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--praxis-rand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--praxis-blau);
  font-size: 14px;
  transition: border-color .18s ease, color .18s ease;
}

.leistung-icon-btn:hover .leistung-icon-kreis,
.leistung-icon-btn:focus-visible .leistung-icon-kreis {
  border-color: var(--praxis-blau);
  color: var(--praxis-blau-dunkel);
}

.leistung-icon-btn:hover,
.leistung-icon-btn:focus-visible {
  transform: translateY(-2px);
  border-color: var(--praxis-blau);
  box-shadow: 0 10px 22px rgba(34, 67, 96, .14);
}

.leistung-icon-btn:focus-visible {
  outline: 3px solid var(--praxis-blau);
  outline-offset: 3px;
}

.leistung-icon-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--praxis-text);
  line-height: 1.3;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .leistungen-icon-reihe {
    justify-content: center;
    gap: 10px;
  }
  .leistung-icon-btn {
    padding: 4px 14px 4px 4px;
  }
  .leistung-icon-kreis {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .leistung-icon-label {
    font-size: 12px;
  }
}

/* Kompakter Stellenhinweis oben in der Seitenleiste: macht auf die
   offene Stelle aufmerksam, ohne die ausführliche Ausschreibung aus
   dem Fließtext zu wiederholen – die bleibt weiter unten im
   Hauptinhalt (#job) mit vollständigem Text und PDF-Link. */
.sidebar-stellenhinweis {
  margin: 14px 0 22px;
  padding: 12px 14px;
  border: 1px solid var(--praxis-rand);
  border-radius: 10px;
  background: var(--praxis-hellblau);
}

.sidebar-stellenhinweis p {
  line-height: 1.4;
  color: var(--praxis-text);
}

.sidebar-stellenhinweis p i {
  color: var(--praxis-blau);
  margin-right: 4px;
}

}

@layer inline-stile {
  .u-icon-abstand { margin-right: 4px; font-size: 14px; }
  .u-link-kompakt { padding: 8px; }
  .u-link-anfahrt { padding: 8px; border-radius: 5px; margin-top: 10px; }
  .u-sprechzeit-start { margin-top: 30px; }
  .u-sprechzeit-mehrzeilig { margin: 25px 0; }
  .u-sidebar-hinweis { font-size: 14px; font-weight: 400; }
  .u-pdf-link { padding: 8px; border-radius: 5px; margin: 15px 0; }
  .u-pollen-link { padding: 8px; border-radius: 5px; margin: 30px 0 15px; }
  .u-anrede { margin-top: 30px; font-weight: 800; font-size: 18px; }
  .u-leistungen-titel { margin-top: 40px; }
}

@layer ueberschreibungen {
#sidebar a.sidebar-notfall{
  font-weight: 750;}
#sidebar a.sidebar-notfall:hover,
#sidebar a.sidebar-notfall:focus-visible{
  font-weight: 750;}
body{
  background: var(--praxis-hintergrund);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;}
#wrapper{
  width: 100%;
  max-width: none;
  margin: 0;}
.umzug-hinweis-top{
  width: 100%;
  margin: 0;
  padding: 22px clamp(20px, 4vw, 48px);
  background: #fff7db;
  border: 0;
  border-bottom: 5px solid var(--praxis-rot);}
.umzug-hinweis-inner{
  max-width: 1050px;}
.umzug-hinweis-top .umzug-title{
  color: var(--praxis-rot);
  font-size: clamp(27px, 3vw, 36px);}
#header{
  background-position: center bottom;
  background-size: cover;
  padding: 22px 28px;}
#header h1,
#header .header-h1{
  color: #2776ba;}
#header h2,
#header h2 small{
  text-shadow: 0 1px 1px #fff, 0 0 10px rgba(255,255,255,.95);}
#cssmenu ul{
  background: var(--praxis-blau);
  border: 0;
  border-radius: 0;}
#cssmenu ul > li > a{
  padding: 16px 17px;
  display: flex;
  transition: background-color .2s ease, color .2s ease;}
#cssmenu ul > li > a:hover,
#cssmenu ul > li > a:focus{
  background: var(--praxis-blau-dunkel);
  color: #fff;}
#sidebar,
#mainContent{
  margin-top: 42px;}
#sidebar{
  padding: 22px;}
#sidebar h4{
  margin: 26px 0 13px;
  font-size: 18px;}
#sidebar h4:first-child{
  margin-top: 0;}
#sidebar h4,
#mainContent h1,
#mainContent h2,
#mainContent h3,
#mainContent h4,
#mainContent h5{
  color: var(--praxis-blau-dunkel);}
#sidebar > a{
  padding: 11px 13px;
  margin: 9px 0;
  border-radius: 9px;
  color: var(--praxis-blau-dunkel);}
.stellenanzeige{
  background: #f9fbfd;
  border: 1px solid var(--praxis-rand);
  border-left: 5px solid var(--praxis-blau);
  border-radius: 12px;}
#mainContent .btn,
.container-fluid .btn{
  border-radius: 8px;
  background: var(--praxis-blau);
  border-color: var(--praxis-blau);
  color: #fff;
  box-shadow: none;}
#mainContent .btn:hover,
.container-fluid .btn:hover{
  background: var(--praxis-blau-dunkel);
  border-color: var(--praxis-blau-dunkel);}
#mainContent img:not(.scrollicon img),
.praxis-team{
  border-radius: 12px;}
footer,
.container-fluid[style*="background-color"]{
  background: var(--praxis-blau-dunkel);}
a:focus-visible,
button:focus-visible{
  outline: 3px solid #f2b84b;}
.kontaktleiste a{
  color: #fff;
  text-decoration: none;}
@media (max-width: 900px){#wrapper{
    width: 100%;
    margin: 0;}
#header{
    min-height: 215px;
    height: auto;
    padding: 16px 18px;}
#header h1,
  #header .header-h1{
    margin: 5px 0 0;
    font-size: clamp(28px, 5vw, 36px);
    line-height: 1.15;}
#header h2{
    margin: 13px 0 0;
    font-size: 19px;
    line-height: 1.3;}
#mainContent p,
  .stellenanzeige p{
    text-align: left;}
}
.umzug-hinweis-top a{
  color: inherit;}
#sidebar > a:hover,
#sidebar > a:focus,
#mainContent a:hover,
#mainContent a:focus{
  font-weight: inherit;}
#sidebar > a[href^="tel:"]:hover,
#sidebar > a[href^="tel:"]:focus,
#mainContent a[href^="tel:"]:hover,
#mainContent a[href^="tel:"]:focus{
  font-weight: 750;}
#sidebar > a strong,
#mainContent .btn,
#mainContent .notfall-nummer{
  font-weight: 750;}
#header{
  background-image: url(header-1.webp);}
.stellenanzeige{
  border-left: 1px solid var(--praxis-rand);
  box-shadow: 0 4px 14px rgba(34, 67, 96, .10);}
.leistungen-intro p{
  text-align: left;}
.abschnitt-titel{
  text-align: left;}
.leistungen-kicker{
  text-align: center;
  margin: 36px 0 4px;}
.leistungen-abschluss h5{
  margin: 0 0 8px;
  font-weight: 900;
  color: var(--praxis-blau-dunkel);}
.leistungen-abschluss p{
  margin: 0 auto 18px;
  text-align: center;}
.leistungen-abschluss .btn,
.leistungen-abschluss .btn:hover{
  margin-bottom: 26px;}
.leistungen-abschluss-adresse{
  margin: 0;}
#mainContent .leistung-foto,
.leistung-foto{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  float: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;}
.leistung-inhalt h5{
  margin: 0 0 10px;
  font-weight: 900;
  color: var(--praxis-blau-dunkel);}
.leistung-inhalt p{
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;}
.leistung-inhalt a{
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  color: var(--praxis-blau);}
.leistung-inhalt a:hover{
  color: var(--praxis-blau-dunkel);}
#header{
  float: none;}
#wrapper{
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;}
footer,
.container-fluid[style*="background-color"]{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);}
.container-fluid[style*="background-color"] > .row{
  margin-left: auto;
  margin-right: auto;}
.site-footer h4{
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;}
body.teamseite #wrapper{
  max-width: 1360px;
  background: transparent;}
body.teamseite .seiten-layout #sidebar,
body.teamseite .seiten-layout #mainContent{
  float: none;
  width: 100%;
  margin-top: 42px;}
body.teamseite .seiten-layout #mainContent{
  padding: 28px 30px 34px;}
body.teamseite #sidebar > a{
  display: flex;
  width: 100%;
  margin: 10px 0 0;
  padding: 11px 12px;
  font-size: 15px;}
body.teamseite #sidebar .sidebar-titel{
  margin: 28px 0 13px;
  color: var(--praxis-blau-dunkel);
  font-size: 18px;
  font-weight: 800;}
body.teamseite #sidebar .sidebar-titel:first-child{
  margin-top: 0;}
body.teamseite #sidebar p{
  margin: 12px 0;
  padding-left: 0;}
body.teamseite .sidebar-kleingedruckt{
  font-size: 14px;
  line-height: 1.5;}
body.teamseite #header h1,
body.teamseite #header .header-h1{
  margin: 18px 0 8px;
  color: var(--praxis-blau);
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.13;
  font-weight: 800;}
body.teamseite #header h2{
  margin: 14px 0 6px;
  color: var(--praxis-text);
  font-size: 25px;
  line-height: 1.25;
  font-weight: 800;}
body.teamseite #header .header-badge{
  display: table;
  width: auto;
  margin: 12px 0 0;
  padding: 6px 16px;
  background: var(--praxis-blau);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  opacity: 1;
  visibility: visible;}
body.teamseite #cssmenu a[aria-current="page"]{
  background: var(--praxis-blau-dunkel);}
body.teamseite .team-kicker{
  margin: 0 0 5px;
  color: var(--praxis-blau);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;}
body.teamseite .abschnitt-titel{
  margin: 0 0 12px;
  color: var(--praxis-blau-dunkel);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;}
body.teamseite #mainContent .profil-bild img{
  display: block;
  float: none;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  border-radius: 12px;}
body.teamseite .team-rolle,
body.teamseite .team-funktion{
  margin: 0 0 6px;
  color: var(--praxis-blau);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;}
body.teamseite .team-hauptkarte-inhalt > h2{
  margin: 0 0 14px;
  color: var(--praxis-blau-dunkel);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 850;}
body.teamseite .team-hauptkarte-inhalt > h3,
body.teamseite .berufliche-stationen > h3,
body.teamseite .team-karte h3,
body.teamseite .team-kontaktbox h3{
  margin: 0 0 12px;
  color: var(--praxis-blau-dunkel);
  font-weight: 800;}
body.teamseite #mainContent .qualifikationen-liste{
  margin: 15px 0 0;
  padding: 0;}
body.teamseite #mainContent .qualifikationen-liste li{
  margin: 0;
  padding: 10px 11px;}
body.teamseite .station p,
body.teamseite .stationen-erfahrung{
  margin: 0;}
body.teamseite .stationen-erfahrung{
  margin-top: 16px;}
body.teamseite #mainContent .team-karte img{
  display: block;
  float: none;
  width: 175px;
  max-width: 100%;
  height: 175px;
  margin: 0;
  border-radius: 12px;}
body.teamseite .team-karte p{
  margin: 0 0 10px;}
body.teamseite .team-karte .team-funktion{
  margin-top: -6px;
  font-size: 13px;}
body.teamseite .team-karte p:last-child{
  margin-bottom: 0;}
body.teamseite .team-kontaktbox h3,
body.teamseite .team-kontaktbox p{
  margin-bottom: 0;}
body.teamseite .team-kontaktbox .btn{
  padding: 11px 15px;
  background: var(--praxis-blau);
  color: #fff;}
@media screen and (max-width: 900px){body.teamseite .seiten-layout #mainContent{
    padding: 22px;}
body.teamseite .seiten-layout #sidebar{
    padding: 20px;}
body.teamseite .umzug-hinweis-top{
    padding-right: 78px;}
body.teamseite #header h1,
  body.teamseite #header .header-h1{
    font-size: clamp(25px, 5vw, 34px);}
}
@media screen and (max-width: 700px){body.teamseite #mainContent .team-karte img{
    width: 160px;
    height: 160px;}
}
@media screen and (max-width: 600px){body.teamseite #header{
    padding: 18px 16px;
    background-position: 58% bottom;}
body.teamseite #header h1,
  body.teamseite #header .header-h1{
    margin-top: 2px;
    font-size: 24px;}
body.teamseite #header h2{
    margin-top: 10px;
    font-size: 18px;}
}
body.anfahrtseite .anfahrt-adresskarte h3,
body.anfahrtseite .regionen-abschnitt h2,
body.anfahrtseite .region-karte h3,
body.anfahrtseite .anfahrt-hinweise h3{
  margin: 0 0 8px;
  color: var(--praxis-blau-dunkel);
  font-weight: 800;}
body.anfahrtseite .anfahrt-adresskarte p{
  margin: 0;}
body.anfahrtseite .anfahrt-adresskarte .btn{
  padding: 11px 15px;}
body.anfahrtseite .regionen-abschnitt > h2{
  font-size: 25px;}
body.anfahrtseite .region-karte p{
  margin: 0 0 12px;}
body.anfahrtseite .region-karte a,
body.anfahrtseite .anfahrt-hinweise a{
  color: var(--praxis-blau-dunkel);}
body.anfahrtseite .anfahrt-hinweise p{
  margin: 0 0 10px;}
#cssmenu, #cssmenu *:not(.fas):not(.far):not(.fab),
#sidebar, #sidebar *:not(.fas):not(.far):not(.fab),
#mainContent, #mainContent *:not(.fas):not(.far):not(.fab),
.container-fluid, .container-fluid *:not(.fas):not(.far):not(.fab),
h1, h2, h3, h4, h5, h6{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;}
.btn,
.btn-outline-dark,
.btn-outline-warning,
.container-fluid .btn{
  background: var(--praxis-blau);
  border: 1px solid var(--praxis-blau);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(49,95,145,.28);
  text-shadow: none;}
.btn:hover,
.btn-outline-dark:hover,
.btn-outline-warning:hover{
  background: var(--praxis-blau-dunkel);
  border-color: var(--praxis-blau-dunkel);
  color: #fff;
  box-shadow: 0 6px 16px rgba(36,74,115,.35);
  /* #mainContent a:hover (media-queris.css) setzt sonst per ID-Selektor
     margin-bottom:30px und color:orange auf jedem Link-Hover – dadurch
     "sprang" der Text unter dem Button beim Überfahren spürbar nach
     unten. Hier gezielt für Buttons zurückgesetzt. */
  margin-bottom: 0;}
#sidebar > a{
  box-shadow: 0 2px 8px rgba(49,95,145,.10);}
.list-group-item[style*="background-color"]{
  background: var(--praxis-blau-dunkel);
  border-color: rgba(255,255,255,.15);}
.umzug-hinweis-top,
.umzug-hinweis{
  background: var(--praxis-hellblau);
  border-bottom: 0;
  border-left: 6px solid var(--praxis-blau);
  padding: 14px 28px;}
.umzug-hinweis-top p,
.umzug-hinweis p{
  font-size: 14px;
  margin-bottom: 2px;}
.umzug-hinweis{
  width: auto;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;}
.umzug-hinweis-top .umzug-title,
.umzug-hinweis h2{
  color: var(--praxis-blau-dunkel);
  text-transform: none;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;}
.umzug-hinweis-top .umzug-telefon,
.umzug-hinweis .rot-fett{
  color: var(--praxis-blau-dunkel);
  font-size: 15px;}
#header h1,
#header .header-h1,
#header h2{
  text-shadow: none;
  background: none;
  display: block;
  padding: 0;}
#header h2 small{
  text-shadow: none;}
.header-badge{
  color: #fff;
  text-shadow: none;}
.sidebar-badge{
  color: #fff;}
.sidebar-kompakt{
  padding: 18px 20px;}
.sidebar-kompakt h4:first-child{
  margin-top: 0;}
#sidebar > .adresse-kompakt:first-child h4:first-child{
  margin-top: 0;}
.sidebar-kompakt p,
.adresse-kompakt p{
  margin-bottom: 10px;}
.sidebar-kompakt a,
.adresse-kompakt a{
  display: inline-block;
  width: auto;
  padding: 0;
  margin-top: 0;
  border: 0;
  color: var(--praxis-blau);
  text-decoration: underline;
  background: none;}
.sidebar-kompakt a:hover,
.adresse-kompakt a:hover{
  color: var(--praxis-blau-dunkel);
  background: none;}
#sidebar h4 i,
.kontakt-icon{
  color: var(--praxis-blau);}
.kontaktleiste .kontakt-icon{
  color: #fff;}
@media screen and (max-width: 900px){#wrapper{
    width: 100%;}
#sidebar,
  #mainContent{
    float: none;
    width: 100%;
    padding: 20px;
    margin-top: 24px;}
#sidebar a{
    width: 100%;}
.kontaktleiste{
    right: 10px;
    bottom: 10px;
    gap: 8px;}
.kontaktleiste a{
    width: 42px;
    min-height: 42px;}
.kontaktleiste .kontakt-icon{
    width: 42px;
    min-width: 42px;
    height: 42px;
    font-size: 17px;}
}
@media screen and (max-width: 900px){#cssmenu ul{
    display: flex;
    flex-direction: column;}
#cssmenu ul > li{
    flex: 1 1 100%;}
#cssmenu ul > li > a{
    justify-content: flex-start;
    text-align: left;}
#cssmenu .untermenue{
    display: none;}
.leistungen-schnellzugriff{
    display: none;}
}
@media screen and (max-width: 600px){#header h1,
  #header .header-h1{
    font-size: 26px;
    margin-top: 6px;}
#header h2{
    font-size: 16px;}
#cssmenu ul > li{
    flex: 1 1 100%;}
#cssmenu ul > li > a{
    justify-content: flex-start;
    padding: 14px 18px;
    font-size: 15px;}
#mainContent img:not(.leistung-foto),
  img.praxis-team{
    float: none;
    display: block;
    width: auto;
    max-width: 200px;
    height: auto;
    margin: 0 auto 16px;}
#mainContent .leistung-foto,
  .leistung-foto{
    height: 190px;}
#mainContent h5{
    margin-left: 0;}
#mainContent ul li{
    margin-left: 0;}
.umzug-hinweis-top .umzug-title{
    font-size: 16px;}
}
@media screen and (max-width: 420px){#header h1,
  #header .header-h1{
    font-size: 22px;}
.umzug-hinweis-top{
    padding: 14px 14px;}
.kontaktleiste a{
    width: 38px;
    min-height: 38px;}
.kontaktleiste .kontakt-icon{
    width: 38px;
    min-width: 38px;
    height: 38px;
    font-size: 15px;}
}
body.indexseite #wrapper{
  max-width: 1360px;
  background: transparent;}
body.indexseite .leistungen-schnellzugriff{
  margin-top: 0;}
body.indexseite .seiten-layout #sidebar,
body.indexseite .seiten-layout #mainContent{
  float: none;
  width: 100%;
  margin-top: 42px;}
body.indexseite .seiten-layout #mainContent{
  padding: 28px 30px 34px;}
body.indexseite #sidebar > a{
  width: 100%;
  display: flex;
  padding: 11px 12px;
  font-size: 15px;}
body.indexseite #sidebar .sidebar-titel{
  margin: 28px 0 13px;
  color: var(--praxis-blau-dunkel);
  font-size: 18px;
  font-weight: 800;}
body.indexseite #sidebar .sidebar-titel:first-child{
  margin-top: 0;}
body.indexseite #header h1{
  margin: 18px 0 8px;
  color: var(--praxis-blau);
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.13;
  font-weight: 800;}
body.indexseite #header h2{
  margin: 14px 0 6px;
  color: var(--praxis-text);
  font-size: 25px;
  line-height: 1.25;
  font-weight: 800;}
body.indexseite #header .header-badge{
  display: table;
  width: auto;
  margin: 12px 0 0;
  padding: 6px 16px;
  background: var(--praxis-blau);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  opacity: 1;
  visibility: visible;}
body.indexseite .praxis-wichtig{
  margin: 24px 0 26px;
  padding: 18px 20px 20px;}
body.indexseite .praxis-wichtig ul{
  margin: 0 0 16px;
  padding-left: 22px;}
body.indexseite #mainContent .praxis-wichtig li{
  margin: 0 0 8px;}
body.indexseite #mainContent .praxis-wichtig li:last-child{
  margin-bottom: 0;}
body.indexseite #mainContent .praxis-telefon{
  display: inline-flex;
  margin: 0;
  padding: 11px 16px;
  color: #fff;
  text-decoration: none;}
body.indexseite .leistung-inhalt h3,
body.indexseite .leistungen-abschluss h3{
  margin: 0 0 10px;
  color: var(--praxis-blau-dunkel);
  font-weight: 800;}
body.indexseite #mainContent .leistung-foto,
body.indexseite .leistung-foto{
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: cover;
  float: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;}
@media screen and (max-width: 900px){body.indexseite .seiten-layout #mainContent{
    padding: 22px;}
body.indexseite .seiten-layout #sidebar{
    padding: 20px;}
body.indexseite .umzug-hinweis-top{
    padding-right: 78px;}
body.indexseite #header h1{
    font-size: clamp(25px, 5vw, 34px);}
}
@media screen and (max-width: 600px){body.indexseite #header{
    padding: 18px 16px;
    background-position: 58% bottom;}
body.indexseite #header h1{
    margin-top: 2px;
    font-size: 24px;}
body.indexseite #header h2{
    margin-top: 10px;
    font-size: 18px;}
}
#sidebar > a i,
#cssmenu a i,
.site-footer a i,
#mainContent a i{
  margin-left: .45rem;}
#sidebar .sidebar-titel i,
.site-footer h4 i,
#mainContent h2 i,
#mainContent h3 i{
  margin-right: .4rem;}
body.anfahrtseite #sidebar > a:hover,
body.anfahrtseite #sidebar > a:focus,
body.anfahrtseite #mainContent a:hover,
body.anfahrtseite #mainContent a:focus{
  margin-bottom: 0;
  transform: none;}
body.teamseite #sidebar > a,
body.teamseite #sidebar > a:hover,
body.teamseite #sidebar > a:focus{
  font-weight: 400;}
body.teamseite #sidebar > a strong{
  font-weight: 700;}
body.anfahrtseite #mainContent .region-karte a:hover,
body.anfahrtseite #mainContent .region-karte a:focus,
body.anfahrtseite #mainContent .anfahrt-hinweise a:hover,
body.anfahrtseite #mainContent .anfahrt-hinweise a:focus{
  color: var(--praxis-blau);
  font-size: inherit;
  font-weight: 750;
  text-decoration: underline;}
body.anfahrtseite #mainContent .btn:hover,
body.anfahrtseite #mainContent .btn:focus{
  margin-bottom: 0;
  background: var(--praxis-blau-dunkel);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transform: none;}
a[href^="tel:"]{
  color: var(--praxis-blau-dunkel);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 2px;}
a[href^="tel:"]:hover,
a[href^="tel:"]:focus-visible{
  color: var(--praxis-blau);}
.btn[href^="tel:"],
.kontaktleiste a[href^="tel:"]{
  color: #fff;
  text-decoration: none;}
@media screen and (max-width: 700px){body .btn[href^="tel:"]{
    border-color: var(--praxis-blau);
    background: var(--praxis-blau);}
body .kontaktleiste a[href^="tel:"]{
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--praxis-blau-dunkel);}
#sidebar a[href^="tel:"]{
    width: 100%;}
}
.kontakt-flyout-panel h2{
  margin: 0 42px 10px 0;
  color: var(--praxis-blau-dunkel);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 850;}
.kontakt-flyout-panel > p{
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.55;
  text-align: left;}
.kontakt-flyout-karte h3{
  margin: 0 0 16px;
  color: var(--praxis-text);
  font-size: 19px;
  line-height: 1.4;
  font-weight: 800;}
body .kontakt-flyout-telefon,
body .kontakt-flyout-telefon:hover,
body .kontakt-flyout-telefon:focus-visible{
  width: 100%;
  min-height: 64px;
  margin: 0;
  padding: 10px 16px;
  display: flex;
  border: 1px solid var(--praxis-blau);
  border-radius: 10px;
  background: var(--praxis-blau);
  color: #fff;
  text-decoration: none;
  transform: none;}
.kontakt-flyout-telefon > i{
  margin: 0;}
.kontakt-flyout-hinweis{
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;}
.kontakt-flyout-aktionen a,
.kontakt-flyout-aktionen a:hover,
.kontakt-flyout-aktionen a:focus-visible{
  color: var(--praxis-blau-dunkel);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 750;
  text-decoration: none;
  transform: none;}
.kontakt-flyout-aktionen i{
  margin: 0;}
@media screen and (max-width: 700px){.kontakt-flyout-panel h2{
    font-size: 24px;}
body .kontakt-flyout-telefon{
    min-height: 60px;}
}
@media screen and (max-width: 420px){.kontakt-flyout-panel > p{
    font-size: 15px;}
}
#cssmenu a[aria-current="page"]{
  background: var(--praxis-blau-dunkel);
  color: #fff;}
.leistungen-schnellzugriff .btn{
  margin: 0;}
.info-kicker{
  margin: 0 0 2px;
  font-size: 13px;}
.aktuelles-box h2,
.notfall-box h2,
.faq-bereich h2{
  margin-top: 0;}
.notfall-box > h2{
  color: #87251f;}
.notfall-grid h3{
  margin: 0 0 6px;
  font-size: 18px;}
.notfall-nummer{
  color: #fff;
  text-decoration: none;}
.notfall-zusatz{
  margin: 18px 0 0;}
.faq-bereich details p{
  margin: 0;}
.kontakt-flyout-notfall a{
  color: #74231e;}
.kontakt-flyout-nach-oben{
  background: #4d6578;}
body.serviceseite #mainContent{
  float: none;
  width: 100%;
  padding: 30px;}
body.serviceseite #sidebar{
  float: none;
  width: 100%;}
.service-hero img{
  width: 100%;
  height: 230px;
  border-radius: 12px;}
.service-kicker{
  font-size: 13px;}
.service-hero h1{
  margin: 0 0 12px;
  color: var(--praxis-blau-dunkel);
  font-size: clamp(28px,3.4vw,42px);}
.service-inhalt h2{
  margin-top: 30px;
  font-size: 25px;}
@media (max-width: 900px){body.serviceseite #sidebar,
  body.serviceseite #mainContent{
    margin-top: 20px;}
}
@media (max-width: 700px){body.serviceseite #mainContent{
    padding: 20px;}
.service-hero img{
    height: 190px;}
}
@media print{#cssmenu, #sidebar, .site-footer, .kontakt-flyout, .nav-toggle,
  .umzug-hinweis-top, .service-cta, .j1-download{
    display: none;}
#wrapper, body.serviceseite #mainContent{
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;}
}
#header .site-haupttitel{
  margin: 18px 0 8px;
  color: #2776ba;
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.13;
  font-weight: 800;}
#header .site-arztname{
  margin: 12px 0 5px;
  color: var(--praxis-text);
  font-size: 25px;
  line-height: 1.25;
  font-weight: 800;}
.site-footer h2{
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;}
.legal-stand{
  margin-top: 28px;
  font-size: 14px;}
@media (max-width: 700px){#header .site-haupttitel{
    margin-top: 5px;
    font-size: clamp(27px, 7vw, 34px);}
#header .site-arztname{
    font-size: 20px;}
}
a.btn,
button.btn,
.container-fluid a.btn,
#mainContent a.btn,
#mainContent button.btn{
  display: inline-flex;
  width: auto;
  margin: 8px 8px 8px 0;
  padding: 10px 17px;
  border: 1px solid var(--praxis-blau);
  border-radius: 8px;
  background: var(--praxis-blau);
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 650;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(49,95,145,.22);}
a.btn:hover,
a.btn:focus-visible,
button.btn:hover,
button.btn:focus-visible,
#mainContent a.btn:hover,
#mainContent a.btn:focus-visible{
  border-color: var(--praxis-blau-dunkel);
  background: var(--praxis-blau-dunkel);
  color: #fff;
  font-weight: 650;
  text-decoration: none;}
body #mainContent a.notfall-nummer{
  display: inline-flex;
  width: auto;
  margin: 8px 0 0;
  padding: 10px 18px;
  border: 1px solid #9b2b25;
  border-radius: 8px;
  background: #9b2b25;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  text-decoration: none;}
body #mainContent a.notfall-nummer:hover,
body #mainContent a.notfall-nummer:focus-visible{
  border-color: #74231e;
  background: #74231e;
  color: #fff;
  font-weight: 800;
  text-decoration: none;}
@media (max-width: 520px){a.btn,
  button.btn,
  #mainContent a.btn,
  #mainContent button.btn{
    width: 100%;
    margin-right: 0;
    padding: 11px 14px;}
body #mainContent a.notfall-nummer{
    width: 100%;}
}
.aktuelles-box{
  border: 1px solid var(--praxis-rand);
  border-left: 1px solid var(--praxis-rand);
  box-shadow: 0 6px 18px rgba(34, 67, 96, .10);}
.notfall-box{
  box-shadow: 0 6px 18px rgba(89, 45, 41, .09);}
.umzug-hinweis-top{
  background: var(--praxis-blau-dunkel);
  border: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 13px 28px;}
body.teamseite .umzug-hinweis-top,
body.indexseite .umzug-hinweis-top{
  padding: 13px 28px;}
.umzug-hinweis-inner{
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;}
.umzug-hinweis-top .fa-home{
  color: #ffc94d;
  font-size: 14px;}
.umzug-hinweis-top p{
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;}
.umzug-hinweis-top strong{
  color: #fff;}
.umzug-hinweis-top a{
  color: #fff;
  font-weight: 700;
  text-decoration: underline;}
@media (max-width: 700px){.umzug-hinweis-top{
    padding: 12px 18px;}
.umzug-hinweis-top p{
    font-size: 13px;}
.umzug-hinweis-top a[href^="tel:"]{
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.35);
    color: #fff;
    min-height: 34px;
    padding: 4px 12px;
    margin-block: 2px;}
}
.site-footer-col:first-child h4,
.site-footer-col:first-child h2{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;}
.site-footer-col:first-child h4 .fa-map-marker-alt{
  display: none;}
.site-footer-col:not(:first-child) h4,
.site-footer-col:not(:first-child) h2{
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 12.5px;
  font-weight: 700;
  color: #9fb3c6;
  margin-bottom: 14px;}
.leistungen-icon-reihe{
  display: flex;}
.leistung-icon-btn{
  text-decoration: none;}
.sidebar-stellenhinweis p{
  margin: 0 0 6px;
  font-size: 13.5px;}
.sidebar-stellenhinweis a.btn{
  width: 100%;
  margin: 8px 0 0;}

}

/* Baby-Telefon nach dem Vorbild des bisherigen Säuglingshinweises. */
.babytelefon-box{
  display: block;
  margin: 20px 0 26px;
  padding: 20px 22px;
  border: 1px solid #c7deee;
  border-radius: 12px;
  background: #eef6fc;
  box-sizing: border-box;}
.babytelefon-kopf{
  display: flex;
  margin: 0 0 11px;
  align-items: center;
  gap: 9px;
  color: var(--praxis-blau-dunkel);}
.babytelefon-kopf > i{
  flex: 0 0 auto;
  width: 18px;
  font-size: 19px;
  text-align: center;}
#mainContent .babytelefon-box h2{
  margin: 0;
  color: inherit;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 600;}
#mainContent .babytelefon-box p{
  margin: 0 0 10px;
  color: var(--praxis-text);
  font-size: 16px;
  line-height: 1.55;
  text-align: left;}
#mainContent .babytelefon-box .babytelefon-anruf{
  display: inline-flex;
  width: auto;
  min-width: 0;
  min-height: 0;
  margin: 4px 0 0;
  padding: 9px 13px;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border: 1px solid #cbdce8;
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
  color: var(--praxis-blau-dunkel);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
  text-decoration: none;
  box-shadow: none;
  transform: none;}
#mainContent .babytelefon-box .babytelefon-anruf > i{
  flex: 0 0 auto;
  font-size: 17px;}
.babytelefon-kontakttext{
  display: flex;
  flex-direction: column;
  align-items: flex-start;}
.babytelefon-nummer{
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;}
.babytelefon-hinweis{
  margin-top: 2px;
  color: #536b7f;
  font-size: 13px;
  line-height: 1.3;}
#mainContent .babytelefon-box .babytelefon-anruf:hover,
#mainContent .babytelefon-box .babytelefon-anruf:focus-visible,
#mainContent .babytelefon-box .babytelefon-anruf:active{
  width: auto;
  min-width: 0;
  min-height: 0;
  margin: 4px 0 0;
  padding: 9px 13px;
  border: 1px solid #9fbfd6;
  background: #f9fcfe;
  color: var(--praxis-blau-dunkel);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
  text-decoration: none;
  box-shadow: none;
  transform: none;}
@media (max-width: 520px){
  .babytelefon-box{
    margin: 16px 0 22px;
    padding: 17px 16px;}
  #mainContent .babytelefon-box h2{
    font-size: 18px;}
  #mainContent .babytelefon-box p{
    font-size: 16px;}
  #mainContent .babytelefon-box .babytelefon-anruf,
  #mainContent .babytelefon-box .babytelefon-anruf:hover,
  #mainContent .babytelefon-box .babytelefon-anruf:focus-visible,
  #mainContent .babytelefon-box .babytelefon-anruf:active{
    width: 100%;
    min-height: 0;
    margin: 4px 0 0;
    padding: 9px 12px;
    font-size: 16px;
    line-height: 1.35;}}


/* Kompakte Sprechzeiten direkt oben in der mobilen Startseitenansicht */
.mobile-sprechzeiten{
  display:none;
}
@media screen and (max-width:700px){
  body.indexseite .mobile-sprechzeiten{
    display:block;
    margin:12px 14px 14px;
    padding:15px 16px 16px;
    border:1px solid var(--praxis-rand);
    border-radius:12px;
    background:#fff;
    box-shadow:0 5px 16px rgba(34,67,96,.09);
  }
  .mobile-sprechzeiten-kopf{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:10px;
  }
  body.indexseite .mobile-sprechzeiten h2{
    margin:0;
    color:var(--praxis-blau-dunkel);
    font-size:19px;
    line-height:1.2;
    font-weight:800;
  }
  .mobile-sprechzeiten h2 i{
    margin-right:.35rem;
  }
  .mobile-sprechzeiten-badge{
    flex:0 0 auto;
    font-size:11px;
    line-height:1.2;
    font-weight:700;
    color:var(--praxis-blau-dunkel);
    background:#edf5fb;
    border-radius:999px;
    padding:5px 8px;
  }
  .mobile-sprechzeiten-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:0;
    margin:0 0 8px;
  }
  .mobile-sprechzeiten-grid span{
    display:block;
    padding:5px 0;
    border-bottom:1px solid #e8eef3;
    font-size:14px;
    line-height:1.35;
  }
  .mobile-sprechzeiten-grid span:last-child{
    border-bottom:0;
  }
  .mobile-sprechzeiten-grid strong{
    display:inline-block;
    min-width:34px;
    color:var(--praxis-text);
  }
  .mobile-sprechzeiten-hinweis{
    margin:8px 0 9px;
    font-size:12.5px;
    line-height:1.4;
    color:#4d5f6d;
  }
  body.indexseite .mobile-sprechzeiten .mobile-sprechzeiten-anruf{
    width:100%;
    justify-content:center;
    margin:0;
    min-height:43px;
  }
}
@media screen and (max-width:420px){
  .mobile-sprechzeiten-kopf{
    align-items:flex-start;
  }
  .mobile-sprechzeiten-badge{
    max-width:112px;
    text-align:center;
  }
}

/* Stellenangebote im Schnellzugriff: bestehende Form, Praxisblau. */
.leistung-icon-btn.stellenangebot-icon-btn {
  background: var(--praxis-blau);
  border-color: var(--praxis-blau);
}
.stellenangebot-icon-btn .leistung-icon-label {
  color: #fff;
}
.stellenangebot-icon-btn .leistung-icon-kreis {
  background: #fff;
  border-color: #fff;
  color: var(--praxis-blau);
}
.leistung-icon-btn.stellenangebot-icon-btn:hover,
.leistung-icon-btn.stellenangebot-icon-btn:focus-visible {
  background: var(--praxis-blau-dunkel);
  border-color: var(--praxis-blau-dunkel);
  transform: none;
}

/* Kompakte Schließzeiten innerhalb der vorhandenen Sprechzeitenfelder. */
.praxis-schliesszeiten { margin: 12px 0; min-width: 0; }
.praxis-schliesszeit-hinweis[hidden] { display: none; }
.praxis-schliesszeit-hinweis {
  padding: 10px 12px;
  margin-bottom: 8px;
  border: 1px solid #d6e4ef;
  border-radius: 8px;
  background: #eef5fa;
  color: #344454;
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.praxis-schliesszeit-hinweis p { margin: 0 0 6px; font-size: inherit; line-height: inherit; }
.praxis-schliesszeit-hinweis p:last-child { margin-bottom: 0; }
.praxis-schliesszeit-hinweis strong { color: #315f8b; }
.praxis-schliesszeiten a { color: #315f8b; text-decoration: underline; text-underline-offset: 3px; }
.praxis-schliesszeiten a:hover { color: #244866; }
.praxis-schliesszeiten a:focus-visible { outline: 2px solid #315f8b; outline-offset: 3px; }
.praxis-schliesszeiten-pdf { display: inline-block; padding: 5px 0; font-size: 13px; line-height: 1.5; }
.praxis-schliesszeiten-pdf i { margin-right: 4px; }


