*,*::before,*::after {
  box-sizing:border-box;
}

:root {
  --blue-dark:#4b5e6f;
  --blue-darker:#3b4a57;
  --green-dark:#9a9e01;
  --green-light:#d1d600;
  --cyan:#5fceea;
  --gray-light:#ECECED;
  --gray:hsl(240, 3%, 73%);
  --violett: #554696;
  --violett-dark: hsl(251, 36%, 23%);
  --violett-light: hsl(251, 36%, 63%);
  --primary: var(--violett);

  --gutter: 1.5rem;
}

html,body {
  height:100%;
}
body {
  margin:0;
  padding:0;
}
body {
  font-family:'Jost',arial,sans-serif;
  font-size:1rem;
  line-height:1.5;
  background-color: #E8E5F0;
  color: #000;
}
table {
  font-family:'Jost',arial,sans-serif;
  font-size:1rem;
  line-height:1.5;
  color:#4b5e6f;
}
input {
  font-family:'Jost',arial,sans-serif;
  font-size:1rem;
  line-height:1.5;
  color:#4b5e6f;
}
textarea {
  font-family:'Jost',arial,sans-serif;
  font-size:1rem;
  line-height:1.5;
  color:#4b5e6f;
}
button {
  font-family:'Jost',arial,sans-serif;
  font-size:1rem;
  line-height:1.5;
  color:#4b5e6f;
}
select {
  font-family:'Jost',arial,sans-serif;
  font-size:1rem;
  line-height:1.5;
  color:#4b5e6f;
}
h1,h2,h3,h4,h5,h6,p,ol,ul,dl,table,form,fieldset,object {
  margin:0 0 1.3rem 0;
}
:last-child {
  margin-bottom:0;
}

article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary {
  display: block;
}
h1,.h1 {
  font-size:2rem;
  line-height:1.3;
  font-weight:700;
  color: var(--violett);
}
@media only screen and (min-width : 576px) {
  h1,.h1 {
    font-size:3.25rem;
  }
}
h2,.h2 {
  font-size:1.9rem;
  line-height:1.3;
  font-weight:normal;
  color: var(--violett);
}
h2:not(:first-child) {
  margin-top:2rem;
}
h3,.h3 {
  font-size:1.3rem;
  line-height:1.3;
  font-weight:normal;
}
h4,.h4,
h5,.h5,
h6,.h6 {
  font-size:1.125rem;
  line-height:1.3;
  font-weight:700;
  font-style:italic;
  margin:0 0 .5em 0;
}
.subheadline {
  font-weight:bold;
  line-height:1.8;
}
a:link {
  text-decoration:none;
  color: var(--violett);
  font-weight:700;
}
a:visited {
  color: var(--violett-dark);
}
a:hover {
  text-decoration:underline;
}

:focus {
  outline-color:#5fceea;
}

img {
  border:0;
  max-width:100%;
  width:auto;
  height:auto !important;
}

table {
  border-spacing:1px;
}
table th,
table td {
  padding:.3em 1em .3em .3em;
  text-align:left;
  vertical-align:top;
  background:#fff;
}
table th {
  font-weight:600;
  vertical-align:bottom;
  background:#f5f4f2;
}

figure {
  margin:0 0 1.3em 0;
  padding:0;
}
figure img {
  display:block;
}
figure figcaption {
  background:#fff;
  margin:0;
  padding:.5em 0;
  font-style:italic;
  font-size:.875rem;
  line-height:1.3;
}
figure figcaption:empty {
  display:none;
}

blockquote {
  margin:0;
  padding:0;
}
cite {
  font-style:italic;
}

ul {
  margin-left:0;
  padding:0;
  list-style:square;
}
ul li {
  margin:0 0 0 1.3em;
  padding:0;
}

.video-container > * {
  display: block;
  width: 100%;
  height: auto;
}

/* clearfix
********************************/
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1; /* ie 6/7 */
}

/* Grid
********************************/
.gutter-s .row {
  margin-left:-10px;
  margin-right:-10px;
}
.gutter-s .col {
  padding-left:10px;
  padding-right:10px;
}
.gutter-xs .row {
  margin-left:-5px;
  margin-right:-5px;
}
.gutter-xs .col {
  padding-left:5px;
  padding-right:5px;
}

/* Seitenelemente (Master)
********************************/
#header-top-container {
  padding-block: 2rem;
}
#header-top {
  background-image: var(--_background-image);
  background-position:100% 0;
  background-repeat: no-repeat;
  background-size: auto 100%;
  display: grid;
  gap: var(--gutter);
}
@media only screen and (max-width : 991px) {
  #header-top {
    gap: 1rem;
    grid-template-areas: 'logo'
                         'slogan'
                         'search'
                         'nvmeta';
  }
}
@media only screen and (min-width : 992px) {
  #header-top {
    grid-template-areas: 'logo slogan slogan'
                         'logo nvmeta search';
    background-position: 50% 0;
    row-gap: 3rem;
    padding-bottom: 2rem;
  }
  .header__logo {
    align-self: end;
  }
  .header__slogan {
    justify-self: end;
  }
  .header__nv-meta {
    align-self: end;
  }
  .header__search {
    align-self: end;
  }
}


