:root {

}

.frame-type-freyhauer_page_header {
    .pageheader-banner {
        display: flex;
        button {
            transition: all .5s;
            opacity: 1;
            pointer-events: auto;
        }
        &.active {
            button {
                opacity: 0;
                pointer-events: none;
            }
            a {
                pointer-events: auto;
            }
        }
    }

    .page-header {
        height: 100vh;
        max-height: 100vh;
        width: 100vw;
        overflow: hidden;
        display: flex;
        margin: auto;
        will-change: transform, width, height;
        min-height: 500px;
        text-align: center;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-direction: column;
        color: var(--bs-white);
    }

    .page-header__content {
        position: absolute;
        bottom: 0;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1;
        button, a {
            position: absolute;
        }
        button {
            left: 40px;
            bottom: 40px;
        }
        a {
            position: relative;
            opacity: 0;
            background: transparent;
            color: #fff !important;
            padding: 2.5rem;
            border: 2px solid var(--bs-primary);
            font-size: 0;
            top: 0;
            border-radius: 25px;
            height: 100%;
            pointer-events: none;
            transition: all .5s;
            display: flex;
            justify-content: center;
            align-items: center;
            @media (min-width: 998px) {
                top: inherit;
                border-radius: 25px;
                width: 100%;
                height: 100%;
            }
            &:hover{
                color: var(--bs-white);
                background: var(--bs-primary);
                svg {
                    transform: translateX(15px);
                }
            }
            svg {
                width: 24px;
                height: 24px;
                transition: all .5s;
                @media (min-width: 998px) {
                    width: 36px;
                    height: 36px;
                }
                @media (min-width: 2400px) {
                    width: 72px;
                    height: 72px;
                }
            }
        }
    }

    video.header-video {
        height: 100%;
        object-fit: cover;
    }

    .soundButton {
        border: 0;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(129, 128, 128, .418);
    }
    .videoplay-header { will-change: transform, border-radius; }
    .videoheader-plyr { width: 100vw; height: 100vh; background: red; }
}
