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

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

body {
  font-family: "Montserrat", sans-serif;
  color: #0d0d0d;
  background: #ffffff;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.125rem);
  /* 1rem = 16px */
  line-height: 1.5;
}

a {
  color: #012f15;
}

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

#content a,
b,
strong {
  font-weight: 600;
}

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

@media (min-width: 1200px) {
  nav.horizontally>.row {
    max-width: 1440px;
    width: 100%;
  }
}

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

#logo {
  display: inline-block;
}

@media (min-width: 992px) {

  #logo {
    top: -7px;
    transition: all 300ms linear;
  }
  .is-sticky #logo {
    top: -8px;
  }
  #logo img {
    transition: all 300ms linear;
  }

  .is-sticky #logo img {
   transform: scale(0.8);
  }
}

#logo img {
  display: block;
}

@media (max-width: 991px) {
  #logo img {
    max-width: calc(100vw - 120px);
    width: 100%;
    margin-bottom: 15px;
  }
}

/* ------------------------------------------- contactSocial --------------------------------------------- */

.contactSocial {
  line-height: 1;
}

.contactSocial p {
  display: inline-block;
}

.contactSocial a {
  display: inline-block;
  text-align: center;
  width: 46px;
  height: 46px;
  padding: 12px;
  border-radius: 50%;
  background: #422a13;
  transition: background 300ms linear;
}

.contactSocial img {
  display: block;
}

.contactSocial p+p,
.contactSocial a+a {
  margin-left: 15px;
}

.contactSocial a:is(:hover, :focus) {
  background: #fefefe;
}

.contactSocial a:is(:hover, :focus) img {
  filter: brightness(0);
}

@media (max-width: 991px) {
  .contactSocial {
    margin: 15px 0;
  }
}

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

/* burgermenu for tablet */

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

  #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: #0b2e16;
    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: #0b2e16;
    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: 4px;
  }

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

/* menu desktop */

@media (min-width: 992px) {
  nav.horizontally {
    background: #0b2e16;
  }

  nav.horizontally .navbar-nav {
    display: flex;
  margin: 31px 0 31px 30px;
    justify-content: space-between;
    align-items: center !important;
    flex-wrap: wrap;
    transition: all 300ms linear;
  }

  .is-sticky   nav.horizontally .navbar-nav  {
    margin: 16px 0 16px 30px;
  }
  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: #fff;
  font-weight: 400;
  text-align: left;
  padding: 10px 15px;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.2;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}

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

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

  nav.horizontally a[class*="toplevel"] {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
  }
}

@media (min-width: 992px) {
  nav.horizontally li[class*="toplevel"]+li {
    margin-left: clamp(10px, 2vw, 20px);
  }

  nav.horizontally a[class*="toplevel"] {
    padding: 8px 0;
    text-align: center;
  }
}

nav.horizontally a[class*="toplevel"]::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
  width: 0;
  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: #fff;
}

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 {
  padding: 10px;
  background-color: #ffffff;
}

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

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

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

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

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

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

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
  color: #0d0d0d;
  text-align: left;
  padding: 10px 40px 10px 20px;
  font-weight: 400;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.2;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 991px) {
  nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    font-size: 1rem;
    padding: 10px 35px 10px 20px;
  }
}

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

/* 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: #422a13;
  color: #ffffff;
}

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

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

@media (min-width: 992px) {
    body.index #slider {
        max-height: clamp(400px, 62vw, 568px);
    }

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

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

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

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

.slider-mask {
    display: none;
}


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

#bannerOverlay {
top: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  position: absolute;
  bottom: 0;
  margin: auto;
  z-index: 12;
  left: 0;
  right: 0;
  height: fit-content;
}
@media (max-width: 991px) {
  #bannerOverlay {
position: relative;
    
  }
}

@media (min-width: 1400px) and (max-width: 1600px) {
  .sloganHeadline {
    margin-bottom: 35px !important;
    margin-top: -50px !important;
  }
}

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

/* ---------------------------------------- tab with border ------------------------------------- */

