@import url("https://fonts.verwaltungsportal.de/import/?family=Work+Sans:300,400,500,600,700");

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

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

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

a {
  color: #0668ae;
}

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

b,
strong {
  font-weight: 600;
}

.static {
  position: static;
}

/* ----------------------------------------------- topbar --------------------------------------------- */

#topbar > .row {
  background: #ffffff;
  padding-top: 18px;
  padding-bottom: 18px;
}

@media (min-width: 992px) {
  #topbar > .row {
    padding-top: 27px;
    padding-bottom: 27px;
    background: #ffffff;
  }
}

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

#logo {
  display: inline-block;
}

#logo img {
  display: block;
}

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

  #logo {
    padding: 10px 0;
  }
}

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

@media (min-width: 992px) {
  #style {
    display: inline-block;
    flex-shrink: 0;
    line-height: 1;
  }

  #style button {
    color: #444444;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 20px;
    display: inline-block;
  }

  #style button:hover,
  #style button:focus {
    color: #0668ae;
    text-decoration: underline;
  }

  #style button + button {
    margin-left: 6px;
    padding-left: 6px;
    border-left: 1px solid #444444;
  }
}

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

/* burgermenu for tablet */

@media (max-width: 991px) {
  #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: #00538e;
    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 {
    margin: 20px 0;
  }

  .navbar-collapse {
    top: 0;
    background: #00538e;
    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: rgba(0, 83, 142, 0.9);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 12;
  }

  nav.horizontally .navbar-nav {
    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;
  }

  nav.horizontally .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
  }

  nav.horizontally .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
  }

  nav.horizontally .navbar-nav > li,
  nav.horizontally .navbar-nav > li > .dropdown-menu > li {
    position: relative;
  }

  .navbar-default .navbar-nav li[class*="toplevel"] > ul,
  .navbar-default .navbar-nav li[class*="secondlevel"] > ul {
    display: block !important;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 300ms linear;
    -moz-transition: opacity 300ms linear;
    -ms-transition: opacity 300ms linear;
    -o-transition: opacity 300ms linear;
    transition: opacity 300ms linear;
  }

  .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: 0 !important;
  }

  .navbar-default .navbar-nav li[class*="toplevel"]:hover > ul,
  .navbar-default .navbar-nav li[class*="secondlevel"]:hover > u {
    z-index: 1003;
  }

  nav.horizontally .dropdown-menu {
    min-width: 280px !important;
  }
}

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

.navbar-default .navbar-nav > li > a {
  color: #ffffff;
  font-weight: 700;
  text-align: left;
  padding: 15px 35px 15px 15px;
  position: relative;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
}

@media (max-width: 991px) {
  .navbar-default .navbar-nav > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (min-width: 992px) {
  .navbar-default .navbar-nav > li > a {
    padding: 20px 0;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
  }
}

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

.navbar-default .navbar-nav > li > a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  bottom: 0;
  height: 5px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #ffffff;
  -webkit-transition: width 300ms linear;
  -moz-transition: width 300ms linear;
  -ms-transition: width 300ms linear;
  -o-transition: width 300ms linear;
  transition: width 300ms linear;
}