a#skip {
  position:absolute;
  left:50%;
  top:-3rem;
  transform:translateX(-50%);
  display:block;
  padding:.75rem;
  color:#fff;
  background:#5fceea;
  /*border-radius:0 0 .3125rem .3125rem;*/
  text-decoration:none;
  transition:top .2s ease;
}
a#skip:active,
a#skip:focus,
a#skip:hover {
  top:0;
  outline:0;
}
@media only screen and (max-width : 768px) {
  a#skip {
    display:none;
  }
}
.header__logo {
  grid-area: logo;
}
.header__slogan {
  font-size:1.25rem;
  font-weight:800;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--violett);
  grid-area: slogan;
}

.header__search {
  grid-area: search;
  display:flex;
  gap: 1rem;
  margin:0;
}
.header__search input[type=search] {
  min-width:10rem;
  padding-inline: 0;
  border-color: transparent transparent var(--violett) transparent;
  background-color: transparent;
}
.header__search button {
  font-size:.875rem;
}


.header__nv-meta {
  grid-area: nvmeta;
}
.header__nv-meta ul {
  padding: 0;
  list-style: none;
  display:flex;
  gap: .5rem;
}
.header__nv-meta ul li {
  margin: 0;
  padding: 0;
}
.header__nv-meta ul li a {
  color:var(--violett);
  font-weight:400;
}

#nv-container {
  background: var(--violett);
  border-block: solid var(--violett) 2px;
}
#nv {
  font-size:.875rem;
  display:none;
}
#nv ul {
  margin:0;
  padding:0;
  list-style:none;
}
#nv ul li {
  margin:0;
  padding:0;
}
#nv ul li a {
  display:block;
  padding:.625rem 1rem;
  color:#fff;
  font-weight:700;
  letter-spacing:.15em;
  text-transform:uppercase;
  text-decoration:none;
}

#nv ul ul li a {
  text-transform:none;
  font-weight:700;
}

#nv-toggle {
  text-align:right;
}
#nv-toggle button {
  margin:0;
  padding:0;
  border:0;
}
#nv-toggle button {
  margin:0;
  padding:0;
  width:2.75rem;
  height:2.75rem;
  line-height:2.75rem;
  font-size:1.5rem;
  border:0;
  color:#fff;
  background:transparent;
}
#nv-toggle button:focus {
  background:var(--violett-dark);
  outline:0;
}

#nv-mobile {
  margin:0 -15px;
  display:none;
}
#nv-mobile ul {
  margin:0;
  padding:0;
  list-style:none;
}
#nv-mobile ul li {
  margin:0;
  padding:0;
}
#nv-mobile ul li a {
  display:block;
  padding:.625rem 1rem;
  color:#fff;
  font-weight:700;
  letter-spacing:.15em;
  text-transform:uppercase;
  text-decoration:none;
  border-top:solid #fff 1px;
  position:relative;
}
#nv-mobile ul li a .toggle {
  position:absolute;
  right:.5rem;
}
#nv-mobile ul li.a1 a {
  background-color: var(--violett-dark);
}
#nv-mobile ul li.s1 a {
  background-color: var(--violett-dark);
}
#nv-mobile ul ul {
  background: var(--violett);
  display:none;
}
#nv-mobile ul li.s1 > ul {
  display:block;
}
#nv-mobile ul ul li a {
  text-transform:none;
  color:undefined;
  letter-spacing:0;
}
#nv-mobile ul ul li.a1 a {
  background:#4b5e6f;
  color:#fff;
}
#nv-mobile ul ul li.s1 a {
  background:#4b5e6f;
  color:#fff;
}

@media only screen and (min-width : 768px) {
  #nv-toggle {
    display:none;
  }
  #nv-mobile {
    display:none !important;
  }
  #nv {
    display:block;
  }
  #nv > ul {
    display:flex;
    justify-content: center;
    align-items:stretch;
  }
  #nv ul li {
    position:relative;
  }
  #nv ul li.a1 > a {
    color:var(--violett);
    background-color: #fff;
  }
  #nv ul li.s1 > a {
    color:var(--violett);
    background-color: #fff;
  }
  #nv ul ul {
    visibility: hidden;
    opacity:0;
    position:absolute;
    z-index:99;
    top: calc(100% + 2px);
    left:50%;
    transform:translate(-50%, 0);
    transition:opacity .3s ease;
  }
  #nv ul ul li a {
    background: var(--violett);
    color:#fff;
    border-top:solid #fff 1px;
    transition:background-color .2s ease, color .2s ease;
    padding:.25rem 1rem;
    text-align:center;
  }
  #nv ul ul li a:hover {
    background:var(--violett-dark);
    color:#fff;
  }
  #nv ul ul li.a1 > a {
    background:var(--violett-dark);
    color:#fff;
  }
  #nv ul ul li.s1 > a {
    background:var(--violett-dark);
    color:#fff;
  }

  #nv ul li:hover > ul,
  #nv ul.show-menu {
    visibility:visible;
    opacity: 1;
  }

}

