/*
███████████████████████████████████████████████████████████████████████████████████████████████
    FontAwesome
███████████████████████████████████████████████████████████████████████████████████████████████
*/
@import "fontawesome/solid.min.css";

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Web-Fonts
███████████████████████████████████████████████████████████████████████████████████████████████
*/
/* roboto-100 - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  src:
    local("Roboto Thin"),
    local("Roboto-Thin"),
    url("../fonts/roboto-v20-latin-100.woff2") format("woff2"),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url("../fonts/roboto-v20-latin-100.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-300 - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src:
    local("Roboto Light"),
    local("Roboto-Light"),
    url("../fonts/roboto-v20-latin-300.woff2") format("woff2"),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url("../fonts/roboto-v20-latin-300.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-regular - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src:
    local("Roboto"),
    local("Roboto-Regular"),
    url("../fonts/roboto-v20-latin-regular.woff2") format("woff2"),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url("../fonts/roboto-v20-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-italic - latin */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  src:
    local("Roboto Italic"),
    local("Roboto-Italic"),
    url("../fonts/roboto-v20-latin-italic.woff2") format("woff2"),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url("../fonts/roboto-v20-latin-italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-500 - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src:
    local("Roboto Medium"),
    local("Roboto-Medium"),
    url("../fonts/roboto-v20-latin-500.woff2") format("woff2"),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url("../fonts/roboto-v20-latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-700 - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src:
    local("Roboto Bold"),
    local("Roboto-Bold"),
    url("../fonts/roboto-v20-latin-700.woff2") format("woff2"),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url("../fonts/roboto-v20-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Variablen
███████████████████████████████████████████████████████████████████████████████████████████████
*/
:root {
  --color_ci: #2c4b9b;
}

/*
██████████████████████████████████████████████████████████████████████████████████████
    Barrierefreiheit
██████████████████████████████████████████████████████████████████████████████████████
*/
:root {
  --focus_outline_size: max(3px, 0.1em);
  --focus_outline_style: dashed;
  --focus_outline_offset: 0.1rem;
  --focus_outline_color: hotpink;
}
@supports selector(:focus-visible) {
  *:focus {
    outline: none;
  }
}
*:focus-visible {
  outline: var(--focus_outline_size) var(--focus_outline_style)
    var(--focus_outline_color);
  outline-offset: var(--focus_outline_offset, var(--focus_outline_size));
}

/*
██████████████████████████████████████████████████████████████████████████████████████
    Skip-Header-Link
██████████████████████████████████████████████████████████████████████████████████████
*/
#skip_header {
  position: absolute;
  z-index: 5;
  top: -5rem;
  left: 2dvw;
  border: 0;
  padding: 0.35em 0.7em;
  background-color: #111;
  color: #fff;
  border: 0.7em solid #fff;
  border-radius: 0.5rem;
  font-weight: 400;
  outline-offset: 0;
  text-decoration: none;
  transition: top 350ms ease-out;
}
#skip_header * {
  color: inherit;
}
#skip_header:focus-visible {
  top: 1rem;
  box-shadow:
    0 0 2px rgba(0, 0, 0, 0.07),
    0 0 6px rgba(0, 0, 0, 0.13),
    0 0 14px rgba(0, 0, 0, 0.2),
    0 0 25px rgba(0, 0, 0, 0.27),
    0 0 40px rgba(0, 0, 0, 0.33),
    0 0 57px rgba(0, 0, 0, 0.94);
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Viewport-Anweisung
███████████████████████████████████████████████████████████████████████████████████████████████
*/
@-ms-viewport {
  width: device-width;
  zoom: 1;
}
@-o-viewport {
  width: device-width;
  zoom: 1;
}
@viewport {
  width: device-width;
  zoom: 1;
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Eric Meyer's CSS Reset
███████████████████████████████████████████████████████████████████████████████████████████████
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
header,
section,
footer,
aside,
nav,
main,
article,
figure {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
ol li {
  list-style: decimal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    allgemeine Einstellungen
███████████████████████████████████████████████████████████████████████████████████████████████
*/
html {
  font-size: 18px;
  scroll-behavior: smooth;
  min-height: 100%;
  position: relative;
}
body {
  position: relative;
  z-index: 0;
  font-size: 100%;
  background-color: #fff;
  min-block-size: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.04;
  background-color: var(--color_ci);
}
body,
body * {
  box-sizing: border-box;
  font-family: "Roboto", Arial, Helvetica, Sans-Serif;
  color: #333;
  line-height: 1.5em;
  background-repeat: no-repeat;
  font-weight: 300;
}
p,
ul,
ol,
table {
  margin-bottom: 1.5em;
}
strong,
.bold {
  font-weight: 700;
}
em {
  font-style: italic;
}
.center {
  text-align: center;
}
.center > * {
  display: inline-block;
}
.clear {
  clear: both;
  float: none;
}
a.fancybox img[style*="float:left"],
a.fancybox img[style*="float: left"] {
  margin: 0 2% 1% 0;
}
a.fancybox img[style*="float:right"],
a.fancybox img[style*="float: right"] {
  margin: 0 0 1% 2%;
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Überschriften
███████████████████████████████████████████████████████████████████████████████████████████████
*/
h1,
h2,
h3,
h4 {
  display: block;
  clear: both;
  float: none;
  overflow: visible;
  color: var(--color_ci);
  text-align: left;
  line-height: 1.3em;
  font-weight: 500;
}
h1,
h2.like_h1 {
  font-size: 2.5em;
  margin-top: 0.7em;
  margin-bottom: 1.3em;
  text-align: center;
}
h1:has(+ .subheading) {
  margin-bottom: 1em;
}
h1 + .subheading {
  margin: -2em 0 2em 0;
  font-size: 1.2em;
  opacity: 0.8;
  text-align: center;
}
h2 {
  font-size: 2.1em;
  margin-top: 2em;
  margin-bottom: 0.6em;
  line-height: 1.1em;
}
.home h2 + .subheading {
  margin: -0.8em 0 1.5em 0;
  font-size: 1.1em;
  opacity: 0.8;
  text-align: center;
}
h3 {
  font-size: 1.7em;
  margin-top: 2em;
  margin-bottom: 0.7em;
}
h2 + h3 {
  margin-top: 1em;
}
h4 {
  font-size: 1.2em;
  margin-top: 1.9em;
  margin-bottom: 1.1em;
  letter-spacing: 0.04em;
  font-weight: 400;
}
h3 + h4 {
  margin-top: 0.8em;
}
@media (max-width: 1300px) {
  h1,
  h2.like_h1 {
    font-size: 2.25em;
  }
  h2 {
    font-size: 1.8em;
  }
  h3 {
    font-size: 1.5em;
  }
  h4 {
    font-size: 1.1em;
  }
}
@media (max-width: 1000px) {
  h1 + .subheading {
    margin-top: -1.5em;
  }
  .home h2 + .subheading {
    margin-top: -0.5em;
  }
}
@media (max-width: 900px) {
  h1,
  h2.like_h1 {
    font-size: 1.8em;
  }
  h1 + .subheading {
    font-size: 1.1em;
  }
  h2 {
    font-size: 1.5em;
  }
  h2 + .subheading {
    font-size: 1em;
  }
  h3 {
    font-size: 1.2em;
  }
  h4 {
    font-size: 1em;
  }
}
@media (max-width: 550px) {
  h1,
  h2.like_h1 {
    font-size: 1.65em;
  }
  h2 {
    font-size: 1.4em;
  }
  h3 {
    font-size: 1.15em;
  }
}
/*
███████████████████████████████████████████████████████████████████████████████████████████████
    dynamische Schriftgröße
███████████████████████████████████████████████████████████████████████████████████████████████
*/
@media (max-width: 1300px) {
  body {
    font-size: 98.4%;
  }
}
@media (max-width: 1200px) {
  body {
    font-size: 96.8%;
  }
}
@media (max-width: 1100px) {
  body {
    font-size: 95.2%;
  }
}
@media (max-width: 1000px) {
  body {
    font-size: 93.6%;
  }
}
@media (max-width: 900px) {
  body {
    font-size: 92%;
  }
}
@media (max-width: 800px) {
  body {
    font-size: 90.4%;
  }
}
@media (max-width: 700px) {
  body {
    font-size: 88.8%;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 87.2%;
  }
}
@media (max-width: 500px) {
  body {
    font-size: 85.6%;
  }
}
@media (max-width: 400px) {
  body {
    font-size: 84%;
  }
}
@media (max-width: 300px) {
  body {
    font-size: 82.4%;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Layout
███████████████████████████████████████████████████████████████████████████████████████████████
*/
.inner {
  width: 100%;
  max-width: 1280px;
  padding: 0 4rem;
  margin: 0 auto;
}
.narrow {
  width: 100%;
  max-width: 900px;
  padding: 0 4rem;
  margin: 0 auto;
}
.wide {
  width: 100%;
  max-width: 1400px;
  padding: 0 1em;
  margin: 0 auto;
}
.anchor {
  display: block;
  position: absolute;
  margin-top: -8em;
  width: 0;
  height: 0;
}
@media (max-width: 1300px) {
  .inner {
    padding: 0 5.5%;
  }
}
@media (max-width: 1230px) {
  .inner {
    padding: 0 3%;
  }
}
@media (max-width: 900px) {
  .narrow {
    padding: 0 3%;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Column-Layout
███████████████████████████████████████████████████████████████████████████████████████████████
*/
.clc {
  overflow: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  margin-left: -1%;
  margin-right: -1%;
}
.clc.reverse {
  flex-direction: row-reverse;
}
.clc.vcenter {
  align-items: center;
  align-content: center;
}
.clc + .clc {
  margin-top: 1em;
}
.clc .col {
  flex-grow: 0;
  flex-shrink: 1;
  margin: 1%;
}
.clc .col h2,
.clc .col h3 {
  margin-top: 0;
}
.clc .one_third {
  width: 31.33333%;
}
.clc .two_thirds {
  width: 63.66666%;
}
.clc .one_quarter {
  width: 22%;
}
.clc .one_half {
  width: 48%;
}
.clc .one_fifth {
  width: 18%;
}
@media (max-width: 800px) {
  .clc .one_third {
    width: 48%;
  }
}
@media (max-width: 550px) {
  .clc .one_half {
    width: 100%;
  }
  .clc .one_third {
    width: 100%;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Header
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#header {
  overflow: visible;
  z-index: 3;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow:
    0 0px 1.5px rgba(0, 0, 0, 0.05),
    0 0px 3.8px rgba(0, 0, 0, 0.071),
    0 0px 7.8px rgba(0, 0, 0, 0.089),
    0 0px 16.1px rgba(0, 0, 0, 0.11),
    0 0px 44px rgba(0, 0, 0, 0.16);
}
/*
===== Top-Line ================================================================================
*/
#header .top_line {
  background-color: var(--color_ci);
  color: #fff;
  font-weight: var(--font_weight_medium);
  padding-block: 0.5rem;
  transition: all 0.2s;
}
#header.shrink .top_line {
  padding-block: 0.2rem;
}
#header .top_line * {
  color: inherit;
  font-weight: inherit;
}
#header .top_line .wide {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
#header .top_line a {
  text-decoration: none;
}
#header .top_line a:hover {
  text-decoration: underline;
}
#header .top_line .contact_con a {
  white-space: nowrap;
}
#header .top_line .contact_con a:has(+ a) {
  margin-right: 2rem;
}
#header .top_line .contact_con a::before {
  font-family: "Font Awesome 5 Free";
  font-size: 0.8em;
  display: inline-block;
  text-align: center;
  min-width: 1em;
  margin-right: 0.6em;
}
#header .top_line .contact_con .telephone::before {
  content: "\f879";
}
#header .top_line .contact_con .email::before {
  content: "\f0e0";
}
#header .top_line .sec_nav_con a {
  display: inline-block;
  font-size: 0.9em;
  font-weight: var(--font_weight_light);
  padding: 0 0.5em;
  margin-right: 1rem;
}
#header .top_line .sec_nav_con a:last-of-type {
  margin-right: 0;
}
@media (max-width: 30rem) {
  #header .top_line .sec_nav_con {
    display: none;
  }
}
/*
===== Main-Line ===============================================================================
*/
#header .main_line {
  padding-block: 0.4rem;
}
#header .main_line .inner {
  position: relative;
}
#header .main_line .logo {
  display: block;
  float: left;
  line-height: 0;
  --focus_outline_offset: -0.2rem;
}
#header .main_line .logo img {
  display: block;
  width: 120px;
  height: auto;
  transition: all 0.2s;
}
#header.shrink .main_line .logo img {
  width: 70px;
}
@media (max-width: 1400px) {
  #header .main_line {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
@media (max-width: 1300px) {
  #header .main_line {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Kontakt-Buttons
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#contact_btn_con {
  position: absolute;
  right: 2em;
  top: 0;
}
#contact_btn_con a {
  display: block;
  float: left;
  width: 1.9em;
  height: 1.7em;
  line-height: 1.7em;
  font-size: 1em;
  text-align: center;
  color: #fff;
  background-color: #333;
}
#contact_btn_con a * {
  color: inherit;
}
#contact_btn_con a.email {
  background-color: #007967;
}
#contact_btn_con a.map {
  background-color: var(--color_ci);
}
#contact_btn_con a.telephone {
  background-color: #484d59;
}
#contact_btn_con a:hover {
  filter: contrast(1.4) saturate(1.7);
}
@media (max-width: 1200px) {
  #contact_btn_con {
    right: unset;
    left: 1em;
  }
  #contact_btn_con a {
    width: 2.2em;
    height: 2em;
    line-height: 2em;
    font-size: 1.2em;
  }
}
@media (max-width: 600px) {
  #contact_btn_con {
    right: 1em;
    left: unset;
  }
  #contact_btn_con a {
    width: 2em;
    height: 1.8em;
    line-height: 1.8em;
    font-size: 1.1em;
  }
}
@media (max-width: 400px) {
  #contact_btn_con {
    right: 0;
  }
  #contact_btn_con a {
    width: 2em;
    height: 1.8em;
    line-height: 1.8em;
    font-size: 1.1em;
  }
}
/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Haupt-Navigation
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#navi_con {
  float: right;
  margin-top: 2.2rem;
  transition: all 0.2s;
}
#header.shrink #navi_con {
  margin-top: 0.6rem;
}
#nav_overlay {
  display: block;
  overflow: visible;
}
#navi * {
  text-decoration: none;
}
/*
===============================================================================================
    ... im Grundzustand
===============================================================================================
*/
#navi ul {
  margin-bottom: 0;
}
#navi ul li {
  display: inline-block;
  text-align: center;
  margin: 0 0 0 0.2em;
}
#navi ul li:first-of-type {
  margin-left: 0;
}
#navi ul li:last-of-type {
  margin-right: -0.8em;
}
#navi ul li a {
  display: block;
  overflow: visible;
  text-align: inherit;
  width: 100%;
  padding: 0.5em 0.8em;
  line-height: 1.6em;
  font-weight: 400;
  color: #222;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
