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

body {
    font-family: "Jost", sans-serif;
    color: #444444;
    background: #ffffff;
    font-size: 1rem;
    /* 1rem = 16px */
    line-height: 1.5;
}

@media (min-width: 768px) {
    body {
        font-size: 1.125rem;
    }
}

a {
    color: #045c9f;
}

a:hover,
a:focus {
    color: #045c9f;
    text-decoration: underline;
}


b,
strong {
    font-weight: 600;
}

.row,
.compact,
._op-container .container {
    max-width: 1600px;
    width: 100%;
}

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

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

.hrLayStyle {
    margin-top: 10px;
}

#logo {
    display: inline-block;
}

#search.contrast_grayscale img,
#logo.contrast_grayscale img{
    background: #fff !important;
}

#logo img {
    display: block;
}

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

@media (min-width: 991px) {
    #logo {
        position: absolute;
        top: 0px;
        right: 15px;
        max-width: 100%;
        transition: max-width 200ms linear;
    }

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

@media (min-width: 992px) {
    #logo {
        background-color: #fff;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.08);
        padding: 15px 25px;

    }
}

#optionsbar>*+* {
    margin-left: 25px;
}

#search {
    width: 20px;
    height: 20px;
    display: block;
}

@media (min-width: 992px) {
    #style button {
        border: none;
        color: #2e3c48;
        display: inline-block;
        min-width: 20px;
        min-height: 20px;
        border-radius: 50%;
        font-size: 1rem;
        font-weight: 500;
        text-align: center;
        background-color: #fff;
        position: relative;
        line-height: 1;
        padding: 0;
        border: 1px solid #444444;
    }

    #style button+button {
        margin-left: 6px;
    }

    #style button:focus-visible {
        outline: 2px auto;
    }
}

#contrast_style button {
    color: #000000;
    padding: 0;
    font-family: "Khand", sans-serif;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-weight: 400;
    text-align: center;
    background: #ffffff;
    position: relative;
    z-index: 1;
    border: none;
    background: transparent;
    font-size: 0;
}

#contrast_style button img {
    display: block;
}


#contrast_style *+* {
    margin-left: 6px;
}




/* --------------------------------------- navigation --------------------------------------- */

#menu {
    position: relative;
    z-index: 100;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
}

/* burgermenu for tablet */

@media (max-width: 991px) {

    #menu {
        padding: 10px 0;
        position: relative !important;
    }

    #burgerButton {
        font-size: 0;
        border: none !important;
        position: relative;
        z-index: 1002;
        display: block;
        width: 46px;
        height: 40px;
        border-radius: 2px;
        cursor: pointer;
        background-color: #ffffff;
        padding: 3px;
    }

    #burgerButton:before,
    #burgerButton:after,
    #burgerButtonInner {
        background-color: #0A5A7F;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 2px;
        -webkit-transition: transform 200ms linear, opacity 200ms linear;
        -moz-transition: transform 200ms linear, opacity 200ms linear;
        -ms-transition: transform 200ms linear, opacity 200ms linear;
        -o-transition: transform 200ms linear, opacity 200ms linear;
        transition: transform 200ms linear, opacity 200ms linear;
    }

    #burgerButton[aria-expanded="true"] #burgerButtonInner {
        -webkit-transform: rotate(-45deg) translate(-6px, 6px);
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    #burgerButton[aria-expanded="true"]:before {
        opacity: 0;
    }

    #burgerButton[aria-expanded="true"]:after {
        -webkit-transform: rotate(45deg) translate(-4px, -6px);
        transform: rotate(45deg) translate(-4px, -6px);
    }

    #burgerButtonInner {
        top: 10px;
    }

    #burgerButton:before {
        top: 18px;
    }

    #burgerButton:after {
        top: 26px;
    }

    #burgerButton:before,
    #burgerButton:after {
        content: "";
        display: block;
    }

    .navbar-nav {
        margin: 20px 0;
    }

    .navbar-collapse {
        top: 0;
        background: #ffffff;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        -webkit-transition: left 300ms linear, opacity 300ms linear;
        -moz-transition: left 300ms linear, opacity 300ms linear;
        -ms-transition: left 300ms linear, opacity 300ms linear;
        -o-transition: left 300ms linear, opacity 300ms linear;
        transition: left 300ms linear, opacity 300ms linear;
    }

    .navbar-collapse.collapse.in {
        left: 0;
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-header {
        height: 50px;
        width: 60px;
        border-radius: 2px;
        padding: 6px 8px;
        background-color: #ffffff;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 101;
        -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    }

    .navbar-collapse.in:after {
        content: "";
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        display: block;
        width: 90px;
        background-color: rgba(0, 0, 0, 0.5);
    }
}

