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

/* 타이틀 */
.icon5 .main_cont_title {
    margin-bottom: 100px;
}
.icon5 .main_cont_title h2 {
    display: inline-block;
    width: auto;
    font-size: 72px;
    font-weight: bold;
    color: #fff;
    line-height: 90px;
}

/* 카드 */
.icon5 .main_cont_card {
    display: flex;
    justify-content: flex-start;
    gap: 70px;
}
.icon5 .main_cont_card .card {
    position: relative;
    width: calc((100% - 140px - 40px) / 3);
}
.icon5 .main_cont_card .card:first-child {
    margin-left: 40px;
}
.icon5 .main_cont_card .card .icon_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    background-color: #143e82;
    border-radius: 20px;
    overflow: hidden;
}
.icon5 .main_cont_card .card .icon_box img {
    display: block;
    object-fit: contain;
}

.icon5 .main_cont_card .card .text_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 45px;
}
.icon5 .main_cont_card .card .text_box .title {
    width: 100%;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(56, 68, 87, 0.7);
}
.icon5 .main_cont_card .card .text_box .desc {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #fff;
}
.icon5 .main_cont_card .card .icon_box img {
    transition: all 400ms;
}

/* HOVER */
.icon5 .main_cont_card .card:hover .icon_box img {
    transform: scale(1.1);
}

/* 반응형 */
@media (max-width: 991px) {
    .icon5 .main_cont_title {
        margin-bottom: 60px;
        text-align: center;
    }

    .icon5 .main_cont_title h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .icon5 .main_cont_card {
        flex-direction: column;
        gap: 45px;
        padding: 0 10px;
    }

    .icon5 .main_cont_card .card {
        width: 100%;
        display: flex;
        gap: 23px;
    }

    .icon5 .main_cont_card .card:first-child {
        margin-left: 0;
    }

    .icon5 .main_cont_card .card .icon_box {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
    }

    .icon5 .main_cont_card .card .icon_box img {
        width: 50%;
    }

    .icon5 .main_cont_card .card .text_box {
        width: 100%;
        margin-top: 0;
    }

    .icon5 .main_cont_card .card .text_box .title {
        width: 100%;
        margin-bottom: 15px;   
        padding-bottom: 15px;
        font-size: 16px;
        line-height: 21px;
    }

    .icon5 .main_cont_card .card .text_box .desc {
        font-size: 12px;
        line-height: 18px;
    }
}