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

.QU3 .background_box {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 텍스트 */
.QU3 .background_box .text_box {
    width: 450px;
    display: flex;
    gap: 30px;
    flex-direction: column;
}
.QU3 .background_box h2.title {
    font-family: "Poppins", sans-serif;
    font-size: 80px;
    font-weight: 600;
    color: #0c0c0c;
}
.QU3 .background_box h3.subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #5d5d5d;
    line-height: 1.5;
}

/* 링크 */
.QU3 .background_box .link_box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.QU3 .background_box a {
    width: 240px;
    height: 80px;
    background-color: #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 110px;
}
.QU3 .background_box a:hover {
    color: #fff;
    background-color: var(--main-point-bg-color-hover);
}
.QU3 .background_box .link {
    width: auto;
    font-size: 20px;
    color: #5d5d5d;
}

.QU3 .background_box a span {
    font-size: 20px;
    color: #5d5d5d;
    font-family: "SUIT", sans-serif;
}

.QU3 .background_box a:hover span {
    color: #fff;
}

.QU3 .background_box a:hover .link {
    color: #fff;
}


@media (max-width:991px) {
    .QU3 .background_box {
        width: auto;
        flex-direction: column;
    }

    /* 텍스트 */
    .QU3 .background_box .text_box {
        width: 100%;
        gap: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 22px;
    }
    .QU3 .background_box h2.title {
        font-size: 32px;
        font-weight: bold;
    }
    .QU3 .background_box h3.subtitle {
        font-size: 15px;
        color: #5d5d5d;
        line-height: 1.5;
    }

    /* 링크 */
    .QU3 .background_box .link_box {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .QU3 .background_box a {
        gap: 10px;
        width: 114px;
        height: 45px;
        margin-top: 0;
    }
    .QU3 .background_box .link {
        font-size: 15px;
    }
}