#body {
    overflow-x: hidden;
}
#head {
    position: relative;
    z-index: 10000;
}
.head_wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    border-bottom: 1px solid transparent;
    transition: 1.5s ease;
}
.head_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logo {
    position: relative;
    width: 128px;
    height: 20px;
}
.logo_w {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
    transition: 1.5s ease;
}
.logo_b {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: 1.5s ease;
}
.head_inner ul {
    display: flex;
    align-items: center;
    gap: 0 35px;
}
.head_inner ul li a {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    transition: 1.5s ease;
}
.head_down {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 5px;
    width: 144px;
    height: 48px;
    font-size: 16px;
    color: #F0DDFE;
    font-weight: 600;
    background: #9810FA;
    border-radius: 16px;
}
.head_down::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../images/ic_download.svg);
}
.menu_btn {
    display: none;
    position: relative;
    width: 30px;
    height: 24px;
}
.menu_w {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
    transition: 1.5s ease;
}
.menu_b {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: 1.5s ease;
}
.head_wrap.sticky {
    background: #ffffff;
    border-bottom: 1px solid #D9D9D9;
    transition: 1.5s ease;
}
.head_wrap.sticky .head_inner ul li a {
    color: #89898B;
}
.head_wrap.sticky .logo_w {
    opacity: 0;
    transition: 1.5s ease;
}
.head_wrap.sticky .logo_b {
    opacity: 1;
    transition: 1.5s ease;
}
.head_wrap.sticky .menu_w {
    opacity: 0;
    transition: 1.5s ease;
}
.head_wrap.sticky .menu_b {
    opacity: 1;
    transition: 1.5s ease;
}
#section01 {
    position: relative;
    height: 100vh;   
}
.main_video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.main_video .video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    padding: 0;
}
.main_video .video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    min-width: 100%;
    max-width: none;
    min-height: 100%;
    background-size: cover;
}
.video_text_wrap {
    position: absolute;
    bottom: 100px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}
