:root {
  --primary: #dc001e;
  --primary-trans: rgba(220, 0, 30, 0.63);
  --secondary: #ffad17;
  --background-grey: #595959;
  --background-grey-light: #6c6c6c;
  --background-grey-lighter: #808080;
  --background-grey-trans: rgba(89,89,89,0.63);
  --background-light-grey: #dfdfdf;
  --background-light-grey-focus: #C8C8C8FF;
  --background-lightest-grey: #EAEAEAFF;
  --text-color: #333333;
  --max-width: 900px;
}

/* Fonts */
/* roboto-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/roboto-v32-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v32-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/roboto-v32-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v32-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v32-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-condensed-v27-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-condensed-v27-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* Box model reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* Set up a consistent line height */
body {
  line-height: 1.5;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  font-weight: normal;
}

/* Remove default list styles */
ul,
ol,
dl {
  list-style: none;
}

/* Remove default table styles */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove default image styles */
img {
  border: none;
  max-width: 100%;
  height: auto;
}

/* Set up a consistent outline */
*:focus, *:active {
  outline: none;
}

svg {
  focusable: "false";
}

/* Set up a consistent scroll behavior */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: var(--textColor);
  min-height: 100vh;
  background-color: #FBFBFB;
}

header {
  background-color: var(--primary);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
}

.header-inner-wrapper {
  color: white;
  max-width: var(--max-width);
  width: 100%;
  height: 75px;
  padding: 1rem 1rem 1rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#logo-wrapper {
  width: 270px;
}

/*##################################### Header Ende ############################################ */
#scroll-top {
  position: fixed;
  bottom: 250px;
  right: 1rem;
  z-index: 10;
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 1;
  opacity: 0.7;
  cursor: pointer;
  background-color: var(--primary);
  border: 1px solid white;
}
#scroll-top svg {
  fill: white;
}

#scroll-top.hidden {
  display: none;
}

#scroll-top.transition.hidden {
  opacity: 0;
}

#scroll-top.transition {
  transition: opacity 300ms ease;
  display: block;
}

#scroll-top:hover {
  opacity: 1;
}

#scroll-top a {
  width: 100%;
  height: 100%;
  color: var(--textColour);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
footer {
  background-color: var(--primary);
}
footer .footer-inner-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer li {
  padding: 0.5rem 0;
}
footer a {
  color: white;
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: all 300ms ease-in;
}
footer a:hover, footer a.current {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
footer a:focus {
  outline: 2px solid var(--text-color);
  outline-offset: 2px;
}
footer a:active {
  outline: 2px solid var(--text-color);
  outline-offset: 2px;
}

.foerder-inner, .kooperation-inner {
  max-width: var(--max-width);
  margin: 0 auto 2rem;
  padding: 0 1rem;
}
.foerder-inner p, .kooperation-inner p {
  margin: 1rem 0;
}
.foerder-inner .logos, .kooperation-inner .logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.menu-text {
  display: block;
  font-size: 0.9rem;
}

.main-menu-btn {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  right: 0;
  top: auto;
  margin: 0 0;
  text-indent: 48px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.main-menu-burger-icon, .main-menu-burger-icon::before, .main-menu-burger-icon::after {
  position: absolute;
  top: 50%;
  left: 2px;
  height: 3px;
  width: 38px;
  background: white;
  transition-duration: 0.2s;
  transition-delay: 0.2s;
}

.main-menu-btn:hover .main-menu-burger-icon, .main-menu-btn:hover .main-menu-burger-icon::before, .main-menu-btn:hover .main-menu-burger-icon::after {
  background: white;
}

.main-menu-burger-icon {
  transition-property: background, height;
}

.main-menu-burger-icon::before {
  content: "";
  top: -13px;
  left: 0;
}

.main-menu-burger-icon::after {
  content: "";
  top: 13px;
  left: 0;
}

.main-menu-burger-icon::before, .main-menu-burger-icon::after {
  transition-property: top, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-burger-icon {
  height: 0;
  background: transparent;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-burger-icon::before {
  top: 0;
  transform: rotate(-45deg);
  transition-delay: 0.1s;
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-burger-icon::after {
  top: 0;
  transform: rotate(45deg);
  transition-delay: 0.1s;
}

#main-menu-state:not(:checked) ~ #mainMenu {
  max-height: 0;
  height: 0;
  display: none;
  overflow: hidden;
  transition: max-height 300ms ease-in-out;
  transition-delay: 0.2s;
}

#main-menu-state:checked ~ #mainMenu {
  position: fixed;
  z-index: 11;
  left: 0;
  right: 0;
  top: 70px;
  bottom: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow-y: auto;
  background-color: var(--background-grey);
  color: #ffffff;
  opacity: 1;
  visibility: visible;
  transition: opacity ease-in-out 0.4s, height ease-in-out 0.4s;
}

.js .menu-checkbox,
.js .menu-button {
  display: none;
}

#mainNav {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#mainNav li {
  padding: 0.3rem 0;
}
#mainNav li.not-path {
  border: 1px dashed var(--background-light-grey);
  background-color: var(--background-grey-light);
  padding: 0;
  position: relative;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  /*  &:before{
      content: "";
      display: inline-block;
      width: 16px;
      height: 16px;
      background-color: var(--background-light-grey); !*  color for the mask *!
      mask: url('/assets/iconmonstr-arrow-21.svg') no-repeat center center;
      -webkit-mask: url('/assets/iconmonstr-arrow-21.svg') no-repeat center center; !* For Safari *!
      mask-size: 16px 16px;
      -webkit-mask-size: 16px 16px;
      position: absolute;
      left: 2.2rem;
      top: 50%;
      transform: translateY(-50%);
    }*/
}
#mainNav li.not-path .section-headline {
  padding: 0.5rem 1rem;
  display: block;
  background-color: var(--background-grey);
}
#mainNav li.not-path a {
  padding-left: 0;
  color: white;
}
#mainNav li.not-path ul a {
  padding-left: 1rem;
}
#mainNav a:link, #mainNav a:visited {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  padding: 0.3rem 1rem 0.5rem 1rem;
  display: inline-block;
}
#mainNav a:hover, #mainNav a:active, #mainNav a:focus, #mainNav a.current-link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

