body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'Inter';
    font-weight: normal;
    color: var(--text-color);
    font-size: 16px;
    line-height: 150%;
    background-color: var(--background-color);
}
body.noscroll {
    overflow-y: hidden;
}

a {
    color: var(--text-color);
    text-decoration: none;
}
a:hover {
    color: var(--gradient-headline-start);
}
p a, small a, li a {
    text-decoration: underline;
}
hr {    
    border: none;
    border-top: 1px solid #dfdfdf;
    margin: 70px 0 80px;
}
small {
    line-height: 130%;
}
h1, h2, h3, h4, h5, h6 {
    display: table;
    margin-top: 0;
    line-height: initial;
}
h1 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 5px;
}
h2 {
    font-size: 28px;
    margin-bottom: 25px;
}
h3 {
    font-size: 24px;
    margin-bottom: 5px;
}
h4 {
    font-size: 20px;
    margin-bottom: 5px;
}
h5 {
    font-size: 16px;
    margin-bottom: 5px;
}
img {
    display: block;
    max-width: 100%;
}


header {
    position: absolute;
    top: 0;
    z-index: 99;
    width: 100%;
    display: flex;
    height: var(--header-height);
    background-color: #fff;
}
header.fixed {
    position: fixed;
    transform: translateY(-101%);
}
header.animate {
    transition: transform .2s ease-in-out;
}
header.fixed.visible {
    transform: translateY(0);
    border-bottom: 1px solid #e7ebee;
}
#page {
    margin-top: var(--header-height);
    padding: 0 0 var(--page-padding-bottom);
    overflow-x: hidden;
}
#page.offset {
    padding: var(--page-padding-top) 0 var(--page-padding-bottom);
}
footer {
    padding: 0 0 80px;
}


.container {
    position: relative;
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 var(--page-padding-sides);
    box-sizing: border-box;
}
.container.wide {
    max-width: var(--content-width-wide);
}
.container.thin {
    max-width: var(--content-width-thin);
}
.container > .container {
    padding: 0;
}


.row {
    display: flex;
    gap: 50px;
}
.row.gap-s {
    gap: 20px;
}
.row.auto {
    flex-wrap: nowrap;
}
.row > div { flex: 1; }
.row > div.double { flex: 2; }
.row > div.triple { flex: 3; }
.row.auto > div {
    flex: auto;
}
.row.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.row.form input, .row.form select, .row.form textarea {
    margin-bottom: 10px;
}
.row.text {
    gap: 40px;
}

.vStart { align-items: start; }
.vCenter { align-items: center; }
.vEnd { align-items: end; }
.hStart { justify-content: start; }
.hCenter { justify-content: center; }
.hEnd { justify-content: end; }
.vStartSelf { align-self: start; }
.vCenterSelf { align-self: center; }
.vEndSelf { align-self: end; }
.hStartSelf { justify-self: start; }
.hCenterSelf { justify-self: center; }
.hEndSelf { justify-self: end; }

.noGrow { flex-grow: 0 !important; }
.noShrink { flex-shrink: 0 !important; }

.spacer { height: 100px; }
.spacer.xs { height: 20px; }
.spacer.s { height: 60px; }
.spacer.m { height: 100px; }
.spacer.l { height: 200px; }

.hideOnMobile { display: block; }
.hideOnDesktop { display: none; }


.postMeta {    
    font-size: 18px;
    margin: 0;
}



.contentBox img {
    margin-bottom: 20px;
}
.contentBox p {
    margin-bottom: 5px;
}
.contentBox p .bigLink {
    padding-left: 10px;
}