.title {
    font-size: 54px;
    color: #0A090A;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}
.title span {
    color: #9D1DFA;
}
.title_w {
    color: #F3F2F3;
}
.sub_text {
    font-size: 20px;
    color: #586070;
    font-weight: 600;
    text-align: center;
}
.sub_text_w {
    color: #BABDC4;
}
.video_text_wrap .title {
    margin-bottom: 20px;
}
.download_wrap {
    display: flex;
    align-items: center;
    gap: 0 40px;
    margin: 36px 0 60px;
}
.arrow_down {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px 0;
    font-size: 16px;
    color: #828995;
    font-weight: 500;
    text-align: center;
}
.arrow_down::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url("../images/ic_arrow_down.svg");
}
.section_p {
    padding: 185px 0;
}
.core_wrap {
    display: flex;
    align-items: center;
    gap: 0 80px;
    margin-top: 40px;
}
.core_wrap li {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.core_bg {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 0 60px;
    transition: 0.3s;
}
.core_wrap li:hover .core_bg {
    opacity: 0;
    transition: 0.3s;
}
.core_text1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px 0;
    font-size: 28px;
    color: #ffffff;
    font-weight: 900;
}
.core_wrap li:nth-child(1) .core_text1::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background: url("../images/ic_core1.svg");
}
.core_wrap li:nth-child(2) .core_text1::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background: url("../images/ic_core2.svg");
}
.core_wrap li:nth-child(3) .core_text1::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background: url("../images/ic_core3.svg");
}
.core_text2 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    line-height: 26px;
    text-align: center;
}
.walk_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px 0;
    width: 100%;
    max-width: 960px;
    background: #ececed;
    border-radius: 20px;
    padding: 60px 0;
    margin-top: 80px;
}
.walk_text1 {
    font-size: 24px;
    color: #2B2B2B;
    font-weight: 600;
    text-align: center;
    line-height: 36px;
}
.walk_text2 {
    font-size: 18px;
    color: #606977;
    font-weight: 500;
}
.step_wrap {
    display: flex;
    gap: 0 130px;
    margin: 100px 0 var(--top-padding);
}
.step_wrap li {
    text-align: center;
}
.step_text1 {
    font-size: 28px;
    color: #1F1F1F;
    font-weight: 600;
    text-align: center;
    margin: 26px 0 20px;
}
.step_text2 {
    font-size: 18px;
    color: #5E6775;
    line-height: 26px;
    text-align: center;
}
.step_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 960px;
    background: #ececed;
    border-radius: 20px;
    padding: 64px 0;
    margin-top: 40px;
}
.step_text3 {
    font-size: 24px;
    color: #2B2B2B;
    font-weight: 600;
    text-align: center;
    line-height: 36px;
}
.smart_wrap1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 180px;
    margin-top: 280px;
}
.smart_title1 {
    font-size: 54px;
    color: #0A090A;
    font-weight: 600;
}
.smart_title1::after {
    content: "";
    display: block;
    width: 74px;
    height: 5px;
    margin-top: 12px;
    background: #9810FA;
}
.smart_text1 {
    font-size: 30px;
    color: #000000;
    font-weight: 600;
    line-height: 32px;
    margin: 40px 0 20px;
}
.smart_text2 {
    font-size: 20px;
    color: #586070;
    font-weight: 600;
    line-height: 32px;
}
.smart_wrap2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 226px;
    margin-top: 280px;
}
.smart_wrap3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 180px;
    margin-top: 280px;
}
.smart_title3 {
    font-size: 54px;
    color: #0A090A;
    font-weight: 600;
}
.smart_title3 span {
    color: #9D1DFA;
}
.smart_text3 {
    font-size: 24px;
    color: #586070;
    font-weight: 600;
    line-height: 32px;
    margin: 25px 0 60px;
}
.smart_text4 {
    font-size: 42px;
    color: #000000;
    font-weight: 600;
    margin: 30px 0 10px;
}
.smart_text4 span {
    color: #9D1DFA;
}
.smart_text5 {
    font-size: 20px;
    color: #586070;
    font-weight: 600;
}
#section06 {
    min-height: 1586px;
    background: url("../images/bg_change.png") center center no-repeat;
    background-size: cover;
    padding-top: 0;
    margin-top: var(--top-padding);
}
.title2 {
    margin-bottom: 26px;
}
.change_wrap {
    display: flex;
    gap: 0 180px;
    margin-top: 120px;
    margin-bottom: var(--top-padding);
}
.change_wrap li h2 {
    font-size: 48px;
    font-weight: 700;
    color: #9D1DFA;
    text-align: center;
    margin-bottom: 20px;
}
.change_wrap li p {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    text-align: center;
}
.vision_wrap {
    display: flex;
    gap: 0 80px;
    margin: 100px 0 0;
}
.vision_wrap li {
    text-align: center;
}
.vision_text1 {
    font-size: 28px;
    color: #1F1F1F;
    font-weight: 600;
    text-align: center;
    margin: 26px 0 20px;
}
.vision_text2 {
    font-size: 18px;
    color: #5E6775;
    text-align: center;
}
#section07 {
    padding-top: 170px;
}
.load_wrap {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 0 80px;
    margin-top: 80px;
}
.load_wrap::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #B3B3B3;
}
.load_wrap li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.load_dot {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.load_dot::after {
    content: "";
    width: 3px;
    height: 50px;
    background: #B3B3B3;
    margin-top: -2px;
}
.load_dot img {
    width: 43px;
    height: 43px;
}
.load_box {
    position: relative;
    width: 346px;
    height: 222px;
    border: 3px solid #00C655;
    border-radius: 15px;
    padding: 30px 36px 0;
}
.load_box::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -23px;
    transform: translateX(-50%);
    width: 43px;
    height: 43px;
    background: url(../images/ic_dot2.svg);
    background-size: cover;
}
.load_year {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    font-size: 28px;
    color: #ffffff;
    font-weight: 600;
    background: #00C655;
    border-radius: 10px;
}
.load_text {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    font-size: 20px;
    color: #000000;
    line-height: 28px;
    text-align: center;
    margin-top: 26px;
}
.load_wrap li:nth-child(2) .load_box {
    border: 3px solid #2F7FFF;
}
.load_wrap li:nth-child(2) .load_box::after {
    background: url(../images/ic_dot3.svg);
    background-size: cover;
}
.load_wrap li:nth-child(2) .load_year {
    background: #2F7FFF;
}
.load_wrap li:nth-child(3) .load_box {
    border: 3px solid #940FFC;
}
.load_wrap li:nth-child(3) .load_box::after {
    background: url(../images/ic_dot4.svg);
    background-size: cover;
}
.load_wrap li:nth-child(3) .load_year {
    background: #940FFC;
}
.faith_wrap {
    display: flex;
    gap: 0 90px;
    margin-top: 100px;
}
.faith_wrap li {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.faith_text1 {
    font-size: 28px;
    color: #1F1F1F;
    font-weight: 600;
    text-align: center;
    margin: 26px 0 20px;
}
.faith_text2 {
    font-size: 18px;
    color: #5E6775;
    line-height: 32px;
    text-align: center;
}
#section09 {
    padding: var(--top-padding) 0;
}
.inquiry_wrap {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 0 80px;
}
.inquiry_wrap li {
    width: 100%;
    max-width: 480px;
}
.inquiry_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px 0;
    font-size: 28px;
    color: #1F1F1F;
    font-weight: 600;
    text-align: center;
}
.inquiry_title::before {
    content: "";
    width: 96px;
    height: 60px;
    background: url(../images/ic_shoes.svg);
}
.inquiry_wrap li:nth-child(2) .inquiry_title::before {
    content: "";
    width: 60px;
    height: 60px;
    background: url(../images/ic_partner.svg);
}
.inquiry_text {
    font-size: 24px;
    color: #000000;
    text-align: center;
    margin: 26px 0 60px;
}
.inquiry_email {
    font-size: 20px;
    color: #5D6775;
    font-weight: 600;
    line-height: 40px;
    padding-left: 52px;
    background: url(../images/ic_mail.svg) 0 center no-repeat;
}
.inquiry_email span {
    display: block;
    font-size: 28px;
    color: #000000;
}
.inquiry_tel {
    font-size: 20px;
    color: #5D6775;
    font-weight: 600;
    line-height: 40px;
    padding-left: 52px;
    background: url(../images/ic_tel.svg) 0 center no-repeat;
    margin: 40px 0 60px;
}
.inquiry_tel span {
    display: block;
    font-size: 28px;
    color: #000000;
}
.inquiry_btn {
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    font-size: 20px;
    color: #F3E4FE;
    font-weight: 600;
    background: #9810FA;
    border-radius: 10px;
    padding-left: 40px;
}
.foot_top {
    background: linear-gradient(90deg, #8F11EB, #6F11B3);
    padding: 145px 0;
}
.foot_title {
    font-size: 54px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
}
.foot_text {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    margin: 40px 0;
}
.foot_download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 55px;
}
.foot_bottom {
    background: #000000;
    padding: 66px 0 60px;
}
.foot_text2 {
    font-size: 15px;
    color: #848B97;
    font-weight: 600;
    text-align: center;
    margin: 24px 0;
}
.foot_copy {
    width: 100%;
    font-size: 14px;
    color: #5D6573;
    font-weight: 500;
    text-align: center;
    border-top: 1px solid rgba(132, 139, 151, 0.4);
    padding-top: 24px;
}
.lottie_ic {
    height: 140px;
    margin-bottom: 12px;
}
#m_menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease 0s;
}
.m_menu_wrap {
    position: fixed;
    right: 0;
    top: 0;
    width: 360px;
    height: 100%;
    background: #240A3A;
    transform: translateX(360px);
    transition: all 0.5s ease 0s;
}
.m_menu_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 38px 20px 60px;
}
.m_menu_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 30px;
}
.m_menu_list li a {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    line-height: 30px;
}

