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

html {
    max-width: 1930px;
    margin-left: auto;
    margin-right: auto;
    background: #f6dbd9;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    scrollbar-color: #447312 #ffffff;
    scrollbar-width: thin;
}

body {
    font-family: "Fredoka", sans-serif;
    color: #222222;
    background: #ffffff;
    font-size: clamp(1rem, 2vw, 1.25rem);
    /* 1rem = 16px */
    line-height: 1.5;
}

a {
    color: #447312;
}

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

#content a {
    color: #447312;
    font-weight: 600;
    text-decoration: underline;
}

b,
strong {
    font-weight: 600;
}

#over {
    overflow: hidden;
    position: relative;
}

.staticElement {
    position: static;
}

/* #region --------------------------------------- topbar --------------------------------------- */

#contactRow,
#topbar {
    background: #dfebb6;
    color: #ffffff;
    padding: 11px 0;
}

:is(#contactRow, #topbar) a {
    color: inherit;
    text-decoration: underline;
}

#contactRow>.row>div {
    display: grid;
    row-gap: 10px;
}

@media (max-width: 991px) {
    #topbar {
        min-height: 65px;
        padding-right: 80px;
    }
}

#topbar>.row>div {
    column-gap: 17px;
}

#topbar>.row>div>*+* {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

#style span,
#contrast_style span {
    color: #222222;
    font-size: 0.9375rem;
    font-weight: 600;
}

#contrast_style button {
    color: #000000;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.6);
    font-family: "Khand", sans-serif;
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-weight: 400;
    text-align: center;
    background: #ffffff;
    position: relative;
    z-index: 1;
    font-size: 0;
}

#contrast_style button::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    left: -6px;
    top: -6px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    -webkit-transition: opacity 150ms linear;
    -moz-transition: opacity 150ms linear;
    -ms-transition: opacity 150ms linear;
    -o-transition: opacity 150ms linear;
    transition: opacity 150ms linear;
}

#contrast_style *+* {
    margin-left: 10px;
}

#contrast_style button::after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    right: 3px;
    left: 3px;
    bottom: 3px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 50%;
}

#contrast_style button:nth-of-type(1)::after {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6) 50%, rgba(255, 255, 255, 1) 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(0, 0, 0, 0.6) 50%);
}

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

@media (min-width: 992px) {
    #style button {
        border: 1px solid rgba(0, 0, 0, 0.6);
        color: #222222;
        display: inline-block;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        font-weight: 600;
        text-align: center;
        background-color: #fff;
        position: relative;
        line-height: 1;
        -webkit-transition: transform 150ms linear;
        -moz-transition: transform 150ms linear;
        -ms-transition: transform 150ms linear;
        -o-transition: transform 150ms linear;
        transition: transform 150ms linear;
        font-size: 17px;
        padding: 0;
    }

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

    #style button:hover {
        background-color: #447312;
        color: #fff;
    }

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

/* #endregion ----------------------------------- topbar ---------------------------------------- */

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

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

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

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    nav.horizontally {
        padding: 12px 0;
        position: relative !important;
    }

    #burgerButton {
        font-size: 0;
        border: none !important;
        display: block;
        height: 50px;
        width: 60px;
        border-radius: 2px;
        padding: 6px 8px;
        cursor: pointer;
        background-color: #ffffff;
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    }

    #burgerButton::before,
    #burgerButton::after,
    #burgerButtonInner {
        background-color: #447312;
        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: #ffffff;
        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: 5px;
    }
}

/* menu desktop */

@media (min-width: 992px) {
    nav.horizontally {
        background: rgba(255, 255, 255, 0.95);
        padding: 28px 0 20px 0;
        transition: box-shadow 300ms linear;
    }

    .is-sticky nav.horizontally {
        box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    }

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

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

    nav.horizontally li[class*="toplevel"]>ul {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%);
        z-index: 1000;
    }

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

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

    nav.horizontally .navbar-nav li :is([class*="toplevel"]>ul, [class*="secondlevel"]>ul) {
        display: block !important;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 300ms linear;
    }

    nav.horizontally .navbar-nav li:is(.open:focus-within, :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-within)>ul {
        z-index: 1003;
    }
}

