/***** GLOBALS - Start ************************************************************************************************/
body {
    margin: 0;
    font: 400 26px/1.26923 var(--font-1);
    color: rgb(var(--color-font));
}

*, ::after, ::before {
    box-sizing: border-box;
}
a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}
.ce-bodytext a {
    color: rgb(var(--color-secondary));
    /*font-weight: 700;*/
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}
a[href^="tel:"] {
    text-decoration: none;
}
a[href^="tel:"]:hover {
    text-decoration: underline;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.headline-outer.h1 {
    margin-top: -76px;
}
h1 {
    margin: 0 0 20px;
    font: 400 54px/1.22222 var(--font-2);
    color: rgb(var(--color-secondary));
}
.headline-outer h1 {
    display: inline-block;
    margin: -45px 0 22px;
    padding: 30px 42px 22px 36px;
    font: 42px/1.22222 var(--font-2);
    color: #fff;
    border-radius: 0 60px 0 0;
    background-color: rgba(var(--color-primary), .85);
}
h2 {
    margin: 0 0 20px;
    font: 400 36px/1.26471 var(--font-2);
    color: rgb(var(--color-secondary));
}
.ce-bodytext h2,
.news-text-wrap h2 {
    display: inline-block;
    border-bottom: 3px solid rgb(var(--color-secondary-light));
}
h3 {
    margin: 0 0 16px;
    font: 400 30px/1.13333 var(--font-2);
    color: rgb(var(--color-secondary));
}
p {
    margin: 0 0 20px;
    /*line-height: 1.4444445;*/
}

dl {
    margin: 0 0 22px;
}
dl::after {
    content: '';
    display: table;
    clear: both;
}
dl dt {
    float: left;
    clear: both;
    margin: 0 8px 0 0;
}
dl dd {
    float: left;
    margin: 0 0 4px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

hr.ce-div {
    margin: 0 0 76px;
    border: none;
    border-bottom: 3px solid rgb(var(--color-secondary-light));
}
fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"] {
    height: 50px;
    width: 320px;
    padding: 0 15px;
    font: 400 26px/1.4 var(--font-1);
    color: rgb(var(--color-secondary));
    border: 1px solid rgb(var(--color-secondary));
}
textarea {
    padding: 10px 15px;
    font: 400 24px/1.4 var(--font-1);
    color: rgb(var(--color-font));
}
input[type="text"]:focus-visible,
input[type="tel"]:focus-visible,
input[type="password"]:focus-visible,
input[type="email"]:focus-visible,
textarea {
    outline: none;
}
select {
    height: 50px;
    margin: 0;
    padding: 0 12px;
    font: inherit/inherit var(--font-1);
    color: inherit;
    border: none;
    background-color: #fff;
}
input[type="submit"] {
    cursor: pointer;
}

label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    word-wrap: anywhere;

    transition: all var(--transition-t1);
}
label.select {
    /*margin: -2px 0 0;*/
    padding: 10px 0 0;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    /*margin: 0 0 20px;*/
}
.form-group.among {
    flex-direction: column;
}
.form-group.top {
    align-items: flex-start;
}
.form-group.end {
    justify-content: flex-end;
}
.form-group.justify-center {
    justify-content: center;
}
.form-group.vertical {
    flex-direction: column;
}
.form-group.space {
    justify-content: space-between;
}
.form-group.preview {
    padding: 10px;
    background-color: rgba(255,255,255,.53);
}
.form-group.preview .field-value {
    font-style: italic;
}
.form-group.preview .field-value .image + .filename{
    margin: 10px 0 10px;
}
.form-group.preview label {
    align-items: flex-start;
}
.form-group.textarea.preview,
.form-group.checkbox.preview {
    padding: 0;
    background-color: transparent;
}
.form-group.textarea.preview .field-value {
    min-height: 156px;
    padding: 10px;
    background-color: rgba(255,255,255,.53);
}
.form-group.checkbox.preview .field-value {
    padding: 10px;
    background-color: rgba(255,255,255,.53);
}
.form-group .input {
    display: flex;
    /*margin: 0 40px 22px 0;*/

    transition: all var(--transition-t1);
}
.form-group .input input[type="checkbox"],
.form-group .input input[type="radio"] {
    display: none;
}
.form-group .input .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    margin: 0 10px 0 0;
    background-color: #fff;
}
.form-group .input.radio .icon {
    border-radius: 50%;
}
.form-group .input.radio input + label .icon::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgb(var(--color-secondary-light));

    opacity: 0;
    transition: all var(--transition-t1);
}
.form-group .input.radio input:checked + label .icon::before {
    opacity: 1;
}
.form-group .input.checkbox input + label .icon::before {
    content: '';
    width: 21px;
    height: 15px;
    margin: 2px 0 0;
    background: url("../Images/bg-check-lightblue.svg") no-repeat;
    background-size: 21px auto;

    opacity: 0;
    transition: all var(--transition-t1);
}
.form-group .input.checkbox input:checked + label .icon::before {
    opacity: 1;
}
.form-group .input.textarea {
    flex: 1 1 auto;
}
.form-group.error label,
.form-row.form-group.error label {
    color: rgb(var(--color-error-1));
}
.form-group.error input[type="text"],
.form-group.error textarea,
.form-group.error div.select {
    background-color: rgb(var(--color-error-2));
    color: rgb(var(--color-error-1));
}
.form-group.error div.select .selected {
    color: rgb(var(--color-error-1));
}
.form-group.error .input .icon {
    background-color: rgb(var(--color-error-2));
}
.form-group.error .select .selected::before {
    border-top: 11px solid rgb(var(--color-error-1));
}

