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

html {
  max-width: 1930px;
  margin-left: auto;
  margin-right: auto;
  background: #f4f9ff;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  scrollbar-color: #0764b9 #ffffff;
  scrollbar-width: thin;
}

body {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  color: #666666;
  background: #ffffff;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.5;
}

a {
  color: #950006;
}

a:is(:hover, :focus) {
  color: #950006;
  text-decoration: underline;
}

#content a {
  text-decoration: underline;
  font-style: italic;
}

#content a:is(:hover, :focus) {
  text-decoration: none;
}

b,
strong {
  font-weight: 600;
}

@media (min-width: 1200px) {
  .row {
    max-width: 1600px;
    width: 100%;
  }
}

a:focus-visible,
button:focus-visible,
form:focus-visible,
input:focus-visible {
  outline: 3px solid #ff0000 !important;
}

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

#logo {
  display: inline-block;
}

#logo img {
  display: block;
  max-width: 361px;
  transition: all 300ms linear;
}

.is-sticky #logo img {
  max-width: 300px;
}

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

/* #region ---------------------------------- navigation ---------------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
  nav.horizontally {
    min-height: 80px;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #0764b9;
  }

  #burgerButton {
    font-size: 0;
    border: none !important;
    display: block;
    height: 50px;
    width: 60px;
    border-radius: 2px;
    padding: 6px 8px;
    cursor: pointer;
    background-color: #ffffff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
  }

  #burgerButton::before,
  #burgerButton::after,
  #burgerButtonInner {
    background-color: #0764b9;
    border-radius: 2px;
    position: absolute;
    width: 40px;
    height: 3px;
    left: 10px;
    transition:
      transform 200ms linear,
      opacity 200ms linear;
  }

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

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

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

  #burgerButtonInner {
    top: 16px;
  }

  #burgerButton::before {
    top: 24px;
    content: "";
  }

  #burgerButton::after {
    top: 32px;
    content: "";
  }

  .navbar-nav {
    margin: 20px 0;
  }

  .navbar-collapse {
    width: calc(100% - 90px);
    max-width: 300px;
    top: 0;
    background: #ffffff;
    position: fixed;
    left: -100%;
    bottom: 0;
    z-index: 100;
    height: auto !important;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    overflow-y: auto;
    transition:
      left 300ms linear,
      opacity 300ms linear,
      box-shadow 600ms linear;
    box-shadow: 250px 0 50vw 50vw rgba(255, 255, 255, 0);
  }

  .navbar-collapse:is([aria-expanded="true"], .in) {
    left: 0;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    box-shadow: 250px 0 50vw 50vw rgba(0, 0, 0, 0.6);
  }

  .navbar-header {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 101;
  }

  .dropdown-toggle-button-wrapper {
    top: 7px;
  }

  .dropdown-toggle-button-wrapper2 {
    top: 5px;
  }
}

/* menu desktop */

@media (min-width: 992px) {
  nav.horizontally {
    padding: 33px 0 28px 0;
    background: #ffffff;
    border-bottom: 1px solid transparent;
    transition:
      border 300ms ease-in-out,
      padding 300ms ease-in-out;
  }

  .is-sticky nav.horizontally {
    padding: 20px 0;
    border-bottom-color: #0764b9;
  }

  #myNavbar,
  nav.horizontally .navbar-nav {
    column-gap: clamp(10px, 2vw, 25px);
  }

  nav.horizontally .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-grow: 1;
  }

  nav.horizontally .navbar-nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: block !important;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms linear;
  }

  nav.horizontally .navbar-nav [class*="secondlevel"]>ul {
    left: 100%;
    top: 0;
  }

  nav.horizontally .navbar-nav li {
    position: relative;
  }

  nav.horizontally .navbar-nav li:is(.open:focus-within, :hover)>ul,
  nav.horizontally .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible;
  }

  nav.horizontally .navbar-nav li:is(:hover, :focus-within)>ul {
    z-index: 1003;
  }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
  color: #262626;
  font-weight: 500;
  text-align: left;
  padding: 12px 15px;
  position: relative;
  font-size: 1.1875rem;
  line-height: 1.2;
  text-decoration: none;
}

