@import url("https://fonts.verwaltungsportal.de/import/?family=Ruda:400,500,600,700,900");

body {
  font-family: "Ruda", sans-serif;
  color: #252525;
  background: #ffffff;
  font-size: 1rem;
  /* 1rem = 16px */
  line-height: 1.5;
  font-weight: 400;
}

@media (min-width: 768px) {
  body {
    font-size: 1.125rem;
  }
}

a {
  color: #008571;
}

a:hover,
a:focus {
  color: #008571;
  text-decoration: underline;
}

b,
strong {
  font-weight: 900;
}

:focus-visible {
  outline: 3px solid #cf652c !important;
}

/* ------------------------------------------------- logo ------------------------------------------------ */

#logo {
  display: inline-block;
}

@media (min-width: 991px) {
  #logo {
    position: absolute;
    left: -1vw;
  }
}

@media (min-width: 1400px) {
  #logo {
    position: absolute;
    left: -6vw;
  }
}

@media (min-width: 1600px) {
  #logo {
    position: absolute;
    left: -13vw;
  }
}

#logo img {
  display: block;
}

@media (max-width: 991px) {
  #logo img {
    max-width: 300px;
    width: 100%;
  }
}

/* --------------------------------------- navigation --------------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
  #menu {
    padding: 10px 0;
    background-color: #294d99;
  }

  .is-sticky #menu {
    position: relative !important;
  }

  #burgerButton {
    font-size: 0;
    border: none !important;
    position: relative;
    z-index: 1002;
    display: block;
    width: 46px;
    height: 40px;
    border-radius: 2px;
    cursor: pointer;
    background-color: #ffffff;
    padding: 3px;
  }

  #burgerButton:before,
  #burgerButton:after,
  #burgerButtonInner {
    background-color: #294d99;
    border-radius: 2px;
    position: absolute;
    width: 40px;
    height: 3px;
    left: 2px;
    -webkit-transition: transform 200ms linear, opacity 200ms linear;
    -moz-transition: transform 200ms linear, opacity 200ms linear;
    -ms-transition: transform 200ms linear, opacity 200ms linear;
    -o-transition: transform 200ms linear, opacity 200ms linear;
    transition: transform 200ms linear, opacity 200ms linear;
  }

  #burgerButton[aria-expanded="true"] #burgerButtonInner {
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
  }

  #burgerButton[aria-expanded="true"]:before {
    opacity: 0;
  }

  #burgerButton[aria-expanded="true"]:after {
    -webkit-transform: rotate(45deg) translate(-4px, -6px);
    transform: rotate(45deg) translate(-4px, -6px);
  }

  #burgerButtonInner {
    top: 10px;
  }

  #burgerButton:before {
    top: 18px;
  }

  #burgerButton:after {
    top: 26px;
  }

  #burgerButton:before,
  #burgerButton:after {
    content: "";
    display: block;
  }

  .navbar-nav {
    padding: 20px 0;
    background-color: #294d99;
    margin-bottom: 20px;
  }

  .navbar-collapse {
    top: 0;
    background: #294d99;
    position: fixed;
    left: -100%;
    bottom: 0;
    z-index: 100;
    height: auto !important;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    -webkit-transition: left 300ms linear, opacity 300ms linear;
    -moz-transition: left 300ms linear, opacity 300ms linear;
    -ms-transition: left 300ms linear, opacity 300ms linear;
    -o-transition: left 300ms linear, opacity 300ms linear;
    transition: left 300ms linear, opacity 300ms linear;
  }

  .navbar-collapse.collapse.in {
    left: 0;
    opacity: 1;
    pointer-events: auto;
  }

  .navbar-header {
    height: 50px;
    width: 60px;
    border-radius: 2px;
    padding: 6px 8px;
    background-color: #ffffff;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 101;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
  }

  .navbar-collapse.in:after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    width: 90px;
    background-color: rgba(0, 0, 0, 0.5);
  }
}

@media (min-width: 575px) and (max-width: 991px) {
  .navbar-collapse {
    width: 60%;
  }

  .navbar-collapse.collapse.in:after {
    width: 40%;
  }
}

/* menu desktop */
@media (min-width: 992px) {
  #menu {
    background-color: #294d99;
    padding: 20px 0;
    position: relative;
  }

  .sticky-wrapper {
    z-index: 103;
  }

  #menu .static,
  #menu .navbar,
  #myNavbar {
    position: static;
  }

  nav.horizontally .navbar-nav {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    flex-wrap: wrap;
  }

  nav.horizontally .navbar-nav>li {
    flex-grow: 1;
  }

  .navbar-default .navbar-nav li[class*="toplevel"]>ul {
    display: flex !important;
    flex-wrap: wrap;
    pointer-events: none;
    position: absolute;
    opacity: 0;
    top: auto;
    right: 0px;
    z-index: 1000;
    padding: 64px 42px;
    -ms-transform-origin: top center;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: top 300ms linear, opacity 300ms linear;
    -moz-transition: top 300ms linear, opacity 300ms linear;
    -ms-transition: top 300ms linear, opacity 300ms linear;
    -o-transition: top 300ms linear, opacity 300ms linear;
    transition: top 300ms linear, opacity 300ms linear;
    max-width: 1170px;
    width: 100%;
    column-count: 3;
    column-gap: 30px;
    overflow-y: auto;
    max-height: 60vh;
  }

  .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul {
    pointer-events: auto !important;
    opacity: 1 !important;
    z-index: 1003;
  }

  .navbar-default .navbar-nav li[class*="toplevel"]:focus-within>ul {
    pointer-events: auto !important;
    opacity: 1 !important;
  }

  .nav li[class*="toplevel"].open>.dropdown-menu {
    pointer-events: none !important;
    opacity: 0 !important;
  }

  nav.horizontally .navbar-nav>li>.dropdown-menu>li {
    margin-bottom: 25px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e6e6e6;
  }

  nav.horizontally .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    display: block !important;
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
  }

  /* Fade in Hover Start */
  .navbar-default .navbar-nav li[class*="toplevel"]>ul,
  .navbar-default .navbar-nav li[class*="secondlevel"]>ul {
    display: block !important;
    pointer-events: none;
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
  }

  .navbar-default .open>.dropdown-menu,
  .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul,
  .navbar-default .navbar-nav li[class*="secondlevel"]:hover>ul,
  .navbar-default .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
    pointer-events: auto !important;
    opacity: 1 !important;
  }

  .navbar-default .navbar-nav li[class*="toplevel"]:focus-within>ul,
  .navbar-default .navbar-nav li[class*="secondlevel"]:focus-within>ul {
    pointer-events: auto !important;
    opacity: 1 !important;
  }

  .navbar-default .nav .open>.dropdown-menu {
    pointer-events: none !important;
    opacity: 1 !important;
  }

  /* Pseudo */

  .navbar-default .navbar-nav>li>.dropdown-menu::before {
    content: "";
    position: absolute;
    display: block;
    height: 20px;
    left: 0;
    right: 0;
    top: -10px;
  }

  /* Fade in Hover End */
}