/* faq */
.faq {
    background-color: #ffffff;
}
.faq .head_wrap {
    background: #ffffff;
    border-bottom: 1px solid #D9D9D9;
    transition: 1.5s ease;
}
.faq .head_wrap .head_inner ul li a {
    color: #89898B;
}
.faq .head_wrap .logo_w {
    opacity: 0;
    transition: 1.5s ease;
}
.faq .head_wrap .logo_b {
    opacity: 1;
    transition: 1.5s ease;
}
.faq_title1 {
    font-size: 54px;
    color: #000000;
    font-weight: 600;
    text-align: center;
    margin-top: 220px;
}
.faq_title2 {
    font-size: 54px;
    color: #9810FA;
    font-weight: 600;
    text-align: center;
    margin: 5px 0 20px;
}
.faq_text1 {
    font-size: 20px;
    color: #626B79;
    font-weight: 600;
    text-align: center;
}
.faq_wrap {
    width: 100%;
    max-width: 1080px;
    padding-bottom: 120px;
}
.faq_sub_title {
    position: relative;
    font-size: 40px;
    color: #121212;
    font-weight: 600;
    margin: 160px 0 60px;
    padding-left: 53px;
}
.faq_sub_title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 36px;
    height: 36px;
    background: url("../images/ic_question.svg");
}
.faq_list {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}
.faq_list li {
    position: relative;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    border-radius: 14px;
    cursor: pointer;
}
.faq_list li h3 {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100px;
    font-size: 16px;
    color: #292929;
    font-weight: 500;
    padding: 0 104px 0 40px;
    z-index: 2;
    word-break: break-all;
}
.faq_list li h3 i {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(../images/ic_down_arrow.svg);
    background-size: cover;
    z-index: 1;
    transition: 0.5s;
}
.faq_list li.faq_li_open h3 i {
    transform: translateY(-50%) rotate(180deg);
    transition: 0.5s;
}
.con_inner {
    position: relative;
    display: none;
    padding: 0 40px;
}
.con_inner p {
    font-size: 16px;
    color: #682EA7;
    line-height: 22px;
    word-break: break-all;
    border-top: 1px solid #d9d9d9;
    padding: 30px 0;
}
.faq_inquiry_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 60px 0;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    margin-top: 160px;
}
.faq_inquiry_wrap h2 {
    font-size: 24px;
    color: #000000;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
}
.faq_inquiry_wrap p {
    font-size: 18px;
    color: #292929;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    margin: 20px 0 40px;
}
.faq_btn_wrap {
    display: flex;
    gap: 0 12px;
}
.faq_btn_wrap a:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 64px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    background: #9810FA;
    border-radius: 10px;
}
.faq_btn_wrap a:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 64px;
    font-size: 18px;
    color: #9810FA;
    font-weight: 500;
    background: #ffffff;
    border: 1px solid #9810FA;
    border-radius: 10px;
}

