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

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

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

a {
    color: #20497a;
}

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

#contentBox a {
    font-weight: 500;
}

b, strong {
    font-weight: 600;
}

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

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

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





/* -------------------------------------------- @nav1 Navigation ------------------------------------------- */

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

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

@media (min-width: 992px) {
    #logo img {
        max-width: 340px;
        width: 100%;
    }
}

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

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    #menu {
        padding: 10px 0;
        position: static !important;
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
        box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
    }

    #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: #0c5c82;
        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 {
        background-color: #fff;
        padding: 20px 0;
        border-top: 30px solid #20497a;
    }

    .is-sticky #menu {
        padding: 10px 0;
        border-top: 10px solid #20497a;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    }

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

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

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

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

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

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

    .navbar-default .open>.dropdown-menu,
    .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]:hover>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
        pointer-events: auto !important;
        opacity: 1 !important;
    }

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

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

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

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

.navbar-default .navbar-nav>li>a {
    color: #1b2b3e;
    font-weight: 600;
    text-align: left;
    padding: 10px 35px 10px 15px;
    position: relative;
    font-size: 1.25rem;
    line-height: 1.2;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0);
}

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

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

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

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

.navbar-nav>li:hover>a,
.navbar-nav>li>a:hover,
.navbar-nav>li>a:focus,
.navbar-nav>li.open>a,
.navbar-nav>li.open>a:hover,
.navbar-nav>li.open>a:focus,
.navbar-nav>li[class$="_over"]>a,
.navbar-nav>li[class$="_over"]>a:hover,
.navbar-nav>li[class$="_over"]>a:focus {
    color: #1b2b3e;
    border: 2px solid #e67817;
}

.navbar-nav>li:focus-within>a {
    color: #1b2b3e;
    border: 2px solid #e67817;
}

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

.navbar-default .navbar-nav>li>.dropdown-menu {
    background: #20497a;
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    background: #20497a;
}

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

@media(min-width:992px) {
    nav.horizontally .dropdown-menu {
        min-width: 330px;
    }
    .navbar-default .navbar-nav>li>.dropdown-menu {
        padding-top: 20px;
        padding-bottom: 0px;
    }
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu {
        left: 50%;
        -moz-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

    .navbar-default .navbar-nav>li>.dropdown-menu::after {
        content: "";
        display: block;
        position: absolute;
        left: 50%;
        top: -20px;
        margin-left: -20px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 20px 20px 0 20px;
        border-color: #ffffff transparent transparent transparent;
        -webkit-transition: top 150ms linear;
        -moz-transition: top 150ms linear;
        -ms-transition: top 150ms linear;
        -o-transition: top 150ms linear;
        transition: top 150ms linear;
    }

    .navbar-default .navbar-nav>li:hover>.dropdown-menu::after {
        top: 0;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        margin-top: -30px;
        margin-left: 10px;
    }

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

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

.navbar-default .navbar-nav>li>.dropdown-menu>li>a,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
    color: #ffffff;
    font-weight: 400;
    text-align: left;
    padding: 8px 25px;
    font-size: 0.9375rem;
    line-height: 1.2;
    text-decoration: none;
}

@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 {
        text-align: center;
        padding: 10px 12px;
    }
}

/* ------------------------------------------ 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 {
    background: #e67817;
    color: #1b2b3e;
}

.navbar-nav>li>.dropdown-menu>li:focus-within>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:focus-within>a {
    background: #e67817;
    color: #1b2b3e;
}

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

.buttonStyle a {
    display: inline-block;
    background: #f28f38;
    border-radius: 3px;
    color: #291809;
    font-size: 0.875rem;
    text-transform: uppercase;
    padding: 5px 20px;
    font-weight: 400;
    text-decoration: none;
    -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) {
    .buttonStyle a+a {
        margin-left: 12px;
    }
}

.buttonStyle a::after {
    content: "\00BB";
    margin-left: 4px;
    position: relative;
    bottom: 1px;
}

.buttonStyle a:hover,
.buttonStyle a:focus {
    color: #291809;
    background: #d47623;
}

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

#slider {
    min-height: 200px;
    max-height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 3px;
}

@media (max-width: 767px) {
    #slider {
        height: 100%;
    }
}

@media (min-width: 768px) {
    #slider {
        min-height: 300px;
        max-height: 500px;
    }

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

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

    .index #slider {
        min-height: 500px;
    }
}

.theme-nivo .nivo-controlNav .slick-dots li {
    color: #fff;
}

#headerpic {
    margin: 0;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 3px;
    max-width: 1360px;
    margin: 0 auto;
}

.noPadding {
    padding-left: 0;
    padding-right: 0;
}

#headerpic>.row {
    max-width: 1580px;
    width: 100%;
    background: #000000;
}

.slider-mask {
    display: none;
}

@media (min-width: 768px) {
    .slider-mask {
        display: block;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        height: auto;
        background: linear-gradient(to top, #20497a 2%, rgba(255, 255, 255, 0) 66%);
    }

}

.nivo-directionNav a {
    color: #ffffff !important;
}

a.nivo-control {
    color: #ffffff !important;
}

a.nivo-control.active {
    color: #ffffff !important;
}



/* ----------------------------------------------- scroll bottom ----------------------------------------------- */

