@charset "UTF-8";
:root {
  --primary: #cd1719;
  --secondary: #1C275B;
  --black: #000000;
  --white: white;
  --light: #f8f9fa;
  --dark: #212529;
  --colorBg: white;
  --colorBgGrey: #EBEBEB;
  /*type */
  --text-base-size: 1rem;
  --maxWidth: 1280px;
  --navBreakPoint: 700px;
}

.test {
  font-size: var(--text-md);
}

/*titillium-web-300 - latin */
@font-face {
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 300;
  src: local(""), url("../Fonts/titillium-web-v10-latin-300.woff2") format("woff2"), url("../Fonts/titillium-web-v10-latin-300.woff") format("woff");
  /*Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/*titillium-web-regular - latin */
@font-face {
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../Fonts/titillium-web-v10-latin-regular.woff2") format("woff2"), url("../Fonts/titillium-web-v10-latin-regular.woff") format("woff");
  /*Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/*titillium-web-600 - latin */
@font-face {
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("../Fonts/titillium-web-v10-latin-600.woff2") format("woff2"), url("../Fonts/titillium-web-v10-latin-600.woff") format("woff");
  /*Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/*titillium-web-700 - latin */
@font-face {
  font-family: "Titillium Web";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../Fonts/titillium-web-v10-latin-700.woff2") format("woff2"), url("../Fonts/titillium-web-v10-latin-700.woff") format("woff");
  /*Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* By Andy Bell - https://piccalil.li/blog/a-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*Utilities */
.flex {
  display: flex;
  gap: var(--gap, 1rem);
}

.flex-wide {
  display: flex;
  gap: var(--gap, 1rem);
  justify-content: space-between;
}

.grid {
  display: grid;
  gap: var(--gap, 1rem);
}

.maxWidth {
  max-width: var(--maxWidth);
  margin: 0 auto;
  padding: 0 2rem;
}

.randUnten {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--secondary);
}

.boxLayout-2spaltig, .contentBlock {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(1, minmax(300px, 1fr));
}

.sr-only {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  white-space: nowrap;
}

.rot {
  color: #cd1719;
}

@media screen and (min-width: 650px) {
  .boxLayout-2spaltig {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
  }
}
@media screen and (min-width: 900px) {
  .zweiSpalten {
    column-count: 2;
  }
}
h1 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
}

h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1rem 0 0.75rem;
}

p, li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

h1 + p, h1 + div {
  margin-top: 1rem;
}

h2 + p {
  margin-top: 0.8rem;
}

span.backendComment {
  color: var(--primary);
}

main a:link, main a:visited {
  color: var(--secondary);
  text-decoration: underline;
}
main a:hover, main a:active, main a:focus {
  color: var(--primary);
  text-decoration: none;
}
main h2 {
  position: relative;
}
main h2 a:link, main h2 a:visited {
  color: var(--secondary);
  text-decoration: none;
}
main h2 a:link::after, main h2 a:visited::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  height: 3px;
  width: 0;
  background-color: var(--primary);
  transition: width 300ms;
}
main h2 a:hover, main h2 a:active, main h2 a:focus {
  color: var(--primary);
}
main h2 a:hover::after, main h2 a:active::after, main h2 a:focus::after {
  width: 20%;
}

hr {
  border: none;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(28, 39, 91, 0.5), rgba(0, 0, 0, 0));
  width: 70%;
  margin: 1em auto;
  height: 1px;
}

body, html {
  min-height: 100vh;
  font-family: "Titillium web", sans-serif;
  font-size: var(--text-base-size);
}

/*Layout */
#headerTop {
  margin: 2rem auto 4rem;
  display: flex;
  flex-direction: column;
}

#logo {
  width: 80%;
  margin-bottom: 1rem;
}

#main {
  padding-bottom: 4rem;
}

.footerWrapper {
  background-color: var(--colorBgGrey);
  padding: 1rem 0;
}

footer {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}
footer #copyright {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 2.2;
  color: var(--secondary);
}

/* Special elements homepage */
.teaserIconWrapper {
  margin: 2rem 0;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
}

.teaserIconWrapper > div {
  background-color: var(--colorBgGrey);
  transition: background-color 300ms;
  padding: 2rem 1rem 1rem;
  aspect-ratio: 1;
}
.teaserIconWrapper > div a:link, .teaserIconWrapper > div a:visited {
  text-decoration: none;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.teaserIconWrapper > div svg {
  flex: 0 1 auto;
  width: 50%;
  fill: var(--primary);
}
.teaserIconWrapper > div svg.sm {
  width: 22%;
}
.teaserIconWrapper > div svg.lg {
  width: 60%;
}
.teaserIconWrapper > div:hover {
  background-color: var(--secondary);
}
.teaserIconWrapper > div:hover a:link, .teaserIconWrapper > div:hover a:visited {
  color: white;
}
.teaserIconWrapper > div:hover svg {
  fill: white;
}

/* Contentblock layout */
.contentBlock {
  margin-top: 2rem;
}
.contentBlock h2 {
  border-bottom: 2px solid var(--primary);
}

/* Linkblöcke */
.linkBlock {
  display: flex;
  column-gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--secondary);
}

