/* Video Background Styles */
#video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    mix-blend-mode: multiply;
    @media (max-width: 767px) {
        height: 45%;
    }
    video {
        width: 100%;
        @media (max-width: 767px) {
            width: 190%;
        }
    }
}

#video-background-container::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 250px;
    background: url("/wp-content/themes/couxu/assets/images/common/bg-top_blur.png") repeat-x center center;
    mix-blend-mode: color-dodge;
    @media (max-width: 767px) {
        height: 250px;
    }
}