/* toplevel */

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

@media (max-width: 991px) {
    nav.horizontally li[class*="toplevel"] {
        border-bottom: 1px solid rgba(46, 60, 72, 0.2);
    }
}

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

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

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"].open>a,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"][class*="_over"]>a,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus) {
    color: #447312;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    nav.horizontally [class*="toplevel"] ul {
        box-shadow: 0 15 20px 0 rgba(0, 0, 0, 0.2);
    }

    nav.horizontally [class*="toplevel"]>ul {
        padding: 15px;
        margin: 0 15px 15px 15px;
    }

    nav.horizontally [class*="secondlevel"]>ul {
        padding: 10px;
        margin: 10px 0 15px 0;
    }
}

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

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

    nav.horizontally :is([class*="toplevel"], [class*="secondlevel"])>ul::before {
        content: "";
        position: absolute;
        display: block;
    }

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

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

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    color: #222222;
    font-weight: 400;
    text-align: center;
    padding: 9px 25px;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
    hyphens: auto;
}

@media (max-width: 991px) {
    nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
        text-align: left;
        padding-right: 35px;
    }
}

/* 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: #447312;
}

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

/* #region ------------------------------------- banner ----------------------------------------- */

#headerpic #slider {
    height: clamp(300px, 65vw, 450px);
}

#headerpic .nivo-controlNav {
    bottom: 30px;
}

@media (min-width: 576px) and (max-width: 991px) {
    #headerpic .nivo-controlNav {
        text-align: left;
        padding-left: 15px;
        max-width: 35vw;
    }
}

@media (min-width: 992px) {
    .index #headerpic #slider {
        height: clamp(450px, 75vw, 750px);
    }

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

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

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

    #headerpic .nivo-controlNav {
        bottom: 50px;
    }
}

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

#headerpic::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../img/mask-nav.png) repeat-x top left, url(../img/slider-mask.png) no-repeat bottom center / 100% auto;
    pointer-events: none;
    display: block;
    z-index: 6;
}

#headerpic .nivo-main-image {
    min-height: 100% !important;
}

.index #headerpic .slider-mask {
    display: block;
    background: linear-gradient(to top, #dfebb6, transparent 30%);
}

@media (min-width: 992px) {
    .index #headerpic .slider-mask {
        background: linear-gradient(to left, #dfebb6, transparent 35%);
    }
}

/* banner tab */

.bannerTab {
    background: url(../img/bg-overlay.svg) center / 100% 100% no-repeat;
    padding: clamp(80px, 8vw, 135px) clamp(50px, 7vw, 90px) clamp(80px, 9vw, 160px) clamp(50px, 7vw, 90px);
    display: inline-block;
    position: relative;
    z-index: 12;
    margin: 0 auto 40px auto;
}

@media (max-width: 575px) {
    .bannerTab {
        background: #ffffff;
        box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
        padding: 30px;
        border-radius: 20px;
        max-width: calc(100% - 60px);
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    div.col-xs-12:has(.bannerTab) {
        margin-top: -250px;
    }
}

@media (min-width: 992px) {
    .bannerTab {
        width: calc(100% + 60px);
        right: 60px;
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .bannerTab {
        width: calc(100% + 100px);
        max-width: 690px;
        right: 8vw;
    }
}

.bannerTab.specialHeadline :is(h1, h2, h3, h4, h5, h6) {
    color: #222222;
    margin: clamp(10px, 2vw, 25px) 0 0 0;
    font-size: clamp(1.375rem, 3vw, 1.875rem);
}

.bannerTab.specialHeadline :is(h1, h2, h3, h4, h5, h6) :is(i, em) {
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    color: #447312;
    font-style: normal;
    display: block;
}

/* #endregion ---------------------------------- banner ----------------------------------------- */

/* #region -------------------------------------- tabs ------------------------------------------ */

#tabs {
    padding: clamp(60px, 8vw, 70px) 0 clamp(40px, 8vw, 80px) 0;
    background: url(../img/huepfendes-kind.png) bottom 30px left calc(50% + 450px) no-repeat;
}

@media (min-width: 1200px) {
    #tabs {
        background: url(../img/huepfendes-kind.png) bottom 30px left calc(50% + 550px) no-repeat;
    }
}

