/* Font Faces */
@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 300;
    src: url(fonts/OpenSans-Light.ttf) format("truetype");
}
@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    src: url(fonts/OpenSans-Regular.ttf) format("truetype");
}
@font-face {
    font-family: "Open Sans";
    font-style: italic;
    font-weight: 500;
    src: url(fonts/OpenSans-Medium.ttf) format("truetype");
}
@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    src: url(fonts/OpenSans-SemiBold.ttf) format("truetype");
}
@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 700;
    src: url(fonts/OpenSans-Bold.ttf) format("truetype");
}
/* Variables */
:root {
    --primary: #07447e;
    --secondary: #94b14a;
    --dark: #2f3d3b;
    --white: #fff;
    --text-color: #333;
    --header-height: 153px;
    --width-1-3: calc(100% * 1 / 3.001);
    --width-5-6: calc(100% * 5 / 6.001);
    --font-default: "Open Sans", sans-serif;
}
/* Typografie */
h1,
.h1 {
    font-size: 2.55rem;
    line-height: 1.2;
}
h2,
.h2 {
    font-size: 1.7rem;
    line-height: 1.3;
}
h3,
.h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}
h4,
.h4 {
    font-size: 1.25rem;
    line-height: 1.4;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin: 0 0 20px 0;
    color: var(--primary);
    text-transform: none;
    font-weight: 700;
}
h1,
h2,
h3,
.menu.sf-menu li,
b,
optgroup,
strong {
    font-family: var(--font-default);
}
#page .ui-widget {
    font-family: var(--font-default);
}

/* General Styles */
*,
*::before,
*::after {
    box-sizing: inherit;
}
html,
body {
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    -webkit-text-size-adjust: 100%;
    background-color: var(--white);
    color: var(--text-color);
    word-break: break-word;
    -webkit-text-size-adjust: 100%;
    hyphens: auto;
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    word-wrap: break-word;
}
*+p, *+ul, *+ol, *+dl, *+pre, *+address, *+fieldset, *+figure {
    margin-top: 20px;
}
button,
input[type="button"],
input[type="submit"],
.button,
.ui-dialog .ui-dialog-buttonpane button, 
.eu-cookie-compliance-categories-buttons button, 
.eu-cookie-compliance-categories-buttons button:hover {
    background: none;
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 0.5em 1em;
    border-radius: 0px;
    border: 1px solid var(--primary);
    font-size: 1.3em;
    font-weight: 700;
    font-family: var(--font-default);
}
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.button:hover,
.button:focus {
    /* background: transparent !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary); */
}
.find-more-button.eu-cookie-compliance-more-button {
    color: var(--text-color) !important;
}
.ui-dialog .ui-dialog-buttonpane button {
    font-size: 1em;
    padding: 0.2em 0.5em;
}
.button.secondary {
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
}
.button.secondary:focus,
.button.secondary:hover {
    /* color: var(--secondary) !important;
    border: 1px solid var(--secondary); */
}
.button.transparent {
    background: transparent;
    border: 1px solid;
}
.button.transparent:focus,
.button.transparent:hover {
    background: var(--white);
}
.toolbar button.toolbar-icon {
    background: transparent;
}
.modal_login .item-list {
    display: none;
}
.modal_login input.button {
    border: 2px solid var(--primary);
    border-radius: 5px;
}
.modul_login input.button:focus,
.modal_login input.button:hover {
    background: var(--white);
}
.modal_login .button {
    width: 100%;
    margin: 0;
}
#log_overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 10000px;
    top: -30px;
    left: 0px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.system_messages_wrapper {
    max-width: 80vw;
    max-height: 50vh;
    overflow: scroll;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    margin-bottom: 0;
    background-color: var(--primary) !important;
    box-shadow: none;
    color: var(--text_color) !important;
    border-radius: 0;
    padding: 0;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
        rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
        rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.system_messages_wrapper::-webkit-scrollbar {
    display: none;
}
.system_messages_wrapper .messages {
    display: block;
    clear: both;
    margin-bottom: 0;
    border: none !important;
    background-color: var(--white) !important;
    box-shadow: none;
    color: var(--text_color) !important;
    border-radius: 0;
}
.messages__wrapper.layout-container {
    padding: 0;
}
.system_messages_wrapper .closer {
    float: right;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    margin-right: 0;
    color: #000000;
}
.ui-dialog-titlebar {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}
.contextual-links a {
    color: var(--text-color) !important;
}

/* Header */
#page > header {
    width: 100%;
    top: 0;
    /* height: var(--header-height); */
    background: var(--white);
    z-index: 2;
    padding-top: 20px;
}
#headertop_menu_wrapper {
    width: 100%;
    margin: 0 auto;
}
.toolbar-fixed.toolbar-tray-open #page > header {
    top: 29px;
}
.toolbar-fixed #page > header {
    top: 40px;
}
.toolbar-fixed.toolbar-horizontal.toolbar-tray-open #page > header {
    top: 79px;
}
#headertop_menu_wrapper,
#header_top_wrapper {
    height: 100%;
    max-width: unset;
}
#header_top_inner {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    flex: 1;
    flex-wrap: wrap;
}
#logo {
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}
#logo a.site-logo {
    height: 100%;
    display: flex;
    max-width: 100%;
}
#logo img {
    float: left;
    max-width: unset;
    height: auto;
    width: 100%;
    max-width: 326px;
    display: block;
    margin-bottom: 30px;
}
.eueco-logo {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-left: 40px;
}
#eueco-header-logo {
    width: 160px;
    margin-bottom: 30px;
}
#header {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: end;
    margin-bottom: 30px;
}

