.page_banner-pv{
    display: flex;
    justify-content: center;
    align-items: center;    
    padding-top: 50px;
    width:100vh;
    height: 100vh;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    flex-direction: column;
}

.video_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

#background_video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.video_overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.5);
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;

    z-index: 2;
    overflow: hidden;
}

.page_banner-pv .PV_banner_card{
    display: flex;
    z-index: 10;
    width: 100%;
    height: 70%;

    justify-content: center;
    align-items: center;
    position: relative;
}

.page_banner-pv .PV_banner_card::after{
    content:"";
    position: absolute;

    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;

    background: linear-gradient(
        to right, 
        transparent 0%, 
        rgba(122, 132, 141, 0.8) 10%, 
        rgba(122, 132, 141, 0.8) 90%, 
        transparent 100%
    );
}


.page_banner-pv .PV_banner_card_left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-color: #7A848D;

    width: 30%;
    height: 100%;
    letter-spacing: 5px;
}

.page_banner-pv .PV_banner_card_left iframe{
    width: 80%;
    height: 50%;
}

.page_banner-pv .PV_banner_card_right {
    align-items: center;
    width: 50%;
}

.page_banner-pv .PV_banner_card_right p{
    text-align: end;
    justify-content: right;

    font-weight: bolder;
    color: #FFF;
    font-size: min(8vw, 30px);
    letter-spacing: clamp(5px, 1.5vw, 15px);
}

.page_banner-pv .next_page{
    display: flex;
    width: 80%;
    color: #FFF;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 3px;
    z-index: 10;

    margin-left: 5%;
}

.line {
    position: absolute;
    left: 10%;
    top: 0;
    width: 1.5px;
    height: 100%;

    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(122, 132, 141, 0.8) 20%,
        rgba(122, 132, 141, 0.8) 80%,
        transparent 100%
    );

    z-index: 5;
    pointer-events: none; 
}