/* ---------------------------------------------- toplevel ---------------------------------------------- */

.navbar-default .navbar-nav>li {
  position: static;
}

.navbar-default .navbar-nav>li>a {
  color: #252525;
  font-weight: 400;
  text-align: left;
  padding: 10px 35px;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.2;
  text-decoration: none;
  background-color: #fff;
}

@media (min-width: 992px) {
  .navbar-default .navbar-nav>li+li {
    margin-left: 8px;
  }

  .navbar-default .navbar-nav>li>a {
    padding: 10px 1px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
  }
}

@media (max-width: 991px) {
  .dropdown-toggle-button-wrapper {
    top: 6px;
  }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) and (min-width: 992px) {
  .navbar-default .navbar-nav>li>a {
    display: block;
  }
}

/* -------------------------------------------- toplevel-over ------------------------------------------- */

.navbar-nav>li:hover>a,
.navbar-nav>li>a:hover,
.navbar-nav>li>a:focus,
.navbar-nav>li.open>a,
.navbar-nav>li.open>a:hover,
.navbar-nav>li.open>a:focus,
.navbar-nav>li[class$="_over"]>a,
.navbar-nav>li[class$="_over"]>a:hover,
.navbar-nav>li[class$="_over"]>a:focus {
  color: #ffffff;
  background-color: #c84f0e;
}

.navbar-nav>li:focus-within>a {
  color: #ffffff;
  background-color: #c84f0e;
}

/* -------------------------------------- secondlevel + thirdlevel dropdown-box -------------------------------------- */

.navbar-default .navbar-nav>li>.dropdown-menu {
  background-color: #ffffff;
}

@media (min-width: 992px) {
  .navbar-default .navbar-nav>li>.dropdown-menu {
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
  }
}

@media (max-width: 991px) {
  .navbar-default .navbar-nav>li>.dropdown-menu {
    padding: 15px 15px 15px 35px;
  }

  .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    margin-bottom: 8px;
  }

  .dropdown-toggle-button::after,
  .dropdown-toggle-button::before {
    background: #008571 !important;
  }
}

/* --------------------------------------------- secondlevel + thirdlevel -------------------------------------------- */

.navbar-default .navbar-nav>li>.dropdown-menu>li,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li {
  line-height: 20px;
  text-align: left;
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>a {
  color: #252525;
  font-weight: 400;
  padding: 0 0 10px 10px;
  display: inline-block;
  position: relative;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
}

@media (min-width: 992px) {
  .navbar-default .navbar-nav>li>.dropdown-menu>li>a {
    padding: 0 0 10px 0;
  }
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
  color: #252525;
  font-weight: 400;
  padding: 8px 20px;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  left: 0;
}

@media (min-width: 992px) {
  .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
    padding: 15px 0;
  }
}

/* ------------------------------------------ secondlevel + thirdlevel over ------------------------------------------ */

.navbar-nav>li>.dropdown-menu>li:hover>a,
.navbar-nav>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:focus {
  background: transparent;
  color: #008571;
}

.navbar-nav>li>.dropdown-menu>li:focus-within>a {
  background: transparent;
  color: #008571;
}

.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:hover>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:focus {
  background: transparent;
  color: #008571;
}

.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:focus-within>a {
  background: transparent;
  color: #008571;
}

@media (min-width: 992px) {

  .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:hover>a,
  .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:hover,
  .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:focus,
  .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a,
  .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:hover,
  .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:focus,
  .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a,
  .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:hover,
  .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:focus {
    background: transparent;
    color: #008571;
    left: 20px;
  }

  .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:focus-within>a {
    background: transparent;
    color: #008571;
    left: 20px;
  }
}

/* ----------------------------------------------- banner ----------------------------------------------- */

#slider .nivo-main-image,
#slider {
  height: 300px !important;
  overflow: hidden;
  position: relative;
}

@media (min-width: 992px) {

  #slider .nivo-main-image,
  #slider {
    height: 600px !important;
  }

  #headerpic a.nivo-prevNav {
    left: 65px;
  }

  #headerpic a.nivo-nextNav {
    right: 65px;
  }

  .theme-default .nivo-controlNav {
    bottom: unset !important;
    top: 30px;
  }
}

#headerpic {
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.slider-wrapper,
#slider {
  height: 100%;
}

.slider-mask {
  display: none;
}

/* --------------------------------------------- dots -------------------------------------------- */

.slider-wrapper .nivo-controlNav a {
  display: inline-block;
  width: 10px !important;
  height: 10px !important;
  text-indent: -9999px;
  border: 1px solid #294d99 !important;
  margin: 0 5px !important;
  background: #ffffff !important;
  border-radius: 0%;
  color: #000;
}

.slider-wrapper .nivo-controlNav a.active,
.slider-wrapper .nivo-controlNav a:hover,
.slider-wrapper .nivo-controlNav a:focus {
  background: #008571 !important;
  border: 1px solid #008571 !important;
}