/* Header Image */
.view-headerbilder {
    position: relative;
}
.headerimage .headerbild_image {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
} 
.headertext {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.slideshow_content_wrapper,
.slideshow_content {
    height: 100%;
}
.headertext .slideshow_content_inner_wrapper {
    padding-top: 70px;
    width: var(--width-5-6);
    margin: 0 auto;
    height: 70%;
    margin-bottom: 2em;
    display: flex;
    align-items: center;
    justify-content: end;
}
.headertext .slideshow_content_inner_wrapper p,
.headertext .slideshow_content_inner_wrapper h1 {
    margin: 0;
}

/* Login Logout Bar */
.login_out_block {
    align-self: center;
    position: relative;
    margin: 0 !important;
    margin-right: 60px !important;
}
.login_out_block a {
    font-family: var(--font-default);
    color: var(--text-color);
}
.login_out_block a > span {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 600;
}
.login_out_block a:after {
    content: '';
    position: absolute;
    right: -80px;
    top: -35px;
    width: 87px;
    height: 77px;
    background-image: url('/sites/beteiligung.agrowea.de/files/content/login_out.png');
    background-size: 65px;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Primary Menu */
#preface {
    position: relative;
    min-height: 100px;
}
#primary_menu_wrapper {
    display: flex;
    align-items: center;
    position: absolute;
    width: 100%;
}
#primary-menu {
    display: flex;
    max-width: unset;
    width: 100%;
    background: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    z-index: 1;
}
#primary-menu ul.menu {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}
#primary-menu ul.menu li {
    width: auto !important;
    text-align: center;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 5px 0;
    position: relative;
}
#primary-menu ul.menu li:hover {
    background-color: var(--primary) !important;
    color: var(--white);
}
#primary-menu ul.menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: black;
    padding: 0px 10px;
    font-size: 1rem;
    font-weight: 400;
    min-height: 50px;
    transition: none;
}
#primary-menu ul.menu li:hover > a {
    color: var(--white);
}
#primary-menu ul.menu li a:hover {
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none !important;
}
#primary-menu ul.menu > li > a {
    text-transform: uppercase;
    border-left: 1px solid var(--secondary);
    min-height: 50px;
}
#primary-menu ul.menu > li:first-child > a {
    border-left: none;
}
#primary-menu ul#superfish-main.sf-menu li:hover > ul,
#primary-menu ul#superfish-main.sf-menu li.sfHover > ul {
    background: rgba(255,255,255,0.9);
    margin-top: 27px;
    box-shadow: none;
    width: 100% !important;
    display: flex;
    flex-direction: column;
}

