@charset "UTF-8";
@media (min-width: 992px) {
  :root {
    --inhalt-einzug: 40px;
  }
  body {
    background: linear-gradient(to right, var(--color-grau) 0, var(--color-grau) calc((100% - 40px) * 0.375 + 20px), var(--color-weiss) calc((100% - 40px) * 0.375 + 20px), var(--color-weiss) 100%);
    background-attachment: fixed;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: calc(1680px + 2 * var(--box-rand));
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px;
    padding-left: var(--box-rand);
  }
  header > div {
    width: 37.5%;
    padding-left: var(--inhalt-einzug);
    padding-right: 12px;
  }
  header nav {
    width: 62.5%;
    padding-left: 20px;
    padding-right: 50px;
  }
  img.logo {
    width: 100%;
    max-width: 380px;
    height: auto;
  }
  h1 {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    font-size: 3.3rem;
    line-height: 100%;
    text-transform: uppercase;
  }
  h2 {
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    font-size: 2.5rem;
    line-height: 110%;
    text-transform: uppercase;
  }
  /** nav: Reset für Desktop **/
  header {
    padding-right: 0;
  }
  .nav-icon,
  .nav-icon--active {
    display: none !important;
  }
  nav {
    position: static;
    width: auto;
    height: auto;
    z-index: auto;
    padding: 0;
    overflow: visible;
    background-color: transparent;
  }
  nav > ul {
    display: flex;
  }
  nav .logo {
    display: none;
  }
  nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  #nav > li {
    position: relative;
  }
  #nav {
    column-gap: 12px;
    flex-wrap: wrap;
    row-gap: 6px;
  }
  #nav > li:last-child {
    transform: translateY(6px);
    height: 45px;
    z-index: 200;
  }
  nav ul li a {
    font-size: clamp(13px, 1.42vw, 19px);
    font-weight: 800;
    color: var(--color-schwarz);
    text-decoration: none;
  }
  #nav li .subnav {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 250px;
    z-index: 1000;
  }
  #nav li .subnav::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 20px;
  }
  #nav li:hover .subnav {
    display: block;
  }
  ul.subnav {
    padding: 30px 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
  }
  ul.subnav::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 10px solid var(--color-dunkelviolett);
  }
  #nav > li:nth-child(1) .subnav,
  #nav > li:nth-child(2) .subnav {
    background-color: var(--color-dunkelviolett);
  }
  #nav > li:nth-child(1) .subnav::before,
  #nav > li:nth-child(2) .subnav::before {
    border-bottom-color: var(--color-dunkelviolett);
  }
  #nav > li:nth-child(3) .subnav,
  #nav > li:nth-child(4) .subnav {
    background-color: var(--color-dunkelgruen);
  }
  #nav > li:nth-child(3) .subnav::before,
  #nav > li:nth-child(4) .subnav::before {
    border-bottom-color: var(--color-dunkelgruen);
  }
  #nav > li:nth-child(5) .subnav,
  #nav > li:nth-child(6) .subnav {
    background-color: var(--color-dunkelblau);
  }
  #nav > li:nth-child(5) .subnav::before,
  #nav > li:nth-child(6) .subnav::before {
    border-bottom-color: var(--color-dunkelblau);
  }
  #nav li .subnav {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  #nav li:hover .subnav {
    opacity: 1;
    visibility: visible;
  }
  #nav li .subnav li {
    margin: 10px 0;
  }
  #nav li .subnav a {
    font-size: 16px;
    color: var(--color-weiss);
    display: block;
    padding: 5px 10px;
    transition: color 0.3s ease;
  }
  #nav > li:nth-child(1) .subnav a:hover,
  #nav > li:nth-child(2) .subnav a:hover {
    color: var(--color-hellviolett);
  }
  #nav > li:nth-child(3) .subnav a:hover,
  #nav > li:nth-child(4) .subnav a:hover {
    color: var(--color-hellgruen);
  }
  #nav > li:nth-child(5) .subnav a:hover,
  #nav > li:nth-child(6) .subnav a:hover {
    color: var(--color-hellblau);
  }
  #nav > li:nth-child(1) > a.navSel,
  #nav > li:nth-child(2) > a.navSel {
    color: var(--color-dunkelviolett);
  }
  #nav > li:nth-child(3) > a.navSel,
  #nav > li:nth-child(4) > a.navSel {
    color: var(--color-dunkelgruen);
  }
  #nav > li:nth-child(5) > a.navSel,
  #nav > li:nth-child(6) > a.navSel {
    color: var(--color-dunkelblau);
  }
  #nav > li:nth-child(1) .subnav a.subnavSel,
  #nav > li:nth-child(2) .subnav a.subnavSel {
    color: var(--color-hellviolett);
  }
  #nav > li:nth-child(3) .subnav a.subnavSel,
  #nav > li:nth-child(4) .subnav a.subnavSel {
    color: var(--color-hellgruen);
  }
  #nav > li:nth-child(5) .subnav a.subnavSel,
  #nav > li:nth-child(6) .subnav a.subnavSel {
    color: var(--color-hellblau);
  }
  div.sprache {
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid var(--color-schwarz);
    border-radius: 4px;
    width: 45px;
    height: 45px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: height 0.3s ease;
    cursor: pointer;
    z-index: 100;
  }
  div.sprache:hover {
    height: 135px;
  }
  div.sprache a.sprache {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    flex-shrink: 0;
    font-size: 19px;
    font-weight: 800;
    color: var(--color-schwarz);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  div.sprache a.sprache:hover {
    background-color: var(--color-schwarz);
    color: var(--color-weiss);
  }
  div.sprache a.sprache:not(.spracheSel) {
    order: 2;
  }
  div.sprache a.spracheSel {
    order: 1;
  }
  .container-teaser {
    flex-direction: row;
    margin-bottom: 40px;
  }
  .container-teaser:last-of-type {
    margin-bottom: 0;
  }
  .container-teaser-1 .teaser-left {
    width: 37.5%;
    border-radius: 8px 0 0 8px;
  }
  .container-teaser-1 .teaser-right {
    width: 62.5%;
    border-radius: 0 8px 8px 0;
    min-height: 0;
  }
  .container-teaser-1 .hero-bild {
    height: 130%;
    left: 12%;
    transform: none;
    max-width: 85%;
    object-fit: contain;
    object-position: left bottom;
  }
  .container-teaser-2 .teaser-left {
    width: 50%;
  }
  .container-teaser-2 .teaser-right {
    width: 50%;
  }
  .container-teaser-3 .teaser-left {
    width: 37.5%;
  }
  .container-teaser-3 .teaser-right {
    width: 62.5%;
  }
  footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  div.poweredby {
    padding-left: calc(37.5% + 30px);
    color: #666666;
  }
  .page-title {
    flex-direction: row;
    height: 200px;
  }
  .page-title-left {
    width: 37.5%;
    min-height: 200px;
    padding: 40px var(--inhalt-einzug);
  }
  .page-title-left h1 {
    font-size: clamp(1.6rem, 2.35vw, 3.3rem);
  }
  .page-title-right {
    width: 62.5%;
    min-height: 200px;
  }
  .page-title-zentriert .page-title-left {
    width: 100%;
  }
  .page-content-inner {
    --spalte-links: calc(37.5% - var(--inhalt-einzug) * 0.25);
    --spalte-einzug: 20px;
  }
  .archiv-accordion,
  .ausbildung-mehr {
    width: calc(100% - var(--spalte-links) - var(--spalte-einzug));
    margin-left: auto;
  }
  .anlaesse-gruppe {
    gap: var(--spalte-einzug);
  }
  .anlaesse-gruppe-titel {
    width: var(--spalte-links);
  }
  .page-content-inner.vorstand-content {
    padding: 80px var(--inhalt-einzug);
  }
  .page-content-twocol {
    column-count: 2;
    column-gap: 50px;
    column-fill: balance;
    align-items: flex-start;
  }
  .text-form-layout {
    display: flex;
    gap: var(--spalte-einzug);
    align-items: flex-start;
  }
  .text-form-text {
    flex: 0 0 var(--spalte-links);
  }
  .text-form-form {
    flex: 1 1 0;
    min-width: 0;
  }
}
@media (min-width: 1720px) {
  body {
    background: linear-gradient(to right, var(--color-grau) 0%, var(--color-grau) calc(50% - 210px), var(--color-weiss) calc(50% - 210px), var(--color-weiss) 100%);
    background-attachment: fixed;
  }
  .container-teaser-1 .teaser-left,
  .container-teaser-3 .teaser-left {
    width: 630px;
  }
  .container-teaser-1 .teaser-right,
  .container-teaser-3 .teaser-right {
    width: 1050px;
  }
  .page-title-left {
    width: 630px;
  }
  .page-title-right {
    width: 1050px;
  }
  .page-content-inner {
    --spalte-links: calc(630px - var(--inhalt-einzug));
  }
}
/*# sourceMappingURL=styles-min-992.css.map */
