@font-face {
    font-family: jost;
    src: url("../font/Jost-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: jost;
    src: url("../font/Jost-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: jost;
    src: url("../font/Jost-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

:root {
    --ink: #1b2234;
    --red: #d5261e;
    --gray: #e3e3e2;
    --header-fallback: #ccc;
    --white: #fff;
    --max: 1568px;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 280px;
    background: var(--white);
    color: var(--ink);
    font-family: jost, Arial, sans-serif;
}

body {
    display: flex;
    min-height: 100vh;
    margin: 0;
    flex-direction: column;
    color: var(--ink);
    background: var(--white);
    font-family: jost, Arial, sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
    font-family: jost, Arial, sans-serif;
}

h1,
h2,
h3,
p,
ul,
ol,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2 {
    margin-bottom: 0.55em;
    font-size: 64px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0;
}

p {
    margin-bottom: 1em;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    animation: fadeIn 550ms ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.main-content,
.m {
    flex: 1 0 auto;
    text-align: center;
}

.section,
.b {
    padding: 100px 50px;
}

.section-gray,
.gbg {
    background: var(--gray);
}

.section-inner,
.wr {
    display: flex;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
}

.error-page-section {
    min-height: 42vh;
    justify-content: center;
}

.error-page-code {
    margin-bottom: 0.2em;
    color: var(--red);
    font-size: clamp(72px, 12vw, 150px);
    font-weight: 600;
    line-height: 0.9;
}

.error-page-copy {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
}

.error-page-link {
    display: inline-flex;
    min-height: 50px;
    margin-top: 18px;
    padding: 12px 26px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--red);
    border-radius: 4px;
    background: var(--red);
    color: #fff;
    font-weight: 500;
    transition: background-color 160ms ease, color 160ms ease;
}

.error-page-link:hover,
.error-page-link:focus-visible {
    background: #fff;
    color: var(--red);
}

.text-left,
.split-copy,
.quote-section .section-inner,
.quote-section .s2,
.imprint-copy {
    text-align: left;
}

.flt,
.site-footer a,
.team-member span,
.imprint-copy {
    font-size: 26px;
    font-weight: 400;
}

.site-header,
.h {
    position: relative;
    height: 0;
    padding-bottom: 34.792%;
    border-bottom: 9px solid var(--red);
    background-color: var(--header-fallback);
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

.hero-home .hero-media img {
    object-position: left top;
}

.logo,
#logo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    padding: 17px 44px 17px 80px;
    border-bottom-right-radius: 30px;
    background: var(--white);
}

.logo img,
#logo img {
    width: 466px;
    height: auto;
}

.main-nav,
.n {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: flex-start;
}

.nav-list,
.n ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 10;
}

.nav-list a,
.n ul a,
.nav-phone,
.tel {
    display: block;
    padding: 1.025em 2em;
    font-size: 20px;
    line-height: normal;
}

.nav-list a,
.n ul a {
    color: var(--ink);
    text-transform: uppercase;
    background: var(--white);
}

.nav-list a:hover,
.nav-list a.ac,
.nav-list a.active,
.n ul a:hover,
.n ul a.ac {
    color: var(--white);
    background: var(--red);
}

.nav-phone,
.tel {
    color: var(--white);
    background: var(--ink);
}

#nav_show,
#nav_close {
    display: none;
}

#nav_show,
#nav_close {
    width: 80px;
    height: 70px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--ink);
    background: var(--white);
}

.nav-icon {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

#nav_show:hover,
#nav_close:hover {
    color: var(--white);
    background: var(--ink);
}

.hero-title {
    position: absolute;
    right: auto;
    bottom: 24%;
    left: 0;
    box-sizing: border-box;
    width: 700px;
    max-width: 100%;
    margin: 0;
    margin-left: calc(50% - 350px);
    padding: 0.1em 0.88em;
    border-radius: 30px;
    background: var(--white);
    font-size: 64px;
    line-height: normal;
}

.page-das-team .hero-title {
    bottom: 8%;
    width: 880px;
    margin-left: 80px;
}

