* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
  list-style: none;
}

img,
picture {
  max-width: 100%;
  display: block;
}

figure img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

a {
  text-decoration: none;
  word-break: break-word;
}

/* ------------------------------------------------ */
/*  !Fonts  */
/* ------------------------------------------------ */
/* nunito-sans-regular - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  src: local(''),
    url('../fonts/nunito-sans-v12-latin-regular.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/nunito-sans-v12-latin-regular.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  font-display: swap;
}

/* nunito-sans-italic - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: italic;
  font-weight: 400;
  src: local(''),
    url('../fonts/nunito-sans-v12-latin-italic.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/nunito-sans-v12-latin-italic.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  font-display: swap;
}

/* nunito-sans-600 - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 600;
  src: local(''),
    url('../fonts/nunito-sans-v12-latin-600.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/nunito-sans-v12-latin-600.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  font-display: swap;
}

/* nunito-sans-700 - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  src: local(''),
    url('../fonts/nunito-sans-v12-latin-700.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/nunito-sans-v12-latin-700.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  font-display: swap;
}

/* nunito-sans-800 - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 800;
  src: local(''),
    url('../fonts/nunito-sans-v12-latin-800.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/nunito-sans-v12-latin-800.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  font-display: swap;
}

/* nunito-sans-900 - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 900;
  src: local(''),
    url('../fonts/nunito-sans-v12-latin-900.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/nunito-sans-v12-latin-900.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  font-display: swap;
}

/* ------------------------------------------------ */
/*  !Vars  */
/* ------------------------------------------------ */
:root {
  --black: #0E161E;
  --green-dark: #225F3A;
  --green-medium: #56A23E;
  --blue-dark: #22535F;
  --blue-light: #52A6C2;
  --grey: #efefef;
  --grey-light: #fafafa;
  --white: #ffffff;
  --font-12: 12px;
  --font-14: 14px;
  --font-16: 16px;
  --font-17: 17px;
  --font-18: 18px;
  --font-20: 20px;
  --font-22: 22px;
  --font-24: 24px;
  --font-28: 28px;
  --font-30: 30px;
  --font-32: 32px;
  --font-36: 36px;
  --font-38: 38px;
  --font-48: 48px;
  --shadow-green: 0 4px 24px rgba(34, 95, 58, .2);
  --shadow-blue: 0 4px 24px rgba(15, 100, 120, .2);
  --shadow-black-small: 0 1px 4px rgba(95, 95, 95, 0.15);
  --border-radius-4: 4px;
  --border-radius-8: 8px;
  --error: #E50000;
  --success: #56A23E;
}

/* ------------------------------------------------ */
/*  !Typo  */
/* ------------------------------------------------ */
h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  font-size: var(--font-48);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--green-dark);
}

.center h2 {
  font-size: var(--font-48);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--green-dark);
}

h2 {
  font-size: var(--font-32);
  font-weight: 900;
  line-height: 1.2;
  color: var(--green-dark);
}

h2.c-black {
  color: var(--black);
}

h3 {
  font-size: var(--font-28);
  font-weight: 900;
  line-height: 1.2;
  color: var(--green-dark);
}

p {
  margin-bottom: 24px;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

p.small,
figcaption.small {
  font-size: var(--font-14);
}

/* Typo im Content */
.content h2,
.faq h2 {
  margin-bottom: 24px;
}

.content h3 {
  margin-bottom: 16px;
}

.content ul {
  margin-bottom: 32px;
}

.content ul li {
  margin: 0 0 8px 0;
  padding: 0 0 0 16px;
  background-image: url('/assets/images/layout/bullet-green.svg');
  background-repeat: no-repeat;
  background-position: 0 10px;
}

body.industrie .content ul li {
  background-image: url('/assets/images/layout/bullet-blue.svg');
}

/* Farben Industrie */
body.industrie h1,
body.industrie h2,
body.industrie h3 {
  color: var(--blue-dark);
}

@media screen and (max-width: 960px) {
  h3 {
    font-size: var(--font-32);
  }
}

@media screen and (max-width: 768px) {

  h1,
  .center h2 {
    font-size: var(--font-38);
  }

  h2 {
    font-size: var(--font-32);
  }

  h3 {
    font-size: var(--font-30);
  }
}

@media screen and (max-width: 414px) {

  h1,
  .center h2 {
    font-size: var(--font-28);
  }

  h2 {
    font-size: var(--font-28);
  }

  h3 {
    font-size: var(--font-24);
  }
}

/* ------------------------------------------------ */
/*  !Margins und Padding  */
/* ------------------------------------------------ */
.mb-40 {
  margin-bottom: 40px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.no-margin {
  margin: 0;
}

@media screen and (max-width: 414px) {
  .mb-80 {
    margin-bottom: 56px;
  }

  .mt-80 {
    margin-top: 56px;
  }

  .mb-120 {
    margin-bottom: 80px;
  }
}

/* ------------------------------------------------ */
/*  !Buttons  */
/* ------------------------------------------------ */
a.btn {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  background-color: var(--green-medium);
  padding: 12px 18px;
  border-radius: 4px;
}

a.btn::after {
  content: '';
  display: block;
  width: 16px;
  height: 13px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -10px -160px;
  margin: 2px 0 0 8px;
  transition: transform .2s ease;
}

a.btn:hover::after {
  transform: translateX(4px);
}

/* Blauer Button */
.industrie .btn {
  background-color: var(--blue-light);
}

.btn.outline {
  font-weight: 600;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
  background-color: var(--white);
}

.btn.outline::after {
  background-position: -60px -160px;
}

.btn.outline.small {
  padding: 8px 12px;
}

.content a.arw,
.grid-blog a.arw {
  display: inline-flex;
  align-items: center;
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

.content a.arw::after,
.grid-blog a.arw::after {
  content: '';
  display: block;
  width: 16px;
  height: 13px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -60px -160px;
  margin: 0 0 0 6px;
  transition: transform .2s ease;
  flex-shrink: 0;
}

a.arw:hover::after,
.grid-blog a.arw::after {
  transform: translateX(4px);
}

/* Blauer Pfeil */
body.industrie a.arw {
  color: var(--blue-dark);
}

body.industrie a.arw::after {
  background-position: -120px -160px;
}

.content a.dld {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  color: var(--white);
  text-decoration: none;
  background-color: var(--green-medium);
  border-radius: var(--border-radius-4);
}

.content a.dld:hover {
  background-color: var(--green-dark);
}

.content a.dld::before {
  content: '';
  display: block;
  width: 18px;
  height: 22px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -560px -100px;
  margin: -4px 12px 0 0;
  flex-shrink: 0;
}

body.industrie .content a.dld {
  background-color: var(--blue-light);
}

body.industrie .content a.dld:hover {
  background-color: var(--blue-dark);
}

button {
  border: none;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  background-color: var(--green-medium);
  padding: 12px 18px;
  border-radius: 4px;
  cursor: pointer;
}

body.industrie button {
  background-color: var(--blue-light);
}

button::after {
  content: '';
  display: block;
  width: 16px;
  height: 13px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -10px -160px;
  margin: 2px 0 0 8px;
  transition: transform .2s ease;
}

button:hover::after {
  transform: translateX(4px);
}

fieldset button {
  margin: 24px 0 56px 0;
}

/* ------------------------------------------------ */
/*  !Links im Text  */
/* ------------------------------------------------ */
.content a,
.col-txt a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--green-medium);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.content a:hover,
.col-txt a:hover {
  text-decoration-color: var(--grey);
}

body.industrie .content a {
  text-decoration-color: var(--blue-light);
}

/* ------------------------------------------------ */
/*  !Body  */
/* ------------------------------------------------ */
body {
  font-family: 'Nunito Sans', system-ui;
  font-size: var(--font-18);
  line-height: 1.5;
  color: var(--black);
  background-color: var(--white);
}

/* ------------------------------------------------ */
/*  !Container  */
/* ------------------------------------------------ */
.container {
  max-width: 1480px;
  padding: 0 40px;
  margin: 0 auto;
}

.w-medium {
  max-width: 1240px;
}

.w-small {
  max-width: 1000px;
}

@media screen and (max-width: 414px) {
  .container {
    padding: 0 24px;
  }
}

/* ------------------------------------------------ */
/*  !Header  */
/* ------------------------------------------------ */
header {
  position: relative;
  z-index: 10;
  background-color: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .15);
}

header > .container {
  height: 134px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 414px) {
  header > .container {
    height: 100px;
  }
}

/* ------------------------------------------------ */
/*  !Logo  */
/* ------------------------------------------------ */
a.logo {
  display: block;
  width: 263px;
  height: 51px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -10px -10px;
  text-indent: -9999px;
}

body.industrie a.logo {
  background-position: -10px -600px;
}

@media screen and (max-width: 414px) {
  a.logo {
    width: 232px;
    height: 45px;
    background-position: -300px -10px;
  }

  body.industrie a.logo {
    background-position: -300px -600px;
  }
}

@media screen and (max-width: 375px) {
  a.logo {
    width: 200px;
    height: 39px;
    background-position: -560px -10px;
  }

  body.industrie a.logo {
    background-position: -560px -600px;
  }
}

/* ------------------------------------------------ */
/*  !Header Desktop Navigation  */
/* ------------------------------------------------ */
header nav > ul {
  display: flex;
}

header nav > ul > li > a {
  display: flex;
  align-items: center;
  color: var(--black);
  font-weight: 600;
}

header nav > ul > li > a:hover,
header nav > ul > li > a.active {
  color: var(--green-medium);
}

body.industrie header nav > ul > li > a:hover,
body.industrie header nav > ul > li > a.active {
  color: var(--blue-light);
}

header nav > ul > li:nth-child(2) {
  margin: 0 32px;
}

header nav > ul > li > a.has-desktop-menu::after {
  content: '';
  display: block;
  width: 11px;
  height: 7px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -160px -160px;
  margin: 2px 0 0 8px;
  transition: transform .2s ease-out;
}

body.industrie header nav > ul > li > a::after {
  background-position: -180px -160px;
}

header nav > ul > li > a.active::after {
  transform: rotateZ(-180deg);
}

@media screen and (max-width: 1023px) {
  header nav {
    display: none;
  }
}

/* ------------------------------------------------ */
/*  !Suche Desktop  */
/* ------------------------------------------------ */
.search-link {
  display: block;
  width: 19px;
  height: 19px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -264px -100px;
  text-indent: -9999px;
}

.search-link:hover,
.search-link.active {
  background-position: -300px -100px;
}

body.industrie .search-link:hover,
body.industrie .search-link.active {
  background-position: -336px -100px;
}

@media screen and (max-width: 1023px) {
  .search-link {
    display: none;
  }
}

/* ------------------------------------------------ */
/*  !Suchfeld Desktop  */
/* ------------------------------------------------ */
.desktop-search-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 80px 0;
}

