@charset "utf-8";

#guide {}


#guide .title_box {
    background-color:#EDF6FB;
    border-radius:30px;
    padding:50px;
    position: relative;
}
#guide .title_box::after {
    content:'';
    width:520px;
    height:348px;
    background-image:url(./img/title_bg.png);
    background-repeat:no-repeat;
    position:absolute;
    right:-30px;
    top:-45px;
}
#guide .title_box p {
    font-size:1.55rem;
    font-weight:500;
    letter-spacing:0.5px;
    line-height:150%;
    font-family: "Gmarket Sans";
    color:#192D60;
}



#guide .info_wrap {
    display:flex;
    flex-wrap:wrap;
    align-items:stretch;
    gap:20px;
    padding:0 10px;
}
#guide .info_wrap .info_box {
    width:calc(50% - 10px);
    border:1px solid #E0E0E0;
    border-radius:15px;
    padding:10px 20px;
    display:flex;
    align-items:flex-start;
    gap:10px;
}
#guide .info_wrap .info_box .info_ti {
    display:flex;
    align-items:center;
    gap:10px;
    font-size:1.11rem;
    font-weight:700;
    line-height:140%;
}
#guide .info_wrap .info_box .info_co {
    flex:1;
    font-size:1.11rem;
    font-weight:400;
    line-height:140%;
    letter-spacing:-0.6px;
}

#guide .scroll_wrapper {
    margin-top:40px;
}
#guide .step_wrap {
    display:flex;
    align-items:flex-start;
    gap:30px;
    padding:0 10px;
}
#guide .step_wrap .step_box {
    flex:1;
    max-width:180px;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
}
#guide .step_wrap .step_box .step_icon {
    width:120px;
    height:120px;
    border-radius:30px;
    border:2px solid #E0E0E0;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto;
}
#guide .step_wrap .step_box .step_text {
    display: flex;
    flex-direction:column;
    text-align:center;
    gap:5px;
}
#guide .step_wrap .step_box .step_text .step_num {
    font-size:0.88rem;
    font-weight:600;
    line-height:150%;
    color:#173C7B;
}
#guide .step_wrap .step_box .step_text .step_ti {
    font-size:1rem;
    font-weight:600;
    line-height:155%;
}
#guide .step_wrap span {
    margin-top:50px;
}


#guide .call_wrap {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background-color:#F8F9FA;
    padding:10px 20px;
    border-radius:30px;
}
#guide .call_wrap .call_title {
    display:flex;
    align-items:center;
    gap:10px;
}
#guide .call_wrap .call_title .call_ti {
    font-size:1.11rem;
    font-weight:700;
    line-height:140%;
}
#guide .call_wrap .call_co {
    font-size:1.11rem;
    font-weight:400;
    letter-spacing:-0.6px;
    line-height:140%;
}


/****************************************/
/* 반응형 미디어 쿼리 css                 */
/***************************************/
@media (max-width:1440px) {
    #guide .title_box::after {
        top: 0;
        background-size: auto 60%;
        background-position: right top;
    }

    #guide .step_wrap {
        gap:20px;
        padding:0;
    }
    #guide .step_wrap .step_box .step_icon {
        width:90px;
        height:90px;
        border-radius:20px;
    }
    #guide .step_wrap .step_box .step_icon img {
        width:45px;
    }
    #guide .step_wrap span {
        margin-top:30px;
    }

}
@media (max-width:1200px) {
    #guide .title_box::after {
        display:none;
    }
    #guide .title_box p {
        text-align:center;
    }
    #guide .title_box p br {
        display:none;
    }
}
@media (max-width:1024px) {}
@media (max-width:991px) {
    #guide .title_box {
        padding:30px;
    }
    #guide .title_box p {
        font-size:1.22rem;
    }
}
@media (max-width:768px) {
    #guide .info_wrap {
        flex-direction:column;
        gap:10px;
        padding:0;
    }
    #guide .info_wrap .info_box {
        width:100%;
    }


    #guide .step_wrap {
        gap:10px;
    }
    #guide .step_wrap span {
        margin-top: 35px;
    }
    #guide .step_wrap span img {
        width:20px;
    }

    #guide .call_wrap {
        flex-direction:column;
    }
}
@media (max-width:640px) {
    #guide .info_wrap .info_box {
        flex-direction:column;
    }
}
@media(max-width:480px) {
    #guide .call_wrap {
        border-radius: 20px;
    }
}