@media (max-width: 991px) {
  nav.horizontally li[class*="toplevel"] {
    border-bottom: 1px solid rgba(72, 64, 147, 0.3);
  }

  nav.horizontally a[class*="toplevel"].dropdown-toggle {
    padding-right: 35px;
  }
}

@media (min-width: 992px) {
  nav.horizontally a[class*="toplevel"] {
    padding: 8px 2px;
  }

  nav.horizontally a[class*="toplevel"]::before {
    content: "";
    width: 0;
    height: 2px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
    background-color: #0764b9;
    transition: width 300ms linear;
  }
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"].open>a,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"][class*="_over"]>a,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus) {
  color: #0764b9;
  background-color: transparent;
}

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a::before,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"].open>a::before,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"][class*="_over"]>a::before,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus)::before {
  width: 100%;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  nav.horizontally [class*="toplevel"]>ul {
    padding: 15px 0;
  }

  nav.horizontally [class*="secondlevel"]>ul {
    padding: 15px 0 15px 15px;
  }
}

@media (min-width: 992px) {
  nav.horizontally [class*="toplevel"] ul {
    padding: 25px 20px;
  }

  nav.horizontally [class*="toplevel"]>ul {
    margin-top: 54px;
    margin-left: -25px;
  }

  .is-sticky nav.horizontally [class*="toplevel"]>ul {
    margin-top: 21px;
  }

  nav.horizontally [class*="secondlevel"]>ul {
    margin-top: -25px;
    margin-left: 40px;
  }

  nav.horizontally :is([class*="toplevel"], [class*="secondlevel"])>ul::before {
    content: "";
    position: absolute;
    display: block;
  }

  nav.horizontally [class*="toplevel"]>ul::before {
    height: 55px;
    left: 0;
    right: 0;
    top: -55px;
  }

  nav.horizontally [class*="secondlevel"]>ul::before {
    width: 40px;
    top: 0;
    bottom: 0;
    left: -40px;
  }
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
  color: #282828;
  font-weight: 400;
  text-align: left;
  padding: 10px;
  font-size: 1.0625rem;
  line-height: 1.2;
  text-decoration: none;
}

@media (max-width: 991px) {
  nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    padding-left: 15px;
    padding-right: 15px;
  }

  nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
    padding-right: 35px;
  }
}

/* secondlevel + thirdlevel over */

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within)>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a:is(:hover, :focus) {
  background: #0764b9;
  color: #ffffff;
}

/* #endregion ------------------------------- navigation ---------------------------------------- */
.button1 {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  margin-left: 15px;
  padding: 12px 27px;
  padding-left: 20px;
  transition: all 300ms;
  background: #0764b9;
  padding-left: 54px;
  position: relative;
  color: #fff;
  pointer-events: all;
  hyphens: auto;
  max-width: 175px;
}

.button1::before {
  background: url("../img/icon-telefon.png") no-repeat center / 20px auto;
  content: "";
  display: block;
  height: 20px;
  left: 14px;
  position: absolute;
  top: 13px;
  width: 23px;
}

.button1 a {
  all: unset !important;
  cursor: pointer !important;
  color: #fff;
}

.button1:is(:hover, .focus) {
  background-color: #012658;
}

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

#headerpic {
  background: #373737;
  position: relative;
  min-height: 450px;
}

#headerpic>*:not(.slider-wrapper):not(.sticky-wrapper):not(nav.horizontally) {
  position: relative;
  z-index: 10;
}

/* header text */

#header-text {
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  padding: clamp(60px, 12vw, 175px) 0 clamp(80px, 20vw, 160px) 0;
  line-height: 1.8;
  hyphens: auto;
}