.slider-wrapper .nivo-controlNav a+a {
  margin-top: 10px;
}

@media (max-width: 767px) {
  #slider .nivo-directionNav {
    display: none !important;
  }

  .slider-wrapper .nivo-controlNav a {
    display: inline-block;
  }

  .slider-wrapper .nivo-controlNav a+a {
    margin-top: 0;
    margin-left: 7px;
  }
}

/* -------------------------------------------- banner arrows --------------------------------------------- */

#headerpic .nivo-directionNav a {
  background: #ffffff;
  width: 60px;
  height: 48px;
  -webkit-transition: width 300ms linear, opacity 300ms linear,
    background 300ms linear;
  -moz-transition: width 300ms linear, opacity 300ms linear,
    background 300ms linear;
  -ms-transition: width 300ms linear, opacity 300ms linear,
    background 300ms linear;
  -o-transition: width 300ms linear, opacity 300ms linear,
    background 300ms linear;
  transition: width 300ms linear, opacity 300ms linear, background 300ms linear;
}

#headerpic:hover .nivo-directionNav a,
#headerpic:focus .nivo-directionNav a {
  width: 70px;
}

#headerpic .nivo-directionNav a::before,
#headerpic .nivo-directionNav a::after {
  content: "";
  display: block;
  position: absolute;
}

#headerpic .nivo-directionNav a::before {
  height: 2px;
  width: 16px;
  top: 50%;
  margin-top: -1px;
  background: #008571;
  -webkit-transition: background 300ms linear;
  -moz-transition: background 300ms linear;
  -ms-transition: background 300ms linear;
  -o-transition: background 300ms linear;
  transition: background 300ms linear;
}

#headerpic .nivo-directionNav a::after {
  height: 8px;
  width: 8px;
  top: 50%;
  margin-top: -5px;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: border-color 300ms linear;
  -moz-transition: border-color 300ms linear;
  -ms-transition: border-color 300ms linear;
  -o-transition: border-color 300ms linear;
  transition: border-color 300ms linear;
}

#headerpic a.nivo-prevNav {
  left: -11px;
}

#headerpic a.nivo-prevNav::before {
  right: 26px;
}

#headerpic a.nivo-prevNav::after {
  right: 32px;
  border-left: 2px solid #008571;
  border-bottom: 2px solid #008571;
}

#headerpic a.nivo-nextNav {
  right: -11px;
}

#headerpic a.nivo-nextNav::before {
  left: 26px;
}

#headerpic a.nivo-nextNav::after {
  left: 32px;
  border-right: 2px solid #008571;
  border-top: 2px solid #008571;
}

#headerpic a.nivo-prevNav {
  left: 0;
}

#headerpic a.nivo-nextNav {
  right: 0;
}

/* ------------------------------------------------ button ----------------------------------------------- */

#button {
  z-index: 13;
  position: relative;
  width: 100%;
}

@media (min-width: 1200px) {
  #button {
    position: fixed;
    top: 82px;
    left: 0;
    z-index: 14;
  }
}

.spenden {
  background-color: #c84f0e;
  color: #fff;
  padding: 8px 12px;
  display: inline-block;
  font-size: 1.5625rem;
}

.spenden a {
  color: #fff;
}

/* ------------------------------------------------ contactAside ----------------------------------------------- */


/* ------------------------------------------------ select ----------------------------------------------- */

.contactAside {
  cursor: pointer;
  display: grid;
  position: fixed;
  z-index: 14;
  top: 49%;
  gap: 10px;
}

@media (max-width: 991px) {
  .contactAside {
    top: 10%;
    right: 0;
  }
}

@media (min-width: 992px) {
  .contactAside {
    left: 0;
  }

  .asideBox span {
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 1.125rem;
    color: #252525;
    line-height: 1;
    display: block;
  }
}

@media (max-width: 991px) {
  .asideBox span {
    display: none;
  }
}

.contactAside details.box1,
.contactAside details.box2,
.contactAside details.box3,
.contactAside details.box4,
.contactAside details.box5 {
  cursor: pointer;
  display: block;
  position: relative;
  z-index: 14;
  height: 77px;
  width: 77px;
  max-width: 400px;
  min-height: 45px;
  background: #ffffff;
  border-radius: 0 39px 39px 0;
  position: relative;
  transition: all 300ms linear;
}

@media (min-width: 992px) {

  .contactAside details.box1,
  .contactAside details.box2,
  .contactAside details.box3,
  .contactAside details.box4,
  .contactAside details.box5 {
    left: 0;
  }
}

.contactAside details.box5 {
  background: #c84f0e;
}

.contactAside details[open] {
  width: max-content;
  z-index: 13;
  transition: all 300ms linear;
  padding: 0;
  width: 100%;
}

@media (min-width: 992px) {
  .contactAside details[open] {
    left: 0;
  }
}

/* .contactAside details[open],
.contactAside details:hover,
.contactAside details:focus-within {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
} */

.contactAside details summary {
  list-style: none;
  height: 77px;
  min-width: 100%;
  position: absolute;
  width: 100%;
}

@media (min-width: 992px) {
  .contactAside details summary {
    right: 0;
  }
}

.contactAside details .selectItems {
  position: relative;
  z-index: 12;
  top: 0;
  display: flex;
  align-content: center;
  align-items: center;
  pointer-events: all;
  height: 77px;
  opacity: 0;
  padding-left: 85px;
  border-radius: 0 39px 39px 0;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 300ms linear;
  overflow: hidden;
  hyphens: manual;
  white-space: nowrap;
  max-height: 77px;
}

@media (min-width: 992px) {
  .contactAside details .selectItems {
    left: -400px;
    min-width: 400px;
  }

  .contactAside details[open] .selectItems {
    left: 0;
    opacity: 1;
    transition: all 300ms linear;
  }
}

.contactAside summary .buttonAside {
  cursor: pointer;
  display: flex;
  position: absolute;
  top: 0;
  z-index: 14;
  width: 80px;
  max-height: 77px;
  height: 77px;
  white-space: nowrap;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff;
  border-radius: 0 39px 39px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: box-shadow 300ms linear;
}

