@charset "utf-8";


#voc {}
#voc .cont {}
#voc .cont + .cont {
    margin-top:50px;
}
#voc .grey_box {
    border-radius:30px;
}
#voc .grey_box p + p {
    margin-top:10px;
}
#voc .grey_box p span {
    font-weight:600;
    color:#004F90;
}
#voc .openlink_btn {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    max-width:300px;
    height:70px;
    margin:0 auto;
    padding:0 20px;
    background-color:#004F90;
    border-radius:30px 0 30px 30px;
    color:#fff;
    font-size:1.22em;
    font-weight:600;
    font-family: 'S-CoreDream';
}



/* 스텝부분 사업이랑 동일 */
.business .step_cont {
    display:flex;
    align-items: flex-start;
    gap:30px;
    justify-content:center;
}
.business .step_cont .step_box {
    flex:1;
    max-width:200px;
    min-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;
}

.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;
}


/* 반응형 미디어쿼리 css */
@media (max-width:1600px) {}
@media (max-width:1440px) {}
@media (max-width:1200px) {
    .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) {}
@media (max-width:991px) {}
@media (max-width:768px) {}
@media (max-width:640px) {

    #voc .openlink_btn {
        font-size: 1em;
        height: 50px
    }


    .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) {}