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

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

@media (min-width: 992px) {
    body {
        background: #ffffff url('../img/speechbubble-header.png') top 175px left 40% no-repeat;
    }
}

@media (min-width: 1800px) {
    body {
        background: #ffffff url('../img/speechbubble-header.png') top 175px left 10% no-repeat;
    }
}

a {
    color: #a7470c;
}

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

b, strong {
    font-weight: 700;
}

#overflow {
    overflow: hidden;
}

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

#logo {
    padding: 12px 20px;
    position: relative;
    display: inline-block;
}

@media (max-width: 991px) {
    #logo {
        padding: 10px 20px;
        position: fixed;
        left: 15px;
        top: 0;
        z-index: 102;
    }
}

@media (min-width: 992px) {
    #logo {
        margin: 130px 0 30px 0;
        padding: 30px;
    }
}

@media (min-width: 1200px) {
    #logo {
        margin: 275px 0 170px 0;
        padding: 0;
    }

    .index #logo {
        margin: 170px 0 75px 0;
        padding: 0;
    }
}

#logo img {
    display: block;
}

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

/* ----------------------------------------------- bannerCol ----------------------------------------------- */

@media (max-width: 991px) {
    header {
        padding-top: 70px;
    }

    .bannerCol {
        padding-right: 0;
    }

    .index .bannerCol {
        padding-bottom: 30px;
    }
}

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

#bannerBox .banner {
    height: 200px;
    width: 100%;
}

@media (min-width: 576px) {
    #bannerBox .banner {
        height: 250px;
        width: 100%;
    }
}

@media (min-width: 768px) {
    #bannerBox .banner {
        height: 300px;
    }
}

@media (min-width: 992px) {
    #bannerBox .banner {
        height: 615px;
    }
}

#bannerBox {
    padding: 0px 0px;
    overflow: hidden;
    position: relative;
}

#bannerBox::before {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url('../img/banner-overlay.png') bottom left / cover no-repeat;
}

@media (min-width: 576px) {
    #bannerBox {
        margin-right: -19vw;
    }
}

@media (min-width: 992px) {
    #bannerBox {
        margin-right: -19vw;
    }
}

@media (min-width: 1200px) {
    #bannerBox {
        margin-right: -19vw;
    }
}

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    #burgerButton {
        font-size: 0;
        border: none !important;
        position: absolute;
        z-index: 1002;
        display: block;
        width: 46px;
        height: 40px;
        border-radius: 2px;
        cursor: pointer;
        background-color: #ffffff;
        padding: 3px;
        right: 15px;
        top: 50%;
        margin-top: -20px;
    }

    #burgerButtonInner2, #burgerButton:after, #burgerButtonInner {
        background-color: #a7470c;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 3px;
        -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"] #burgerButtonInner2 {
        opacity: 0;
    }

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

    #burgerButtonInner {
        top: 10px;
    }

    #burgerButtonInner2 {
        top: 18px;
    }

    #burgerButton:after {
        top: 26px;
        content: "";
        display: block;
    }

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

    .navbar-collapse {
        top: 70px;
        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[aria-expanded="true"],
    .navbar-collapse.in {
        left: 0;
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-header {
        height: 70px;
        line-height: 1;
        border-radius: 2px;
        padding: 10px 15px;
        background-color: #ffffff;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 101;
        -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
    }

    .navbar-toggle::before {
        content: "";
        opacity: 0;
        position: fixed;
        top: 70px;
        right: 0;
        bottom: 0;
        width: 0;
        z-index: -1;
        display: block;
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-transition: width 300ms linear, opacity 300ms linear;
        -moz-transition: width 300ms linear, opacity 300ms linear;
        -ms-transition: width 300ms linear, opacity 300ms linear;
        -o-transition: width 300ms linear, opacity 300ms linear;
        transition: width 300ms linear, opacity 300ms linear;
    }

    .navbar-toggle[aria-expanded="true"]::before {
        opacity: 1;
        width: 70px;
    }

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

@media (max-width: 575px) {
    .navbar-collapse {
        width: calc(100% - 70px);
    }
}

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

    .navbar-collapse.collapse.in:after,
    .navbar-toggle[aria-expanded="true"]::before {
        width: 40%;
    }
}

/* menu desktop */

@media (max-width: 991px) {
    .sticky-wrapper {
        height: 0 !important;
    }

    #myNavbar {
        top: 70px !important;
    }
}