.desktop-menu input {
  border: none;
  background-color: transparent;
  width: calc(100% - 124px);
  font-size: var(--font-22);
}

.desktop-menu button,
body.industrie .desktop-menu button {
  display: block;
  width: 120px;
  padding: 8px 0;
  color: var(--black);
  background-color: transparent;
  border: 2px solid var(--black);
  border-radius: 4px;
  cursor: pointer;
}

.desktop-menu button::after {
  display: none;
}

::placeholder {
  opacity: 1;
}

/* ------------------------------------------------ */
/*  !Mobile Menu Link  */
/* ------------------------------------------------ */
@media screen and (min-width: 1024px) {
  .mobile-menu-link {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .mobile-menu-link {
    display: block;
    width: 46px;
    height: 46px;
    background-image: url('/assets/images/layout/sprites.svg');
    background-repeat: no-repeat;
    background-position: 0 -86px;
    text-indent: -9999px;
  }

  .mobile-menu-link.active {
    background-position: -155px -85px;
  }
}

/* ------------------------------------------------ */
/*  !Hero  */
/* ------------------------------------------------ */
@keyframes hero {
  0% {
    transform: translateY(8px);
    opacity: .75;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero figure {
  max-width: 1600px;
  position: relative;
  margin: 0 auto;
  opacity: 0;
}

.hero figure.active {
  animation: hero .3s .5s ease-out forwards;
}

.hero figcaption {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: var(--font-12);
  background-color: rgba(255, 255, 255, .2);
  padding: 2px 4px;
  border-radius: 2px;
}

.hero-txt {
  position: relative;
  margin: -80px 0 0 0;
  padding: 80px;
  background-color: var(--white);
  box-shadow: var(--shadow-green);
  border-radius: var(--border-radius-8);
  text-align: center;
}

.hero-txt p:last-child {
  margin-bottom: 0;
}

body.industrie .hero-txt {
  box-shadow: var(--shadow-blue);
}

@media screen and (max-width: 768px) {
  .hero-txt {
    margin: -40px 0 0 0;
    padding: 40px;
  }
}

@media screen and (max-width: 414px) {
  .hero figcaption {
    top: 6px;
    right: 6px;
  }

  .hero-txt {
    margin: -16px 0 0 0;
    padding: 24px;
  }

  .hero img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center center;
  }
}

/* ------------------------------------------------ */
/*  !Text und Headline zentriert  */
/* ------------------------------------------------ */
.center {
  text-align: center;
}

/* ------------------------------------------------ */
/*  !Grid  */
/* ------------------------------------------------ */
.grid {
  display: grid;
}

.grid-bg {
  background-color: var(--grey-light);
  padding: 16px;
  border-radius: var(--border-radius-4);
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .grid-bg {
    padding: 40px;
  }
}

/* ------------------------------------------------ */
/*  !Grid Homepage  */
/* ------------------------------------------------ */
.grid-home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 80px;
  row-gap: 80px;
}

.grid-home .item {
  display: flex;
  flex-direction: column;
}

.grid-home .item figure {
  max-width: 84.84848484848484%;
  margin: 0 auto;
  overflow: hidden;
  border-top-left-radius: var(--border-radius-8);
  border-top-right-radius: var(--border-radius-8);
}

.grid-home .item-inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 56px;
  background-color: var(--white);
  box-shadow: var(--shadow-green);
  border-radius: var(--border-radius-8);
}

@media screen and (max-width: 1023px) {
  .grid-home {
    column-gap: 40px;
    row-gap: 40px;
  }

  .grid-home .item-inner {
    padding: 40px;
  }
}

@media screen and (max-width: 768px) {
  .grid-home {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 80px;
  }
}

@media screen and (max-width: 414px) {
  .grid-home .item-inner {
    padding: 24px;
  }
}

/* Formatierung Text */
.grid-home .item-inner p:first-child {
  margin-bottom: 24px;
}

.grid-home .item-inner span {
  display: inline-block;
  font-size: var(--font-16);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  color: var(--black);
  background-color: var(--grey-light);
}

.grid-home .item-inner h3 {
  margin-bottom: 24px;
}

.grid-home .item-inner p:last-child {
  margin-top: auto;
}

/* Blaue Kachel */
.grid-home .item-inner.industrie {
  box-shadow: var(--shadow-blue);
}

.grid-home .item-inner.industrie p:first-child {
  color: var(--blue-dark);
}

.grid-home .item-inner.industrie h3 {
  color: var(--blue-dark);
}

.indent-color {
  display: flex;
  font-weight: 700;
}

.indent {
  padding-left: 34px;
}

.indent-color::before {
  content: '';
  display: block;
  width: 8px;
  border-radius: 5px;
  background-color: var(--green-dark);
  margin-right: 24px;
  flex-shrink: 0;
}

.industrie .indent-color:before {
  background-color: var(--blue-dark);
}

@media screen and (max-width: 414px) {
  .indent {
    padding-left: 0;
  }

  .indent-color {
    display: block;
  }

  .indent-color:before {
    display: none;
  }
}

/* ------------------------------------------------ */
/*  !Footer  */
/* ------------------------------------------------ */
.footer-nav {
  display: grid;
  grid-template-columns: 200px 1fr 60px;
  margin-bottom: 120px;
  align-items: center;
}

.footer-logo {
  width: 200px;
  height: 39px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -560px -10px;
  text-indent: -9999px;
}

body.industrie .footer-logo {
  background-position: -560px -600px;
}

.footer-nav ul {
  display: flex;
  justify-self: center;
}

.footer-nav ul li::after {
  content: '|';
  color: var(--green-medium);
  margin: 0 12px;
}

body.industrie .footer-nav ul li::after {
  color: var(--blue-light);
}

.footer-nav ul li:last-child::after {
  display: none;
}

.footer-nav a {
  color: var(--black);
}