#scrollBottom {
    font-size: 0;
    border-radius: 10px;
    display: block;
    width: 34px;
    height: 34px;
    text-align: center;
    background-color: #fff;
    position: absolute;
    left: 50%;
    margin-left: -20px;
    bottom: 30px;
    z-index: 50;
}

@media (min-width: 768px) {
    #scrollBottom {
        width: 40px;
        height: 40px;
        bottom: 45px;
    }
}

#scrollBottom::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 1px;
    margin-top: 13px;
    display: inline-block;
    border-left: 2px solid #375c88;
    border-bottom: 2px solid #375c88;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: border 300ms linear;
    -moz-transition: border 300ms linear;
    -ms-transition: border 300ms linear;
    -o-transition: border 300ms linear;
    transition: border 300ms linear;
}

#scrollBottom:hover::after,
#scrollBottom:focus::after {
    border-color: #375c88;
}

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

#bannerOverlay {
    background: #20497a;
    color: #ffffff;
    padding: 30px;
    line-height: 1.4;
}

@media (max-width: 767px) {
    body:not(.index) #headerpic {
        display: none;
    }
}

@media (min-width: 768px) {
    #bannerOverlay {
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 50;
        background: none;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    }
}

@media (min-width: 992px) {
    #bannerOverlay {
        bottom: 75px;
    }
}

#bannerOverlay a {
    text-shadow: none;
    line-height: 1.5;
}

#bannerOverlay h1,
#bannerOverlay h2,
#bannerOverlay h3,
#bannerOverlay h4,
#bannerOverlay h5,
#bannerOverlay h6 {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 2rem;
}

.bannerHeadline {
    margin: 0 0 5px 0;
}

/* ---------------------------------------------- header tab ---------------------------------------------- */

#headerTab {
    border-radius: 3px;
    background: #20497a;
    color: #ffffff;
    height: 100%;
    min-height: 100%;
}

.headerContent {
    padding: 35px 30px 30px 30px;
}

.headerContent h1,
.headerContent h2,
.headerContent h3 {
    font-size: 2rem;
    margin-bottom: 22px;
}

.headerContent h1,
.headerContent h2,
.headerContent h3,
.headerContent h1 em,
.headerContent h2 em,
.headerContent h3 em {
    color: #ffffff;
}

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

.search {
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

form[id^="search"] {
    display: inline-block;
    position: relative;
    margin: 0;
    width: 100%;
}

form[id^="search"] label {
    display: block;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 18px;
    line-height: 1;
}

form [id^="search_input"] {
    color: #383838;
    font-size: 15px;
    font-style: normal;
    padding: 0;
    border: 0;
    line-height: 38px;
    padding-left: 14px;
    padding-right: 47px;
    height: 38px;
    width: 100%;
    border-radius: 3px;
    background: #ffffff !important;
}

form [id^="search_submit"] {
    width: 38px;
    height: 38px;
    border: none;
    background: url('../img/lupe-icon.png') center no-repeat;
    padding: 0;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 0;
    -webkit-transition: background 150ms linear;
    -moz-transition: background 150ms linear;
    -ms-transition: background 150ms linear;
    -o-transition: background 150ms linear;
    transition: background 150ms linear;
}

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

[id^="search_input"]::-ms-input-placeholder {
    color: #383838 !important;
    font-style: italic;
}

[id^="search_input"]::-webkit-input-placeholder {
    color: #383838 !important;
    font-style: italic;
}

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

/* --------------------------------------------- styler + contrast ------------------------------------------- */

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

    #styleContrast>* {
        padding: 11px 10px 15px 10px;
    }

    #style {
        background: rgba(0, 0, 0, 0.1);
    }

    #contrast_style {
        background: rgba(255, 255, 255, 0.1);
    }

    #styleContrast span {
        display: block;
        width: 100%;
        font-size: 0.875rem;
        margin-bottom: 9px;
    }

    #styleContrast button {
        font-size: 1.125rem;
        padding: 0 0 2px 0 !important;
        border: none;
        color: #ffffff;
        display: inline-block;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        font-weight: 500;
        text-align: center;
        background: rgba(0, 0, 0, 0.2);
        position: relative;
        line-height: 1;
    }

    #contrast_style button {
        font-size: 0;
    }

    #contrast_style button::after {
        content: "";
        display: block;
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 1px solid #ffffff;
    }

    #contrast_style button:nth-of-type(1)::after {
        background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 50%);
    }

    #contrast_style button:nth-of-type(2)::after {
        background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 50%);
    }

    #contrast_style button:nth-of-type(3)::after {
        background: #c2722d;
    }

    #styleContrast button+button {
        margin-left: 4px;
    }

    #styleContrast button:hover,
    #styleContrast button:focus {
        background: rgba(0, 0, 0, 0.4);
    }
}

