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

body {
  font-family: "Raleway", sans-serif;
  color: #676767;
  background: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
}

a {
  color: #0c5c82;
}

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

b,
strong {
  font-weight: 600;
}

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

#logo {
  display: inline-block;
}

#logo img {
  display: block;
}

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

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

#topbar {
  padding-top: 15px;
  padding-bottom: 10px;
}

#topbar > .row > div:last-of-type > .row > div:first-of-type {
  display: flex;
  justify-content: end;
  align-items: center;
}

body.index #topbar > .row > div:last-of-type{
    display: flex;
    align-items: center;
}

@media (min-width: 576px) {
  #topbar > .row > div:first-of-type {
    padding-left: 0;
  }
  #topbar > .row > div:last-of-type {
    padding-right: 0;
  }
}

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

#search {
  height: 35px;
  display: inline-block;
  position: relative;
}
#search_input {
  color: #171717;
  font-size: 14px;
  font-style: normal;
  background: #f4f4f4;
  padding: 0;
  border: 0;
  line-height: 35px;
  padding-left: 10px;
  padding-right: 30px;
  height: 35px;
  width: 100%;
  position: relative;
  right: 90px;
}
#search_submit {
  width: 80px;
  background: #0c5c82;
  border-radius: 5px;
  padding: 0;
  cursor: pointer;
  line-height: 35px;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  transition: all 300ms;
}
#search_submit:hover,
#newsletter_submit:hover {
  transform: scale(1.05);
}
#search_input::-ms-input-placeholder {
  color: #171717 !important;
}
#search_input::-webkit-input-placeholder {
  color: #171717 !important;
}
#search_input::-moz-placeholder {
  opacity: 1;
}
#search_input:-moz-placeholder {
  opacity: 1;
}

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

@media (min-width: 992px) {
  #style button {
    font-size: 16px;
    background: transparent;
    padding: 0;
    border: none;
    color: #171717;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    position: relative;
    line-height: 1;
    -webkit-transition: color 150ms linear;
    -moz-transition: color 150ms linear;
    -ms-transition: color 150ms linear;
    -o-transition: color 150ms linear;
    transition: color 150ms linear;
  }
  #style button + button {
    margin-left: 8px;
  }
  #style button + button::before {
    display: block;
    position: absolute;
    content: "|";
    font-size: 16px;
    top: 0;
    left: -8px;
  }
  #style button:hover {
    color: #0c5c82;
  }
  #style {
    position: relative;
    padding-left: 130px;
    margin-left: 50px;
  }
  #style::before {
    display: block;
    position: absolute;
    content: "SCHRIFTGRÖßE:";
    font-size: 16px;
    font-weight: 400;
    color: #171717;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* --------------------------------------- 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: #0c5c82;
    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: #ffffff;
    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) {
  .horizontally {
    border: 2px solid #0c5c82;
    background-color: #0c5c82;
    margin-top: 10px;
  }
  .horizontally > .row {
    margin-left: 0;
    margin-right: 0;
  }
  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 .navbar-nav > li {
    flex-grow: 1;
  }
  nav.horizontally .dropdown-menu {
    position: absolute;
    top: calc(100% + 2px);
    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;
  }

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

  /* Pseudo */

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

  /* 3rd */

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

  /* Fade in Hover End */
}

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

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

@media (max-width: 991px) {
  .navbar-default .navbar-nav > li {
    border-bottom: 1px solid rgba(46, 60, 72, 0.2);
  }
  .navbar-default .navbar-nav > li > a {
    color: #0c5c82;
  }
}

@media (min-width: 992px) {
  .navbar-default .navbar-nav > li+li {
    margin-left: 5px;
  }
  .navbar-default .navbar-nav > li > a {
    padding: 6px 5px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: 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;
  }
}

