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

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

body {
    font-family: "Fira Sans", sans-serif;
    color: #010101;
    background: #f4f7ff;
    font-size: clamp(1rem, 1vw, 1.125rem);
    /* 1rem = 16px */
    line-height: 1.5;
    box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.1);
}

a {
    color: #1e58a4;
}

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

b,
strong {
    font-weight: 700;
}

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

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

#topbar {
    padding: 22px 0 12px 0;
    background: #ffffff;
}

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

#topbar>.row {
    row-gap: 10px;
}

/* ------------------------------------------- language --------------------------------------------- */

#language {
    font-size: 0;
    line-height: 0;
    height: 100%;
    padding: 4px 5px;
    flex-shrink: 0;
    border-radius: 5px;
    background-color: #d2ddf1;
}

@media (min-width: 992px) {
    .languageBox {
        margin-bottom: 30px;
    }
}

h2.languageh2 {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    margin: 0 0 0 15px;
    width: unset;
}

#language a:is(:hover, :focus, .language-active) img {
    background: rgba(255, 255, 255, 0.8);
}

#language a {
    position: relative;
}

#language>a+a {
    border-left: 1px solid #222222;
}

#language img {
    padding: 2px 6px;
    margin: 0 7px;
    transition: background-color 300ms linear;
}

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

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

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

/* ----------------------------------------------- search ----------------------------------------------- */

form[id^="search"] {
    min-height: 33px;
    display: block;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    background: #d2ddf1;
}

@media (min-width: 992px) {
    form[id^="search"] {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    form[id^="search"] {
        display: inline-block;
    }
}

form [id^="search_input"] {
    font-size: 0.9375rem;
    color: #1e58a4;
    font-style: normal;
    background: transparent;
    padding: 0;
    border: 0;
    padding-right: 14px;
    padding-left: 35px;
    min-height: 33px;
    width: 100%;
    display: block;
}

form [id^="search_submit"] {
    width: 30px;
    background: url('../img/icon-lupe.png') center no-repeat, #d2ddf1;
    padding: 0;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    font-size: 0;
    transition: background 200ms linear;
}

form [id^="search_submit"]:hover,
form [id^="search_submit"]:focus {
    background-color: #f4f7ff;
}

[id^="search_input"]::-ms-input-placeholder {
    color: #1e58a4 !important;
}

[id^="search_input"]::-webkit-input-placeholder {
    color: #1e58a4 !important;
}

[id^="search_input"]::-moz-placeholder {
    opacity: 1;
}

[id^="search_input"]:-moz-placeholder {
    opacity: 1;
}

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

/* #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: #1e58a4;
        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: 4px;
    }
}

/* menu desktop */

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

    .is-sticky nav.horizontally {
        box-shadow: 0px 5px 10px 0px rgba(40, 40, 40, 0.05);
    }

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

    nav.horizontally .navbar-nav>li {
        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, :hover)>ul,
    nav.horizontally .navbar-nav li.open:focus-within>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.open>ul {
        pointer-events: none !important;
        opacity: 0 !important;
        visibility: hidden;
    }

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

/* toplevel */

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

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

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

    nav.horizontally a[class*="toplevel"] {
        padding: 10px 5px 9px 5px;
        text-align: center;
        border-radius: 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: #1e58a4;
    background-color: #d2ddf1;
    box-shadow: 0px 5px 10px 0px rgba(40, 40, 40, 0.05);
}

/* secondlevel + thirdlevel dropdown-box */

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

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

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

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

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

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

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

    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: #282828;
    font-weight: 400;
    text-align: left;
    padding: 9px 25px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

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

/* 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: #1e58a4;
    background: #d2ddf1;
    box-shadow: 0px 5px 10px 0px rgba(40, 40, 40, 0.05);
}

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

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

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

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

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

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

    body.index .theme-nivo .nivo-controlNav {
        bottom: 40px;
    }
}

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

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

.slider-mask {
    display: none;
}

/* ------------------------------------------- quicktabs ------------------------------------------ */

#quicktabs {
    padding-bottom: 30px;
}

@media (max-width: 991px) {
    #quicktabs p+p {
        margin-top: 30px;
    }
}

@media (min-width: 768px) {
    #quicktabs p+p {
        margin-left: 30px;
    }
}

@media (min-width: 992px) {
    #quicktabs>.row {
        margin-top: -35px;
        position: relative;
        z-index: 12;
    }
}

#quicktabs p {
    display: inline-block;
}

#quicktabs a {
    text-decoration: none;
    position: relative;
    display: inline-block;
    text-align: center;
    color: #1e58a4;
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 270px;
    border-radius: 5px;
    padding: 17px 35px;
    background: #d2ddf1;
}

#quicktabs a:is(:hover, :focus) {
    color: #ffffff;
    background: #1e58a4;
    box-shadow: 0px 5px 10px 0px rgba(40, 40, 40, 0.05);
}

/* ------------------------------------------- tickerWrapper ------------------------------------------ */

#tickerWrapper {
    padding-top: 30px;
}

.newsticker,
.newsticker a {
    color: #1e58a4;
}