.site-stoerer {
  --_background-color: var(--gray-light);
  --_background-color-hover: var(--gray);
  --_text-color: #555;
  position: fixed;
  z-index: 1020;
  right: 0;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-stoerer .stoerer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--_background-color);
  color: var(--_text-color);
  padding: 0.625rem;
  transition: background-color .2s ease;
}
.site-stoerer .stoerer:hover {
  text-decoration: none;
  background-color: var(--_background-color-hover);
}
.site-stoerer .stoerer__icon {
  font-size: 2rem;
}
.site-stoerer .stoerer__label {
  display: none;
}
.site-stoerer .stoerer--highlight {
  --_background-color: var(--violett);
  --_background-color-hover: var(--violett-dark);
  --_text-color: #fff;
}

@media only screen and (min-width : 992px) {
  .site-stoerer {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .site-stoerer .stoerer__label {
    display: block;
  }
}

.social-media {
  margin: var(--gutter) 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-around;
}
.social-media li {
  margin: 0;
  padding: 0;
}
.social-media a {
  text-align: center;
  font-size: 2rem;
  line-height: 1;
}
.social-media a:hover {
  text-decoration: none;
  color: var(--violett-dark);
}
/* #main-container {
  background:#fff;
} */
#path {
  padding-top:1.5rem;
  padding-bottom:1.5rem;
  font-size:.875rem;
  /*height:4.3125rem;
  overflow:hidden;
  text-overflow: ellipsis;*/
}
#main {
  padding-top:1.5rem;
  padding-bottom:1.5rem;
  width:100%;
}

@media only screen and (min-width : 992px) {
  #main {
    padding-right:3rem;
  }
}

#rightbar {
  padding-top:1.5rem;
  padding-bottom:1.5rem;
  width:100%;
  position:relative;
}

#rightbar .quick-links {
  margin:0 -.5rem 1rem -.5rem;
  display:flex;
  justify-content: space-around;
}
#rightbar .quick-links a {
  display:block;
  /*float:left;*/
  padding:0 .5rem;
  text-align:center;
  font-size:.75rem;
  text-decoration: none;
  color:var(--violett);
  transition:color .2s ease;
}
#rightbar .quick-links a:hover {
  color:var(--violett-dark);
}
#rightbar .quick-links a span {
  display:block;
}
#rightbar .quick-links a span[class^=icon-],
#rightbar .quick-links a span[class^=fa] {
  font-size:2rem;
  margin:auto;
}

#footer-container {
  color:#fff;
  font-size:.875rem;
}
#footer-container h4 {
  font-size:.875rem;
}
#footer-container p,
#footer-container ul {
  margin:0 0 .5rem 0;
}
#footer-container a {
  color:rgba(255,255,255,.8);
  font-weight:normal;
}
#footer-container .footer-top {
  padding-top:2rem;
  padding-bottom:2rem;
}
#footer-container section {
  /*padding-top:1rem;
  padding-bottom:1rem;*/
}


#footer-sitemap {
  font-size:.875rem;
  padding-top:1rem;
  padding-bottom:1rem;
}
#footer-sitemap ul {
  margin:0;
  padding:0;
  list-style:none;
}
#footer-sitemap ul li {
  margin:0;
  padding:0;
}
#footer-sitemap ul li a {
  color:var(--violett);
  font-weight:700;
}

#footer-sitemap ul ul li a {
  font-weight: 400;
}

#footer-sitemap > ul {
  display:flex;
  flex-wrap: wrap;
  margin:0 -15px;
}
#footer-sitemap > ul > li {
  padding:0 1rem;
}

#footer-container .nv-meta-container {
  background:var(--violett-dark);
  padding:.5rem 0;
}
#footer-container {
  background-color: var(--gray-light);
}
#footer-container .nv-meta-container ul {
  margin:0;
  padding:0;
  list-style:none;
}
#footer-container .nv-meta-container ul li {
  margin:0;
  padding:0;
  float:left;
}
#footer-container .nv-meta-container ul li::after {
  content:'|';
  margin:0 .5em;
}
#footer-container .nv-meta-container ul li:last-child::after {
  display:none;
}
#footer-container .nv-meta-container ul li a {
  color:#fff;
  font-weight:400;
}

@media only screen and (min-width : 768px) and (max-width : 991px) {
  #rightbar .jiggy-container {
    flex: 0 0 50%;
    max-width: 50%;
    display:flex;
  }
  #rightbar .jiggy-container .jiggy {
    flex:0 0 100%;
  }

  #footer-container .col {
    flex:0 0 33.3333%;
  }

}