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

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

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

a {
  color: #002b82;
}

#content a {
  text-decoration: underline;
}

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

b,
strong {
  font-weight: 600;
}

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

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


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

#topbar {
  padding: 30px 0 15px 0px;
  background: #f9f9f9;
}

@media (max-width: 991px) {
  #topbar {
    padding: 30px 0 30px 0px;

  }

  #stickyArea {
    position: relative !important;
  }
}

@media (max-width: 575px) {
  #topbarNavigation {
    margin-bottom: 20px;
  }
}

#topbar .socialMedia .template-page>.row>.col-xs-12 {
  display: flex;
  gap: 10px;
}

#search {
  margin-left: 10px;
  margin-top: -1px;
}

#topbar .socialMedia a,
#topbar #search {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 100%;
  background-color: #002b82;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: filter 300ms ease;
}


#topbar .socialMedia a:is(:hover, :focus),
#topbar #search:is(:hover, :focus) {
  filter: brightness(135%);
}

@media (min-width: 992px) {
  #logo {
    position: absolute;
    bottom: -48px;
    transition: all 300ms linear;
  }

  .is-sticky #logo {
    bottom: -33px;
  }

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

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

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

  #logo img {
    max-width: 180px;
  }
}

#topbarNavigation ul {
  display: flex;
  align-items: center;
}

#topbarNavigation a {
  padding: 10px 10px 10px 30px;
  position: relative;
  font-weight: 600;
  font-size: 1rem;
  color: #002b82;
}

#topbarNavigation ul>li+li {
  position: relative;
}

#topbarNavigation ul>li>a::before {
  content: '';
  width: 25px;
  height: 100%;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-position: center center;
}

#topbarNavigation ul>li:nth-child(1)>a:before {
  background-image: url(../img/icon1.png);
}

#topbarNavigation ul>li:nth-child(2)>a:before {
  background-image: url(../img/icon2.png);
}

#topbarNavigation ul>li:nth-child(3)>a:before {
  background-image: url(../img/icon3.png);
}

#topbarNavigation ul>li+li {
  margin-left: 30px;
}

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

@media (min-width: 992px) {

  #style {
    margin-right: 70px;
  }

  #style span {
    font-size: 1.125rem;
    font-weight: 600;
    color: #002b82;
    width: unset;
    margin: 0 5px 0 0;
  }

  #style button {
    border: none;
    color: #002b82;
    display: inline-block;
    font-weight: 700;
    text-align: center;
    background: #ffffff;
    line-height: 1;
    font-size: 1rem;
    min-width: 36px;
    min-height: 36px;
    padding: 0 0 2px 0;
    margin-left: 10px;
    box-shadow:
      1px 1px 0 0 rgba(0, 0, 0, 0.2),
      0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    padding: 0;
  }

  #style button:is(:hover, :focus) {
    color: #fff;
    background: #002b82;
  }
}



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

/* burgermenu for tablet */

@media (max-width: 991px) {

  #menu {
    position: static !important;
  }

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

  #burgerButton::before,
  #burgerButton::after,
  #burgerButtonInner {
    background-color: #002b82;
    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: #fff;
    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: 6px;
  }

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

/* menu desktop */

@media (min-width: 992px) {

  #topbar>.row,
  #menu>.row {
    max-width: 1440px;
    width: 100%;
  }

  nav.horizontally {
    border-top: solid 2px #cfa758;
    padding-top: 60px;
    padding-bottom: 40px;
    background-color: #f9f9f9;
  }

  .is-sticky nav.horizontally {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  #logo {
    transform-origin: bottom center;
    display: block;
  }

  .is-sticky #menu {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    left: auto !important;
    border-bottom: 2px solid #cfa858;
  }


  #logo {
    transition: bottom 400ms cubic-bezier(0.4, 0, 0.2, 1),
      transform 400ms cubic-bezier(0.4, 0, 0.2, 1),
      opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  nav.horizontally .navbar-nav {
    display: flex;
    justify-content: space-between;
    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: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: #002b82;
  font-weight: 600;
  text-align: left;
  padding: 12px 15px 12px 30px;
  text-transform: uppercase;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 30px;
}

nav.horizontally li[id*="toplevel"]>a::before {
  content: '';
  width: 30px;
  height: 100%;
  position: absolute;
  left: 12px;
  background-position: left center;
  background-image: url(../img/iconnav3.png);
  background-position: left center;
  background-repeat: no-repeat;
  top: -1px;
}

nav.horizontally li[id*="toplevel"]:nth-child(1)>a::before {
  background-image: url(../img/iconnav1.png);
}

nav.horizontally li[id*="toplevel"]:nth-child(2)>a::before {
  background-image: url(../img/iconnav2.png);
}

nav.horizontally li[id*="toplevel"]:nth-child(4)>a::before {
  background-image: url(../img/iconnav4.png);
}

