@import url('https://fonts.verwaltungsportal.de/import/?family=Source+Sans+3:400,400i,600,600i,700,700i');

:root {
    --main-color: #083d77;
    --secondary-color: #268278;
    --secondary-color-light: #43f1c5;
    --secondary-color-dark: #075a45;
    --text-color: #313131;
    --highlight: #e9f0f5;

    --font-size: clamp(1rem, 2vw, 1.25rem);

    --shadow: 0 10px 30px 0 rgba(8, 61, 119, 0.3);

    --border-radius-small: 4px;
    --border-radius-large: calc(var(--border-radius-small) * 4);

    --distance-min: 40px;
    --distance-small: clamp(var(--distance-min), 4vw, 70px);
    --distance-medium: clamp(var(--distance-min), 10vw, 100px);
    --distance-large: clamp(var(--distance-min), 10vw, 130px);
}

html {
    max-width: 1930px;
    margin-left: auto;
    margin-right: auto;
    background: var(--highlight);
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    scrollbar-color: var(--main-color) #ffffff;
    scrollbar-width: thin;
}

body {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    color: var(--text-color);
    background: #ffffff;
    font-size: var(--font-size);
    /* 1rem = 16px */
    line-height: 1.5;
}

a {
    color: var(--main-color);
}

a:is(:hover, :focus) {
    color: var(--main-color);
    text-decoration: underline;
}

:is(main, footer) a {
    text-decoration: underline;
}

b,
strong {
    font-weight: 600;
}

@media (min-width: 1200px) {
    :is(.row, .compact, ._op-container .container):not(.container-fluid) {
        max-width: 1610px
    }
}

.white-text,
.white-text * {
    color: #ffffff;
}

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

#logo {
    display: block;
    width: 140px;
    line-height: 0;
}

#logo path {
    fill: #ffffff;
    transition: fill 300ms linear;
}

@media (min-width: 992px) {
    .is-sticky #logo path.st0 {
        fill: #45749E
    }

    .is-sticky #logo path.st1 {
        fill: #5BBBA4
    }
}

/* #region ---------------------------------- navigation ---------------------------------------- */

/* burgermenu for tablet */

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

    nav.horizontally {
        position: static !important;
        padding: 20px 0;
    }

    #burgerButton {
        font-size: 0;
        border: none !important;
        display: block;
        height: 50px;
        width: 60px;
        border-radius: var(--border-radius-small);
        padding: 6px 8px;
        cursor: pointer;
        background-color: var(--main-color);
        box-shadow: none;
    }

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

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

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

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

    #burgerButtonInner {
        top: 16px;
    }

    #burgerButton::before {
        top: 24px;
        content: "";
    }

    #burgerButton::after {
        top: 32px;
        content: "";
    }

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

    .navbar-collapse {
        width: calc(100% - 90px);
        max-width: 300px;
        top: 0;
        background: var(--main-color);
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        overflow-y: auto;
        transition: left 300ms linear, opacity 300ms linear, box-shadow 600ms linear;
        box-shadow: 250px 0 50vw 50vw rgba(255, 255, 255, 0);
    }

    .navbar-collapse:is([aria-expanded="true"], .in) {
        left: 0;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        box-shadow: 250px 0 50vw 50vw rgba(0, 0, 0, 0.6);
    }

    .navbar-header {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 101;
    }

    .dropdown-toggle-button-wrapper {
        top: 7px;
    }

    .dropdown-toggle-button-wrapper2 {
        top: 4px;
    }
}

/* menu desktop */

@media (min-width: 992px) {
    nav.horizontally {
        position: relative;
        z-index: 100;
        padding: var(--distance-min) 0;
        transition: background 300ms linear, box-shadow 300ms linear, padding 300ms linear;
    }

    .is-sticky nav.horizontally {
        padding: 15px 0;
        background: #ffffff;
        box-shadow: var(--shadow);
    }

    nav.horizontally .navbar-nav {
        display: flex;
        justify-content: end;
        align-items: center;
    }

    nav.horizontally .navbar-nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        display: block !important;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 300ms linear;
    }

    nav.horizontally .navbar-nav [class*="secondlevel"]>ul {
        left: 100%;
        top: 0;
    }

    nav.horizontally .navbar-nav li {
        position: relative;
    }

    nav.horizontally .navbar-nav li.open>ul {
        pointer-events: none !important;
        opacity: 0 !important;
        visibility: hidden;
    }

    nav.horizontally .navbar-nav li:is(:hover)>ul,
    nav.horizontally .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
        pointer-events: auto !important;
        opacity: 1 !important;
        visibility: visible;
    }

    nav.horizontally .navbar-nav li:is(:hover, :focus)>ul {
        z-index: 1003;
    }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
    color: #ffffff;
    font-weight: 600;
    text-align: left;
    padding: 15px;
    position: relative;
    font-size: 1.25rem;
    line-height: 1.2;
    text-decoration: none;
}