.newsticker-position {
    margin: 0;
}

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

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

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

#nw1new {
    padding-top: 20px;
    padding-bottom: clamp(20px, 4vw, 65px);
}

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

#nw1new .tab {
    color: #010101;
    padding: 30px;
    overflow: hidden;
    border-radius: 3px;
    background: url('../img/icon-zeitung.png') top 20px right 20px no-repeat, #d2ddf1;
    box-shadow: 0px 5px 10px 0px rgba(40, 40, 40, 0.05);
}

#nw1new .tab a {
    color: #010101;
    text-decoration: underline;
}

#nw1new .tabHeadline {
    color: #1e58a4;
    font-weight: 700;
    hyphens: auto;
    font-size: clamp(1.75rem, 2vw, 2rem);
}

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

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

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

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

#nw1new .tab_link_entry {
    color: #010101;
    font-size: 1rem;
    position: relative;
    width: 100%;
    border-radius: 3px;
    padding: 160px 30px 30px 30px;
    background: #ffffff;
    box-shadow: 0px 5px 10px 0px rgba(40, 40, 40, 0.05);
    border: unset !important;
    transition: background 300ms linear;
}

#nw1new .tab_link_entry:is(:hover, :focus) {
    background: #d2ddf1;
}

#nw1new .vorschau {
    opacity: 1;
}

#nw1new .tab_preview_picture {
    background: #ffffff;
}

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

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

#nw1new .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%);
}

#nw1new .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: #1e58a4;
    border-radius: 0 3px 3px 0;
}

#nw1new .tab_link_title a {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: #1e58a4;
    line-height: 1.2;
    margin-bottom: 8px;
}

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

/* ------------------------------------------- @1nw buttonStyle ------------------------------------------- */

#nw1new .buttonStyle a {
    text-decoration: none;
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 400;
    color: #1e58a4;
    padding: 5px 20px;
    border-radius: 3px;
    background: #ffffff;
    transition: background 300ms linear, color 300ms linear;
}

@media (min-width: 768px) {
    #nw1new .buttonStyle a+a {
        margin-left: 12px;
    }
}

#nw1new .buttonStyle a:hover,
#nw1new .buttonStyle a:focus {
    color: #ffffff;
    background: #1e58a4;
}

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

#breaker {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 150px;
}

@media (min-width: 992px) {
    #breaker {
        min-height: 350px;
    }
}

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

#nw1 {
    padding-top: clamp(30px, 4vw, 60px);
    padding-bottom: clamp(30px, 4vw, 65px);
}

#nw1>.row {
    row-gap: 20px;
}

#nw1 .tabHeadline {
    hyphens: auto;
    margin: 0;
    font-size: clamp(1.75rem, 2vw, 1.875rem);
}

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

#nw1 .tab_link_entries {
    display: grid;
}

@media (max-width: 767px) {
    #nw1 .tab_link_entries {
        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);
    }
}

#nw1 .tab_link_entry {
    color: #444444;
    position: relative;
    width: 100%;
    padding: 250px 30px 30px 30px;
    background: #ffffff;
    border: unset !important;
    box-shadow: 0px 5px 10px 0px rgba(40, 40, 40, 0.05);
}

#nw1 .tab_link_entry:nth-child(2n+2) {
    background: #d2ddf1;
}

@media (min-width: 768px) {
    #nw1 .tab_link_entry {
        margin-bottom: 80px;
    }

    #nw1 .tab_link_entry:nth-child(2n+2) {
        margin-top: 85px;
        margin-bottom: 0;
    }
}

#nw1 .vorschau {
    opacity: 1;
}

#nw1 .tab_preview_picture {
    background: #ffffff;
}

#nw1 .tab_link_entry::before,
#nw1 .tab_link_entry .tab_preview_picture {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    overflow: hidden;
}

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

#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_link_date {
    display: block;
    margin-bottom: 14px;
}

#nw1 .tab_link_title a {
    display: block;
    font-weight: 700;
    color: #1e58a4;
    line-height: 1.2;
    margin-bottom: 14px;
}

#nw1 .tab_link_entries+div,
#nw1 .tab_link_entries .tab_spacer,
#nw1 .tab_link_mandat {
    display: none;
}

#nw1 .tab_link_mehr {
    margin-top: 20px;
    display: block;
    font-size: 0;
}

#nw1 .tab_link_mehr a {
    text-decoration: none;
    position: relative;
    display: inline-block;
    text-align: center;
    color: #1e58a4;
    font-size: clamp(1rem, 2vw, 1.25rem);
    border-radius: 5px;
    padding: 5px 17px;
    background: #d2ddf1;
}

#nw1 .tab_link_entry:nth-child(2n+2) .tab_link_mehr a {
    color: #1e58a4;
    background: #ffffff;
}

#nw1 .tab_link_entry:nth-child(2n+2) .tab_link_mehr a:is(:hover, :focus),
#nw1 .tab_link_mehr a:is(:hover, :focus) {
    color: #ffffff;
    background: #1e58a4;
    box-shadow: 0px 5px 10px 0px rgba(40, 40, 40, 0.05);
}

