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

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

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

a {
    color: #4b5578;
}

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

#content a {
    font-style: italic;
}

b,
strong {
    font-weight: 700;
}

@media (min-width: 1200px) {

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

.over {
    overflow: hidden;
}

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

#logo {
    display: inline-block;
    background: #4b5578;
    border-radius: 20px 3px 20px 3px;
    padding: 25px 18px;
}

@media (min-width: 992px) {
    #logo {
        position: absolute;
        z-index: 10000;
        top: -60px;
        transition: padding 300ms linear;
    }

    .is-sticky #logo {
        max-width: 180px;
        padding: 15px 9px;
        transition: padding 300ms linear;
    }
}

@media (max-width: 1399px) and (min-width: 1200px) {
    #logo {
        top: -30px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    #logo {
        top: -60px;
    }
}

#logo img {
    display: block;
}

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

    #logo {
        padding: 15px 9px;
    }

    #menu {
        padding: 10px 0;
    }
}

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

.dropdown-toggle-button-wrapper2 {
    display: block;
}

.dropdownpr li[id*="secondlevel"] {
    position: relative;
}

#menu {
    background-color: #ffffff;
    box-shadow: 0 5px 0px 0 rgba(0, 0, 0, 0.0);
    transition: box-shadow 200ms linear;
}

.is-sticky #menu {
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

#burgerButtonInner2,
#burgerButtonInner {
    color: #010101;
    background: #ffffff;
}