@media (min-width: 992px) {
    #menu {
        position: absolute;
        z-index: 60;
        left: 0;
        right: 0;
        top: 25px;
    }

    #myNavbar {
        padding: 10px 20px;
        background: #ffffff;
        border: 1px solid #dbe2e1;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: space-between;
        border-radius: 5px;
    }

    nav.horizontally .navbar-nav {
        width: 100%;
        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 .navbar-nav>li {
        position: relative;
    }

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

    .navbar-default .navbar-nav li[class*="toplevel"]>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"]:hover>ul {
        pointer-events: auto !important;
        opacity: 1 !important;
        top: 100%;
    }

    .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;
    }
}

@media (min-width: 1200px) {
    #menu {
        top: 45px;
    }

    #myNavbar {
        padding: 16px 15px;
    }
}

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

.navbar-default .navbar-nav>li>a {
    color: #383838;
    font-weight: 700;
    text-align: left;
    padding: 8px 15px 8px 15px;
    position: relative;
    font-size: 1.25rem;
    line-height: 1.2;
    text-decoration: none;
    font-family: "Oxygen", sans-serif;
}

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

    nav.horizontally .navbar-nav>li>a.dropdown-toggle {
        padding-right: 35px;
    }
}

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

    .navbar-default .navbar-nav>li+li {
        margin-left: 20px;
    }

    .navbar-default .navbar-nav>li>a.dropdown-toggle::after {
        content: "+";
        position: absolute;
        display: block;
        right: 0;
        top: 50%;
        margin-top: -11px;
        font-variant: normal;
        font-weight: 400;
    }

    nav.horizontally .navbar-nav>li>a.dropdown-toggle {
        padding-right: 20px;
    }
}

@media (min-width: 1200px) {
    .navbar-default .navbar-nav>li+li {
        margin-left: 30px;
    }
}

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

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li.open>a,
.navbar-default .navbar-nav>li.open>a:hover,
.navbar-default .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: #a7470c;
}

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

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

.navbar-default .navbar-nav>li>.dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #dbe2e1;
    padding: 10px 0 10px 25px;
}

.navbar-default .navbar-nav>li>.dropdown-menu, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    padding-top: 4px;
    padding-bottom: 4px;
}

