/*
(주)파이브센스_FIVESENSES.Corp.
파이브프로_FIVEPro_웹솔루션.
본 라이브러리(소스코드 및 디자인 포함)는 (주)파이브센스의 자산이며, 저작권법 및 부정경쟁방지법에 의해 보호됩니다.
무단 사용, 외부 유출, 복제, 배포, 변형을 금지합니다.
위반 시 민·형사상 법적 책임 및 손해배상 청구 대상이 됩니다.
작성일: 2025-03-18 | 저작권자: (주)파이브센스(520-86-01244) | All Rights Reserved.
*/
.main_v_1 .main_v_1_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 9.7%;
}
.main_v_1 .main_v_1_container .video-box {
    position: relative;
    width: 54%;
    overflow: hidden;
    border-radius: 10px;
}
.main_v_1 .main_v_1_container .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 92px;
    height: 92px;
    cursor: pointer;
}
.main_v_1 .main_v_1_container .thumb-img {
    width: 100%;
    height: 100%;
}
.main_v_1 .main_v_1_container .text-box {
    display: inline-flex;
    align-items: self-start;
    flex-direction: column;
    flex: 1;
}
.main_v_1 .main_v_1_container .text-box h3.widget_froala {
    display: inline-block;
    width: auto;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin-bottom: 30px;
    margin-top: 5px;
    letter-spacing:3px;
    line-height: 1;
}
.main_v_1 .main_v_1_container .text-box h2.widget_froala {
    display: inline-block;
    width: auto;
    font-size: 64px;
    font-weight: 700;
    color: #0c0c0c;
    margin-bottom: 37px;
    line-height: 1;
}
.main_v_1 .main_v_1_container .text-box div.widget_froala {
    display: inline-block;
    width: auto;
    font-size: 20px;
    font-weight: 500;
    color: #666;
    word-break: keep-all;
    line-height: 30px;
}


/* 동영상 팝업 */
.main_v_1_video.video_pop {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 1001;
}
.main_v_1_video .video_pop_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1080px;
    width: 100%;
}
.main_v_1_video.video_pop .video_pop_close {
    position: absolute;
    right: 15px;
    top: -40px;
    width: 20px;
    height: 20px;
    display: block;
}
.main_v_1_video.video_pop .video_pop_close::before {
    content: "";
    display: block;
    width: 1px;
    height: 29px;
    background: #fff;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.main_v_1_video.video_pop .video_pop_close::after {
    content: "";
    display: block;
    width: 1px;
    height: 29px;
    background: #fff;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%) rotate(45deg);
}
.main_v_1_video .video_wrap {
    position: relative;
    padding-top: 50%;
    height: 0;
}
.main_v_1_video .video_wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 15px;
}

@media (max-width: 991px) {
    .main_v_1 .main_v_1_container {
        flex-direction: column;
        row-gap: 50px;
    }
    .main_v_1 .main_v_1_container .video-box {
        width: 100%;
        order: 2;
    }
    .main_v_1 .main_v_1_container .video-box img {
        margin: 0 auto;
    }
    .main_v_1 .main_v_1_container .text-box {
        width: 100%;
        order: 1;
        text-align: center;
        align-items: center;
    }
    .main_v_1 .main_v_1_container .text-box h3.widget_froala {
        font-size: 14px;
        margin-bottom: 22px;
		font-weight:400;
		letter-spacing:3px;
    }
    .main_v_1 .main_v_1_container .text-box h2.widget_froala {
        font-size: 31.5px;
        margin-bottom: 33px;
    }
    .main_v_1 .main_v_1_container .text-box div.widget_froala {
        font-size: 16px;
		line-height:24.5px;
    }

    .main_v_1_video.video_pop .video_pop_close {
        top: -34px;
    }
    .main_v_1_video.video_pop .video_pop_close::before {
        height: 20px;
    }
    .main_v_1_video.video_pop .video_pop_close::after {
        height: 20px;
    }

    .main_v_1 .main_v_1_container .play-btn {
        width: 71px;
        height: 71px;
    }
}