.page-das-team .hero-title span {
    display: none;
}

.hero-title span {
    color: var(--red);
}

.hero-title::after {
    position: absolute;
    right: -40px;
    bottom: 0;
    width: 0;
    height: 0;
    border-right: 80px solid transparent;
    border-bottom: 80px solid var(--white);
    content: "";
}

.problem-grid {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}

.problem-grid li {
    position: relative;
    width: 29%;
    min-width: 280px;
    margin: 0 2.1% 1.5em;
    text-align: left;
}

.problem-grid li::before,
.numbered-list li::before {
    display: inline-grid;
    width: 70px;
    min-width: 70px;
    height: 70px;
    margin-right: 18px;
    border-radius: 50%;
    place-items: center;
    color: var(--white);
    background: var(--red);
    font-size: 44px;
    line-height: 1;
}

.problem-grid li:nth-child(1)::before { content: "1"; }
.problem-grid li:nth-child(2)::before { content: "2"; }
.problem-grid li:nth-child(3)::before { content: "3"; }
.problem-grid li:nth-child(4)::before { content: "4"; }
.problem-grid li:nth-child(5)::before { content: "5"; }

.problem-grid span {
    display: block;
    min-height: 2.4em;
    padding-left: 20px;
}

.problem-grid img {
    display: inline-block;
    max-width: calc(100% - 92px);
    vertical-align: top;
}