/* ----------------------------------------------- news + events -------------------------------------------- */

#news .tab,
#eventsBG {
    border-radius: 3px;
    background-color: #20497a;
    overflow: hidden;
}

#news .tab,
#events .tab {
    padding: 30px;
    color: #ffffff;
    background-position: top 20px right 20px;
    background-repeat: no-repeat;
}

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

@media (min-width: 768px) {

    #news .tabHeadline,
    #events .tabHeadline {
        margin: 0 0 25px 0;
    }
}

@media (min-width: 1200px) {

    #news .tabHeadline,
    #events .tabHeadline {
        -webkit-hyphens: manual;
        -moz-hyphens: manual;
        -ms-hyphens: manual;
        hyphens: manual;
    }
}

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

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

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

@media (min-width: 576px) {

    #news .tab_link_entries,
    #events .tab_link_entries {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

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

#nw1 {
    padding-top: 30px;
    padding-bottom: 30px;
}

#nw1 .tab {
    color: #ffffff;
    padding: 30px;
    overflow: hidden;
    border-radius: 3px;
    background: url('../img/1nw/icon-zeitung.png') top 20px right 20px no-repeat, #20497a;
}

#nw1 .tab a {
    color: #ffffff;
    text-decoration: underline;
}

#nw1 .tabHeadline {
    color: #ffffff;
    font-weight: 700;
}

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

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

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

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

#nw1 .tab_link_entry {
    font-size: 1rem;
    position: relative;
    width: 100%;
    border-radius: 3px;
    padding: 160px 30px 30px 30px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

#nw1 .vorschau {
    opacity: 1;
}

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

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

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

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

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

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

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

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

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

#nw1 .tab_preview_picture {
    background: #ffffff;
}

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

#nw1 .tab_link_entry::before {
    content: "";
    background: #666666 url("../img/news-standard.jpg") center / cover no-repeat;
}

#nw1 .tab_preview_picture img {
    position: absolute;
    margin: 0 !important;
    left: 50%;
    top: 50%;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    max-width: 350px;
    width: auto;
    height: auto;
    -ms-interpolation-mode: bicubic;
    -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%);
}

#nw1 .tab_date {
    display: inline-block;
    position: absolute;
    z-index: 1;
    left: -1px;
    top: 105px;
    font-weight: 600;
    color: #191919;
    font-size: 0.75rem;
    padding: 6px 20px;
    background: #f28f38;
    border-radius: 0 3px 3px 0;
}

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

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

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

#nw1 .buttonStyle a {
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1d1d1b;
    padding: 5px 12px;
    border-radius: 3px;
    border: 1px solid #ffffff;
    background: #fff;
    -webkit-transition: background 300ms linear, color 300ms linear;
    -moz-transition: background 300ms linear, color 300ms linear;
    -ms-transition: background 300ms linear, color 300ms linear;
    -o-transition: background 300ms linear, color 300ms linear;
    transition: background 300ms linear, color 300ms linear;
}

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

#nw1 .buttonStyle a::after {
    content: " \00BB";
}

#nw1 .buttonStyle a:hover,
#nw1 .buttonStyle a:focus {
    color: #ffffff;
    background: #092d58;
}

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

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

@media (min-width: 992px) {
    #contentBox {
        padding-bottom: 80px;
        padding-top: 80px;
    }
}

