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

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

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

a {
    color: #ac0f0f;
}

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

b, strong {
    font-weight: 600;
}

.over {
    overflow: hidden;
}

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

#topbar {
    padding: 15px 0;
}

@media (max-width: 991px) {
    #topbar>.row>*+* {
        margin-top: 15px;
    }
}

@media (min-width: 992px) {
    #topbar {
        padding: 35px 0;
    }
}

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

#search {
    height: 31px;
    background: #ebebeb;
    display: inline-block;
    position: relative;
    max-width: 270px;
    width: 100%;
}

#search_input {
    color: #1d1d1d;
    font-size: 14px;
    font-style: italic;
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 31px;
    padding-left: 10px;
    padding-right: 43px;
    height: 31px;
    width: 100%;
    font-weight: 300;
}

#search_submit {
    width: 31px;
    background: #ebebeb url('../img/lupe-icon.png') center no-repeat;
    padding: 0;
    cursor: pointer;
    line-height: 31px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    font-size: 0;
    -webkit-transition: background-color 300ms linear;
    -moz-transition: background-color 300ms linear;
    -ms-transition: background-color 300ms linear;
    -o-transition: background-color 300ms linear;
    transition: background-color 300ms linear;
}

#search_submit:hover {
    background-color: #f5f5f5;
}

#search_input::-ms-input-placeholder {
    color: #1d1d1d !important;
}

#search_input::-webkit-input-placeholder {
    color: #1d1d1d !important;
}

#search_input::-moz-placeholder {
    opacity: 1;
}

#search_input:-moz-placeholder {
    opacity: 1;
}

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

@media (min-width: 992px) {
    #style button {
        font-size: 18px;
        background: #ffffff;
        padding: 0;
        border: none;
        color: #0c278e;
        display: inline-block;
        font-weight: 700;
        text-align: center;
        position: relative;
        line-height: 1;
        height: 31px;
        width: 31px;
        font-family: "Oswald", sans-serif;
        border: 2px solid #0c278e;
        -webkit-transition: all 150ms linear;
        -moz-transition: all 150ms linear;
        -ms-transition: all 150ms linear;
        -o-transition: all 150ms linear;
        transition: all 150ms linear;
    }

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

    #style button:hover {
        color: #ffffff;
        background-color: #0c278e;
    }

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

/* ------------------------------------------------- tabButtons ------------------------------------------------ */

.tabButtons {
    font-family: "Oswald", sans-serif;
    color: #0c278e;
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .tabButtons p+p {
        margin-top: 15px;
    }
}

@media (min-width: 768px) {
    .tabButtons p {
        display: inline-block;
    }

    .tabButtons p+p {
        margin-left: 15px;
    }
}

@media (min-width: 992px) {
    .tabButtons p+p {
        margin-left: 30px;
    }
}

.tabButtons a {
    color: #0c278e;
    border: 2px solid #0c278e;
    display: inline-block;
    text-decoration: none;
    padding: 3px 16px;
    line-height: 1.2;
}

.tabButtons a:hover,
.tabButtons a:focus {
    color: #ffffff;
    background-color: #0c278e;
}

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


/* burgermenu for tablet */

@media (max-width: 991px) {
    #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: #0c278e;
        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: #0c278e;
        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) {
    #menu {
        background: #0c278e;
        position: relative;
    }

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

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

    nav.horizontally li[class*="toplevel"]>ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        margin: 0;
        padding: 10px 25px;
        padding-top: 20px;
        padding-bottom: 20px;
        max-height: 60vh;
        overflow: visible;
        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;
    }

    nav.horizontally li[class*="toplevel"]>ul::after {
        content: "";
        display: block;
        position: absolute;
        width: 100vw;
        z-index: -1;
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        left: 50%;
        top: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.9);
        -webkit-box-shadow: 0 8px 8px 0 rgba(84, 73, 73, 0.1);
        box-shadow: 0 8px 8px 0 rgba(84, 73, 73, 0.1);
    }

    nav.horizontally li[class*="toplevel"]>ul:not(.mCustomScrollbar),
    nav.horizontally li[class*="toplevel"]>ul .mCSB_container {
        -webkit-column-count: 4;
        -moz-column-count: 4;
        column-count: 4;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        max-width: 992px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 15px;
        height: auto;
    }

    nav.horizontally li[class*="secondlevel"] {
        float: none;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
        display: table !important;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul {
        pointer-events: auto !important;
        opacity: 1 !important;
        top: 100%;
        z-index: 1003;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]:focus-within>ul {
        pointer-events: auto !important;
        opacity: 1 !important;
        top: 100%;
    }

    .nav li[class*="toplevel"].open>.dropdown-menu {
        pointer-events: none !important;
        opacity: 0 !important;
    }

    #mCSB_1_scrollbar_vertical {
        left: 50%;
        margin-left: calc(962px/2);
    }

    nav.horizontally .dropdown-menu {
        display: block !important;
    }
}