/* -------------------------------------------- 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: #0c5c82;
  background-color: #ffffff;
}

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

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

.navbar-default .navbar-nav > li > .dropdown-menu,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

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

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

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

.navbar-default .navbar-nav > li > .dropdown-menu > li > a,
.navbar-default
  .navbar-nav
  > li
  > .dropdown-menu
  > li
  > .dropdown-menu
  > li
  > a {
  color: #5d5d5d;
  font-weight: 400;
  text-align: left;
  padding: 9px 25px;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
}

/* ------------------------------------------ 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,
.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: #0c5c82;
  color: #ffffff;
}

.navbar-nav > li > .dropdown-menu > li:focus-within > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li:focus-within > a {
  background: #0c5c82;
  color: #ffffff;
}

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

#slider {
  max-height: 200px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 992px) {
  #slider {
    max-height: 235px;
  }
  body.index #slider {
    max-height: 235px;
  }
  #headerpic a.nivo-prevNav {
    left: 65px;
  }
  #headerpic a.nivo-nextNav {
    right: 65px;
  }
}

#headerpic {
  margin: 0 auto;
  position: relative;
  width: 100%;
  border-bottom: 3px solid #9fc6ff;
  background-color: #171717;
}

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

.slider-mask {
  display: none;
}

/* ------------------------------------------------ bannertab ----------------------------------------------- */

#headerpic > .row {
  position: absolute;
  z-index: 7;
  left: calc(50% + 15px);
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  justify-content: center;
}

#bannertab {
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.77);
}

#bannertab b,
#bannertab strong {
  color: #6fd9d6;
  font-weight: 600;
}

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

main {
  text-align: left;
  padding-bottom: 30px;
  padding-top: 30px;
}

@media (min-width: 992px) {
  main {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}

@media (max-width: 991px) {
  body.index #content {
    margin-top: 30px;
  }
}

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

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

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

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

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

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

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.9rem;
}

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

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

#newslinks,
#newsmandate {
  border: 1px solid #2e3c48;
}

/* ----------------------------------------------- tabs ----------------------------------------------- */
body:not(.index) #tabs {
  margin-bottom: 30px;
}
#tabs .tab {
  position: relative;
  text-align: center;
  background-color: #0c5c82;
}

#tabs .tab a {
  display: block;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;

}

#tabs .tab:hover a,
#tabs .tab:focus a {
  color: #125885;
  text-decoration: none;
}

#tabs .tab::before {
  display: block;
  position: absolute;
  content: "";
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(80, 80, 80, 0.67);
  transition: all 300ms;
}

#tabs .tab:hover::before,
#tabs .tab:focus::before {
  background-color: rgba(255, 255, 255, 0.67);
}

#tabs .tiny_p:nth-of-type(1) {
  margin-bottom: -8px;
}

#tabs .tiny_p:nth-of-type(2) {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0px 15px;
  width: 100%;
}

@media (max-width: 767px) {
  #tabs > .row > div:not(:first-of-type) {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  #tabs > .row > div:not(:first-of-type):not(:nth-of-type(2)) {
    margin-top: 30px;
  }
  #tabs .tiny_p:nth-of-type(1) img {
    width: 100%;
  }
}

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

#news {
  margin-bottom: 30px;
}

#news .tab {
  border-radius: 3px;
  background-color: #9fc5ff;
  overflow: hidden;
  padding: 30px;
  color: #444444;
  font-size: 1.125rem;
  background-position: top 20px right 20px;
  background-repeat: no-repeat;
}

#news .tabHeadline {
  color: #444444;
  margin: 0 0 20px 0;
  font-weight: 700;
  font-size: 2rem;
}

@media (min-width: 768px) {
  #news .tabHeadline {
    margin: 0 0 25px 0;
  }
}

@media (min-width: 1200px) {
  #news .tabHeadline {
    -webkit-hyphens: manual;
    -moz-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
  }
}

#news .tabHeadline::after {
  display: none;
}

#news .tab_link_entry {
  font-size: 1rem;
  color: #444444;
  position: relative;
  width: 100%;
}

#news .tab_link_title a {
  line-height: 1.2;
  color: #0c5c82;
  font-weight: 700;
  font-size: 1.0625rem;
  display: block;
  margin-bottom: 8px;
}

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

#news {
  padding-top: 30px;
}

