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

/*Fonts für Dekor*/
@import url("https://fonts.verwaltungsportal.de/import/?family=Poppins:900");

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

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

a {
  color: #0874b2;
}

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

main a {
  font-weight: 500;
  text-decoration: underline;
}

b,
strong {
  font-weight: 600;
}

hr {
  height: 2px;
  opacity: 0.2;
  background: #000000;
}

.overflow {
  overflow: clip;
  position: relative;
}

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

#logo {
  display: inline-block;
}

#logo img {
  display: block;
}

@media (max-width: 991px) {
  #logo {
    padding: 15px 0;
    position: relative;
  }

  #logo img {
    max-width: 50%;
    width: 100%;
  }
}

@media (min-width: 992px) {
  #logo {
    position: absolute;
    top: -49px;
    margin-left: 5px;
    transition: top 300ms linear;
  }

  .is-sticky #logo {
    top: -30px;
  }

  #logo img {
    max-width: 100%;
    width: 100%;
    transition: max-width 300ms linear;
  }

  .is-sticky #logo img {
    max-width: 60%;
  }
}

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

/* burgermenu for tablet */

@media (max-width: 991px) {
  nav.horizontally {
    position: static !important;
  }

  #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: #0874b2;
    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: 64px;
    right: 15px;
    z-index: 101;
  }

  .is-sticky .navbar-header {
    top: 15px;
  }

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

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

/* menu desktop */

@media (min-width: 992px) {
  .sticky-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }

  nav.horizontally {
    background: rgba(255, 255, 255, 1);
    padding: 45px 0 35px 0;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
    transition: padding 200ms linear;
  }

  .is-sticky nav.horizontally {
    padding: 10px 0;
  }

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

  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.open>ul {
    pointer-events: none !important;
    opacity: 0 !important;
    visibility: hidden;
  }

  nav.horizontally .navbar-nav li:is(: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)>ul {
    z-index: 1003;
  }
}

/* toplevel */

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

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

  nav.horizontally li[class*="toplevel"]+li {
    border-top: 1px solid rgba(46, 60, 72, 0.2);
  }
}

@media (min-width: 992px) {
  nav.horizontally a[class*="toplevel"] {
    padding: 10px 0;
    text-align: center;
  }

  nav.horizontally li[class*="toplevel"]+li {
    margin-left: 15px;
  }
}

@media (min-width: 992px) {
  .navbar-default .navbar-nav>li.dropdownpr>a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 3px);
    display: block;
    width: 6px;
    height: 6px;
    border-right: 1px solid #595959;
    border-bottom: 1px solid #595959;
    transform: rotate(45deg);
  }
}

/* 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: #0874b2;
  background-color: transparent;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
  background-color: #ffffff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

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

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

/* secondlevel + thirdlevel */

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

@media (min-width: 992px) {
  nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    text-align: center;
  }

  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: #0874b2;
  color: #ffffff;
}

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

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

#slider {
  height: clamp(300px, 55vw, 550px);
  position: relative;
}

@media (min-width: 992px) {
  body.index #slider {
    height: clamp(550px, 70vw, 865px);
    margin-top: 8px !important;
  }

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

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

  body:not(.index) #headerpic .nivo-controlNav {
    bottom: 26px;
  }
}

@media (min-width: 992px) and (max-width: 1399px) {
  .index #headerpic a.nivo-nextNav {
    left: 65px;
    right: unset;
    top: 51%;
  }
}

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

.slider-wrapper,
.nivo-main-image,
#slider>a>div {
  height: 100% !important;
}

@media (min-width: 768px) {
  .slider-mask {
    display: block;
    background: url("../img/banneroverlay-links.png") no-repeat left -1px bottom, url("../img/banneroverlay-rechts.png") no-repeat right -1px bottom;
  }
}

/* overlay */

@media (max-width: 991px) {
  #overlay {
    background: #fff;
    padding-top: 30px;
  }
}

@media (min-width: 992px) {
  #overlay {
    position: relative;
    pointer-events: none;
    z-index: 12;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: -210px;
  }
}

#overlay .tab {
  pointer-events: auto;
  background: #ffffff;
  padding: clamp(30px, 3vw, 40px);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  font-size: 1rem;
}

#overlay .tabHeadline {
  color: #0874b2;
  font-size: clamp(1.5625rem, 3vw, 1.875rem);
}

#topContent {
  top: 20px;
  position: relative;
  z-index: 12;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (min-width: 992px) {
  #topContent {
    position: relative;
    z-index: 12;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: 110px;
    min-height: 70px;
  }
}

@media (min-width: 1200px) {
  #topContent::before {
    content: "#fussball";
    font-size: clamp(3rem, 12vw, 12rem);
    opacity: 0.08;
    font-weight: 900;
    font-family: "Poppins", sans-serif;
    position: absolute;
    right: 4vw;
    bottom: -2px;
    line-height: 0;
    z-index: -1;
  }
}