#nav_overlay:not(.navopen) #navi ul li.active a {
  border-color: var(--color_ci);
}
#navi ul li a:hover {
  color: var(--color_ci);
}
#navi ul li a * {
  font-weight: inherit;
  color: inherit;
}
#navi ul li a:hover span,
#navi ul li.active a span {
  position: relative;
}
#navi ul li a:hover span::after,
#navi ul li.active a span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.4em;
  left: 0;
  width: 100%;
  border-bottom: 2px solid var(--color_brand_2);
}
#navi ul li a:hover span::after {
  opacity: 1 !important;
}
#navi ul li.active a span::after {
  opacity: 0.3;
}
@media (max-width: 1000px) {
  #navi ul li a {
    text-transform: none;
  }
}
/*
===============================================================================================
    geschlossenes Menu
===============================================================================================
*/
#nav_toggle {
  display: none;
  background-color: transparent;
  cursor: pointer;
  /* outline: none; */
  padding: 0.5em 0 0.5em 0.5em;
  border: none;
  color: #222;
  line-height: 2em;
  margin: 0;
}
#nav_toggle * {
  color: inherit;
}
#nav_toggle::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0c9";
  font-size: 2.5em;
  display: inline-block;
  float: left;
  margin-right: 0.4em;
}
#header.pinned #nav_toggle::before {
  font-size: 2.3em;
}
#nav_toggle span {
  display: block;
  font-size: 1.3em;
  float: left;
  font-weight: var(--font_weight_light);
}
@media (max-width: 740px) {
  #nav_toggle {
    display: block;
    float: right;
  }
  #navi {
    display: none;
  }
}
/*
===============================================================================================
    offenes Menu
===============================================================================================
*/
#nav_overlay.navopen #navi {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  display: block;
  overflow: auto;
  width: 100%;
  padding: 5% 10% 460% 10%;
}
#nav_overlay.navopen #navi > ul {
  background-color: #444;
  padding: 3%;
  box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 1);
}
#nav_overlay.navopen #navi > ul > li {
  display: block;
  float: none;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0.5em;
  outline: 1px solid rgba(255, 255, 255, 0.6);
  outline-offset: -1px;
}
#nav_overlay.navopen #navi > ul > li:first-of-type {
  margin-top: 0;
}
#nav_overlay.navopen #navi > ul > li a {
  color: #fff;
}
#nav_overlay.navopen #navi ul li a {
  text-align: left;
  display: block;
  width: 100%;
  padding: 0.7rem;
  margin: 0;
  line-height: 1em;
  white-space: nowrap;
}
#nav_overlay.navopen #navi ul li a:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 740px) {
  #nav_overlay.navopen #navi {
    padding: 0 0 100% 0;
  }
  #nav_overlay.navopen #navi > ul {
    padding: 5% 4rem 5% 5%;
  }
}
/*
===============================================================================================
    Burger-Menu
===============================================================================================
*/
#nav_overlay.navopen #nav_toggle {
  font-size: 3em;
  font-weight: 400;
  float: right;
  right: 1rem;
  top: 1rem;
  position: fixed;
  z-index: 2;
  margin-top: 0;
  color: #d75151;
  line-height: 0.5em;
  width: 0.7em;
  padding: 0;
  background-color: transparent;
  border: none;
}
#nav_overlay.navopen #nav_toggle:hover {
  color: #ff1616;
}
#nav_overlay.navopen #nav_toggle::before {
  display: none;
}
@media (max-width: 550px) {
  #nav_overlay.navopen #nav_toggle {
    top: 1rem;
  }
}
@media (max-width: 460px) {
  #nav_overlay #nav_toggle span {
    display: none;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Header-Offset
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#header_offset {
  width: 100%;
  border-top: 85px solid #888;
}
@media (max-width: 1300px) {
  body.with_topline #header_offset {
    border-top-width: 80px;
  }
}
@media (max-width: 1200px) {
  #header_offset {
    border-top-width: 51px;
  }
  body.with_topline #header_offset {
    border-top-width: 88px;
  }
}
@media (max-width: 1000px) {
  body.with_topline #header_offset {
    border-top-width: 85px;
  }
}
@media (max-width: 900px) {
  body.with_topline #header_offset {
    border-top-width: 113px;
  }
}
@media (max-width: 600px) {
  #header_offset {
    border-top-width: 85px;
  }
  body.with_topline #header_offset {
    border-top-width: 185px;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Header-Bild
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#header_pic {
  width: 100%;
  padding-bottom: 27%;
  background-image: url("../bilder/header.jpg");
  background-size: cover;
  background-position: 50% 50%;
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Content-Bereich
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#content {
  padding: 3em 0;
}
.home #content {
  padding: 0;
}
#content > .inner:first-child {
  min-height: 18rem;
}
#content section:has(> .accordion) {
  border-top: none;
}
#content .hub_link {
  margin-top: 6rem;
  margin-bottom: 4rem;
  text-align: center;
}
#content ul {
  margin-left: 1.5rem;
  list-style: none !important;
}
#content ul li {
  line-height: inherit;
  margin-top: 0.7em;
  line-height: 1.25em;
}
#content ul li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-size: 0.9em;
  display: block;
  float: left;
  width: 2em;
  margin-left: -2em;
  text-align: center;
  opacity: 0.8;
}
#content .button {
  display: inline-block;
  font-weight: 500;
  text-decoration: none !important;
  text-transform: uppercase;
  color: #333;
  border: 1px solid #333;
  background-color: rgba(255, 255, 255, 0.2);
  line-height: 1em;
  padding: 1em 2em 0.9em 2em;
  border-radius: 0.3em;
  backdrop-filter: blur(3px);
}
#content .button:hover,
#content .button:focus-visible {
  background-color: #333;
  color: #fff;
}
#content .fancybox {
  display: inline-block;
  line-height: 0;
  box-shadow:
    0 0px 0.2px rgba(0, 0, 0, 0.02),
    0 0px 0.5px rgba(0, 0, 0, 0.028),
    0 0px 0.9px rgba(0, 0, 0, 0.035),
    0 0px 1.6px rgba(0, 0, 0, 0.042),
    0 0px 2.9px rgba(0, 0, 0, 0.05),
    0 0px 7px rgba(0, 0, 0, 0.07);
}
#content .fancybox:hover {
  outline: 1px solid var(--color_ci);
  outline-offset: -6px;
}
#content .fancybox img {
  width: auto;
  max-width: 100%;
}
#content figure img {
  display: block;
  width: auto;
  max-width: 100%;
  border-radius: 0.3rem;
}
#content figure figcaption {
  line-height: 1.2em;
  padding-top: 0.5ch;
}
@media (max-width: 800px) {
  #content .button {
    padding: 0.8em 1.5em 0.75em 1.5em;
    border-radius: 0.25em;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Intro
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#intro {
  position: relative;
  z-index: 0;
  padding: 3em 0;
  background-color: #eee;
  background: linear-gradient(
    165deg,
    #ededed 0%,
    #fff 30%,
    #fff 70%,
    #ededed 100%
  );
  background-color: transparent;
  text-align: center;
}
#intro::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color_ci);
  opacity: 0.04;
}
#intro h1 {
  margin-top: 0;
  margin-bottom: 1em;
}
#intro p {
  text-align: justify;
  text-wrap: pretty;
}
#intro .logo_full {
  width: 100%;
  max-width: 450px;
  margin: 0 auto 1rem;
}
@media (max-width: 1200px) {
  #intro {
    padding-bottom: 2em;
  }
}
@media (max-width: 800px) {
  #intro {
    padding: 2em 0;
  }
  #intro h1 {
    line-height: 1.1em;
  }
  #intro p {
    text-align: left;
  }
}
@media (max-width: 600px) {
  #intro h1 {
    text-align: left;
    margin-bottom: 0.5em;
  }
  #intro h1 + .subheading {
    margin-top: -0.5em;
    text-align: left;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Leistungen auf Homepage
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#services {
  padding: 4em 0;
  background-color: transparent;
  box-shadow:
    inset 0 0px 3.2px rgba(0, 0, 0, 0.028),
    inset 0 0px 7.6px rgba(0, 0, 0, 0.04),
    inset 0 0px 14.3px rgba(0, 0, 0, 0.05),
    inset 0 0px 25.5px rgba(0, 0, 0, 0.06),
    inset 0 0px 47.6px rgba(0, 0, 0, 0.072),
    inset 0 0px 114px rgba(0, 0, 0, 0.1);
}
#services::before {
  content: "";
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("../bilder/leistungen-bg.jpg");
  background-size: cover;
  background-position: 50% 50%;
  filter: contrast(0.4) brightness(1.5) blur(2px);
}
#services::after {
  content: "";
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  opacity: 0.7;
}
#services h2 {
  margin-top: 0;
  margin-bottom: 0.5em;
}
#services .flex_con {
  overflow: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  margin: 2em auto;
}
#services .flex_con .flex_item {
  flex-grow: 0;
  flex-shrink: 1;
  width: 29.33333%;
  margin: 2%;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 0.4em;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