@media (max-width: 991px) {
    nav.horizontally a[class*="toplevel"].dropdown-toggle {
        padding-right: 35px;
    }
}

@media (min-width: 992px) {
    nav.horizontally li[class*="toplevel"]+li {
        margin-left: 40px;
    }

    nav.horizontally li[class*="toplevel"]:last-child {
        margin-left: 60px;
    }

    nav.horizontally a[class*="toplevel"] {
        text-align: center;
        padding: 16px 0;
    }

    .is-sticky nav.horizontally a[class*="toplevel"] {
        color: var(--text-color);
    }
}

nav.horizontally li[class*="toplevel"]:not(:last-child)>a::before {
    content: "";
    width: 0;
    height: 2px;
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    background: #ffffff;
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 300ms linear, width 300ms linear, background 300ms linear;
}

@media (min-width: 992px) {
    .is-sticky nav.horizontally li[class*="toplevel"]:not(:last-child)>a::before {
        background: var(--text-color);
    }
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a::before,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"].open>a::before,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"][class*="_over"]>a::before,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus)::before {
    opacity: 1;
    width: 100%;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
    background: #ffffff;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
}

@media (max-width: 991px) {
    nav.horizontally [class*="toplevel"]>ul {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    nav.horizontally [class*="toplevel"] ul {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    nav.horizontally [class*="toplevel"]>ul {
        margin-top: 40px;
        left: -25px;
    }

    nav.horizontally [class*="secondlevel"]>ul {
        margin-top: -18px;
        margin-left: 20px;
    }

    nav.horizontally ul.dropdown-menu::before {
        content: "";
        position: absolute;
        display: block;
    }

    nav.horizontally [class*="toplevel"]>ul::before {
        height: 40px;
        left: 0;
        right: 0;
        top: -40px;
    }

    nav.horizontally [class*="secondlevel"]>ul::before {
        width: 20px;
        top: 0;
        bottom: 0;
        left: -20px;
    }
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    color: var(--main-color);
    font-weight: 300;
    text-align: left;
    padding: 8px 25px;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 991px) {
    nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
        padding-right: 35px;
    }
}

@media (min-width: 992px) {
    nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]) {
        padding: 0 25px;
    }

    nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
        padding: 8px 0;
    }
}

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
    content: "";
    width: 0;
    height: 2px;
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    background-color: var(--main-color);
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 300ms linear, width 300ms linear;
}

/* secondlevel + thirdlevel over */

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within)>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a:is(:hover, :focus) {
    color: var(--main-color);
}

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within)>a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus)::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus)::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a:is(:hover, :focus)::before {
    opacity: 1;
    width: 100%;
}

/* #endregion ------------------------------- navigation ---------------------------------------- */

/* #region ------------------------------------ header ------------------------------------------ */

header {
    position: relative;
    background: var(--main-color);
}

@media (min-width: 992px) {
    .index header {
        min-height: 100vh;
    }
}

#header-text {
    position: relative;
    z-index: 1;
    padding-top: 40px;
    padding-bottom: 80px;
    margin: auto;
}

@media (min-width: 992px) {
    #header-text {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

@media (min-width: 1200px) {
    #header-text :is(h1, h2, h3, h4, h5, h6) {
        width: calc(100% + 50px);
    }
}

header video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.6;
}

/* #endregion --------------------------------- header ------------------------------------------ */

/* #region ---------------------------------- buttons new --------------------------------------- */

.button-style a,
nav.horizontally li[class*="toplevel"]:last-child a {
    display: inline-block;
    line-height: 1.2;
    padding: 14px 28px;
    font-weight: 600;
    background: var(--secondary-color-light);
    border: 2px solid var(--secondary-color-light);
    color: var(--secondary-color-dark);
    text-decoration: none;
    border-radius: var(--border-radius-small) var(--border-radius-large);
    transition: background-color 300ms linear, color 300ms linear, border 300ms linear;
    font-size: var(--font-size);
}