.linkTargetInfo {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
}

.linkedText {
  margin-bottom: 1rem;
}
.linkedText a:link, .linkedText a:visited, .linkedText a:link p, .linkedText a:visited p {
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: bold;
  position: relative;
}
.linkedText a:link::after, .linkedText a:visited::after, .linkedText a:link p::after, .linkedText a:visited p::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  height: 3px;
  width: 0;
  background-color: var(--secondary);
  transition: width 300ms;
}
.linkedText a:hover, .linkedText a:active, .linkedText a:focus, .linkedText a:hover p, .linkedText a:active p, .linkedText a:focus p {
  color: var(--primary);
}
.linkedText a:hover::after, .linkedText a:active::after, .linkedText a:focus::after, .linkedText a:hover p::after, .linkedText a:active p::after, .linkedText a:focus p::after {
  width: 20%;
  background-color: var(--primary);
}

/* Format abschnitt for sections */
section {
  margin-bottom: 2rem;
}

.abschnitt {
  padding: 1rem 0 1rem;
  margin: 0 0 1rem;
  border-bottom: 2px solid var(--secondary);
}

/* Scrolltop */
#scrollTop {
  position: fixed;
  bottom: 25px;
  right: 1rem;
  background-color: rgba(28, 39, 91, 0.5);
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 1;
  z-index: 2100;
}

#scrollTop.hidden {
  display: none;
}

#scrollTop svg {
  width: 25px;
  height: auto;
}
#scrollTop svg path {
  fill: var(--light);
}

#scrollTop:hover {
  background-color: #1c275b;
}
#scrollTop:hover path {
  fill: white;
}

#scrollTop a {
  text-decoration: none;
  border-bottom: none;
  font-size: 2rem;
}

#scrollTop a:hover, #scrollTop a:focus, #scrollTop a:active {
  color: #ffffff;
}

@media screen and (min-width: 450px) {
  .teaserIconWrapper {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }
}
@media screen and (min-width: 650px) {
  #headerTop {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  #logo {
    width: 40%;
    margin-right: 2rem;
    margin-bottom: 0;
  }

  nav {
    width: 50%;
    padding-bottom: 0.5rem;
  }

  .teaserIconWrapper {
    grid-template-columns: repeat(4, minmax(100px, 1fr));
  }

  footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 0;
  }
}
@media screen and (min-width: 980px) {
  .teaserIconWrapper {
    grid-template-columns: repeat(6, minmax(100px, 1fr));
  }
}
/*Nav */
/* Togglebutton*/
.mobileNavToggle {
  position: absolute;
  background: transparent;
  border: none;
  width: 40px;
  aspect-ratio: 1;
  top: 40px;
  right: 40px;
  z-index: 9000;
  cursor: pointer;
}

.menuTextLabel {
  position: relative;
  top: -15px;
  left: 8px;
}

.mainNavIcon, .mainNavIcon::before, .mainNavIcon::after {
  position: absolute;
  top: 50%;
  right: 0;
  height: 2px;
  width: 30px;
  background: var(--secondary);
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.mainNavIcon:hover, .mainNavIcon::before:hover, .mainNavIcon::after:hover {
  background-color: var(--primary);
}

.mainNavIcon::before {
  content: "";
  top: -8px;
  left: 0;
}

.mainNavIcon::after {
  content: "";
  top: 8px;
  left: 0;
}

.menuOpen .mainNavIcon {
  height: 0;
}
.menuOpen .mainNavIcon::before {
  content: "";
  top: 0;
  left: 0;
  transform: rotate(45deg);
}
.menuOpen .mainNavIcon::after {
  content: "";
  top: 0;
  left: 0;
  transform: rotate(-45deg);
}

/* End Togglebutton */
/* Navigation starts here*/
#mainNavWrapper {
  position: absolute;
  z-index: 1000;
  width: min(350px, 100vw);
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  background-color: transparent;
  transition: all 300ms ease-in-out;
  padding: min(20vh, 5rem) 2rem;
}

#menuToggle:checked ~ #mainNavWrapper {
  right: 0;
  opacity: 1;
  max-height: 800px;
  overflow: visible;
}

