/*
(주)파이브센스_FIVESENSES.Corp.
파이브프로_FIVEPro_웹솔루션.
본 라이브러리(소스코드 및 디자인 포함)는 (주)파이브센스의 자산이며, 저작권법 및 부정경쟁방지법에 의해 보호됩니다.
무단 사용, 외부 유출, 복제, 배포, 변형을 금지합니다.
위반 시 민·형사상 법적 책임 및 손해배상 청구 대상이 됩니다.
작성일: 2025-03-18 | 저작권자: (주)파이브센스(520-86-01244) | All Rights Reserved.
*/

.TXT8 .main_box {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.TXT8 .main_box .logo {
    transition: all 0.6s ease-in-out;
    width: 400px;
    position: absolute;
    top: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.TXT8 .main_box .logo img {
    display: block;
    width: 100%;
}

.TXT8 .main_box .logo.aniStart {
    width: 201px;
    top: 0;
}

.TXT8 .main_box .text_span {
    display: block;
    transition: all 0.6s ease-in-out;
    opacity: 0;
    transform: translateY(60px);
    transition-delay: 0.2s;
}

.TXT8 .main_box .text_span.aniStart {
    opacity: 1;
    transform: translateY(0);
}

.TXT8 .main_box .title_box {
    display: flex;
    flex-direction: column;
    margin: 105px 0 55px;
}

.TXT8 .main_box .title_box .title {
    font-size: 72px;
    color: #3a3637;
    font-weight: bold;
    line-height: 1.25;
    overflow: hidden;
    word-break: keep-all;
}

.TXT8 .main_box .subtitle {
    display: inline-block;
    width: auto;
    word-break: keep-all;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.6s ease-in-out;
    font-size: 20px;
    color: #6b6566;
    font-weight: 400;
    line-height: 1.4;
    transition-delay: 0.2s;
}

.TXT8 .main_box .subtitle.aniStart {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width:991px) {
    .TXT8 .main_box .logo.aniStart {
        width: 150px;
    }

    .TXT8 .main_box .title_box {
        margin: 70px 0 0;
    }
    .TXT8 .main_box .title_box .title {
        font-size: 31.5px;
		line-height:40px;
    }

    .TXT8 .main_box .subtitle {
        margin-top: 23px;
        font-size: 15px;
		line-height:23px;
    }
}