/* 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: #4b5578;
        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) {
    #menu {
        padding: 0;
    }

    .staticCol {
        position: static;
    }

    #myNavbar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        flex-wrap: wrap;
    }

    #myNavbar>ul {
        width: 98%;
    }

    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;
        flex-wrap: wrap;
    }

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

    nav.horizontally .dropdown-menu {
        z-index: 1000;
    }

    nav.horizontally .navbar-nav>li>ul>li[class*="_over"]>ul {
        display: none !important;
    }

    nav.horizontally .navbar-nav>li>.dropdown-menu {
        position: absolute;
        bottom: auto;
        width: 100%;
        right: 0;
        max-width: 1380px;
        padding: 70px 0 60px 350px;
    }

    nav.horizontally li[class*="toplevel"]>ul {
        max-height: 500px;
    }

    nav.horizontally li[class*="start"] {
        display: none !important;
    }

    nav.horizontally li[class*="toplevel"]>ul::after {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        left: -100%;
        top: 0;
        bottom: 0;
        right: -100%;
        background-color: rgba(219, 219, 219, 0.9);
    }

    nav.horizontally li[class*="toplevel"]>ul::before {
        content: '';
        max-width: 1920px;
        width: 100%;
        display: inline-block;
        height: 35px;
        position: absolute;
        top: -35px;
        left: 0px;
        right: 0px;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]>ul {
        display: block !important;
        pointer-events: none;
        opacity: 0 !important;
        -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*="toplevel"]:hover>ul {
        pointer-events: all !important;
        opacity: 1 !important;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]:focus-within>ul *,
    .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul * {
        pointer-events: all;
    }


    .navbar-default:focus-within .navbar-nav li[class*="secondlevel"]>ul,
    .navbar-default:focus-within .navbar-nav li[class*="toplevel"]>ul {
        z-index: 999;
    }

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


    .mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
        background-position: 0 -1px !important;
    }

    .mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
        background-position: 0 -17px !important;
    }

    .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        background-color: #ffffff !important;
        background-color: rgba(255, 255, 255, 0.75) !important;
    }
}

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

.navbar-default .navbar-nav>li>a {
    color: #292929;
    font-weight: 700;
    text-align: left;
    padding: 40px 15px;
    position: relative;
    font-size: 1.25rem;
    line-height: 1.2;
    text-decoration: none;
    hyphens: auto;
    text-transform: uppercase;
}

@media (min-width: 992px) and (max-width: 1400px) {
    .navbar-default .navbar-nav>li>a {
        padding: 20px 5px 20px 5px;
        font-size: 17px;
    }
}

@media (min-width: 1200px) {
    .navbar-default .navbar-nav>li>a {
        white-space: nowrap;
    }
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li>a {
        font-size: 1.125rem;
    }

    .navbar-default .navbar-nav>li+li {
        border-top: 1px solid rgba(41, 41, 41, 0.3);
    }

    .navbar-default .navbar-nav>li>a {
        padding: 14px 35px 14px 30px;
    }
}

.dropdown-toggle-button::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background: #4b5578;
    left: 50%;
    transform: translate(-50%) rotate(90deg);
    transition: all 100ms linear;
    top: 12px;
}

.dropdown-toggle-button::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background: #4b5578;
    transform: none;
    left: 50%;
    top: 12px;
    transform: translate(-50%);
}

.dropdown-toggle-button {
    position: relative;
    padding: 15px;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .dropdown-toggle-button {
        right: 10px;
        top: 6px;
    }
}

@media (min-width: 992px) {
    .dropdown-toggle-button-wrapper {
        display: none !important;
    }
}

.dropdown-toggle-button-wrapper,
.dropdown-toggle-button-wrapper2 {
    top: 9px !important;
    right: 3px !important;
    position: absolute;
}

.dropdown-toggle-button-open::after {
    transform: rotate(0deg);
    left: 7px;
    top: 12px;
}

@media (min-width: 992px) {
    .nav .open>.dropdown-menu {
        display: none;
    }

    .navbar-default .navbar-nav>li>a {
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-align: center;
    }

    .navbar-default .navbar-nav>li:not(:first-child)>a::before {
        content: '';
        position: absolute;
        pointer-events: none;
        height: 34px;
        width: 1px;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        border-left: 1px solid rgba(41, 41, 41, 0.3);
    }
}

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

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

.navbar-default li[class*="toplevel"]:hover>a,
.navbar-default li[class*="toplevel"]>a:hover,
.navbar-default li[class*="toplevel"]>a:focus,
.navbar-default li[class*="toplevel"].open>a,
.navbar-default li[class*="toplevel"].open>a:hover,
.navbar-default li[class*="toplevel"].open>a:focus,
.navbar-default li[class*="toplevel"][class$="_over"]>a,
.navbar-default li[class*="toplevel"][class$="_over"]>a:hover,
.navbar-default li[class*="toplevel"][class$="_over"]>a:focus {
    color: #292929;
    background: #dbdbdb;
}

.navbar-default li[class*="toplevel"]:focus-within>a {
    color: #292929;
    background: #dbdbdb;
}

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

.navbar-default .navbar-nav li[class*="secondlevel"]>a,
.navbar-default .navbar-nav li[class*="thirdlevel"]>a {
    color: #292929;
    font-weight: 500;
    text-align: left;
    padding: 7px 45px 7px 55px;
    font-size: 1.5rem;
    line-height: 1.2;
    text-decoration: none;
}

.navbar-default .navbar-nav li[class*="thirdlevel"]>a {
    font-size: 1.25rem;
    font-weight: 400;
}

.navbar-default .navbar-nav li[class*="secondlevel"]>a {
    padding: 6px 45px 9px 25px;
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav li[class*="secondlevel"]>a {
        padding: 9px 45px 9px 40px;
        font-weight: 600;
        font-size: 1.125rem;
    }

    .navbar-default .navbar-nav li[class*="secondlevel"]>a,
    .navbar-default .navbar-nav li[class*="thirdlevel"]>a {
        color: #292929;
    }

}

@media (max-width: 991px) {
    .navbar-default .navbar-nav li[class*="thirdlevel"]>a {
        padding-left: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav li[class*="thirdlevel"]>a {
        font-size: 1.25rem;
        padding-left: 20px;
    }

    .navbar-default .navbar-nav li[class*="secondlevel"]+li+li>a,
    .mCustomScrollBox>.mCSB_container>li[class*="_start"]+li+li>a {
        border-top: 1px solid rgba(41, 41, 41, 0.3);
    }

    .navbar-default .navbar-nav li[class*="secondlevel"]>.dropdown-menu {
        padding-left: 35px;
        padding-bottom: 10px;
    }
}

@media (max-width: 991px) {

    .navbar-default .navbar-nav li[class*="secondlevel"]>a,
    .mCustomScrollBox>.mCSB_container>li[class*="_start"] {
        font-size: 1rem;
    }

    .navbar-default .navbar-nav li[class*="thirdlevel"]>a {
        font-size: 1rem;
    }

    .dropdown-toggle-button-wrapper,
    .dropdown-toggle-button-wrapper2 {
        top: 5px !important;
        right: 13px !important;
        z-index: 12;
    }

    .dropdown-toggle-button-wrapper2 {
        top: 0 !important;
    }
}

/* ------------------------------------------ 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,
.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$="a_over"]>a,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a:hover,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a:focus,
.mCustomScrollBox>.mCSB_container>li[class*="_start"] {
    color: #4b5578;
}

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

#slider {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

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

    body.index #slider {
        max-height: 800px;
    }
}

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

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

.slider-mask {
    display: none;
}

@media (min-width: 992px) {
    body.index .slider-mask {
        display: block;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0));
    }
}

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

@media (min-width: 992px) {
    #headerpic .nivo-directionNav a {
        background: #ffffff;
        width: 60px;
        height: 48px;
        -moz-transform: skewX(-25deg);
        -webkit-transform: skewX(-25deg);
        -o-transform: skewX(-25deg);
        -ms-transform: skewX(-25deg);
        transform: skewX(-25deg);
        -webkit-transition: width 300ms linear, opacity 300ms linear, background 300ms linear;
        -moz-transition: width 300ms linear, opacity 300ms linear, background 300ms linear;
        -ms-transition: width 300ms linear, opacity 300ms linear, background 300ms linear;
        -o-transition: width 300ms linear, opacity 300ms linear, background 300ms linear;
        transition: width 300ms linear, opacity 300ms linear, background 300ms linear;
    }

    #headerpic:hover .nivo-directionNav a,
    #headerpic:focus .nivo-directionNav a {
        width: 100px;
    }

    #headerpic .nivo-directionNav a:hover,
    #headerpic .nivo-directionNav a:focus {
        background: #292929;
    }

    #headerpic .nivo-directionNav a::before,
    #headerpic .nivo-directionNav a::after {
        content: "";
        display: block;
        position: absolute;
    }

    #headerpic .nivo-directionNav a::before {
        height: 2px;
        width: 16px;
        top: 50%;
        margin-top: -1px;
        background: #292929;
        -webkit-transition: background 300ms linear;
        -moz-transition: background 300ms linear;
        -ms-transition: background 300ms linear;
        -o-transition: background 300ms linear;
        transition: background 300ms linear;
    }

    #headerpic .nivo-directionNav a:hover::before,
    #headerpic .nivo-directionNav a:focus::before {
        background: #ffffff;
    }

    #headerpic .nivo-directionNav a::after {
        height: 8px;
        width: 8px;
        top: 50%;
        margin-top: -5px;
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: border-color 300ms linear;
        -moz-transition: border-color 300ms linear;
        -ms-transition: border-color 300ms linear;
        -o-transition: border-color 300ms linear;
        transition: border-color 300ms linear;
    }

    #headerpic .nivo-directionNav a:hover::after,
    #headerpic .nivo-directionNav a:focus::after {
        border-color: #ffffff;
    }

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

    #headerpic a.nivo-prevNav::before {
        right: 16px;
    }

    #headerpic a.nivo-prevNav::after {
        right: 22px;
        border-left: 2px solid #292929;
        border-bottom: 2px solid #292929;
    }

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

    #headerpic a.nivo-nextNav::before {
        left: 16px;
    }

    #headerpic a.nivo-nextNav::after {
        left: 22px;
        border-right: 2px solid #292929;
        border-top: 2px solid #292929;
    }
}

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

@media (min-width: 992px) {
    #headerpic .nivo-controlNav {
        font-size: 0;
        max-width: 992px;
        text-align: right;
        left: 50%;
        bottom: 60px;
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    #headerpic .nivo-controlNav li {
        width: auto;
    }

    #headerpic .nivo-controlNav :is(a, button) {
        position: relative;
        background: #ffffff !important;
        opacity: 0.4;
        margin: 0;
        height: 5px;
        width: 30px;
        padding: 0 !important;
        -webkit-transition: opacity 300ms linear;
        -moz-transition: opacity 300ms linear;
        -ms-transition: opacity 300ms linear;
        -o-transition: opacity 300ms linear;
        transition: opacity 300ms linear;
    }

    #headerpic .nivo-controlNav a::before,
    #headerpic .nivo-controlNav button::before {
        content: "";
        display: block;
        position: absolute;
        top: -15px;
        right: 0;
        bottom: -15px;
        left: 0;
    }

    #headerpic .nivo-controlNav :is(a, button):is(.active, :hover, :focus),
    #headerpic .nivo-controlNav .slick-active :is(a, button) {
        opacity: 1;
    }
}

@media (min-width: 1200px) {
    #headerpic .nivo-controlNav {
        max-width: 1375px;
        bottom: 90px;
    }
}

/* ----------------------------------------------- overlay ----------------------------------------------- */

