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

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

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

a {
  color: #2d7a85;
  text-decoration: underline;
}

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

b,
strong {
  font-weight: 00;
}

#overflow {
  overflow: clip;
}

/* -------------------------------------------- logo -------------------------------------------- */
#logo {
  background-color: #fff;
}

#logo a {
  display: inline-block;
  margin: 20px auto;
}

#logo img {
  display: block;
}

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

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

/* burgermenu for tablet */

@media (max-width: 991px) {
  #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: #1e3a5f;
    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: 5px;
  }

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

/* menu desktop */

@media (min-width: 992px) {
  nav.horizontally {
    background: #ffffff;
    box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 10px 0 28px 0;
    transition: all 300ms linear;
  }

  .is-sticky nav.horizontally {
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  }

  nav.horizontally .navbar-nav > li {
    display: inline-block;
  }

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

  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: #364153;
  font-weight: 400;
  text-align: left;
  padding: 10px 15px;
  font-size: 1.125rem;
  line-height: 1.2;
  text-decoration: none;
  background: #f3f1f1;
  border-radius: 20px;
}

@media (max-width: 991px) {
  nav.horizontally a[class*="toplevel"].dropdown-toggle {
    padding-right: 35px;
  }
}

@media (min-width: 992px) {
  nav.horizontally li[class*="toplevel"] + li {
    margin-left: 25px;
  }

  nav.horizontally a[class*="toplevel"] {
    padding: 10px 18px;
    margin: 10px 5px;
  }
}

/* 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: #ffffff;
  background: linear-gradient(90deg, rgba(30, 58, 95, 1) 0%, rgba(45, 122, 133, 1) 100%);
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
  background-color: #ffffff;
  border: solid 1px rgba(30, 58, 95, 0.2);
  box-shadow: 0px 10px 20px 0px rgba(30, 58, 95, 0.1);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(30, 58, 95, 0.1);
  -moz-box-shadow: 0px 10px 20px 0px rgba(30, 58, 95, 0.1);
  border-radius: 6px;
}

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

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

  nav.horizontally [class*="toplevel"] > ul {
    margin-top: 15px;
    left: 50%;
    transform: translate(-50%, 0);
  }

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

  nav.horizontally [class*="toplevel"] > ul::before {
    content: "";
    position: absolute;
    display: block;
    height: 20px;
    left: 0;
    right: 0;
    top: -20px;
  }
  nav.horizontally [class*="secondlevel"] > ul::before {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    top: 0;
    bottom: 0;
    left: -10px;
  }
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
  color: #364153;
  font-weight: normal;
  text-align: left;
  padding: 8px 25px 8px 38px;
  font-size: 1.125rem;
  line-height: 1.2;
  text-decoration: none;
  position: relative;
}

@media (max-width: 991px) {
  nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
    padding-right: 35px;
  }
}

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
  content: "\00BB";
  position: absolute;
  top: 7px;
  left: 25px;
  margin-right: 4px;
}

/* 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: linear-gradient(90deg, rgba(30, 58, 95, 1) 0%, rgba(45, 122, 133, 1) 100%);
  color: #fff;
}

/* #endregion ------------------------------- navigation ---------------------------------------- */

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

/* #region ------------------------------------ banner ------------------------------------------ */

#slider {
  max-height: clamp(300px, 46vw, 450px);
  position: relative;
}

@media (min-width: 768px) {
  body.index #slider .nivo-directionNav a {
    top: unset;
    bottom: 10px;
    z-index: 51;
  }
}

@media (min-width: 992px) {
  body.index #slider {
    max-height: clamp(450px, 70vw, 650px);
  }

  body.index #slider .nivo-directionNav a {
    bottom: 110px;
  }
}

#headerpic {
  padding: 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1200px) {
  #headerpic {
    background: #173058;
  }
}

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

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

  body.index #headerpic .nivo-controlNav {
    bottom: clamp(60px, 10vw, 110px);
  }
}