#mainNavigation {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
#mainNavigation li {
  position: relative;
}
#mainNavigation a:link, #mainNavigation a:visited {
  position: relative;
  display: block;
  font-size: clamp(1rem, 0.9022rem + 0.4348vw, 1.25rem);
  text-decoration: none;
  color: #fff;
  background-color: var(--primary);
  transition: background-color 200ms;
  font-weight: bold;
  padding: 4px 1rem;
  line-height: 1.8;
}
#mainNavigation a:hover, #mainNavigation a:active, #mainNavigation a:focus, #mainNavigation li.active a {
  background-color: var(--secondary);
}

#mainNavigation .parent > a .subSwitch {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  left: auto;
  right: 4px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  font: bold 1.4rem/30px monospace !important;
  text-align: center;
  text-shadow: none;
  background: rgba(247, 247, 247, 0.5);
  border-radius: 3px;
}

#mainNavigation .parent > a .subSwitch::after {
  content: "+";
}

#mainNavigation .parent.show > a .subSwitch::after {
  content: "-";
}

#mainNavigation .subnav {
  background-color: var(--primary);
  list-style: none;
  margin: 0;
  padding: 0 0 0 2rem;
  position: static;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.6s ease-in-out 0.15s;
  -moz-transition: all 0.6s ease-in-out 0.15s;
  -o-transition: all 0.6s ease-in-out 0.15s;
  transition: all 0.6s ease-in-out 0.15s;
}
#mainNavigation .subnav a:link, #mainNavigation .subnav a:visited {
  display: block;
  font-size: clamp(0.9rem, 0.9022rem + 0.4348vw, 1.1rem);
  text-decoration: none;
  color: #fff;
  background-color: var(--primary);
  transition: background-color 200ms;
  font-weight: bold;
  padding: 4px 1rem;
}
#mainNavigation .subnav a:hover, #mainNavigation .subnav a:active, #mainNavigation .subnav a:focus, #mainNavigation .subnav li.active a, #mainNavigation .subnav a.active {
  background-color: var(--secondary);
}

#mainNavigation .subnav.open {
  max-height: 100vh;
}

@media (min-width: 2000px) {
  #mainNavigation {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
  }
  #mainNavigation li {
    position: relative;
  }
  #mainNavigation a:link, #mainNavigation a:visited {
    font-size: clamp(1rem, 0.9022rem + 0.4348vw, 1.25rem);
    text-decoration: none;
    color: #fff;
    background-color: var(--primary);
    transition: background-color 200ms;
    font-weight: bold;
    padding: 2px 1rem;
  }
  #mainNavigation a:hover, #mainNavigation a:active, #mainNavigation a:focus, #mainNavigation li.active a {
    background-color: var(--secondary);
  }

  #mainNavigation .subnav {
    background-color: var(--primary);
    list-style: none;
    margin: 0;
    padding: 1rem 0;
    position: absolute;
    left: -50%;
    visibility: hidden;
    display: flex;
    flex-direction: column;
  }
  #mainNavigation .subnav li {
    white-space: nowrap;
  }
  #mainNavigation .subnav a:link, #mainNavigation .subnav a:visited {
    display: block;
    font-size: clamp(0.9rem, 0.9022rem + 0.4348vw, 1.1rem);
    text-decoration: none;
    color: #fff;
    background-color: var(--primary);
    transition: background-color 200ms;
    font-weight: bold;
    padding: 4px 1rem;
  }
  #mainNavigation .subnav a:hover, #mainNavigation .subnav a:active, #mainNavigation .subnav a:focus, #mainNavigation .subnav li.active a, #mainNavigation .subnav a.active {
    background-color: var(--secondary);
  }

  .noscript #mainNavigation .parent:hover .subnav {
    opacity: 1;
    visibility: visible;
  }

  #main-menu-state {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }

  .main-menu-btn {
    position: relative;
    display: block;
    width: 28px;
    height: 36px;
    top: auto;
    margin: 0 0 0 0;
    text-indent: 28px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
}
@media (min-width: 500px) {
  #mainNavigation .subnav {
    left: auto;
  }
}
#footerNav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#footerNav li {
  display: inline-block;
}
#footerNav a:link, #footerNav a:visited {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 700;
}

#subNav {
  list-style-type: none;
  margin: 0;
  padding: 0 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 2rem;
  border-left: 2px solid var(--primary);
}
#subNav a {
  text-decoration: none;
  position: relative;
  font-size: 0.9rem;
}
#subNav a:link::after, #subNav a:visited::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  height: 3px;
  width: 0;
  background-color: var(--secondary);
  transition: width 300ms;
}
#subNav a:hover::after, #subNav a:active::after, #subNav a:focus::after {
  width: 100%;
  background-color: var(--primary);
}
#subNav li.active a {
  color: var(--primary);
  font-weight: bold;
}

/*# sourceMappingURL=styles.css.map */