.button-style a:is(:hover, :focus) {
    background: transparent;
    color: var(--secondary-color-light);
}

/* specific buttons */

header .button-style a {
    margin-top: 30px;
}

nav.horizontally li[class*="toplevel"]:last-child a {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

@media (max-width: 991px) {
    nav.horizontally li[class*="toplevel"]:last-child a {
        font-size: 1.25rem;
        margin: 15px 0 0 15px;
        width: calc(100% - 30px);
        text-align: center;
    }
}

@media (min-width: 992px) {
    .is-sticky nav.horizontally li[class*="toplevel"]:last-child a {
        border-color: var(--text-color);
        color: var(--text-color);
    }
}

nav.horizontally li[class*="toplevel"]:last-child a:is(:hover, :focus) {
    background: var(--secondary-color-light);
    border-color: var(--secondary-color-light);
    color: var(--secondary-color-dark);
}

#bewerben .button-style a {
    margin-top: 50px;
}

#innerfooter .button-style a {
    font-size: inherit;
}

#innerfooter .button-style a::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 6px;
    margin-left: 6px;
    position: relative;
    bottom: 3px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='5.874' viewBox='0 0 10 5.874'%3E%3Cpath  d='M262-623a.992.992,0,0,0-.336.056.788.788,0,0,0-.292.191l-4.125,4.126A.85.85,0,0,0,257-618a.85.85,0,0,0,.247.628.85.85,0,0,0,.628.247.851.851,0,0,0,.628-.247l3.5-3.5,3.5,3.5a.85.85,0,0,0,.628.247.85.85,0,0,0,.628-.247A.85.85,0,0,0,267-618a.85.85,0,0,0-.247-.628l-4.126-4.126a.787.787,0,0,0-.292-.191A.992.992,0,0,0,262-623Z' transform='translate(-257 623)' fill='%23075a45'/%3E%3C/svg%3E%0A") center no-repeat;
    transition: filter 300ms linear;
}

#innerfooter .button-style a:is(:hover, :focus) {
    background: transparent;
    border-color: var(--text-color);
    color: var(--text-color);
}

#innerfooter .button-style a:is(:hover, :focus)::after {
    filter: brightness(0.2);
}

/* #endregion ------------------------------- buttons new --------------------------------------- */

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

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
    color: var(--main-color);
    font-weight: 700;
    line-height: 1.2;
    font-family: "Source Sans 3", sans-serif;
    margin-bottom: 25px;
}

.heading-large-margin :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: clamp(25px, 4vw, 60px);
}

.heading-small-margin :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 10px;
}

:is(h1, h2, h3, h4, h5, h6) :is(i, em) {
    font-size: var(--font-size);
    font-style: normal;
    display: block;
    width: max-content;
    background: var(--highlight);
    color: var(--secondary-color-dark);
    border-radius: 40px;
    padding: 8px 15px;
    margin-bottom: 20px;
    font-weight: 600;
}

.xs-text-center :is(h1, h2, h3, h4, h5, h6) :is(i, em) {
    margin-left: auto;
    margin-right: auto;
}

#header-text :is(h1, h2, h3, h4, h5, h6) :is(i, em) {
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
}

main :is(h1, h2, h3, h4, h5, h6) :is(b, strong) {
    font-weight: inherit;
    color: var(--secondary-color);
}

.index :is(h1, .h1, .legacy_h1) {
    font-size: clamp(2.1875rem, 6vw, 3.75rem);
}

.index :is(h2, .h2, .legacy_h2),
#firmenwebseite-steps li::before,
body:not(.index) :is(h1, .h1, .legacy_h1),
#content .row.views_19 .legacy_h1 {
    font-size: clamp(1.875rem, 5vw, 3.125rem);
}

.index :is(h3, .h3, .legacy_h3),
body:not(.index) :is(h2, .h2, .legacy_h2),
#allsteps .processtab :is(h1, h2, h3, h4, h5, h6) {
    font-size: clamp(1.6875rem, 4vw, 1.875rem);
}

.index :is(h4, .h4, .h4link a:is(:link, :hover, :focus, :visited), .legacy_h4),
body:not(.index) :is(h3, .h3, .legacy_h3),
#footer :is(h1, h2, h3, h4, h5, h6) {
    font-size: 1.5625rem;
}