.slider-mask {
  display: none;
}

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

#slogan {
  position: relative;
  pointer-events: auto;
  padding-top: 15px;
  color: #364153;
  line-height: 1.2;
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  text-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 10px 20px 0px rgba(30, 58, 95, 0.1);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(30, 58, 95, 0.1);
  -moz-box-shadow: 0px 10px 20px 0px rgba(30, 58, 95, 0.1);
  border: solid 1px #bedbff;
  font-family: "Roboto Mono", monospace;
  padding: 38px 40px 20px 40px;
  hyphens: auto;
}

#slogan :is(h2, h3, h4, h5, h6) {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 400;
  margin: 0;
  color: #1e3a5f;
  margin-bottom: 40px;
  hyphens: initial;
}

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

@media (min-width: 992px) {
  #slogan a {
    padding: 14px 30px;
  }
}

#slogan :is(b, strong) {
  text-transform: none;
  letter-spacing: 0;
}

@media (min-width: 1200px) {
  #bannerOverlay {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 53;
    pointer-events: none;
    border: none;
  }
}

@media (max-width: 1199px) {
  #bannerOverlay {
    margin: 30px 0;
  }
}

@media (max-width: 991px) {
  #slogan :is(h2, h3, h4, h5, h6) {
    hyphens: auto;
  }
}

/* #endregion --------------------------------- banner ------------------------------------------ */
/* ------------------------------------------------ @1tab ----------------------------------------------- */

#tab1 {
  padding: 60px 0 50px 0;
  background: linear-gradient(to right, #1e3a5f,#428791 100%);
}

@media (max-width: 1200px) {
  #tab1 {
    padding: 30px 0;
  }

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

#tab1 .tab {
  padding: 20px;
  font-size: 1.25rem;
  min-height: 100%;
  background-color: #ffffff;
  box-shadow: 0px 10px 20px 0px rgba(30, 58, 95, 0.1);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(30, 58, 95, 0.1);
  -moz-box-shadow: 0px 10px 20px 0px rgba(30, 58, 95, 0.1);
  border: solid 1px #bedbff;
  border-radius: 12px;
  color: #364153;
  text-align: center;
  padding-bottom: 25px;
  hyphens: auto;
}

#tab1 .tab.tabKontur2 {
  border: solid 1px #5fc9b8;
}

#tab1 .tab:hover {
transform: scale(1.03);
border-color: #1E3A5F;
transition: 0.25s ease;
cursor: pointer; 
}


#tab1 .tab a {
  color: #364153;
  text-decoration: none;
}
#tab1 .tab a:is(:hover, :focus) {
  color: #1e3a5f;
}

#tab1 .tab :is(h1, h2, h3, h4, h5, h6) {
  font-size: 1.5rem;
  font-weight: 400;
  color: #364153;
}

#tab1 .tab img {
  margin: 0;
  display: block;
  height: auto;
  border-radius: 6px;
  margin-bottom: 25px;
}

@media (max-width: 1199px) {
  #tab1 .tab img {
    margin: 0;
    margin-bottom: 0px;
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 25px;
    position: relative;
    width: 100%;
  }
}

#tab1 .headlineBereich :is(h1, h2, h3, h4, h5, h6) {
  color: #fff;
  background: linear-gradient(to right, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  font-size: 2.25rem;
  margin-bottom: 30px;
}
#tab1 .headlineBereich {
  font-size: 1.125rem;
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  color: #fff;
  margin-bottom: 40px;
}

#tab1 .buttonStyle {
  margin-top: 20px;
  padding: 12px 18px;
}
/* ------------------------------------------------ content ----------------------------------------------- */

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

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