#slogan,
#teaser {
  pointer-events: auto;
  background: rgba(13, 13, 13, 0.56);
  padding: clamp(30px, 4vw, 60px);
  position: relative;
  color: #fff;
  hyphens: auto;
}

#slogan {
  padding-top: clamp(40px, 10vw, 190px);
  background: #0b2e16;
}

.sloganHeadline {
  margin: 0 0 14px 0;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 3.5rem) !important;
  font-family: "Cinzel", sans-serif;
  margin-bottom: 65px;
}

.sloganHeadline {
  text-transform: uppercase;
}

:is(#slogan, #teaser)::before {
  content: "";
  position: absolute;
  display: block;
  top: 28px;
  right: 28px;
  bottom: 28px;
  left: 28px;
  border: 3px solid rgba(255, 255, 255, 0.48);
  pointer-events: none;
}

@media (max-width: 991px) {
  #slogan::before {
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
  }
}

@media (min-width: 992px) {
  .logo {
    top: -60px;
    position: relative;
  }
}

@media (max-width: 992px) {
  .logo {
    top: -38px;
    position: relative;
  }
}

/* ------------------------------------------- buttons ------------------------------------------ */

.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]) {
  display: inline-block;
  line-height: 1.2;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.375rem) !important;
  font-weight: 400;
  background: #422a13;
  padding: 18px 68px 18px 35px;
  position: relative;
  text-decoration: none !important;
  text-shadow: none !important;
  margin-bottom: 15px;
}

.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"])::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  top: 1px;
  right: 23px;
  width: 37px;
  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='%23262626'/%3E%3C/svg%3E") center left / 45px auto repeat-x;
}

.button-design 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='%23fff'/%3E%3C/svg%3E");
}

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

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

.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]):is(:hover, :focus)::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='%230d0d0d'/%3E%3C/svg%3E");
}

.button-design2 a:not(.has-image):not([href*="mailto"]):not([href*="tel"]) {
  display: inline-block;
  line-height: 1.2;
  color: #fff;
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  background: #422a13;
  padding: 8px 46px 8px 20px;
  position: relative;
  text-decoration: none !important;
  text-shadow: none !important;
  margin-bottom: 15px;
}

#nw1 .button-design2 a:not(.has-image):not([href*="mailto"]):not([href*="tel"]) {
  padding: 13px 46px 13px 20px;
  margin-bottom: 0;
}

.button-design2 a:not(.has-image):not([href*="mailto"]):not([href*="tel"])::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  top: 1px;
  right: 15px;
  width: 27px;
  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='%23262626'/%3E%3C/svg%3E") center left / 31px auto repeat-x;
}

.button-design2 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='%23fff'/%3E%3C/svg%3E");
}

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

.button-design2 a:not(.has-image):not([href*="mailto"]):not([href*="tel"]):is(:hover, :focus) {
  background: #a0ca8c;
  color: #0d0d0d !important;
}

.button-design2 a:not(.has-image):not([href*="mailto"]):not([href*="tel"]):is(:hover, :focus)::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='%230d0d0d'/%3E%3C/svg%3E");
}

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

#content {
  text-align: left;
  padding-top: 30px;
  padding-bottom: clamp(30px, 4vw, 70px);
}

/* -------------------------------------------- breaker ----------------------------------------- */

#breaker {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
}

#teaser .teaserHeadline {
  font-size: clamp(2rem, 5vw, 3.125rem);
}

#teaser {
  pointer-events: auto;
  background: rgba(13, 13, 13, 0.46);
  padding: clamp(30px, 7vw, 75px) clamp(30px, 4vw, 60px);
  position: relative;
  color: #fff;
  font-size: 1.375rem;
}

.teaserHeadline {
  margin: 0 0 14px 0;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 3.1875rem) !important;
  font-family: "Cinzel", sans-serif;
}

.teaserHeadline {
  text-transform: uppercase;
}

:is(#teaser)::before {
  content: "";
  position: absolute;
  display: block;
  top: 20px;
  right: 30px;
  bottom: 20px;
  left: 30px;
  border: 3px solid rgba(255, 255, 255, 0.48);
  pointer-events: none;
}