@media (min-width: 1200px) {

    nav.horizontally li[class*="toplevel"]>ul:not(.mCustomScrollbar),
    nav.horizontally li[class*="toplevel"]>ul .mCSB_container {
        max-width: 1200px;
        padding-top: 25px;
        padding-bottom: 45px;
    }

    #mCSB_1_scrollbar_vertical {
        margin-left: calc(1170px/2);
    }
}

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

.navbar-default li[class*="toplevel"]>a {
    color: #ffffff;
    font-weight: 700;
    text-align: left;
    padding: 10px 15px 15px 15px;
    position: relative;
    font-size: 1.125rem;
    text-transform: uppercase;
    line-height: 1.2;
    text-decoration: none;
    font-family: "Oswald", sans-serif;
}

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

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

@media (min-width: 992px) {
    .navbar-default li[class*="toplevel"]>a {
        padding: 20px 2px;
    }
}

.navbar-default li[class*="toplevel"]>a::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    position: absolute;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    background: #ffffff;
    -webkit-transition: width 200ms linear;
    -moz-transition: width 200ms linear;
    -ms-transition: width 200ms linear;
    -o-transition: width 200ms linear;
    transition: width 200ms linear;
}

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

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

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

@media (max-width: 991px) {

    .navbar-default li[class*="toplevel"]>.dropdown-menu,
    .navbar-default li[class*="toplevel"]>.dropdown-menu>li>.dropdown-menu {
        padding: 10px;
        background-color: #ffffff;
    }
}

@media (min-width: 992px) {
    .navbar-default li[class*="toplevel"]>.dropdown-menu>li>.dropdown-menu {
        display: block;
        margin-top: 5px;
    }
}

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

.navbar-default li[class*="secondlevel"]>a {
    color: #0c278e;
    text-align: left;
    padding: 8px 35px 8px 15px;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
}


.navbar-default li[class*="thirdlevel"]>a {
    color: #0c278e;
    text-align: left;
    padding: 8px 35px 8px 15px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    font-weight: 400;
    position: relative;
}

.navbar-default li[class*="thirdlevel"]>a::before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    margin-top: -5px;
    width: 8px;
    height: 8px;
    border-radius: 1px;
    border-left: 2px solid #0c278e;
    border-bottom: 2px solid #0c278e;
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

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

.navbar-nav li[class*="secondlevel"]:hover>a,
.navbar-nav li[class*="secondlevel"]>a:hover,
.navbar-nav li[class*="secondlevel"]>a:focus,
.navbar-nav li[class*="secondlevel"].open>a,
.navbar-nav li[class*="secondlevel"].open>a:hover,
.navbar-nav li[class*="secondlevel"].open>a:focus,
.navbar-nav li[class*="secondlevel"][class$="_over"]>a,
.navbar-nav li[class*="secondlevel"][class$="_over"]>a:hover,
.navbar-nav li[class*="secondlevel"][class$="_over"]>a:focus {
    color: #fff;
    background: #0c278e;
}


.navbar-nav li[class*="thirdlevel"]>a:hover,
.navbar-nav li[class*="thirdlevel"]>a:focus,
.navbar-nav li[class*="thirdlevel"].open>a,
.navbar-nav li[class*="thirdlevel"].open>a:hover,
.navbar-nav li[class*="thirdlevel"].open>a:focus,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a:hover,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a:focus {
    color: #fff;
    background: #0c278e;
}