/* -------------------------------------------- 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;
}

.navbar-nav > li:focus-within > a {
  color: #f6f6f6;
}

.navbar-nav > li:hover > a::after,
.navbar-nav > li > a:hover::after,
.navbar-nav > li > a:focus::after,
.navbar-nav > li.open > a::after,
.navbar-nav > li.open > a:hover::after,
.navbar-nav > li.open > a:focus::after,
.navbar-nav > li[class$="_over"] > a::after,
.navbar-nav > li[class$="_over"] > a:hover::after,
.navbar-nav > li[class$="_over"] > a:focus::after {
  width: 100%;
}

.navbar-nav > li:focus-within > a::after {
  width: 100%;
}

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

.navbar-default .navbar-nav > li > .dropdown-menu {
  background: #0668ae;
}

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

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

@media (min-width: 992px) {
  .navbar-default .navbar-nav > li > .dropdown-menu,
  .navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 8px;
  }

  .navbar-default .navbar-nav > li > .dropdown-menu {
    left: 50%;
    -moz-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  .navbar-default .navbar-nav > li > .dropdown-menu::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: -20px;
    margin-left: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 20px;
    border-color: #ffffff transparent transparent transparent;
    -webkit-transition: top 150ms linear;
    -moz-transition: top 150ms linear;
    -ms-transition: top 150ms linear;
    -o-transition: top 150ms linear;
    transition: top 150ms linear;
  }

  .navbar-default .navbar-nav > li:hover > .dropdown-menu::after {
    top: 0;
  }

  .navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
    margin-top: -30px;
    margin-left: 10px;
  }

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

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

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

.navbar-default .navbar-nav > li > .dropdown-menu > li > a,
.navbar-default
  .navbar-nav
  > li
  > .dropdown-menu
  > li
  > .dropdown-menu
  > li
  > a {
  font-weight: 500;
  text-align: left;
  padding: 8px 25px;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
}

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

.navbar-default
  .navbar-nav
  > li
  > .dropdown-menu
  > li
  > .dropdown-menu
  > li
  > a {
  color: #0668ae;
}

@media (min-width: 992px) {
  .navbar-default .navbar-nav > li > .dropdown-menu > li > a,
  .navbar-default
    .navbar-nav
    > li
    > .dropdown-menu
    > li
    > .dropdown-menu
    > li
    > a {
    text-align: center;
    padding: 6px 20px;
  }
}

/* ------------------------------------------ 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: #ffffff;
  color: #0668ae;
}

.navbar-nav > li > .dropdown-menu > li:focus-within > a {
  background: #ffffff;
  color: #0668ae;
}

.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: #0668ae;
  color: #ffffff;
}

.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li:focus-within > a {
  background: #0668ae;
  color: #ffffff;
}

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

#headerpic {
  margin: 0 auto;
  position: relative;
  width: 100%;
  overflow: visible !important;
}

#slider {
  max-height: 300px;
  position: relative;
}

@media (min-width: 576px) {
  #slider {
    max-height: 480px;
  }

  body.index #slider {
    max-height: 690px;
  }
}

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

.slider-mask {
  display: none;
}

@media (min-width: 576px) {
  .slider-mask {
    display: block;
    background: linear-gradient(
      to top,
      rgba(24, 115, 180, 0.5),
      rgba(255, 255, 255, 0) 80%
    );
  }
}

@media (min-width: 992px) {
  .slider-mask {
    background: linear-gradient(
      to top,
      rgba(24, 115, 180, 0.5),
      rgba(255, 255, 255, 0) 60%
    );
  }

  .theme-default .nivo-controlNav {
    z-index: 6 !important;
  }
}

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

.nivo-directionNav {
  height: 40px;
  pointer-events: none;
  width: 100%;
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 80px;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (min-width: 992px) {
  .nivo-directionNav {
    max-width: 992px;
    bottom: 100px;
  }
}

@media (min-width: 1200px) {
  .nivo-directionNav {
    max-width: 1200px;
  }
}

#headerpic .theme-default .nivo-directionNav a {
  pointer-events: auto;
  background: #ffffff url("../img/banner-arrows.png") top 10px center / 18px
    auto no-repeat;
  width: 40px;
  height: 40px;
}

#slider + .nivo-controlNav {
  pointer-events: none;
}

#slider + .nivo-controlNav a {
  pointer-events: auto;
}

.theme-default .nivo-directionNav a.nivo-nextNav {
  -webkit-transform: scale(-1);
  transform: scaleX(-1);
}

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

@media (min-width: 576px) {
  #slider + .nivo-controlNav {
    bottom: 65px;
  }
}

@media (min-width: 992px) {
  #slider + .nivo-controlNav {
    bottom: 78px;
  }
}

#headerpic .theme-default .nivo-controlNav a {
  background: transparent;
  border-radius: 50%;
  border: 1px solid #ffffff;
  width: 12px;
  height: 12px;
}

#headerpic .theme-default .nivo-controlNav a.active {
  background-color: #ffffff;
}

#headerpic .theme-default .nivo-controlNav a + a {
  margin-left: 8px;
}

/* ------------------------------------------------ topInfo ----------------------------------------------- */

