.homeStartCont {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: var(--padding);
    box-sizing: border-box;
    z-index: 4;
}
.homeSlogan {
    width: 1000px;
    max-width: 100%;
    margin: 0;
}
.homeText {
    width: 1000px;
    max-width: 100%;
}

.homeStartTop {
    position: relative;
}
.homeStartImg {
    position: absolute;
    right: 0;
    bottom: -4px;
    z-index: 3;
    width: 100%;
    height: 120px;
    pointer-events: none;
}


.homeLeistungen {
    width: 100%;
    padding: var(--gap) var(--padding);
    gap: var(--gap);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background: var(--accent);
    color: var(--bg);
    box-shadow: 8px 8px 0 var(--color);
}
.leistungenTitle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.leistungenShow {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--gap);
}
.leistungenContent {
    width: 300px;
    background: var(--bg);
    border-radius: 20px;
    color: var(--color);
    display: flex;
    align-items: center;
    padding: var(--gap);
    box-sizing: border-box;
    flex-direction: column;
    gap: var(--gap);
    line-height: 0;
    text-decoration: none;
    box-shadow: 0 4px 8px var(--color);
    transition: .2s;
}
.leistungenContent p {
    margin: 0;
}
.leistungenContent:hover {
    text-decoration: underline;
    scale: 1.05;
    transition: .2s;
}
.leistungenContent img {
    width: 50%;
}

.homeSecText {
    display: flex;
    width: 100%;
    top: 0;
    padding: var(--padding);
    box-sizing: border-box;
    text-align: start;
    justify-content: center;
}
.homeSecText p {
    max-width: 100%;
    width: 1000px;
}


@media screen and (max-width: 700px) {
    .homeStartCont {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}