.page-visual-bg {
    height: calc(100vh - var(--navbar-height));
    height: calc(100dvh - var(--navbar-height));
    overflow: hidden;
}

.page-visual-bg:before {
    content: '';
    height: 400px;
    width: 100%;
    background: url('../images/overlap-pattern.svg');
    background-position: bottom;
    background-size: 80%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.2;
}

.page-visual-bg:after {
    content: '';
    height: 100%;
    width: 100%;
    background-color: #00000050;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.page-visual-bg video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
}

.landing-content-container {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 500px;
}

.landing-content {
    max-width: 500px;
}

.landing-content-heading {
    font-size: 4rem;
    line-height: 4rem;
}

@media screen and (max-width: 1199px) {
    .page-visual-bg:before {
        background-size: 200%;
    }

    .landing-button-container a{
        width: 100%;
    }
}