.theme-default .nivo-controlNav a,
#header-text,
#header-text :is(h1, h2, h3, h4, h5, h6) {
  color: #fff;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

#header-text :is(h1, h2, h3, h4, h5, h6) :is(b, strong) {
  color: #fbfafa;
  font-size: clamp(2.1875rem, 3vw, 2.75rem);
  font-weight: 600;
  text-transform: uppercase;
}

#header-text :is(h1, h2, h3, h4, h5, h6) {
  color: #fbfafa;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 500;
  text-transform: uppercase;
}

/* banner */

#slider {
  position: relative;
  height: 100%;
}

@media (min-width: 992px) {
  #headerpic a.nivo-prevNav {
    left: 65px;
  }

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

@media (max-width: 1199px) {
  #headerpic a:is(.nivo-prevNav, .nivo-nextNav) {
    top: auto;
    bottom: 8px;
    z-index: 51;
  }
}

.slider-wrapper {
  position: absolute !important;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.slider-mask {
  display: block;
  background: linear-gradient(to right, rgba(40, 40, 40, 0.9) 220px, rgba(40, 40, 40, 0));
}

#headerpic .nivo-main-image {
  min-height: 100% !important;
}

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

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

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

/* #region --------------------------------------- buttons -------------------------------------- */

.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]) {
  display: inline-block;
  line-height: 1.2;
  color: #fefefe !important;
  font-size: 1.125rem;
  font-weight: 500;
  background: #0764b9;
  padding: 12px 58px 11px 20px;
  position: relative;
  text-decoration: none !important;
  text-shadow: none !important;
  hyphens: auto;
}

#header-text.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]) {
  display: inline-block;
  line-height: 1.2;
  color: #ffffff !important;
  font-size: 1.125rem;
  font-weight: 500;
  background: transparent;
  padding: 12px 58px 11px 20px;
  position: relative;
  text-decoration: none !important;
  text-shadow: none !important;
  border: solid 1px #ffffff !important;
  margin-top: 20px;
}

.button-design.button-design-2 a:not(.has-image):not([href*="mailto"]):not([href*="tel"]) {
  color: #0764b9 !important;
  background: #fff;
}

#header-text.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]) {
  margin-top: 20px;
  margin-right: 20px;
}

#aboutUs .tab.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]) {
  margin-top: 10px;
}

.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"])::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  top: 1px;
  right: 16px;
  width: 26px;
  transition: 300ms background linear;
  background: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='m28.15 35.25-1.65-1.6 8.6-8.6H8.6V22.8h26.5l-8.65-8.65 1.65-1.55 11.35 11.3Z' fill='%23fff'/%3E%3C/svg%3E") center left / 26px auto repeat-x;
}

.button-design.button-design-2 a:not(.has-image):not([href*="mailto"]):not([href*="tel"])::after {
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='m28.15 35.25-1.65-1.6 8.6-8.6H8.6V22.8h26.5l-8.65-8.65 1.65-1.55 11.35 11.3Z' fill='%230764b9'/%3E%3C/svg%3E");
}

.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]):is(:hover, :focus)::after {
  background-position-x: left 26px;
}

.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]):is(:hover, :focus) {
  background: #012658;
}

#header-text.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]):is(:hover, :focus) {
  background: #0764b9;
}

.button-design.button-design-2 a:not(.has-image):not([href*="mailto"]):not([href*="tel"]):is(:hover, :focus) {
  background: #ebebeb;
}

/* #endregion ------------------------------------ buttons -------------------------------------- */

/* #region -------------------------------------- service --------------------------------------- */

#aboutUs {
  margin: 60px 0px;
  hyphens: auto;
}

#aboutUs>.row {
  row-gap: 30px;
}

@media (min-width: 768px) {
  #aboutUs {
    background-size: clamp(20%, 30vw, 544px);
  }
}

#aboutUs .banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  min-height: 100%;
}

