.serviceContainer {
    width: 100%;
    height: fit-content;
    padding: 50px 100px ;

    position: relative;

    display: flex;
    flex-direction: column;
    gap: 100px;
    box-sizing: border-box;
}

    @media (max-width: 750px) {
        .serviceContainer {
            padding: 100px var(--padding);
        }
    }

.serviceContainer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -5px;
    left: 0px;
    background-image: url(../media/Bg/leistungen_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: rotate(180deg);
}

.custom-shape-divider-top-1753210325 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1753210325 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 114px;
}

.custom-shape-divider-top-1753210325 .shape-fill {
    fill: var(--pink_color);
}

.PreislisteContainer {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

    @media (max-width: 1200px) {
        .PreislisteContainer {
            width: 99%;
        }
    }

    @media (max-width: 450px) {
        .PreislisteContainer span:nth-child(2) {
            font-size: 1rem;
        }
    }

.Preisliste_Preis {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    position: relative;
    padding-bottom: 8px;
    gap: 16px;

    span {
        font-size: 1.5rem;
    }
}

.Preisliste_Preis span:first-child {
    flex: 1;
    min-width: 0;
}

.Preisliste_Preis::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background-color: white;
}

.preis {
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.PreviewImageContainer {
    position: absolute;
    right: calc(0px - var(--gap));
    top: 0;
    height: 100%;
    pointer-events: none;
}

#PreviewImage {
    position: absolute;
    aspect-ratio: 16 / 9;
    width: 500px;
    border-radius: 8px;
    object-fit: cover;
    transition: top 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 100;
}

@media (max-width: 900px) {
    .PreviewImageContainer {
        display: none;
    }
}

@media (max-width: 640px) {
    .serviceContainer {
        gap: 50px;
    }

    .Preisliste_Preis span {
        font-size: 1rem;
    }
}