#banner-texts-teaser {
  right: auto;
  left: 80px;
}

/* #region ----------------------------------- search ------------------------------------------- */

#search {
  background: #e4e4e4;
  position: relative;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  width: 100%;
}

@media (min-width: 992px) {
  #search {
    width: auto;
  }
}

#search_input {
  color: #616161;
  font-size: 1rem;
  font-weight: 300;
  font-style: normal;
  background: transparent;
  border: 0;
  width: 100%;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 9px 14px;
  line-height: 1;
  max-width: calc(100% - 50px);
}

input:is([type="submit"], [type="reset"]) {
  border: 0px solid rgba(0, 0, 0, 0.15) !important;
}

#search_submit {
  background: transparent url("../img/icon-suche.png") top / 41px 41px no-repeat;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  margin: -5px -5px -5px 0;
  font-size: 0;
  aspect-ratio: 1/1;
  min-width: 45px;
  flex-shrink: 0;
  transition: transform 150ms linear;
}

@media (min-width: 768px) {
  #search_submit:is(:hover, :focus) {
    transform: scale(1.2);
  }
}

#search input::placeholder {
  color: #616161 !important;
  opacity: 1 !important;
  font-style: normal !important;
}

/* #endregion -------------------------------- search ------------------------------------------- */
/* #endregion --------------------------------- banner ------------------------------------------ */

/* ------------------------------------------ buttonStyle --------------------------------------- */

.tab_link_mehr {
  font-size: 0;
}

.tab_link_mehr a,
.buttonStyle a:not(.has-image):not([rel]) {
  font-weight: 700;
  display: inline-block;
  padding: 7px 18px 8px 18px;
  color: #ffffff;
  background: #262626;
  font-size: 1rem;
  text-decoration: none;
}

.tab_link_mehr a:is(:hover, :focus),
.buttonStyle a:not(.has-image):not([rel]):is(:hover, :focus) {
  background: #0874b2;
}

#news .tab.buttonStyle a:is(:hover, :focus) {
  background-color: #fff;
  color: #0874b2;
}

/* ---------------------------------------- specialHeadline ------------------------------------- */

.headlineTab {
  z-index: 12;
  position: relative;
}

.headlineTab .tabHeadline {
  color: #262626;
  text-align: center;
  margin: 0;
  position: relative;
}

.headlineTab .tabHeadline::before,
.headlineTab .tabHeadline::after {
  content: "";
  display: block;
  pointer-events: none;
}

.headlineTab .tabHeadline::before {
  width: 11px;
  height: 11px;
  background: #447759;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%);
}

.headlineTab .tabHeadline::after {
  max-width: 200px;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  margin: 30px auto 30px auto;
}

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

#content {
  text-align: left;
  padding-bottom: clamp(40px, 6vw, 60px);
}

@media (max-width: 991px) {
  #content {
    padding-top: 30px;
  }
}

/* #region -------------------------------------- news ------------------------------------------ */

#news {
  padding: clamp(40px, 6vw, 80px) 0 clamp(90px, 20vw, 130px) 0;
  position: relative;
  z-index: 12;
  background: center / cover no-repeat;
  overflow: hidden;
}

#news::after {
  content: "";
  pointer-events: none;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23ffffff" width="1920px" height="260px"><path d="M1973.1000,-0.000 C1973.1000,-0.000 1501.235,206.475 1433.235,240.475 C1376.569,265.475 1376.867,258.267 1360.1000,256.1000 C1350.533,254.533 0.000,2.1000 0.000,2.1000 L0.000,259.1000 L1976.1000,259.1000 L1973.1000,-0.000 Z"/></svg>') no-repeat bottom -1px center / 100% auto;
  width: 100%;
  height: 257px;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
}

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

#news .tab_link {
  display: flex;
  align-items: stretch;
  height: 100%;
}

@media (min-width: 992px) {
  #news .tab_link::before {
    content: "news";
    font-size: clamp(3rem, 12vw, 11.875rem);
    opacity: 0.08;
    font-weight: 900;
    font-family: "Poppins", sans-serif;
    position: absolute;
    left: -10vw;
    top: -35px;
    line-height: 0;
    z-index: -1;
  }
}

#news .tab_link_entries {
  display: grid;
  gap: 30px;
}

@media (min-width: 576px) {
  #news .tab_link_entries {
    grid-template-columns: repeat(2, 1fr);
  }
}

#news .tab_link_entry {
  background: #ffffff;
  padding: 30px;
  position: relative;
  padding-top: 210px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  border-bottom: none !important;
  font-size: 1rem;
  color: #404040;
}

#news .tab_link_entry .tab_spacer {
  display: none;
}

#news .vorschau {
  opacity: 1;
}