.form-group .form-btn {
    border: none;
    cursor: pointer;
    position: relative;
    display: inline-block;
    margin: 15px 0 0;
    padding: 7px 15px 10px 52px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background-color: rgb(var(--color-secondary-light));
}
.form-group .form-btn::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 15px;
    width: 28px;
    height: 14px;
    background: url("../Images/bg-arrow-right-white.svg") no-repeat;
    background-size: 28px auto;
}
.form-group .form-btn.back::before {
    transform: rotate(180deg);
}
.form-group .form-btn span {
    border-bottom: 2px solid #fff;

    transition: all var(--transition-t1);
}
.form-group .form-btn:hover span {
    border-bottom-color: transparent;
}

div.select {
    position: relative;
    width: 374px;
    max-width: 100%;
    /*margin: -2px 0 32px 40px;*/
    background-color: #fff;

    transition: all var(--transition-t1);
}
.select.salutation {
    width: 206px;
}
.select .selected {
    margin: 0 52px 0 0;
    padding: 10px 52px 12px 12px;
    color: rgb(var(--color-font));
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    /*pointer-events: none;*/
}
.select .selected::before {
    content: '';
    position: absolute;
    top: 23px;
    right: 18px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 11px solid rgb(var(--color-secondary-light));

    /*transition: all var(--transition-t1);*/
}
.select.active .selected::before {
    transform: rotate(180deg);
}
.select ul {
    position: absolute;
    left: 0;
    right: 0;
    color: rgb(var(--color-font));
    background-color: #fff;
    z-index: 1;

    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-t1);
}
.select.active ul {
    opacity: 1;
    pointer-events: auto;
}
.content .select ul li {
    padding: 6px 12px;
    margin: 0;
    cursor: pointer;

    transition: all var(--transition-t1);
}
.select ul li::before {
    display: none;
}
.select ul li:hover {
    background-color: rgb(var(--color-table-bg-tr-primary));
}