.footer-nav a:hover {
  color: var(--green-medium);
}

body.industrie .footer-nav a:hover {
  color: var(--blue-light);
}

/* Facebook-Link */
.footer-nav a.fb {
  width: 44px;
  height: 44px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -400px -720px;
  text-indent: -9999px;
  justify-self: right;
}

@media screen and (max-width: 960px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-logo,
  .footer-nav a.fb {
    justify-self: center;
  }

  .footer-logo,
  .footer-nav ul {
    margin-bottom: 24px;
  }

  .footer-nav ul {
    min-width: 200px;
    flex-direction: column;
    align-items: center;
  }

  .footer-nav ul li {
    width: 100%;
    padding: 16px 0;
    text-align: center;
    border-bottom: 1px dashed var(--black);
  }

  .footer-nav ul li:last-child {
    border: none;
  }

  .footer-nav ul li::after {
    display: none;
  }
}

/* ------------------------------------------------ */
/*  !Top Pfeil  */
/* ------------------------------------------------ */
.top {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 80px auto;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -7px -220px;
  text-indent: -9999px;
}

body.industrie .top {
  background-position: -80px -220px;
}

/* ------------------------------------------------ */
/*  !Info Box im Content  */
/* ------------------------------------------------ */
.box {
  position: relative;
  padding: 40px;
  margin: 64px 0 56px 0;
  background-color: var(--grey-light);
  border-radius: var(--border-radius-8);
  border: 1px solid var(--grey);
}

body.industrie .box {
  box-shadow: var(--shadow-blue);
}

/* Box Download */
.box.download {
  color: var(--white);
  background-color: var(--green-dark);
}

body.industrie .box.download {
  background-color: var(--blue-dark);
}

.box.download h3 {
  color: var(--white);
}

.box.download ul {
  margin: 0;
}

.box.download ul li {
  padding: 4px 0;
  background: none;
}

.box.download a {
  display: flex;
  align-items: flex-start;
  color: var(--white);
  text-decoration: none;
}

.box.download a::before {
  content: '';
  display: block;
  width: 19px;
  height: 24px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -400px -100px;
  margin: 1px 12px 0 0;
  flex-shrink: 0;
}

/* Box PDF Download */
.box.pdf {
  display: flex;
}

.box.pdf figure {
  width: 160px;
  margin: 0 40px 0 0;
}

.box.pdf figure img {
  box-shadow: var(--shadow-black-small);
}

.box .pdf-text {
  max-width: 440px;
}

.box .pdf-text p:first-child {
  color: var(--green-dark);
  font-size: var(--font-22);
  font-weight: 900;
  margin: 0 0 8px 0;
}

.box .pdf-text p:nth-child(2) {
  font-size: var(--font-16);
  font-style: italic;
}

@media screen and (max-width: 1279px) {
  .box {
    padding: 64px 40px 40px 40px;
  }
}

@media screen and (max-width: 640px) {
  .box.pdf {
    display: block;
  }

  .box.pdf figure {
    margin: 0 0 40px 0;
  }
}

@media screen and (max-width: 414px) {
  .box {
    padding: 56px 24px 24px 24px;
  }
}

/* ------------------------------------------------ */
/*  !Icons vor Boxen  */
/* ------------------------------------------------ */
.box::before,
.calculator::before {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  content: '';
  display: inline-block;
  width: 56px;
  height: 56px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -10px -300px;
}

body.industrie .box::before {
  background-position: -10px -440px;
}

.calculator::before {
  background-position: -100px -300px;
}

.box.download::before,
.box.pdf::before {
  background-position: -190px -300px;
}

@media screen and (max-width: 1279px) {

  .box::before,
  .calculator::before {
    left: 64px;
  }

  body.industrie .box::before {
    background-position: -10px -440px;
  }
}

@media screen and (max-width: 414px) {
  .box::before {
    left: 48px;
  }
}

/* ------------------------------------------------ */
/*  !Banner  */
/* ------------------------------------------------ */
.banner {
  margin-bottom: 120px;
}

.banner-wrapper {
  position: relative;
}

.banner-inner {
  height: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-8);
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 56px;
}

.banner-txt {
  color: var(--white);
  max-width: 360px;
}

.banner-txt h3,
body.industrie .banner-txt h3 {
  color: var(--white);
  font-size: var(--font-32);
  margin-bottom: 16px;
}

/* Erweiterung Adresse BMWK */
.banner-txt img {
  margin-bottom: 24px;
}

.banner-url {
  position: absolute;
  bottom: 0;
  left: 56px;
  font-size: var(--font-16);
  color: var(--white);
  background-color: rgba(255, 255, 255, .3);
  padding: 4px 8px;
  margin: 16px 0 0 0;
}

@media screen and (max-width: 1023px) {
  .banner-inner {
    padding: 40px;
  }

  .banner-url {
    left: 40px;
  }
}

@media screen and (max-width: 414px) {
  .banner-inner {
    padding: 24px;
  }

  .banner-url {
    left: 24px;
  }

  .banner-txt h3,
  body.industrie .banner-txt h3 {
    font-size: 24px;
  }
}

/* ------------------------------------------------ */
/*  !Banner als Grid bzw. 2 nebeneinander  */
/* ------------------------------------------------ */
.banner .grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 40px;
}

@media screen and (max-width: 767px) {
  .banner .grid {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 56px;
  }
}

/* ------------------------------------------------ */
/*  !Grid Weitere Links am Seitenfuss  */
/* ------------------------------------------------ */
.grid-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 40px;
}

.grid-links.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-links.two {
  grid-template-columns: repeat(2, minmax(0, 560px));
  justify-content: center;
}

.grid-links .item {
  display: flex;
  flex-direction: column;
}

.grid-links .item figure {
  max-width: 84.84848484848484%;
  margin: 0 auto;
  overflow: hidden;
  border-top-left-radius: var(--border-radius-8);
  border-top-right-radius: var(--border-radius-8);
}

.grid-links .item-inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px;
  background-color: var(--white);
  box-shadow: var(--shadow-green);
  border-radius: var(--border-radius-8);
}

@media screen and (max-width: 1199px) {

  .grid-links,
  .grid-links.three,
  .grid-links.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
    row-gap: 80px;
  }
}

@media screen and (max-width: 639px) {

  .grid-links,
  .grid-links.three,
  .grid-links.two {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 56px;
  }
}

/* Formatierung Text */
.grid-links .item-inner p:first-child {
  margin-bottom: 16px;
}

.grid-links .item-inner span {
  display: inline-block;
  font-size: var(--font-16);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  color: var(--black);
  background-color: var(--grey-light);
}

.grid-links .item-inner h3 {
  font-size: var(--font-24);
  margin-bottom: 24px;
}

.grid-links .item-inner p:last-child {
  margin-top: auto;
}

/* Industrie */
body.industrie .grid-links .item-inner {
  box-shadow: var(--shadow-blue);
}

body.industrie .grid-links .item-inner p:first-child,
grid-links .item.industrie p:first-child,
.grid-links .item.industrie a.arw {
  color: var(--blue-dark);
}

.grid-links .item.industrie a.arw::after {
  background-position: -120px -160px;
}

body.industrie .grid-links .item-inner h3,
.grid-links .item.industrie h3 {
  color: var(--blue-dark);
}

/* ------------------------------------------------ */
/*  !Desktop-Menu  */
/* ------------------------------------------------ */
@media screen and (max-width: 1023px) {
  .desktop-menu {
    display: none;
  }
}

.desktop-menu {
  position: absolute;
  top: 134px;
  left: 0;
  width: 100%;
  z-index: 9;
  background-color: var(--grey-light);
  height: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-24px);
  transition: transform .2s ease-out;
}

.desktop-menu.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.grid-menu {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 0;
}

/* Linke Spalte Inhalt */
.grid-menu > div:nth-child(1) {
  padding: 80px 40px 80px 0;
}

/* Rechte Spalte Downloads */
.grid-menu > div:nth-child(2) {
  padding: 80px 40px 80px 40px;
  border-left: 1px solid hsla(0, 0%, 0%, 0.075);
}

/* Grid Inhalte */
.grid-menu-lists {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 24px;
}

/* Dient nur fuer die Icons */
.grid-menu-wrapper {
  display: flex;
  align-items: flex-start;
}

.grid-menu-wrapper::before {
  content: '';
  display: block;
  width: 48px;
  height: 48px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -520px -220px;
  flex-shrink: 0;
  margin: 0 24px 0 0;
}