@media screen and (max-width: 1024px) {
    .head_inner ul {
        display: none;
    }
    .menu_btn {
        display: block;
    }
    .head_down {
        display: none;
    }
    .load_wrap {
        gap: 0 20px;
        padding: 0 20px;
    }
    .load_wrap li {
    }
    .load_box {
        width: 240px;
        height: 153px;
        padding: 20px 25px 0;
    }
    .load_year {
        width: 190px;
        height: 31px;
        font-size: 18px;
        margin: 0 auto;
    }
    .load_text {
        min-height: 56px;
        font-size: 16px;
        line-height: 28px;
        margin-top: 12px;
    }
    .video_text_wrap {
        bottom: 58px;
    }
    .title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .sub_text {
       font-size: 16px;
    }
    .download_wrap {
        gap: 0 16px;
    }
    .download_wrap img {
        width: 140px;
    }
    .section_p {
        padding: 200px 0 100px;
    }
    .core_wrap {
        gap: 0 20px;
        margin-top: 76px;
    }
    .core_wrap li {
        width: 240px;
    }
    .core_text1 {
        font-size: 20px;
    }
    .core_text2 {
        font-size: 16px;
        line-height: 22px;
    }
    .walk_wrap {
        justify-content: center;
        max-width: 640px;
        height: 280px;
    }
    .walk_text1 {
        font-size: 18px;
        line-height: 28px;
    }
    .walk_text2 {
        font-size: 16px;
    }
    .step_wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 100px 110px;
    }
    .step_wrap li {
        text-align: center;
    }
    .step_img {
        max-width: 640px;
    }
    .step_box {
        justify-content: center;
        max-width: 640px;
        height: 200px;
    }
    .step_text3 {
        font-size: 20px;
    }
    .smart_wrap1 {
        gap: 0 60px;
        margin-top: 200px;
    }
    .smart_wrap1 img {
        height: 368px;
    }
    .smart_title1 {
        font-size: 36px;
    }
    .smart_text1 {
        font-size: 20px;
        line-height: normal;
        margin: 32px 0 15px;
    }
    .smart_text2 {
        font-size: 16px;
        line-height: normal;
    }
    .smart_wrap2 {
        gap: 0 60px;
        margin-top: 200px;
    }
    .smart_wrap2 img {
        height: 368px;
    }
    .smart_wrap3 {
        gap: 0 60px;
        margin-top: 200px;
    }
    .smart_wrap3 img {
        height: 368px;
    }
    .smart_title3 {
        font-size: 36px;
    }
    .smart_text3 {
        font-size: 16px;
        line-height: 24px;
        margin: 20px 0 40px;
    }
    .smart_text4 {
        font-size: 24px;
        margin: 30px 0 2px;
    }
    .smart_text5 {
        font-size: 16px;
    }
    #section06 {
        min-height: auto;
        margin-top: var(--top-padding);
        background-size: contain;
    }
    .change_wrap {
        gap: 0 60px;
        margin-top: 80px;
    }
    .change_wrap li h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .change_wrap li p {
        font-size: 16px;
        line-height: 20px;
    }
    .vision_wrap {
        gap: 0 50px;
    }
    .faith_wrap {
        gap: 0 30px;
        margin-top: 120px;
    }
    .inquiry_wrap {
        gap: 0 40px;
    }
    .inquiry_wrap li {
        max-width: 320px;
    }
    .inquiry_text {
        font-size: 16px;
        margin: 20px 0 80px;
    }
    .inquiry_email {
        font-size: 18px;
        line-height: 32px;
    }
    .inquiry_email span {
        font-size: 24px;
    }
    .inquiry_tel {
        font-size: 18px;
        line-height: 32px;
        margin: 24px 0 58px;
    }
    .inquiry_tel span {
        font-size: 24px;
    }
    .inquiry_btn {
        justify-content: center;
        padding-left: 0;
    }
    .foot_title {
        font-size: 36px;
        color: #ffffff;
        font-weight: 600;
        text-align: center;
    }
    .foot_text {
        font-size: 16px;
        margin: 20px 0 60px;
    }
    .foot_top {
        padding: 180px 0;
    }
    .foot_download {
        gap: 0 16px;
    }
    .foot_download img {
        width: 140px;
    }
    .lottie_ic {
        height: 80px;
    }
    #m_menu.open {
        z-index: 10001;
        opacity: 1;
        visibility: visible;
        transition: all 0.5s ease 0s;
    }
    #m_menu.open .m_menu_wrap {
        transform: translateX(0);
        transition: all 0.5s ease 0s;
    }

    /* faq */
    .faq_title1 {
        font-size: 36px;
        margin-top: 200px;
    }
    .faq_title2 {
        font-size: 36px;
    }
    .faq_text1 {
        font-size: 16px;
    }
    .faq_sub_title {
        font-size: 20px;
        margin: 100px 0 30px;
        padding-left: 28px;
    }
    .faq_sub_title::before {
        top: 2px;
        width: 20px;
        height: 20px;
        background-size: cover;
    }
    .faq_list li h3 {
        font-size: 16px;
        padding: 0 58px 0 20px;
    }
    .faq_list li h3 i {
        right: 22px;
        width: 18px;
        height: 18px;
    }
    .con_inner {
        padding: 0 20px;
    }
    .faq_inquiry_wrap p {
        font-size: 16px;
        line-height: 22px;
        margin: 20px 0 40px;
    }
    .faq_btn_wrap a:nth-child(1) {
        width: 134px;
    }
    .faq_btn_wrap a:nth-child(2) {
        width: 134px;
    }
    .faq .head_wrap .menu_w {
        opacity: 0;
        transition: 1.5s ease;
    }
    .faq .head_wrap .menu_b {
        opacity: 1;
        transition: 1.5s ease;
    }
}