.split-row {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.split-row-centered {
    align-items: center;
}

.content-image {
    width: min(780px, 55%);
}

.narrow-image {
    width: min(780px, 52%);
}

.split-copy {
    max-width: 560px;
    padding-right: 80px;
    font-size: 26px;
}

.speech-bubble {
    position: relative;
    margin: 0;
    padding: 1.2em;
    border-radius: 30px;
    color: var(--white);
    background: var(--red);
}

.speech-bubble::before {
    position: absolute;
    bottom: 0;
    left: -50px;
    width: 0;
    height: 0;
    border-top: 80px solid transparent;
    border-right: 80px solid var(--red);
    content: "";
}

.motto {
    min-width: 380px;
    padding: 0.6em 1.2em;
    font-size: 64px;
    text-align: left;
}

.ko,
.contact-inner {
    box-sizing: content-box;
    width: auto;
    max-width: 840px;
    flex-direction: row;
    align-items: center;
    text-align: left;
}

.ko .img,
.contact-inner .img {
    flex: 0 0 152px;
    margin-bottom: 0;
}

.ko picture,
.contact-inner picture {
    flex: 0 0 auto;
}

.ko img,
.contact-inner img {
    width: 152px;
}

.k1 {
    margin-left: 1.5em;
}

.ko p,
.contact-inner p {
    margin: 0;
    line-height: normal;
}

.contact-phone,
.contact-inner a {
    display: block;
    margin-top: 0.2em;
    font-size: 46px;
    line-height: normal;
}

.split-wrap {
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.split-wrap h2 {
    width: 100%;
}

.split-wrap .text-left {
    max-width: 39.7%;
    font-size: 26px;
}

.reasons-list .s1 h1 {
    max-width: 900px;
    margin-bottom: 0.67em;
}

.reasons-list .numbered-list {
    width: 100%;
    max-width: 1340px;
    margin: 1em 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.reasons-list .numbered-list li {
    display: flex;
    margin-bottom: 1em;
}

.reasons-list .numbered-list li::before {
    display: inline-grid;
    width: 70px;
    min-width: 70px;
    height: 70px;
    margin-right: 44px;
    border-radius: 70px;
    font-size: 44px;
}

.numbered-list li:nth-child(1)::before { content: "1"; }
.numbered-list li:nth-child(2)::before { content: "2"; }
.numbered-list li:nth-child(3)::before { content: "3"; }

.team-member {
    display: flex;
    width: min(100%, 1040px);
    margin: 1em 0;
    align-items: flex-start;
    text-align: left;
}

.team-member img {
    width: min(560px, 60%);
}

.team-member p {
    width: 420px;
    max-width: 39%;
    margin-left: 1.8em;
}

.team-section h2 {
    margin-bottom: 0.83em;
}

.team-section .team {
    display: flex;
    width: auto;
    max-width: 100%;
    margin: 1em 0;
    align-items: stretch;
    text-align: left;
}

.team-section .team .img {
    position: relative;
    width: 560px;
    max-width: 60.12%;
    flex: 0 1 auto;
    padding-bottom: 405px;
}

.team-section .team .img picture,
.team-section .team .img img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.team-section .team .img img {
    inset: 0 auto auto 0;
    height: auto;
    object-fit: contain;
}

.team-section .team p {
    width: 420px;
    max-width: 39%;
    flex: 0 0 auto;
    margin-left: 1.8em;
    text-align: left;
}

.team-section .team span {
    font-size: 26px;
    font-weight: 500;
}

.quote-section .section-inner,
.quote-section .s2 {
    max-width: 1450px;
    align-items: flex-start;
}

.imprint .s1 {
    align-items: flex-start;
}

.imprint .flt a {
    color: #0000ee;
    font-weight: 500;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.f,
.site-footer {
    flex-shrink: 0;
    border-top: 9px solid var(--red);
    background: var(--white);
}

.f .wr,
.footer-inner {
    box-sizing: content-box;
    width: auto;
    max-width: var(--max);
    flex-direction: row;
    justify-content: space-between;
}

.footer-logo picture {
    display: block;
}

.footer-logo img {
    width: 582px;
}

.f ul,
.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.f a,
.site-footer a {
    color: var(--ink);
    font-weight: 400;
}

@media (max-width: 1680px) {
    .logo,
    #logo {
        padding: 17px 28px 17px 33px;
    }

    .logo img,
    #logo img {
        width: 281px;
    }

    .hero-title {
        width: min(450px, calc(100% - 56px));
        font-size: 32px;
    }

    .page-das-team .hero-title {
        left: 50px;
        width: min(580px, calc(100% - 100px));
    }

    .hero-title::after {
        right: -26px;
        border-right-width: 60px;
        border-bottom-width: 60px;
    }
}

@media (max-width: 1199px) {
    #nav_show {
        display: flex;
    }

    #nav_close {
        display: none;
    }

    #nav:target #nav_show {
        display: none;
    }

    #nav:target #nav_close {
        display: flex;
    }

    .nav-list,
    .n ul {
        position: absolute;
        top: 70px;
        right: 0;
        display: none;
        width: 272px;
        flex-direction: column;
        text-align: center;
    }

    #nav:target .nav-list,
    #nav:target ul {
        display: block;
    }

    .nav-phone,
    .tel {
        width: 272px;
        text-align: center;
    }

}

@media (max-width: 1024px) {
    .split-row,
    .split-wrap {
        flex-direction: column;
        align-items: center;
    }

    .content-image,
    .narrow-image,
    .split-wrap .text-left {
        width: min(100%, 680px);
        max-width: 100%;
    }

    .split-copy {
        order: -1;
        max-width: 700px;
        padding-right: 0;
    }

    .speech-bubble::before {
        right: 35%;
        bottom: -38px;
        left: auto;
        transform: rotate(-67.5deg);
        border-top-width: 50px;
        border-right-width: 50px;
    }
}