nav.horizontally li[id*="toplevel"]:nth-child(6)>a::before {
  background-image: url(../img/iconnav6.png);
}



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

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

  nav.horizontally a[class*="toplevel"] {
    padding-left: 45px;
  }
}

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

  nav.horizontally a[class*="toplevel"] {
    padding: 15px 20px 15px 45px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    filter: brightness(100%);
  }

  nav.horizontally a[class*="toplevel"]::before {
    transition: filter 300ms linear;
    filter: brightness(100%);
  }
}

/* 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: #fff;
  background-color: #002b82;
}

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 {
  filter: brightness(0) invert(1);
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

/* secondlevel + thirdlevel */

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

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

  nav.horizontally a:is([class*="thirdlevel"]) {
    text-align: left;
    padding-left: 55px;
  }

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

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])+li:not(:nth-child(2)) {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}


/* 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) {
  color: #002b82;
  background: #dceaf7;
}



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

/* #region -------------------------------------- Banner ------------------------------------------- */

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

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

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

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

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

.slider-mask {
  display: block;
  background: url('../img/banner-bogen.png') bottom center / 100% auto no-repeat;
}

@media (min-width: 992px) {
  .index .theme-nivo .nivo-controlNav {
    bottom: 80px;
  }
}

/* #region -------------------------------------- tab ------------------------------------------- */

#tabs {
  padding-top: 30px;
  hyphens: auto;
}

@media (min-width: 992px) {
  #tabs {
    padding-top: 0;
    position: relative;
    z-index: 60;
    margin-top: -75px;
  }
}

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

#tabs .tab {
  background: #ffffff url("../img/tab-hintergrund.jpg") center / cover no-repeat;
  border-radius: 20px;
  padding: 40px 20px 135px 20px;
  height: 100%;
  min-height: 100%;
  box-shadow: 0 60px 20px -50px rgba(0, 0, 0, 0.1);
}

#tabs .tab1 {
  background: #002b82 url("../img/logo-schuetzengau-ammersee-konturv2.png") right -50px bottom -50px no-repeat;
  padding: 40px 40px 60px 40px;
  color: #fff;
}

#tabs .tab .tabHeadline {
  font-size: 1.5625rem;
  margin-bottom: 0;
  padding-bottom: 25px;
  color: #002b82;
  letter-spacing: 1px;
  hyphens: auto;
}

#tabs .tab_link a {
  color: #404040;
}

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

#tabs .tab_link_mehr {
  font-size: 0;
}

#tabs .tab_spacer {
  height: 15px;
}

/* #endregion ----------------------------------- tab ------------------------------------------- */

/* ------------------------------------------- button style ------------------------------------- */

#tabs .tab_link_mehr a,
#ev19 .tab_link_mehr a,
#gallery a,
#facts a {
  font-size: 1.125rem;
  color: #404040;
  background: #ffffff;
  border-radius: 30px;
  border: 1px solid #002b82;
  display: inline-block;
  padding: 8px 20px;
  text-decoration: none;
}

#tabs .tab2 .tab_link_mehr a {
  position: absolute;
  left: 50%;
  bottom: 40px;
  white-space: nowrap;
  transform: translateX(-50%);
}

#tabs .tab_link_mehr a::after,
#gallery a::after,
#ev19 .tab_link_mehr a::after,
#facts a::after {
  content: " \203A \203A";
}

#tabs .tab_link_mehr a:is(:hover, :focus),
#ev19 .tab_link_mehr a:is(:hover, :focus),
#gallery a:is(:hover, :focus),
#facts a:is(:hover, :focus) {
  color: #ffffff;
  background: #002b82;
}

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

main {
  background: #f6f6f6;
}

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

body:not(.index) #content {
  padding-bottom: 100px;
}

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

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

#content h1 {
  border-bottom: 7px solid #cfa858;
  padding-bottom: 10px;
}

:is(h1, h2, h3, h4, h5, h6) :is(i, em) {
  font-style: normal;
  color: #002b82;
  font-size: 1.25rem;
  display: block;
}

h1,
.h1,
.legacy_h1,
:is(#facts .factsHeadline, #gallery) :is(h1, h2) {
  font-size: clamp(1.75rem, 4vw, 2.3rem);
}

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

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

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

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

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

/* ----------------------------------------------- @19ev events -------------------------------------------- */

#ev19 {
  position: relative;
  padding-top: 90px;
  padding-bottom: 60px;
}

@media (max-width: 767px) {
  #ev19 {
    padding-top: 40px;
    padding-bottom: 130px;
  }
}

#ev19>.row::before {
  content: "";
  position: absolute;
  left: 0;
  top: -92px;
  width: 470px;
  height: 470px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

@media (max-width: 1199px) {
  #ev19>.row::before {
    width: 370px;
    height: 370px;
  }
}

@media (max-width: 767px) {
  #ev19>.row::before {
    bottom: -92px;
    top: unset;
  }
}

#ev19 .ev19Box {
  position: relative;
}

#eventsKalender #clr-events-hide,
#eventsKalender .tab_link_mehr {
  display: none;
  height: 0;
}

#eventsKalender .eventclndr-tab {
  margin-bottom: 0;
  margin-top: 16px;
}