/* ----------------------------------------------- @1nw news -------------------------------------------- */

#nw1 {
  padding-top: 30px;
  padding-bottom: clamp(30px, 4vw, 55px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#nw1>.row {
  row-gap: clamp(30px, 3vw, 45px);
}

#nw1 .tab {
  color: #ffffff;
  padding: 30px 24px;
  overflow: hidden;
  border-radius: 3px;
  background: url("../img/icon-meldnungen.png") top 20px right 20px no-repeat, #012f15;
}

#nw1 .tab a {
  color: #ffffff;
  text-decoration: underline;
}

#nw1 .tabHeadline {
  color: #ffffff;
  font-weight: 600;
  hyphens: auto;
  font-size: clamp(1.75rem, 2vw, 2rem) !important;
  text-transform: uppercase;
  font-family: "Cinzel", sans-serif;
}

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

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

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

@media (min-width: 768px) {
  #nw1 .tab_link_entries {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  #nw1 .tab_link_entries {
    grid-template-columns: repeat(4, 1fr);
  }
}

#nw1 .tab_link_entry {
  hyphens: auto;
  font-size: 1rem;
  position: relative;
  width: 100%;
  border-radius: 3px;
  padding: 160px 30px 30px 30px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

#nw1 .vorschau {
  opacity: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

#nw1 .tab_preview_picture {
  background: #ffffff;
}

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

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

#nw1 .tab_preview_picture img {
  position: absolute;
  margin: 0 !important;
  left: 50%;
  top: 50%;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  max-width: 350px;
  width: auto;
  height: auto;
  -ms-interpolation-mode: bicubic;
  transform: translateX(-50%) translateY(-50%);
}

#nw1 .tab_date {
  display: inline-block;
  position: absolute;
  z-index: 1;
  left: -1px;
  top: 105px;
  font-weight: 400;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 6px 20px;
  background: #422a13;
  border-radius: 0 3px 3px 0;
}

#nw1 .tab_link_title a {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: #0d0d0d;
  line-height: 1.2;
  margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

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

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

#footer {
  background: #013317;
  padding: 40px 0;
  color: #ffffff;
  font-size: 1rem;
}

@media (max-width: 991px) {
  :is(#footer, #innerfooter)>.row>.col-xs-12+* {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    padding-top: 20px;
  }
}

@media (min-width: 768px) {
  #innerfooter>.row>.col-xs-12+ :nth-child(2) {
    border: none;
    margin-top: 0;
    padding-top: 0;
  }
}

#footer a {
  color: #ffffff;
  text-decoration: underline;
}

.footerHeadline {
  color: #ffffff;
  margin: 0 0 10px 0;
  font-size: 1.125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

#maps iframe,
#maps .iframe-wrapper-manual-enabling {
  display: block;
  width: 100%;
}

#maps .iframe-wrapper-manual-enabling {
  min-width: 100% !important;
}

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

#innerfooter {
  color: #ffffff;
  background-color: #013317;
  padding: 20px 0;
  font-family: "Montserrat", serif;
  font-size: 1rem;
}

@media (min-width: 992px) {
  #innerfooter {
    border-top: solid 2px rgba(13, 13, 13, 0.1);
  }
}

#innerfooter ul {
  padding: 0;
}

#innerfooter li {
  display: inline-block;
}

.innerfooter a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  padding: 10px 12px;
}

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

.innerfooter li+li {
  margin-left: 10px;
}

/* ------------------------------------------- scroll top --------------------------------------- */

#scroll-top {
  font-size: 0;
  width: 33px;
  height: 33px;
  display: block;
  position: relative;
  margin: 0 auto;
  background: #ffffff;
}

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

@media (min-width: 992px) {
  #scroll-top {
    margin: 0;
  }
}

#scroll-top::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  margin-top: 10px;
  display: inline-block;
  border-right: 3px solid #8c1251;
  border-top: 3px solid #8c1251;
  transform: rotate(-45deg);
  transition: border 300ms linear;
}

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

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

#vernetzt span span {
  display: block;
}