@media (max-width: 900px) {
    body {
        font-size: 24px;
    }

    h1,
    h2 {
        font-size: 32px;
    }

    .site-header,
    .h {
        padding-bottom: 53.335%;
    }

    .section,
    .b {
        padding: 48px 64px;
    }

    .nav-list a,
    .n ul a,
    .nav-phone,
    .tel {
        padding: 1.223em 1.9em;
        font-size: 18px;
    }

    .problem-grid li::before,
    .numbered-list li::before {
        width: 45px;
        min-width: 45px;
        height: 45px;
        border-radius: 45px;
        font-size: 28px;
    }

    .reasons-list .numbered-list li::before {
        width: 45px;
        min-width: 45px;
        height: 45px;
        border-radius: 45px;
        font-size: 28px;
        margin-right: 28px;
    }

    .ko,
    .contact-inner {
        max-width: 560px;
    }

    .ko img,
    .contact-inner img {
        width: 95px;
    }

    .ko .img,
    .contact-inner .img {
        flex-basis: 95px;
    }

    .contact-phone,
    .contact-inner a {
        font-size: 32px;
    }

    .footer-logo img {
        width: 281px;
    }

    .site-footer a,
    .f a {
        font-size: 24px;
    }

    .motto {
        min-width: 0;
        font-size: 32px;
    }

    .team-member img {
        width: 335px;
    }

    .team-section .team .img {
        width: 335px;
        padding-bottom: 200px;
    }
}

@media (min-width: 901px) and (max-width: 1033px) {
    .team-section .team {
        width: 100%;
        align-items: flex-start;
    }

    .team-section .team .img {
        width: 53.872%;
        max-width: 53.872%;
        padding-bottom: 43.59%;
    }

    .team-section .team p {
        min-height: 35.18vw;
    }
}

@media (max-width: 900px) {
    .team-section .team span {
        font-size: 24px;
    }
}

@media (min-width: 601px) and (max-width: 790px) {
    .team-section .team .img {
        padding-bottom: 0;
        aspect-ratio: 335 / 200;
    }

    .team-section .team .img picture,
    .team-section .team .img img {
        position: static;
        height: auto;
    }
}

@media (max-width: 700px) {
    .logo img,
    #logo img {
        width: 228px;
    }

    .nav-list,
    .n ul,
    .nav-phone,
    .tel {
        width: 200px;
    }

    .nav-list a,
    .n ul a,
    .nav-phone,
    .tel {
        padding-right: 0.5em;
        padding-left: 0.5em;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 24px;
    }

    .imprint .flt,
    .imprint-copy {
        font-size: 24px;
    }

    h1,
    h2 {
        font-size: 30px;
    }

    .site-header,
    .h {
        padding-bottom: 71.667%;
    }

    .logo,
    #logo {
        padding: 17px;
    }

    .hero-title,
    .page-das-team .hero-title {
        right: auto;
        bottom: 10%;
        left: 28px;
        width: min(340px, calc(100% - 56px));
        font-size: 24px;
    }

    .section,
    .b {
        padding: 38px 28px;
    }

    .problem-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x proximity;
    }

    .problem-grid li {
        width: 260px;
        min-width: 260px;
        margin: 0;
        padding-left: 28px;
        scroll-snap-align: start;
    }

    .problem-grid img {
        max-width: calc(100% - 70px);
    }

    .ko,
    .contact-inner {
        max-width: 450px;
    }

    .ko p,
    .contact-inner p {
        max-width: 250px;
    }

    .f .wr,
    .footer-inner {
        gap: 0;
    }

    .footer-logo img {
        width: 228px;
    }

    .team-section .team .img {
        width: 258px;
        padding-bottom: 0;
        aspect-ratio: 258 / 200;
    }

    .team-section .team .img picture,
    .team-section .team .img img {
        position: static;
        height: auto;
    }

    .team-section .team span {
        font-size: 24px;
    }
}