.form-group.disabled label {
    opacity: .5;
}
.form-group.disabled .select,
.form-group.disabled .input {
    opacity: .5;
    pointer-events: none;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/***** Bootstrap-Korrekturen - Start *****/
.container .container,
.container .container-fluid {
    width: auto;
    padding: 0;
}
.col-xxl-10 .col-xxl-10 {
    width: auto;
}
.offset-xxl-1 .offset-xxl-1 {
    margin-left: 0;
}
/***** Bootstrap-Korrekturen - End *****/

/***** Loader - Start *****/
.loading {
    display: flex;
    justify-content: center;
    margin: 0 0 30px;
}
.lds-default {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-default div {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(var(--color-secondary-light));
    border-radius: 50%;
    animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
    animation-delay: 0s;
    top: 37px;
    left: 66px;
}
.lds-default div:nth-child(2) {
    animation-delay: -0.1s;
    top: 22px;
    left: 62px;
}
.lds-default div:nth-child(3) {
    animation-delay: -0.2s;
    top: 11px;
    left: 52px;
}
.lds-default div:nth-child(4) {
    animation-delay: -0.3s;
    top: 7px;
    left: 37px;
}
.lds-default div:nth-child(5) {
    animation-delay: -0.4s;
    top: 11px;
    left: 22px;
}
.lds-default div:nth-child(6) {
    animation-delay: -0.5s;
    top: 22px;
    left: 11px;
}
.lds-default div:nth-child(7) {
    animation-delay: -0.6s;
    top: 37px;
    left: 7px;
}
.lds-default div:nth-child(8) {
    animation-delay: -0.7s;
    top: 52px;
    left: 11px;
}
.lds-default div:nth-child(9) {
    animation-delay: -0.8s;
    top: 62px;
    left: 22px;
}
.lds-default div:nth-child(10) {
    animation-delay: -0.9s;
    top: 66px;
    left: 37px;
}
.lds-default div:nth-child(11) {
    animation-delay: -1s;
    top: 62px;
    left: 52px;
}
.lds-default div:nth-child(12) {
    animation-delay: -1.1s;
    top: 52px;
    left: 62px;
}
@keyframes lds-default {
    0%, 20%, 80%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}
/***** Loader - End *****/

/***** GLOBALS - End ************************************************************************************************/


/***** HEADER - Start *************************************************************************************************/
header.main {
    position: fixed;
    top: 0;
    width: 100%;
    margin: 0 0 100px;
    background-color: #fff;
    z-index: 30;
}
header.main .header-stage {
    /*position: relative;*/
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 172px;

    transition: all var(--transition-t2);
}
header.main.scrolled .header-stage {
    height: 92px;
}
header.main .logo {
    position: absolute;
    left: calc(50% - 122px);
    top: 0;
    display: block;
    width: 243px;
    height: 162px;
    text-indent: -9999em;
    background: url("../Images/bg-logo-ffh.png") no-repeat 0 -1px;
    background-size: contain;

    transition: all var(--transition-t2);
}
header.main.scrolled .logo {
    left: calc(50% - 62px);
    /*left: 0;*/
    width: 124px;
    height: 82px;
    /*width: 138px;
    height: 92px;*/
}
header.main .slogan {
    position: absolute;
    bottom: -30px;
    left: calc(50% - 149px);
    padding: 10px 10px 6px;
    font: 400 28px/1.21429 var(--font-2);
    color: #fff;
    background-color: rgb(var(--color-secondary));

    transition: all var(--transition-t2);
}
header.main.scrolled .slogan {
    font-size: 22px;
    left: calc(50% - 120px);
    bottom: -22px;
}
header.main .header-actions {
    display: flex;
    margin: 0 12px 0 0;
}
header.main .header-actions .btn-nav {
    width: 46px;
    height: 36px;
    background: url("../Images/bg-nav-open.svg") no-repeat;
    background-size: auto 36px;
    cursor: pointer;
}
header.main .header-actions .donate {
    display: block;
    width: 48px;
    height: 36px;
    margin: -2px 28px 0 0;
    text-indent: -9999em;
    background: url("../Images/bg-icon-donate.svg") no-repeat;
    background-size: auto 36px;
}
header.main .header-actions .search {
    margin: 0 18px 0 0;
}
header.main .header-actions .search .btn {
    position: relative;
    width: 34px;
    height: 34px;
    cursor: pointer;
}
header.main .header-actions .search .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    height: 34px;
    opacity: 1;
    background: url("../Images/bg-icon-lens.svg") no-repeat;
    background-size: auto 34px;
    cursor: pointer;

    transition: all var(--transition-t2);
}
header.main .header-actions .search.active .btn::before {
    opacity: 0;
}
header.main .header-actions .search .btn::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 27px;
    height: 27px;
    opacity: 0;
    background: url("../Images/bg-icon-close-x.svg") no-repeat;
    background-size: auto 27px;
    cursor: pointer;

    transition: all var(--transition-t2);
}
header.main .header-actions .search.active .btn::after {
    opacity: 1;
}