#overlay {
    color: #ffffff;
    font-weight: 500;
    font-size: calc(16px + (24 - 16) * (100vw - 320px) / (1920 - 320));
    pointer-events: none;
}

#overlay :is(h1, h2, h3, h4, h5, h6) {
    color: #ffffff;
    margin-left: -5px;
}

@media (max-width: 991px) {
    #overlay {
        padding-top: 25px;
        padding-bottom: 20px;
    }
}

@media (min-width: 992px) {
    #overlay {
        position: absolute;
        z-index: 60;
        right: 0;
        bottom: 100px;
        left: 0;
    }
}

@media (min-width: 1200px) {
    #overlay {
        bottom: 150px;
    }
}

#overlay>.row {
    pointer-events: all;
}

#overlay :is(h1, h2, h3, h4, h5, h6) {
    font-size: calc(30px + (80 - 30) * (100vw - 320px) / (1920 - 320));
    text-transform: uppercase;
    line-height: 1.1;
}

#overlay :is(h1, h2, h3, h4, h5, h6) :is(em, i) {
    font-size: calc(22px + (50 - 22) * (100vw - 320px) / (1920 - 320));
    display: block;
    font-style: normal;
    color: #bdcaf8;
    margin-left: 4px;
}

#overlay a {
    color: #2c375c;
    font-size: 1rem;
    background: #bdcaf8;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    padding: 7px 30px;
    border-radius: 20px 3px 3px 3px;
}

