:root {
    --bg-color: rgb(240,128,80);
    --number-color: #df9b73;
    --font-color: rgb(34,45,93);
}

.grund-1 {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}
.grund-1 h1 {
    color: var(--font-color);
    border-left: 0;
    font-weight: 900;
    padding-left: 0;
    line-height: 1;
}
.grund-1 h2 {
    color: var(--font-color);
    border-left: 0;
    font-weight: 900;
    padding-left: 0;
    margin-top: 0;
    font-size: 30px;
    text-transform: none;
    line-height: normal;
}
.grund-1 p {
    color: var(--font-color);
}
.grund-1 .zahl {
    position: absolute;
    top: 0;
    left: -10px;
    z-index: 0;
    width: 100%;
    max-width: 80%;
}
.grund-1 .zahl .svg {
    width: 100%;
    height: 100%;
}
.grund-1 .inhalt {
    margin-left: 10%;
    margin-top: 100px;
    position: relative;
    z-index: 10;
}
.grund-1 .text {
    padding-bottom: 100px;
    font-weight: 600;
    line-height: 1.4;
}
.grund-1 .gridlinks {
    display: grid;
    grid-gap: 40px;
    margin-top: 50px;
    padding-right: 40px;
}
.grund-1 .gridlinks p {
    padding-right: 40px;
}
.grund-1 .linktext button,
.grund-1 .footerbuttons button {
    background-color: var(--font-color);
    padding: 8px 12px;
    color: var(--number-color);
    margin-top: 20px;
    transition: all 300ms ease;
}
.grund-1 .linktext button:hover,
.grund-1 .footerbuttons button:hover {
    background-color: var(--number-color);
    color: var(--font-color);
}
.grund-1 .linkimg {
    box-shadow: 6px 6px 0 var(--font-color);
    background-color: rgb(232, 2, 5);
    width: 100%;
}

.grund-1 .footerbuttons {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 12;
    padding-bottom: 40px;
}
.grund-1 .footerbuttons .next {
    margin-right: 10%;
}

.grund-1 .footerbuttons .prev {
    margin-left: 10%;
}


.calltoaction {
    margin-bottom: 80px;
}
.calltoaction p {
    padding-right: 40px;
}


@media (min-width: 768px) {
    .grund-1 .inhalt {
        margin-left: 40%;
        margin-top: 100px;
        position: relative;
        z-index: 10;
    }
}
@media (min-width: 1024px){
    .grund-1 .gridlinks {
        display: grid;
        grid-template-columns: 200px auto;
        grid-gap: 40px;
        margin-top: 50px;
    }
    .grund-1 .zahl {
        position: absolute;
        top: 0;
        left: -10px;
        z-index: 0;
        height: 100%;
        width: auto;
        max-width: 80%;
    }
}