header.main .header-actions .search .search-field {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 152px;
    left: 0;
    right: 0;
    padding: 32px 0 34px;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-t2) ease-in-out;
    background-color: rgba(var(--color-table-bg-tr-primary));
}
header.main.scrolled .header-actions .search .search-field {
    top: 71px;
}
header.main .header-actions .search.active .search-field {
    opacity: 1;
    pointer-events: auto;
}
header.main .header-actions .search .search-field form {
    max-width: 100%;
}
header.main .header-actions .search .search-field .inputs {
    display: flex;
    width: 782px;
    max-width: 100%;
    height: 50px;
}
header.main .header-actions .search .search-field .inputs input[type="text"] {
    flex: 0 0 calc(100% - 56px);
    width: auto;
    height: 50px;
    border: none;
    font-size: 24px;
}
header.main .header-actions .search .search-field .inputs input[type="submit"] {
    cursor: pointer;
    text-indent: -9999em;
    width: 56px;
    height: 50px;
    border: none;
    background: rgb(var(--color-secondary-light)) url("../Images/bg-icon-lens-2.svg") no-repeat center;
    background-size: 34px auto;
}
/***** Navigation - Start *****/
nav.main {
    position: fixed;
    top: -100%;
    right: 0;
    max-height: 100%;
    padding: 64px 200px 40px 110px;
    background-color: #fff;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-t2) ease-in-out;
    z-index: 1110;
}
nav.main.active {
    top: 0;
    opacity: 1;
    pointer-events: auto;
}

nav.main .btn-nav-close {
    position: absolute;
    top: 40px;
    right: 48px;
    width: 46px;
    height: 46px;
}
nav.main .btn-nav-close::before,
nav.main .btn-nav-close::after {
    content: '';
    position: absolute;
    left: 50%;
    height: 100%;
    border-left: 5px solid rgb(var(--color-secondary));
    border-radius: 3px;
    transform: rotate(-45deg);
}
nav.main .btn-nav-close::after {
    transform: rotate(45deg);
}

nav.main > ul {
    width: 460px;
}
nav.main > ul > li a {
    display: block;
    color: rgb(var(--color-secondary));
    transition: all var(--transition-t2);
}
nav.main > ul > li a:hover,
nav.main > ul li.active > a {
    color: rgb(var(--color-primary));
}

nav.main > ul > li {
    position: relative;
    margin: 0 0 20px;
    font-size: 32px;
}
nav.main > ul > li:last-of-type {
    margin: 0;
}
nav.main > ul > li .toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    height: 34px;
    transition: all var(--transition-t2) ease-in-out;
    transform: rotate(90deg);
    cursor: pointer;
}
nav.main > ul > li > .toggle {
    top: 5px;
}
nav.main ul > li.opened > .toggle {
    transform: rotate(180deg);
}
nav.main > ul > li .toggle::before,
nav.main > ul > li .toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(50% - 10px);
    border-top: 2px solid rgb(var(--color-secondary));
    width: 12px;
    transform: rotate(-45deg);
    border-radius: 2px;
}
nav.main > ul > li .toggle::after {
    left: auto;
    right: calc(50% - 10px);
    transform: rotate(45deg);
}

nav.main .subnav {
    display: none;
    padding: 20px 0 0 34px;
}

nav.main .subnav > ul > li {
    position: relative;
    padding: 0 34px 20px 0;
    font-size: 26px;
}
/***** Navigation - End *****/

/***** Header-Image - Start *****/
.header-image {
    margin: 172px 0 76px;
}
.header-image img {
    display: block;
    width: 100%;
    height: auto;
}
/***** Header-Image - End *****/

/***** HEADER - End ***************************************************************************************************/


/***** CONTENT - Start ************************************************************************************************/
.outer::before {
    position: fixed;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--color-secondary), .45);
    content: '';
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-t2) ease-in-out;
    z-index: 1100;
}
.outer.overlay::before {
    opacity: 1;
    pointer-events: auto;
}

div.main {
    margin: 0 0 60px;
}