body.industrie .grid-menu-wrapper::before {
  background-position: -520px -300px;
}

.grid-menu-wrapper:nth-child(2)::before {
  background-position: -620px -220px;
}

body.industrie .grid-menu-wrapper:nth-child(2)::before {
  background-position: -620px -300px;
}

/* Erster Link – fett */
.grid-menu-lists ul li:first-child,
.grid-menu-downloads p:nth-child(1) {
  font-size: var(--font-20);
  font-weight: 600;
  padding: 0 0 8px 0;
  background: none;
}

/* Links mit Bullets */
.grid-menu-lists li {
  padding: 2px 0 2px 11px;
  font-size: var(--font-16);
  background-image: url('/assets/images/layout/bullet-black.svg');
  background-repeat: no-repeat;
  background-position: 0 13px;
}

/* Download-Spalte */
.grid-menu-downloads div:nth-child(1) {
  margin-bottom: 40px;
}

/* Erster Link – fett */
.grid-menu-downloads div p:nth-child(1) {
  font-size: var(--font-20);
  font-weight: 600;
  padding: 0;
  margin: 0;
}

.grid-menu-downloads div p:nth-child(2) {
  font-size: var(--font-16);
  margin-bottom: 16px;
}

.grid-menu-downloads a,
body.industrie .grid-menu-downloads a {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  color: var(--black);
  background-color: var(--white);
  font-size: var(--font-16);
  border-radius: var(--border-radius-4);
  box-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.1);
}

.grid-menu .grid-menu-downloads a:hover,
body.industrie .grid-menu .grid-menu-downloads a:hover {
  color: var(--black);
}

.grid-menu-downloads a::after,
body.industrie .grid-menu-downloads a::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 11px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -300px -160px;
  margin-left: 6px;
  transition: transform .2s ease;
}

.grid-menu-downloads a:hover::after {
  transform: translateX(4px);
}

.grid-menu a {
  color: var(--black);
}

.grid-menu a:hover {
  color: var(--green-medium);
}

body.industrie .grid-menu a:hover {
  color: var(--blue-light);
}

.grid-menu .item:nth-child(1) a {
  display: flex;
  align-items: center;
}

/* Ein-ausblenden der Menus im Menu */
.desktop-submenu {
  display: none;
}

.desktop-submenu.active {
  display: block;
}

/* ------------------------------------------------ */
/*  !Overlay Desktop-Menu  */
/* ------------------------------------------------ */
@media screen and (max-width: 1023px) {
  .overlay-menu {
    display: none;
  }
}

.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: rgba(0, 0, 0, .75);
}

/* ------------------------------------------------ */
/*  !Mobile Menu  */
/* ------------------------------------------------ */
@media screen and (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu {
  background-color: var(--grey-light);
  transform: translateY(-8px);
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: transform .1s .1s ease-out, opacity .1s .1s ease-out;
}

.mobile-menu.active {
  padding: 24px 0;
  height: auto;
  visibility: visible;
  opacity: 1;
  min-height: calc(100vh - 134px);
  transform: translateY(0);
}

/* Abstand Listen */
.mobile-menu > .container > ul {
  margin-bottom: 40px;
}

/* Headline Rubrik */
.mobile-menu > .container > ul > li:first-child {
  font-size: var(--font-18);
  font-weight: 700;
  color: var(--black);
  background-color: var(--grey);
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid var(--grey);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 1. Ebene Links */
.mobile-menu > .container > ul > li {
  padding: 8px 16px;
  border-bottom: 1px dashed var(--black);
}

.mobile-menu > .container > ul > li:last-child {
  border: none;
}

.mobile-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-17);
  color: var(--black);
  padding: 6px 0;
}

.mobile-menu > .container > ul > li > a {
  font-weight: 600;
}

.mobile-menu > .container > ul > li > a.has-menu::after {
  content: '';
  font-weight: 600;
  width: 11px;
  height: 7px;
  border-radius: 15px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -200px -160px;
  flex-shrink: 0;
  margin-left: 6px;
  transition: transform .2s ease-out;
}

.mobile-menu > .container > ul > li > a.active::after {
  transform: rotateZ(-180deg);
}

/* Suchfeld */
.search-wrapper-mobile {
  margin-top: 16px;
  display: flex;
  align-items: center;
  border: 1px solid var(--black);
  border-radius: 4px;
  overflow: hidden;
}

.search-wrapper-mobile input {
  border: none;
  padding: 8px 8px;
  width: calc(100% - 40px);
  color: var(--black);
  background-color: var(--white);
}

.search-wrapper-mobile button,
body.industrie .search-wrapper-mobile button {
  display: block;
  border: none;
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  background-color: var(--white);
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -254px -89px;
  cursor: pointer;
}

/* Mobile-Submenu */
.mobile-submenu {
  font-size: var(--font-17);
  height: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(4px);
  transition: transform .1s .1s ease-out, opacity .1s .1s ease-out;
}

.mobile-submenu.active {
  padding: 8px 0 8px 8px;
  display: block;
  height: auto;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.mobile-submenu li {
  padding: 0 0 0 12px;
  background-image: url('/assets/images/layout/bullet-black.svg');
  background-repeat: no-repeat;
  background-position: 0 15px;
}

.mobile-submenu li a {
  padding: 4px 0;
}

@media screen and (max-width: 414px) {
  .mobile-menu.active {
    min-height: calc(100vh - 100px);
  }
}

/* ------------------------------------------------ */
/*  !Zweispaltiger Content mit Navigation  */
/* ------------------------------------------------ */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 320px);
  column-gap: 80px;
}

.col-2 {
  position: relative;
}

.col-2 nav {
  position: sticky;
  top: 24px;
}

.col-2 nav h3 {
  margin-bottom: 24px;
}

.col-2 nav ul li {
  background: none;
  padding: 8px 0 8px 0;
  margin: 0;
  border-left: 1px solid var(--green-medium);
}

body.industrie .col-2 nav ul li {
  background: none;
  border-left: 1px solid var(--blue-light);
}

/* Link zum Oeffnen des Submenus */
.col-2 nav > a {
  display: none;
}

.col-2 nav > ul a {
  display: inline-flex;
  align-items: center;
  color: var(--black);
  text-decoration: none;
}

.col-2 nav > ul a:hover {
  color: var(--green-medium);
}

body.industrie .col-2 nav > ul a:hover {
  color: var(--blue-light);
}

.col-2 nav > ul a.active {
  font-weight: 700;
}

.col-2 nav > ul a.active::before {
  visibility: visible;
  background-color: var(--green-medium);
}

body.industrie .col-2 nav > ul a.active::before {
  visibility: visible;
  background-color: var(--blue-light);
}

.col-2 nav > ul a::before {
  content: '';
  display: block;
  visibility: hidden;
  width: 9px;
  height: 9px;
  background-color: transparent;
  border: 4px solid var(--grey);
  border-radius: 50%;
  margin: 0 16px 0 -9px;
  flex-shrink: 0;
}

body.industrie .col-2 nav > ul a::before {
  visibility: hidden;
}

/* Seitennavigation im einspaltigen Layout */
@media screen and (max-width: 1023px) {
  .two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    column-gap: 80px;
  }

  .col-2 {
    grid-row: 1;
  }

  .col-2 nav h3 {
    display: none;
  }

  /* Link zum Aufklappen des Menus */
  .col-2 nav > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black);
    font-size: var(--font-20);
    font-weight: 700;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--black);
    background-color: var(--grey-light);
    text-decoration: none;
  }

  /* Pfeil nach dem Link */
  .col-2 nav > a::after {
    content: '';
    width: 21px;
    height: 21px;
    margin: 0 0 0 8px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--green-medium);
    background-image: url('/assets/images/layout/sprites.svg');
    background-repeat: no-repeat;
    background-position: -194px -172px;
    flex-shrink: 0;
    transition: transform .2s ease-out;
  }

  body.industrie .col-2 nav > a::after {
    background-color: var(--blue-light);
  }

  .col-2 nav > a.active {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .col-2 nav > a.active::after {
    transform: rotateZ(-180deg);
  }

  /* Navigation in der einspaltigen Version */
  .col-2 nav ul {
    margin: -1px auto 40px auto;
    background-color: var(--grey-light);
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    height: 0;
    padding: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: opacity .1s .1s ease-out;
  }

  .col-2 nav ul.active {
    padding: 24px;
    height: auto;
    overflow: visible;
    visibility: visible;
    border: 1px solid var(--black);
    opacity: 1;
    transform: translateY(0);
  }

  .col-2 nav > ul a::before {
    border-color: var(--white);
  }

  .col-2 nav ul li,
  body.industrie .col-2 nav ul li {
    border: none;
  }
}