@media (max-width: 991px) {
  #aboutUs .banner {
    max-width: 400px;
    margin: 0 auto;
  }
}

#aboutUs .banner img {
  display: block;
  object-fit: cover;
  height: 100%;
}

#aboutUs .tab {
  padding-left: 55px;
}

@media (min-width: 992px) {
  #aboutUs .img {
    padding-right: 0;
  }

  #aboutUs .tab {
    padding-left: 30px;
  }
}

#aboutUs .tabBlueMini {
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  padding: 20px;
  background: #0764b9;
  position: absolute;
  bottom: 0;
  z-index: 1;
  left: 0;
}

@media (min-width: 992px) {
  #aboutUs .tabBlueMini {
    bottom: -20px;
    left: -30px;
  }
}

#aboutUs .tabBlueMini :is(b, strong) {
  display: block;
  font-size: clamp(1.25rem, 3vw, 2rem);
  text-transform: unset;
}

#aboutUs ul {
  padding-left: 30px;
  margin: clamp(15px, 4vw, 30px) 0 clamp(15px, 4vw, 40px) 0;
}

#aboutUs ul li {
  padding: 4px 0;
  background: transparent;
}

#aboutUs ul li::before {
  top: 6px;
  left: -30px;
  width: 22px;
  height: 14px;
  opacity: 1;
  background: url("../img/icon-check.png") center / 22px auto no-repeat;
}

/* #endregion ----------------------------------- service --------------------------------------- */

#tabs {
  position: relative;
  z-index: 30;
  background: #f8f9f9;
  margin: 30px;
  padding: 60px 0;
  hyphens: auto;
}

#tabs-bg {
  font-size: 1rem;
}

#tabs-bg>.row {
  row-gap: 30px;
}

#tabs-bg .tab {
  max-width: 100%;
  flex-grow: 1;
  position: relative;
  padding: 25px 20px;
  hyphens: auto;

}

#tabs-bg .tab img {
  margin-bottom: 20px;
  height: 65px;
  object-fit: scale-down;
  object-position: center;
}

#tabs-bg .tab {
  background-color: #fff;
  border: solid 1px rgba(40, 40, 40, 0.25);
  height: 100%;
}

#tabs-bg .tab :is(h1, h2, h3, h4, h5, h6) {
  color: #282828;
  font-weight: 500;
  font-size: 1.125rem;
}

#tabs-bg a {
  padding-right: 30px;
  color: #0764b9;
  font-weight: 500;
  display: inline-block;
  font-size: 1.125rem;
  background: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='m28.15 35.25-1.65-1.6 8.6-8.6H8.6V22.8h26.5l-8.65-8.65 1.65-1.55 11.35 11.3Z' fill='%230764b9'/%3E%3C/svg%3E") center right / 26px auto no-repeat;
}

/* #endregion ------------------------------------ tabs ----------------------------------------- */

/* #endregion ------------------------------------ tabsInfo ----------------------------------------- */

#tabsInfo {
  background-color: #0764b9;
  padding: 60px 0;
  color: #fff;
  hyphens: auto;
}

#tabsInfo a {
  color: #fff;
  text-decoration: underline;
}

#tabsInfo a:is(:hover, :focus) {
  text-decoration: none;
}

@media (min-width: 992px) {
  #tabsInfo .tab .btgrid>.row>*+* {
    border-left: solid 1px rgba(255, 255, 255, 0.3);
  }
}

#tabsInfo .tab {
  margin-top: 30px;
}

/* #endregion ------------------------------------ tabsInfo ----------------------------------------- */

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

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
  color: #282828;
  font-weight: 600;
  line-height: 1.2;
  font-family: "Jost", sans-serif;
}

h1,
.h1,
.legacy_h1 {
  font-size: clamp(2.375rem, 3vw, 2.5rem);
}

h2,
.h2,
.legacy_h2 {
  font-size: clamp(2rem, 2vw, 2.125rem);
}