#topInfo {
  padding-top: 40px;
  position: relative;
  z-index: 1;
}

#topInfo > .row > div {
  margin-top: 40px;
}

@media (min-width: 768px) {
  #topInfo {
    padding-top: 60px;
  }
}

@media (min-width: 992px) {
  #topInfo {
    padding-top: 10px;
  }
}

@media (max-width: 991px) {
  #topInfo>.row>*+* {
      margin-top: 30px;
  }
}

#topInfo>.row>*:first-child {
  font-weight: 300;
  line-height: 1.3;
}

@media (min-width: 992px) {
  #topInfo>.row>*:first-child {
      padding-top: 50px;
      padding-right: 30px;
      padding-bottom: 110px;
  }
}

#topInfo>.row>*:first-child a {
  color: #ffffff;
}

#topInfo>.row>*:first-child a:hover,
#topInfo>.row>*:first-child a:focus {
  color: #ffffff;
  text-decoration: underline;
}

#topInfo>.row>*:first-child b, #topInfo>.row>*:first-child strong {
  font-weight: 700;
  font-size: 1.6rem;
}

@media (min-width: 992px) {
  #topInfo>.row>*:first-child b, #topInfo>.row>*:first-child strong {
      font-weight: 700;
      font-size: 36px;
  }
}

#topInfo>.row>*:first-child, #topInfo>.row>*:first-child h1, #topInfo>.row>*:first-child h2, #topInfo>.row>*:first-child h3, #topInfo>.row>*:first-child h4, #topInfo>.row>*:first-child h5, #topInfo>.row>*:first-child h6 {
  color: #ffffff;
  margin-bottom: 0;
}

#topInfo>.row>*:first-child b::after, #topInfo>.row>*:first-child strong::after {
  content: "-";
  display: block;
  color: #ffffff;
  line-height: 0.5;
  margin-top: 5px;
}


#topInfo::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50px;
  background: #0668ae;
  border-bottom-right-radius: 500px;
}

@media (min-width: 992px) {
  #topInfo::after {
    right: 50%;
    bottom: 73%;
    background-image: url("../img/silhouette-informiert.png");
    background-position: left bottom;
    background-repeat: no-repeat;
  }
}

#topInfo .tab {
  background: #f6f6f6;
  padding: 35px 30px 30px 30px;
  min-height: 100%;
  height: 100%;
  color: #444444;
  line-height: 1.3;
  position: relative;
}

@media (min-width: 768px) {
  #topInfo .tab {
    font-size: 1.125rem;
  }

  .tab_spacer {
    height: 20px;
  }
}

@media (min-width: 992px) {
  #topInfo .tab {
    padding-bottom: 70px;
  }
}

@media (min-width: 1200px) {
  #topInfo .tab {
    padding: 45px 40px 70px 40px;
  }
}

#topInfo .tabHeadline {
  color: #0668ae;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  #topInfo .tabHeadline {
    font-size: 1.4rem;
  }
}

@media (min-width: 1200px) {
  #topInfo .tabHeadline {
    font-size: 1.625rem;
  }
}

#topInfo .tab_link_mehr {
  color: transparent;
  font-size: 0;
}

#tab1 a:not(.has-image):not([rel]),
#topInfo .tab_link_mehr a {
  background: #00538e;
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 15px;
  text-decoration: none;
}

#topInfo .tab_link_mehr a {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1rem;
}

@media (min-width: 992px) {
  #topInfo .tab_link_mehr a {
    padding: 15px 34px;
    bottom: -10px;
    right: -10px;
  }

}


  #tab1 a:not(.has-image):not([rel]),
  #tab1 a#tab1 a:not(.has-image):not([rel]){
    position: relative;
    bottom: 0;
    right: 0;
    font-size: 1rem;
    padding: 15px 34px;
  }

#tab1 a:not(.has-image):not([rel]):hover,
#tab1 a:not(.has-image):not([rel]):focus,
#topInfo .tab_link_mehr a:hover,
#topInfo .tab_link_mehr a:focus {
  background: #0668ae;
}