/* ------------------------------------------------ */
/*  !List Items  */
/* ------------------------------------------------ */
.list .item {
  display: grid;
  grid-template-columns: minmax(320px, 320px) minmax(0, 1fr);
  margin-bottom: 56px;
}

.list .item figure {
  overflow: hidden;
  border-radius: var(--border-radius-8);
  max-width: 320px;
  max-height: 180px;
  margin: auto 0;
  z-index: 0;
}

.list .item-txt {
  margin: 0 0 0 -40px;
  padding: 40px 40px 40px 40px;
  box-shadow: var(--shadow-green);
  border-radius: var(--border-radius-8);
  background-color: var(--white);
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .list .item {
    grid-template-columns: minmax(0, 1fr);
  }

  .list .item figure {
    margin: 0 0 0 40px;
  }

  .list .item-txt {
    margin: -8px 0 0 0;
  }
}

@media screen and (max-width: 560px) {
  .list .item figure {
    min-width: 84.84848484848484%;
    max-width: 84.84848484848484%;
    max-height: none;
    margin: 0 auto;
  }
}

@media screen and (max-width: 414px) {
  .list .item-txt {
    padding: 24px;
  }
}

/* ------------------------------------------------ */
/*  !Tabellen  */
/* ------------------------------------------------ */
.table {
  margin: 40px 0 32px 0;
  overflow-x: scroll;
}

table {
  width: 100%;
  background-color: var(--white);
  border-spacing: 0;
  margin-bottom: 16px;
}

th,
td {
  text-align: left;
  vertical-align: top;
  font-size: var(--font-16);
}

th {
  color: var(--white);
  background: var(--green-medium);
  border-bottom: 1px solid var(--green-medium);
  border-right: 1px solid var(--white);
  padding: 10px;
}

tr th:last-child {
  border-right-color: var(--green-medium);
}

td {
  border: 1px solid var(--green-medium);
  border-top: none;
  border-right: none;
  padding: 5px 10px;
}

tr td:last-child {
  border-right: 1px solid var(--green-medium);
}

td.dark {
  font-weight: 500;
  background: var(--grey-light);
}

/* Industrie */
body.industrie th {
  background: var(--blue-light);
  border: 1px solid var(--blue-light);
}

body.industrie td {
  border: 1px solid var(--blue-light);
}

/* Runde Ecken Tabelle */
tr:first-child th:first-child {
  border-top-left-radius: var(--border-radius-4);
}

tr:first-child th:last-child {
  border-top-right-radius: var(--border-radius-4);
}

tr:last-child td:first-child {
  border-bottom-left-radius: var(--border-radius-4);
}

tr:last-child td:last-child {
  border-bottom-right-radius: var(--border-radius-4);
}

/* ------------------------------------------------ */
/*  !Grids Background  */
/* ------------------------------------------------ */
.grid-1 {
  background-image: url('/assets/images/layout/grid-1.svg');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 374px 352px;
}

body.industrie .grid-1 {
  background-image: url('/assets/images/layout/grid-1-blau.svg');
}

.grid-2 {
  background-image: url('/assets/images/layout/grid-2.svg');
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 470px 300px;
}

body.industrie.grid-2 {
  background-image: url('/assets/images/layout/grid-2-blau.svg');
}

@media screen and (max-width: 767px) {
  .grid-1 {
    background-size: contain;
  }
}

/* ------------------------------------------------ */
/*  !Calculator  */
/* ------------------------------------------------ */
.calculator {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  background-color: var(--white);
  padding: 64px 40px 40px 40px;
  margin: 64px 0 56px 0;
  background-color: var(--grey-light);
  border-radius: var(--border-radius-8);
  border: 1px solid var(--grey);
}

p.result {
  font-size: var(--font-38);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 8px 0;
  color: var(--green-dark);
}

span.unit {
  color: var(--green-dark);
}

@media screen and (max-width: 414px) {
  .calculator {
    padding: 56px 24px 24px 24px;
  }
}

/* Range Inputs */
/********** Range Input Styles **********/
/*Range Reset*/
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  width: calc(100%);
  margin: 24px 0 24px 0;
}

/* Removes default focus */
input[type="range"]:focus {
  outline: none;
}

/***** Chrome, Safari, Opera and Edge Chromium styles *****/
/* slider track */
input[type="range"]::-webkit-slider-runnable-track {
  background-color: var(--green-medium);
  height: 2px;
}

/* slider thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  /* Override default look */
  appearance: none;
  margin-top: -12px;
  /* Centers thumb on the track */
  /*custom styles*/
  background-color: var(--green-medium);
  width: 24px;
  height: 24px;
  border-radius: 100%;
}

input[type="range"]:focus::-webkit-slider-thumb {
  border: none;
  outline: none;
}

/******** Firefox styles ********/
/* slider track */
input[type="range"]::-moz-range-track {
  background-color: var(--green-medium);
  height: 2px;
  margin-bottom: 40px;
}

/* slider thumb */
input[type="range"]::-moz-range-thumb {
  border: none;
  border-radius: 100%;
  /*custom styles*/
  background-color: var(--green-medium);
  width: 24px;
  height: 24px;
}

input[type="range"]:focus::-moz-range-thumb {
  border: none;
  outline: none;
}

/* ------------------------------------------------ */
/*  !Calculator Switch  */
/* ------------------------------------------------ */
.calc-cols {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: var(--grey);
  margin-bottom: 40px;
}

.calculator .calc-cols,
.note {
  text-align: center;
}

.calc-col {
  width: calc(50% - 1px);
  background-color: var(--grey-light);
  padding: 0;
  overflow: hidden;
}

.calc-col p:first-child {
  line-height: 1;
  margin-bottom: 16px;
}

.calc-col p:nth-child(2) {
  color: var(--green-dark);
  font-size: var(--font-36);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 8px 0;
  padding: 0 16px 0 0;
}

.calc-col p:nth-child(3) {
  font-size: var(--font-24);
  font-weight: 700;
  color: var(--green);
}

.switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  margin-bottom: 32px;
}

.switch a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  line-height: 1;
  font-weight: 700;
  color: var(--black);
  background-color: var(--grey);
  flex-shrink: 0;
  text-decoration: none;
}

.switch a:first-child {
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.switch a:last-child {
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}

.switch a.active {
  color: var(--white);
  background-color: var(--green-medium);
}

@media screen and (max-width: 960px) and (min-width: 811px),
screen and (max-width: 540px) {
  .calc-cols {
    display: block;
    margin-bottom: 16px;
  }

  .calc-col {
    width: 100%;
    background-color: var(--white);
  }

  .calc-col:first-child {
    margin: 0 0 2px 0;
  }

  .calc-col:last-child {
    padding: 24px 0 0 0;
  }
}

/* ------------------------------------------------ */
/*  !Bilder Grid  */
/* ------------------------------------------------ */
.grid-images {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5px;
  row-gap: 5px;
}

.grid-images .item {
  overflow: hidden;
  border-radius: var(--border-radius-8);
  background-size: cover;
  background-position: center center;
}

.grid-images .item::after {
  content: '';
  display: block;
  padding-bottom: 56.25%;
}

/* 3 Bilder - Hochformat rechts */
.grid-images.hf-right .item:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

/* 3 Bilder - Hochformat links */
.grid-images.hf-left .item:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.grid-images-copy {
  font-size: var(--font-14);
  margin: 8px 0 40px 0;
  padding: 0 0 0 8px;
}

/* ------------------------------------------------ */
/*  !Bild im Content  */
/* ------------------------------------------------ */
.content figure {
  margin-bottom: 40px;
}

.content figure img {
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: var(--border-radius-8);
  border: 1px solid var(--grey);
}

.content figcaption {
  font-style: italic;
  padding: 0 16px;
}

/* ------------------------------------------------ */
/*  !Liste mit Textbloecken  */
/* ------------------------------------------------ */
.list-content {
  margin-bottom: 32px;
  border-bottom: 1px dashed var(--blue-dark);
}

.list-content:last-child {
  border: none;
}

.list-content p:last-child {
  margin-bottom: 32px;
}

/* ------------------------------------------------ */
/*  !Grid Experten  */
/* ------------------------------------------------ */
.grid-experts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 40px;
}

