.startTop {
    height: auto;
    background: var(--colorLight);
}

.grosserText {
    width: 100%;
    padding: var(--padding);
    box-sizing: border-box;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}
.txtTitle {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    gap: var(--gap);
    text-wrap: nowrap;
}
.titleLine {
    height: 2px;
    width: 50%;
    background: var(--color);
}

.txtFeld01 {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: var(--gap);
}
.txtFeldTxt {
    width: 50%;
    text-align: justify;
}
.txtFeldTitle {
    margin: 1rem 0;
}
.txtFeldImg {
    width: 50%;
    position: relative;
}
.txtFeldImg img {
    max-height: 60%;
    width: auto;
    max-width: 30vw;
    position: absolute;
    right: 0;
    top: 20%;
}

.vitaFeld {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: var(--gap);
}
.vitaZeit {
    width: 30%;
    border-right: 2px solid var(--color);
    padding: var(--gap) 0;
}
.vitaTxt{
    width: 70%;
    padding: var(--gap) 0;
}


@media screen and (max-width: 1300px) {
    .txtFeld01 {
        flex-direction: column;
    }
    .txtFeldTxt {
        width: 100%;
    }
    .txtFeldImg {
        width: 100%;
        display: flex;
    }
    .txtFeldImg img {
        position: static;
        max-height: 200px;
    }
}
@media screen and (max-width: 1052px) {
    .startTop {
        padding-top: 160px;
    }
}
@media screen and (max-width: 552px) {
    .txtFeldImg {
        justify-content: center;
    }
}