#tab1 a:not(.has-image):not([rel])::after,
#tab1 a:not(.has-image):not([rel])::after,
#topInfo .tab_link_mehr a::after {
  content: "\2192";
  font-weight: 400;
  position: relative;
  left: 0;
  margin-left: 4px;
  -webkit-transition: left 200ms linear;
  -moz-transition: left 200ms linear;
  -ms-transition: left 200ms linear;
  -o-transition: left 200ms linear;
  transition: left 200ms linear;
}


#tab1 a:not(.has-image):not([rel])::after,
#tab1 a:not(.has-image):not([rel]):hover::after,
#tab1 a:not(.has-image):not([rel]):focus::after,
#topInfo .tab_link_mehr a:hover:after,
#topInfo .tab_link_mehr a:focus:after {
  left: 6px;
}

.tab_link_title a {
  color: #444444;
  font-weight: 600;
}

.tab_link_mandat a {
  color: #444444;
}

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

#content {
  text-align: left;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  #content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 992px) {
  #content {
    padding-top: 70px;
    padding-bottom: 100px;
    background-image: url("../img/silhouette-main.png");
    background-position: right bottom 130px;
    background-repeat: no-repeat;
  }
}

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

.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  font-weight: 700;
  line-height: 1;
  font-family: "Work Sans", serif;
  color: #0668ae;
}

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

@media (min-width: 576px) {
  h1,
  .h1,
  .legacy_h1 {
    font-size: 2.2rem;
  }
}

@media (min-width: 768px) {
  h1,
  .h1,
  .legacy_h1 {
    font-size: 2.7rem;
  }
}

@media (min-width: 992px) {
  body.index h1,
  body.index .h1,
  body.index .legacy_h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1200px) {
  body.index h1,
  body.index .h1,
  body.index .legacy_h1 {
    font-size: 3.4375rem;
  }
}

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

@media (min-width: 768px) {
  h2,
  .h2,
  .legacy_h2 {
    font-size: 2.2rem;
  }

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

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

@media (min-width: 768px) {
  h3,
  .h3,
  .legacy_h3 {
    font-size: 2rem;
  }
}

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

@media (min-width: 768px) {
  h4,
  .h4,
  .h4link a:link,
  .h4link a:hover,
  .h4link a:focus,
  .h4link a:visited,
  .legacy_h4 {
    font-size: 1.8rem;
  }
}

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

@media (min-width: 768px) {
  h5,
  .h5,
  .legacy_h5 {
    font-size: 1.6rem;
  }
}

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

@media (min-width: 768px) {
  h6,
  .h6,
  .legacy_h6 {
    font-size: 1.4rem;
  }
}

#newslinks,
#newsmandate {
  border: 1px solid #0668ae;
}

/* ----------------------------------------------- partner ----------------------------------------------- */

#partner {
  color: #00538e;
  font-size: 1.0625rem;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  padding: 20px 0;
}

#partner a {
  color: #00538e;
}

@media (max-width: 767px) {
  #partner {
    text-align: center;
  }
}

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

address {
  font-style: normal;
}

#footer {
  background: #00538e;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #ffffff;
  font-size: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
}

@media (max-width: 991px) {
  #footer > .row > div + div::before {
    background: rgba(135, 119, 119, 0.15);
    content: " ";
    height: 1px;
    width: 100%;
    display: block;
    margin: 25px 0;
  }
}

@media (min-width: 768px) {
  #footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  #footer > .row > div + div:nth-child(2):before {
    display: none;
  }

  #footer > .row > div + div::before {
    margin: 35px 0;
  }
}

@media (min-width: 992px) {
  #footer {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  #footer::before {
    content: "";
    top: 0;
    right: 0;
    bottom: -35px;
    left: 0;
    position: absolute;
    background-image: url("../img/Overlay.png");
    background-position: bottom center;
    background-repeat: no-repeat;
  }
}

#footer > .row > div:last-child > div + div {
  margin-top: 30px;
}

#footer a {
  color: #ffffff;
}

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

#footer .footerHeadline {
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 15px 0;
  font-size: 1.25rem;
}