/* ------------------------------------------- @1nw buttonStyle ------------------------------------------- */

@media (min-width: 992px) {
    #nw1 .buttonStyle {
        margin-top: -50px;
    }
}

#nw1 .buttonStyle a {
    text-decoration: none;
    position: relative;
    display: inline-block;
    text-align: center;
    color: #1e58a4;
    font-size: 1.25rem;
    border-radius: 5px;
    padding: 5px 27px;
    background: #d2ddf1;
    transition: background 300ms linear, color 300ms linear;
    box-shadow: 0px 5px 10px 0px rgba(40, 40, 40, 0.05);
}

@media (min-width: 768px) {
    #nw1 .buttonStyle a+a {
        margin-left: 12px;
    }
}

#nw1 .buttonStyle a:hover,
#nw1 .buttonStyle a:focus {
    color: #ffffff;
    background: #1e58a4;
}

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

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

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

h2,
.h2,
.legacy_h2 {
    font-size: 30px;
}

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

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

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

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

/* ----------------------------------------------- @8f footer ----------------------------------------------- */

#f8 {
    overflow: hidden;
}

/* ------------------------------------------ maps_contact ---------------------------------------- */

#maps_contact {
    padding-top: 60px;
    background-color: #d2ddf1;
}

@media (min-width: 992px) {
    #maps_contact .noPadding {
        padding-left: 0;
        padding-right: 0;
    }
}

#maps_contact .tabHeadline {
    font-size: 1.875rem;
    color: #ffffff;
    position: relative;
}

@media (min-width: 992px) {
    #maps_contact .tabHeadline {
        margin-bottom: 28px;
    }
}

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

#maps_contact .tab {
    padding: 40px 30px 30px 30px;
    height: 100%;
    color: #ffffff;
    background: #1e58a4;
    border-bottom: 1px solid #1e58a4;
}

#maps_contact .tab a[href^="mailto:"] {
    color: #ffffff;
    text-decoration: underline;
}

@media (min-width: 992px) {
    #maps_contact .tab {
        padding: 56px 115px 30px 30px;
    }
}

@media (min-width: 1200px) {
    #maps_contact .tab {
        padding: 60px 115px 30px 115px;
    }
}

#maps_contact .tab a:not([href^="mailto:"]) {
    margin-top: 20px;
    text-decoration: none;
    position: relative;
    display: inline-block;
    text-align: center;
    color: #1e58a4;
    font-size: 1.125rem;
    border-radius: 5px;
    padding: 6px 16px;
    background: #d2ddf1;
}

@media (min-width: 992px) {
    #maps_contact .tab a:not([href^="mailto:"]) {
        margin-top: 40px;
    }
}

#maps_contact .tab a:not([href^="mailto:"]):hover,
#maps_contact .tab a:not([href^="mailto:"]):focus {
    color: #ffffff;
    background: #1e58a4;
    box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.4);
}

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

#innerfooter {
    font-size: 1rem;
    margin-top: auto;
    position: relative;
    color: #1e58a4;
    padding: 30px 0 35px 0;
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

#innerfooter a {
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    color: #1e58a4;
}

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

#innerfooter li+li::before {
    content: "|";
    margin: 0 4px;
    color: #1e58a4;
}

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

/* --------------------------------------------- iframeMapsTab -------------------------------------------- */

@media (min-width: 992px) {
    .iframeMapsTab {
        margin-left: -100px;
    }
}

.iframeMapsTab iframe,
.iframeMapsTab .iframe-wrapper-manual-enabling {
    max-height: 100%;
    min-height: 100%;
    /* height: 100%; */
    max-height: 335px;
    min-width: 100% !important;
    width: 100% !important;
    display: block;
}

@media (max-width: 767px) {
    .frameMobileView {
        width: 100vw;
        max-width: unset;
        flex: 0 0 100vw;
        left: 50%;
        transform: translate(-50%);
        padding: 0;
    }

    .iframeMapsTab .row {
        max-width: none;
    }

    .iframeMapsTab .template-page .row,
    .iframeMapsTab .template-page .row [class^="col"] {
        margin: 0;
        padding: 0;
    }

    .iframeMapsTab iframe, .iframeMapsTab .iframe-wrapper-manual-enabling {
        display: block;
        width: 100% !important;
    }
}

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

#footer {
    font-size: 1rem;
    color: #444444;
    padding: 25px 0;
    background: #f4f7ff;
}

#footer>.row {
    row-gap: 25px;
}

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

#vernetzt {
    gap: 15px;
    text-align: left;
    font-size: 0.875rem;
    color: #444444 !important;
    line-height: 1.3;
    text-decoration: none !important;
}

#vernetzt span span {
    display: block;
}

/* --------------------------------------------- tabSoci -------------------------------------------- */

.tabSoci {
    line-height: 1;
}

.tabSoci a {
    color: #444444 !important;
    text-decoration: underline !important;
}

.tabSoci p {
    display: inline-block;
}

.tabSoci p+p {
    margin-left: 10px;
}

.tabSoci img {
    display: block;
}