.index :is(h5, .h5, .legacy_h5),
body:not(.index) :is(h4, .h4, .h4link a:is(:link, :hover, :focus, :visited), .legacy_h4) {
    font-size: 1.375rem;
}

:is(h6, .h6, .legacy_h6),
body:not(.index) :is(h5, .h5, .legacy_h5) {
    font-size: 1.25rem;
}

/* #region ----------------------------------- footer ------------------------------------------- */

body:not(.index) footer {
    border-top: 2px solid var(--highlight);
}

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

#footer {
    padding-top: var(--distance-medium);
    padding-bottom: 60px;
    row-gap: var(--distance-min);
}

#footer :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 30px;
}

#footer :is(.contact-phone, .contact-fax, .contact-mail) {
    padding-left: 36px;
    background: top 5px left no-repeat;
}

.contact-fax,
.contact-mail {
    margin-top: 22px;
}

#footer .contact-phone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M130-830.222v-8.667a1.075,1.075,0,0,1,.319-.792,1.075,1.075,0,0,1,.792-.319h7.778a1.075,1.075,0,0,1,.792.319,1.075,1.075,0,0,1,.319.792v5.556a1.075,1.075,0,0,1-.319.792,1.075,1.075,0,0,1-.792.319h-5.556l-2.389,2.389a.521.521,0,0,1-.611.139A.521.521,0,0,1,130-830.222ZM138.833-820a16.679,16.679,0,0,1-6.861-1.514,20.524,20.524,0,0,1-6.167-4.292,20.525,20.525,0,0,1-4.292-6.167A16.678,16.678,0,0,1,120-838.833a1.13,1.13,0,0,1,.333-.833,1.131,1.131,0,0,1,.833-.333h4.5a1.034,1.034,0,0,1,.694.264,1.015,1.015,0,0,1,.361.625l.722,3.889a1.959,1.959,0,0,1-.028.75,1.168,1.168,0,0,1-.306.528l-2.694,2.722a13.424,13.424,0,0,0,1.319,1.986,19.535,19.535,0,0,0,1.681,1.847,19.546,19.546,0,0,0,1.806,1.6,17.565,17.565,0,0,0,2,1.347l2.611-2.611a1.556,1.556,0,0,1,.653-.375,1.789,1.789,0,0,1,.792-.069l3.833.778a1.285,1.285,0,0,1,.639.4.978.978,0,0,1,.25.653v4.5a1.131,1.131,0,0,1-.333.833A1.131,1.131,0,0,1,138.833-820Z' transform='translate(-120 840)' fill='%23083d77'/%3E%3C/svg%3E%0A");
}

#footer .contact-fax {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='17' viewBox='0 0 20 17'%3E%3Cpath d='M86-784v-14a1.926,1.926,0,0,1,.588-1.412A1.926,1.926,0,0,1,88-800h6a1.926,1.926,0,0,1,1.412.588A1.926,1.926,0,0,1,96-798v3h1a2.893,2.893,0,0,1,2.125.875A2.893,2.893,0,0,1,100-792v6a1.926,1.926,0,0,1-.588,1.412A1.926,1.926,0,0,1,98-784Zm-3.5,1a2.414,2.414,0,0,0,1.775-.725A2.414,2.414,0,0,0,85-785.5v-8a2.414,2.414,0,0,0-.725-1.775A2.414,2.414,0,0,0,82.5-796a2.414,2.414,0,0,0-1.775.725A2.414,2.414,0,0,0,80-793.5v8a2.414,2.414,0,0,0,.725,1.775A2.414,2.414,0,0,0,82.5-783ZM88-795h6v-3H88Zm6,5a.968.968,0,0,0,.713-.287A.968.968,0,0,0,95-791a.968.968,0,0,0-.287-.713A.968.968,0,0,0,94-792a.968.968,0,0,0-.713.287A.968.968,0,0,0,93-791a.968.968,0,0,0,.287.713A.968.968,0,0,0,94-790Zm3,0a.968.968,0,0,0,.713-.287A.968.968,0,0,0,98-791a.968.968,0,0,0-.287-.713A.968.968,0,0,0,97-792a.968.968,0,0,0-.713.287A.968.968,0,0,0,96-791a.968.968,0,0,0,.287.713A.968.968,0,0,0,97-790Zm-3,3a.968.968,0,0,0,.713-.287A.968.968,0,0,0,95-788a.968.968,0,0,0-.287-.713A.968.968,0,0,0,94-789a.968.968,0,0,0-.713.287A.968.968,0,0,0,93-788a.968.968,0,0,0,.287.713A.968.968,0,0,0,94-787Zm3,0a.968.968,0,0,0,.713-.287A.968.968,0,0,0,98-788a.968.968,0,0,0-.287-.713A.968.968,0,0,0,97-789a.968.968,0,0,0-.713.287A.968.968,0,0,0,96-788a.968.968,0,0,0,.287.713A.968.968,0,0,0,97-787Zm-8,0h2a.968.968,0,0,0,.713-.287A.968.968,0,0,0,92-788v-3a.968.968,0,0,0-.287-.713A.968.968,0,0,0,91-792H89a.968.968,0,0,0-.713.287A.968.968,0,0,0,88-791v3a.968.968,0,0,0,.287.713A.968.968,0,0,0,89-787Z' transform='translate(-80 800)' fill='%23083d77'/%3E%3C/svg%3E%0A");
}

