@charset "utf-8";

:root {
    --blue: #007eff;
}

/*ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ

 * Section *
    
ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ*/
.section {
    padding: 130px 0;
    box-sizing: border-box;
}

.section.pb-0 {
    padding-bottom: 0;
}

.section.pt-0 {
    padding-top: 0;
}

.section.last {
    padding-bottom: 0;
}

.section.bg01 {
    background-color: #eff3f9;
}

.section.bg02 {
    background-color: #34579d;
}

.section [class^=row]+[class^=row] {
    margin-top: 0;
}

/* 반응형에서 조절이 필요한 경우 사용 */
/*
@media all and (max-width: 1024px) {
    .section {padding: 0 0;}
    .section.last {padding-bottom: 0;}
    .section [class^=row] + [class^=row] {margin-top: 0;}
}
*/

/*ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ

 * Title *
    
ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ*/
.main_tit h3 {
    font-size: 46px;
    color: #222222;
    letter-spacing: -0.025em;
    line-height: 1.3043em;
    text-align: center;
}

.main_tit h3 span.blue {
    color: var(--blue);
}

.main_con_tit .num_box {
    width: 68px;
    height: 33px;
    border-radius: 16.5px;
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
}

.main_con_tit .txt_box.text-center {
    text-align: center;
}

.main_con_tit .txt_box h3 {
    margin-top: 50px;
    font-size: 36px;
    font-weight: 700;
    color: #222222;
    letter-spacing: -0.045em;
}

.main_con_tit .txt_box p {
    font-size: 18px;
    font-weight: 300;
    color: #666666;
    letter-spacing: -0.045em;
    line-height: 1.7777em;
    margin-top: 30px;
}

.sub_main_tit h3 {}

.sub_con_tit.padding {
    padding: 35px 0;
}

.sub_con_tit h5 {
    font-size: 22px;
    color: #222222;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
}

.heading .desc p {}

.btn_wrap_box {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn_wrap_box .btn {
    width: 160px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.045em;
    transition: all 0.3s ease;
}

.btn_wrap_box .btn.blue {
    background-color: var(--blue);
}

.btn_wrap_box .btn.black {
    background-color: #14171e;
}

.btn_wrap_box .btn:hover {
    opacity: 0.5;
}