.grid-experts .item {
  background-color: var(--white);
  box-shadow: var(--shadow-black-small);
  border-radius: var(--border-radius-8);
  padding: 24px;
}

.grid-experts h3 {
  font-weight: 800;
  font-size: var(--font-22);
  margin-bottom: 16px
}

.label-bl {
  display: inline-block;
  padding: 4px 16px;
  background-color: var(--white);
  border-radius: var(--border-radius-4);
  border: 1px solid var(--grey);
}

.grid-experts p,
.grid-experts ul {
  font-size: var(--font-16);
}

.content .grid-experts ul li {
  background: none;
  padding: 0;
  margin: 0;
}

.grid-experts .item a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}

.grid-experts .item a:hover {
  color: var(--green-medium);
}

@media screen and (max-width: 1023px) {
  .grid-experts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .grid-experts {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* ------------------------------------------------ */
/*  !Pagination  */
/* ------------------------------------------------ */
.pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0 0 0;
}

.content .pagination a,
.content .pagination span.current {
  display: inline-flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  border-radius: var(--border-radius-4);
  background-color: var(--grey-light);
  border: 1px solid var(--grey);
  margin: 0 12px 8px 0;
}

.content .pagination span.current {
  color: var(--white);
  border-color: var(--green-medium);
  background-color: var(--green-medium);
}

/* ------------------------------------------------ */
/*  !Filter Experten  */
/* ------------------------------------------------ */
.filter {
  position: relative;
  margin: 0 0 24px 0;
}

a.filter-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--grey);
  margin: 0 0 2px 0;
  padding: 0 24px;
  height: 56px;
  border-radius: var(--border-radius-4);
  background-color: var(--grey-light);
  text-decoration: none;
}

a.filter-link::before {
  content: '';
  display: block;
  width: 24px;
  height: 14px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -450px -100px;
  margin: 0 12px 0 0;
}

a.filter-link.active {
  color: var(--white);
  background-color: var(--green-medium);
  border-color: var(--green-medium);
}

a.filter-link.active::before {
  background-position: -500px -100px;
}

.filter ul {
  position: absolute;
  top: 64px;
  left: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-green);
  border-radius: var(--border-radius-4);
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: transform .1s ease-out, opacity .1s ease-out;
  transform: translateY(-4px);
}

.filter ul.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  padding: 24px;
  transform: translateY(0);
}

.filter ul a {
  font-size: var(--font-16);
  text-decoration: none;
}

.filter ul li {
  padding: 4px 0;
  margin: 0;
  background: none;
}

.delete-filter {
  font-size: var(--font-16);
}

.delete-filter a {
  color: var(--green-medium);
  text-decoration: none;
}

/* ------------------------------------------------ */
/*  !iFrames  */
/* ------------------------------------------------ */
.iframe-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  padding: 0 40px;
  overflow-x: scroll;
}

iframe {
  border: none;
}

.iframe-check {
  width: 980px;
  height: 640px;
}

.iframe-foerder {
  width: 460px;
  height: 840px;
  border: 1px solid var(--grey);
}

/* Quiz */
iframe.quiz {
  width: 100%;
  height: 600px;
  margin: 0 auto;
}

/* ------------------------------------------------ */
/*  !Liste Bildnachweise  */
/* ------------------------------------------------ */
.bildnachweise a {
  text-decoration: none;
}

.content .bildnachweise li {
  padding: 0 0 8px 16px;
  border-bottom: 1px solid var(--grey);
}

/* ------------------------------------------------ */
/*  !Suchergebnis  */
/* ------------------------------------------------ */
.search-result {
  margin: 0 0 24px 0;
  padding: 0 0 8px 0;
  border-bottom: 1px dashed var(--black);
}

.search-result:last-child {
  border: none;
}

.search-result p:first-child {
  margin: 0 0 8px 0;
}

.search-result p:nth-child(2) {
  font-size: var(--font-17);
  margin: 0 0 12px 0;
}

.search-result a {
  font-size: var(--font-22);
  font-weight: 600;
  color: var(--green-medium);
  text-decoration: none;
}

.search-result a:hover {
  color: var(--black);
}

/* ------------------------------------------------ */
/*  !Quote / Testimonial  */
/* ------------------------------------------------ */
blockquote {
  padding: 40px;
  margin: 64px 0 56px 0;
  background-color: var(--grey-light);
  border-radius: var(--border-radius-8);
  border: 1px solid var(--grey);
  box-shadow: var(--shadow-green);
}

.industrie blockquote {
  box-shadow: var(--shadow-blue);
}

.blockquote-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.content blockquote figure {
  position: relative;
  flex-shrink: 0;
  width: 160px;
  margin: 24px 0 40px 0;
}

.content blockquote img {
  width: 160px;
  height: 160px;
  border-radius: 80px;
  border: 8px solid var(--white);
  overflow: hidden;
  flex-shrink: 0;
}

.content blockquote figure::before {
  position: absolute;
  top: -24px;
  right: 0;
  content: '';
  display: block;
  width: 52px;
  height: 48px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -300px -300px;
}

.industrie blockquote figure::before {
  background-position: -300px -440px;
}

.blockquote-text {
  padding: 0 0 0 80px;
}

.blockquote-text p:nth-child(1) {
  font-style: italic;
}

.blockquote-text p:nth-child(2) {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .blockquote-inner {
    display: block;
  }

  .blockquote-text {
    padding: 0;
  }
}

@media screen and (max-width: 414px) {
  blockquote {
    padding: 24px;
  }
}

/* ------------------------------------------------ */
/*  !Datenschutz Banner  */
/* ------------------------------------------------ */
/* Animation */
@keyframes slideIn {
  0% {
    visibility: hidden;
    transform: translateY(-100%);
  }

  100% {
    visibility: visible;
    transform: translateY(0);
  }
}

/* Styles */
.consent-overlay {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 20px;
  min-height: 100vh;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  overflow-y: scroll;
  z-index: 20;
}

.consent-modal {
  background: var(--white);
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.4;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, .3);
  visibility: hidden;
  transform: translateY(-100%);
  /* Animation Modal */
  animation: slideIn .4s ease-out 1s forwards;
}

.consent-modal-inner {
  padding: 40px;
}

.consent-modal-inner h3 {
  font-size: 125%;
  margin-bottom: 20px;
}

.consent-modal-inner p {
  font-size: 100%;
  margin-bottom: 15px;
}

.consent-modal-inner p a {
  color: var(--green-medium);
}

.consent-modal-inner p a:hover {
  color: var(--black);
}

.consent-modal-inner ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.consent-modal-inner ul:last-child {
  margin: 0;
}

.consent-modal-inner ul li:first-child {
  margin-right: 20px;
}

.consent-btns a {
  color: var(--black);
  font-weight: 600;
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--white);
  border: 1px solid var(--black);
  border-radius: 4px;
  transition: background-color .1s ease, border-color .1s ease;
  white-space: nowrap;
}

.consent-btns a:hover {
  border-color: var(--black);
}

#consent-btn-primary {
  font-weight: 600;
  color: var(--white);
  background-color: var(--green-medium);
  border: 1px solid var(--green-medium);
}

#consent-btn-primary:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
}

/* Ceckboxen */
.consent-checkboxes a {
  display: flex;
  align-items: center;
  color: var(--black);
  font-weight: 400;
}

.consent-checkboxes a:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--black);
  border-radius: 2px;
  margin-right: 10px;
  background-image: url('/assets/images/layout/consent-icons.svg');
  background-repeat: no-repeat;
  background-position: -100px 0;
}

.consent-checkboxes a.disabled:before {
  border-color: #aaa;
  background-position: 0 0;
}

.consent-checkboxes a.disabled {
  pointer-events: none;
}

.consent-checkboxes a.enabled:before {
  background-position: -17px 0;
}

@media screen and (max-width: 840px) {
  .consent-modal {
    margin: 0 auto;
  }
}

@media screen and (max-width: 560px) {
  .consent-modal-inner ul {
    display: block;
  }

  .consent-modal-inner ul li:first-child {
    margin: 0 0 10px 0;
  }

  .consent-btns a {
    display: block;
  }
}