#overlay a:hover,
#overlay a:focus {
    background: #e6e8ef;
}

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

#news {
    padding-top: 50px;
    padding-bottom: 60px;
    background: #4b5578;
    color: #ffffff;
}

#news .tabHeadline {
    margin: 0;
    font-weight: 700;
    color: #ffffff;
}

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

#news .buttonStyle {
    margin-top: 35px;
}

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

#news .buttonStyle a {
    background: #4b5578;
    border-radius: 0 0 20px 0;
    border: 2px solid #ffffff;
    color: #ffffff;
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    padding: 5px 20px;
    text-decoration: none;
    text-transform: uppercase;
    -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;
}

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

    #news .buttonStyle a {
        padding: 5px 60px;
    }
}

#news .buttonStyle a:hover,
#news .buttonStyle a:focus {
    background: #33394b;
}

@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_link,
#news .tab_link>div {
    height: 100%;
    min-height: 100%;
}

#news .tab_link_entry {
    color: #292929;
    font-size: 0.875rem;
    position: relative;
    width: 100%;
    background: #ffffff;
    border-radius: 3px;
    padding: 190px 30px 30px 30px;
    border: unset !important;
    box-shadow: 0px 5px 20px 0px rgba(5, 10, 2, 0.1);
    -webkit-box-shadow: 0px 5px 20px 0px rgba(5, 10, 2, 0.1);
    -moz-box-shadow: 0px 5px 20px 0px rgba(5, 10, 2, 0.1);
}

@media (min-width: 576px) and (max-width: 991px) {
    #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;
    }

    #news .tab_link_entry:not(:first-child)+.tab_link_entry {
        margin-top: 30px;
    }
}

@media (min-width: 992px) {
    #news .tab_link_entry {
        width: calc(24.84% - 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: #e6e8ef;
}

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

#news .tab_link_entry::before {
    content: "";
    background: #e6e8ef 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.875rem;
    font-weight: 500;
    position: absolute;
    left: -1px;
    top: 135px;
    z-index: 1;
    display: inline-block;
    padding: 6px 20px;
    background: #2c375c;
    color: #ffffff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 1px;
}

#news .tab_link_title a {
    color: #4b5578;
    line-height: 1.2;
    font-weight: 700;
    font-size: 1.25rem;
    display: block;
    margin-bottom: 8px;
}

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

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

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

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

/* ------------------------------------------ tabs25 ----------------------------------------- */

#tabs25 {
    background: #e6e8ef;
    padding-top: 60px;
    padding-bottom: 60px;
    font-size: 1rem;
}

@media (max-width: 767px) {
    #tabs25 .linkRow>div:last-child {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    #tabs25 .linkRow>div+div {
        margin-top: 30px;
    }
}

#tabs25 .linkWrapper {
    z-index: 12;
    position: relative;
    background-color: #010101;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0px 5px 20px 0px rgba(5, 10, 2, 0.1);
    -webkit-box-shadow: 0px 5px 20px 0px rgba(5, 10, 2, 0.1);
    -moz-box-shadow: 0px 5px 20px 0px rgba(5, 10, 2, 0.1);
}