#tabs>.row {
    row-gap: clamp(15px, 3vw, 35px);
}

#tabs :is(h1, h2, h3, h4, h5, h6) {
    color: #222222;
}

#tabs .tab {
    padding: 25px 30px 30px 30px;
    background: #eaf4c9;
    font-size: 1rem;
    border-radius: 40px;
    min-height: 100%;
    position: relative;
}

#tabs .tabOne {
    background: #f4fcd9;
}

#tabs .tabThree {
    background: #dfebb6;
}

#tabs .tab a {
    color: inherit;
    text-decoration: underline;
}

#tabs .tab .tp-image-wrapper a {
    font-size: 0;
}

#tabs .tab .element-vertical>*+* {
    padding-top: 0;
    padding-bottom: 0;
}

#tabs .tab :is(h1, h2, h3, h4, h5, h6) a {
    color: #222222 !important;
    text-decoration: none !important;
}

#tabs .tab :is(h1, h2, h3, h4, h5, h6) a:is(:hover, :focus) {
    text-decoration: underline !important;
}

/* #endregion ----------------------------------- tabs ------------------------------------------ */

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

#content {
    text-align: left;
    padding-bottom: clamp(40px, 8vw, 80px);
}

body:not(.index) #content {
    padding-top: 40px;
}

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

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
    color: #447312;
    font-weight: 600;
    line-height: 1.2;
    font-family: "Fredoka", sans-serif;
    hyphens: auto;
}

.specialHeadline :is(h2, h3),
h1,
.h1,
.legacy_h1 {
    font-size: clamp(1.875rem, 6vw, 2.875rem);
}

#feedback .specialHeadline :is(h2, h3),
h2,
.h2,
.legacy_h2 {
    font-size: clamp(1.75rem, 5.5vw, 2.25rem);
}

h3,
.h3,
.legacy_h3 {
    font-size: clamp(1.625rem, 5vw, 1.9375rem);
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4,
#tabs .tab :is(h1, h2, h3, h4, h5, h6),
.tabHeadline {
    font-size: 1.5rem;
}

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

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

.specialHeadline {
    color: #222222;
}

.specialHeadline :is(h2, h3) {
    margin-top: 0;
}

.specialHeadline.color-invert {
    color: #222222;
}

.specialHeadline.color-invert :is(h1, h2, h3, h4, h5, h6) {
    color: #447312;
}

/* #region -------------------------------------- news ------------------------------------------ */

#news {
    padding-top: clamp(40px, 4vw, 60px);
    position: relative;
    background: #dfebb6;
}

@media (min-width: 992px) {
    #news {
        background: #dfebb6;
    }
}

#news::after {
    content: "";
    background: linear-gradient(to top, #ffffff 50%, transparent 50%), url(../img/mask-news.png) repeat-x top center;
    width: 100%;
    height: 160px;
    position: absolute;
    bottom: 0;
}

#news>.row::before {
    content: "";
    background: url(../img/schulranzen.png) no-repeat bottom left;
    width: 282px;
    height: 282px;
    pointer-events: none;
    position: absolute;
    left: -333px;
    bottom: 30px;
    z-index: 1;
}

#news:hover>.row::after {
    animation: shake 1s ease 1;
}

#news .tab_link {
    margin-top: clamp(15px, 3vw, 40px);
}

#news .tab {
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.10);
    border-radius: 40px;
    padding: 140px 30px 30px 30px;
    background: #ffffff;
    border-bottom: unset !important;
    font-size: 1rem;
    margin-top: 80px;
}

#news .tab::after {
    content: "";
    pointer-events: none;
    background: #447312 url(../img/icon-stern.png) no-repeat center;
    width: 50px;
    height: 50px;
    pointer-events: none;
    border-radius: 50%;
    position: absolute;
    top: 85px;
    right: 30px;
    transition: all, 300ms;
}

#news .tab a {
    font-size: 1.25rem;
    color: #222222;
    font-weight: 600;
    display: inline-block;
    line-height: 1.2;
    margin: 0 0 4px 0;
}