.content ul li {
    list-style: none;
    position: relative;
    margin: 0 0 32px;
    padding: 0 0 0 50px;
}
.content ul li::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgb(var(--color-secondary-light));
}

.content ol {
    list-style: none;
    counter-reset: rm-counter;
    padding: 0;
}
.content ol li {
    counter-increment: rm-counter;
    position: relative;
    margin: 0 0 32px;
    padding: 0 0 0 50px;
}
.content ol li::before {
    content: counter(rm-counter) ".)";
    position: absolute;
    top: 0;
    left: 0;
    color: rgb(var(--color-secondary-light));
}
.frame-type-menu_sitemap ul {
    margin: 32px 0 0;
}
/***** CONTENT - End **************************************************************************************************/

/***** FOOTER - Start *************************************************************************************************/
.footer-image {

}

footer.main {

}

footer.main .folder {
    margin: 0;
    border-bottom: 3px solid #fff;
}
footer.main .fold-title {
    padding: 42px 0 48px;
    color: #fff;
    text-align: center;
    background-color: rgb(var(--color-secondary));
}
footer.main .fold-title .logo {
    display: inline-block;
    width: 141px;
    height: 95px;
    margin: 0 0 25px;
    background: url("../Images/bg-logo-ffh.png") no-repeat;
    background-size: contain;
}
footer.main .fold-title .text {
    margin: 0 0 20px;
    padding: 0 110px;
}
footer.main .fold-title .actions {
    font-weight: 700;
}
footer.main .fold-title .actions a {
    text-decoration: none;
    line-height: 1.25;
}
footer.main .fold-title .actions a span {
    display: inline-block;
    border-bottom: 2px solid #fff;
    margin: 0 -1px;
    transition: all var(--transition-t1);
}
footer.main .fold-title .actions a:hover span {
    border-bottom-color: transparent;
}
footer.main .fold-title .actions .footer-link {
    position: relative;
    margin: 0 18px 0 0;
}
footer.main .fold-title .actions .footer-link::before {
    content: '';
    position: absolute;
    top: 9px;
    left: -38px;
    width: 28px;
    height: 14px;
    background: url("../Images/bg-arrow-right-white.svg") no-repeat;
    background-size: 28px auto;
}
footer.main .fold-title .actions .do-open {
    position: relative;
    margin: 0 18px;
    padding: 0 0 0 28px;
}
footer.main .fold-title .actions .do-open::before {
    content: '';
    position: absolute;
    top: 13px;
    left: 0;
    width: 16px;
    height: 8px;
    background: url("../Images/bg-arrow2-up-white.svg") no-repeat;
    background-size: 16px auto;
    transform: rotate(180deg);
    transition: all var(--transition-t2) ease-out;
}
footer.main .active .fold-title .actions .do-open::before {
    transform: rotate(0deg);
}
footer.main .fold-content {
    display: none;
    padding: 40px 0;
    text-align: center;
}
footer.main .fold-content .headline {
    display: inline-block;
    margin: 0 0 35px;
    font: 400 36px/1.1 var(--font-2);
    border-bottom: 3px solid rgb(var(--color-secondary));
}
footer.main .fold-content .members {
    /*display: inline-block;
    width: 737px;
    height: 107px;
    background: url("../Images/bg-footer-members.png") no-repeat;
    background-size: 737px auto;*/
}
footer.main .fold-content .members ul {
    display: flex;
    justify-content: center;
}
footer.main .fold-content .members ul li {
    margin: 0 12px;
}
footer.main .fold-content .members ul li:nth-of-type(3) {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}
footer.main .fold-content .members ul li:nth-of-type(1) img {
    width: 78px;
}
footer.main .fold-content .members ul li:nth-of-type(2) img {
    width: 57px;
}
footer.main .fold-content .members ul li:nth-of-type(3) img {
    width: 80px;
}
footer.main .fold-content .members ul li:nth-of-type(4) img {
    width: 56px;
}
footer.main .fold-content .members ul li:nth-of-type(5) img {
    width: 52px;
}
footer.main .fold-content .members ul li:nth-of-type(6) img {
    width: 63px;
}
footer.main .fold-content .members ul li:nth-of-type(7) img {
    width: 51px;
}
footer.main .fold-content .members ul li:nth-of-type(8) img {
    width: 91px;
}