@media (max-width: 500px) {
    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-section .team {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ko,
    .contact-inner {
        flex-direction: column;
        align-items: center;
    }

    .k1,
    .contact-inner div {
        order: 1;
        margin: 0 0 1em;
    }

    .contact-phone,
    .contact-inner a {
        font-size: 27px;
    }

    .team-member img,
    .team-member p {
        width: 258px;
        max-width: 100%;
        margin-left: 0;
    }

    .team-section .team .img,
    .team-section .team p {
        width: 258px;
        max-width: 100%;
        margin-left: 0;
    }

    .team-member p {
        margin-top: 1em;
    }

    .team-section .team p {
        margin-top: 1em;
    }

    .numbered-list li {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }

    .numbered-list li::before {
        margin-right: 0;
        margin-bottom: 14px;
    }

    .reasons-list .numbered-list li::before {
        margin-right: 0;
        margin-bottom: 14px;
    }
}

@media (max-width: 450px) {
    .f .wr,
    .footer-inner {
        flex-direction: column;
    }

    .f ul,
    .site-footer ul {
        margin: 24px 0;
    }
}

@media (max-width: 400px) {
    .hero-title,
    .page-das-team .hero-title {
        left: 10px;
        width: min(250px, calc(100% - 20px));
        font-size: 18px;
    }

    .hero-title::after {
        right: -10px;
        border-right-width: 35px;
        border-bottom-width: 35px;
    }
}

@media (max-width: 560px) {
    .site-header,
    .h {
        background-color: var(--white);
        padding-top: 104px;
        padding-bottom: 94.7%;
    }

    .nav-phone,
    .tel {
        display: none;
    }

    .nav-list,
    .n ul {
        top: 104px;
    }

}

@media (max-width: 370px) {
    .site-header,
    .h {
        padding-top: 174px;
    }

    .logo,
    #logo {
        z-index: 1;
        width: 100%;
        padding: 17px 28px 17px 33px;
        border-radius: 0;
    }

    .main-nav,
    .n {
        width: 100%;
        padding-top: 104px;
    }

    .nav-phone,
    .tel {
        display: block;
        flex: 1;
        width: auto;
    }

    .nav-list,
    .n ul {
        top: 174px;
    }

}
/* Headerbilder und Hero-Titel */
@media (min-width: 1681px) {
    .page-home .hero-title {
        font-size: 50px;
    }

    .page-das-team .hero-title {
        font-size: 50px;
    }
}

@media (max-width: 1680px) {
    .hero-title {
        bottom: 20%;
        width: 450px;
        margin-left: calc(50% - 225px);
        font-size: 32px;
    }

    .page-das-team .hero-title {
        bottom: 10%;
        width: 580px;
        margin-left: 0;
    }
}

@media (max-width: 900px) {
    .hero-title {
        bottom: 8%;
    }

    .page-das-team .hero-title {
        bottom: 10%;
    }
}

@media (min-width: 601px) and (max-width: 800px) {
    .page-das-team .hero-title {
        width: 460px;
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        bottom: 10%;
        left: 28px;
        width: 340px;
        max-width: calc(100% - 56px);
        margin-left: 0;
        font-size: 24px;
    }

    .page-das-team .hero-title {
        width: 420px;
        max-width: calc(100% - 56px);
        margin-left: 0;
    }

    .hero-title::after {
        right: -24px;
        border-right-width: 50px;
        border-bottom-width: 50px;
    }
}

@media (max-width: 560px) {
    .hero-media {
        top: 104px;
    }
}

@media (max-width: 400px) {
    .hero-title,
    .page-das-team .hero-title {
        bottom: 10px;
        left: 10px;
        width: 250px;
        max-width: 100%;
        margin-left: 0;
        font-size: 18px;
    }

    .hero-title::after {
        right: -10px;
        border-right-width: 35px;
        border-bottom-width: 35px;
    }
}

@media (max-width: 370px) {
    .hero-media {
        top: 174px;
    }
}

/* Startseite: Wobei helfen wir Ihnen? */
.help-overview .s1 h2 {
    margin-bottom: 0.83em;
}

.help-overview .s1 > p {
    margin-bottom: 1em;
}

.help-overview .problem-grid {
    position: relative;
    display: flex;
    width: 100%;
    margin: 1em 0 1em;
    padding: 0;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}

.help-overview .problem-grid::before {
    display: block;
    width: 100%;
    order: 3;
    content: "";
}

.help-overview .problem-grid li {
    display: flex;
    width: 29%;
    flex-direction: column;
    min-width: 0;
    margin: 0 2.1%;
    text-align: left;
}

.help-overview .problem-grid li:nth-child(1) { order: 1; }
.help-overview .problem-grid li:nth-child(2) { order: 2; }
.help-overview .problem-grid li:nth-child(3) { order: 4; margin-top: 1.5em; }
.help-overview .problem-grid li:nth-child(4) { order: 5; margin-top: 1.5em; }
.help-overview .problem-grid li:nth-child(5) { order: 6; margin-top: 1.5em; }