@media screen and (max-width: 414px) {
  .consent-overlay {
    padding: 0 10px 10px 10px;
  }

  .consent-modal {
    margin: 0 auto;
  }
}

/* ------------------------------------------------ */
/*  !Formulare  */
/* ------------------------------------------------ */
fieldset {
  margin: 0 auto 40px auto;
  border: none;
  width: min(100%, 680px);
}

legend {
  color: var(--green-dark);
  font-size: var(--font-22);
  margin-bottom: 16px;
  font-weight: 900;
}

body.industrie legend {
  color: var(--blue-dark);
}

.content fieldset ul,
body.industrie .content fieldset ul {
  margin: 0;
}

.content fieldset ul li,
body.industrie .content fieldset ul li {
  background-image: none;
  padding: 0 0 8px 0;
}

fieldset label {
  display: block;
  font-size: var(--font-16);
  margin-bottom: 2px;
  color: hsl(0, 0%, 0%);
}

fieldset input[type="text"],
fieldset textarea,
fieldset input[type="number"] {
  font-size: var(--font-16);
  width: 100%;
  padding: 10px;
  border: 1px solid var(--green-dark);
  border-radius: var(--border-radius-4);
}

fieldset textarea {
  height: 160px;
}

body.industrie fieldset input[type="text"],
body.industrie fieldset textarea {
  border: 1px solid var(--blue-dark);
}

fieldset input:focus,
fieldset textarea:focus {
  background-color: var(--grey-light);
}

fieldset input[type="number"].short,
fieldset select.short {
  width: min(100%, 160px);
}

.form-flex {
  display: flex;
  justify-content: space-between;
}

.form-flex div {
  width: calc(50% - 12px);
}

/* File Input */
.file-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  border-radius: var(--border-radius-4);
  border: 1px solid var(--black);
  overflow: hidden;
  font-size: var(--font-16);
  padding: 16px 10px;
}

.file-wrapper::before {
  content: '';
  display: block;
  width: 31px;
  height: 24px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -230px -220px;
  margin-right: 8px;
}

body.industrie .file-wrapper::before {
  background-position: -160px -220px;
}

input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-wrapper:active {
  background-color: var(--grey-light);
}

/* Select */
fieldset .select-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: var(--font-16);
  width: calc(50% - 12px);
  overflow: hidden;
  border: 1px solid var(--green-dark);
  border-radius: var(--border-radius-4);
  padding: 16px;
}

body.industrie fieldset .select-wrapper {
  border-color: var(--blue-dark);
}

fieldset select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background-color: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 1;
  padding-left: 10px;
}

fieldset .select-wrapper::after {
  content: '';
  display: block;
  width: 5px;
  height: 8px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -230px -160px;
  transform: rotateZ(90deg);
}

fieldset ::placeholder {
  font-style: italic;
  opacity: .55;
}

.file-display.error {
  color: var(--error);
}

/* Form Errors */
.form-error {
  font-size: var(--font-14);
  color: var(--error);
  display: none;
  margin-bottom: 4px;
}

.form-error.active {
  display: block;
}

/* Notices Form */
#formdisplay {
  height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: var(--font-16);
  font-weight: 700;
  align-items: center;
  background-color: var(--grey-light);
  transition: opacity .2s .1s ease;
}

#formdisplay.active {
  height: auto;
  opacity: 1;
  display: flex;
  padding: 8px 16px;
  border-radius: var(--border-radius-4);
  border: 1px solid var(--grey);
}

#formdisplay::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 6px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -320px -220px;
}

#formdisplay.warning {
  color: var(--error);
}

#formdisplay.warning::before {
  width: 22px;
  height: 20px;
  background-position: -420px -220px;
}

#formdisplay.working {
  color: var(--success);
}

#formdisplay.working::before {
  width: 23px;
  height: 19px;
  background-position: -320px -220px;
  animation: rotateIcon 2s linear infinite;
}

#formdisplay.success {
  color: var(--success);
}

#formdisplay.success::before {
  width: 21px;
  height: 21px;
  background-position: -370px -220px;
}

/* Rotate Arrow */
@keyframes rotateIcon {
  0% {
    transform: rotateZ(0);
    transform-origin: center;
  }

  100% {
    transform: rotateZ(360deg);
  }
}

/* Textcounter */
.txtcounter {
  font-size: var(--font-14);
  color: darkred;
}

/* ------------------------------------------------ */
/*  !Grid Downloads  */
/* ------------------------------------------------ */
.grid-downloads {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 40px;
}

.grid-downloads .item {
  background-color: var(--grey-light);
  border-radius: var(--border-radius-8);
  border: 1px solid var(--grey);
  padding: 24px;
}

.grid-downloads figure {
  width: 160px;
  height: 228px;
  margin-bottom: 32px;
}

.content .grid-downloads figure img {
  border-radius: var(--border-radius-4);
  box-shadow: var(--shadow-black-small);
}

.grid-downloads h3,
body.industrie .grid-downloads h3 {
  color: var(--black);
  font-weight: 700;
  font-size: var(--font-20);
  margin-bottom: 8px;
  padding-top: 24px;
  border-top: 1px dashed var(--black);
}

.label-dl {
  font-size: var(--font-14);
  display: inline-block;
  padding: 4px 16px;
  background-color: var(--white);
  border-radius: var(--border-radius-4);
  border: 1px solid var(--grey);
}

.grid-downloads p:nth-child(4) {
  font-size: var(--font-16);
}

@media screen and (max-width: 1023px) {
  .grid-downloads {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .grid-downloads {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* ------------------------------------------------ */
/*  !News Section Homepage  */
/* ------------------------------------------------ */
.grid-news {
  grid-auto-flow: column;
  grid-auto-columns: minmax(auto, 1fr);
  column-gap: 40px;
}

.grid-news .item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--white);
  box-shadow: var(--shadow-green);
  border-radius: var(--border-radius-8);
}

.grid-news .item h2 {
  font-size: var(--font-20);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 24px;
}

/* Icon */
.center-news::before {
  content: '';
  display: block;
  width: 96px;
  height: 96px;
  margin-inline: auto;
  margin-bottom: 24px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -10px -720px;
}

/* Text */
.item-txt {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px;
}

/* Datum */
.grid-news .item-txt p:nth-child(1) {
  font-size: var(--font-16);
  color: var(--green-dark);
}

/* Absatz vor Button */
.grid-news .item-txt p:nth-child(3) {
  font-size: var(--font-17);
  margin-bottom: 56px;
}

/* Button */
.grid-news .item-txt p:nth-child(4) {
  margin: auto 0 0 0;
}

/* ------------------------------------------------ */
/*  !Aktuelles List  */
/* ------------------------------------------------ */
.grid-aktuell {
  gap: 40px;
}

.label-date {
  font-size: var(--font-14);
  display: inline-block;
  padding: 4px 16px;
  background-color: var(--grey-light);
  border-radius: var(--border-radius-4);
  border: 1px solid var(--grey);
}

.grid-aktuell .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--white);
  box-shadow: var(--shadow-green);
  border-radius: var(--border-radius-8);
  padding: 24px;
  min-width: 0;
}

.grid-aktuell p:nth-child(3) {
  font-size: var(--font-17);
}

.grid-aktuell p:nth-child(4) {
  margin: auto 0 16px 0;
}

.grid-aktuell h3 {
  font-weight: 800;
  font-size: var(--font-20);
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .grid-aktuell {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
    gap: 40px;
  }

  .grid-aktuell > :only-child {
    grid-column: 1 / span 2;
  }
}

/* ------------------------------------------------ */
/*  !Ticker Homepage  */
/* ------------------------------------------------ */
.ticker {
  position: relative;
  padding: 24px 0;
  background-image: linear-gradient(45deg, var(--green-dark) 40%, var(--green-medium));
  box-shadow: 0 1px 4px hsla(0, 0%, 0%, .3);
  z-index: 8;
}

.scroll-grid {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr;
}

.scroll-grid > a {
  display: inline-flex;
  align-items: center;
  align-self: center;
  padding: 4px 12px;
  border-radius: var(--border-radius-4);
  background-color: hsla(0, 0%, 100%, .15);
  margin: 0 4px 0 0;
}

.scroll-grid a {
  font-size: var(--font-16);
  color: var(--white);
}