h3,
.h3,
.legacy_h3 {
  font-size: clamp(1.75rem, 2vw, 2rem);
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
  font-size: clamp(1.5rem, 2vw, 1.75rem);
}

h5,
.h5,
.legacy_h5 {
  font-size: clamp(1.375rem, 2vw, 1.5rem);
}

h6,
.h6,
.legacy_h6 {
  font-size: clamp(1.25rem, 2vw, 1.375rem);
}

.headlineBereich :is(h1, h2, h3, h4, h5, h6),
#contactFooter :is(h1, h2, h3, h4, h5, h6) {
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 600;
  text-transform: none;
}

#tabs-bg .headlineBereich,
#tabs-bg .headlineBereich :is(h1, h2, h3, h4, h5, h6),
#aboutUs .headlineBereich,
#aboutUs .headlineBereich :is(h1, h2, h3, h4, h5, h6) {
  color: #282828;
  margin-bottom: 30px;
}

.headlineBereich :is(h1, h2, h3, h4, h5, h6) :is(i, em),
#contactFooter :is(h1, h2, h3, h4, h5, h6) :is(i, em) {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  font-style: normal;
}

#tabs-bg .headlineBereich :is(h1, h2, h3, h4, h5, h6) :is(i, em),
#aboutUs .headlineBereich :is(h1, h2, h3, h4, h5, h6) :is(i, em) {
  color: #0764b9;
  font-style: normal;
}

#tabsInfo .headlineBereich :is(h1, h2, h3, h4, h5, h6),
#contactFooter :is(h1, h2, h3, h4, h5, h6),
#footerKontaktdaten .headlineBereich :is(h1, h2, h3, h4, h5, h6),
#tabsInfo .headlineBereich :is(h1, h2, h3, h4, h5, h6) {
  color: #fff !important;
  margin-bottom: 30px;
}

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

#contactFooter>.row {
  row-gap: 30px;
}

#contactFooter {
  background: #012658;
  color: #ffffff;
  padding: clamp(30px, 4vw, 65px) 0;
  font-size: 1.125rem;
  hyphens: auto;
}

#contactFooter a {
  color: #fff;
  text-decoration: underline;
}

#contactFooter a:is(:hover, :focus) {
  text-decoration: none;
}

#contactFooter ul {
  margin: 0;
  padding-left: 0;
  padding-left: 30px;
}

#contactFooter ul li {
  position: relative;
  list-style: none;
}

#contactFooter ul li::before {
  top: 6px;
  left: -30px;
  width: 22px;
  height: 14px;
  opacity: 1;
  content: "";
  position: absolute;
  background: url("../img/icon-check-weiss.png") center / 22px auto no-repeat;
}

#contactFooter ul>li+li {
  margin-top: 8px;
}

#contactFooter ul li {
  padding: 4px 0;
  background: transparent;
}

/* ----------------------------------------------- #footer ----------------------------------------------- */
#footerKontaktdaten {
  background-color: #0764b9;
  padding: 10px 0;
  color: #fff;
}

#footerKontaktdaten>.row {
  row-gap: 30px;
}

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

#footer {
  color: #ffffff;
  font-size: 1.125rem;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #012658;
  font-weight: 400;
  hyphens: auto;
}

@media (min-width: 992px) {
  #footer {
    padding-top: 50px;
    padding-bottom: 12px;
    background-color: #012658;
    color: #fff;
  }
}

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

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

@media (min-width: 768px) and (max-width: 991px) {
  #footer>.row:first-child>*+*:last-child {
    margin-top: 20px;
  }
}

#footer hr {
  height: 1px;
  opacity: 0.3;
  margin-top: clamp(20px, 3vw, 50px);
  margin-bottom: clamp(20px, 3vw, 12px);
  background: #ffffff;
  border: unset !important;
}

#footer .kontakt-Tab :is(h1, h2, h3, h4, h5, h6) {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
}

