@charset "utf-8";


#protection .protection_cont {
    background-color:#EDF6FB;
}
#protection .protection_cont .protection_wrap {
    background-color:#fff;
    border-radius:30px;
    padding:50px 80px;
    display:flex;
    flex-direction:column;
    gap:40px;
}


#protection .protection_greeting {
    display:flex;
    flex-direction:column;
    gap:20px;
}
#protection .protection_greeting .greeting_ti {
    font-size:1.55rem;
    font-weight:500;
    letter-spacing:-0.2px;
    line-height:142%;
    text-align: center;
    font-family: "Gmarket Sans";
    color:#173C7B;
}
#protection .protection_greeting .greeting_co {
    font-size:1.11rem;
    font-weight:500;
    line-height:150%;
    text-align:center;
}


#protection .protection_box {
    display:flex;
    flex-direction:column;
    gap:15px;
}
#protection .protection_box .box_ti {
    font-size:1.33rem;
    font-weight:500;
    letter-spacing:-0.2px;
    color:#173C7B;
    font-family: "Gmarket Sans";
    position: relative;
    padding-left:36px;
}
#protection .protection_box .box_ti::before {
    content: '';
    width: 26px;
    height: 24px;
    background-image: url(../../../img/layout/cont_title_point.png);
    background-repeat: no-repeat;
    position: absolute;
    left:0;
    top: 0;
}
#protection .protection_box .box_co {
    font-size:1.11rem;
    font-weight:400;
    letter-spacing:-0.6px;
    line-height:140%;
}

#protection .protection_box .gray_box {
    background-color:#F8F9FA;
    padding:30px 60px;
    border-radius:15px;
}
#protection .protection_box .protection_number {
    list-style-type: decimal;
}
#protection .protection_box .protection_number li {
    list-style:inherit;
    font-size:1.11rem;
    font-weight:400;
    line-height:140%;
    letter-spacing:-0.6px;
}

#protection .protection_step {
    display:flex;
    align-items:stretch;
    flex-wrap: wrap;
    gap:30px;
}
#protection .protection_step .step_box {
    width:calc(33.333% - 56.6666px);
    border:2px solid #E0E0E0;
    border-radius:20px;
    background-color:#fff;
    padding:15px;
    display:flex;
    flex-direction:column;
    gap:5px;
}
#protection .protection_step .step_box .step_ti {
    font-size:1rem;
    font-weight:600;
    line-height:155%;
    text-align:center;
}
#protection .protection_step .step_box .step_co {
    font-size:0.88rem;
    font-weight:400;
    line-height:150%;
    color:#757575;
    text-align:center;
}
#protection .protection_step .step_arrow {
    align-self:center;
}


#protection .call_wrap {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background-color:#F8F9FA;
    padding:10px 20px;
    border-radius:30px;
}
#protection .call_wrap .call_title {
    display:flex;
    align-items:center;
    gap:10px;
}
#protection .call_wrap .call_title .call_ti {
    font-size:1.11rem;
    font-weight:700;
    line-height:140%;
}
#protection .call_wrap .call_co {
    font-size:1.11rem;
    font-weight:400;
    letter-spacing:-0.6px;
    line-height:140%;

    display:flex;
    align-items:center;
    flex-wrap: wrap;
}

/****************************************/
/* 반응형 미디어 쿼리 css                 */
/***************************************/
@media (max-width:1680px) {}
@media (max-width:1440px) {}
@media (max-width:1200px) {}
@media (max-width:1024px) {
    #protection .protection_cont .protection_wrap {
        padding:30px;
    }
    #protection .protection_box .gray_box {
        padding:20px 40px;
    }
}
@media (max-width:991px) {
    #protection .protection_step {
        gap:15px;
    }
    #protection .protection_step .step_box {
        width:calc(33.333% - 36.6666px);
    }

    #protection .call_wrap .call_title .call_co {
        flex-direction:column;
    }

}
@media (max-width:768px) {
    #protection .protection_step {
        gap:10px 5px;
    }
    #protection .protection_step .step_box {
        width:calc(33.333% - 23.3333px);
    }
}
@media (max-width:640px) {
    #protection .protection_cont .protection_wrap {
        padding:20px;
    }

    #protection .protection_step {
        flex-direction:column;
    }
    #protection .protection_step .step_arrow {
        display:none;
    }
    #protection .protection_step .step_box {
        width:100%;
        padding:10px;
    }

    #protection .call_wrap {
        flex-direction:column;
        text-align:center;
    }
    #protection .call_wrap .call_co {
        justify-content:center;
    }
    #protection .call_wrap .call_co span {
        display:block;
    }
}
@media (max-width:480px) {

}