.textGradient {
    background: linear-gradient(90deg, var(--gradient-headline-start) 0%, var(--gradient-headline-middle) 30%, var(--gradient-headline-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bgGradientGrey {
    background: var(--gradient-grey-dark);
    background: linear-gradient(90deg, var(--gradient-grey-dark) 0%, var(--gradient-grey-light) 100%);
}
.textColumns2 {
    column-count: 2;
    column-gap: 40px;
}
.textColumns3 {
    column-count: 3;
    column-gap: 40px;
}



header .logo-container-desktop img {
    display: block;
    width: var(--logo-width-desktop);
}
header .logo-container-mobile img {
    display: block;
    width: var(--logo-width-mobile);
}
header .menu {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 35px;
}
header .menu a {
    text-decoration: none;
    font-weight: bold;
    font-size: 17px;
}
header .menu .current-menu-item > a, header .menu .current-menu-parent > a {
    color: var(--gradient-headline-start);
}
header .menu .current-menu-item.donate-button a {
    color: #fff;
}
header .sub-menu {
    display: none;
    position: absolute;
    z-index: 10;
    min-width: 270px;
    background-color: #fff;
    list-style-type: none;
    padding: 20px 25px 10px;
    margin: 0 0 0 -25px;
}
header .sub-menu li {
    margin: 10px 0;
}
header .sub-menu .current-menu-item a, header .sub-menu li a:hover {
    background: linear-gradient(90deg, var(--gradient-orange-dark) 0%, var(--gradient-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.logo-container-mobile {
    display: none;
}
#mobile-menu .logo-container-mobile {
    width: 200px;
    padding-top: 70px;
    margin-top: auto;
}
.menu-container-desktop {
    align-self: center;
}
.menu-container-mobile {
    display: none;
    align-self: start;
}


.mobile-menu-toggle {
    width: 34px;
    padding: 14px 0;
    cursor: pointer;
    margin-left: auto;
}
.mobile-menu-toggle::before, .mobile-menu-toggle::after {
    display: block;
    content: '';
    width: 100%;
    height: 4px;
    background-color: var(--text-color);
}
.mobile-menu-toggle::after {
    margin-top: 3px;
}

#mobile-menu {
    position: fixed;
    z-index: 999;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 30px 25px;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateY(-101%);
    opacity: 0;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
#mobile-menu.visible {
    transform: translateY(0);
    opacity: 1;
}
#mobile-menu .menu {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}
#mobile-menu .menu a {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}
#mobile-menu .sub-menu {
    display: none;
    list-style-type: none;
    margin: 0;
    padding: 0 0 0 20px;
}
#mobile-menu .sub-menu li {
    margin-top: 15px;
}

#mobile-menu .sub-menu li a {
    font-weight: normal;
}



input, textarea, select {
    border: none;
    background-color: #fff;
    height: 44px;
    padding: 10px 20px;
    box-sizing: border-box;
    outline: none;
    width: 100%;
    font-size: 15px;
}
input[type="checkbox"]{
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
}
textarea {
    height: auto;
    resize: vertical;
    font-family: 'Inter';
}

button, .donate-button a {
    color: #fff;
    padding: 12px 20px;
    background: var(--gradient-orange-dark);
    background: linear-gradient(90deg, var(--gradient-orange-dark) 0%, var(--gradient-orange-light) 100%);
    border: none;
    font-weight: bold;
    font-size: 17px;
    cursor: pointer;
}
button:hover, .donate-button a:hover {
    background: var(--gradient-orange-dark);
}
.iconButton {
    display: flex;
    align-items: center;
}
.iconButton img {
    width: 20px;
    height: 20px;
    margin: 0px 10px 0 -2px;
}


#donateLess, #donationWidgetMore { display: none; }
.twingleWidget {
    max-width: 722px;
    padding: 0;
}


#faqInput {
    position: relative;
    margin-bottom: 10px;
}
#faqInput img {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 24px;
    height: 24px;
}
#faqInput input {
    background: var(--gradient-grey-light);
    background: linear-gradient(90deg, var(--gradient-grey-light) 0%, #fff 100%);
    border: 1px solid var(--border-color);
    color: var(--text-color-light);
    font-size: 18px;
    width: 100%;
    max-width: 600px;
    height: 54px;
    font-weight: bold;
    padding-left: 54px;
    padding-top: 12px;
}
#faqInput input::placeholder {
    color: var(--text-color-light);
}
#noMatch {
    display: none;
    margin-top: 40px;
}




.teaser {
    position: relative;
    z-index: 1;
    display: flex;
    height: 520px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.teaser > * { flex: auto; }
.teaser .hero {
    margin-bottom: 70px;
}
#videoTeaser {    
    cursor: pointer;
    background-position: 0 50%;
}
.youtubeVideo {    
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 30px;
}
#videoPopup {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#videoPopup.visible {
    display: block;
}
#videoBackground {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
}
#videoPopup .youtubeVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 30px;
    box-sizing: border-box;
    background-color: #fff;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
}
#videoPopup iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
}
#videoPopupClose {
    position: absolute;
    right: 12px;
    bottom: -35px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: bold;
    font-size: 17px;
    cursor: pointer;
}
#videoPopupClose img {
    width: 16px;
    height: 16px;
}
#videoPopupClose:hover {
    opacity: .7;
}
.videoPrivacy {
    position: absolute;
    width: 100%;
    height: 100%;
    /* aspect-ratio: 16 / 9; */
    background-image: url('../assets/images/video-teaser.jpg');
    background-repeat: no-repeat;
    background-size: auto 100%;
    cursor: pointer;
}
#videoPopup .videoPrivacy {
    width: calc(100% - 60px);
    height: calc(100% - 60px);
}
.videoPrivacy > div {    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    text-align: center;
    color: #fff;
}
.videoPrivacy a { color: #fff; }
.videoPrivacy a:hover { color: var(--gradient-headline-end); }





.youtube {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
}


.sahra {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    max-height: 100%;
    width: auto;
}

.playContainer {
    display: flex;
    justify-content: end;
    align-items: center;
}
.play-button {
    position: relative;
    width: 128px;
    height: 128px;
    margin-right: 80px;
    border-radius: 50%;
    background-color: #4b607591;
    box-shadow: 0 0 20px 0 rgb(0 0 20 / 0%);
    transition: background-color .1s ease-out, box-shadow .3s ease-out;
    animation: playButtonScale 3s ease-in-out infinite;
}
@keyframes playButtonScale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
.play-button:after, .play-button::before {
    position: absolute;
    top: 39px;
    left: 50px;
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 40px;
    border-color: transparent transparent transparent #ffffffc2;
    transition: border-color .1s ease-out;
}
.play-button::before {
    border-color: transparent transparent transparent #ffffff85;
    animation: playButtonArrowScale 2s ease-out infinite;
    transform-origin: 14px 50%;
}
@keyframes playButtonArrowScale {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
#videoTeaser:hover .play-button {
    background-color: #fff;
    box-shadow: 0 0 40px 0 rgb(0 0 20 / 30%);
    animation: none;
}
#videoTeaser:hover .play-button::after {
    border-color: transparent transparent transparent #616e79;
}
#videoTeaser:hover .play-button::before {
    animation: none;
}