#content {
    max-width: 1580px;
    background-color: #f5f5f5;
    margin-top: -110px;
    padding-top: 110px;
}

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

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

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

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

h2, .h2, .legacy_h2 {
    font-size: 1.625rem;

}

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

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

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

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

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


/* --------------------------------------------- tab-section -------------------------------------------- */

.tabs {
    padding: 0 0 30px 0;
    color: #3c4241;
    position: relative;
}

.tabs .tab {
    background-color: #20497a;
    position: relative;
    margin-top: 30px;
    display: flex;
    min-height: 200px;
    line-height: 1.3;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
}

@media (max-width: 991px) {
    .tabs .tab {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 768px) {
    .tabs .tab {
        margin-bottom: -60px;
    }
}

@media (max-width: 991px) {
    .tabs>.row {
        row-gap: 35px;
    }

    .tabs .tab {
        margin-bottom: -35px;
    }
}

@media (min-width: 992px) {
    .tabs .tab {
        min-height: 260px;
        height: 260px;
        margin-bottom: 30px;
    }
}

.tabs .tabHeadline {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-family: "Barlow", sans-serif;
    width: 100%;
    font-size: 1.375rem;
}

@media (min-width: 992px) {
    .tabs .tabHeadline {
        font-size: 1.6875rem;
    }
}

.tabs .tab .tabContent {
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    position: relative;
    z-index: 2;
    padding: 30px 20px;
    background-color: rgba(1, 78, 135, 0.55);
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    align-items: flex-end;
    justify-content: center;
    width: 100%
}

.tabs .tab .tabHeadline {
    margin: 0 0 20px 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5625rem;
}

.tabs .tab img {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    opacity: 0.2;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    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%);
    -webkit-transition: opacity 300ms linear;
    -moz-transition: opacity 300ms linear;
    -ms-transition: opacity 300ms linear;
    -o-transition: opacity 300ms linear;
    transition: opacity 300ms linear;
}

.tabs .tab .row,
.tabs .tab .row>div {
    padding: 0;
    margin: 0;
    position: static;
}


.tabs .tab2 {
    background: url('../img/skyline.png') bottom center no-repeat, #f5f5f5;
    position: relative;
    margin-top: 30px;
    display: flex;
    min-height: 200px;
    line-height: 1.3;
    overflow: hidden;
    color: #20497a;
}

.tabs .tab2 .tabContent {
    font-weight: 400;
    position: relative;
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: start;
    width: 100%
}

@media (min-width: 992px) {
    .tabs .tab2 {
        min-height: 260px;
        height: 260px;
        margin-bottom: 30px;
    }
}

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

footer {
    background-color: #20497a;
    padding-top: 40px;
    padding-bottom: 40px;
    color: #ffffff;
    font-size: 1rem;
}

@media (max-width: 1199px) {
    footer>.row {
        row-gap: 30px;
    }
}

@media (min-width: 1199px) {
    footer>.row>div:nth-child(2) {
        padding-left: 30px;
        padding-right: 30px;
    }
}

footer a {
    color: #ffffff;
}

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

footer a:hover,
footer a:focus {
    color: #ffffff;
}

.footerTab a,
.footerTab a {
    text-decoration: underline;
    border-radius: 3px;
    padding: 2px;
}

.footerTab a:hover,
.footerTab a:focus {
    background-color: rgba(0, 0, 0, 0.2);
}

.footerTab h1,
.footerTab h2,
.footerTab h3,
.footerTab h4,
.footerTab h5,
.footerTab h6 {
    font-size: 1.375rem;
    margin: 0;
    color: #ffffff;
}

#innerfooter ul {
    padding: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 576px) {
    #innerfooter ul {
        column-count: 2;
    }
}

#innerfooter li {
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

#innerfooter a {
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: 6px 10px 6px 25px;
}

#innerfooter a::before {
    content: "";
    display: block;
    position: absolute;
    left: 10px;
    top: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: background 300ms linear;
    -moz-transition: background 300ms linear;
    -ms-transition: background 300ms linear;
    -o-transition: background 300ms linear;
    transition: background 300ms linear;
}

#innerfooter a:hover::before,
#innerfooter a:focus::before {
    background: #ffffff;
}

/* --------------------------------------------- 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: 992px) {
    #vernetzt {
        margin: 0;
    }
}

#vernetzt span {
    color: #ffffff;
}

#vernetzt span span {
    display: block;
}

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