@media (min-width: 992px) {
  .contactAside summary .buttonAside {
    left: 0;
  }
}

.contactAside details[open] .buttonAside {
  box-shadow: unset;
}

.contactAside summary .buttonAside.firstBTN {
  background-image: url('../img/icon-a.png');
}

.contactAside summary .buttonAside.secondBTN {
  background-image: url('../img/konstrast-icon.png');
}

.contactAside summary .buttonAside.thirdBTN {
  background-image: url('../img/suche-icon.png');
}

.contactAside summary .buttonAside.fourthBTN {
  background-image: url('../img/leichte-sprache-icon.png');
}

.contactAside summary .buttonAside.fifthBTN {
  background-image: url('../img/icon-donation.png');
  background-color: #c84f0e;
}

.contactAside details.box5 .selectItems {
  color: #ffffff;
  background-color: #c84f0e;
}

.contactAside details.box5 .selectItems a {
  color: #ffffff;
}

@media (max-width: 991px) {
  .contactAside details summary {
    height: 45px;
    left: 0;
  }

  .contactAside details.box1,
  .contactAside details.box2,
  .contactAside details.box3,
  .contactAside details.box4,
  .contactAside details.box5 {
    height: 45px;
    right: 0;
    width: 45px;
    max-width: 210px;
    min-height: 45px;
    border-radius: 39px 0 0 39px;
  }

  .contactAside details[open] {
    right: 0;
  }

  .contactAside summary .buttonAside {
    width: 45px;
    max-height: 45px;
    height: 45px;
    right: 0;
    background-size: 20px auto;
    border-radius: 39px 0 0 39px;
  }

  .contactAside details .selectItems {
    right: -210px;
    height: 45px;
    min-width: 290px;
    padding-right: 55px;
    padding-left: 15px;
    border-radius: 39px 0 0 39px;
    max-height: 45px;
    justify-content: end;
    text-align: right;
  }

  .contactAside details[open] .selectItems {
    right: 240px;
    opacity: 1;
    transition: all 300ms linear;
  }

  #contrast_style {
    padding-top: 5px;
  }
}

/* ----------------------- styler ----------------------- */

#style {
  font-size: 0;
}

#style button {
  font-size: 18px;
  background: #294d99;
  padding: 0;
  border: none;
  color: #ffffff;
  display: inline-block;
  width: 33px;
  height: 33px;
  font-weight: 400;
  text-align: center;
  position: relative;
  line-height: 1;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  overflow: hidden;
}

@media (max-width: 991px) {
  #style button {
    font-size: 16px;
    width: 25px;
    height: 25px;
  }
}

#style button+button {
  margin-left: 8px;
}

#style button::before {
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background-color: #ff82b4;
  height: 4px;
  width: 100%;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
  opacity: 0;
}

#style button:hover:before,
#style button:focus:before {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

#style button:hover,
#style button:focus {
  background-color: #f0cd55;
  color: #252525;
}

/* ----------------------- contrast_style ----------------------- */

#contrast_style button {
  padding: 0;
  border: unset;
  display: inline-block;
  width: 33px;
  height: 33px;
  font-weight: 400;
  text-align: center;
  background: #294d99;
  position: relative;
  z-index: 1;
  font-size: 0;
}

@media (max-width: 991px) {
  #contrast_style button {
    width: 25px;
    height: 25px;
    bottom: 5px;
  }
}

#contrast_style button+button {
  margin-left: 8px;
}

#contrast_style button::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  right: 4px;
  left: 4px;
  bottom: 4px;
  border: 1px solid #ffffff;
}

#contrast_style button:nth-of-type(1)::after {
  background: linear-gradient(to right, #252525, #252525 50%, #ffffff 50%);
}

#contrast_style button:nth-of-type(2)::after {
  background: linear-gradient(to right, #ffffff, #ffffff 50%, #252525 50%);
}

#contrast_style button:nth-of-type(3)::after {
  background: #c84f0e;
}

#contrast_style button:hover,
#contrast_style button:focus {
  background-color: #859ba6;
}

/* ----------------------- search ----------------------- */

#search {
  min-height: 33px;
  background: #ffffff;
  display: inline-block;
  position: relative;
  border-bottom: 1px solid #252525;
}

@media (max-width: 767px) {
  #search {
    width: 100%;
  }
}

@media (max-width: 991px) {
  #search {
    min-width: 220px;
  }
}

#search_input {
  color: #252525;
  font-size: 16px;
  font-style: normal;
  background: transparent;
  padding: 0;
  border: 0;
  line-height: 33px;
  padding-left: 0;
  padding-right: 43px;
  height: 33px;
  width: 100%;
}

#search_submit {
  width: 33px;
  background: url("../img/icon-arrow.png") center no-repeat;
  padding: 0;
  cursor: pointer;
  line-height: 33px;
  border: none;
  position: absolute;
  top: 0;
  right: 2px;
  height: 100%;
  font-size: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

@media (max-width: 991px) {
  #search {
    min-height: 25px;
  }

  #search_input {
    line-height: 25px;
    height: 25px;
  }

  #search_submit {
    width: 25px;
    line-height: 25px;
  }

}

#search_submit:hover,
#search_submit:focus {
  transform: translate(5px, 0px);
  -webkit-transform: translate(5px, 0px);
  -moz-transform: translate(5px, 0px);
}

#search_input::-ms-input-placeholder {
  color: #252525 !important;
}

#search_input::-webkit-input-placeholder {
  color: #252525 !important;
}

#search_input::-moz-placeholder {
  opacity: 1;
}

#search_input:-moz-placeholder {
  opacity: 1;
}

/* ------------------------------------------------ languageBox ----------------------------------------------- */

#languageBox .tab a {
  color: #252525;
  font-size: 1.125rem;
  display: block;
}

@media (max-width: 991px) {
  #languageBox .tab a {
    font-size: 1rem;
  }
}