main {
  position: relative;
  max-width: var(--max-width);
  margin: 75px auto 2rem;
  padding: 4rem 1rem;
  /* Typo und Styling */
  /* Form */
}
main .info-block {
  padding: 1rem;
  background-color: var(--background-lightest-grey);
  border: 1px solid var(--primary);
}
main #nextDateWrapper {
  display: flex;
  gap: 0.5rem;
  justify-content: start;
  align-items: flex-start;
}
main .icon-wrapper {
  width: 24px;
  height: 24px;
}
main #nextDate {
  font-weight: 500;
}
main #nextDrawingDateWrapper {
  padding: 1rem;
  background-color: var(--background-lightest-grey);
  display: flex;
  gap: 0.5rem;
  justify-content: start;
  align-items: flex-start;
}
main .two-columns-block-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
main .two-columns-block-wrapper.image-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
main h1 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}
main h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
}
main p + h2 {
  margin-top: 2rem;
}
main h3 {
  font-size: clamp(1.3rem, 1.5vw, 1.5811rem);
  color: var(--textColor);
  font-weight: 400;
  line-height: 1.3;
}
main .text-column h3 {
  margin-top: 1em;
  margin-bottom: 0.25em;
}
main .text-column > h3:first-child {
  margin-top: 0;
  margin-bottom: 0.25em;
}
main h4 {
  font-size: clamp(1rem, 1.25vw, 1.2574rem);
  font-weight: 500;
  line-height: 1.3;
}
main small {
  font-size: 0.7953em;
}
main p {
  font-size: 1.1rem;
  line-height: 1.6;
  hyphens: auto;
}
main p.einzug {
  text-indent: 3em;
}
main a {
  color: var(--text-color);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: all 300ms ease-in;
}
main a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 3px;
}
main a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
main a:active {
  color: var(--primary);
}
main ul {
  list-style-type: disc;
  padding-left: 1rem;
}
main ol {
  list-style-type: decimal;
  padding-left: 1rem;
}
main li {
  font-size: 1.1rem;
  line-height: 1.6;
}
main img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
}
main section + section {
  margin-top: 3rem;
}
main section + div {
  margin-top: 3rem;
}
main .track-section {
  background-color: white;
  transition: background-color 0.5s ease-in-out;
}
main .track-section.active {
  background-color: #ffad17;
}
main p:has(a.other-page-link), main p:has(a.external-link) {
  margin: 1rem 0;
}
main div:has(a.path-link) {
  margin: 3rem 0;
}
main a.path-link {
  position: relative;
  display: inline-block;
  text-decoration: underline;
  color: var(--text-color);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 20px;
  background-color: var(--background-light-grey);
  padding: 0.5rem 32px 0.5rem 1rem;
  margin: 0;
}
main a.path-link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--text-color); /* Set color for the mask */
  mask: url("/assets/iconmonstr-arrow-31.svg") no-repeat center center;
  -webkit-mask: url("/assets/iconmonstr-arrow-31.svg") no-repeat center center; /* For Safari */
  mask-size: 16px 16px;
  -webkit-mask-size: 16px 16px;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}