.navbar-nav li[class*="thirdlevel"]>a:hover::before,
.navbar-nav li[class*="thirdlevel"]>a:focus::before,
.navbar-nav li[class*="thirdlevel"].open>a::before,
.navbar-nav li[class*="thirdlevel"].open>a:hover::before,
.navbar-nav li[class*="thirdlevel"].open>a:focus::before,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a::before,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a:hover::before,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a:focus::before {
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

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

#headerpic {
    position: relative;
}

#bannerBox {
    max-height: 260px;
    overflow: hidden;
    position: relative;
    line-height: 0;
}

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

@media (max-width: 991px) {
    #bannerBox .banner img {
        max-width: unset;
    }
}

#headerpic::before {
    content: '';
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 1050px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

/* ------------------------------------------------ logoBox ----------------------------------------------- */

#logoBox {
    position: absolute;
    pointer-events: none;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    align-content: center;
    align-items: center;
    z-index: 12;
}

#logo {
    display: inline-block;
    pointer-events: all;
}

#logo img {
    display: block;
}

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


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

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

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

/* ----------------------------------------------- events -------------------------------------------- */

#events {
    margin-bottom: 20px;
}

#eventsBG {
    background-color: #0c278e;
    border-radius: 3px;
    overflow: hidden;
}

#events .tab {
    background-image: url('../img/calendar-icon.png');
    background-position: top 20px right 20px;
    background-repeat: no-repeat;
    color: #ffffff;
    font-size: 1.125rem;
    padding: 30px;
}

#events .tabHeadline {
    color: #ffffff;
    margin: 0 0 20px 0;
}

@media (min-width: 768px) {
    #events .tabHeadline {
        margin: 0 0 25px 0;
        font-size: 1.625rem;
    }
}

@media (min-width: 1200px) {
    #events .tabHeadline {
        -moz-hyphens: manual;
        -ms-hyphens: manual;
        -webkit-hyphens: manual;
        hyphens: manual;
    }
}

#events .tabHeadline::after {
    display: none;
}

#events .tab_link_entry {
    font-size: 1rem;
    position: relative;
    width: 100%;
}

#events .tab_link_title a {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 8px;
    font-family: "Oswald", sans-serif;
}

@media (min-width: 576px) {
    #events .tab_link_entries {
        -ms-flex-wrap: wrap;
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
    }
}

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

#events .tab_link_entry {
    border: none !important;
    color: #ffffff;
    font-size: 1rem;
    padding: 30px;
}

@media (min-width: 576px) and (max-width: 767px) {
    #events .tab_link_entry {
        width: 50%;
    }
}

@media (min-width: 768px) {
    #events .tab_link_entry {
        width: 33.33%;
    }
}

#events .tab_link_title a {
    color: #ffffff;
}

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

@media (max-width: 767px) {
    #events .tab_link_entry:nth-child(3n+1) {
        background: rgba(0, 0, 0, 0.1);
    }

    #events .tab_link_entry:nth-child(3n+2) {
        background: rgba(255, 255, 255, 0.1);
    }
}

@media (min-width: 768px) {

    #events .tab_link_entry:nth-child(6n+1),
    #events .tab_link_entry:nth-child(6n+5) {
        background: rgba(0, 0, 0, 0.1);
    }

    #events .tab_link_entry:nth-child(6n+3),
    #events .tab_link_entry:nth-child(6n+4) {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* ------------------------------------------- button design ------------------------------------------- */

#events .buttonStyle a {
    -webkit-transition: background 300ms linear, color 300ms linear, border 300ms linear;
    -moz-transition: background 300ms linear, color 300ms linear, border 300ms linear;
    -ms-transition: background 300ms linear, color 300ms linear, border 300ms linear;
    -o-transition: background 300ms linear, color 300ms linear, border 300ms linear;
    transition: background 300ms linear, color 300ms linear, border 300ms linear;
    border: 1px solid #ffffff;
    color: #ffffff;
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
}

#events .buttonStyle a:hover,
#events .buttonStyle a:focus {
    background: #ffffff;
    color: #0c278e;
}

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

#news {
    padding-top: 40px;
    padding-bottom: 85px;
}