/* ------------------------------------------------ greenButton ----------------------------------------------- */

.greenButton a {
  background-color: #f0cd55;
  color: #252525;
  text-decoration: none;
  font-size: 0.875rem;
  position: relative;
  padding: 9px 50px 9px 20px;
  display: inline-block;
}

.greenButton a+a {
  margin-top: 32px;
}

.greenButton a::after {
  content: "\2192";
  right: 25px;
  top: 9px;
  bottom: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  position: absolute;
}

.greenButton a:hover::after,
.greenButton a:focus::after {
  right: 15px;
}

/* ------------------------------------------------ links ----------------------------------------------- */

#links {
  position: relative;
  z-index: 12;
}

#links::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 351px;
  background-color: rgba(41, 77, 153, 0.6);
  background-blend-mode: multiply;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 1200px) {
  #links::before {
    top: -208px;
    height: 34vw;
  }

  body:not(.index) #links::before {
    top: -150px;
    height: 31vw;
  }
}

@media (min-width: 1400px) {
  #links::before {
    width: 34.2%;
  }
}

@media (max-width: 991px) {
  #links::before {
    width: 330px;
    height: 530px;
    top: -168px;
  }
}

@media (max-width: 767px) {
  #links::before {
    width: 100%;
    height: 300px;
    top: unset;
  }
}

#links .tab {
  position: relative;
  padding: 90px 40px 50px 60px;
}

@media (min-width: 992px) {
  #links .tab {
    font-size: 1.375rem;
    min-height: 400px;
  }
}

@media (max-width: 767px) {
  #links .tab {
    padding: 330px 0 30px 0;
  }
}

#links .tabHeadline {
  color: #252525;
  font-size: 2.1875rem;
  font-weight: 900;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  #links .tabHeadline {
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  #links .tabHeadline {
    margin-bottom: 15px;
  }
}

#links .tab a {
  position: relative;
  text-decoration: none;
  display: inline-block;
  padding: 8px 0 8px 35px;
  color: #252525;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  left: 0;
}

#links .tab a:hover,
#links .tab a:focus {
  color: #008571;
  left: 15px;
}

#links .tab a::before {
  content: "\2192";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  font-size: 22px;
}

/* ------------------------------------------------ themes ----------------------------------------------- */

#themes {
  position: relative;
  padding-top: 30px;
  padding-bottom: 60px;
}

@media (max-width: 767px) {
  #themes {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}

.themesTab1 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .themesTab1 {
    margin-bottom: 0;
  }
}

#themes .themesTab1 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 400;
  margin-bottom: 0;
}

#themes .themesTab1 strong,
#themes .themesTab1 b {
  color: #252525;
  font-weight: 900;
}

#themes .themesTab2 a {
  color: #ffffff;
}

#themes .themesTab2 {
  color: #ffffff;
  font-weight: 900;
}

#themes .themesTab2 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 900;
  margin-bottom: 30px;
  color: #ffffff;
  font-size: 1rem;
  position: relative;
  pointer-events: none;
}

#themes .themesTab2 :is(h1, h2, h3, h4, h5, h6)::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}

.themesTab2 {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  padding-top: 278px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #ffffff;
  font-size: 1.1875rem;
  line-height: 1.2;
  background-color: #294d99;
  pointer-events: none;
  height: 100%;
}

@media (max-width: 991px) {
  #themes .themesTab2 .tabHeadline {
    font-size: 1.0625rem;
  }

  .themesTab2 {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .themesTab2 {
    margin-top: 30px;
    height: unset;
  }
}

.themesTab2::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: rgb(41, 77, 153);
  background: linear-gradient(0deg,
      rgba(41, 77, 153, 1) 0%,
      rgba(41, 77, 153, 0.2) 50%,
      rgba(41, 77, 153, 0) 100%);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

@media (max-width: 991px) {
  .themesTab2::after {
    height: 160px;
  }
}

.themesTab2 a img {
  position: absolute;
  z-index: -2;
  pointer-events: all;
  object-fit: cover;
  top: -280px;
  bottom: -20px;
  left: -20px;
  right: -20px;
  display: block;
  min-height: 400px;
  width: calc(100% + 40px);
  max-width: unset;
}

.themesTab2 p:not(.has-image):not([rel]) {
  word-wrap: break-word;
  max-width: 330px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.themesTab2 .tabContent:not(.has-image):not([rel]) {
  padding: 0 20px 20px 20px;
  position: relative;
}

/* ------------------------------------------------ content ----------------------------------------------- */

main {
  text-align: left;
  background-size: contain;
}

body:not(.index) #content {
  padding-bottom: 30px;
  padding-top: 30px;
}

@media (min-width: 992px) {
  body:not(.index) #content {
    padding-bottom: 60px;
    padding-top: 35px;
  }

}

/* ------------------------------------------------ newsletterBox ----------------------------------------------- */

#newsletterBox {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-color: #294d99;
}

#newsletterBox::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 50%;
  top: 0;
  background-color: rgba(240, 205, 85, 0.8);
  background-blend-mode: multiply;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@media (max-width: 767px) {
  #newsletterBox::before {
    left: 25px;
    bottom: 25px;
    top: 25px;
  }
}

#newsletterBox .tab {
  padding: 90px 25px 52px 25px;
  color: #252525;
}

#newsletterBox strong,
#newsletterBox b {
  font-weight: 900;
  font-size: 1.25rem;
}

#newsletterBox .tab a {
  color: #252525;
}

#newsletterBox :is(h1, h2, h3, h4, h5, h6) {
  color: #252525;
}

#newsletterInputs {
  min-height: 50px;
  background: #ffffff;
  display: inline-block;
  position: relative;
  width: 100%;
  margin-top: 40px;
}

#newsletter_input {
  color: #252525;
  font-size: 16px;
  font-style: normal;
  background: transparent;
  padding: 0;
  border: 0;
  line-height: 50px;
  padding-left: 30px;
  padding-right: 45px;
  height: 50px;
  width: 100%;
}

