.parallax-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    z-index: 10;
    /*background-image: url('../assets/images/gemischt_007_1920.jpg');*/
}

.parallax {
    position: absolute;
    height: inherit;
    min-height: inherit;
    width: 100%;
    clip-path: inset(0 0 0 0);
    top: 0;
    z-index: -1;
    color: white;
    background: inherit;
}

.parallax::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: inherit;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}