@charset "utf-8";


.business {}

.business .business_greet {
    display:flex;
    align-items:stretch;
    min-height:210px;
    gap:30px;
}
.business .business_greet .greet_img {
    width:320px;
    background-image:url(./img/business_greet.png);
    background-repeat:no-repeat;
    background-position:right bottom;
}
.business .business_greet .greet_img .greet_bg {
    width:300px;
    height:180px;
    border-radius:30px;
    border:1px solid #FFE3B4;
    background-color:#FFF8EC;
    position: relative;
    z-index: -1;
}
.business .business_greet .greet_text {
    flex:1;
    border:1px solid #DDD;
    border-radius:30px;
    background-color:#FBFBFB;
    padding:20px 50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:5px;
}
.business .business_greet .greet_text .greet_ti {
    font-size:1.44rem;
    font-weight:600;
    line-height:146%;
    font-family:'Paperlogy';
}
.business .business_greet .greet_text .greet_ti span {
    color:#5B933A;
}
.business .business_greet .greet_text .greet_co {
    font-size:1.11rem;
    font-weight:400;
    line-height:160%;
    letter-spacing:-0.6px;
}

.business .business_info {
    display:flex;
    align-items:stretch;
    gap:50px;
}
.business .business_info .info_box {
    flex:1;
    border:1px solid #DDD;
    border-radius:30px;
    background-color:#FBFBFB;
    padding:30px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content: flex-start;
}
.business .business_info .info_box .info_icon {
    display:flex;
    flex-direction:column;
    gap:15px;
    padding-bottom:15px;
    margin-bottom:15px;
    border-bottom:2px dashed #ddd;
    width: 100%;
}
.business .business_info .info_box .info_icon svg {
    margin:auto;
}
.business .business_info .info_box .info_icon .info_ti {
    font-size:1.22rem;
    font-weight:500;
    line-height:159%;
    font-family: 'Paperlogy';
    text-align:center;
}
.business .business_info .info_box .info_co {
    font-size:1rem;
    font-weight:400;
    text-align: center;
    line-height:144%;
}
.business .business_info_notice {
    margin-top:50px;
    background-color:#FFF8EC;;
    border-radius:30px;
    text-align:center;
    padding:18px 30px;
}
.business .business_info_notice p {
    font-size:0.88rem;
    font-weight:400;
    letter-spacing:-0.48px;
    font-weight:400;
    line-height:162%;
    text-align:center;
}


.business .business_sub_title {
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:30px;
    margin-top:30px;
}
.business .business_sub_title .business_sub_tit_num {
    width:28px;
    height:28px;
    background-color:#81B863;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.business .business_sub_title .business_sub_tit_num p {
    font-size:0.74rem;
    font-weight:700;
    color:#fff;
    font-family:'Paperlogy';
}
.business .business_sub_title .business_sub_tit_arrow {
    display:flex;
    align-items:center;
    justify-content:center;
}
.business .business_sub_title .business_sub_tit_co p {
    font-size:1.11rem;
    font-weight:500;
    color:#333;
    font-family:'Paperlogy';
}



.business .business_step_wrapper {
    display:flex;
    align-items:center;
    gap:50px;
}
.business .business_step_wrapper .use_way_box {
    border:1px solid #ddd;
    border-radius:30px;
    background-color:#FBFBFB;
    padding:20px 30px;
    display:flex;
    align-items:center;
    gap:30px;
}
.business .business_step_wrapper .use_way_box .use_way_text {
    flex:1;
}
.business .business_step_wrapper .use_way_box .use_way_text .use_way_text_ti {
    font-size:1.22rem;
    font-weight:500;
    line-height:160%;
    font-family:'Pagerlogy';
}
.business .business_step_wrapper .use_way_box .use_way_text .use_way_text_co {
    font-size:1rem;
    font-weight:400;
    line-height:144%;
}


.business .business_step {
    display:flex;
    align-items:flex-start;
    justify-content:center;
    gap:80px;
}
.business .business_step_img img {
    width:100%;
}
.business .business_step .step_box {
    flex:1;
    max-width:140px;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.business .business_step .step_box .step_round {
    width:140px;
    height:140px;
    border-radius:999px;
    border:3px solid #E3F9D7;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color:#E3F9D7;
    position: relative;
}
.business .business_step .step_box:first-child .step_round,
.business .business_step .step_box:last-child .step_round {
    border-color:#81B863;
    background-color:#B2DE9B;
}
.business .business_step .step_box .step_round::before {
    content:'';
    width:80px;
    height:1px;
    background-color:#ddd;
    position:absolute;
    left:-83px;
    top:50%;
    transform:translateY(-50%);
}
.business .business_step .step_box .step_round::after {
    content:'';
    width:10px;
    height:10px;
    background-color:#ddd;
    border-radius:999px;
    position:absolute;
    left:-50px;
    top:50%;
    transform:translateY(-50%); 
}
.business .business_step .step_box:first-child .step_round::before,
.business .business_step .step_box:first-child .step_round::after {
    display:none;
}
.business .business_step .step_box:nth-child(2) .step_round::before,
.business .business_step .step_box:nth-child(2) .step_round::after,
.business .business_step .step_box:last-child .step_round::before,
.business .business_step .step_box:last-child .step_round::after {
    background-color:#81B863;
}
.business .business_step .step_box .step_text .step_ti {
    font-size:1rem;
    font-weight:400;
    line-height:144%;
    letter-spacing:-0.54px;
    font-family:'Paperlogy';
    text-align:center;
}



.business .btns_wrapper {
    display:flex;
    align-items:stretch;
    justify-content:center;
    gap:30px;
    flex-wrap: wrap;
}
.business .down_btn {
    display:block;
    width:fit-content;
    padding:15px 30px;
    background-color:#81B863;
    border:2px solid #81B863;
    border-radius:15px;
    font-size:1rem;
    font-weight:700;
    color:#fff;
}
.business .down_btn:hover {
    background-color:#fff;
    color:#81B863;
    transition:.3s;
}
.business .down_btn02 {
    background-color:#FFA943;
    border-color:#FFA943;
}
.business .down_btn02:hover {
    background-color:#fff;
    color:#FFA943;
}

/* ********** 반응형 미디어 쿼리 css ********** */
@media(max-width:1440px) {
    .business .business_greet .greet_text .greet_co br {
        display:none;
    }


    .business .business_step_wrapper {
        gap:20px;
    }
}
@media(max-width:1200px) {
    .business .business_step_wrapper .use_way_box {
        flex-direction:column;
        text-align:center;
        gap:10px;
    }
}
@media(max-width:1024px) {
    .business .business_info {
        gap:30px;
    }
    .business .business_info .info_box .info_icon svg {
        width:65px;
        height:auto;
    }


}
@media(max-width:991px) {
    .business .business_greet {
        flex-direction:column;
    }
    .business .business_greet .greet_img {
        align-self: center;
    }
}
@media(max-width:768px) {}
@media(max-width:640px) {
    .business .business_info {
        flex-direction:column;
        gap:20px;
    }

}
@media(max-width:480px) {
    .business .business_info .info_box .info_icon svg {
        width:55px;
    }

}
@media(max-width:320px) {}