/* #services .flex_con .flex_item:first-of-type {
  margin-left: 0;
} */
#services .flex_con a.flex_item:hover,
#services .flex_con a.flex_item:focus-visible {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.4);
}
#services .flex_con .flex_item img {
  display: block;
  width: 100%;
  margin: 0 auto 1em auto;
}
#services .flex_con .flex_item:hover img {
  filter: brightness(1.1) contrast(1.1);
}
#services .flex_con .flex_item .txt {
  padding: 0 1em 1em 1em;
}
#services .flex_con .flex_item .txt ul {
  text-align: left;
}
#services .flex_con .flex_item .fas {
  color: var(--color_ci);
  font-size: 3.7em;
  margin: 0 auto 0.2em auto;
}
#services .flex_con .flex_item h3 {
  color: #000;
  margin: 0;
  font-size: 1.4em;
  line-height: 1.2em;
}
#services .flex_con .flex_item h3:has(+ *) {
  margin-bottom: 0.7rem;
}
#services .flex_con .flex_item p {
  margin-bottom: 0;
  color: #000;
}
@media (max-width: 1400px) {
  #services .flex_con .flex_item {
    width: 23.5%;
    margin-left: 2%;
  }
}
@media (max-width: 1100px) {
  #services .flex_con {
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 0;
  }
  #services .flex_con .flex_item {
    width: 40%;
    margin-left: unset;
    margin-bottom: 2em;
    flex-grow: 0;
  }
}
@media (max-width: 950px) {
  #services .flex_con .flex_item {
    width: 46%;
  }
}
@media (max-width: 550px) {
  #services .flex_con .flex_item {
    width: 77%;
    margin-bottom: 2em;
  }
  #services .flex_con .flex_item h3 {
    margin: 0 0 0.3em 0;
  }
  #services .flex_con .flex_item img {
    margin-bottom: 0.5em;
  }
}
@media (max-width: 450px) {
  #services .flex_con .flex_item {
    width: 100%;
    margin-bottom: 1em;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Leistungen (Seite)
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#services_descriptions .service_segment {
  margin-top: 5em;
  margin-bottom: 2em;
}
#services_descriptions .service_segment .col:first-of-type {
  order: 2;
}
#services_descriptions .service_segment .col:last-of-type {
  order: 1;
}
#services_descriptions .service_segment:nth-of-type(odd) .col:first-of-type {
  order: 1;
}
#services_descriptions .service_segment:nth-of-type(odd) .col:last-of-type {
  order: 2;
}
#services_descriptions .service_segment a {
  border-radius: 0.4rem;
  overflow: hidden;
}
@media (max-width: 1000px) {
  #content .service_segment .col {
    width: 100% !important;
  }
  #content .service_segment .col:first-of-type {
    order: 1;
  }
  #content .service_segment .col:last-of-type {
    order: 2;
  }
  #content .service_segment .col.txt :last-child {
    margin-bottom: 0;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Karriere-Teaser
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#jobs_teaser {
  padding: 6em 0;
  background-color: #777;
  background-size: cover;
  background-position: 50% 50%;
  color: #fff;
  position: relative;
  background-image: url("../bilder/karriere-bg.jpg");
}
#jobs_teaser::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
#jobs_teaser * {
  color: inherit;
}
#jobs_teaser .inner {
  position: relative;
  z-index: 2;
}
#jobs_teaser h2 {
  margin-top: 0;
  margin-bottom: 0.5em;
  text-align: left;
}
#jobs_teaser .cta {
  margin-bottom: 0.9em;
  font-size: 2.8em;
  font-weight: 100;
  line-height: 1.1em;
}
#jobs_teaser .button {
  color: #fff !important;
  border-color: #fff;
}
#jobs_teaser .button:hover,
#jobs_teaser .button:focus-visible {
  color: #333 !important;
  background-color: #fff;
  border-color: #fff;
}
@media (max-width: 1000px) {
  #jobs_teaser .cta {
    font-size: 2.2em;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Referenzen auf Homepage
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#credentials {
  position: relative;
  z-index: 0;
  padding: 3em 0;
  background-color: #eee;
  background: linear-gradient(
    165deg,
    #ededed 0%,
    #fff 30%,
    #fff 70%,
    #ededed 100%
  );
}
#credentials::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color_ci);
  opacity: 0.04;
}
#credentials h2 {
  margin-top: 0;
  margin-bottom: 0.5em;
}
@media (max-width: 1200px) {
  #credentials p.center {
    text-align: left;
  }
}
@media (max-width: 600px) {
  #credentials h2 {
    text-align: left;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Referenzen-Band
███████████████████████████████████████████████████████████████████████████████████████████████
*/
.credentials_ribbon {
  width: 100%;
  max-width: 1900px;
  margin: 0 auto 2em auto;
}
.credentials_ribbon .picture_list {
  overflow: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  margin-bottom: 2.5em;
}
.credentials_ribbon .picture_list a {
  flex-grow: 1;
  flex-shrink: 1;
  width: 16.66666%;
  padding: 0;
  text-align: center;
  line-height: 0;
  --focus_outline_offset: -0.3rem;
}
.credentials_ribbon .picture_list a:nth-of-type(1n + 7) {
  display: none;
}
.credentials_ribbon .picture_list a img {
  width: 100%;
}
@media (max-width: 950px) {
  .credentials_ribbon .picture_list a {
    width: 33.33333%;
  }
}
@media (max-width: 600px) {
  #credentials h2 {
    text-align: left;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Referenzen-Galerie
███████████████████████████████████████████████████████████████████████████████████████████████
*/
.credentials_gallery {
  overflow: auto;
  margin-top: 4em;
  margin-bottom: 4em;
}
.credentials_gallery h2 {
  margin-top: 0;
}
.credentials_gallery .picture_list {
  display: block;
  overflow: auto;
}
.credentials_gallery .picture_list a {
  display: block;
  position: relative;
  float: left;
  margin-right: 1%;
  margin-bottom: 1%;
  line-height: 0;
  outline-offset: -1px;
  cursor: zoom-in;
  outline: 1px solid #ddd;
  width: 24.25%;
}
.credentials_gallery .picture_list a:nth-of-type(4n + 0) {
  margin-right: 0;
}
.credentials_gallery .picture_list a:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
}
.credentials_gallery .picture_list a:hover:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  outline: 1px solid var(--color_ci);
  outline-offset: -8px;
}
.credentials_gallery a img {
  width: 100%;
  height: auto;
}
.credentials_gallery a:hover img {
  filter: saturate(1.4) brightness(0.8);
}
.credentials_gallery .picture_list.toggle_pix a.more {
  display: none;
}
.credentials_gallery .picture_list.showall a.more {
  display: block;
}
.credentials_gallery .picture_list .toggle_pix_btn {
  display: block !important;
  width: auto;
  max-width: 100%;
  float: none;
  clear: both;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  font-size: inherit;
}
.credentials_gallery .picture_list .toggle_pix_btn:hover {
  background-color: #333;
  color: #fff;
}
@media (max-width: 900px) {
  .credentials_gallery .picture_list a {
    width: 32.66666%;
  }
  .credentials_gallery .picture_list a:nth-of-type(4n + 0) {
    margin-right: 1%;
  }
  .credentials_gallery .picture_list a:nth-of-type(3n + 0) {
    margin-right: 0;
  }
  .credentials_gallery .picture_list.toggle_pix a.more {
    display: block;
  }
  .credentials_gallery .picture_list .toggle_pix_btn {
    display: none !important;
  }
}
@media (max-width: 650px) {
  .credentials_gallery .picture_list a {
    width: 49.5%;
  }
  .credentials_gallery .picture_list a:nth-of-type(3n + 0) {
    margin-right: 1%;
  }
  .credentials_gallery .picture_list a:nth-of-type(2n + 0) {
    margin-right: 0;
  }
}
@media (max-width: 350px) {
  .credentials_gallery .picture_list a {
    width: 100% !important;
    max-width: unset;
    margin-right: 0 !important;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Referenzen-Unterseite
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#cred_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  --focus_outline_offset: -0.5rem;
}
#cred_list > li::before {
  display: none !important;
}
#cred_list > li a {
  position: relative;
  display: grid;
  aspect-ratio: 6 / 5;
  border-radius: 0.3rem;
  background-color: #ddd;
  text-decoration: none;
  place-items: center;
  border: 2px solid var(--color_ci);
  background-size: cover;
}
#cred_list > li.wasserwirtschaft-abwasserentsorgung a {
  background-image: url("../bilder/referenzen/uebersicht/wasserwirtschaft-abwasserentsorgung.webp");
}
#cred_list > li.medieninfrastruktur a {
  background-image: url("../bilder/referenzen/uebersicht/medieninfrastruktur.webp");
}
#cred_list > li.ingenieurbau a {
  background-image: url("../bilder/referenzen/uebersicht/ingenieurbau.webp");
}
#cred_list > li.verkehrsbau a {
  background-image: url("../bilder/referenzen/uebersicht/verkehrsbau.webp");
}
#cred_list > li.wasserbau a {
  background-image: url("../bilder/referenzen/uebersicht/wasserbau.webp");
}
#cred_list > li.bruecken-bauwerkspruefung a {
  background-image: url("../bilder/referenzen/uebersicht/bruecken-bauwerkspruefung.webp");
}
#cred_list > li a::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  top: -0.4rem;
  right: -0.4rem;
  background-color: var(--color_ci);
  transition: all 200ms ease;
}
#cred_list > li a:hover::after {
  top: 0;
  right: 0;
}
#cred_list > li a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.15em;
  padding: 0.5em 2em;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
  color: #fff;
  min-height: 3.4em;
  text-align: center;
}
#cred_list > li a:hover span,
#cred_list > li a:focus-visible span {
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--color_ci);
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Slick-Slider
███████████████████████████████████████████████████████████████████████████████████████████████
*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Slick-Silder-Custom-Styling
███████████████████████████████████████████████████████████████████████████████████████████████
*/
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  z-index: 1;
  top: 50%;
  display: block;
  width: 44px;
  height: 44px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  color: #555;
  background: #fff;
  border: 1px solid #555;
  border-radius: 99px;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: #fff;
  outline: none;
  background: #555;
}
.slick-prev:before,
.slick-next:before {
  font-family: "Font Awesome 5 Free";
  font-size: 26px;
  line-height: 1;
  color: inherit;
}
.slick-prev {
  left: -50px;
}
.slick-next {
  right: -50px;
}
.slick-prev:before {
  content: "\f104";
  margin-left: -3px;
}
.slick-next:before {
  content: "\f105";
  margin-right: -3px;
}
.slick-slide {
  padding: 0.25em;
}
.slick-slide a {
  display: block;
  text-align: center;
  line-height: 0;
  text-decoration: none !important;
}
.slick-slide a:focus {
  outline: none;
}
.slick-slide a img {
  display: block;
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.slick-slide a:hover img {
  filter: saturate(1.2) brightness(0.9);
}
@media (max-width: 1300px) {
  .slick-prev,
  .slick-next {
    opacity: 0.8;
  }
  .slick-prev {
    left: -25px;
  }
  .slick-next {
    right: -25px;
  }
  .slick-prev:hover,
  .slick-next:hover {
    opacity: 1;
  }
}
@media (max-width: 1100px) {
  .slick-prev,
  .slick-next {
    width: 38px;
    height: 38px;
  }
  .slick-prev {
    left: -12px;
  }
  .slick-next {
    right: -12px;
  }
}
@media (max-width: 900px) {
  .slick-prev,
  .slick-next {
    width: 35px;
    height: 35px;
  }
  .slick-prev {
    left: -5px;
  }
  .slick-next {
    right: -5px;
  }
  .slick-prev:before,
  .slick-next:before {
    font-size: 23px;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Aktuelles-Teaser
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#news_teaser {
  padding: 3em 0;
  background-color: #eee;
}
#news_teaser .inner {
  overflow: hidden;
}
#news_teaser h2 {
  margin-top: 0;
  margin-bottom: 0.5em;
}
#news_teaser .teaser_con {
  overflow: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
}
#news_teaser .teaser_con .col {
  flex-grow: 1;
  flex-shrink: 1;
  width: 48%;
  padding: 0 1em;
}
#news_teaser .txt_con .heading {
  line-height: 1.2em;
  font-weight: 300;
  font-size: 1.5em;
  font-family: "BioRhyme", "Times New Roman", Times, serif;
  margin-bottom: 0.6em;
}
#news_teaser .txt_con p {
  font-weight: 300;
  line-height: 1.7em;
}
#news_teaser .pic_con img {
  width: auto;
  max-width: 100%;
}
@media (max-width: 650px) {
  #news_teaser .teaser_con {
    flex-wrap: wrap;
  }
  #news_teaser .teaser_con .col {
    width: 100%;
    padding: 0;
  }
  #news_teaser .pic_con img {
    display: block;
    margin: 0 auto 1em auto;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Aktuelles / News
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#no_news {
  display: block;
  margin-top: 8em;
}
.newsblock {
  margin-top: 5em;
  margin-bottom: 2em;
}
.newsblock .news_date {
  display: block;
  float: none;
  clear: both;
  font-size: 0.8em;
  padding-right: 0.5em;
  font-style: italic;
  text-align: left;
  opacity: 0.4;
  border-bottom: 1px solid #ddd;
}
.newsblock .news_date::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  font-size: 0.9em;
  display: inline-block;
  text-align: center;
  min-width: 1em;
  margin-right: 0.5em;
  font-style: normal;
}
.newsblock h2 {
  margin-top: 0.4em;
}
.newsblock a.fancybox {
  display: block !important;
  outline: none;
}
.newsblock a.fancybox img {
  max-width: 60%;
}
.newsblock a.fancybox img[style*="float:left"] {
  margin: 0 2em 2em 0;
}
.newsblock a.fancybox img[style*="float:right"] {
  margin: 0 0 2em 2em;
}
@media (max-width: 900px) {
  .newsblock a.fancybox {
    width: 100%;
    max-width: 450px;
    float: none !important;
    margin-bottom: 1em;
  }
  .newsblock a.fancybox img {
    float: none !important;
    clear: both;
    max-width: 100%;
    margin: 0 !important;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Karriere-Seite
███████████████████████████████████████████████████████████████████████████████████████████████
*/
.accordion {
  border-radius: 0.7em;
  overflow: hidden;
  box-shadow:
    0 0px 0.4px rgba(0, 0, 0, 0.028),
    0 0px 1px rgba(0, 0, 0, 0.04),
    0 0px 1.9px rgba(0, 0, 0, 0.05),
    0 0px 3.4px rgba(0, 0, 0, 0.06),
    0 0px 6.3px rgba(0, 0, 0, 0.072);
  margin: 2em 0;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.accordion input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.accordion .tab {
  width: 100%;
  /* overflow: hidden; */
}
.accordion .tab:last-of-type {
  border-bottom: none;
}
.accordion .tab_label {
  display: flex;
  justify-content: space-between;
  padding: 0.9em 1.2em;
  background-color: #ddd;
  color: #444;
  font-weight: 300;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  font-size: 1.2em;
  background: linear-gradient(174deg, #ddd 0%, #fff 33%, #fff 67%, #ddd 100%);
}

.accordion input:focus-visible + .tab_label {
  outline: var(--focus_outline_size) var(--focus_outline_style)
    var(--focus_outline_color);
  outline-offset: -0.5rem;
}

.accordion .tab_label * {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}
.accordion .tab_label h3 {
  margin: 0;
}
.accordion .tab:last-of-type .tab_label {
  border-bottom: none;
}
.accordion .tab_label:hover {
  background: unset;
  background-color: var(--color_ci);
  color: #fff;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}
.accordion .tab_label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  -webkit-transition: all 0.35s;
  transition: transform 0.35s;
}
.accordion .tab_content {
  max-height: 0;
  display: none;
  overflow: hidden;
  padding: 0 1em;
  background-color: #fff;
  transition: max-height 0.35s;
  --focus_outline_offset: -0.5rem;
}
.accordion .tab:last-of-type .tab_content {
  border-bottom-right-radius: 0.7em;
  border-bottom-left-radius: 0.7em;
}
.accordion input:checked + .tab_label {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25) !important;
  background: unset;
  background-color: var(--color_ci);
  color: #fff;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}
.accordion input:checked + .tab_label::after {
  transform: rotate(90deg);
}
.accordion input:checked ~ .tab_content {
  max-height: 500vh;
  display: block;
  padding: 1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
@media (max-width: 1000px) {
  .accordion .tab_label {
    font-size: 1.1em;
  }
}
/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Referenzen-Teaser
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#ref_teaser {
  overflow: auto;
}
#ref_teaser a.teaser {
  display: block;
  float: left;
  width: 25%;
}
#ref_teaser a.teaser img {
  display: block;
  -webkit-filter: sepia(0.7);
  filter: sepia(0.7);
  transition: 300ms all;
  width: 100%;
}
#ref_teaser a.teaser:hover img {
  filter: unset;
}
@media (max-width: 600px) {
  #ref_teaser a.teaser {
    width: 33.3333%;
  }
  #ref_teaser a:last-of-type {
    display: none;
  }
}
/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Referenzen / Galerien
███████████████████████████████████████████████████████████████████████████████████████████████
*/
.gallery {
  overflow: auto;
  padding-block: 1rem;
  --focus_outline_offset: -0.5rem;
}
.gallery + .gallery {
  margin-top: 3rem;
}
.gallery h3 {
  font-size: 1.6em;
  margin-top: 0;
}
.gallery .picture_list {
  display: block;
  overflow: auto;
  margin-top: 1.5em;
}
.gallery .picture_list a {
  display: block;
  position: relative;
  float: left;
  margin-right: 2%;
  margin-bottom: 2%;
  line-height: 0;
  /* outline-offset: 1px; */
  cursor: zoom-in;
  /* outline: none; */
}
.gallery .picture_list.toggle_pix a.more {
  display: none;
}
.gallery .picture_list.showall a.more {
  display: block;
}
.gallery.per_row_4 .picture_list a {
  width: 23.5%;
}
.gallery.per_row_3 .picture_list a {
  width: 32%;
}
.gallery.per_row_4 .picture_list a:nth-of-type(4n + 0) {
  margin-right: 0;
}
.gallery.per_row_3 .picture_list a:nth-of-type(3n + 0) {
  margin-right: 0;
}
.gallery .picture_list a:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
}
.gallery .picture_list a:hover:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  outline: 2px solid #017939;
  outline-offset: -2px;
}
.gallery a img {
  width: 100%;
  height: auto;
}
.gallery .picture_list a div {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(25, 25, 25, 0.8);
  padding: 0.4em 0.2em 0.3em 0.3em;
  line-height: 1.2em;
  color: #fff;
}
.gallery .picture_list a:hover div {
  background-color: #017939;
}
.gallery .picture_list .toggle_pix_btn {
  float: none;
  clear: both;
  display: block;
  min-width: 40%;
  max-width: 100%;
  margin: 0.1em auto;
  border: none;
  background-color: #ccc;
  padding: 0.3em 0.5em;
  font-size: 0.9em;
  border-radius: 50px;
  /* outline: none; */
  --focus_outline_offset: -0.2rem;
  cursor: pointer;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.5);
  transition: all 300ms;
}
.gallery .picture_list .toggle_pix_btn:hover {
  background-color: rgba(1, 115, 198, 1);
  color: #fff;
}
@media (max-width: 800px) {
  .gallery.per_row_4 .picture_list a {
    width: 49%;
    max-width: 257px;
  }
  .gallery.per_row_4 .picture_list a:nth-of-type(4n + 0) {
    margin-right: 2%;
  }
  .gallery.per_row_4 .picture_list a:nth-of-type(2n + 0) {
    margin-right: 0;
  }
  .gallery .picture_list .toggle_pix_btn {
    display: none;
  }
  .gallery .picture_list a.more {
    display: block !important;
  }
}
@media (max-width: 350px) {
  .gallery .picture_list a {
    width: 100%;
    max-width: unset;
    margin-right: 0 !important;
  }
}