.help-overview .problem-grid span {
    display: block;
    min-height: auto;
    padding-left: 20px;
}

.help-overview .nrr {
    display: flex;
    margin-top: 18px;
    align-items: flex-start;
}

.help-overview .nrr::before {
    display: inline-grid;
    width: 70px;
    min-width: 70px;
    height: 70px;
    margin-right: 0;
    border-radius: 70px;
    place-items: center;
    color: var(--white);
    background: var(--red);
    font-size: 44px;
    line-height: 1;
}

.help-overview .problem-grid li:nth-child(1) .nrr::before { content: "1"; }
.help-overview .problem-grid li:nth-child(2) .nrr::before { content: "2"; }
.help-overview .problem-grid li:nth-child(3) .nrr::before { content: "3"; }
.help-overview .problem-grid li:nth-child(4) .nrr::before { content: "4"; }
.help-overview .problem-grid li:nth-child(5) .nrr::before { content: "5"; }

.help-overview .problem-grid li::before {
    content: none;
}

.help-overview .nrr picture,
.help-overview .nrr img {
    display: block;
}

.help-overview .nrr img {
    width: 284px;
    max-width: none;
    height: auto;
}

@media (max-width: 1679px) {
    .help-overview .problem-grid {
        max-width: 1044px;
    }

    .help-overview .problem-grid::before {
        content: none;
    }

    .help-overview .problem-grid li {
        width: 44%;
        margin: 0 3%;
    }

    .help-overview .problem-grid li:nth-child(n+3) {
        margin-top: 1.5em;
    }
}

@media (max-width: 900px) {
    .help-overview .nrr::before {
        width: 45px;
        min-width: 45px;
        height: 45px;
        border-radius: 45px;
        font-size: 28px;
    }

    .help-overview .nrr img {
        width: 185px;
        max-width: none;
    }
}

@media (max-width: 600px) {
    .help-overview {
        padding-right: 0;
        padding-left: 0;
        overflow: hidden;
    }

    .help-overview .s1 h2 {
        padding-right: 0;
        padding-left: 0;
    }

    .help-overview .s1 > p {
        padding-right: 28px;
        padding-left: 28px;
    }

    .help-overview .problem-grid {
        max-width: none;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: scroll;
        scroll-snap-type: x proximity;
    }

    .help-overview .problem-grid li,
    .help-overview .problem-grid li:nth-child(n+3) {
        width: auto;
        flex: 0 0 auto;
        min-width: 260px;
        height: 220px;
        margin: 0;
        padding-left: 28px;
        scroll-snap-align: start;
    }

    .help-overview .problem-grid li:nth-child(1) { width: 258px; min-width: 230px; }
    .help-overview .problem-grid li:nth-child(2) { width: 328px; min-width: 300px; }
    .help-overview .problem-grid li:nth-child(3) { width: 278px; min-width: 250px; }
    .help-overview .problem-grid li:nth-child(4) { width: 308px; min-width: 280px; }
    .help-overview .problem-grid li:nth-child(5) { width: 368px; min-width: 340px; }

    .help-overview .nrr img {
        max-width: none;
    }
}

/* Startseite: Wem helfen wir? */
.home-audience .s2 h2 {
    margin-bottom: 0.83em;
}

.home-audience .s2b {
    display: flex;
    width: 100%;
    align-items: normal;
    justify-content: normal;
}

.home-audience .img {
    position: relative;
    width: calc(59% - 130px);
    max-width: 780px;
    flex: 0 1 auto;
}

.home-audience .img::before {
    display: block;
    padding-bottom: 61.538%;
    content: "";
}

.home-audience .img picture {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
}

.home-audience .img img {
    display: block;
    width: 100%;
    height: auto;
}

.home-audience .s2c {
    width: 41%;
    max-width: 41%;
    margin-left: 20px;
    padding-right: 0;
    font-size: 26px;
    text-align: center;
}