@media (max-width: 767px) {
  #eventsKalender .eventclndr-tab {
    margin-top: 0;
    margin-bottom: 15px;
  }
}

#eventsList {
  position: relative;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

#eventsList .tab_spacer {
  height: 0;
  display: none;
}

#eventsList .tab_link_entries {
  display: grid;
  gap: clamp(20px, 2vw, 30px);
}

#eventsList .tabHeadline {
  color: #fff !important;
  letter-spacing: 1px;
  hyphens: auto;
}

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

#eventsList .tab_link_mehr {
  font-size: 0;
  position: relative;
  text-align: left !important;
  text-align: center !important;
  margin-top: 20px;
}

#eventsList .tab_link_mandat a {
  color: #fff;
}

#eventsList .tab_link_mehr a {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

/* #region ------------------------------------ facts ------------------------------------------- */

#facts {
  padding: clamp(40px, 7vw, 150px) 0 clamp(100px, 8vw, 150px) 0;
  background-color: #002b82;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  font-size: 1.25rem;
}

#facts>* {
  position: relative;
  z-index: 2;
}

#facts :is(#insertWidget, iframe) {
  max-width: 350px;
  margin: 0 auto;
  display: block;
}

#facts::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 43, 130, 0.8) url("../img/fakten-hintergrund.png") center / cover no-repeat;
}

#facts :is(h1, h2, h3, h4, h5, h6, .factsHeadline),
#facts :is(h1, h2, h3, h4, h5, h6) :is(i, em) {
  color: #ffffff;
}

#facts :is(h1, h2, h3, h4, h5, h6, ) {
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  margin-bottom: 30px;
}

#facts :is(.factsHeadline, #factsBox .tab2) a {
  color: #ffffff;
}

#factsBox {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  margin-top: clamp(20px, 3vw, 50px);
  box-shadow: 0 80px 30px -50px rgba(0, 0, 0, 0.15);
}

#factsBox>.row {
  margin: 0;
}

#factsBox>.row>* {
  padding: clamp(40px, 7vw, 80px) clamp(30px, 5vw, 70px);
}

#factsBox img {
  min-height: 80px;
}

#facts a {
  background-color: transparent;
  border: 1px solid #fff;
  text-decoration: none;
  padding: 8px 28px;
}

#facts a:is(:hover, :focus) {
  color: #ffffff;
  background: #002b82;
}

/* #endregion --------------------------------- facts ------------------------------------------- */

/* ------------------------------------------- gallery ------------------------------------------ */

#gallery {
  padding: clamp(40px, 7vw, 80px) 0 clamp(70px, 9vw, 150px) 0;
  font-size: 1.25rem;
}

#gallery img {
  display: block;
  width: 100%;
}

#gallery .btgrid>.row:has(img) {
  margin: 0;
}

#gallery .btgrid>.row:has(img)>div {
  padding: 0 1px;
}

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

footer {
  margin-top: -20px;
  font-size: 1rem;
  hyphens: auto;
}

footer::before {
  content: "";
  display: block;
  height: 26px;
  background: linear-gradient(to right, #012c82, #cea858);
  pointer-events: none;
  position: relative;
  z-index: 1;
}

#footer {
  position: relative;
  padding: 80px 0 clamp(40px, 4vw, 50px) 0;
}

:is(#footer, #innerfooter)>.row {
  row-gap: 30px;
}


#footer::before {
  left: 0;
}

#footer::after {
  right: 0;
  transform: scaleX(-1);
}

#footerlogo {
  position: absolute;
  z-index: 2;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 991px) {
  #footerlogo {
    top: -150px;
  }

  #footerlogo img {
    max-width: 100px;
  }
}

#footer a {
  text-decoration: underline;
}

#footer .footerHeadline {
  font-size: 1.0625rem;
  margin-bottom: 6px;
  color: #002b82;
}

#footer a:not([href*="mailto"], [href*="formulare"]) {
  color: #404040;
  font-weight: 400;
  display: inline-block;
  text-align: center;
  font-size: 1rem;
  text-decoration: none;
  text-decoration: underline;
  line-height: 2;
}

#footer a:not([href*="mailto"], [href*="formulare"]):is(:hover, :focus) {
  color: #002b82;
}

#footer .footerHeadline::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #002b82;
  margin: 0 auto 15px auto;
  background-position: center;
  background-repeat: no-repeat;
}

#footer .tab1 .footerHeadline::before {
  background-image: url("../img/icon-mail.png");
}

#footer .tab2 .footerHeadline::before {
  background-image: url("../img/info-icon.png");
}

#footer .tab3 .footerHeadline::before {
  background-image: url("../img/link-icon.png");
}

#innerfooter {
  background-color: #002b82;
  padding: 28px 0;
}

#innerfooter ul {
  padding: 0;
}

@media (min-width: 576px) {
  #innerfooter li {
    display: inline-block;
  }

  #innerfooter li+li {
    margin-left: clamp(20px, 3vw, 40px);
  }
}

#innerfooter a {
  color: #ffffff;
}

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

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

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

#vernetzt span span {
  display: block;
}