.topic_section + .topic_section {
  margin-top: 2rem;
  border-top: 1px solid var(--color_ci);
}
.topic_section h2 {
  margin-bottom: 1rem;
}
.topic_section .gallery h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.4em;
  color: #333;
}
.topic_section .gallery p {
  margin-bottom: 1rem;
}
.topic_section .gallery .button {
  margin-bottom: 1rem;
}
.topic_section .gallery .picture_list {
  margin-top: 0;
}

/*
██████████████████████████████████████████████████████████████████████████████████████
    Kontakt-Seite
██████████████████████████████████████████████████████████████████████████████████████
*/
#contact_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
#contact_grid > .col {
  border-radius: 0.5rem;
  border: 2px solid var(--color_ci);
}
#contact_grid > .col.text {
  padding: 2rem;
}
#contact_grid > .col.text *:first-child {
  margin-top: 0;
}
#contact_grid > .col.text *:last-child {
  margin-bottom: 0;
}
#contact_grid > .col.text .label {
  display: inline-block;
  min-width: 7ch;
}
#contact_grid > .col.map {
  overflow: hidden;
}
#contact_grid > .col.map .gmod {
  margin-bottom: 0;
}
@media (max-width: 60rem) {
  #contact_grid {
    grid-template-columns: 1fr;
    width: 600px;
    max-width: 100%;
    margin-inline: auto;
  }
}