#footer .contact-mail {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='16' viewBox='0 0 20 16'%3E%3Cpath d='M82-784a1.926,1.926,0,0,1-1.412-.588A1.926,1.926,0,0,1,80-786v-12a1.926,1.926,0,0,1,.588-1.412A1.926,1.926,0,0,1,82-800H98a1.926,1.926,0,0,1,1.412.588A1.926,1.926,0,0,1,100-798v12a1.926,1.926,0,0,1-.588,1.412A1.926,1.926,0,0,1,98-784Zm8-7.175a1,1,0,0,0,.262-.038,1.039,1.039,0,0,0,.263-.112L97.6-795.75a.827.827,0,0,0,.3-.312.863.863,0,0,0,.1-.412.815.815,0,0,0-.425-.75.8.8,0,0,0-.875.025L90-793l-6.7-4.2a.78.78,0,0,0-.875-.013.823.823,0,0,0-.425.738.916.916,0,0,0,.1.438.669.669,0,0,0,.3.287l7.075,4.425a1.039,1.039,0,0,0,.263.112A1,1,0,0,0,90-791.175Z' transform='translate(-80 800)' fill='%23083d77'/%3E%3C/svg%3E%0A");
}

/* blog */

#footer .tab_link_entry {
    padding-left: 105px;
    position: relative;
    min-height: 50px;
    border: none !important;
}

#footer .tab_link_entry+.tab_link_entry {
    margin-top: 22px;
}

#footer .tab_link_title a {
    color: inherit;
    font-weight: 600;
}

#footer .tab_link_title a:not(:hover, :focus) {
    text-decoration: none;
}

#footer .tab_preview_picture {
    display: block;
    width: 85px;
    height: 50px;
    position: absolute;
    left: 0;
    top: calc(50% - 25px);
}

#footer .tab_preview_picture img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    margin: 0 !important;
    width: 100%;
    height: 100%;
}

#footer .tab_link :is(.tab_spacer, .tab_link_mehr, .vorschau) {
    display: none;
    visibility: hidden;
}

/* innerfooter */

#innerfooter {
    padding-top: var(--distance-min);
    padding-bottom: var(--distance-min);
    row-gap: var(--distance-min);
}

#innerfooter::before {
    content: "";
    display: block;
    background: var(--highlight);
    height: 2px;
    width: 100%;
    max-width: 1610px;
    position: absolute;
    top: 0;
}

#innerfooter ul {
    padding: 0;
}

@media (min-width: 576px) {
    #innerfooter ul {
        display: flex;
        flex-wrap: wrap;
        gap: 20px 40px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    #innerfooter ul {
        justify-content: center;
    }
}

#innerfooter ul a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    display: inline-block;
}

#innerfooter ul a::before {
    content: "";
    width: 0;
    height: 2px;
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    background: var(--main-color);
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 300ms linear, width 300ms linear;
}

#innerfooter ul a:is(:hover, :focus)::before {
    opacity: 1;
    width: 100%;
}

/* vernetzt */

#vernetzt {
    gap: 18px;
    text-align: right;
    font-size: 0.875rem;
    color: #ffffff;
    line-height: 1.3;
    font-weight: 400;
    text-decoration: none;
}

#vernetzt span span {
    display: block;
}

/* #endregion -------------------------------- footer ------------------------------------------- */