#tabs25 .linkWrapper a {
    color: #ffffff;
}

#tabs25 .linkWrapper .template-page {
    background: #010101;
    padding: 15px 115px 15px 30px;
    color: #ffffff;
    font-weight: 500;
    transition: all 300ms linear;
}

@media (max-width: 991px) {
    #tabs25 .linkWrapper .template-page {
        padding: 15px 85px 15px 15px;
    }
}

#tabs25 .linkWrapper :is(h1, h2, h3, h4, h5, h6) {
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.375rem);
    text-transform: uppercase;
    margin: 0px;
    transition: all 300ms linear;
}

#tabs25 .linkWrapper:hover .template-page,
#tabs25 .linkWrapper:focus .template-page,
#tabs25 .linkWrapper:hover :is(h1, h2, h3, h4, h5, h6),
#tabs25 .linkWrapper:focus :is(h1, h2, h3, h4, h5, h6) {
    color: #bdcaf8;
}

#tabs25 .link {
    padding-top: 173px;
    pointer-events: none;
}

#tabs25 .link a {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    pointer-events: all;
    z-index: -1;
    font-size: 0px;
    width: 100%;
}

#tabs25 .template-page>.row>div,
#tabs25 .template-page,
#tabs25 .template-page .row {
    position: static;
}

#tabs25 .link img {
    position: absolute;
    z-index: -1;
    max-width: unset;
    top: 0px;
    height: 100%;
    left: 50%;
    object-fit: cover;
    object-position: center;
    transform: translate(-50%);
    width: 100%;
    border-radius: 3px;
}

#tabs25 .link .template-page::after {
    content: '';
    position: absolute;
    right: 50px;
    bottom: 17px;
    z-index: 12;
    height: 54px;
    width: 54px;
    border-radius: 100%;
    transition: all 300ms linear;
    background: url('../img/icon-mehr.png') center no-repeat, #ffffff;
}

@media (max-width: 991px) {
    #tabs25 .link .template-page::after {
        right: 15px;
    }
}

#tabs25 .link:hover .template-page::after,
#tabs25 .link:focus .template-page::after {
    background-color: #bdcaf8;
}

/* ------------------------------------------ sponsorTabsBox ----------------------------------------- */

#sponsorTabsBox {
    padding: 65px 0;
    line-height: 1;
}

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

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

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

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

@media (min-width: 992px) {

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

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

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

#newslinks,
#newsmandate {
    border: 1px solid #4b5578;
}

/* ----------------------------------------------- @16f mbs ----------------------------------------------- */

.firstFooter {
    background-color: #4b5578;
    padding-top: 35px;
    padding-bottom: 25px;
    color: #ffffff;
    font-size: 1rem;
}

.contactSocial p {
    display: inline-block;
}

.contactSocial p+p {
    margin-left: 25px;
}

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

.contactSocial a {
    background: #ffffff;
    padding: 8px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 40px;
    max-height: 40px;
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -ms-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}

.contactSocial a:hover,
.contactSocial a:focus {
    background-color: #bdcaf8;
}

.contactSocial img:hover,
.contactSocial img:focus {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

#logoFooter {
    display: inline-block;
}

#logoFooter img {
    display: block;
}

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

@media (min-width: 768px) {
    .firstFooter>*+* {
        margin-top: 21px;
    }
}

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

    .firstFooter .row>.col-xs-12.hidden-xs~.col-xs-12::before,
    .firstFooter .row>.col-xs-12.hidden-sm~.col-xs-12::before {
        display: none;
    }
}

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

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

@media (min-width: 992px) {
    #vernetzt {
        font-size: 1rem;
    }
}

#vernetzt b {
    color: #ffffff;
    font-weight: 400;
    font-style: italic;
}

#vernetzt span {
    color: #ffffff;
}

#vernetzt span span {
    display: block;
}

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

/* --------------------------------------------- lastFooter -------------------------------------------- */

.lastFooter {
    background: #ffffff;
    padding-top: 35px;
    padding-bottom: 30px;
    color: #292929;
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

#innerfooter a {
    color: #292929;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9375rem;
}

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

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

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

@media (max-width: 767px) {
    #innerfooter li {
        display: block;
        text-align: center;
        padding: 5px;
        margin: 0;
    }

    #innerfooter li+li::before {
        display: none;
    }
}