#news .tab .banner img {
    position: absolute;
    display: block;
    top: -80px;
    height: 200px;
    overflow: hidden;
    border-radius: 30px;
    left: 30px;
    right: 30px;
}

#news .tab .banner img {
    margin: 0 !important;
    width: calc(100% - 60px);
    height: 100%;
    object-fit: cover;
}

/* #endregion ----------------------------------- news ------------------------------------------ */

/* #region -------------------------------------- facts ----------------------------------------- */

#facts {
    padding: clamp(40px, 6vw, 90px) 0;
    font-size: 1rem;
}

@media (max-width: 575px) {
    #facts .factsRight {
        margin-top: 30px;
    }
}

@media (min-width: 992px) {
    #facts .factsLeft {
        padding-right: 45px;
    }

    #facts .factsRight {
        padding-left: 45px;
    }
}

@media (min-width: 1600px) {
    #facts {
        background: url(../img/schulmaterial.png) no-repeat bottom 50px right;
    }
}

#facts .specialHeadline {
    margin-bottom: clamp(15px, 3vw, 40px);
}

#facts img {
    display: inline-block;
}

#facts .fact+.fact {
    margin-top: 30px;
}

#facts .factsBanner {
    border-radius: 30px;
    overflow: hidden;
}

#facts .factsBanner .nivoSlider {
    height: 100% !important;
}

#facts .fact :is(h1, h2, h3, h4, h5, h6) {
    color: #447312;
    font-size: 1.5rem;
    margin-bottom: 0;
}

#facts .factOne,
#facts .factTwo {
    color: #222222;
    font-size: 1.5rem;
}

/* #endregion ----------------------------------- facts ----------------------------------------- */

/* #region -------------------------------------- groups ---------------------------------------- */

#groups {
    background: #dfebb6;
    position: relative;
    font-size: 1rem;
    height: 375px;
}

@media (min-width: 992px) {
    #groups>.row>*:first-child {
        padding-right: 45px;
    }
}

#groups a {
    color: inherit;
    text-decoration: underline;
}

#groups .groupWrapper {
    padding-top: clamp(80px, 10vw, 150px);
    padding-bottom: clamp(40px, 8vw, 80px);
}


#groups::before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
}

#groups::before {
    background: url(../img/mask-groups.png) top center / 100% auto no-repeat;
    height: 91px;
    left: 0;
    right: 0;
    z-index: 5;
}


/* #endregion ----------------------------------- groups ---------------------------------------- */

/* #region ------------------------------------- feedback --------------------------------------- */

#feedback {
    padding: clamp(40px, 4vw, 60px) 0;
}

#feedback>.row {
    row-gap: 30px;
}

@media (min-width: 768px) {
    #feedback>.row::after {
        content: "";
        pointer-events: none;
        background: url(../img/lesendes-kind.png) no-repeat top center;
        width: 250px;
        height: 517px;
        position: absolute;
        top: -100px;
        right: -242px;
        display: inline-block;
    }
}

@media (min-width: 992px) {
    #feedback .tab {
        line-height: 1.3;
    }
}

#feedback .tab :is(i, em) {
    font-style: normal;
}

#feedback .tab :is(i, em)::after,
#feedback .tab :is(i, em)::before {
    content: '„';
    font-size: 1.75rem;
    font-weight: 600;
    color: #447312;
    margin-right: 4px;
    margin-left: -16px;
    line-height: 0;
}

#feedback .tab :is(i, em)::after {
    content: '“';
    margin-left: 2px;
    margin-right: unset;
}

/* #endregion ---------------------------------- feedback --------------------------------------- */

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

footer {
    background: #dfebb6;
    padding: 36px 0 30px 0;
    color: #222222;
}

footer hr {
    border-color: #ffffff;
    opacity: 0.3;
    margin: 36px 0 20px 0;
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

#innerfooter a {
    color: #222222;
    text-decoration: none;
    display: inline-block;
    font-weight: 400;
    font-size: 1rem;
}

#innerfooter a:is(:hover, :focus) {
    text-decoration: underline;
    color: #447312;
}

#innerfooter li+li {
    margin-left: clamp(15px, 3vw, 30px);
}

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

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

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

#vernetzt span span {
    display: block;
}

#vernetzt strong {
    color: #447312;
}