.banner {
    position: relative;
}

.banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.video_box {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video_box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_pa {
    position: absolute;
    left: 0;
    top: 1rem;
    width: 100%;
    height: calc(100% - 1rem);
}

.banner_h1 {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font56);
    font-weight: 700;
    text-align: center;
}

.banner_h3 {
    color: rgba(255, 255, 255, 1);
    font-size: var(--font28);
    font-weight: 300;
    text-align: center;
    letter-spacing: .06rem;
    margin: .2rem 0 .6rem;
}

.banner_list {
    gap: .3rem .46rem;
    justify-content: center;
}

.banner_link {
    padding: .08rem .35rem;
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 0.75);
    color: rgba(255, 255, 255, 1);
    font-size: var(--font18);
    font-weight: 400;
    transition: all .35s;
}

.banner_link .lb-solid {
    margin-right: .1rem;
}

.banner_link:hover {
    background: var(--primary);
    transform: translateY(-0.05rem);
}

@media only screen and (max-width: 920px) {
    .video_box {
        height: calc(100vh - 48px);
    }

    .banner_pa {
        top: 0;
        width: 100%;
        height: 100%;
    }
}