main a.path-link:hover {
  background-color: var(--background-light-grey-focus);
}
main a.other-page-link, main a.external-link {
  position: relative;
  display: inline-block;
  text-decoration: underline;
  color: var(--text-color);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 20px;
  background-color: var(--background-light-grey);
  padding: 0.5rem 30px 0.5rem 1rem;
  margin: 0;
}
main a.other-page-link:hover, main a.external-link:hover {
  background-color: var(--background-light-grey-focus);
}
main a.other-page-link::after {
  content: ""; /* Required for the pseudo-element */
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--text-color); /* Set color for the mask */
  mask: url("/assets/iconmonstr-link-1.svg") no-repeat center center;
  -webkit-mask: url("/assets/iconmonstr-link-1.svg") no-repeat center center; /* For Safari */
  mask-size: 16px 16px;
  -webkit-mask-size: 16px 16px;
  position: absolute;
  right: 0.5rem; /* Adjust to align properly with the link */
  top: 50%;
  transform: translateY(-50%);
}
main a.external-link::after {
  content: ""; /* Required for the pseudo-element */
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--text-color); /* Set color for the mask */
  mask: url("/assets/iconmonstr-share-11.svg") no-repeat center center;
  -webkit-mask: url("/assets/iconmonstr-share-11.svg") no-repeat center center; /* For Safari */
  mask-size: 16px 16px;
  -webkit-mask-size: 16px 16px;
  position: absolute;
  right: 0.5rem; /* Adjust to align properly with the link */
  top: 50%;
  transform: translateY(-50%);
}
main a.intext {
  padding: 0 30px 0.1rem 0.5rem;
  font-size: 1.125rem;
}
main #trackNav {
  height: 80px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: blueviolet;
  position: sticky;
  bottom: 0;
}
main figcaption, main .bildunterzeile {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.2rem;
  padding-top: 0.5rem;
}
main .bild-im-text-links, main img.bild-im-text-links {
  float: left;
  margin: 1rem 1rem 1rem 0;
}
main .bild-im-text-rechts, main img.bild-im-text-rechts {
  float: right;
  margin: 1rem 0 1rem 1rem;
}
main form fieldset {
  border: none;
  padding-bottom: 2rem;
}
main form fieldset div {
  margin-bottom: 1rem;
}
main form legend {
  font-size: clamp(1.3rem, 1.5vw, 1.5811rem);
}
main form label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}
main form label.inline {
  display: inline;
}
main form input[type=text], main form input[type=email] {
  font-size: 1rem;
  padding: 0.5rem;
  width: 100%;
}
main form textarea {
  display: block;
  width: 100%;
  height: 10rem;
}
main form .two-columns {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
main form .wide-two-columns {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
main form .display {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 1px;
  width: 1px;
  overflow: hidden;
  visibility: hidden;
}
main form button.external-link {
  position: relative;
  display: inline-block;
  text-decoration: underline;
  color: var(--text-color);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: 20px;
  background-color: var(--background-light-grey);
  padding: 0.5rem 30px 0.5rem 1rem;
  margin: 0;
  cursor: pointer;
  border: none;
  transition: background-color 300ms ease-in-out;
}
main form button.external-link:hover {
  background-color: var(--background-light-grey-focus);
}
main form button.external-link::after {
  content: ""; /* Required for the pseudo-element */
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--text-color); /* Set color for the mask */
  mask: url("/assets/iconmonstr-share-11.svg") no-repeat center center;
  -webkit-mask: url("/assets/iconmonstr-share-11.svg") no-repeat center center; /* For Safari */
  mask-size: 16px 16px;
  -webkit-mask-size: 16px 16px;
  position: absolute;
  right: 0.5rem; /* Adjust to align properly with the link */
  top: 50%;
  transform: translateY(-50%);
}

a.glightbox {
  width: auto;
}

/* Convenience classes */
.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

/* Media Queries */
@media (min-width: 600px) {
  main p {
    line-height: 1.7;
  }
  main p.flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  main .two-columns-block-wrapper, main .two-columns-block-wrapper.image-text {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2rem;
  }
  main .two-columns-block-wrapper > div, main .two-columns-block-wrapper.image-text > div {
    flex: 1;
    flex-shrink: 0;
    width: 50%;
  }
  main form .two-columns {
    display: flex;
    gap: 3rem;
    flex-direction: row;
    justify-content: flex-start;
  }
  main form .wide-two-columns {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    flex-direction: row;
  }
  main form .wide-two-columns > div {
    width: calc(50% - 0.5rem);
  }
  main form .wide-half-width {
    width: calc(50% - 0.5rem);
  }
}

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