#footer .kontaktRow a {
  color: #ffeda4;
  font-style: italic;
  text-decoration: underline;
}

#footer .kontaktRow a:is(:hover, :focus) {
  text-decoration: none;
}

/* ----------------------------------------------- contactBTN ----------------------------------------------- */

.contactBTN a {
  display: inline-block;
  line-height: 1.2;
  color: #ffffff !important;
  font-size: 1.125rem;
  font-weight: 500;
  background: transparent;
  padding: 12px 58px 11px 20px;
  position: relative;
  text-decoration: none !important;
  text-shadow: none !important;
  border: solid 1px #ffffff !important;
}

.contactBTN a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  top: 1px;
  right: 16px;
  width: 26px;
  transition: 300ms background linear;
  background: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='m28.15 35.25-1.65-1.6 8.6-8.6H8.6V22.8h26.5l-8.65-8.65 1.65-1.55 11.35 11.3Z' fill='%23fff'/%3E%3C/svg%3E") center left / 26px auto repeat-x;
}

.contactBTN a:hover,
.contactBTN a:focus {
  background: #012658;
}

.contactBTN a:is(:hover, :focus)::after {
  background-position-x: left 26px;
}

/* ----------------------------------------------- contactTEL ----------------------------------------------- */

.contactTEL {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
  position: relative;
  display: inline-block;
}

.contactTEL::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -40px;
  width: 31px;
  height: 31px;
  background: url("../img/icon-telefon-gross.png") center no-repeat;
}

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

#innerfooter ul {
  padding: 0;
}

#innerfooter li {
  display: inline-block;
  color: #ffffff;
}

#innerfooter a {
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
}

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

#innerfooter li+li::before {
  content: "•";
  margin: 0 15px;
}

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

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

  #innerfooter li+li::before {
    display: none;
  }
}

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

#vernetzt {
  gap: 16px;
  text-align: right;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.3;
  text-decoration: none;
}

@media (min-width: 1200px) {
  #vernetzt {
    padding: 15px 0;
  }
}

#vernetzt span span {
  display: block;
}

#vernetzt strong {
  color: #fff;
  font-weight: 600;
}

/* --------------------------------------------- Kontrast -------------------------------------------- */

.contrast_dark_font #burgerButton::before,
.contrast_dark_font #burgerButton::after,
.contrast_dark_font #burgerButtonInner,
.contrast_light_font .dropdown-toggle-button {
  background-color: #000 !important;
}

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

.contrast_light_font #logo img,
.contrast_light_font #contactFooter a {
  background-color: #fff !important;
}

.contrast_light_font #header-text {
  background: transparent !important;
}

.contrast_light_font .button1,
.contrast_light_font #aboutUs .tab.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]) {
  border: solid 1px #fff !important;
}

.contrast_dark_font .button1,
.contrast_dark_font #aboutUs .tab.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]) {
  border: solid 1px #000 !important;
}

.contrast_dark_font #header-text :is(h1, h2, h3, h4, h5, h6, p, i, em, a, b, strong) {
  background-color: #fff !important;
}

.contrast_dark_font #header-text.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]),
.contrast_dark_font .contactBTN a {
  background-color: #000 !important;
}

.contrast_dark_font #contactFooter ul li::before,
.contrast_dark_font #tabsInfo .btgrid .row img,
.contrast_dark_font .contactTEL::before {
  filter: brightness(0) !important;
}

.contrast_dark_font #tabsInfo .headlineBereich :is(h1, h2, h3, h4, h5, h6),
.contrast_dark_font #contactFooter :is(h1, h2, h3, h4, h5, h6),
.contrast_dark_font #footerKontaktdaten .headlineBereich :is(h1, h2, h3, h4, h5, h6),
.contrast_dark_font #tabsInfo .headlineBereich :is(h1, h2, h3, h4, h5, h6) {
  color: #000 !important;
}