@charset "utf-8";

.business .cont {
    margin-bottom:50px;
}
.business .cont:last-child {
    margin-bottom:0;
}
.business .grey_box {
    border-radius:0 0 30px 30px;
    padding:0 50px 50px;
    margin-bottom:50px;
}
.business .sub_mini_title {
    font-size:1.33em;
    font-weight:700;
    text-align:center;
    padding:15px;
}


.business .business_title {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:30px;
    border-radius:30px;
    padding:30px;
}
.business .business_title .team_icon {
    width:80px;
    height:80px;
    border-radius:20px;
    background-color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}
.business .business_title .busi_title_txt {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content: center;
    gap:10px;
}
.business .business_title .busi_title_txt .business_team {
    font-size:1.55em;
    font-weight:700;
}
.business .business_title .busi_title_txt .team_co {
    font-size:1.11em;
    font-weight:400;
    text-align:center;
}


.business .contact_box {
    display:flex;
    align-items:center;
    justify-content:flex-end;
    background-color:#D7EDFF;
    border-radius:9999px;
    padding:10px;
    gap:10px;
    width: fit-content;
    margin-left: auto;
}
.business .contact_box span {
    font-size:1em;
    font-weight:500;
    font-family: 'S-CoreDream';
    padding:0 20px;
    display:block;
}
.business .contact_box p {
    border-radius:999px;
    background-color:#fff;
    padding:10px 20px;
}



.business .busi_ti {
    font-size:0.88em;
    font-weight:500;
    letter-spacing:-0.48px;
    margin-bottom:10px;
}

.business .grey_box_title {
    background-color:#fff;
    border-radius:0 0 30px 30px;
}
.business .two_content {
    display:flex;
    align-items:flex-start;
    gap:30px;
}
.business .two_content .two_half {
    flex:1;
}
.business .two_content .two_half .white_box {
    border-radius:30px;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.business .two_content .two_half .white_box p {
    font-size:1em;
    font-weight: 400;
}


.business .step_cont {
    display:flex;
    align-items: flex-start;
    gap:30px;
    justify-content:center;
}
.business .step_cont .step_box {
    flex:1;
    max-width:200px;
    height: 100%;
    min-height:173px;
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:center;
    justify-content: flex-start;
    text-align:center;
    position: relative;
}
.business .step_cont .step_box::after {
    content:'';
    width:30px;
    height:30px;
    background-image:url(../../../img/step_arrow.png);
    background-repeat:no-repeat;
    background-position:center center;
    background-size:100% 100%;
    position:absolute;
    right:-30px;
    top:50%;
    transform:translateY(-50%);
}
.business .step_cont .step_box:last-child::after {
    display:none;
}
.business .step_cont .step_box .step_icon {
    width:120px;
    height:120px;
    margin:0 auto;
    border-radius:30px;
    background-color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}
.business .step_cont .step_box .step_co {
    display:flex;
    flex-direction:column;
    gap:5px;
}
.business .step_cont .step_box .step_co .step_title {
    font-size:0.88em;
    font-weight:600;
}
.business .step_cont .step_box .step_co .step_t {
    font-size:0.88em;
    font-weight:400;
}

/* 반응형 미디어쿼리 css */
@media (max-width:1600px) {}
@media (max-width:1440px) {}
@media (max-width:1200px) {
    .business .grey_box {
        padding:0 30px 30px;
    }
    .business .business_title {
        padding:30px;
    }

   .business .step_cont .step_box {
        max-width:100%;
        flex:1;
   }
    .business .step_cont .step_box .step_icon {
        width:100px;
        height:100px;
        border-radius:20px;
    }
    .business .step_cont .step_box .step_icon img {
        width:55px;
    }
}
@media (max-width:1024px) {
    .business .two_content {
        flex-direction:column;
    }
    .business .two_content .two_half {
        flex:none;
        width:100%;
    }
}
@media (max-width:991px) {
    .business .step_cont .step_box .step_icon {
        width:90px;
        height:90px;
    }
    .business .step_cont .step_box .step_icon img {
        width:50px;
    }
    .business .step_cont .step_box::after {
        width: 20px;
        height: 20px;
        background-size: 100%;
        right: -25px;
    }
}
@media (max-width:768px) {}
@media (max-width:640px) {
    .business .cont {
        margin-bottom:30px;
    }
    .business .grey_box {
        padding:0 20px 20px;
    }
    .business .business_title {
        padding:30px;
    }
    .business .business_title .busi_title_txt .business_team {
        font-size:1.33em;
    }
    .business .business_title .busi_title_txt .team_co {
        font-size:1em;
    }
    .business .contact_box {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        border-radius: 30px;
        text-align: center;
    }
    .business .contact_box p {
        width:100%;
    }
}
@media (max-width:460px) {}