.home-audience .s2c > p:not(.sb) {
    margin-bottom: 1em;
}

.home-audience .sb {
    position: relative;
    margin: 0 0 1em;
    padding: 1.2em;
    border-radius: 30px;
    color: var(--white);
    background: var(--red);
    text-align: center;
}

.home-audience .sb::before {
    position: absolute;
    bottom: 0;
    left: -50px;
    width: 0;
    height: 0;
    border-top: 80px solid transparent;
    border-right: 80px solid var(--red);
    content: "";
}

.home-audience .sb::after {
    position: absolute;
    right: -86px;
    bottom: -50px;
    width: 136px;
    height: 132px;
    background: url("../img/geld-desktop.png") center / contain no-repeat;
    content: "";
}

@media (min-width: 1280px) and (max-width: 1480px) {
    .home-audience .sb::before {
        bottom: 40px;
        transform: rotate(22.5deg);
        transform-origin: right bottom;
    }
}

@media (max-width: 1279px) {
    .home-audience .s2b {
        width: min(100%, 700px);
        flex-direction: column;
        align-items: center;
        justify-content: normal;
    }

    .home-audience .s2c {
        order: 1;
        width: 100%;
        max-width: 700px;
        margin-left: 0;
        padding-right: 0;
        font-size: 26px;
        text-align: center;
    }

    .home-audience .img {
        order: 2;
        width: 100%;
        max-width: 100%;
        flex: 0 1 auto;
    }

    .home-audience .img::before {
        padding-bottom: 61.538%;
    }

    .home-audience .sb::before {
        right: 35%;
        bottom: -38px;
        left: auto;
        transform: rotate(-67.5deg);
        border-top-width: 50px;
        border-right-width: 50px;
    }

    .home-audience .sb::after {
        right: -10px;
        bottom: -40px;
        width: 100px;
        height: 97px;
        background-image: url("../img/geld-tablet.png");
    }
}

@media (max-width: 900px) {
    .home-audience .s2c {
        font-size: inherit;
    }

    .home-audience .img {
        max-width: 592px;
    }

    .home-audience .img::before {
        padding-bottom: 52.196%;
    }
}

@media (max-width: 600px) {
    .home-audience .s2c,
    .home-audience .img {
        max-width: 100%;
    }

    .home-audience .img::before {
        padding-bottom: 59.808%;
    }
}

/* Wir und Sie: Wir sind fuer Sie da! */
.motto-section .s2 h2 {
    margin-bottom: 0.83em;
}