@media (min-width: 575px) and (max-width: 991px) {
    .navbar-collapse {
        width: 60%;
    }

    .navbar-collapse.collapse.in:after {
        width: 40%;
    }
}

/* menu desktop */

@media (min-width: 992px) {

    nav.horizontally .navbar-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        flex-wrap: wrap;
    }

    nav.horizontally .navbar-nav>li {
        flex-grow: 1;
    }

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

    nav.horizontally .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    nav.horizontally .navbar-nav>li,
    nav.horizontally .navbar-nav>li>.dropdown-menu>li {
        position: relative;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]>ul {
        display: block !important;
        pointer-events: none;
        opacity: 0;
        -webkit-transition: opacity 300ms linear;
        -moz-transition: opacity 300ms linear;
        -ms-transition: opacity 300ms linear;
        -o-transition: opacity 300ms linear;
        transition: opacity 300ms linear;
    }


    .navbar-default .navbar-nav li[class*="toplevel"]:focus-within>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]:focus-within>ul {
        pointer-events: auto !important;
        opacity: 0 !important;
    }

    .navbar-default .nav .open>.dropdown-menu {
        pointer-events: none !important;
        opacity: 0 !important;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]:hover>u {
        z-index: 1003;
    }
}

/* ---------------------------------------------- toplevel ---------------------------------------------- */

.navbar-default .navbar-nav>li>a {
    color: #444444;
    font-weight: 500;
    text-align: left;
    padding: 15px 35px 15px 15px;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li {
        border-bottom: 1px solid rgba(76, 60, 60, 0.2);
    }
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        padding: 34px 5px 36px 5px;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
    }
}


@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) and (min-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        display: block;
    }
}

.navbar-default .navbar-nav>li>a::after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    bottom: 0;
    height: 6px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #194971;
    -webkit-transition: width 300ms linear;
    -moz-transition: width 300ms linear;
    -ms-transition: width 300ms linear;
    -o-transition: width 300ms linear;
    transition: width 300ms linear;
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>a::after {
        top: 0;
        bottom: auto;
    }
}

/* -------------------------------------------- toplevel-over ------------------------------------------- */

.navbar-nav>li:hover>a,
.navbar-nav>li>a:hover,
.navbar-nav>li>a:focus,
.navbar-nav>li.open>a,
.navbar-nav>li.open>a:hover,
.navbar-nav>li.open>a:focus,
.navbar-nav>li[class$="_over"]>a,
.navbar-nav>li[class$="_over"]>a:hover,
.navbar-nav>li[class$="_over"]>a:focus {
    color: #045c9f;
}

.navbar-nav>li:focus-within>a {
    color: #045c9f;
}

.navbar-nav>li:hover>a::after,
.navbar-nav>li>a:hover::after,
.navbar-nav>li>a:focus::after,
.navbar-nav>li.open>a::after,
.navbar-nav>li.open>a:hover::after,
.navbar-nav>li.open>a:focus::after,
.navbar-nav>li[class$="_over"]>a::after,
.navbar-nav>li[class$="_over"]>a:hover::after,
.navbar-nav>li[class$="_over"]>a:focus::after {
    width: 100%;
}

.navbar-nav>li:focus-within>a::after {
    width: 100%;
}

/* -------------------------------------- secondlevel + thirdlevel dropdown-box -------------------------------------- */

.navbar-default .navbar-nav>li>.dropdown-menu, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        padding: 15px;
    }
}

#subnavigation-portal {
    padding-left: 0;
    padding-right: 0;
}

.secondandthird-wrapper ul {
    border: 1px solid #ebebeb;
}