@media(min-width:992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu {
        margin-left: 4px;
        margin-top: 40px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

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

    .navbar-default .navbar-nav>li>.dropdown-menu::after {
        content: "";
        position: absolute;
        display: block;
        left: -1px;
        top: -21px;
        background: url('../img/subnav.png') center no-repeat;
        width: 27px;
        height: 21px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        display: block !important;
    }
}

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

.navbar-default .navbar-nav>li>.dropdown-menu>li::before {
    content: "";
    display: block;
    position: absolute;
    top: 27px;
    bottom: 27px;
    left: 25px;
    width: 1px;
    background: #dbe2e1;
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>a,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
    color: #383838;
    font-weight: normal;
    text-align: left;
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.2;
    text-decoration: none;
}

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

@media (min-width:992px) {

    .navbar-default .navbar-nav>li>.dropdown-menu>li>a,
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
        font-size: 1.1875rem;
    }
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>a {
    padding: 9px 15px 9px 25px;
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
    padding: 7px 15px 7px 35px;
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>a::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    left: -6px;
    top: 15px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #a7470c;
    -webkit-transition: background 300ms linear;
    -moz-transition: background 300ms linear;
    -ms-transition: background 300ms linear;
    -o-transition: background 300ms linear;
    transition: background 300ms linear;
}

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

.navbar-nav>li>.dropdown-menu>li:hover>a,
.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,
.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 {
    color: #a7470c;
}

.navbar-nav>li>.dropdown-menu>li:focus-within>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:focus-within>a {
    color: #a7470c;
}

.navbar-nav>li>.dropdown-menu>li:hover>a::before,
.navbar-nav>li>.dropdown-menu>li>a:hover::before,
.navbar-nav>li>.dropdown-menu>li>a:focus::before,
.navbar-nav>li>.dropdown-menu>li.open>a::before,
.navbar-nav>li>.dropdown-menu>li.open>a:hover::before,
.navbar-nav>li>.dropdown-menu>li.open>a:focus::before,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a::before,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:hover::before,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:focus::before {
    background: #a7470c;
}

.navbar-nav>li>.dropdown-menu>li:focus-within>a::before {
    background: #a7470c;
}

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

@media (min-width: 992px) {
    #style {
        display: flex;
        align-items: center;
        align-content: center;
        margin-left: 17px;
    }

    #style button {
        font-size: 16px;
        background: #a91919;
        padding: 0;
        border: none;
        color: #ffffff;
        width: 38px;
        height: 38px;
        border-radius: 100%;
        display: inline-block;
        font-weight: 700;
        text-align: center;
        position: relative;
        line-height: 1;
        -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 {
        background: #7a0f0f;
    }

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

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

#content {
    text-align: left;
}

main {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
}

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

    main {
        padding-top: 45px;
        padding-bottom: 95px;
    }
}

@media (min-width: 1200px) {
    main {
        padding-bottom: 215px;
        background: url('../img/speechbubble-tabs.png') top 55px right 145px no-repeat,
            url('../img/speechbubble-footer.png') left 35px bottom 100px no-repeat;
            background-size: 7vw;
    }

    .index main {
        padding-bottom: 75px;
        background: url('../img/speechbubble-tabs.png') top right 145px no-repeat,
            url('../img/speechbubble-footer.png') left 35px bottom 100px no-repeat;
            background-size: 7vw;
    }
}

#contentbottom_left {
    position: relative;
    z-index: 2;
}

/* --------------------------------------------- contentButtons --------------------------------------------- */

.contentButtons {
    padding-top: 40px;
}

.contentButtons a {
    background-color: #a91919;
    color: #ffffff;
    border-radius: 20px;
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-block;
    padding: 8px 35px;
    margin-top: 20px;
}

.contentButtons a:hover,
.contentButtons a:focus {
    background: #005f89;
}

/* --------------------------------------------- hrBox --------------------------------------------- */

.hrBox hr {
    background: #d0e2c7;
    margin: 0;
    opacity: 1;
    height: 3px;
}

@media (max-width: 1499px) {
    .hrBox hr {
        background: rgba(255,255,255,0);
    }
}

/* --------------------------------------------- tabs --------------------------------------------- */

#tabs {
    padding-top: 65px;
    padding-bottom: 75px;
}

#tabs .tab {
    background-color: #ffffff;
    border-top: 11px solid #4b8132;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    min-height: 100%;
    text-align: center;
    padding: 0 0 30px 0;
    overflow: hidden;
}

#tabs .tab a:not(.has-image):not([rel]) {
    background-color: #a91919;
    color: #ffffff;
    border-radius: 20px;
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-block;
    padding: 8px 35px;
    margin-top: 20px;
}

#tabs .tab a:not(.has-image):not([rel]):hover,
#tabs .tab a:not(.has-image):not([rel]):focus {
    background: #005f89;
}

#tabs h2, #tabs h3 {
    font-size: 2.1875rem;
    color: #005f89;
}

#tabs img {
    max-width: unset;
    width: calc(100% + 40px);
    position: relative;
    left: -20px;
    top: -20px;
    display: block;
}

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

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

/* --------------------------------------------- 4nw news --------------------------------------------- */