.scroll-area {
  overflow: hidden;
}

.scroller {
  display: inline-flex;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  column-gap: 200px;
  /* Vor der initialen Transition ausblenden */
  visibility: hidden;
  /* Tickerspeed */
  animation-name: move;
  animation-delay: 1.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.article {
  white-space: nowrap;
}

.article a {
  display: inline-flex;
  align-items: center;
}

.article p {
  margin: 0;
}

@media screen and (min-width: 960px) {
  .scroller:hover {
    animation-play-state: paused;
  }
}

.article hr {
  border: none;
  display: block;
  width: 1px;
  height: 32px;
  background-color: hsla(0, 0%, 100%, 0.6);
  margin: 0 16px;
}

/* ------------------------------------------------ */
/*  !Accordion  */
/* ------------------------------------------------ */
#acc {
  margin-bottom: 40px;
  box-shadow: var(--bo)
}

#acc .item > a {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4px;
  border: 1px solid var(--grey);
  background-color: var(--grey-light);
  padding: 16px;
  text-decoration: none;
  line-height: 1;
}

#acc .item > a:is(:hover, .active) {
  background-color: var(--grey);
}

#acc .item > a.active {
  margin: 0;
}

#acc .item:first-child a {
  border-top-left-radius: var(--border-radius-8);
  border-top-right-radius: var(--border-radius-8);
}

#acc .item:last-child a {
  border-bottom-left-radius: var(--border-radius-8);
  border-bottom-right-radius: var(--border-radius-8);
}

#acc .item:last-child a.active {
  border-radius: 0;
}

#acc .item:last-child .acc-answer {
  border-bottom-left-radius: var(--border-radius-8);
  border-bottom-right-radius: var(--border-radius-8);
}

#acc .item > a h3 {
  color: var(--black);
  font-size: var(--font-18);
  font-weight: 600;
  margin: 0;
}

#acc .item > a::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('/assets/images/layout/sprites.svg');
  background-repeat: no-repeat;
  background-position: -690px -100px;
  flex-shrink: 0;
  margin: 4px 24px 0 0;
  transition: transform .2s ease-out;
}

#acc .item > a.active::before {
  transform: rotateZ(-45deg);
}

#acc .acc-answer {
  height: 0;
  overflow: hidden;
  transition: transform .2s .2s ease-in-out, opacity .2s .2s linear;
  opacity: 0;
  transform: translateY(-10px);
}

#acc .acc-answer.active {
  border: 1px solid var(--grey);
  border-top: none;
  overflow: visible;
  height: auto;
  padding: 16px;
  margin-bottom: 32px;
  opacity: 1;
  transform: translateY(0);
}

#acc .acc-answer a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--green-medium);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

@media screen and (min-width: 414px) {

  #acc .item > a,
  #acc .acc-answer.active {
    padding: 32px;
  }
}

/* ------------------------------------------------ */
/*  !Grid Homepage - V2  */
/* ------------------------------------------------ */
.grid-home-2 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 80px;
}

.grid-home-2 .item {
  display: flex;
  flex-direction: column;
}

.grid-home-2 .item figure {
  max-width: 84.84848484848484%;
  margin: 0 auto;
  overflow: hidden;
  border-top-left-radius: var(--border-radius-8);
  border-top-right-radius: var(--border-radius-8);
}

.grid-home-2 .item-inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px;
  background-color: var(--white);
  box-shadow: var(--shadow-green);
  border-radius: var(--border-radius-8);
}

@media screen and (min-width: 414px) {
  .grid-home-2 .item-inner {
    padding: 40px;
  }
}

@media screen and (min-width: 768px) {
  .grid-home-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .grid-home-2 {
    gap: 80px;
  }
}

/* Formatierung Text */
.grid-home-2 .item-inner p:first-child {
  margin-bottom: 24px;
}

.grid-home-2 .item-inner span {
  display: inline-block;
  font-size: var(--font-16);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  color: var(--black);
  background-color: var(--grey-light);
}

.grid-home-2 .item-inner h3 {
  margin-bottom: 24px;
}

.grid-home-2 .item-inner p:last-child {
  margin-top: auto;
}

/* Blaue Kachel */
.grid-home-2 .item-inner.industrie {
  box-shadow: var(--shadow-blue);
}

.grid-home-2 .item-inner.industrie p:first-child {
  color: var(--blue-dark);
}

.grid-home-2 .item-inner.industrie h3 {
  color: var(--blue-dark);
}

.indent-color {
  display: flex;
  font-weight: 700;
}

.indent {
  padding-left: 34px;
}

.indent-color::before {
  content: '';
  display: block;
  width: 8px;
  border-radius: 5px;
  background-color: var(--green-dark);
  margin-right: 24px;
  flex-shrink: 0;
}

.industrie .indent-color:before {
  background-color: var(--blue-dark);
}

@media screen and (max-width: 414px) {
  .indent {
    padding-left: 0;
  }

  .indent-color {
    display: block;
  }

  .indent-color:before {
    display: none;
  }
}

/* ------------------------------------------------ */
/*  !Home - Energietipps Haus  */
/* ------------------------------------------------ */
#energietipps {
  background-color: #F8FBF7;
  padding: 120px 0;
}

#energietipps img {
  max-width: 84.84848484848484%;
  margin: 0 auto;
  overflow: hidden;
  border-top-left-radius: var(--border-radius-8);
  border-top-right-radius: var(--border-radius-8);
}

#energietipps .txt {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px;
  background-color: var(--white);
  box-shadow: var(--shadow-green);
  border-radius: var(--border-radius-8);
}

#energietipps h3 {
  margin-bottom: 24px;
}

@media screen and (min-width: 414px) {
  #energietipps .txt {
    padding: 40px;
  }
}

@media screen and (min-width: 768px) {
  .grid-home-tipps {
    grid-template-columns: 1fr 1fr;
  }

  #energietipps picture {
    display: flex;
    align-items: center;
  }

  #energietipps picture {
    height: 100%;
  }

  #energietipps img {
    aspect-ratio: 2 / 1.125;
    object-fit: cover;
    object-position: center;
    height: 84.84848484848484%;
    max-width: 100%;
    margin: auto 0;
    overflow: hidden;
    border-radius: 0;
    border-top-left-radius: var(--border-radius-8);
    border-bottom-left-radius: var(--border-radius-8);
  }
}

/* ------------------------------------------------ */
/*  !Blog Home  */
/* ------------------------------------------------ */
#blog {
  max-width: 1480px;
  margin-inline: auto;
}

.grid-blog {
  --scroller-gap: 24px;
  grid-auto-flow: column;
  grid-auto-columns: 90%;
  column-gap: var(--scroller-gap);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--scroller-gap);
  padding: 0 var(--scroller-gap);
  scrollbar-width: none;
  /* Firefox */
}

.grid-blog::-webkit-scrollbar {
  width: 0 !important
}

.grid-blog > * {
  scroll-snap-align: start;
}

.grid-blog .item {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.grid-blog .item figure {
  max-width: 84.84848484848484%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--border-radius-8);
  z-index: 1;
}

.grid-blog .item-inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: var(--white);
  box-shadow: var(--shadow-green);
  border-radius: var(--border-radius-8);
  z-index: 0;
  padding: 24px;
  margin-top: -80px;
  padding-top: 120px;
}

.grid-blog .label-date {
  max-width: max-content;
}

.grid-blog h3 {
  margin-bottom: 16px;
}

.grid-blog p:last-child {
  margin-top: auto;
}

@media screen and (min-width: 414px) {
  .grid-blog {
    --scroller-gap: 40px;
  }

  .grid-blog .item-inner {
    padding: 40px;
    padding-top: 120px;
  }
}

@media screen and (min-width: 768px) {
  .grid-blog {
    grid-auto-columns: 43%;
  }
}

@media screen and (min-width: 1024px) {
  .grid-blog {
    grid-auto-columns: initial;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ------------------------------------------------ */
/*  !SEO-Text - Home  */
/* ------------------------------------------------ */
.col-txt {
  column-count: 1;
  column-gap: 80px;
  column-rule-style: solid;
  column-rule-width: 1px;
  column-rule-color: var(--grey);
}

.col-txt h2,
.col-txt h3 {
  font-size: var(--font-22);
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .col-txt {
    column-count: 2;
  }

  @media screen and (min-width: 1280px) {
    .col-txt {
      column-count: 3;
    }