#news .tab {
    background-color: #0c278e;
    overflow: hidden;
    padding: 30px;
    color: #ffffff;
    background-image: url('../img/icon-zeitung.png');
    background-position: top 20px right 20px;
    background-repeat: no-repeat;
}

#news .tabHeadline {
    color: #ffffff;
    margin: 0 0 20px 0;
}

@media (min-width: 768px) {
    #news .tabHeadline {
        margin: 0 0 25px 0;
        font-size: 1.625rem;
    }
}

@media (min-width: 1200px) {
    #news .tabHeadline {
        -webkit-hyphens: manual;
        -moz-hyphens: manual;
        -ms-hyphens: manual;
        hyphens: manual;
    }
}

#news .tabHeadline::after {
    display: none;
}

#news .tab_link_entry {
    font-size: 1rem;
    position: relative;
    width: 100%;
}

#news .tab_link_title a {
    line-height: 1.2;
    font-weight: 600;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 8px;
    color: #0c278e;
    font-family: "Oswald", sans-serif;
}

.title_news_19 a {
    line-height: 1.2 !important;
    font-weight: 600 !important;
    font-size: 1.125rem !important;
    display: block !important;
    margin-bottom: 8px !important;
    color: #0c278e !important;
    font-family: "Oswald", sans-serif !important;
}

.news_19 .vorschau_text {
    font-size: 1rem !important;
}

@media (min-width: 576px) {
    #news .tab_link_entries {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

#news .tab a {
    color: #fff;
    text-decoration: underline;
}

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

#news .tab_link_entry {
    background: #f5f5f5;
    padding: 290px 30px 30px 30px;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

@media (min-width: 576px) and (max-width: 767px) {
    #news .tab_link_entry {
        width: calc(50% - 15px);
    }

    #news .tab_link_entry:nth-child(2n+1) {
        margin-right: 15px;
    }

    #news .tab_link_entry:nth-child(2n+2) {
        margin-left: 15px;
    }
}

@media (min-width: 768px) {
    #news .tab_link_entry {
        width: calc(33.33% - 20px);
    }

    #news .tab_link_entry+.tab_link_entry {
        margin-left: 30px;
    }
}

@media (max-width: 767px) {
    #news .tab_link_entry+.tab_link_entry {
        margin-top: 30px;
    }
}

@media (min-width: 576px) {
    #news .tab_link_entry:nth-child(2) {
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    #news .tab_link {
        margin-top: 30px;
    }
}

#news .tab_preview_picture {
    background: #ffffff;
}

#news .tab_link_title a::before,
#news .tab_link_entry .tab_preview_picture {
    position: absolute;
    display: block;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 260px;
    overflow: hidden;
}

#news .tab_link_title a::before {
    content: "";
    background: #0c278e url("../img/news-platzhalter.jpg") center / cover no-repeat;
}

#news .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;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

#news .tab_date {
    font-size: 0.75rem;
    font-weight: 400;
    position: absolute;
    left: -1px;
    top: 245px;
    z-index: 1;
    display: inline-block;
    padding: 6px 20px;
    background: #ac0f0f;
    color: #ffffff;
}

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

/* ------------------------------------------- button design ------------------------------------------- */

#news .buttonStyle a {
    -webkit-transition: background 300ms linear, color 300ms linear, border 300ms linear;
    -moz-transition: background 300ms linear, color 300ms linear, border 300ms linear;
    -ms-transition: background 300ms linear, color 300ms linear, border 300ms linear;
    -o-transition: background 300ms linear, color 300ms linear, border 300ms linear;
    transition: background 300ms linear, color 300ms linear, border 300ms linear;
    border: 1px solid #ffffff;
    color: #ffffff;
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
}

#news .buttonStyle a:hover,
#news .buttonStyle a:focus {
    background: #ffffff;
    color: #0c278e;
}

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

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

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

#content :is(h1) {
    text-transform: uppercase;
    text-align: center;
}

@media (min-width: 992px) {
    h1, .h1, .legacy_h1 {
        font-size: 2.8125rem;
    }
}

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

@media (min-width: 992px) {
    h2, .h2, .legacy_h2 {
        font-size: 2.5rem;
    }
}

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