#news {
    padding: 45px 0;
    font-size: 1rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (min-width: 992px) {
    #news {
        padding: 85px 0 45px 0;
    }
}

#news .tab_spacer {
    display: none;
}

#news h2 {
    margin-bottom: 30px;
    color: #005f89;
    font-size: 2.1875rem;
    font-weight: 700;
}

@media (min-width: 992px) {
    #news h2 {
        margin-bottom: 70px;
    }
}

#news .tab_link_mandat a {
    color: inherit;
}

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

#news .tab_spacer {
    display: none;
}

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

#news .tab_link_entry {
    position: relative;
    border-bottom: none !important;
    padding: 20px;
    background: #ffffff;
    border-top: 6px solid #4b8132 !important;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

@media (min-width: 500px) {
    #news .tab_link_entry {
        position: relative;
        margin-left: 185px;
        min-height: 105px;
        border-bottom: none !important;
        padding: 20px;
        background: #ffffff;
    }
}

#news .tab_link_title a {
    display: block;
}

#news .tab_link_title a {
    color: #005f89;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Oxygen", sans-serif;
}

#news .tab_preview_picture {
    display: none;
}

@media (min-width: 500px) {
    #news .tab_link_title a::after {
        content: "";
        background: #005f89 url('../img/Bild.png') center no-repeat;
    }

    #news .tab_preview_picture {
        background: #ffffff;
    }

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

    #news .tab_preview_picture img {
        position: absolute;
        z-index: 2;
        left: 50%;
        top: 50%;
        min-width: 100%;
        max-width: none;
        height: 100%;
        width: auto;
        -ms-interpolation-mode: bicubic;
        transform-origin: top left;
        -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_link_entry>div:nth-last-child(2) {
    display: none;
}

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

    #news .tab_link_entries {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #news .tab_link_entry {
        border: none !important;
        position: relative;
        background: #ffffff;
        padding: 20px 20px 30px 20px;
        border-top: 11px solid #4b8132 !important;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #news .tab_link_entry {
        width: calc(50% - 15px);
    }

    #news .tab_link_entry+.tab_link_entry:not(:nth-of-type(2))::before {
        background: rgba(255, 255, 255, 0.2);
    }

    #news .tab_link_entry+.tab_link_entry:not(:nth-of-type(2))::before {
        content: "";
        display: block;
        height: 1px;
        display: block;
        position: absolute;
        top: -30px;
        left: -285px;
        right: 0;
    }

    #news .tab_link_entry+.tab_link_entry:not(:nth-of-type(2n+2))::before {
        right: -50px;
    }

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

    #news .tab_link_entry:nth-child(2) {
        margin-top: 0;
    }

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

    #news .tab_link_entry>* {
        width: 100%;
    }

    #news .tab_link_entry {
        position: relative;
        margin-left: 285px;
        min-height: 100%;
        border-bottom: none !important;
        padding: 20px;
        padding-top: 20px;
        background: #ffffff;
        border-top: 11px solid #4b8132 !important;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        max-width: 275px;
    }

    #news .tab_link_title {
        margin-bottom: 40px;
    }

    #news .tab_preview_picture {
        background: #ffffff;
    }

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

    #news .tab_link_entry .vorschau {
        opacity: 1;
        font-weight: 400;
    }

    #news .tab_link_entry .vorschau+div,
    #news .tab_link_entry .vorschau+div+div,
    #news .tab_link_entry .vorschau+div+div+div {
        display: none;
    }

    #news .tab_link_date {
        position: absolute;
        left: -75%;
        z-index: 55;
        background: #4b8132;
        max-width: 130px;
        font-size: 1rem;
        color: #ffffff;
        text-align: center;
        padding: 3px;
        top: -15px;
        font-family: "Oxygen", sans-serif;
        font-weight: 700;
    }
}

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

#news .tab_link_mehr {
    color: transparent;
    font-size: 0;
    text-align: right;
}

