.buehne {

    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-color: #EFF1F5;
    min-height: 600px;

    margin-top: 0 !important;
    margin-bottom: 0;
    padding-bottom: 0 !important;
    padding-top: 0 !important;

    @media (max-width: 1199.98px) {
        margin-bottom: 30px;
    }

    .buehne-innersection {
        position: relative;


        .item {
            overflow: hidden;
            display: flex;
            align-items: end;
            min-height: 600px;

            .gray-overlay {
                position: absolute;
                background: linear-gradient(180deg, rgba(0, 164, 183, 0) -45.85%, rgba(18, 124, 150, 0) 1.55%, #1B6786 85.91%, #245375 100%);

                width: 100%;
                height: 100%;
                z-index: 1;
            }

            .overlay-image {
                display: block;
                object-fit: cover;
                object-position: center;
                position: absolute;
                border-radius: var(--bs-border-radius);
                overflow: hidden;
                left: 0;
                top: 0;
                width: 100%;
                min-height: 600px;
                opacity: 1;
                mix-blend-mode: multiply;

            }

            .video-overlay {
                position: absolute;
                border-radius: var(--bs-border-radius);
                overflow: hidden;
                lefT: 0;
                top: 0;
                width: 100%;
                height: auto;
                z-index: -1;

                video {
                    object-fit: cover;
                    object-position: center;
                }

            }
        }

        .content-overlay {
            border-radius: 0;
            /*background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);*/
            width: 100%;
            height: 80%;
            display: flex;
            justify-content: start;
            align-items: center;
            background-size: auto 116%;
            background-position: 75% center;
            background-repeat: no-repeat;
            z-index: 2;
            color: var(--bs-white);


            h1, h2, h3, h4, h5, h6 {
                text-transform: none;
            }

            .headline {
                font-size: 6rem;
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: 0;
                text-align: center;

                @media screen and (max-width: 768px) {
                    font-size: 4rem;
                }
            }
            .subheadline {
                font-size: 2rem;
                font-weight: 400;
                line-height: 1.2;
                margin-bottom: 30px;
                text-align: center;
            }
            p {
                line-height: 1.5;
                font-family: termina, sans-serif;
            }

            .btn {
                @media (max-width: 575.98px) {
                    display: block;
                }
            }
        }
    }
}

