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

/* 타이틀 */
.icon11 .main_title_wrap {
    width: 100%;
    text-align: center;
}
.icon11 .main_cont_title {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 60px;
}
.icon11 .main_cont_title h2 {
    display: inline-block;
    width: auto;
    font-size: 64px;
    font-weight: bold;
    color: #0c0c0c;
    line-height: 1.306;
    text-align: center;
}
.icon11 .main_cont_title .desc {
    display: inline-block;
    width: auto;
    font-size: 24px;
    font-weight: 500;
    color: #666;
    line-height: 1.5;
    margin-top: 14px;
    text-align: center;
}

/* 카드 */
.icon11 .main_cont_card {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.icon11 .main_cont_card .card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 45px;
    width: calc((100% - 30px)/2);
    padding: 60px 0 60px 60px;
    background-color: #faf7f4;
    border-radius: 20px;
    text-align: center;
    transition: all 400ms;
}
.icon11 .main_cont_card .card .icon_box {
    min-width: 100px;
}
.icon11 .main_cont_card .card .icon_box img {
    display: block;
    object-fit: contain;
}
.icon11 .main_cont_card .card .text_box h2 {
    font-size: 34px;
    font-weight: bold;
    line-height: 1.412;
    color: #0c0c0c;
    margin-bottom: 15px;
    text-align: left;
    transition: all 400ms;
}
.icon11 .main_cont_card .card .text_box .desc {
    display: inline-block;
    width: 100%;
    font-size: 27px;
    line-height: 43px;
    font-weight: 400;
    color: #0c0c0c;
    text-align: left;
}
.icon11 .main_cont_card .card .text_box .desc span {
    font-weight: 700;
}
.icon11 .main_cont_card .card .icon_box img {
    transition: all 400ms;
}

/* HOVER */
.icon11 .main_cont_card .card:hover {
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
}
.icon11 .main_cont_card .card:hover .icon_box img {
    transform: scale(1.1);
}

/* 반응형 */
@media (max-width: 991px) {

    /* 타이틀 */
    .icon11 .main_cont_title {
        margin-bottom: 40px;
    }
    .icon11 .main_cont_title h2 {
        font-size: 31.5px;
		line-height:40px;
        text-align: center;
    }
    .icon11 .main_cont_title .desc {
        font-size: 15px;
        margin-top: 19px;
        text-align: center;
        line-height: initial;
		line-height:21px;
    }
    .icon11 .main_cont_title .desc br {
        display: none;
    }

    /* 카드 */
    .icon11 .main_cont_card {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }
    .icon11 .main_cont_card .card {
        width: 100%;
        padding: 35px 30px;
        border-radius: 6px;
        gap: 0;
    }
    .icon11 .main_cont_card .card .icon_box {
        min-width: 90px;
    }
    .icon11 .main_cont_card .card .icon_box img {
        width: 60%;
    }
    .icon11 .main_cont_card .card .text_box h2 {
        font-size: 20px;
        margin-bottom: 14px;
    }
    .icon11 .main_cont_card .card .text_box .desc {
        font-size: 18px;
		line-height:24px;
        word-break: keep-all;
    }
    .icon11 .main_cont_card .card .text_box .desc br {
        display: none;
    }
}