/*
██████████████████████████████████████████████████████████████████████████████████████
    Google Maps On Demand
██████████████████████████████████████████████████████████████████████████████████████
*/
.gmod {
  width: 100%;
  height: 25rem;
  margin-top: 0;
  margin-bottom: 1em;
  position: relative;
  overflow: hidden;
  border-radius: 0.3rem;
}
.gmod > iframe {
  grid-column: inherit !important;
}
.gmod .bg_map {
  position: absolute;
  top: -1%;
  left: -1%;
  height: 102%;
  width: 102%;
  background-color: #666;
  background-image: url("../bilder/gmod-bg.png");
  background-repeat: repeat;
  background-position: 0 0;
}
.gmod .opt_in_banner {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 1.5rem 1em;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 0.9em;
  backdrop-filter: blur(1px);
}
.gmod .opt_in_banner .desc {
  color: #fff;
  text-align: center;
  margin-bottom: 1em;
  line-height: 1.3em;
}
.gmod .opt_in_banner .desc a {
  color: inherit !important;
  text-underline-offset: 0.25ch;
}
.gmod .opt_in_banner .show_map_btn {
  display: inline-block;
  padding: 0.75em 0.9em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  margin-top: 0.6rem;
  margin-bottom: 0.2rem;
  background-color: #fff;
  color: #000 !important;
  border: none;
  font-size: 1em;
  line-height: 1.2em;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 0.4rem;
}
.gmod .opt_in_banner :focus-visible {
  outline: 3px dashed #f0ff67;
  outline-offset: 4px;
}
.gmod .opt_in_banner .show_map_btn:focus-visible,
.gmod .opt_in_banner .show_map_btn:hover {
  background-color: black;
  border-color: #fff;
  color: #fff !important;
}
@media (max-width: 50rem) {
  .gmod {
    height: 20rem;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Footer
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#footer {
  position: relative;
  z-index: 0;
  background-color: var(--color_ci);
  color: #fff;
  padding: 1em 0 0.8em 0;
  font-weight: 300;
  line-height: 1.8em;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  background-image: url("../bilder/pattern.png");
  background-repeat: repeat;
  background-position: 50% 50%;
}
#footer * {
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
}
#footer a {
  text-decoration: none;
}
#footer a:hover {
  text-decoration: underline;
}
#footer .col_con {
  overflow: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
}
#footer .col_con .col {
  flex-grow: 0;
  flex-shrink: 1;
  margin: 0.5em 0;
  width: 33.33333%;
}
#footer .col.address {
  padding-right: 1em;
}
#footer .icon_el::before {
  font-family: "Font Awesome 5 Free";
  font-size: 0.9em;
  display: inline-block;
  text-align: center;
  min-width: 1em;
  margin-right: 0.5em;
}
#footer .telephone::before {
  content: "\f879";
}
#footer .mobile::before {
  content: "\f3cd";
}
#footer .fax::before {
  content: "\f1ac";
}
#footer .email::before {
  content: "\f0e0";
}
#footer .col.contact {
  padding-left: 1em;
  padding-right: 1em;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .col.contact .wrapper {
  display: inline-block;
  text-align: left;
}
#footer .col.nav {
  text-align: right;
}
#footer .col.nav ul {
  margin-bottom: 0;
}
@media (max-width: 1000px) {
  #footer .col.address {
    width: 50%;
    text-align: center;
  }
  #footer .col.address .wrapper {
    display: inline-block;
    text-align: left;
  }
  #footer .col_con .col.contact {
    width: 50%;
    padding-right: 0;
    border-right: none;
  }
  #footer .col_con .col.nav {
    width: 100%;
    text-align: center;
  }
  #footer .col_con .col.nav ul div {
    display: inline-block;
  }
  #footer .col_con .col.nav ul li {
    display: inline-block;
    margin: 0 1em;
  }
}
@media (max-width: 650px) {
  #footer .col.address {
    width: 100%;
    text-align: left;
    padding-right: 0;
  }
  #footer .col_con .col.contact {
    width: 100%;
    text-align: left;
    border-left: none;
    padding-left: 0;
  }
  #footer .col_con .col.nav {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1em;
    margin-top: 1em;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Social Media
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#social_media {
  position: fixed;
  right: 0;
  top: 7em;
  z-index: 1;
  opacity: 0.8;
  overflow: visible;
}
#social_media:hover {
  opacity: 1;
}
#social_media a {
  display: block;
  float: right;
  clear: right;
  padding: 8px;
  background-color: #fff;
  color: #000;
  line-height: 0;
  margin: 0.1em 0;
  box-shadow:
    0 0px 0.2px rgba(0, 0, 0, 0.022),
    0 0px 0.5px rgba(0, 0, 0, 0.032),
    0 0px 0.9px rgba(0, 0, 0, 0.04),
    0 0px 1.6px rgba(0, 0, 0, 0.048),
    0 0px 2.9px rgba(0, 0, 0, 0.058),
    0 0px 7px rgba(0, 0, 0, 0.08);
}
#social_media a svg {
  fill: #000;
  height: 24px;
  width: 24px;
  display: block;
  line-height: 1em;
}
#social_media a:hover {
  width: 80px;
}
@media (max-width: 1150px) {
  #social_media a {
    padding: 5px;
  }
  #social_media a svg {
    height: 20px;
    width: 20px;
  }
  #social_media a:hover {
    width: 50px;
  }
}
@media (max-width: 1000px) {
  #social_media {
    top: 6em;
  }
}
@media (max-width: 900px) {
  #social_media {
    opacity: 0.8;
    top: 5em;
  }
  body.with_topline #social_media {
    top: 8em;
  }
  #social_media a {
    padding: 3px;
    margin: 0.2em 0;
  }
  #social_media a svg {
    height: 17px;
    width: 17px;
  }
}
@media (max-width: 700px) {
  #social_media {
    top: 4em;
  }
}
@media (max-width: 600px) {
  #social_media {
    top: 6em;
  }
  body.with_topline #social_media {
    top: 12em;
  }
}
@media (max-width: 500px) {
  body.with_topline #social_media {
    top: 13em;
  }
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    Magnific Popup
███████████████████████████████████████████████████████████████████████████████████████████████
*/
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #ccc;
}
.mfp-preloader a:hover {
  color: #fff;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 44px !important;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}
.mfp-close:focus-visible {
  outline: 2px dashed hotpink;
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0;
  margin: 0 auto;
}
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape),
  screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/*
███████████████████████████████████████████████████████████████████████████████████████████████
  Picture Source
███████████████████████████████████████████████████████████████████████████████████████████████
*/
.psc {
  position: relative;
}
.pic_source {
  font-family: Arial, Verdana, Helvetica, sans-serif !important;
  font-size: 16px !important;
  font-weight: 300;
  position: absolute !important;
  z-index: 1 !important;
  right: 5px;
  bottom: 5px;
  grid-column: 1 / -1 !important;
  display: flex;
  align-items: center;
  justify-content: left;
  flex-wrap: wrap;
  gap: 0.3em 0.5em;
  background-color: #333 !important;
  color: #fff !important;
  line-height: 1em;
  cursor: pointer;
  border-radius: 1em;
  box-shadow:
    0 0 1px rgba(255, 255, 255, 0.05),
    0 0 2px rgba(255, 255, 255, 0.09),
    0 0 5px rgba(255, 255, 255, 0.14),
    0 0 8px rgba(255, 255, 255, 0.18),
    0 0 13px rgba(255, 255, 255, 0.23);
}
.pic_source.top {
  bottom: unset !important;
  top: 3px;
}
.pic_source * {
  font-family: inherit;
  color: inherit !important;
}
.pic_source::before {
  content: "\00A9"/ "Copyrightzeichen";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.21em;
  aspect-ratio: 1;
  font-size: 1.15em;
  line-height: 1.05em;
  padding: 1px 0 0 1px;
  box-sizing: border-box;
}
.pic_source:has(input[type="checkbox"]:checked)::before {
  justify-content: flex-start;
}
.pic_source input[type="checkbox"] {
  position: absolute !important;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 1 !important;
  cursor: pointer;
}
.pic_source:has(input[type="checkbox"]:checked) {
  padding: 0.2em 0.5em;
  border-radius: 0.4rem;
}
.pic_source .indicator {
  --focus_outline_size: 3px;
  --focus_outline_offset: 0;
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9rem;
  outline: 0 var(--focus_outline_style, dashed)
    var(--focus_outline_color, fuchsia);
  outline-offset: var(--focus_outline_offset, 1px);
  pointer-events: none;
}
.pic_source input[type="checkbox"]:not(:checked) ~ .indicator {
  animation: indicator_rotation 6s infinite linear;
}
@keyframes indicator_rotation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pic_source input[type="checkbox"]:focus-visible ~ .indicator {
  outline-width: var(--focus_outline_size, 4px);
}
.pic_source span {
  display: none;
  position: unset !important;
  font-size: 0.9em;
  margin-top: 0.15em;
  line-height: 1.2em !important;
}
.pic_source input[type="checkbox"]:checked ~ span {
  display: inline-block;
  padding: 0 1.3ch 1px 0;
}

/*
███████████████████████████████████████████████████████████████████████████████████████████████
    CWD im Footer
███████████████████████████████████████████████████████████████████████████████████████████████
*/
#cwd {
  padding: 0.5em 1em;
  color: #fff;
  background-color: #222;
  text-align: center;
  font-size: 0.75em;
  line-height: 1.4em;
}
#cwd * {
  color: inherit !important;
  line-height: inherit !important;
  opacity: 0.8;
}
#cwd a {
  text-decoration: none !important;
}
#cwd a:hover {
  text-decoration: underline !important;
  opacity: 1;
}