#news .tab_link_mehr a {
    background-color: #a91919;
    color: #ffffff;
    border-radius: 20px;
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-block;
    padding: 8px 35px;
    margin-top: 20px;
}

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

/* ------------------------------------------ filmTabs ----------------------------------------- */

#filmTabs {
    padding-top: 50px;
    padding-bottom: 30px;
}

#filmTabs .tabHeadline {
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    #filmTabs {
        padding-top: 100px;
    }
}

@media (min-width: 768px) {
    #filmTabs .tabHeadline {
        font-size: 2.1875rem;
    }
}

#filmTabs a {
    background-color: #a91919;
    color: #ffffff;
    border-radius: 20px;
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-block;
    padding: 8px 35px;
    margin-top: 20px;
}

#filmTabs a:hover,
#filmTabs a:focus {
    background-color: #005f89;
}

#filmTabs img {
    border-top: 11px solid #4b8132;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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 #005f89;
}

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

footer {
    border-top: 1px solid #dbe2e1;
    position: relative;
    margin-top: 200px;
}

footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -201px;
    background-size: cover;
    background-position: top right -1px, center;
    background-repeat: no-repeat;
    display: block;
    height: 200px;
    max-width: 734px;
    pointer-events: none;
}

@media (min-width: 576px) {
    footer {
        margin-top: 250px;
    }

    footer::before {
        top: -251px;
        height: 250px;
    }
}

@media (min-width: 768px) {
    footer {
        margin-top: 300px;
    }

    footer::before {
        top: -301px;
        height: 300px;
    }
}

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

    footer::before {
        width: 33.33%;
        height: 495px;
        right: auto;
        top: auto;
        bottom: 0;
    }
}

@media (min-width: 1200px) {
    footer {
        background: #ffffff url('../img/speechbubble-footer-yellow.png') center right 135px no-repeat;
    }

    footer::before {
        width: calc(400px + (50vw - 600px));
    }
}

#footer {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 1rem;
}

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

.footerHeadline {
    font-size: 1.375rem;
    margin: 0;
}

@media (min-width: 768px) {
    .footerHeadline {
        font-size: 1.5625rem;
    }
}

.footerTab h1 em,
.footerTab h1 i,
.footerTab h2 em,
.footerTab h2 i,
.footerTab h3 em, h3 i {
    font-variant: normal;
    font-size: 1rem;
    font-style: normal;
    display: block;
}

.footerTab a:not([href^="mailto:"]) {
    background-color: #a91919;
    color: #ffffff;
    border-radius: 18px;
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-block;
    padding: 5px 35px;
}

.footerTab a:not([href^="mailto:"]):hover,
.footerTab a:not([href^="mailto:"]):focus {
    background-color: #005f89;
}

.footerTab a[href^="mailto:"] {
    display: inline-block;
    text-decoration: none;
}

.footerTab a[href^="mailto:"]:focus,
.footerTab a[href^="mailto:"]:hover {
    text-decoration: none;
}

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

#vernetzt {
    font-size: 0.875rem;
    color: #666666;
    justify-content: center;
    line-height: 1.3;
    margin: 30px auto 0 auto;
    text-decoration: none;
    display: inline-block;
}

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

#vernetzt span {
    color: #666666;
    display: block;
}

#vernetzt b {
    color: #a7470c;
    font-weight: 400;
}

#vernetzt img {
    margin-bottom: 6px;
}

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

#innerfooter {
    border-top: 1px solid #dbe2e1;
    font-size: 1rem;
    padding: 22px 0;
    font-weight: 700;
    font-family: "Oxygen", sans-serif;
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: block;
}

#innerfooter a {
    color: #666666;
    text-decoration: none;
}

#innerfooter a:hover,
#innerfooter a:focus {
    color: #a7470c;
}

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

    #innerfooter li+li::before {
        content: "\2022";
        margin: 0 15px;
        color: #666666;
    }
}

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

/* ------------------------------------------- contrast ------------------------------------------ */

.contrast_light_font footer .row {
    background: transparent !important;
}