#footer .footerHeadline.gap {
  margin-top: 30px;
}

@media (min-width: 992px) {
  #footer .footerHeadline.gap {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  #footer > .row > * + * {
    margin-top: 30px;
  }
}

#footer iframe,
#footer .iframe-wrapper-manual-enabling {
  width: 100% !important;
  display: block !important;
  min-width: 100% !important;
}

.shadow {
  position: relative;
  display: block;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}

.shadow::after {
  content: "";
  position: absolute;
  display: block;
  z-index: -1;
  left: 60px;
  right: 60px;
  top: 80%;
  bottom: 2px;
  -webkit-box-shadow: 0 20px 40px 0 rgba(153, 67, 67, 0.3);
  box-shadow: 0 20px 40px 0 rgba(153, 67, 67, 0.3);
}

.shadowContainer {
  width: 100%;
}

.shadowContainer > .shadow {
  width: auto;
  display: inline-block;
}


#newsletterInputs {
  height: 60px;
  background: #ffffff;
  display: inline-block;
  position: relative;
  width: 100%;
  margin-top: 40px;
}
#newsletter_input {
  color: #444444;
  font-size: 16px;
  font-style: normal;
  background: transparent;
  padding: 0;
  border: 0;
  line-height: 33px;
  padding-left: 20px;
  padding-right: 43px;
  height: 60px;
  width: 100%;
}
#newsletter_submit {
  width: 33px;
  background: #ffffff url('../img/newsletter-icon.png') center no-repeat;
  padding: 0;
  cursor: pointer;
  line-height: 33px;
  border: none;
  position: absolute;
  top: 0;
  right: 20px;
  height: 100%;
  font-size: 0;
  -webkit-transition: background-color 300ms linear;
  -moz-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  -o-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
}
#newsletter_submit:hover {
  background-color: #ffffff;
}
#newsletter_input::-ms-input-placeholder {
  color: #444444 !important;
}
#newsletter_input::-webkit-input-placeholder {
  color: #444444 !important;
}
#newsletter_input::-moz-placeholder {
  opacity: 1;
}
#newsletter_input:-moz-placeholder {
  opacity: 1;
}

/* --------------------------------------------- counter -------------------------------------------- */

#counter {
  width: 100%;
  max-width: 260px;
  text-align: justify;
  text-align-last: justify;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  #counter {
    font-size: 1.15rem;
  }
}

@media (min-width: 992px) {
  #counter {
    margin-right: 0;
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  #counter {
    margin-bottom: 30px;
  }
}

#counter span {
  padding-left: 26px;
  position: relative;
  font-weight: 700;
}

#counter span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 19px;
  height: 18px;
  background: url("../img/besucher-icon.png") center no-repeat;
}

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

#footer #vernetzt {
  text-align: right;
  color: #ffffff;
  line-height: 1.3;
  margin: 30px auto 0 auto;
  font-weight: 400;
  text-decoration: none;
  font-size: 0.8125rem;
}

@media (min-width: 992px) {
  #footer #vernetzt {
    float: right;
    margin-right: 0;
  }
}

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

#vernetzt span {
  color: #ffffff;
}

#vernetzt span span {
  display: block;
}

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

/* -------------------------------------------- innerfooter -------------------------------------------- */

#innerfooter {
  color: #444444;
  font-size: 1rem;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

@media (max-width: 991px) {
  .innerfooterLinks {
    margin-top: 30px;
  }
}

@media (min-width: 992px) {
  #innerfooter {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  #innerfooter::before {
    content: "";
    right: 0;
    bottom: 10px;
    left: 0;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: #0668ae;
  }
}

.footer_list ul {
  padding: 0;
}

.footer_list li {
  display: inline-block;
}

#innerfooter a {
  color: #444444;
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
  font-size: 1rem;
}

#innerfooter a:hover,
#innerfooter a:focus {
  color: #0668ae;
}

#innerfooter li + li {
  margin-left: 15px;
}

@media (min-width: 1200px) {
  #innerfooter li + li {
    margin-left: 25px;
  }
}

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

  #innerfooter li + li {
    margin-left: 0;
  }
}
