@charset "utf-8";


#feedback .feedback_wrapper {
    display:flex;
    align-items:stretch;
    gap:30px;
}
#feedback .feedback_wrapper .feedback_box {
    border:1px solid #ddd;
    border-radius:30px;
    padding: 20px 30px;
    flex:1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#feedback .feedback_wrapper .feedback_box p {
    font-size:1.11rem;
    font-weight:500;
    text-align:center;
    font-family:'Paperlogy';
    text-align:center;
}

#feedback .business_step {
    display:flex;
    align-items:flex-start;
    justify-content:center;
    gap:80px;
}
#feedback .business_step_img img {
    width:100%;
}
#feedback .business_step .step_box {
    flex:1;
    max-width:140px;
    display:flex;
    flex-direction:column;
    gap:10px;
}
#feedback .business_step .step_box .step_round {
    width:140px;
    height:140px;
    border-radius:999px;
    border:3px solid #FFE7E2;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color:#FFE7E2;
    position: relative;
}
#feedback .business_step .step_box:first-child .step_round,
#feedback .business_step .step_box:last-child .step_round {
    border-color:#FF9983;
    background-color:#FFBDAF;
}
#feedback .business_step .step_box .step_round::before {
    content:'';
    width:80px;
    height:1px;
    background-color:#ddd;
    position:absolute;
    left:-83px;
    top:50%;
    transform:translateY(-50%);
}
#feedback .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%); 
}
#feedback .business_step .step_box:first-child .step_round::before,
#feedback .business_step .step_box:first-child .step_round::after {
    display:none;
}
#feedback .business_step .step_box:nth-child(2) .step_round::before,
#feedback .business_step .step_box:nth-child(2) .step_round::after,
#feedback .business_step .step_box:last-child .step_round::before,
#feedback .business_step .step_box:last-child .step_round::after {
    background-color:#FF6568;
}
#feedback .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;
}


/* ********** 반응형 미디어 쿼리 css ********** */
@media(max-width:1440px) {}
@media(max-width:1200px) {
    #feedback .feedback_wrapper {
        gap:20px;
    }
    #feedback .feedback_wrapper .feedback_box {
        padding:20px;
    }
}
@media(max-width:1024px) {}
@media(max-width:991px) {}
@media(max-width:768px) {}
@media(max-width:640px) {
    #feedback .feedback_wrapper {
        flex-direction:column;
    }
}
@media(max-width:480px) {}
@media(max-width:320px) {}