@media(min-width:992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        padding-top: 10px;
        padding-bottom: 10px;
        background-color: #ffffff;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu {
        left: 0;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        margin-top: -10px;
        border-radius: 4px;
        margin-left: 15px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu::before {
        content: "";
        display: block;
        position: absolute;
        width: 10px;
        top: 0;
        bottom: 0;
        left: -10px;
    }

    .secondandthird-only>li {
        position: relative;
    }
    
    .secondandthird-only>li .dropdown-toggle-button-wrapper2 {
        display: block;
        position: absolute;
        top: 3px;
        pointer-events: all;
    }
    .secondandthird-only>li .dropdown-toggle-button {
        background: transparent;
    }
    .secondandthird-only>li .dropdown-toggle-button::after, 
    .secondandthird-only>li .dropdown-toggle-button::before {
        background: #194971 !important;
    }
    .secondandthird-only>li:hover .dropdown-toggle-button::after, 
    .secondandthird-only>li:focus .dropdown-toggle-button::after,
    .secondandthird-only>li:hover .dropdown-toggle-button::before,
    .secondandthird-only>li:focus .dropdown-toggle-button::before,
    .secondandthird-only>li.open .dropdown-toggle-button::after,
    .secondandthird-only>li.open .dropdown-toggle-button::before,
    .secondandthird-only>li[class$="_over"] .dropdown-toggle-button::before,
    .secondandthird-only>li[class$="_over"] .dropdown-toggle-button::after {
        background: #ffffff !important;
    }
}

/* --------------------------------------------- secondlevel + thirdlevel -------------------------------------------- */

.navbar-default .navbar-nav>li>.dropdown-menu>li>a, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a, .secondandthird-only>li>a, .secondandthird-only>li>.dropdown-menu>li>a {
    background: #ffffff;
    font-weight: normal;
    text-align: left;
    padding: 10px 18px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    color: #444444;
}

@media(max-width:575px) {
    nav.horizontally .navbar-nav>li>.dropdown-menu>li>a.dropdown-toggle2 {
        padding-right: 35px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .navbar-default .navbar-nav>li>.dropdown-menu>li>a, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a, .secondandthird-only>li>a, .secondandthird-only>li>.dropdown-menu>li>a {
        text-align: center;
        padding-left: 35px;
        padding-right: 35px;
    }
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a, .secondandthird-only>li>.dropdown-menu>li>a {
        padding: 10px 18px 10px 30px;
    }
}

/* ------------------------------------------ secondlevel + thirdlevel over ------------------------------------------ */

.navbar-nav>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:focus,
.secondandthird-only>li:hover>a,
.secondandthird-only>li:focus>a,
.secondandthird-only>li>a:hover,
.secondandthird-only>li>a:focus,
.secondandthird-only>li.open>a,
.secondandthird-only>li.open>a:hover,
.secondandthird-only>li.open>a:focus,
.secondandthird-only>li[class$="_over"]>a, 
.secondandthird-only>li[class$="_over"]>a:hover,
.secondandthird-only>li[class$="_over"]>a:focus{
    background: #194971;
    color: #ffffff;
}

.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:focus,
.secondandthird-only>li>.dropdown-menu>li:hover>a,
.secondandthird-only>li>.dropdown-menu>li:focus>a,
.secondandthird-only>li>.dropdown-menu>li>a:hover,
.secondandthird-only>li>.dropdown-menu>li>a:focus,
.secondandthird-only>li>.dropdown-menu>li.open>a,
.secondandthird-only>li>.dropdown-menu>li.open>a:hover,
.secondandthird-only>li>.dropdown-menu>li.open>a:focus,
.secondandthird-only>li>.dropdown-menu>li[class$="_over"]>a,
.secondandthird-only>li>.dropdown-menu>li[class$="_over"]>a:hover,
.secondandthird-only>li>.dropdown-menu>li[class$="_over"]>a:focus {
    background: #045c9f;
    color: #ffffff;
}

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

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

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

    #headerBox {
        position: relative;
    }

    #headerBox::before {
        content: '';
        width: 50vw;
        left: 0;
        top: 0;
        bottom: 38px;
        position: absolute;
        pointer-events: none;
        z-index: -1;
        display: inline-block;
        background: #e2f3ff;
        border-bottom-left-radius: 50%;
    }

    #headerBox::after {
        content: '';
        width: 50vw;
        left: 30px;
        top: 0;
        bottom: 68px;
        position: absolute;
        pointer-events: none;
        z-index: -1;
        display: inline-block;
        border-left: 3px solid #fff;
        border-bottom: 3px solid #fff;
        border-bottom-left-radius: 48%;
    }

    #headerBox>.row::before {
        content: '';
        width: 53vw;
        right: -200px;
        top: 0;
        bottom: 130px;
        position: absolute;
        pointer-events: none;
        z-index: -1;
        display: inline-block;
        background: #e2f3ff;
        border-bottom-right-radius: 50%;
    }

    #headerBox>.row::after {
        content: '';
        width: 50vw;
        right: -170px;
        top: 0;
        bottom: 160px;
        position: absolute;
        pointer-events: none;
        z-index: -1;
        display: inline-block;
        border-right: 3px solid #fff;
        border-bottom: 3px solid #fff;
        border-bottom-right-radius: 48%;
    }
}