.motto-section .s2b {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.motto-section .img {
    position: relative;
    width: 51.6%;
    max-width: 780px;
    flex: 0 0 51.6%;
}

.motto-section .img::before {
    display: block;
    padding-bottom: 61.538%;
    content: "";
}

.motto-section .img picture,
.motto-section .img img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.motto-section .img img {
    object-fit: cover;
}

.motto-section .sb {
    box-sizing: content-box;
    position: relative;
    margin: 0;
    padding: 0.6em 1.2em;
    border-radius: 30px;
    color: var(--white);
    background: var(--red);
}

.motto-section .sb::before {
    position: absolute;
    bottom: 0;
    left: -50px;
    width: 0;
    height: 0;
    border-top: 80px solid transparent;
    border-right: 80px solid var(--red);
    content: "";
}

.motto-section .motto {
    margin-left: 20px;
    width: 400px;
    max-width: 100%;
    min-width: 400px;
    font-size: 64px;
    text-align: center;
}

@media (max-width: 1284px) and (min-width: 901px) {
    .motto-section .sb::before {
        bottom: 40px;
        transform: rotate(22.5deg);
        transform-origin: right bottom;
    }

    .motto-section .motto {
        width: 300px;
        min-width: 300px;
        font-size: 48px;
    }
}

@media (max-width: 900px) {
    .motto-section .img {
        width: 60%;
        max-width: 463px;
        flex-basis: 60%;
    }

    .motto-section .img::before {
        padding-bottom: 78.402%;
    }

    .motto-section .motto {
        min-width: 0;
        margin-left: 20px;
        width: 159.219px;
        font-size: 32px;
    }

    .motto-section .sb::before {
        bottom: 53.6719px;
        transform: rotate(22.5deg);
        transform-origin: right bottom;
    }
}

@media (max-width: 720px) and (min-width: 601px) {
    .motto-section .s2b {
        gap: 16px;
    }

    .motto-section .img {
        width: clamp(220px, 40vw, 286px);
        flex: 0 0 clamp(220px, 40vw, 286px);
    }

    .motto-section .sb {
        flex-shrink: 0;
        padding-right: 1.05em;
        padding-left: 1.05em;
    }

    .motto-section .sb::before {
        bottom: 48px;
        left: -42px;
        border-top-width: 68px;
        border-right-width: 68px;
    }

    .motto-section .motto {
        margin-left: 0;
        width: 140px;
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .motto-section .s2b {
        flex-direction: column;
    }

    .motto-section .img {
        order: 2;
        width: 100%;
        max-width: 300px;
        flex-basis: auto;
        margin-top: 1em;
    }

    .motto-section .img::before {
        padding-bottom: 95.667%;
    }

    .motto-section .sb {
        order: 1;
    }

    .motto-section .sb::before {
        bottom: -34px;
        left: calc(50% - 24px);
        right: auto;
        width: 0;
        height: 0;
        transform: none;
        border-style: solid;
        border-top: 34px solid var(--red);
        border-right: 24px solid transparent;
        border-bottom: 0 solid transparent;
        border-left: 24px solid transparent;
    }

    .motto-section .motto {
        margin-left: 0;
        width: 187.5px;
        font-size: 30px;
    }
}

/* Text-Bild-Bereich: Warum helfen wir? / grosses Ganze */
.reason-section .s3 {
    max-width: 1400px;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.reason-section .s3 h2 {
    width: 100%;
}

.reason-section .s3 .img {
    position: relative;
    width: 55.72%;
    max-width: 55.72%;
    flex: 0 0 55.72%;
}

.reason-section .s3 .img::before {
    display: block;
    padding-bottom: 61.538%;
    content: "";
}

.reason-section .s3 .img picture {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
}

.reason-section .s3 .img img {
    display: block;
    width: 100%;
    height: auto;
}

.reason-section .s3 .text-left {
    max-width: 39.7%;
    margin-bottom: 26px;
    font-size: 26px;
}

.reason-section .s3 h2 {
    margin-bottom: 53.12px;
}

@media (max-width: 1024px) {
    .reason-section .s3 {
        max-width: 680px;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: normal;
        align-items: center;
    }

    .reason-section .s3 h2 {
        order: 1;
    }

    .reason-section .s3 .text-left {
        order: 2;
        max-width: none;
    }

    .reason-section .s3 .img {
        order: 3;
        width: 100%;
        max-width: 100%;
        flex-basis: auto;
        margin-top: 1em;
    }

    .reason-section .s3 .img::before {
        padding-bottom: 61.538%;
    }
}

@media (max-width: 900px) {
    .reason-section .s3 .img {
        width: 100%;
        max-width: 592px;
        margin-top: 24px;
    }

    .reason-section .s3 .img::before {
        padding-bottom: 52.196%;
    }
}

@media (max-width: 768px) {
    .reason-section .s3 h2 {
        margin-bottom: 26.56px;
    }

    .reason-section .s3 .text-left {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .reason-section .s3 .img {
        width: 100%;
        max-width: 592px;
        margin-top: 24px;
    }

    .reason-section .s3 .img::before {
        padding-bottom: 52.196%;
    }
}

@media (max-width: 600px) {
    .reason-section .s3 h2 {
        margin-bottom: 24.9px;
    }

    .reason-section .s3 .text-left {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .reason-section .s3 .img {
        width: 100%;
        max-width: 520px;
    }

    .reason-section .s3 .img::before {
        padding-bottom: 59.808%;
    }
}
