/*
██████████████████████████████████████████████████████████████████████████████████████
  Fonts
██████████████████████████████████████████████████████████████████████████████████████
*/
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/open-sans-v44-latin-300.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 300;
  src: url("../fonts/open-sans-v44-latin-300italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v44-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/open-sans-v44-latin-italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/open-sans-v44-latin-600.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 600;
  src: url("../fonts/open-sans-v44-latin-600italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/open-sans-v44-latin-700.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/open-sans-v44-latin-700italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/open-sans-v44-latin-800.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 800;
  src: url("../fonts/open-sans-v44-latin-800italic.woff2") format("woff2");
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Variablen
██████████████████████████████████████████████████████████████████████████████████████
*/
:root {
  /* Fonts */
  --ff_base: "Open Sans", sans-serif;

  --fontawesome: "Font Awesome 7 Free";
  --fontawesome_brands: "Font Awesome 7 Brands";

  --font_size_html: 16px;
  --font_size_default: clamp(0.87rem, 1.125vw, 1.05rem);

  --font_weight_light: 300;
  --font_weight_normal: 400;
  --font_weight_medium: 600;
  --font_weight_bold: 700;
  --font_weight_black: 800;

  /* Layout */
  --scroll_offset: 3rem;
  --text_line_height: 1.6em;
  --text_block_spacer: 1.4rem;
  --header_init_height: 70px;
  --section_spacer: 5rem;
  --section_boxed_padding: clamp(1.5rem, 4vw, 3rem);

  /* Colors */
  --clr_document_bg: oklch(1 0 0);

  --clr_main_bg: oklch(35.082% 0.01181 258.418);

  --clr_brand: oklch(0.6527 0.2354 33.88);

  --clr_accent: oklch(0.9147 0.1908 101.03);

  --clr_text: oklch(0.28 0 0);
  --clr_heading: oklch(0.25 0 0);

  --clr_text_selection_bg: oklch(0.6172 0.111 153);
  /* Berechnung der Kontrastfarbe (schwarz/weiß) */
  --clr_text_selection: oklch(
    from var(--clr_text_selection_bg) round(1.21 - L) 0 0
  );

  --clr_text_link: oklch(from var(--clr_brand) calc(l - 0.25) c h);
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Defaults / Normalize
██████████████████████████████████████████████████████████████████████████████████████
*/
html {
  font-size: var(--font_size_html);
  scroll-padding-block-start: var(--scroll_offset);
  background-color: var(--clr_document_bg);
  @media (prefers-reduced-motion: no-preference) {
    scroll-behavior: smooth;
  }
}
body {
  font-size: var(--font_size_default);
}
body,
body * {
  font-family: var(--ff_base);
  color: var(--clr_text);
  line-height: var(--text_line_height);
  font-weight: var(--font_weight_normal);
}
::selection {
  background-color: var(--clr_text_selection_bg);
  color: var(--clr_text_selection);
}
header,
footer,
main,
section,
article {
  container-type: inline-size;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}
p,
li {
  text-wrap: pretty;
}
main p,
main table,
main ul,
main ol {
  margin-bottom: var(--text_block_spacer);
}
strong {
  font-weight: var(--font_weight_bold);
}
i,
em {
  font-style: italic;
}
ol li {
  list-style: decimal;
}
main a:not([class]),
main a.telephone,
main a.email {
  color: var(--clr_text_link);
  text-decoration: underline;
  text-underline-offset: 0.2ex;
  transition: 0.2s ease-in-out;
  &:hover,
  &:focus-visible {
    text-decoration-color: var(--clr_accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.5ex;
  }
}
a:hover {
  text-decoration-color: inherit;
}
.center {
  text-align: center !important;
  max-width: unset;
}
.center > * {
  text-align: inherit;
}
/*
██████████████████████████████████████████████████████████████████████████████████████
    Überschriften
██████████████████████████████████████████████████████████████████████████████████████
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  --font_size_factor: 1;
  display: block;
  text-align: left;
  text-box-trim: both;
  line-height: 2.3ch;
  color: var(--clr_heading);
  font-size: calc(var(--font_size_default) * var(--font_size_factor));
  font-weight: var(--font_weight_medium);
  margin-block-end: 1.6ch;

  * {
    line-height: inherit;
    font-weight: inherit;
  }
}
* > h2:not(:first-child),
* > h3:not(:first-child),
* > h4:not(:first-child),
* > h5:not(:first-child),
* > h6:not(:first-child) {
  margin-top: 2.8ch;
}
h1 {
  --font_size_factor: 2.6;
  font-weight: var(--font_weight_bold);
  letter-spacing: -0.03em;
}
h2 {
  --font_size_factor: 2;
  font-weight: var(--font_weight_bold);
  letter-spacing: -0.02ch;
}
h3 {
  --font_size_factor: 1.7;
}
h3 {
  --font_size_factor: 1.5;
}
h4 {
  --font_size_factor: 1.3;
}
:is(h1, h2, h3) > span {
  display: block;
}
:is(h1, h2, h3) > span:not([class]):has(+ .heading_sub)::after {
  content: "\2002–";
  opacity: 0;
  display: inline;
  width: 0;
}
:is(h1, h2, h3) .heading_kicker,
:is(h1, h2, h3) .heading_sub {
  font-size: max(1.1rem, 0.5em);
  font-weight: var(--font_weight_normal);
  line-height: 2.2ch;
  letter-spacing: normal;
}
:is(h1, h2, h3) .heading_kicker {
  margin-block-end: 0.4em;
}
:is(h1, h2, h3) .heading_sub {
  margin-block-start: 0.5em;
}
:is(h1, h2, h3) .heading_kicker::after {
  content: ":";
  opacity: 0;
}
@media (max-width: 40rem) {
  h1 {
    --font_size_factor: 2;
  }
  h2 {
    --font_size_factor: 1.8;
    letter-spacing: normal;
  }
  h3 {
    --font_size_factor: 1.6;
  }
  h3 {
    --font_size_factor: 1.4;
  }
  h4 {
    --font_size_factor: 1.2;
  }
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Header
██████████████████████████████████████████████████████████████████████████████████████
*/
header {
  --animation_duration: 250ms;
  transition-duration: var(--animation_duration);
  transition-timing-function: ease-in-out;
  transition-property: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-block: 0;
  background-color: oklch(1 0 0 / 0.7);
  backdrop-filter: blur(2px);
  box-shadow:
    0px 0px 2px rgba(0, 0, 0, 0.02),
    0px 0px 7px rgba(0, 0, 0, 0.04),
    0px 0px 16px rgba(0, 0, 0, 0.05),
    0px 0px 28px rgba(0, 0, 0, 0.07),
    0px 0px 44px rgba(0, 0, 0, 0.09);
}
header.shrink {
  transition-property: background-color;
  background-color: oklch(1 0 0);
}
header * {
  transition-duration: inherit;
  transition-timing-function: inherit;
  transition-property: inherit;
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Header: Top-Line
██████████████████████████████████████████████████████████████████████████████████████
*/
header .top_line {
  padding-block: 0.5rem;
  background-color: rgb(0 0 0 / 0.1);
}
header .top_line .wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5ch 8ch;
  @media (max-width: 100ch) {
    & {
      column-gap: 3ch;
    }
  }
}
header .top_line a {
  text-decoration: none;
}
header .top_line a:hover,
header .top_line a:focus-visible {
  text-decoration: underline;
}
header .top_line .iconized {
  --_icon_size: 1.2em;
  --_icon_span: calc(var(--_icon_size) * 1.5);
  padding-left: var(--_icon_span);
  position: relative;
}
header .top_line .iconized::before {
  display: block;
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  font-family: var(--fontawesome);
  font-size: var(--_icon_size);
  width: var(--_icon_span);
  padding-inline-end: calc(var(--_icon_span) * 0.3);
  text-align: center;
  text-decoration: none;
}
header .top_line .iconized.telephone::before {
  content: "\f095" / "Telefonnummer:";
}
header .top_line .iconized.mobile::before {
  content: "\f3cd" / "Mobilnummer:";
}
header .top_line .iconized.fax::before {
  content: "\f1ac" / "Fax:";
}
header .top_line .iconized.email::before {
  content: "\f0e0" / "E-Mail";
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Header: Main-Line
██████████████████████████████████████████████████████████████████████████████████████
*/
header .main_line {
  padding-block: 0.6rem;
  transition-property: padding-block;
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Main
██████████████████████████████████████████████████████████████████████████████████████
*/
body > main {
  padding-block: var(--section_spacer);
}
body.home > main {
  padding-block: 0;
}
body.home > main::after {
  opacity: 0.1;
}
body.home > main > * {
  position: relative;
}
body > main ul {
  margin-left: 1.7em;
}
body > main li {
  margin-bottom: calc(var(--text_block_spacer) / 3);
  line-height: min(1.2rem, var(--text_line_height));
}
body > main li:last-of-type {
  margin-bottom: 0;
}
body > main li > :last-child {
  margin-bottom: 0;
}
body > main hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--clr_accent) 10%,
    var(--clr_brand) 50%,
    var(--clr_accent) 90%,
    transparent 100%
  );
  margin-block: calc(var(--text_block_spacer) * 2);
}
body > main section + hr:has(+ section) {
  margin-block: calc(var(--text_block_spacer) / 2);
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Sections
██████████████████████████████████████████████████████████████████████████████████████
*/
main > section {
  --section_border_radius: 1.5rem;
  padding-block: var(--section_spacer);
}
main > section:first-child {
  margin-top: 0;
}
main > section.boxed > * {
  padding: var(--section_boxed_padding);
}
main > section > :last-child,
main > section > div:only-child > :last-child {
  margin-bottom: 0;
}
/*
██████████████████████████████████████████████████████████████████████████████████████
    "Side by Side"-Layout
██████████████████████████████████████████████████████████████████████████████████████
*/
.side_by_side {
  position: relative;
  --text_col_width: 50%;
  --gap_vertical: calc(var(--text_block_spacer) + 1rem);
  --gap_horizontal: 3rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  align-content: stretch;
  gap: var(--gap_vertical) var(--gap_horizontal);
  @media (max-width: 50rem) {
    & {
      flex-direction: column !important;
      > * {
        width: 100%;
      }
      .text_col {
        flex-basis: unset !important;
      }
    }
  }
}
.side_by_side.reverse {
  flex-direction: row-reverse;
}
.side_by_side .text_col {
  flex: 0 0 var(--text_col_width);
}
.side_by_side .text_col :last-child,
.side_by_side .text_col :last-child :last-child {
  margin-block-end: 0;
}
.side_by_side .media_col {
  flex-grow: 1;
}
/*
██████████████████████████████████████████████████████████████████████████████████████
    Buttons
██████████████████████████████████████████████████████████████████████████████████████
*/
.button {
  --btn_bg: var(--clr_brand, #444);
  --btn_hover_lightness_multiplier: 0.6;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  padding: 0.7em 1.1em;
  margin: 0;
  font-weight: var(--font_weight_medium);
  line-height: 1.2em;
  text-decoration: none;
  background-color: var(--btn_bg);
  color: oklch(from var(--btn_bg) round(1.21 - L) 0 0);
  border-radius: 0.2rem;
  corner-shape: squircle;
  min-inline-size: fit-content;
  &:hover,
  &:focus-visible {
    text-decoration: none;
    background-color: oklch(
      from var(--btn_bg) calc(l * var(--btn_hover_lightness_multiplier)) c h
    );
    box-shadow:
      0px 0px 1px rgba(0, 0, 0, 0.01),
      0px 0px 4px rgba(0, 0, 0, 0.02),
      0px 0px 9px rgba(0, 0, 0, 0.04),
      0px 0px 15px rgba(0, 0, 0, 0.05),
      0px 0px 24px rgba(0, 0, 0, 0.06);
  }
}
.button.secondary {
  --btn_bg: var(--clr_accent, #ccc);
}
.button.hollow {
  --_main_clr: var(--clr_brand);
  --_contrast_clr: oklch(from var(--_main_clr) round(1.21 - L) 0 0);
  color: var(--_main_clr);
  border-color: var(--_main_clr);
  --btn_bg: transparent;
  backdrop-filter: blur(1px);
  &:hover,
  &:focus-visible {
    background-color: var(--_main_clr);
    border-color: var(--_contrast_clr);
    color: var(--_contrast_clr);
  }
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Hero (Section on HP)
██████████████████████████████████████████████████████████████████████████████████████
*/
section.hero {
  height: clamp(40rem, 100svh, 80svw);
  background-color: #fff;
  background-image:
    linear-gradient(to right, rgb(0 0 0 / 0.6) 40%, rgb(0 0 0 / 0) 80%),
    url("../img/hero.webp");
  background-position: 65% 25%;
  background-size: cover;
  @media (max-width: 30rem) {
    & {
      height: 45rem;
    }
  }
}
section.hero > *:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  @media (max-width: 60rem) {
    & {
      justify-content: flex-end;
    }
  }
}
section.hero .text_box {
  --logo_width: 600px;
  --base_padding: min(2rem, 3vw);

  box-sizing: content-box;
  width: var(--logo_width);
  max-width: 80%;
  padding: calc(var(--base_padding) * 1.2) var(--base_padding);
  transform: translateY(2rem);
}
section.hero .text_box .logo {
  margin-block-end: 3rem;
}
section.hero .text_box h1,
section.hero .text_box h1 *,
section.hero .text_box p {
  color: #fff;
}
section.hero .text_box h1 {
  margin-block-end: 0.6ch;
}
section.hero .text_box .cta_con {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Features (Section on HP)
██████████████████████████████████████████████████████████████████████████████████████
*/
section.features {
  --_highlight_clr: var(--clr_brand);
  margin-bottom: calc(var(--section_spacer) * 1.6);
  padding-block: 0;
  @media (max-width: 99rem) {
    & {
      margin-bottom: var(--section_spacer);
      margin: 0;
    }
  }
}
section.features .list {
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow:
    0px 0px 2px rgba(0, 0, 0, 0.03),
    0px 0px 8px rgba(0, 0, 0, 0.05),
    0px 0px 18px rgba(0, 0, 0, 0.08),
    0px 0px 32px rgba(0, 0, 0, 0.1),
    0px 0px 50px rgba(0, 0, 0, 0.13);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  @media (max-width: 99rem) {
    & {
      position: relative;
      top: unset;
      transform: none;
      box-shadow: none;
      padding-inline: 0;
    }
  }
  @media (max-width: 60rem) {
    & {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 30rem) {
    & {
      grid-template-columns: 1fr;
    }
  }
}
section.features .list li {
  display: flex;
  flex-wrap: nowrap;
  gap: 1ch;
  margin: 0;
}
section.features .list li i {
  font-size: 3rem;
  color: var(--_highlight_clr);
  width: auto;
  @media (max-width: 60rem) {
    & {
      width: var(--fa-width, 1.25em);
    }
  }
}
section.features .list li span {
  display: block;
}
section.features .list li .count {
  display: inline-flex;
  font-size: 1.5em;
  font-weight: var(--font_weight_bold);
  line-height: 1em;
  font-variant-numeric: tabular-nums;
}
section.features .list li .count::after {
  content: "+";
  opacity: var(--after-opacity, 1);
}
section.features .list li .unit {
  font-size: 0.8em;
  line-height: 1.2em;
  color: var(--_highlight_clr);
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Intro (Section on HP)
██████████████████████████████████████████████████████████████████████████████████████
*/
section.intro h2 {
  text-align: center;
}
section.intro .text_con {
  column-count: 2;
  column-gap: 10ch;
}
@container (width < 150ch) {
  section.intro .text_con {
    column-count: unset;
    column-gap: unset;
  }
}
section.intro .text_con img {
  margin-bottom: var(--text_block_spacer);
}
section.intro .certs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  justify-items: center;
  gap: 4rem 5rem;
  padding-block-start: 3rem;
  margin-block-start: 3rem;
}
@container (width < 80ch) {
  section.intro .certs {
    grid-template-columns: 1fr;
  }
}
section.intro .certs::before {
  content: "";
  display: block;
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--clr_accent) 50%,
    transparent 100%
  );
}
section.intro .certs .cert_con {
  text-align: center;
}
section.intro .certs .cert_con span {
  font-weight: var(--font_weight_medium);
}
section.intro .certs .cert_con span + img {
  margin-block-start: 2ch;
}
section.intro .certs .cert_con img {
  margin-inline: auto;
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Jobs (Homepage)
██████████████████████████████████████████████████████████████████████████████████████
*/
section.jobs {
  background-color: #98a9c1;
}
section.jobs * {
  color: inherit;
}
section.jobs h2 {
  text-align: center;
}
section.jobs .job_offers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@container (width < 120ch) {
  section.jobs .job_offers {
    grid-template-columns: 1fr;
  }
}
section.jobs .job_offers .job_con {
  padding: 2rem;
  border-radius: 1ch;
  background-color: oklch(from var(--clr_accent) l c h / 0.1);
  background-color: var(--clr_main_bg, #444);
  color: #fff;
}
section.jobs .job_offers .job_con > :last-child {
  margin-block-end: 0;
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Services (Homepage)
██████████████████████████████████████████████████████████████████████████████████████
*/
section.services {
  background-color: oklch(0 0 0 / 0.05);
  text-align: center;
}
section.services h2 {
  text-align: center;
}
section.services .service_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem auto 0 auto;
  padding: 0;
  max-width: 100%;
  @media (max-width: 70rem) {
    & {
      grid-template-columns: 1fr;
      width: 40rem;
    }
  }
}
section.services .service_list .card {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  background: #fff;
  padding: 2rem;
  margin: 0;
  border-radius: 0.2rem;
  gap: 2rem;
}
section.services .service_list .card .text_con {
  margin-inline: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  align-items: center;
  gap: 1rem;
  text-align: left;
}
section.services .service_list .card .text_con * {
  text-align: inherit;
  margin: 0;
}
section.services .service_list .card .text_con h3 {
  font-size: 1.4em;
  border-bottom: 3px solid var(--clr_accent);
  margin-bottom: 2ch;
}
section.services .service_list .card .text_con p {
  width: 100%;
  line-height: 1.6em;
}
section.services .service_list .card .text_con ul {
  width: 100%;
  padding-left: 1.5rem;
}
section.services .service_list .card .text_con ul li + li {
  margin-top: 1ch;
}
section.services .service_list .card .media_con {
  position: relative;
}
section.services .service_list .card .media_con img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  aspect-ratio: 580 / 387;
}
section.services .service_list.stacked {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem auto 0 auto;
  padding: 0;
  max-width: 100%;
  /* @media (max-width: 70rem) {
    & {
      grid-template-columns: 1fr;
      width: 40rem;
    }
  } */
}
section.services .service_list.stacked .card {
  position: relative;
  --text_col_width: 70%;
  --gap_vertical: calc(var(--text_block_spacer) + 1rem);
  --gap_horizontal: 3rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  align-content: stretch;
  gap: var(--gap_vertical) var(--gap_horizontal);
  @media (max-width: 50rem) {
    & {
      flex-direction: column !important;
      > * {
        width: 100%;
      }
      .text_col {
        flex-basis: unset !important;
      }
    }
  }
}
section.services .service_list.stacked .card.reverse {
  flex-direction: row-reverse;
}
section.services .service_list.stacked .card .text_con {
  /* flex: 0 0 var(--text_col_width); */
  display: block;
  text-align: left;
}
section.services .service_list.stacked .card .text_con * {
  margin-block-end: var(--text_block_spacer);
}
section.services .service_list.stacked .card .text_con h3 {
  text-align: left;
}
section.services .service_list.stacked .card .text_con :last-child,
section.services .service_list.stacked .card .text_con :last-child :last-child {
  margin-block-end: 0;
}
section.services .service_list.stacked .card .media_con img {
  flex-grow: 1;
  width: auto;
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Services (Homepage)
██████████████████████████████████████████████████████████████████████████████████████
*/
section.credentials h2 {
  text-align: center;
}
section.credentials .gallery {
  --pic_min_width: 250px;
  --gap: 2ch;
}

/*
██████████████████████████████████████████████████████████████████████████████████████
  Footer
██████████████████████████████████████████████████████████████████████████████████████
*/
footer {
  --_footer_padding_block: 4rem;
  --_gmod_height: 25ch;
  --_contact_overlap: calc(8rem + var(--_gmod_height));
  background-color: oklch(from var(--clr_main_bg) calc(l * 1.4) c h);
  color: #fff;
  padding-block: var(--_footer_padding_block);
  position: relative;
}
footer * {
  color: inherit;
}
footer:has(> .contact) {
  margin-block-start: calc(var(--_contact_overlap) * 0.7);
  padding-block-start: calc(
    var(--_footer_padding_block) + var(--_contact_overlap)
  );
}
footer .contact {
  --_padding_inline: 5rem;
  container-type: inline-size;
  background-color: var(--clr_main_bg);
  position: absolute;
  inset-inline: 0;
  padding: 3rem var(--_padding_inline);
  bottom: calc(100% - var(--_contact_overlap));
  box-shadow:
    0px 0px 1px rgba(0, 0, 0, 0.02),
    0px 0px 2px rgba(0, 0, 0, 0.04),
    0px 0px 5px rgba(0, 0, 0, 0.06),
    0px 0px 9px rgba(0, 0, 0, 0.07),
    0px 0px 14px rgba(0, 0, 0, 0.09),
    0px 0px 20px rgba(0, 0, 0, 0.11),
    0px 0px 27px rgba(0, 0, 0, 0.13);
  @media (max-width: 70rem) {
    & {
      --_padding_inline: 4rem;
    }
  }
  @media (max-width: 60rem) {
    & {
      --_padding_inline: 3rem;
    }
  }
  @media (max-width: 55rem) {
    & {
      padding: 2rem;
    }
  }
  @media (max-width: 30rem) {
    & {
      padding-inline: 1rem;
    }
  }
}
footer .contact h2 {
  text-align: center;
  border-block-end: 1px solid var(--clr_accent);
  padding-block-end: 1ch;
}
footer .contact .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3ch 3rem;
  font-size: 1.1em;
}
@container (width < 70ch) {
  footer .contact .wrapper {
    grid-template-columns: 1fr;
    font-size: 1em;
  }
}
footer .contact .wrapper * {
  font-size: inherit;
}
footer .contact .gmod {
  height: var(--_gmod_height);
  margin-block-start: calc(var(--text_block_spacer) * 1.5);
}
footer .iconized {
  --_icon_size: 1.2em;
  --_icon_span: calc(var(--_icon_size) * 1.5);
  padding-left: var(--_icon_span);
  position: relative;
}
footer .iconized::before {
  display: block;
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  font-family: var(--fontawesome);
  font-size: var(--_icon_size);
  width: var(--_icon_span);
  padding-inline-end: calc(var(--_icon_span) * 0.3);
  text-align: center;
  text-decoration: none;
  color: var(--clr_accent);
}
footer .iconized.telephone::before {
  content: "\f095" / "Telefonnummer:";
}
footer .iconized.mobile::before {
  content: "\f3cd" / "Mobilnummer:";
}
footer .iconized.fax::before {
  content: "\f1ac" / "Fax:";
}
footer .iconized.email::before {
  content: "\f0e0" / "E-Mail";
}
footer address .address_data {
  line-height: 2em;
}
footer address .contact_data {
  display: flex;
  flex-direction: column;
  gap: 1.5ch;
}
footer address .contact_data > * {
  line-height: 1.2em;
}
footer address .contact_data a {
  text-decoration: none;
}
footer address .contact_data a:hover,
footer address .contact_data a:focus-visible {
  text-decoration: underline;
}
footer nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 2ch;
}
footer nav ul li {
  margin-block-end: 0;
  line-height: 1rem;
}
footer nav a {
  line-height: 1.2em;
  text-decoration: none;
}
footer nav a:hover,
footer nav a:focus-visible {
  text-decoration: underline;
}
footer nav a * {
  line-height: inherit;
}
/*
██████████████████████████████████████████████████████████████████████████████████████
    Back-to-Top-Button
██████████████████████████████████████████████████████████████████████████████████████
*/
#b2t_btn {
  background-color: var(--clr_brand);
}
#b2t_btn::before {
  border-color: var(--clr_secondary);
}