#headerpic {
    margin: 0 auto;
    position: relative;
    width: 100%;
}

#slider {
    overflow: hidden;
    position: relative;
    height: 31.3vw;
}

body:not(.index) #slider {
    height: 23.5vw;
}

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

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

@media (max-width: 991px) {
    #slider-onebanner,
    #slider .nivo-box>div,
    #slider .nivo-slice>div,
    #slider .nivo-main-image,
    #slider div[style*='background-size'] {
        background-attachment: unset !important;
        background-size: 100% auto !important;
    }
}

.slider-mask {
    display: none;
}

/* -------------------------------------------- 3nw news--------------------------------------------- */

#news .tabHeadline {
    font-style: italic;
    font-size: 25px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

#news {
    padding-bottom: 83px;
    padding-top: 55px;
    font-size: 1rem;
}

#news .vorschau {
    display: none;
}

@media (max-width: 991px) {

    #news {
        padding-top: 25px;
        padding-bottom: 0;
    }

    #news>.row>div+div {
        margin-top: 40px;
    }
}

@media (min-width: 768px) {
    #news>.row>div:last-child {
        padding-top: 60px;
    }
}

#news .headline {
    margin-bottom: 30px;
    color: #004261;
    font-size: 1.875rem;
    font-style: italic;
}

#news .tab_link_title a {
    color: #045c9f;
    font-weight: 500;
}

#news .tab_link_mandat a {
    color: inherit;
}

@media (min-width: 992px) {

    #news .tab_link_mandat a,
    #news .tab_date,
    #news .vorschau {
        font-size: 1rem;
    }
}

#news .tab_link_entry+.tab_link_entry {
    margin-top: 15px;
    padding-top: 15px;
}

@media (min-width: 992px) {
    #news .tab_link_entry+.tab_link_entry {
        margin-top: 25px;
        padding-top: 25px;
    }
}

#news .tab_spacer {
    display: none;
}

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

#news .tab_link_entry {
    position: relative;
    margin-left: 130px;
    min-height: 105px;
    border-bottom: none !important;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

#news .tab_link_title a {
    display: block;
}

#news .tab_link_title a::after {
    content: "";
    background: #e3e3e3 url('../img/platzhalterbild-aktuelles.jpg') no-repeat center / cover;
}

#news .tab_preview_picture {
    background: #ffffff;
}

#news .tab_link_title a::after,
#news .tab_preview_picture {
    display: block;
    width: 100px;
    height: 100%;
    position: absolute;
    left: -128px;
    top: 0;
    overflow: hidden;
}

@media (max-width: 767px) {
    #news .tab_link_entry {
        margin-left: 0px;
        padding-top: 185px !important;
    }

    #news .tab_link_title a::after,
    #news .tab_preview_picture {
        display: block;
        width: 100%;
        height: 170px;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0px;
        right: 0px;
        overflow: hidden;
    }
}

#news .tab_preview_picture img {
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

#news .tab_link_entry>div:nth-last-child(2) {
    display: none;
}

/* ----------------------------------------- news button ---------------------------------------- */


#news .tab_link_mehr a {
    background: #0473c8;
    font-weight: 600;
    color: #ffffff;
    padding: 8px 20px 8px 20px;
    position: relative;
    text-decoration: none;
    display: inline-block;
    font-style: italic;
}


#news .tab_link_mehr a:hover,
#news .tab_link_mehr a:focus {
    background: #004261;
    color: #ffffff;
}

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

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

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

/* -------------------------------------------- @18tab -------------------------------------------- */


#tab18 {
    padding-bottom: 60px;
}

@media (min-width: 1200px) {
    #tab18>.row::after {
        background: url(../img/springende-frau.png) no-repeat left bottom;
        width: 244px;
        height: 550px;
        position: absolute;
        left: -161px;
        top: -136px;
        z-index: -1;
        pointer-events: none;
        position: absolute;
        content: '';
    }
}


#tab18 .tabElement {
    position: relative;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.08);
}

#tab18>.row>div {
    margin-top: 30px;
}

#tab18 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: -1px;
}