#newsletter_submit {
  width: 70px;
  background: url("../img/newsletter-icon.png") center no-repeat;
  padding: 0;
  cursor: pointer;
  line-height: 50px;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  font-size: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

#newsletter_submit:hover {
  transform: translate(-10px, 0px);
  -webkit-transform: translate(-10px, 0px);
  -moz-transform: translate(-10px, 0px);
}

#newsletter_input::-ms-input-placeholder {
  color: #252525 !important;
}

#newsletter_input::-webkit-input-placeholder {
  color: #252525 !important;
}

#newsletter_input::-moz-placeholder {
  opacity: 1;
}

#newsletter_input:-moz-placeholder {
  opacity: 1;
}

/* ------------------------------------------------ events ----------------------------------------------- */

#events {
  padding-top: 55px;
  position: relative;
}

@media (min-width: 768px) {
  #events::before {
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    pointer-events: none;
    width: 100%;
    height: 500px;
    background-color: #ff82b4;
  }
}

@media (min-width: 1500px) {
  #events::before {
    width: 75%;
  }
}

@media (max-width: 767px) {
  #events {
    background-color: #ff82b4;
    padding-bottom: 60px;
  }
}

#events .tabContent {
  color: #ffffff;
}

#events .tabContent :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 400;
  margin-bottom: 0;
  color: #252525;
  background-color: #ff82b4;
  font-size: 2.1875rem;
}

#events strong,
#events b {
  font-weight: 900;
  color: #ffffff !important;
}

@media (min-width: 576px) {
  #events .tab_link_entries {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

#events .tab_link_entry {
  font-size: 1rem;
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 200px 30px 30px 30px;
  box-shadow: 0px 0px 20px 10px rgba(37, 37, 37, 0.1);
  -webkit-box-shadow: 0px 0px 20px 10px rgba(37, 37, 37, 0.1);
  -moz-box-shadow: 0px 0px 20px 10px rgba(37, 37, 37, 0.1);
  border: none !important;
  z-index: 1;
}

#events .tab_link_entries {
  counter-reset: section;
}

#events .tab_link_entry::after {
  counter-increment: section;
  content: "0"counter(section);
  font-size: 100px;
  font-weight: 900;
  pointer-events: none;
  position: absolute;
  color: #ffffff;
  line-height: 1;
  top: -64px;
  left: 30px;
  z-index: -1;
}

#events .tab_link {
  margin-top: 110px;
}

#events .tab,
#events .tab_link,
#events .tab_link>div {
  min-height: 100%;
}

@media (min-width: 768px) {
  #events .tab_link_entry {
    width: calc(33.33% - 20px);
  }

  #events .tab_link_entry+.tab_link_entry {
    margin-left: 30px;
  }
}

@media (max-width: 767px) {
  #events .tab_link_entry+.tab_link_entry {
    margin-top: 85px;
  }
}

#events .tab_link_title a {
  line-height: 1.2;
  font-weight: 900;
  font-size: 1.375rem;
  display: block;
  margin-bottom: 20px;
  color: #252525;
}

@media (max-width: 991px) {
  #events .tab_link_title a {
    font-size: 1.125rem;
  }
}

#events .tab_link_entry::before,
#events .tab_link_entry .tab_preview_picture {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  overflow: hidden;
}

#events .tab_link_entry::before {
  content: "";
  background: url("../img/events-platzhalterbild.jpg") center / cover no-repeat,
    #008571;
}

#events .tab_preview_picture {
  background: #ffffff;
}

#events .tab_preview_picture img {
  position: absolute;
  margin: 0 !important;
  left: 50%;
  top: 50%;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  max-width: 370px;
  width: auto;
  height: auto;
  -ms-interpolation-mode: bicubic;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

#events .tab_link_date {
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 1;
  display: inline-block;
  padding: 8px 40px;
  background: #ffffff;
  color: #252525;
}

#events .tab_link_mandat a,
#events .vorschau {
  color: #252525;
  opacity: 1 !important;
}

#events .tab_link_entries+div,
#events .tab_link_entries .tab_spacer,
#events .tab_link_entry>div:nth-last-child(2) {
  display: none;
}

#events .greenButton p:last-child {
  text-align: right;
}

@media (max-width: 767px) {
  #events .greenButton p:last-child {
    text-align: left;
  }
}

@media (max-width: 767px) {
  #events .greenButton a {
    margin-top: 10px;
  }
}

/* ------------------------------------------------ matter ----------------------------------------------- */

#matter {
  padding-bottom: 22px;
  padding-top: 66px;
}

@media (max-width: 767px) {
  #matter {
    padding-top: 40px;
  }
}

/* ------------------------------------------------ news ----------------------------------------------- */

#news {
  padding-top: 22px;
  padding-bottom: 42px;
}

@media (min-width: 1200px) {
  #news {
    background-image: url("../img/projekt.png");
    background-position: right bottom -50px;
    background-repeat: no-repeat;
  }
}

#news :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 400;
  margin-bottom: 0;
  font-size: 2.1875rem;
}

#news strong,
#news b {
  color: #252525;
  font-weight: 900;
}

#news .tab_link_entry {
  font-size: 1rem;
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding: 35px 30px 35px 300px;
  box-shadow: 0px 0px 20px 10px rgba(37, 37, 37, 0.1);
  -webkit-box-shadow: 0px 0px 20px 10px rgba(37, 37, 37, 0.1);
  -moz-box-shadow: 0px 0px 20px 10px rgba(37, 37, 37, 0.1);
  border: none !important;
}

@media (max-width: 767px) {
  #news .tab_link_entry {
    padding: 250px 30px 35px 30px;
  }
}

#news .tab_link {
  margin-top: 30px;
}

@media (min-width: 576px) {
  #news .tab_link_entries {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (min-width: 1200px) {
  #news .tab_link_entry {
    width: calc(50% - 20px);
  }

  #news .tab_link_entry:nth-child(2) {
    margin-left: 30px;
  }

  #news .tab_link_entry:nth-child(3) {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1199px) {
  #news .tab_link_entry {
    width: 100%;
  }

  #news .tab_link_entry+.tab_link_entry {
    margin-top: 30px;
  }
}