footer.main .footer-main {
    color: #fff;
    background-color: rgb(var(--color-secondary));
}
footer.main .footer-stage {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 35px 0 40px;
    font-size: 18px;
}
footer.main .footer-stage a {
    text-decoration: none;
}
footer.main .footer-stage a:hover {
    text-decoration: underline;
}
footer.main .footer-stage .social {
    flex: 0 0 auto;
    margin: 0 40px 0 0;
}
footer.main .footer-stage .social .headline {
    margin: 0 0 20px;
    font: 400 32px/1.26471 var(--font-2);
    color: #fff;
    border-bottom: 3px solid #fff;
}
footer.main .footer-stage .social ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 10px;
    padding: 0 4px 0 0;
}
footer.main .footer-stage .social li a {
    display: block;
    text-indent: -9999em;
}
footer.main .footer-stage .social li.fb a {
    width: 35px;
    height: 35px;
    background: url("../Images/bg-social-icon-facebook.png") no-repeat;
    background-size: cover;
}
footer.main .footer-stage .social li.ig a {
    width: 35px;
    height: 35px;
    background: url("../Images/bg-social-icon-instagram.png") no-repeat;
    background-size: cover;
}
footer.main .footer-stage .social li.yt a {
    width: 40px;
    height: 35px;
    background: url("../Images/bg-social-icon-youtube.png") no-repeat;
    background-size: contain;
    margin-top: 6px;
}


footer.main .footer-stage .social ul li + li {
    margin: 0 12px;
}
footer.main .footer-stage .social ul li:last-of-type {
    margin: 0;
}

footer.main .footer-stage address {
    display: flex;
    font-style: normal;
}
footer.main .footer-stage address .address {
    margin: 0 42px 0 0;
}
footer.main .footer-stage nav.footer {
    margin: 0 50px 0 0;
}
footer.main .footer-stage nav.footer a {
    display: block;
    position: relative;
    padding: 0 0 0 24px;
    text-decoration: underline;
}
footer.main .footer-stage nav.footer a::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 16px;
    height: 8px;
    background: url("../Images/bg-arrow-right-white.svg") no-repeat;
    background-size: 16px auto;
}
footer.main .footer-stage nav.footer a:hover {
    text-decoration: none;
}
footer.main .footer-stage .sponsors {
    display: flex;
}
footer.main .footer-stage .sponsors .sponsor {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
footer.main .footer-stage .sponsors .sponsor:nth-of-type(1) {
    width: 172px;
    margin: 0 30px 0 0;
}
footer.main .footer-stage .sponsors .sponsor:nth-of-type(1) .sponsor-logo {
    width: 138px;
    height: 65px;
    background: url("../Images/bg-logo-bundesministerium.png") no-repeat;
    background-size: 138px auto;
}
footer.main .footer-stage .sponsors .sponsor:nth-of-type(2) .sponsor-logo {
    width: 184px;
    height: 65px;
    background: url("../Images/bg-logo-brot.png") no-repeat;
    background-size: 184px auto;
}
footer.main .footer-stage .sponsors .sponsor h4 {
    margin: 0 0 6px 1px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.16667;
}

footer.main .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 18px;
    color: rgb(var(--color-secondary));
}
footer.main .footer-bottom p.copyright {
    margin: 0;
}
footer.main .footer-bottom .meta {
    display: flex;
}
footer.main nav.meta ul {
    display: flex;
}
footer.main nav.meta ul li {
    position: relative;
    margin: 0 0 0 16px;
    padding: 0 0 0 18px;
}
footer.main nav.meta ul li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: 'I';
}
footer.main nav.meta ul li:first-of-type {
    margin: 0;
    padding: 0;
}
footer.main nav.meta ul li:first-of-type::before {
    display: none;
}
footer.main .footer-bottom .meta .show-cookies li {
    position: relative;
    margin: 0 0 0 16px;
    padding: 0 0 0 18px;
}
footer.main .footer-bottom .meta .show-cookies li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: 'I';
}
footer.main .footer-bottom .meta .show-cookies li:first-of-type::before {
    display: block;
}
/***** FOOTER - End ***************************************************************************************************/