#news .tab {
  background-image: url("../img/aktuelles-bg-icon.png");
}

#news .tab a {
  color: #fff;
  text-decoration: underline;
}

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

#news .tab_link_entry {
  background: #ffffff;
  border-radius: 3px;
  padding: 160px 30px 30px 30px;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

@media (min-width: 576px) and (max-width: 767px) {
  #news .tab_link_entry {
    width: calc(50% - 15px);
  }
  #news .tab_link_entry:nth-child(2n + 1) {
    margin-right: 15px;
  }
  #news .tab_link_entry:nth-child(2n + 2) {
    margin-left: 15px;
  }
}

@media (min-width: 768px) {
  #news .tab_link_entry {
    width: calc(33.33% - 20px);
  }
  #news .tab_link_entry + .tab_link_entry {
    margin-left: 30px;
  }
}

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

@media (min-width: 576px) {
  #news .tab_link_entry:nth-child(2) {
    margin-top: 0;
  }
}

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

#news .tab_link_title a::before,
#news .tab_link_entry .tab_preview_picture {
  position: absolute;
  display: block;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 120px;
  overflow: hidden;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

#news .tab_link_title a::before {
  content: "";
  background: #666666 url("../img/placeholder-news.jpg") center / cover
    no-repeat;
}

#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: 350px;
  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 {
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  left: -1px;
  top: 105px;
  z-index: 1;
  display: inline-block;
  padding: 6px 20px;
  background: #004261;
  color: #fff;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

#news .tab_link_title a {
  color: #0c5c82;
}

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

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

#news .buttonStyle a {
  -moz-transition: background 300ms linear, color 300ms linear,
    border 300ms linear;
  -ms-transition: background 300ms linear, color 300ms linear,
    border 300ms linear;
  -o-transition: background 300ms linear, color 300ms linear,
    border 300ms linear;
  -webkit-transition: background 300ms linear, color 300ms linear,
    border 300ms linear;
  background: #004261;
  border-radius: 3px;
  border: 1px solid #ffffff;
  color: #ffffff;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 300ms;
}

@media (min-width: 768px) {
  #news .buttonStyle a + a {
    margin-left: 12px;
  }
}

#news .buttonStyle a::after {
  bottom: 1px;
  content: "\00BB";
  margin-left: 4px;
  position: relative;
}

#news .buttonStyle a:hover,
#news .buttonStyle a:focus {
  transform: scale(1.05);
}

/* ----------------------------------------------- contact ----------------------------------------------- */

#contact {
  color: #5d5d5d;
  font-size: 1rem;
  font-weight: 400;
}

#contact a {
  color: #0c5c82;
}

#contact h1,
#contact h2,
#contact h3,
#contact h4,
#contact h5,
#contact h6 {
  position: relative;
  color: #0c5c82;
  font-size: 1.5rem;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

#contact h1::before,
#contact h2::before,
#contact h3::before,
#contact h4::before,
#contact h5::before,
#contact h6::before {
  display: block;
  position: absolute;
  content: "";
  width: 3px;
  height: calc(100% + 15px);
  background-color: #0c5c82;
  right: -15px;
  top: calc(50% - 5px);
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  #contact {
    margin-top: 50px;
  }
}

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

footer {
  background-color: #0c5c82;
  padding-top: 12px;
  padding-bottom: 12px;
}

@media (min-width: 768px) {
  footer .row {
    align-content: center;
    align-items: center;
  }
}

@media (max-width: 767px) {
  #innerfooter {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

#innerfooter ul {
  padding: 0;
}

#innerfooter li {
  display: inline-block;
}

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

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

#innerfooter li + li::before {
  content: "|";
  color: #ffffff;
  margin: 0 6px;
}

@media (min-width: 992px) {
  #innerfooter li + li::before {
    margin: 0 20px;
  }
}

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

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

@media (min-width: 768px) {
  #vernetzt {
    margin: 0;
  }
}

#vernetzt span {
  color: #ffffff;
}

#vernetzt span span {
  display: block;
}

#vernetzt b {
  font-weight: 400;
}

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