/*
██████████████████████████████████████████████████████████████████████████████████████
  Fonts
██████████████████████████████████████████████████████████████████████████████████████
*/
@font-face {
  font-display: swap;
  font-family: "Parkinsans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/parkinsans-v3-latin-500.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Parkinsans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/parkinsans-v3-latin-600.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Parkinsans";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/parkinsans-v3-latin-700.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/raleway-v37-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Raleway";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/raleway-v37-latin-italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/raleway-v37-latin-600.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Raleway";
  font-style: italic;
  font-weight: 600;
  src: url("../fonts/raleway-v37-latin-600italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/raleway-v37-latin-800.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Raleway";
  font-style: italic;
  font-weight: 800;
  src: url("../fonts/raleway-v37-latin-800italic.woff2") format("woff2");
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Variablen
██████████████████████████████████████████████████████████████████████████████████████
*/
:root {
  /* Fonts */
  --ff_base: "Raleway", sans-serif;
  --ff_heading: "Parkinsans", var(--ff_base), sans-serif;

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

  --font_size_html: 18px;
  --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: 800;
  /* --font_weight_black: 900; */

  /* Layout */
  --scroll_offset: 7rem;
  --text_line_height: 1.6em;
  --text_block_spacer: 1.4rem;
  --header_overlap: 6rem;
  --section_spacer: 5rem;
  --section_boxed_padding: clamp(1.5rem, 4vw, 3rem);
  --section_border_radius: 1.4rem;
  @media (max-width: 90rem) {
    --section_border_radius: 1rem;
  }

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

  --clr_main_bg: oklch(0.9871 0.0068 67.75);

  --clr_brand: oklch(0.4334 0.0982 253.42);
  --clr_accent: oklch(0.8706 0.1079 74.09);

  --clr_brand_contrast: oklch(from var(--clr_brand) round(1.21 - l) 0 0);
  --clr_accent_contrast: oklch(from var(--clr_accent) round(1.21 - l) 0 0);

  --clr_text: oklch(0.15 0 0);
  --clr_heading: oklch(0.22 0 0);

  --clr_text_selection_bg: oklch(0.5163 0.0922 30.18);
  /* 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);
  padding: 1rem;
}
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;
}
ul[class],
ul[id] {
  list-style: none;
  margin: 0;
  padding: 0;
}
ol li {
  list-style: decimal;
}
main a:not([class]),
main a.telephone:not(.button),
main a.email:not(.button) {
  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: 2ch;
  color: var(--clr_heading);
  font-family: var(--ff_heading);
  font-size: calc(var(--font_size_default) * var(--font_size_factor));
  font-weight: var(--font_weight_medium);
  margin-bottom: 1.3ch;
  & * {
    line-height: inherit;
    font-weight: inherit;
    font-family: 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;
  letter-spacing: -0.03em;
}
h2 {
  --font_size_factor: 2;
  letter-spacing: -0.02ch;
}
h3 {
  --font_size_factor: 1.75;
}
h4 {
  --font_size_factor: 1.5;
}
h5 {
  --font_size_factor: 1.3;
}
h1,
h2,
h3 {
  & > span {
    display: block;
  }
  & > span:not([class]) {
    font-family: var(--ff_heading);
  }
  & > span:not([class]):has(+ .heading_sub)::after {
    content: "\2002–";
    opacity: 0;
    display: inline;
    width: 0;
  }
  & > span[class] {
    font-family: var(--ff_base);
    font-size: max(1.1rem, 0.5em);
    font-weight: var(--font_weight_medium);
    line-height: 2.2ch;
    letter-spacing: normal;
  }
  & .heading_kicker {
    margin-block-end: 0.4em;
    color: var(--clr_accent);
  }
  & .heading_kicker::after {
    content: ":";
    opacity: 0;
  }
  & .heading_sub {
    margin-block-start: 0.5em;
  }
  & > span em {
    font-style: normal;
  }
}
h3 > span[class] {
  font-size: max(0.9rem, 0.5em);
  line-height: 2ch;
}
@media (max-width: 40rem) {
  h1 {
    --font_size_factor: 2;
  }
  h2 {
    --font_size_factor: 1.8;
    letter-spacing: normal;
  }
  h3 {
    --font_size_factor: 1.6;
  }
  h4 {
    --font_size_factor: 1.4;
  }
  h5 {
    --font_size_factor: 1.2;
  }
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Header
██████████████████████████████████████████████████████████████████████████████████████
*/
header {
  --animation_duration: 200ms;
  transition-duration: var(--animation_duration);
  transition-timing-function: ease-in-out;
  transition-property: none;
  position: sticky;
  inset: 0;
  z-index: 2;
  height: var(--header_overlap);
  border-radius: var(--section_border_radius);
}
header.shrink {
  margin-inline: 3px;
  background: linear-gradient(
    160deg,
    rgb(0 0 0 / 0.9) 0%,
    rgb(50 50 50 / 0.9) 100%
  );
  backdrop-filter: blur(2px);
  height: unset;
  transform: translateY(1rem);
  box-shadow:
    0px 0px 1px rgba(0, 0, 0, 0.02),
    0px 1px 4px rgba(0, 0, 0, 0.05),
    0px 2px 10px rgba(0, 0, 0, 0.07),
    0px 4px 17px rgba(0, 0, 0, 0.1),
    0px 6px 27px rgba(0, 0, 0, 0.12);
}
header * {
  transition-duration: inherit;
  transition-timing-function: inherit;
  transition-property: inherit;
}
header .wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 0.75rem;
  gap: 1ch;
  @media (max-width: 80rem) {
    & {
      flex-direction: column;
      align-items: flex-end;
      justify-content: flex-start;
    }
    & .nav_con {
      display: inline-flex;
    }
  }
  @media (max-width: 40rem) {
    & {
      gap: 2ch;
    }
  }
}
header.shrink .wrapper {
  padding-block: 0.6rem;
}
header .wrapper .logo {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.5ch;
  align-items: center;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  padding: 1ch 1.7ch;
  --r: var(--section_border_radius);
  border-inline: var(--r) solid #0000;
  border-radius: 0 0 calc(2 * var(--r)) calc(2 * var(--r)) / var(--r);
  mask:
    radial-gradient(var(--r) at var(--r) 100%, #0000 98%, #000 101%)
      calc(-1 * var(--r)) 0%/100% var(--r) repeat-x,
    conic-gradient(#000 0 0) padding-box;
  background-color: #fff;
  text-decoration: none;
  @media (max-width: 80rem) {
    & {
      left: 0;
      transform: unset;
    }
  }
}
header.shrink .wrapper .logo {
  background: linear-gradient(to bottom, #fff 0%, #ddd 100%);
}
header .wrapper .logo * {
  display: inline-block;
}
header .wrapper .logo .name {
  order: -1;
  text-transform: uppercase;
  font-size: 2.5em;
  line-height: 0.8em;
  font-weight: var(--font_weight_bold);
}
header .wrapper .logo .industry {
  text-transform: uppercase;
  font-size: 0.9em;
  line-height: 1em;
}
header .wrapper .contact_con {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.3ch 2ch;
  @media (max-width: 80rem) {
    & {
      align-self: flex-end;
    }
    & a.button {
      display: none;
    }
  }
  @media (max-width: 25rem) {
    & {
      padding-top: 0.5ch;
      flex-direction: column;
      align-items: flex-end;
    }
  }
}
header.shrink .wrapper .contact_con {
  @media (max-width: 80rem) {
    & {
      display: none;
    }
  }
}
header .wrapper .contact_con a:not(.button) {
  text-decoration: none;
  color: #fff;
}
header .wrapper .contact_con .iconized::before {
  font-family: var(--fontawesome);
  font-size: 1.4ch;
  padding-inline-end: 0.5ch;
}
header .wrapper .contact_con .iconized.telephone::before {
  content: "\f095" / "Telefonnummer:";
}
header .wrapper .contact_con .iconized.email::before {
  content: "\f0e0" / "E-Mail";
}

/*
██████████████████████████████████████████████████████████████████████████████████████
  Main
██████████████████████████████████████████████████████████████████████████████████████
*/
body > main {
  margin-block-start: calc(-1 * var(--header_overlap));
}
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_brand) 20%,
    var(--clr_tertiary) 80%,
    transparent 100%
  );
  margin-block: var(--text_block_spacer);
}
body > main section + hr:has(+ section) {
  margin-block: calc(var(--text_block_spacer) / 2);
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Sections
██████████████████████████████████████████████████████████████████████████████████████
*/
main > section {
  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 {
  --_main_clr: var(--clr_brand, #444);
  --_bgc: var(--_main_clr);
  display: inline-flex;
  align-items: center;
  padding: 0.75em 1.1em;
  margin: 0;
  font-weight: var(--font_weight_medium);
  line-height: 1.2em;
  text-decoration: none !important;
  background-color: var(--_bgc);
  color: oklch(from var(--_bgc) round(1.21 - L) 0 0);
  border-radius: 3ch;
  min-inline-size: fit-content;
  &:hover,
  &:focus-visible {
    --_lightness_multiplier: 0.8;
    --_bgc_hover: oklch(
      from var(--_bgc) calc(L * var(--_lightness_multiplier)) C H
    );
    background-color: var(--_bgc_hover);
    color: oklch(from var(--_bgc_hover) round(1.21 - L) 0 0);
    --_shadow_tone: oklch(from var(--_bgc_hover) round(1.21 - L) 0 0);
    box-shadow:
      0 0 0.1ch oklch(from var(--_shadow_tone) L C H / 0.02),
      0 0 0.2ch oklch(from var(--_shadow_tone) L C H / 0.04),
      0 0 0.5ch oklch(from var(--_shadow_tone) L C H / 0.07),
      0 0 1ch oklch(from var(--_shadow_tone) L C H / 0.09);
  }
}
.button.light {
  --_main_clr: #fff;
}
.button.hollow {
  --_contrast_clr: oklch(from var(--_main_clr) round(1.21 - L) 0 0);
  color: var(--_main_clr);
  border: 2px solid var(--_main_clr);
  background-color: transparent;
  backdrop-filter: blur(1px);
  &:hover,
  &:focus-visible {
    background-color: var(--_main_clr);
    border-color: var(--_contrast_clr);
    color: var(--_contrast_clr);
    box-shadow: none;
  }
}
.button.iconized::before {
  font-family: var(--fontawesome);
  font-size: 1.8ch;
  padding-inline-end: 1ch;
}
.button.iconized.telephone::before {
  content: "\f095" / "Telefonnummer:";
}
.button.iconized.email::before {
  content: "\f0e0" / "E-Mail";
}
.button.iconized.whatsapp::before {
  font-family: var(--fontawesome_brands);
  content: "\f232" / "WhatsApp";
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Hero (Section on HP)
██████████████████████████████████████████████████████████████████████████████████████
*/
section.hero {
  background-color: var(--clr_brand);
  background-image:
    linear-gradient(to right, rgb(0 0 0 / 0.85) 40%, rgb(0 0 0 / 0.1) 100%),
    url("../img/home/hero.webp");
  background-position: 50% 45%;
  background-size: cover;
  padding-block-start: max(10ch, 11vw);
  padding-block-end: 4ch;
  border-radius: var(--section_border_radius);
  position: relative;
  @media (max-width: 80rem) {
    & {
      padding-block-start: max(15ch, 16vw);
    }
  }
}
body:not(.home) section.hero {
  background-image:
    linear-gradient(to right, rgb(0 0 0 / 0.75) 40%, rgb(0 0 0 / 0.1) 100%),
    url("../img/hero.webp");
  padding-block-start: max(16ch, 12vw);
  padding-block-end: 0;
}
section.hero .text_box {
  width: max(58ch, 45%);
  max-width: 100%;
}
body:not(.home) section.hero .text_box {
  width: max(90ch, 60%);
}
section.hero .text_box *:not(.button) {
  text-align: inherit;
  color: #fff;
}
section.hero .text_box .logo {
  height: 9rem;
  padding: 0.7rem;
  background-color: #fff;
  border-radius: 0.8rem;
  margin: 0 0 1.5rem 0;
}
section.hero .text_box .logo img {
  max-block-size: 100%;
}
section.hero .text_box h1 {
  text-shadow: 0 0 0.6ch rgba(0, 0, 0, 0.3);
}
section.hero .text_box h1 span {
  display: block;
}
section.hero .text_box h1 span.heading_kicker {
  font-size: 0.6em;
  margin-bottom: 1ch;
}
section.hero .text_box h1 span:not([class]) {
  font-size: 1.4em;
  line-height: 1.1em;
}
section.hero .text_box .claim {
  order: -1;
  background-color: oklch(from var(--clr_accent) l c h / calc(alpha * 0.7));
  line-height: 1.2em;
  border-radius: 9rem;
  border: 2px solid yellowgreen;
  padding: 0.4ch 3ch;
  margin-block-end: 2ch;
}
section.hero .text_box > p {
  text-shadow: 0 0 0.6ch rgba(0, 0, 0, 0.3);
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Services (Homepage)
██████████████████████████████████████████████████████████████████████████████████████
*/
section.services .cta_con {
  margin-top: 4rem;
  text-align: center;
}
ul.service_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(1.9rem, 3vw);
  margin: 0 auto;
  margin-top: 2ch;
  padding: 0;
  max-width: 100%;
  @media (max-width: 70rem) {
    & {
      grid-template-columns: repeat(2, 1fr);
      width: 90ch;
    }
  }
  @media (max-width: 45rem) {
    & {
      grid-template-columns: 1fr;
      width: 40ch;
      gap: 3ch;
    }
  }
}
.service_list > li {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  background-color: #eaeef3;
  overflow: hidden;
  border-radius: 0.5rem;
  @media (max-width: 70rem) {
    & {
      border-radius: 1rem;
    }
  }
}
.service_list li .text_con {
  display: flex;
  flex-direction: column;
  padding: 2ch;
  gap: 1.5ch;
  font-size: 0.95em;
}
.service_list li .text_con * {
  margin-block-end: 0;
}
.service_list li .text_con h3 {
  margin: 0;
  font-size: 1.25em;
  font-weight: var(--font_weight_normal);
  min-height: 4ch;
  @media (max-width: 70rem) {
    & {
      min-height: unset;
    }
  }
}
.service_list li .text_con h3 * {
  margin: inherit;
}
.service_list li .text_con h3 span:not([class]) {
  color: var(--clr_brand);
}
.service_list li .text_con ul {
  margin-left: 1.2em;
  display: flex;
  flex-direction: column;
  gap: 0.5ch;
}
.service_list li .text_con p {
  line-height: 1.4em;
}
.service_list li > figure {
  width: 100%;
  aspect-ratio: 299/250;
  @media (max-width: 70rem) {
    & {
      aspect-ratio: 3/2;
    }
  }
}
.service_list li > figure > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
section.services .cta_con .button::after {
  content: "\f061";
  font-family: var(--fontawesome);
  display: inline-block;
  margin-inline-start: 1ch;
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  About Us (Section on HP)
██████████████████████████████████████████████████████████████████████████████████████
*/
section.about_us {
  padding-block-start: calc(var(--section_boxed_padding) * 0.5);
}
section.about_us > .wrapper {
  background-color: #000;
  border-radius: var(--section_border_radius);
  padding: 3rem;
  @media (max-width: 80rem) {
    grid-column: full_width;
    grid-template-columns: unset;
    padding-inline: 2rem;
  }
  @media (max-width: 40rem) {
    padding: 1.5rem;
  }
}
section.about_us h2 {
  color: #fff;
  margin-block-end: 2ch;
}
section.about_us h2 * {
  color: inherit;
}
section.about_us h2 span:not([class]) {
  font-size: 1.1em;
  margin-top: 0.8ch;
  font-weight: var(--font_weight_normal);
}
section.about_us h2 span > em {
  color: var(--clr_brand);
}
section.about_us .side_by_side {
  --text_col_width: 55%;
  --gap_horizontal: 6rem;
  @media (max-width: 90rem) {
    --gap_horizontal: 4rem;
  }
  @media (max-width: 100rem) {
    --gap_horizontal: 3rem;
  }
  @media (max-width: 90rem) {
    --gap_horizontal: 2rem;
  }
  @media (max-width: 60rem) {
    & {
      flex-direction: column !important;
      > * {
        width: 100%;
      }
      .text_col {
        flex-basis: unset !important;
      }
    }
  }
}
section.about_us .text_col * {
  color: #fff;
}
section.about_us figure img {
  border-radius: calc(var(--section_border_radius) * 0.5);
  max-width: 100%;
}
section.about_us .text_col figure {
  width: 350px;
  max-width: 55%;
  float: inline-end;
  margin-inline-start: 2ch;
  margin-block-end: 1.5ch;
  @media (max-width: 70rem) {
    width: 400px;
    max-width: 100%;
    float: none;
    margin-inline: 0;
    margin-block-end: var(--text_block_spacer);
  }
  @media (max-width: 60rem) {
    width: 450px;
    margin-inline: auto;
  }
  @media (max-width: 45rem) {
    margin-inline: 0;
  }
}
@media (max-width: 45rem) {
  section.about_us .media_col figure {
    margin-inline: 0;
  }
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Benefits (Section on HP)
██████████████████████████████████████████████████████████████████████████████████████
*/
section.benefits {
  padding-block-start: calc(var(--section_boxed_padding) * 0.5);
}
section.benefits h2 {
  margin-block-end: 3ch;
}
section.benefits h2 span.heading_kicker {
  color: var(--clr_heading);
}
section.benefits h2 span:not([class]) {
  font-size: 1.1em;
  margin-top: 0.8ch;
  font-family: var(--ff_base);
  font-weight: var(--font_weight_normal);
}
section.benefits .listing {
  --_gap_horizontal: 8ch;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3ch var(--_gap_horizontal);
  @media (max-width: 60rem) {
    grid-template-columns: 1fr;
    width: 60ch;
    max-width: 100%;
    margin-inline: auto;
  }
}
section.benefits .listing li {
  position: relative;
  @media (max-width: 60rem) {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
  }
  @media (max-width: 30rem) {
    display: block;
  }
}
section.benefits .listing li + li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: calc(var(--_gap_horizontal) * -0.5);
  height: 100%;
  width: 1px;
  background-color: #000;
  opacity: 0.2;
  @media (max-width: 60rem) {
    display: none;
  }
}
section.benefits .listing i {
  display: block;
  font-size: 3em;
  margin-bottom: 0.8ch;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 2px #000;
}
section.benefits .listing strong {
  display: block;
  font-family: var(--ff_heading);
  font-weight: var(--font_weight_normal);
  font-size: 1.3em;
  line-height: 1.2em;
  margin-block: 0.5ch;
  @media (max-width: 60rem) {
    margin-block-start: 0;
  }
}
section.benefits .listing p {
  color: rgb(0 0 0 / 0.8);
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Credentials (Section on HP)
██████████████████████████████████████████████████████████████████████████████████████
*/
section.credentials .gallery {
  --pic_min_width: 250px;
  --gap: 2ch;
}
section.credentials .gallery figure[role="button"] {
  --border-radius: 0.8ch;
}
/*
██████████████████████████████████████████████████████████████████████████████████████
  Footer
██████████████████████████████████████████████████████████████████████████████████████
*/
footer {
  background-color: #000;
  color: #fff;
  border-radius: var(--section_border_radius);
  padding-block: 3ch;
  text-align: center;
  @media (max-width: 50rem) {
    padding-block: 4vw;
  }
}
footer * {
  color: inherit;
}
footer > div {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
footer h2 {
  font-weight: var(--font-weight_normal);
  text-align: center;
  margin-block-start: 1ch;
  margin-block-end: 0.5ch;
}
footer .main_line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  @media (max-width: 82rem) {
    & {
      grid-template-columns: repeat(2, 1fr);
      /* width: 20rem;
      max-width: 100%;
      margin-inline: auto; */
    }
  }
}
footer .main_line .col {
  border: 1px solid #fff;
  border-radius: calc(var(--section_border_radius) * 0.5);
  padding: 2.2ch 1.5ch;
}
footer .main_line .col i {
  font-size: 2.5rem;
  display: inline-block;
  margin-block-end: 0.5ch;
}
footer .main_line .col strong {
  display: block;
  font-size: 1.1em;
  font-weight: var(--font_weight_normal);
  margin-block-end: 0.8ch;
}
footer .main_line .col .text_con {
  font-size: 0.9em;
}
@media (max-width: 75rem) {
  footer .main_line {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  footer .main_line .logo_con {
    grid-column: 1 / -1;
  }
}
@media (max-width: 45rem) {
  footer .main_line {
    grid-template-columns: 1fr;
    gap: 3ch;
  }
  footer .main_line .logo_con {
    grid-column: unset;
  }
}
footer .map_line iframe {
  border-radius: calc(var(--section_border_radius) * 0.5);
}
footer .gmod {
  height: 300px;
  border-radius: calc(var(--section_border_radius) * 0.5);
}
footer .bottom_line {
  font-size: 0.9em;
}
footer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  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 {
  --_b2t_color: var(--clr_brand);
  --_b2t_color: oklch(from var(--clr_brand) calc(L * 0.8) calc(C * 0.6) H);
}