#news .tab_link_entry::before,
#news .tab_link_entry .tab_preview_picture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-height: 180px;
  height: 100%;
  overflow: hidden;
}

#news .tab_link_entry::before {
  content: "";
  background: center / cover no-repeat;
}

#news .tab_preview_picture img {
  margin: 0 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#news .tab_link_title a {
  color: #0874b2;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  display: block;
  text-decoration: none;
  font-size: 1.5rem;
}

#news .tab_date {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #ffffff;
  background: #0874b2;
  font-size: 0.875rem;
  padding: 5px 10px;
  z-index: 12;
}

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

/* news tab */

#news .tab {
  background: #0874b2;
  min-height: 100%;
  padding: 30px clamp(30px, 3vw, 40px) clamp(30px, 3vw, 40px) clamp(30px, 3vw, 40px);
  z-index: 12;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
}

#news .tab,
#news .tab :is(h1, h2, h3, h4, h5, h6) {
  color: #ffffff;
}

#news .tab::before {
  content: "";
  position: absolute;
  transform: rotate(45deg);
  width: 400px;
  height: 600px;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  right: 190px;
  top: -135px;
  z-index: -1;
}

#news .tab .tabHeadline::before {
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 25px;
  display: block;
  border: 8px solid #83b4d0;
  background: #ffffff url(../img/zeitung-icon.png) center no-repeat;
}

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

/* #endregion ----------------------------------- news ------------------------------------------ */

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

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

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

h2,
.h2,
.legacy_h2 {
  font-size: clamp(1.625rem, 3.5vw, 1.875rem);
}

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

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4,
#news .tab_link_entry .tab_link_title {
  font-size: 1.375rem;
}

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

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

/* #region ----------------------------------- contactRow --------------------------------------- */

#contactRow {
  padding-bottom: 40px;
  padding-top: 50px;
}

@media (max-width: 991px) {
  #contactRow {
    padding-top: 30px;
  }
}

#contactRow>.row {
  row-gap: 30px;
  padding-bottom: 45px;
  border-bottom: solid 2px #808080;
}

body:not(.index) #contactRow>.row {
  row-gap: 30px;
  padding-bottom: 45px;
  border-bottom: solid 2px transparent;
}

#contactRow .tabHeadline {
  color: #262626;
  margin: 0;
  margin-bottom: 10px;
}

.contactElement {
  font-size: 1rem;
  min-height: 30px;
}

.contactElement.social {
  padding-left: 0px;
  font-size: 1rem;
  min-height: 30px;
  text-align: center;
}

@media (max-width: 991px) {
  .contactElement.social {
    text-align: left;
  }
}

.contactElement.social img {
  padding-top: 5px;
}

.contactElement a {
  text-decoration: underline;
}

.iframeTab {
  min-height: 230px;
}

.iframeTab .template-page :is(.row, .row > *) {
  position: static !important;
}

.iframeTab :is(.iframe-wrapper-manual-enabling, iframe) {
  width: 100% !important;
  min-width: 100% !important;
}

@media (min-width: 768px) {
  .iframeTab :is(.iframe-wrapper-manual-enabling, iframe) {
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    left: 15px;
    height: 100% !important;
    width: calc(100% - 30px) !important;
    min-width: calc(100% - 30px) !important;
  }
}

/* ----------------------------------------------- footerBottom ----------------------------------------------- */

#partnerLogos {
  padding: 0 0px 70px 0;
  background: #ffffff;
  line-height: 1;
}

.sponsoren {
  min-height: 90px;
}

@media (min-width: 1200px) {
  #partnerLogos>.row::before {
    content: "";
    position: absolute;
    background: url(../img/deko-fussball.png) no-repeat;
    width: 552px;
    height: 294px;
    bottom: -70px;
    z-index: 0;
    pointer-events: none;
    right: -365px;
    display: block;
  }
}

#partnerLogos .tabHeadline {
  color: #262626;
  font-size: clamp(1.625rem, 3.5vw, 1.875rem);
  margin-bottom: 40px;
}

/* #endregion -------------------------------- contactRow --------------------------------------- */

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

#footerNav {
  background: #0874b2;
  padding: 20px 0;
}

@media (max-width: 767px) {
  #footerNav>.row>*+* {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

#innerfooter ul {
  padding: 0;
  font-size: 1rem;
}

#innerfooter li {
  display: inline-block;
}

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

#innerfooter a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
}

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

@media (min-width: 1200px) {
  #footerNav>.row::before {
    content: "";
    position: absolute;
    background: url(../img/fusszeile-ecke.png) no-repeat;
    width: 208px;
    height: 380px;
    bottom: -20px;
    z-index: 0;
    pointer-events: none;
    left: -365px;
    display: block;
  }
}

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

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

#vernetzt {
  gap: 18px;
  text-align: right;
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.3;
  font-weight: 400;
  text-decoration: none;
}

#vernetzt span span {
  display: block;
}