@media (min-width: 992px) {
    h3, .h3, .legacy_h3 {
        font-size: 2.1875rem;
    }
}

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 #0c278e;
}

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

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

@media (min-width: 992px) {
    #breaker {
        min-height: 380px;
        margin-bottom: -190px;
    }
}

/* ----------------------------------------------- @11f footer ----------------------------------------------- */

footer {
    font-size: 1rem;
}

footer a {
    color: #ffffff;
}

.footerTab a {
    color: #ffffff;
}

.footerTab a:hover {
    color: #ffffff;
}

.footerTab a[href*="mailto"] {
    color: #ffffff;
    text-decoration: underline;
}

#footer {
    background: #243c99;
    padding-top: 100px;
    padding-bottom: 50px;
    margin-top: 90px;
    background-position: bottom;
    color: #ffffff;
}

@media (max-width: 991px) {
    #footer {
        margin-top: 0px;
        padding-top: 50px;
    }
}

@media (min-width: 576px) {
    #footer>.row>*+*:nth-child(2) {
        margin-top: 0;
    }
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
.footerHeadline {
    color: #ffffff;
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
}

/* --------------------------------------------- newsletter -------------------------------------------- */

.newsletterTab {
    background: #ffffff;
    padding: 20px 35px;
    margin-bottom: 40px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    color: #1d1d1d;
}

@media (min-width: 992px) {
    .newsletterTab {
        margin-top: -190px;
        margin-bottom: 0px;
    }
}

.newsletterTab .tabHeadline {
    color: #0c278e;
    font-size: 1.625rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

#newsletter label {
    font-size: 1rem;
    margin-bottom: 8px;
    display: block;
    font-weight: 400;
}

#newsletterInputs {
    height: 36px;
    display: flex;
    position: relative;
    border-radius: 2px;
    margin-left: auto;
    max-width: 340px;
    background-color: #ebebeb;
}

#newsletter_input {
    color: #1d1d1d;
    font-size: 16px;
    font-style: italic !important;
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 36px;
    padding-left: 15px;
    padding-right: 43px;
    height: 36px;
    width: 100%;
    font-weight: 300;
}

#newsletter_submit {
    width: 36px;
    background: url('../img/newsletter-icon.png') center no-repeat;
    padding: 0;
    cursor: pointer;
    line-height: 36px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    font-size: 0;
    -webkit-transition: background-color 300ms linear;
    -moz-transition: background-color 300ms linear;
    -ms-transition: background-color 300ms linear;
    -o-transition: background-color 300ms linear;
    transition: background-color 300ms linear;
}

#newsletter_input::-ms-input-placeholder {
    color: #1d1d1d !important;
}

#newsletter_input::-webkit-input-placeholder {
    color: #1d1d1d !important;
}

#newsletter_input::-moz-placeholder {
    opacity: 1;
    color: #1d1d1d !important;
}

#newsletter_input:-moz-placeholder {
    opacity: 1;
    color: #1d1d1d !important;
}

/* --------------------------------------------- footer2 -------------------------------------------- */

#footer2 {
    padding: 15px 0 12px 0;
    background: #0c278e;
}

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

#vernetzt {
    text-align: right;
    font-size: 0.8125rem;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 auto;
    font-weight: 400;
    text-decoration: none;
}

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

#vernetzt span {
    color: #ffffff;
}

#vernetzt b {
    color: #ffffff;
}

#vernetzt span span {
    display: block;
}

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

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

#innerfooter {
    font-size: 1rem;
}

@media (max-width: 991px) {
    #innerfooter {
        margin-bottom: 15px;
    }
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

#innerfooter a {
    color: #ffffff;
    padding: 24px 0px;
    text-decoration: none;
}

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

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

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

@media (max-width: 575px) {
    #innerfooter li {
        display: block;
    }

    #innerfooter li a {
        padding: 0;
        line-height: 2.5;
    }

    #innerfooter li+li::before {
        content: "";
        margin: 0;
        color: #ffffff;
    }
}

/* --------------------------------------------- order -------------------------------------------- */

@media (max-width: 991px) {
    .order1 {
        order: 1;
    }

    .order2 {
        order: 3;
    }

    .order3 {
        order: 2;
    }
}