.video_section_component {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000007;
    margin-top: 70px;

    @media(max-width: 744px) {
        margin-top: 70px;
    }
}

.video_section_contents {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;

    overflow: hidden;
}

.video_section_videoView {
    position: relative;
    width: 1680px;
    height: 700px;

    .video_section_mask1 {
        position: absolute;
        top: 0;
        left: 0;
        width: 200px;
        height: 100%;
        background: linear-gradient(90deg, #000007 0%, transparent 100%);

        @media(max-width: 984px) {
            width: 100px;
        }

        @media(max-width: 744px) {
            display: none;
        }
    }

    .video_section_mask2 {
        position: absolute;
        top: 0;
        right: 0;
        width: 200px;
        height: 100%;
        background: linear-gradient(90deg, transparent 0%, #000007 100%);

        @media(max-width: 984px) {
            width: 100px;
        }

        @media(max-width: 744px) {
            display: none;
        }
    }

    @media(max-width: 984px) {
        width: 1272px;
        height: 530px;
    }

    @media(max-width: 744px) {
        display: none;
        /*width: 500px;
        height: 500px;*/
    }
}


.video_section_video {
    width: 100%;
    height: 100%;

    @media(max-width: 744px) {
        display: none;
    }
}


.video_section_videoView_mobile {
    position: relative;
    width: 500px;
    height: 500px;
    display: none;

    .video_section_video_mobile {
        display: none;

        @media(max-width: 744px) {
            display: block;
            width: 100%;
            height: 100%;
        }
    }

    @media(max-width: 744px) {
        display: block;
    }
}

.video_section_info {
    position: absolute;
    width: 984px;
    top: 146px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    flex-direction: column;

    @media(max-width: 984px) {
        top: 83px;
        width: 744px;
    }

    @media(max-width: 744px) {
        width: calc(100% - 48px);
        padding: 0 24px;
        top: 42px;
    }
}

.video_section_text1 {
    margin-bottom: 16px;
    color: #FFF;

    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 56px */

    > b {
        color: #FF7300;
        font-weight: 600;
        &:nth-child(2) {
            color: #FF3C00;
        }
    }

    @media(max-width: 984px) {
        font-size: 42px;
    }

    @media(max-width: 744px) {
        font-size: 28px;
        line-height: 100%;
    }
}

.video_section_text2 {
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;

    > p {
        color: #FFF;
        font-size: 16px;
        font-weight: 400;
        line-height: 100%; /* 20px */
    }

    > img {
        width: 122px;
        height: 26px;
    }

    @media(max-width: 984px) {
        margin-bottom: 33px;
    }

    @media(max-width: 744px) {
        margin-bottom: 67px;

        > p {
            font-size: 14px;
        }

        > img {
            width: 113px;
            height: 24px;
        }
    }
}


.video_section_button {
    width: 168px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFF;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;

    &:hover {
        background: #FF4E00;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(2.5px);
        -webkit-backdrop-filter: blur(2.5px);
    }

    @media(max-width: 744px) {
        width: 104px;
        height: 36px;
        margin-bottom: 16px;
        font-size: 12px;
    }
}