/* ------------------------------------------------ Tabbereich ----------------------------------------------- */
#teaserBereich {
  margin: 60px 0 80px 0;
}
#teaser {
  position: relative;
  pointer-events: auto;
  padding-top: 15px;
  color: #364153;
  line-height: 1.5;
  font-size: 1.125rem;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 10px 20px 0px rgba(30, 58, 95, 0.1);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(30, 58, 95, 0.1);
  -moz-box-shadow: 0px 10px 20px 0px rgba(30, 58, 95, 0.1);
  border: solid 1px #bedbff;
  font-family: "Roboto Mono", monospace;
  padding: 40px 40px 50px 40px;
}

#teaser .tabHeadline {
  font-weight: 400;
  margin: 0 0 30px 0;
  font-size: clamp(1.5625rem, 5vw, 2.25rem);
  color: #1e3a5f;
  font-family: "Roboto Mono", monospace;
}

@media (max-width: 991px) {
  #teaser .tabHeadline {
    hyphens: auto;
  }
}

@media (min-width: 1200px) {
  #teaser .tabInhalt {
    padding: 0 100px;
  }
}

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

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
  font-family: "Roboto Mono", monospace;
  color: #1e3a5f;
  background: linear-gradient(to right, #1E3A5F, #2D7A85);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  font-weight: 400;
}

h1,
.h1,
.legacy_h1 {
  font-size: clamp(2.1875rem, 4.5vw, 2.5rem);
  text-align: center;
}

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

h3,
.h3,
.legacy_h3 {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
}

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

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

h6,
.h6,
.legacy_h6 {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
}

/* ----------------------------------------------- buttonStyle ----------------------------------------------- */
.buttonStyle a {
  background: linear-gradient(90deg, rgba(30, 58, 95, 1) 0%, rgba(45, 122, 133, 1) 100%);
  padding: 10px 15px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none !important;
  display: inline-block;
  font-weight: 400;
  font-size: 1.125rem;
  font-family: "Roboto Mono", monospace;
  margin-top: 20px;
  transition: all 300ms linear;
}

.buttonStyle a:is(:hover, :focus) {
  background: linear-gradient(-90deg, rgba(30, 58, 95, 1) 0%, rgba(45, 122, 133, 1) 100%);
}

#teaser.buttonStyle a {
  padding: 12px 20px;
}

/* ------------------------------------------------ @26tab ----------------------------------------------- */

#tab26 {
    margin: auto;
    width: 100%;
    max-width: 1200px;
    padding: 60px 0 50px 0;
}

#tab26 .headlineBereich :is(h1, h2, h3, h4, h5, h6) {
  color: #1e3a5f;
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  font-size: 2.25rem;
  margin-bottom: 30px;
}
#tab26 .headlineBereich {
  font-size: 1.125rem;
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  color: #364153;
  margin-bottom: 40px;
}

#tab26 .tab hr {
    margin: 22px 0 clamp(22px, 3vw, 40px) 0;
    background: #000;
    opacity: 0.2;
}

#tab26 .tab {
    font-size: 1rem;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #bedbff;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

#tab26 .tabKontur2 {
  border: solid 1px #5fc9b8;
}

#tab26 .tab :is(b, strong) {
    font-size: 1.375rem;
    font-family: "Roboto Mono", monospace;
    color: #1e3a5f;
    background: linear-gradient(to right, #1e3a5f, #2D7A85);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    font-weight: 400;
}

#tab26 img {
    left: -20px;
    top: -20px;
    display: block;
    max-width: unset;
    position: relative;
    width: calc(100% + 40px);
}

/* ----------------------- @26tab slider arrows + dots ------- DO NOT DELETE ----------------------- */

#tab26 .slick-slide {
    padding: 15px;
}

#tab26 .slick-dots button,
#tab26 .slick-button {
    background: transparent;
    border: none;
    padding: 5px;
}

#tab26 .slick-button {
    font-size: 0px;
    position: relative;
    top: 4px;
}

#tab26 .slick-prev {
    margin-left: 14px;
}

@media (max-width: 767px) {
    #tab26 .slick-next {
        margin-left: 14px;
    }
}