#tab18 .tabHeadline {
    margin-top: 5px;
    padding: 30px 15px;
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
    font-size: 1.5625rem;
    font-style: italic;
    text-transform: uppercase;
    font-weight: 600;
    color: #045c9f;
    background: #e2f3ff;
    border-top: 10px solid #045c9f;
}

#tab18>.row>div:nth-child(2n+2) .tabHeadline {
    color: #fff;
    background: #045c9f;
    border-top: 10px solid #e2f3ff;
}

#tab18 .tabElement a {
    font-size: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
    background: transparent !important;
}

#tab18 .tabElement a:not(.has-image):not([rel])::after {
    content: '\2192';
    font-size: 26px;
    display: block;
    width: 50px;
    height: 46px;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    background: #0473c8;
    padding-left: 0px;
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 50px;
    text-align: center;
    padding-top: 0;
    padding-bottom: 4px;
    pointer-events: none;
    transition: color 200ms linear, background 200ms linear;
}

#tab18 .tabElement a:not(.has-image):not([rel]):hover::after,
#tab18 .tabElement a:not(.has-image):not([rel]):focus::after {
    color: #0473c8;
    background: #fff;
}

#tab18 .tabElement * {
    position: static;
}

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

.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
H6,
H5,
H4,
H3,
H2,
H1 {
    color: #194971;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Jost", sans-serif;
}

h1,
.h1,
.legacy_h1 {
    font-size: 2.3rem;
}

#content h1 {
    font-style: italic;
}

@media (min-width: 768px) {

    h1,
    .h1,
    .legacy_h1 {
        font-size: 2.8125rem;
    }
}

h2,
.h2,
.legacy_h2 {
    font-size: 1.6rem;
}

@media (min-width: 768px) {

    h2,
    .h2,
    .legacy_h2 {
        font-size: 1.7rem;
    }
}

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

h4,
.h4,
.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
.legacy_h4 {
    font-size: 1.5rem;
}

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

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

#newslinks,
#newsmandate {
    border: 1px solid #2e3c48;
}

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


@media (min-width: 1200px) {
    #footerBottom>.row::after {
        background: url(../img/basketballspieler.png) no-repeat right bottom;
        width: 277px;
        height: 355px;
        position: absolute;
        right: -200px;
        bottom: -30px;
        pointer-events: none;
        position: absolute;
        content: '';
    }
}

#footerTop{
    font-size: 1rem;
}

footer .iframeTab iframe,
footer .iframeTab .iframe-wrapper-manual-enabling {
    width: 100% !important;
    min-height: 240px;
    height: 240px !important;
    min-width: 100% !important;
}


footer {
    background-color: #2e3c48;
    padding-top: 130px;
    padding-bottom: 30px;
    color: #bae0fc;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

footer::before {
    content: '';
    background: url(../img/footer-mask.png) no-repeat top center / 100% auto;
    width: 100%;
    height: 126px;
    pointer-events: none;
    position: absolute;
    top: -1px;
    left: 0px;
}


footer :is(a, .tabHeadline, h1, h2, h3, h4, h5, h6) {
    color: #fff;
}

footer .tab a {
    text-decoration: underline;
}

#footerBottom hr {
    background: #fff;
    opacity: 1;
}

footer .socialMedia a {
    display: block;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 0 auto;
}

footer .socialMedia a:hover,
footer .socialMedia a:focus {
    background: #c1cbd3;
}

footer :is(h1, h2, h3, h4, h5, h6) {
    text-transform: uppercase;
    font-style: italic;
    font-size: 1.5625rem;
}

@media (max-width: 767px) {
    footer .row>.col-xs-12:not(:first-child)::before {
        background: #000000;
        content: " ";
        height: 1px;
        width: 100%;
        display: block;
        margin: 25px 0;
        opacity: 0.2;
    }
}



#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

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

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

#innerfooter li+li::before {
    content: "•";
    margin: 0 15px;
    color: #bae0fc;
}

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

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

#vernetzt {
    text-align: right;
    font-size: 0.875rem;
    color: #bae0fc;
    line-height: 1.3;
    margin: 0 auto;
    font-weight: 400;
    display: inline-block;
    text-decoration: none;
}

#vernetzt b {
    color: #fff;
    font-weight: 500;
}

#vernetzt span {
    color: #bae0fc;
}

#vernetzt span span {
    display: block;
}

#vernetzt img {
    margin-left: 18px;
}