#news .tab_link_title a {
  margin-bottom: 25px;
  display: block;
  color: #252525;
  font-weight: 900;
  font-size: 1.25rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: break-word;
}

#news .tab_link_entry::before,
#news .tab_link_entry .tab_preview_picture {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  width: 270px;
}

@media (max-width: 767px) {

  #news .tab_link_entry::before,
  #news .tab_link_entry .tab_preview_picture {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: unset;
    height: 180px;
    overflow: hidden;
    width: 100%;
  }
}

#news .tab_link_entry::before {
  content: "";
  background: url("../img/news-platzhalterbild.jpg") center / cover no-repeat,
    #294d99;
}

#news .tab_preview_picture {
  background: #ffffff;
}

#news .tab_preview_picture img {
  position: absolute;
  margin: 0 !important;
  left: 50%;
  top: 50%;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  max-width: 270px;
  width: auto;
  height: auto;
  -ms-interpolation-mode: bicubic;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

#news .tab_date {
  position: absolute;
  top: 0;
  left: 200px;
  bottom: 0;
  margin: auto;
  width: 85px;
  height: 85px;
  background-color: #f0cd55;
  color: #252525;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  word-break: break-word;
  text-align: center;
  font-size: clamp(18px, 3vw, 1.375rem);
  font-weight: 900;
  z-index: 12;
}

@media (max-width: 767px) {
  #news .tab_date {
    right: 0;
    display: inline-block;
    left: 0;
    bottom: unset;
    top: 145px;
  }
}

#news .vorschau {
  color: #252525;
  opacity: 1 !important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

#news .tab_link_mehr,
#news .tab_link_mandat,
#news .tab_spacer {
  display: none;
  height: 0;
}

#news .greenButton p:last-child {
  text-align: right;
}

@media (max-width: 767px) {
  #news .greenButton p:last-child {
    text-align: left;
  }
}

@media (max-width: 767px) {
  #news .greenButton a {
    margin-top: 10px;
  }
}

/* ------------------------------------------------ road ----------------------------------------------- */

#road {
  position: relative;
  padding-bottom: 60px;
}

#bgHeadline {
  position: relative;
  background: rgb(41, 77, 153);
  background: -moz-linear-gradient(left,
      rgba(200, 79, 14, 1) 0%,
      rgba(200, 79, 14, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left,
      rgba(200, 79, 14, 1) 0%,
      rgba(200, 79, 14, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,
      rgba(200, 79, 14, 1) 0%,
      rgba(200, 79, 14, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

#bgHeadline::before {
  content: "";
  right: 0;
  bottom: -100px;
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100px;
  background: rgb(41, 77, 153);
  /* Old browsers */
  background: -moz-linear-gradient(left,
      rgba(200, 79, 14, 1) 0%,
      rgba(200, 79, 14, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left,
      rgba(200, 79, 14, 1) 0%,
      rgba(200, 79, 14, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,
      rgba(200, 79, 14, 1) 0%,
      rgba(200, 79, 14, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

@media (min-width: 768px) {
  #bgHeadline {
    position: relative;
    background: rgb(41, 77, 153);
    /* Old browsers */
    background: -moz-linear-gradient(left,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 30%,
        rgba(255, 255, 255, 1) 30%,
        rgba(200, 79, 14, 1) 30%,
        rgba(200, 79, 14, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 30%,
        rgba(255, 255, 255, 1) 30%,
        rgba(200, 79, 14, 1) 30%,
        rgba(200, 79, 14, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 30%,
        rgba(255, 255, 255, 1) 30%,
        rgba(200, 79, 14, 1) 30%,
        rgba(200, 79, 14, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }

  #bgHeadline::before {
    background: rgb(41, 77, 153);
    /* Old browsers */
    background: -moz-linear-gradient(left,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 30%,
        rgba(255, 255, 255, 1) 30%,
        rgba(200, 79, 14, 1) 30%,
        rgba(200, 79, 14, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 30%,
        rgba(255, 255, 255, 1) 30%,
        rgba(200, 79, 14, 1) 30%,
        rgba(200, 79, 14, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 30%,
        rgba(255, 255, 255, 1) 30%,
        rgba(200, 79, 14, 1) 30%,
        rgba(200, 79, 14, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
}

#road .roadHeadline :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 400;
  margin-bottom: 0;
  color: #ffffff;
  padding-top: 42px;
  padding-bottom: 35px;
  font-size: 1.875rem;
}

#road .roadHeadline strong,
#road .roadHeadline b {
  color: #ffffff !important;
}

.roadBox {
  background-color: #ffffff;
  box-shadow: 0px 0px 20px 10px rgba(37, 37, 37, 0.1);
  -webkit-box-shadow: 0px 0px 20px 10px rgba(37, 37, 37, 0.1);
  -moz-box-shadow: 0px 0px 20px 10px rgba(37, 37, 37, 0.1);
  padding: 20px 20px;
}

@media (min-width: 1200px) {
  .roadBox {
    font-size: 1.5625rem;
  }
}

.roadBox .tabContent {
  padding: 20px 0;
}

.roadBox .tab:hover {
  transition: all 300ms;
}

.roadBox a {
  color: #252525;
  display: block;
}

.roadBox a:hover {
  text-decoration: none;
}

/* ------------------------------------------ h1 - h6, newslink ----------------------------------------- */

.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
H6,
H5,
H4,
H3,
H2,
H1 {
  color: #294d99;
  font-weight: 900;
  line-height: 1.2;
  font-family: "Ruda", sans-serif;
}

h1,
.h1,
.legacy_h1 {
  font-size: 2.1875rem;
}

@media (min-width: 992px) {

  h1,
  .h1,
  .legacy_h1 {
    font-size: 2.8125rem;
  }
}

h2,
.h2,
.legacy_h2 {
  font-size: 1.875rem;
}

@media (min-width: 992px) {

  h2,
  .h2,
  .legacy_h2 {
    font-size: 2.5rem;
  }
}

h3,
.h3,
.legacy_h3 {
  font-size: 1.6rem;
}

h4,
.h4,
.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
.legacy_h4 {
  font-size: 1.5rem;
}

h5,
.h5,
.legacy_h5 {
  font-size: 1.4rem;
}

h6,
.h6,
.legacy_h6 {
  font-size: 1.3rem;
}

/* ----------------------------------------------- footer ----------------------------------------------- */

footer {
  background-color: #294d99;
  color: #ffffff;
}

@media (max-width: 767px) {
  footer .row>.col-xs-12:not(:first-child)::before {
    background: #ffffff;
    content: " ";
    height: 1px;
    width: 100%;
    display: block;
    margin: 25px 0;
    opacity: 0.2;
  }

  footer .row>.col-xs-12.hidden-xs~.col-xs-12::before,
  footer .row>.col-xs-12.hidden-sm~.col-xs-12::before {
    display: none;
  }
}

/* ----------------------------------------------- footerwrapper ----------------------------------------------- */

#footerwrapper {
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 1rem;
  line-height: 1.7;
}

#footerwrapper .tabHeadline {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 50px;
}

#footerwrapper a {
  color: #ffffff;
}

#footerwrapper .tab2 a {
  color: #ffffff;
  text-decoration: underline;
}

.arrowLinks .tiny_p+.tiny_p {
  margin-top: 32px;
}

.greenButton.arrowLinks a {
  width: 100%;
  background-color: #c84f0e;
}

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

  #footerwrapper>.row>div:first-child,
  #footerwrapper>.row>div:nth-child(2) {
    margin-bottom: 30px;
  }
}

/* --------------- scrollTopBtn --------------- */

a#scrollTopBtn {
  background-color: #c84f0e;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  position: relative;
  padding: 9px 62px 9px 32px;
  display: inline-block;
  margin-bottom: 32px;
  width: 100%;
}

a#scrollTopBtn::before {
  content: "\2192";
  right: 30px;
  top: 6px;
  bottom: 0;
  position: absolute;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  font-size: 20px;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
}

a#scrollTopBtn:hover::before,
a#scrollTopBtn:focus::before {
  top: 2px;
}

/* --------------- tabSocial --------------- */

.tabSocial {
  margin-top: 32px;
}

.tabSocial .tabHeadline {
  background-color: #c84f0e;
  color: #ffffff !important;
  margin: 0 !important;
  font-size: 0.875rem !important;
  position: relative;
  padding: 9px 60px 9px 20px;
  display: inline-block;
  font-weight: 400;
  width: 100%;
}

.tabSocial .tabContent {
  background: #ffffff;
  text-align: center;
  padding: 10px 15px;
  line-height: 0;
}

.tabSocial a,
.tabSocial p {
  display: inline-block;
}

.tabSocial p+p {
  margin-left: 15px;
}

/* ----------------------------------------------- lastFooter ----------------------------------------------- */

#lastFooter {
  border-top: 2px solid #fefefe;
  padding-top: 8px;
  padding-bottom: 8px;
}

#innerfooter ul {
  padding: 0;
}

#innerfooter li {
  display: inline-block;
}

#innerfooter a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
  font-size: 0.875rem;
  padding: 15px;
}