/* Mobile Menu */
.a-hamburger-icon::before {
    font-family: "Font Awesome 5 Free";
    content: "\f0c9";
    font-weight: 600;
    font-size: 2rem;
}
.mm_navibutton.activ .a-hamburger-icon::before {
    content: "\f00d";
}
#mm_navibutton {
    color: var(--primary);
}
#mm_navibutton_wrapper {
    display: none;
}
.login-logout-mobile {
    display: none;
    float: left;
    padding: 0 20px;
}
.login-logout-mobile .anmelden_toggle,
.login-logout-mobile .abmelden_toggle {
    color: var(--primary);
    font-weight: 600;
    position: relative;
    background: none;
    line-height: 40px;
    padding: 0;
    border: none;
}

/* Div Table */
.divTable {
    display: table;
    width: 100%;
}
.divTableRow {
    display: table-row;
}
.divTableHeading {
    background-color: #eee;
    display: table-header-group;
}
.divTableCell,
.divTableHead {
    display: table-cell;
    padding-top: 1rem;
    padding-right: 0.5rem;
}
.divTableHeading {
    background-color: #eee;
    display: table-header-group;
    font-weight: bold;
}
.divTableFoot {
    background-color: #eee;
    display: table-footer-group;
    font-weight: bold;
}
.divTableBody {
    display: table-row-group;
}