#tab26 .slick-button::before {
    display: block;
    line-height: 9px;
    height: 20px;
    font-size: 40px;
    color: #000000;
}

#tab26 .slick-button::after {
    content: "";
    position: absolute;
    pointer-events: none;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.05);
    transition: width 200ms linear, height 200ms linear;
    z-index: -1;
}

#tab26 .slick-button:focus::after,
#tab26 .slick-button:hover::after {
    width: 28px;
    height: 28px;
}

@media (max-width: 767px) {
    #tab26 .slick-button::after,
    #tab26 .slick-button::after {
        width: 28px;
        height: 28px;
    }
}

#tab26 .slick-dots {
    padding: 0 15px;
    list-style: none;
}

#tab26 .slick-dots>li {
    display: inline-block;
    position: relative;
    top: 50%;
    font-size: 0px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #aaaaaa;
    transform: translateY(-50%);
}

#tab26 .slick-dots,
#tab26 .slick-button {
    display: inline-block !important;
}

@media (max-width: 767px) {
    #tab26 .slick-dots {
        display: none !important;
    }
}

#tab26 .slick-dots>li.slick-active {
    background: #364153;
    transition: background 200ms linear;
}

#tab26 .slick-dots>li+li {
    margin-left: 10px;
}

#tab26 .slick-prev::before {
    content: "\2039";
}

#tab26 .slick-next::before {
    content: "\203A";
}

/* ------------ @26tab slider 1 stop/play button for accessibility ------- DO NOT DELETE ------------ */

#tab26 .slick-animate-control {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    top: -5px;
    left: 10px;
    border: 1px solid #ffffff;
    background-color: #000;
    background-size: 16px 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M12 36V12h24v24Z' fill='%23fff'/%3E%3C/svg%3E");
}

#tab26 .slick-animate-control.slick-pause {
    background-size: 20px 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M16 37.85v-28l22 14Z' fill='%23fff'/%3E%3C/svg%3E");
}



/* ----------------------------------------------- @1f footer ----------------------------------------------- */

#f1 {
  color: #6A7282;
  font-size: 1rem;
  padding-top: 55px;
  background-color: #ffffff;
  box-shadow: -1px 1px 6px 0px rgba(30, 58, 95, 0.1);
  -webkit-box-shadow: -1px 1px 6px 0px rgba(30, 58, 95, 0.1);
  -moz-box-shadow: -1px 1px 6px 0px rgba(30, 58, 95, 0.1);
  line-height: 1.5;
}

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

#f1 a,
#f1 a:hover,
#f1 a:focus {
  color: #364153;
}

#f1 .tabHeadline {
  font-size: 1.25rem;
  font-weight: 500;
  color: #364153;
  font-family: "Roboto", sans-serif;
  -webkit-text-fill-color: unset;
}

#f1 .footerTabLogo {
  color: #364153;
  font-size: 1.125rem;
}
#f1 .footerTabLogo :is(h1, h2, h3, h4, h5, h6) {
  color: #364153;
  font-size: 1.25rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 20px;
  font-family: "Roboto", sans-serif;
  -webkit-text-fill-color: unset;
}

#f1 .footerTab {
  line-height: 1.7;
}
/* --------------------------------------------- innerfooter -------------------------------------------- */

#innerfooter ul {
  padding: 0;
}

#innerfooter a {
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  padding: 4px 10px 4px 0px;
}

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

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

#vernetzt {
  font-size: 1rem;
  color: #364153;
  line-height: 1.2;
  font-weight: 400;
  text-decoration: none;
}
#vernetzt img {
  margin-bottom: 15px;
}

#vernetzt span {
  display: block;
}

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

.rowHeight {
  height: 100%;
}

.rowBorder {
  border-top: 2px solid #e1e3e6;
  margin-top: 30px;
}

.copyright {
  padding: 25px 0;
}