#innerfooter a:hover,
#innerfooter a:focus {
  background-color: #008571;
}

@media (max-width: 767px) {
  #innerfooter li {
    display: block;
    text-align: center;
    padding: 5px;
    margin: 0;
  }

  #innerfooter a {
    display: block;
  }
}

/* --------------------------------------------- vernetzt -------------------------------------------- */

#vernetzt {
  text-align: right;
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 auto;
  font-weight: 400;
  display: inline-block;
  text-decoration: none;
}

#vernetzt b {
  color: #ffffff;
  font-weight: 400;
}

#vernetzt span {
  color: #ffffff;
}

#vernetzt span span {
  display: block;
}

#vernetzt img {
  margin-left: 14px;
}

/* --------------------------------------------- contrast -------------------------------------------- */

.contrast_light main,
.contrast_dark main {
  filter: none;
  background: none;
}

.contrast_dark #contrast_style button {
  background: rgb(212, 212, 212) !important;
  border: none !important;
}

.contrast_light #contrast_style button {
  background: rgb(53, 53, 53) !important;
  border: none !important;
}

.contrast_dark #logo img {
  background: #fff;
}

.contrast_light_font #search_input {
  color: #000000 !important;
}

.contrast_dark_font #suche.tab::before {
  filter: brightness(0%);
  -webkit-filter: brightness(0%);
  -moz-filter: brightness(0%);
}

.contrast_light_font .themesTab2 a img,
.contrast_dark_font .themesTab2 a img {
  width: auto !important;
}

.contrast_dark_font #themes .themesTab2 :is(h1, h2, h3, h4, h5, h6) {
  color: #000000 !important;
  background: #ffffff !important;
}

#newsletterBox .contrast_dark_font {
  color: #fff !important;
}

.contrast_dark_font #newsletter_input {
  color: #000 !important;
}

.contrast_dark_font #vernetzt img {
  background-color: #000000;
}

.contrast_dark .navbar {
  background: rgba(0, 0, 0, 0) !important;
}

.contrast_dark_font #road .roadHeadline,
.contrast_dark_font #road .roadHeadline :is(h1, h2, h3, h4, h5, h6) {
  color: #fff !important;
}

.tab_link_title .contrast_grayscale {
  filter: none !important;
}

.contrast_dark_font #burgerButton::before,
.contrast_dark_font #burgerButton::after,
.contrast_dark_font #burgerButtonInner {
  background-color: #000000 !important;
}

.contrast_light_font #burgerButton::before,
.contrast_light_font #burgerButton::after,
.contrast_light_font #burgerButtonInner {
  background-color: #ffffff !important;
}

#opc-8920 a:hover {
  color: #005244;
}