/* Allgemeine Styles */
a,
.link {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}
a:hover,
a:focus,
.link:hover,
.link:focus {
    color: var(--primary);
    border: none;
}
.color-primary {
    color: var(--primary);
}
.bg-primary {
    background: var(--primary);
}
.bg-secondary {
    background: var(--secondary);
}
.bg-white {
    background: var(--white);
}
.color-white {
    color: var(--white);
}
.gradient-text {
    background-image: -webkit-gradient(linear, left top, right top, from(var(--secondary)), to(var(--primary)));
    background-image: linear-gradient(90deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.box-shadow-small {
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.background-secondary {
    background-color: #F2F2F2;
}
.align-center {
    margin-left: auto;
    margin-right: auto;
}
.flex_block.column {
    justify-content: flex-start;
}
.align-right {
    align-self: flex-end;
}
.hinweis.column {
    justify-content: flex-start;
}
.position-relative {
    position: relative !important;
}
.position-absolute {
    position: absolute !important;
}
.background-muted {
    background-color: #f4f4ea;
}
.display-block {
    display: block !important;
}

/* Text */
.text-uppercase {
    text-transform: uppercase !important;
}
.text-center {
    text-align: center !important;
}
.text-normal {
    font-weight: 400;
}
.text-bold {
    font-weight: 700;
}
.text-light {
    font-weight: 300;
}
.text-italic {
    font-style: italic;
}
.agrowea-blue {
    color: var(--primary) !important;
}
.ee_content .info {
    width: 80%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 100px;
    margin-right: -100px;
}

/* Padding */
.padding {
    padding: 30px;
}
.padding-small {
    padding: 15px;
}
.padding-large {
    padding: 30px;
}
.padding-remove-bottom {
    padding-bottom: 0 !important;
}
.padding-remove-top {
    padding-top: 0 !important;
}
.padding-remove-horizontal {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Margin */
*+.margin {
    margin-top: 20px !important;
}
.margin {
    margin-bottom: 20px;
}
.margin-bottom {
    margin-bottom: 20px;
}
.margin-remove {
    margin: 0 !important;
}
.margin-remove-bottom {
    margin-bottom: 0 !important;
}
.margin-remove-top {
    margin-top: 0 !important;
}

/* Flex */
.flex_block {
    flex-wrap: wrap;
}
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.flex-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.flex-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

/* Arrow before */
.arrow-before {
    position: relative;
}
.arrow-before:before {
    position: absolute;
    left: -35px;
    top: -4px;
    content: '';
    width: 20px;
    height: 32px;
    background-image: url(/sites/beteiligung.agrowea.de/files/content/Element%2011.png);
    background-repeat: no-repeat;
    background-size: 20px;
}
h2.arrow-before:before {
    width: 25px;
    height: 41px;
    left: -40px;
    top: -2px;
    background-size: 25px;
}
a.link {
    font-weight: 700;
    font-size: 1.4em;
    line-height: 1.2;
    margin-top: 20px;
}
a.link.arrow-before {
    margin-left: 35px;
}

/* Artikel */
@keyframes windmill-animation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.artikel-padding {
    padding: 25px;
    padding-top: 0;
    padding-bottom: 0 !important;
}
.artikel-windmuehle {
    -webkit-animation: 10s linear infinite windmill-animation;
    animation: 10s linear infinite windmill-animation;
}
#projekt .width-1-3 {
    width: 33.333333%;
}

/* Windmühle */
.padding-windmuehle {
    padding-top: 200px;
    padding-bottom: 50px;
}
.windmuehle-links:before {
    content: url("/sites/beteiligung.agrowea.de/files/content/Element 5.png");
    position: absolute;
    top: -125px;
    left: 0;
    display: initial !important;
}
.windmuehle-links-rechts:before {
    content: url("/sites/beteiligung.agrowea.de/files/content/Element 6.png");
    position: absolute;
    top: -105px;
    left: 8%;
    display: initial !important;
}
.windmuehle-links-rechts:after {
    content: url("/sites/beteiligung.agrowea.de/files/content/Element 5.png");
    position: absolute;
    right: 8%;
    top: -123px;
    display: initial !important;
}

/* Stats */
.stats {
    position: relative;
    background-image: url(/sites/beteiligung.agrowea.de/files/content/agrowea_stats_background.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.stats .flex_block.column {
    justify-content: flex-start;
}
.stats .width-1-3 > div {
    width: 33.333333%;
}
.stats .kategorie {
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 8rem;
}
.stats .value {
    font-size: 4rem;
    line-height: 1.25;
}
.stats .addon {
    font-size: 1.5em;
}
.stats .addon.text-bold {
    font-size: 200%;
}

/* Card */
.card {
    padding: 40px;
    padding-left: 80px;
    padding-right: 20px;
}
.card .flex_block {
    flex-wrap: wrap;
}
.card h4 {
    font-size: 1.8em;
    margin-bottom: 0;
}
.card p {
    margin-top: 0;
}

/* List */
.list {
    padding: 0;
    list-style: none;
}
.list.agrowea-switcher li:not(.active) a {
    color: var(--secondary);
    font-weight: bold;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.agrowea-map-pin {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    z-index: 3;
}
.agrowea-map-pin-label {
    width: 200px;
    text-align: center;
}
.agrowea-map-pin-shadow {
    z-index: 2;
}

/* Download VIB */
.download-vib {
    margin-top: 3rem;
    display: inline-block;
    text-align: left;
    color: var(--white);
    line-height: 40px;
}
.download-vib:hover,
.download-vib:focus {
    color: var(--white);
    text-decoration: underline;
}
.download-vib::before {
    text-align: center;
    content: "\f309";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 2rem;
    margin-right: 1rem;
    height: 40px;
    width: 40px;
    border-bottom: 1px solid var(--white);
    float: left;
}

/* FAQ */
.faq_link {
    color: var(--secondary);
    font-size: 1.3em;
    font-weight: 700;
    margin: 5px 0;
}
.faq_link.active {
    color: var(--primary);
}
.block-ee-faq {
    padding: 0 40px;
}
.faq_block {
    display: none;
}
#ee-faq_Windenergieanlagen-block {
    display: block;
}
.block-ee-faq .ui-accordion-header.ui-accordion-header-active {
    padding: 0.9em 0;
    border: none !important;
    border-radius: 0;
    padding-right: 40px;
}
.block-ee-faq .ui-accordion-header.ui-accordion-header-active::after {
    color: var(--primary);
    -webkit-transform: rotate(
        -90deg
    ); /* to support Safari and Android browser */
    -ms-transform: rotate(-90deg); /* to support IE 9 */
    transform: rotate(-90deg);
}
.block-ee-faq .ui-accordion-content {
    border: none;
    color: var(--text-color);
    border-radius: 0;
    background: var(--white);
    padding: 1em 3em 1em 0;
    text-align: justify;
}
.block-ee-faq .ui-accordion-header-icon {
    display: none;
}
.block-ee-faq .ui-accordion-header {
    color: var(--primary);
    padding: 0.9em 0;
    border-radius: 0;
    border: none;
    background: var(--white);
    font-size: 1.3em;
    font-weight: 700;
    padding-right: 40px;
    position: relative;
}
.block-ee-faq .ui-accordion-header::after {
    content: "";
    background-image: url(/sites/beteiligung.agrowea.de/files/content/Element%2011.png);
    background-repeat: no-repeat;
    background-size: 20px;
    width: 20px;
    height: 32px;
    color: var(--primary);
    float: right;
    margin-right: 1em;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    transition: all 0.5s;
    position: absolute;
    right: -10px;
    top: calc(50% - 10px);
}
.block-ee-faq .faq_headline {
    font-size: 1.2rem;
    display: none;
}

/* Referenz */
.agrowea-referenz {
    position: relative;
}
.agrowea-referenz:before {
    content: url("/sites/beteiligung.agrowea.de/files/content/Element 8.png");
    position: absolute;
    bottom: 10px;
    left: 30px;
    z-index: 10;
}
.agrowea-referenz:after {
    content: url("/sites/beteiligung.agrowea.de/files/content/Element 9.png");
    position: absolute;
    top: 20px;
    right: 50px;
}
.slick-arrow {
    width: 25px !important;
    height: 41px !important;
}
.slick-next {
    background-image: url('/sites/beteiligung.agrowea.de/files/content/Element 13.png') !important;
    right: -50px !important;
}
.slick-prev {
    background-image: url('/sites/beteiligung.agrowea.de/files/content/Element 12.png') !important;
    left: -50px !important;
}
.slick-arrow.slick-disabled {
    background: none !important;
}

/* Grid */
.grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: -30px;
}
.grid>* {
    padding-left: 30px;
}
.border-circle {
    border-radius: 50%;
}
.height-1-1 {
    height: 100%;
}

/* Datenschutz */
.divtable {
    display: table;
    width: 100%;
}
.divrow {
    display: table-row;
}
.divrow > div {
    display: table-cell;
    padding: 0.5rem 0;
}
.divrow:first-child > div {
    border-top: none;
}
.divtable .divrow > div:first-child {
    width: 38%;
}
.divtable .divrow > div:last-child {
    text-align: right;
    width: 60%;
}
.divtable .divrow:last-child > div {
    border-bottom: none;
}
.datenschutz .divrow > div {
    display: table-cell;
    border-bottom: 1px solid var(--primary);
    padding: 10px;
}
.datenschutz .divrow > div:nth-child(3) {
    width: 150px;
}
.datenschutz .divrow > div:first-child {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-focus);
}
.datenschutz .divrow > div:first-child {
    font-weight: 600;
    font-size: inherit;
    color: var(--primary-focus);
    width: auto;
}
.datenschutz .divrow.th {
    font-weight: 600;
    color: var(--primary-focus);
}
.datenschutz .divrow > div:last-child {
    text-align: left;
    width: auto;
}
.datenschutz .divrow {
    width: 100%;
    float: none;
    display: table-row;
    padding-right: 5%;
    border-left: none;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-bottom: 1px solid var(--primary);
}
.datenschutz.divtable .divrow:last-child > div {
    border-bottom: 1px solid var(--primary) !important;
}

/* Footer */
footer {
    color: var(--white);
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    padding-bottom: 2rem;
    margin-top: 2em;
}
footer h2 {
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 600;
}
#footer,
#footer_middle {
    max-width: unset;
    width: 100%;
}
.region-footer,
#footer_middle {
    max-width: unset;
    width: var(--width-5-6);
    margin: 0 auto;
}
#footer {
    padding-top: 50px;
    background-color: #f4f4ea;
    color: var(--text-color);
}
footer ul.menu {
    display: flex;
    flex-direction: column;
}
footer ul.menu a.is-active,
footer ul.menu a {
    color: var(--white);
}
footer .vermittler_hinweis {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    width: 100%;
}
.region-footer-middle {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 70px 0;
}
.region-footer-middle > * {
    width: 25%;
}