@media screen and (max-width: 800px) {
    .video_text_wrap {
        position: absolute;
        left: 0;
        transform: translateX(0);
        text-align: center;
    }
    .core_wrap {
        flex-direction: column;
        gap: 20px 0;
    }
    .core_wrap li {
        width: 100%;
        max-width: 320px;
    }
    .step_wrap {
        display: grid;
        grid-template-columns: 1fr;
        gap: 80px 0;
    }
    .step_img {
        max-width: 320px;
    }
    .smart_wrap1 {
        flex-direction: column;
        gap: 70px 0;
        margin-top: 80px;
    }
    .smart_text_wrap1 {
        text-align: center;
    }
    .smart_title1::after {
        margin: 12px auto 0;
    }
    .smart_wrap2 {
        flex-direction: column-reverse;
        gap: 70px 0;
        margin-top: 100px;
    }
    .smart_text_wrap2 {
        text-align: center;
    }
    .smart_wrap3 {
        flex-direction: column;
        gap: 70px 0;
        margin-top: 80px;
    }
    .smart_text_wrap3 {
        text-align: center;
    }
    .step_box {
        max-width: 320px;
    }
    #section06 {
        background-position-y: 265px;
    }
    .change_wrap {
        gap: 0 30px;
    }
    .vision_wrap {
        flex-direction: column;
        gap: 80px 0;
    }
    .load_wrap {
        flex-direction: column;
        gap: 45px 0;
        padding: 0;
    }
    .load_wrap::before {
        display: none;
    }
    .load_dot {
        display: none;
    }
    .load_box {
        width: 260px;
        height: 166px;
        padding: 22px 25px 0;
    }
    .load_box::after {
        content: "";
        position: absolute;
        left: 50%;
        top: -17px;
        transform: translateX(-50%);
        width: 31px;
        height: 31px;
        background: url(../images/ic_dot2.svg);
        background-size: cover;
    }
    .load_year {
        width: 206px;
        height: 34px;
    }
    .load_text {
        margin-top: 20px;
    }
    .faith_wrap {
        flex-direction: column;
        gap: 80px 0;
    }
    .inquiry_wrap {
        flex-direction: column;
        align-items: center;
        gap: 100px 0;
    }
    .m_menu_wrap {
        width: 100%;
        transform: translateX(100%);
    }
}