.hero {
    display: flex;
    position: relative;
    align-items: end;
    flex-grow: 0;
    flex-shrink: 0;
    width: 600px;
    max-width: 100%;
    line-height: 105%;
    font-size: 50px;
    font-weight: 900;
    color: #fff;
    padding: 40px 45px 30px;
    margin: 0 -22px 18px 22px;
    box-sizing: border-box;
    background: rgba(177,25,73,.64);
    background: linear-gradient(90deg, rgba(177,25,73,.64) 0%, rgba(207,0,85,.64) 50%, rgba(244,152,0,.64) 100%);
}
.hero:before {
    display: block;
    content: '';
    position: absolute;
    z-index: -1;
    bottom: -18px;
    left: -22px;
    width: 100%;
    height: 99%;
    background: rgb(121,35,81);
    background: linear-gradient(90deg, rgb(121,35,81) 0%, rgb(238,116,2) 100%);
}

.hero.mobile {
    display: none;
    align-items: end;
    margin-bottom: 35px;
}





.bigLink {
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}
.biggerLink {
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
}
.biggestLink {
    font-size: 44px;
    font-weight: bold;
    text-decoration: none;
}


.accordion {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.accordion li:first-child {
    border-top: 1px solid var(--grey);
}
.accordion li {
    border-bottom: 1px solid var(--grey);
}
.accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: var(--accordion-height);
    padding-top: 5px;
    padding-bottom: 5px;
    box-sizing: border-box;
    cursor: pointer;
    user-select: none;
}
.accordion-button:after {
    flex-shrink: 0;
    display: block;
    content: '';
    width: 11px;
    height: 11px;
    border: 2px solid var(--text-color);
    border-top: none;
    border-left: none;
    transform: rotateZ(45deg);
    margin-top: -8px;
    transform-origin: 9px 9px;

    transition: transform .1s ease-in-out, color .1s ease-in-out;
}
.accordion-button h6 {
    margin: 0;
}
.accordion-content {
    display: none;
    padding: 0 0 20px;
}
.accordion li.active .accordion-button:after {
    transform: rotateZ(225deg);
}



footer .menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
footer .menu a {
    font-size: 16px;
    font-weight: bold;
    line-height: 32px;
    text-decoration: none;
}

.socialMenu {    
    display: flex;
    justify-content: end;
    align-items: end;
}
.socialMenu .menu {
    display: flex;
    gap: 20px;
}
.icon {
    display: block;
    width: 32px;
    height: 32px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    filter: grayscale(1) brightness(0);
    transition: filter .1s ease-in-out;
}
.icon:hover {
    filter: grayscale(0) brightness(1);
}
.icon.facebook { background-image: url('../assets/icons/facebook.svg'); }
.icon.instagram { background-image: url('../assets/icons/instagram.svg'); }
.icon.twitter { background-image: url('../assets/icons/twitter.svg'); }
.icon.whatsapp { background-image: url('../assets/icons/whatsapp.svg'); }
.icon.x { background-image: url('../assets/icons/x.svg'); }
.icon.youtube { background-image: url('../assets/icons/youtube.svg'); }






.popup {
    align-items: center;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 80px 0;
    box-sizing: border-box;
}
.popupBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
}
.popup.visible {
    display: flex;
    align-items: flex-start;
}
.popupContent {
    position: relative;
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 25px;
    box-sizing: border-box;
}

.popupClose {
    position: absolute;
    right: 50px;
    bottom: -10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: bold;
    font-size: 17px;
    cursor: pointer;
}
.popupClose img {
    width: 16px;
    height: 16px;
}
.popupClose:hover {
    opacity: .7;
}


.redirectHero {
    width: calc(100% - 20px);
    padding-top: 120px;
    padding-bottom: 80px;
}
.redirectHero span {
    display: block;
    font-size: 30px;
    font-weight: 600;
}
.redirectHero .arrow {    
    font-size: 44px;
}