.leistungen-point {
    display: flex;
    flex-direction: row;
}

.leistungen-point > div {
    width: 50%;
}

.leistungen-point-text {
    box-sizing: border-box;
    padding-top: 40px;
    padding-bottom: 40px;
}

.leistungen-point:nth-child(2n) .leistungen-point-text {
    padding-right: 12.5%;
    padding-left: 30px;
}

.leistungen-point:nth-child(2n + 1) .leistungen-point-text {
    padding-left: 12.5%;
    padding-right: 30px;
    background: rgb(33, 37, 43);
    background: var(--background-color);
}

.leistungen-point-text p:last-child {
    margin-bottom: 0;
}

.leistungen-point:nth-child(2n + 1) h2 {
    color: #ddd;
}

.leistungen-point:nth-child(2n + 1) p {
    color: #aaa;
}

.leistungen-point-image-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#fach .leistungen-point-image-container {
    background-image: url("../static/images/fachuebersetzung.jpg");
    background-position: top;
}

@media (max-width: 1600px) {

    #fach .leistungen-point-image-container {
        background-position: 70% 50%;
    }
}

#begl .leistungen-point-image-container {
    background-image: url("../static/images/bebglaubigung.jpg");
}

#lekt .leistungen-point-image-container {
    background-image: url("../static/images/lektorat.jpg");
}

@media (max-width: 1100px) {

    .leistungen-point:nth-child(n) .leistungen-point-text {
        padding-right: 3%;
        padding-left: 3%;
    }
}

@media (max-width: 850px) {

    .leistungen-point {
        flex-direction: column;
    }

    .leistungen-point > div {
        width: 100%;
    }

    .leistungen-point-text {
        padding-top: 30px;
        padding-bottom: 40px;
        order: 2;
    }

    .leistungen-point-image-container {
        height: 300px;
        order: 1;
    }

    #begl .leistungen-point-image-container {
        background-position: bottom;
    }

    .leistungen-point:nth-child(2n) .leistungen-point-text {
        background: white;
    }

}