:root {
    --pointColor: #ff9c00;
}

body {
      min-width: 1900px;
}

/* common */
/* *:not(form, input, label, select, button,textarea,a , .swiper-wrapper *,.quick_box, a *, .ft_links) {
    cursor: url('../img/cusor.png') 2 2, auto;
} */
.top_bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 100% !important;
    z-index: 2;
}
.top_bg img{
     width: 100%;
    opacity: 100% !important;
}

.main_layer {
    min-width: 1900px;
    overflow: hidden;
}

body:has(.main_layer) #hd,
body:has(.main_layer) #ft {
    min-width: 1900px;
}

.wrap {
    width: 1346px;
    margin: 0 auto;
}

.title_box {
    text-align: center;
}

.title_box .sound_only {
    font-size: 0;
    visibility: hidden;
}

.title_box .title_desc1 {
    color: #fff;
    font-size: 24px;
}

.title_box .title_desc1:has(b) {
    color: #b3b3b3;
}

.title_box .title_desc1 b {
    color: #fff;
}

.title_box .title_desc2 {
    font-weight: 500;
    font-size: 40px;
    line-height: 1.4;
    color: #fff;
}

.title_box .title+* {
    margin-top: 50px;
}

.title_box .title_desc1+.title_desc2 {
    margin-top: 25px;
}

.title_box .title_desc2+.title_desc1 {
    margin-top: 18px;
}

.title_box .title_desc2 .bg_point {
    position: relative;
}

.title_box .title_desc2 .bg_point b {
    font-weight: normal;
    position: relative;
    z-index: 3;
}

.title_box .title_desc2 .bg_point img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.title_box .title_desc2 .point {
    color: var(--pointColor);
    font-weight: bold;
}

.more_box a {
    display: block;
    background-color: var(--pointColor);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    position: relative;
    font-weight: 500;
    font-size: 28px;
    line-height: 65px;
    width: 500px;
    margin: 0 auto;
}

.more_box a span {
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.more_box a span img {
    opacity: 0;
    transition: 0.2s;
    animation: blink 0.5s step-start infinite
}

@keyframes blink {

    50% {
        opacity: 1;
        transition: 0.2s;
    }
}

.more_box>p {
    color: #fff;
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}

.chart .cost,
.chart .sales {
    height: 0;
    transition: height 0.8s ease;
}

.chart img {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.chart li.show img {
    opacity: 1;
    transform: translateY(0);
}

/* #hd */
#hd {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    /* background-color: rgba(0, 0, 0, 0.8); */
    background-color: #0f1205;
    z-index: 9;
}

#hd .hd_wrap {
    display: flex;
    gap: 160px;
    align-items: center;
    justify-content: space-between;
    width: 1340px;
    margin: 0 auto;
}

#hd .hd_wrap .menu {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}
#hd .hd_wrap .menu>li{
    position: relative;
}
#hd .hd_wrap .menu>li>a {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    padding: 40px 0 30px;
    display: block;
}
#hd .hd_wrap .sub_menu{
    position: absolute;
    background-color: #fff;
    left: 50%;
    transform: translateX(-50%);
    top: 80%;
    /* overflow: hidden; */
    border-radius: 10px;
    width: 159px;
    display: none;
}
#hd .hd_wrap .sub_menu li a{
    color: #353535;
    font-size: 16px;
    padding: 12px 0;
    text-align: center;
    display: block;
    font-weight: bold;
}
#hd .hd_wrap .sub_menu li.active{
    background-color: #ff9600;
}
#hd .hd_wrap .sub_menu li.active a{
    color: #fff;
}
#hd .hd_wrap .sub_menu li:hover{
    background-color: #ff9600;
}
#hd .hd_wrap .sub_menu li:hover a{
    color: #fff;
}
#hd .hd_wrap .sub_menu li{
    border-bottom: 1px solid #cbcbcb;
    /* 260421 아로 예선 수정 */
    position: relative;
    /* 260421 아로 예선 수정 */
}
/* 260421 아로 예선 수정 */
#hd .hd_wrap .sub_menu li:nth-child(1){
    border-radius: 10px 10px 0 0;
}
/* 260421 아로 예선 수정 */
#hd .hd_wrap .sub_menu li:last-child{
    border-bottom: 0;
    /* 260421 아로 예선 수정 */
    border-radius: 0 0 10px 10px;
    /* 260421 아로 예선 수정 */
}
#hd .hd_wrap .menu li:hover .sub_menu{
    display: block;
}
.m_menu_btn {
    display: none;
}
/* 260421 아로 예선 수정 */
#hd .sub_depth_menu{
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #fff;
    border-radius: 10px;
    width: 200px;
    display: none;
}
#hd .sub_depth_menu li a{
    color: #353535;
}
#hd .hd_wrap .sub_menu li .sub_depth_menu li a{
    color: #353535;
}
#hd .hd_wrap .sub_menu li .sub_depth_menu li a:hover{
    color: #fff;
}
#hd .hd_wrap .sub_menu li .sub_depth_menu li.active a{
    color: #fff;
}
#hd .hd_wrap .sub_menu li.click .sub_depth_menu{
    display: block;
}
/* 260421 아로 예선 수정 */


/* main */
#sec1 {
    width: 100%;
    overflow: hidden;
    position: relative;

    /* 260303 아로 유나 수정 */
    /* aspect-ratio: 1 / 0.5;
    max-height: 100vh; */
    aspect-ratio: 16/9;
    /* 260303 아로 유나 수정 */

}

#sec1 .visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#sec1 .visual iframe {
    width: 100%;
    height: 100%;
}

#sec1 .objet {
    position: absolute;
    z-index: 1;
}

#sec1 .objet.up {
    top: 0;
    left: 0;
    width: 100%;
}

#sec1 .objet.left {
    top: 0;
    left: 0;
}

#sec1 .objet.right {
    top: 0;
    right: 0;
}

#sec1 .objet.down {
    bottom: 0;
    right: 0;
}

/* #sec2 */
#sec2 {
    background-image: url('../img/main/sec_bg1.png');
    background-position: center;
    background-size: cover;
    padding: 153px 0 130px;
}

#sec2 .line_box {
    border-radius: 25px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 2px solid #424242;
    padding: 78px 40px 70px;
    box-sizing: border-box;
}

#sec2 .title_box {
    margin-bottom: 30px;
}

.awards_list {
    display: flex;
}

.awards_list li {
    flex: 1;
    text-align: center;
    padding: 0 64px;
    border-right: 2px solid #8a8e96;
}

.awards_list li:last-child {
    border-right: 0;
}

.awards_list li .list_tit {
    font-weight: bold;
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 20px;
}

.awards_list li .txt {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.awards_list li .txt .main_count {
    font-weight: 900;
    font-size: 40px;
    color: #fff;
}

.awards_list li .txt .percent {
    color: var(--pointColor);
    font-weight: 900;
    font-size: 22px;
}

.awards_list li .txt .percent img {
    vertical-align: middle;
    position: relative;
    top: -2px;
    animation-name: up_down;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}

.awards_list li .info {
    color: #757575;
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
}

.emblem_list_box {
    margin-top: 60px;
    padding: 0 60px;
}

.emblem_list_box .tit_box {
    margin-bottom: 30px;
    text-align: center;
}

.emblem_list_box .tit_box .list_tit {
    font-weight: 500;
    font-size: 34px;
    color: #fff;
}

.emblem_list_box .tit_box .list_desc1 {
    color: #a0a0a0;
    font-size: 20px;
    margin-top: 10px;
}

.emblem_list {
    justify-content: space-between;
    display: flex;
    gap: 10px;
    align-items: start;
}

.emblem_list li {
    text-align: center;
}

.emblem_list li p {
    color: #a2a2a2;
    font-size: 17px;
    margin-top: 30px;
}

/* #sec3 */
#sec3 {
    background-image: url('../img/main/sec_bg2.png');
    background-position: center;
    background-size: cover;
    padding: 110px 0 110px;
}

.team_list {
    display: flex;
    gap: 30px;
    padding: 0 45px;
    margin-top: 50px;
    margin-bottom: 70px;
}

.team_list li {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    flex: 1;
    background-color: #222222;
    text-align: center;
    padding: 40px 10px 30px;
}

.team_list li p {
    margin-top: 30px;
    color: #fff;
    font-size: 18px;
}

/* sec4 */
#sec4 {
    background-image: url('../img/main/sec_bg3.png');
    background-position: center;
    background-size: cover;
    padding: 115px 0;
}

.benefits_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 50px;
    margin-bottom: 58px;

}

.benefits_list li {
    background-color: #fff;
    border-radius: 20px;
    padding: 26px 30px;
}

.benefits_list li .tit {
    padding-bottom: 12px;
    border-bottom: 1px solid #e4e4e4;
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 15px;
}

.benefits_list li .tit span {
    background-color: var(--pointColor);
    color: #fff;
    display: inline-block;
    font-weight: bold;
    font-size: 15px;
    padding: 2px 10px;
    border-radius: 30px;
}

.benefits_list li .tit p {
    font-size: 20px;
    color: #3b3b3b;
    font-weight: bold;
}
.partner_slide_list{
    overflow: hidden;
    margin-top: 50px;
}
.partner_slide_list img{
    width: 100%;
}
.benefits_list li .tit p b {
    font-weight: 900;
    color: var(--pointColor);
}

.benefits_list li .desc {
    color: #515151;
    font-size: 18px;
}

/* #sec5 */
#sec5 {
    background-color: #0a0c0c;
    padding: 134px 110px 140px;
    box-sizing: border-box;
}

.marketing_slide_wrap {
    overflow: hidden;
    padding-bottom: 50px;
    width: 100%;
    position: relative;
    margin-top: 60px;
    padding-top: 30px;
}

.marketing_slide_wrap .swiper-pagination {
    display: none;
}

.marketing_slide_wrap button {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #737373;
    border: 0;
    outline: 0;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);

}

.marketing_slide_wrap button.next {
    right: 410px;
}

.marketing_slide_wrap button.prev {
    left: 410px;
}

.marketing_slide {
    width: 100%;
}

.marketing_slide .swiper-slide {
    width: 800px;
}

.marketing_slide .swiper-slide.swiper-slide-active {
    /* width: 850px; */

}

.marketing_slide .swiper-slide img {
    width: 100%;
}

.marketing_slide ul {
    align-items: center;
}

/* sec6 */
#sec6 {
    background-image: url('../img/main/sec_bg4.png');
    background-position: center;
    background-size: cover;
    padding: 115px 0;
}

.story_list1 {
    display: flex;
    gap: 35px;
    margin-top: 60px;
}

.story_list1>li {
    flex: 1;
}

.story_list1>li .txt_box {
    margin-bottom: 30px;
    text-align: center;
}

.story_list1>li .txt_box .cate {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    background-color: #ff9c00;
    border-radius: 30px;
    padding: 8px 15px;
    display: inline-block;
}

.story_list1>li .txt_box .desc {
    font-size: 18px;
    color: #fff;
    line-height: 1.4;
    margin-top: 21px;
}

.story_list1>li .yt_video {
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1 / 0.56;
}

.story_list1>li .yt_video iframe {
    width: 100%;
    height: 100%;
}
.story_list_slide{
    overflow: hidden;
}
.story_list2 {
    /* display: flex; */
    margin-top: 60px;
    /* gap: 35px; */
    align-items: start;
}

.story_list2>li {
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
}

.story_list2>li .thumb {
    aspect-ratio: 1 / 0.8;
    width: 100%;
    overflow: hidden;
}

.story_list2>li .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.story_list2>li .txt {
    padding: 25px 10px 30px;
    text-align: center;
}

.story_list2>li .txt .desc {
    color: #505050;
    font-size: 18px;
    line-height: 1.4;
}

.story_list2>li .txt .name {
    color: #4d4d4d;
    font-weight: 500;
    font-size: 18px;
    margin: 16px 0;
}

.story_list2>li .txt a {
    border: 1px solid #8a8a8a;
    border-radius: 30px;
    color: #8a8a8a;
    font-size: 15px;
    font-weight: 300;
    width: 128px;
    line-height: 32px;
    display: block;
    margin: 0 auto;
    transition: 0.2s;
}

.story_list2>li .txt a:hover {
    border-color: var(--pointColor);
    background-color: var(--pointColor);
    color: #fff;
}

/* sec7 */
#sec7 {
    overflow: hidden;
    background-image: url('../img/main/sec_bg5.png');
    background-position: center;
    background-size: cover;
    padding: 115px 0;
}

#sec7 .more_box a {
    width: 350px;
    padding-right: 30px;
}

.power_thumb_slide .thumb_img img {
    width: 100%;
}

.power_slide_wrap {
    position: relative;
    text-align: center;
}

.power_thumb_slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}

.power_main_slide {
    width: 100%;
}

.insta {
    position: relative;
    z-index: 6;
    display: inline-block;
    overflow: hidden;
    margin: 30px 0;
    cursor: pointer;
}

.insta .frame_bg {
    position: absolute;
    width: calc(100% - 10px);
    height: 100%;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 70px;
}

.insta .power_main_slide {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: calc(100% - 46px);
    overflow: hidden;
    border-radius: 20px;
}

.insta .power_main_slide .full_img img {
    width: 100%;
}

.insta>img {
    position: relative;
    z-index: 1;
}

.power_thumb_slide .thumb_img {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 17px rgba(255, 255, 255, 0.7);
}

/* sec8 */
#sec8 {
    background-color: #0b0d08;
    padding: 110px 0 160px;
    position: relative;
}

#sec8 .monkey_bg {
    position: absolute;
    right: 0;
    bottom: 0;
}

#sec8 .wrap {
    padding: 0 50px;
}

.round_table {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #676a5f;
    margin-top: 30px;
}

.round_table table {

    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    background-color: #171912;
    color: #ffffff;

}

.round_table table th,
.round_table table td {
    border: 1px solid #676a5f;
    text-align: center;
    font-weight: 400;
}

.round_table table th {
    font-size: 20px;
    padding: 8px 0;
}

.round_table table th p {
    font-size: 16px;
    color: #969696;
    font-weight: 300;
}

.round_table table td p {
    font-size: 14px;
    color: #8f8f8f;
    font-weight: 300;
}

.round_table table td {
    font-size: 18px;
    padding: 7px 10px;
}

.round_table table td.right {
    text-align: right;
}


.round_table table td .status.active::before {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    margin-right: 5px;
    background-color: #000;
    transition: 0.2s;
    animation:  status_flicker 3s infinite;
   
}

@keyframes status_flicker {

    0%,
    100% {
        background-color: #000;
        
    }

    50% {
        background-color:#90ff00;
        box-shadow: 0 0 5px 6px rgba(144, 255, 0, 0.2);
     
    }
}


.round_table table tr th:first-child,
.round_table table tr td:first-child {
    border-left: 0;
}

.round_table table tr th:last-child,
.round_table table tr td:last-child {
    border-right: 0;
}

.round_table table tr:first-child th {
    border-top: 0;
}

.round_table table tr:last-child td {
    border-bottom: 0;
}

/* sec9 */

#sec9 {
    background-image: url('../img/main/sec_bg7.png');
    background-position: center;
    background-size: cover;
    padding: 115px 0 150px;
}

.funnel_process {
    padding: 0 0;
    position: relative;
    margin: 46px 0;
}

.funnel_process ul {
    display: flex;
    gap: 20px;
    padding: 0 30px;
    justify-content: space-between;
}

.funnel_process ul li {
    width: 70px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.funnel_process ul li .info_txt .p1 {
    color: var(--pointColor);
    font-weight: 500;
    font-size: 21px;
    white-space: nowrap;
    margin-bottom: 8px;
}

.funnel_process ul li .info_txt .p2 {
    font-size: 17px;
    white-space: nowrap;
    color: #fff;
    min-height: 75px;
}

.funnel_process ul li .num {
    background-color: var(--pointColor);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    line-height: 34px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    display: inline-block;
}

.funnel_process ul li .line {
    background-color: #8d8d8d;
    display: inline-block;
    width: 1px;
    height: 40px;
}

.funnel_process ul li.top .ico {
    margin-top: 20px;
}

.funnel_process ul li.bottom .ico {
    margin-bottom: 12px;
}

.funnel_process ul li.top {
    padding-bottom: 243px;
}

.funnel_process ul li.bottom {
    padding-top: 243px;
}

.funnel_process>.bar {
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    background: linear-gradient(to right, #fff, var(--pointColor));
    top: 50%;
    transform: translateY(-50%);
}

.funnel_slide_wrap {}

.funnel_slide {
    position: relative;

    overflow: hidden;
    background-color: #10140b;
    border: 2px solid #3f3f3e;
    border-radius: 20px;
}

.funnel_slide>ul>li {
    padding: 70px 60px;

    background-color: #10140b;

    color: #fff;
    display: flex;
    gap: 34px;
}

.funnel_slide>ul>li .funnel_tit_box .tit {
    font-weight: bold;
    color: var(--pointColor);
    font-size: 36px;
    margin-bottom: 14px;
}

.funnel_slide>ul>li .funnel_tit_box .desc {
    font-size: 22px;
    color: #fff;
    margin-bottom: 14px;
}

.funnel_slide>ul>li .funnel_tit_box ul li {
    font-size: 16px;
    color: #c1c1c1;
    margin-bottom: 5px;
    position: relative;
    padding-left: 10px;
}

.funnel_slide>ul>li .funnel_tit_box ul li::before {
    content: "-";
    left: 0;
    top: 1px;
    position: absolute;
}

.funnel_slide>ul>li>div {
    width: 50%;
}

.funnel_slide>ul>li .funnel_right_box:first-of-type {
    margin-bottom: 20px;
}

.funnel_slide>ul>li .funnel_right_box .tit {
    font-weight: 500;
    font-size: 22px;
    color: var(--pointColor);
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    align-items: center;
}

.funnel_slide>ul>li .funnel_right_box .tit span {
    width: 20px;
    height: 21px;
    position: relative;
    background-color: rgba(255, 156, 0, 0.3);
    border-radius: 50%;
    display: inline-block;
}

.funnel_slide>ul>li .funnel_right_box .tit span::after {
    content: "";
    width: 9px;
    height: 9px;
    background-color: var(--pointColor);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.funnel_slide>ul>li .funnel_right_box .tit b {
    font-weight: 500;
}

.funnel_slide>ul>li .funnel_right_box .in_box {
    border-radius: 20px;
    background-color: #1a1e13;
    border: 1px solid #595d52;
    overflow: hidden;

}

.funnel_slide>ul>li .funnel_right_box .in_box:has(.in_box_tit) {
    display: flex;
    align-items: stretch;
}

.funnel_slide>ul>li .funnel_right_box .in_box .in_box_tit {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pointColor);
    font-size: 16px;
    border-right: 2px solid #3f3f3e;
    font-weight: bold;
    padding: 0 22px;
}

.funnel_slide>ul>li .funnel_right_box .in_box .in_box_list {
    padding: 30px 20px;
    color: #fff;
    position: relative;
    flex: 1;
}

.funnel_slide>ul>li .funnel_right_box .in_box .in_box_list li {
    margin-bottom: 5px;
    font-size: 16px;
}

.funnel_slide>ul>li .funnel_right_box .in_box .in_box_list li:last-child {
    margin-bottom: 0;
}

.funnel_slide>ul>li .funnel_right_box .in_box .in_box_list .more_project {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.funnel_slide>ul>li .funnel_right_box .in_box_table table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.funnel_slide>ul>li .funnel_right_box .in_box_table table th,
.funnel_slide>ul>li .funnel_right_box .in_box_table table td {
    border: 1px solid #595d52;
    padding: 0 15px;
    height: 40px;
    text-align: center;
}


.funnel_slide>ul>li .funnel_right_box .in_box_table table tr th:first-child,
.funnel_slide>ul>li .funnel_right_box .in_box_table table tr td:first-child {
    border-left: 0;
}

.funnel_slide>ul>li .funnel_right_box .in_box_table table tr th:last-child,
.funnel_slide>ul>li .funnel_right_box .in_box_table table tr td:last-child {
    border-right: 0;
}

.funnel_slide>ul>li .funnel_right_box .in_box_table table tr:first-child th {
    font-size: 16px;
    white-space: nowrap;
    border-top: 0;
    padding: 0 5px;
}

.funnel_slide>ul>li .funnel_right_box .in_box_table table tr:last-child td {
    border-bottom: 0;
}

.funnel_slide>ul>li .funnel_right_box .in_box_table table th {
    font-weight: 500;
    font-size: 16px;
    height: 50px;

}

.funnel_slide>ul>li .funnel_right_box .in_box_table table td {
    font-size: 16px;
    height: 50px;
}

.funnel_slide>ul>li .funnel_right_box .in_box_table table td.point,
.funnel_slide>ul>li .funnel_right_box .in_box_table table th.point {
    font-weight: 500;
    font-size: 16px;
    color: var(--pointColor);
}

.funnel_slide .more_box {
    margin-top: 32px;
}

.funnel_slide .more_box a {
    line-height: 40px;
    font-size: 18px;
    width: 156px;
    text-align: left;
    padding-left: 25px;
}

.funnel_slide .more_box a span {
    width: 30px;
    height: 30px;
    right: 6px;
}

.funnel_slide .more_box a span img {
    width: 18px;
}

.funnel_chart .chart {
    width: 100%;
    height: 410px;
    border-left: 2px solid #c2c2c2;
    border-bottom: 2px solid #c2c2c2;
}

.funnel_chart .chart ul {
    display: flex;
    width: 100%;
    height: 100%;
}

.funnel_chart .chart>ul>li {
    flex: 1;
    text-align: center;
    display: flex;
    gap: 6px;
    align-items: end;
    justify-content: center;
}

.funnel_chart .chart ul li>div {
    width: 50px;
}

.funnel_chart .chart ul li>div.cost {
    background-color: #ff6600;
}

.funnel_chart .chart ul li>div.sales {
    background-color: var(--pointColor);
    position: relative;
}

.funnel_chart .chart ul li>div.sales img {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translate(-50%, -100%);
}

.funnel_chart .chart ul li>div.sales img.animal1 {
    top: 30px;
}

.funnel_chart .chart ul li>div.sales img.animal2 {
    top: 3px;
    left: 25%;
}

.funnel_chart {
    width: 100%;
    position: relative;
    display: inline-block;
    padding-left: 120px;
    padding-bottom: 30px;
}

.funnel_chart .y_line {
    position: absolute;
    left: 0;
    top: 0;

    height: 100%;
}

.funnel_chart .y_line ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    font-size: 15px;

}

.funnel_chart .x_line ul {
    display: flex;
    justify-content: space-between;
    height: 100%;
    font-size: 15px;

}

.funnel_chart .x_line ul li {
    flex: 1;
    text-align: center;
}

.funnel_chart .x_line {
    position: absolute;
    padding-left: 95px;
    left: 0;
    bottom: 0;
    width: 100%;
}

.funnel_chart_box {
    margin-top: 40px;
}

.funnel_chart_box .labels {
    position: relative;
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 15px;
    color: #e3e3e3;
    font-size: 12px;
}

.funnel_chart_box .labels span {
    width: 14px;
    height: 14px;
    display: inline-block;
}

.funnel_chart_box .labels .cost span {
    background-color: #ff6600;
}

.funnel_chart_box .labels .sales span {
    background-color: var(--pointColor);
}

.funnel_chart_box .labels b {
    font-weight: normal;
}

.funnel_chart_box .labels div {
    display: flex;
    gap: 6px;
    align-items: center;
}

.funnel_slide_wrap {
    position: relative;
}

.funnel_slide_wrap .button {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background-color: #344122;
    outline: none;
    border: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 5;

}

.funnel_slide_wrap .button img {
    width: auto;
}

.funnel_slide_wrap .button.prev {
    left: 0;
    transform: translateX(-50%);
}

.funnel_slide_wrap .button.next {
    right: 0;
    transform: translateX(50%);
}

/* sec10 */
#sec10 {
    background-image: url('../img/main/sec_bg8.png');
    background-position: center;
    background-size: cover;
    padding: 118px 0 110px;
}

#consulting_form {
    background-color: rgba(182, 183, 183, 0.1);
    border-radius: 20px;
    border: 1px solid #b6b7b7;
    padding: 40px 55px 30px;
    margin-top: 35px;
}

#consulting_form .write_box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}

#consulting_form .input_box {
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    width: calc(50% - 15px);
    align-items: center;
    height: 50px;
    padding: 0 25px;
}

#consulting_form .input_box span {
    color: var(--pointColor);
    font-size: 17px;
    width: 120px
}

#consulting_form .input_box input {
    height: 100%;
    border: 0;
    outline: 0;
    font-size: 17px;
    box-shadow: none;
    flex: 1;
}

#consulting_form .input_box input:focus {
    outline: 0;
    border: 0 !important;
}

#consulting_form .input_box input::placeholder {
    color: #838383;
}

#consulting_form textarea {
    border-radius: 20px;
    background-color: #fff;
    padding: 30px;
    width: 100%;
    height: 210px;
    font-size: 17px;
}

#consulting_form textarea::placeholder {
    color: #838383;
}

#consulting_form .chk_label {
    text-align: center;
    color: #fff;
    display: block;
    margin: 22px auto;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#consulting_form .chk_label input {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
}

#consulting_form .chk_label input:checked~span::after {
    content: '✔';
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    line-height: 1;
}

#consulting_form .chk_label span {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid #898989;
    background-color: #fff;
    position: relative;
}

#consulting_form .chk_label b {
    font-weight: normal;
}

#consulting_form .submit_btn {
    width: 160px;
    height: 38px;
    border-radius: 50px;
    color: #fff;
    background-color: var(--pointColor);
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    outline: 0;
    border: 0;
    margin: 0 auto;
    display: block;
}

/* sec11 */
#sec11 {
    background-color: #0c0d0c;
    padding: 100px 0;
}

.news_list {
    margin-top: 72px;
    display: flex;
    gap: 25px;
}

.news_list li {
    flex: 1;
}

.news_list li .thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;

}

.news_list li .thumb img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.news_list li .news_title {
    margin-top: 25px;
    color: #fff;
    line-height: 1.4;
    font-size: 24px;
    word-break: keep-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    min-height: 67px;
}

.news_list li .more {
    color: #868686;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

/* sec12 */
#sec12 {
    background-color: #0c0d0c;
    padding: 100px 0 114px;
    overflow: hidden;
}

.ad_partner_list {
    margin-top: 90px;
    gap: 70px;
    align-items: center;
    overflow: hidden;
    display: flex;
}

.ad_partner_list ul {
    display: flex;
    align-content: center;
    gap: 50px;
}

.ad_partner_list li {
    white-space: nowrap;
}

.ad_partner_list li img {}

@keyframes flowRolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* sec13 */
#sec13 {
    background-color: #0c0d0c;
    padding: 120px 0;
}

#sec13 .partner_list ul {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 25px;
}

#sec13 .partner_list {
    margin-top: 42px;
}

#sec13 .partner_list ul li {
    overflow: hidden;
    border-radius: 10px;
    background-color: #fff;
    height: 80px;
    padding: 15px;
}

#sec13 .partner_list ul li img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}

#ft {
    background-color: #131313;
    text-align: center;
    padding: 70px 0;
    font-size: 12px;
    color: #fff;
}

#ft .ft_links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 22px;
    margin-top: 25px;
}

#ft .ft_links a {
    color: #fff;
    font-size: 14px;
}

#ft .ft_txt .copy {
    margin-top: 24px;
    font-size: 13px;
}

/* .quick_box */
.quick_box {
    position: fixed;
    bottom: 100px;
    right: 90px;
    z-index: 6;
}

.quick_box a {
    display: block;
    text-align: center;
}

.quick_box a p {
    color: #fff;
    font-size: 15px;
    margin-top: 6px;
}

.quick_box a:first-child {
    margin-bottom: 15px;
}

/* point */
.sec {
    position: relative;
    overflow: hidden;
}

.firefly {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #f9ce24;
    border-radius: 50%;
    filter: blur(0.5px);

    /* 다중 그림자로 빛나는 효과 극대화 */
    box-shadow: 0 0 5px 2px #fac15d, 0 0 20px 10px #ffe48c;
    animation: move1 20s infinite, flicker 3s infinite;
}

.firefly:nth-child(2) {
    animation: move2 20s infinite, flicker 3s infinite;
    right: 50%;
    bottom: 30%;
    background: #ffe84d;
    box-shadow:
        0 0 6px 2px #ffe84d,
        0 0 18px 6px rgba(255, 232, 77, 0.6);
}

.firefly:nth-child(3) {
    animation: move1 20s infinite, flicker 3s ease 2s infinite;
    left: 50%;
    top: 30%;
    background: #4dff6a;
    box-shadow:
        0 0 6px 2px #4dff6a,
        0 0 18px 6px rgba(77, 255, 106, 0.6);
}

.firefly:nth-child(4) {
    animation: move2 20s ease infinite, flicker 3s ease 5s infinite;
    right: 10%;
    bottom: 10%;
    background: #3dbbff;
    box-shadow:
        0 0 6px 2px #3dbbff,
        0 0 18px 6px rgba(61, 187, 255, 0.6);
}

/* 움직임 애니메이션 */
@keyframes move1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(100px, -50px);
    }

    50% {
        transform: translate(200px, 100px);
    }

    75% {
        transform: translate(-100px, 150px);
    }
}

@keyframes move2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-100px, 50px);
    }

    50% {
        transform: translate(100px, 200px);
    }

    75% {
        transform: translate(100px, -150px);
    }
}


/* 깜박임 애니메이션 */
@keyframes flicker {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.m_only {
    display: none;
}


#banner {
    width: 100%;
}

.banner_con {
    /* 210927수정 height: 816px;*/
    height: 965px;
    width: 100%;
}

#banner .banner_slider {
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 0
}

#banner .banner_slider .slides {
    position: relative;
    width: 100%;
    height: 100%;
}

#banner .banner_slider .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: 4s ease all;
    display: block;
    opacity: 0;
    text-align: center;
    z-index: 1
}

#banner .banner_slider .bg {
    background-size: cover;
    background-position: center;
    transition: 10s ease all;
    height: 100%;
    z-index: 1;
}

#banner .banner_slider .slide1 .bg {
    background-image: url('../img/banner/01.jpg');
}

#banner .banner_slider .slide2 .bg {
    background-image: url('../img/banner/02.jpg');
}

#banner .banner_slider .slide3 .bg {
    background-image: url('../img/banner/03.jpg');
}

#banner .banner_slider .slide .mini_tit {
    font-size: 30px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0);
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    margin-top: -80px;
    transition: 1.5s ease all;
    font-family: 'Noto Serif KR', serif;
    z-index: 9;
}


#banner .banner_slider .slide .tit {
    font-size: 65px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0);
    line-height: 80px;
    transition: 1.5s ease all;
    bottom: 50%;
    margin-top: -200px;
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 9
}

#banner .banner_slider .slide .infor {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0);
    ;
    transition: 1.5s ease all;
    bottom: 50%;
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 9;
    margin-top: 55px;
}

#banner .banner_slider .slide:last-child .infor{

}

#banner .banner_slider .slide .slide_btn {
    transition: 0.5s ease all;
    bottom: 50%;
    margin-bottom: -170px;
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    z-index: 9
}

#banner .banner_slider .slide .button {
    font-size: 18px;
    color: #fff;
    display: inline-block;
    border-radius: 50px;
    border: 1px solid #fff;
    padding: 10px 50px;
    z-index: 9
}

#banner .banner_slider .slide .button:hover {
    background-color: #ff9c00;
    border: 1px solid #ff9c00;
    transition: 0.5s ease all;
}

#banner .banner_slider .slide .tel {
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    line-height: 30px;
    bottom: -120%;
    transition: 0.3s ease all;
    margin-top: -200px;
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 9
}

/* #banner .banner_slider .slide .txt{width: 100%; top: 50%; left: 50%; position: absolute; transform: translate(-50%,-50%);} */

#banner .banner_slider .slides .slide.active {
    opacity: 1;
    z-index: 2;
}

#banner .banner_slider .slides .slide.active .bg {
    transform: scale(1.2);
}

#banner .banner_slider .slides .slide.active .tit {
    margin-top: -200px;
    color: rgba(255, 255, 255, 1);
}

#banner .banner_slider .slides .slide.active .infor {
    margin-bottom: -80px;
    color: rgba(255, 255, 255, 1);
}
#banner .banner_slider .slides .slide:last-child.active .infor {
    margin-bottom: -100px;
    color: rgba(255, 255, 255, 1);
}

#banner .banner_slider .slides .slide.active .mini_tit {
    margin-top: -230px;
    color: rgba(255, 255, 255, 1);
}

#banner .banner_slider .slides .slide.active .slide_btn {
    opacity: 1;
    transform: scale(1);
}

#banner .banner_slider .slides .slide.active .slide_btn .button {
    transition: 0.3s ease all;
}




@keyframes up_down {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }

  100% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

.admin_go_link a{
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}
.admin_go_link{
    text-align: right;
}
@media(max-width: 768px) {
    .m_only {
        display: block;
    }

    .pc_only {
        display: none;
    }

    .main_layer {
        min-width: 100%;
    }

    body:has(.main_layer) #hd,
    body:has(.main_layer) #ft {
        min-width: 100%;
    }

    .wrap {
        width: 100%;
        margin: 0 auto;
    }

    #hd .hd_wrap {
        width: 100%;
        padding: 15px 30px;
    }

    #hd .hd_wrap .menu {
        display: none;
    }

    #hd .hd_wrap .logo img {
        width: 100px;
    }

    .m_menu_btn {
        border: 0;
        padding: 0;
        background-color: transparent;
        display: block;
    }

    .m_menu_btn i {
        position: relative;
        display: block;
        width: 25px;
        height: 2px;
        margin: 6px auto;
        background-color: #fff;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    #sec1 .objet {
        display: none;
    }

    #sec2 {
        padding: 80px 70px;
        background-image: url(../img/main/m_sec_bg1.png);
    }

    #sec2 .line_box {
        padding: 50px 20px;
    }

    .awards_list li {
        padding: 0 20px;
    }

    .awards_list li .list_tit {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .awards_list li .txt .main_count {
        font-size: 20px;
    }

    .awards_list li .txt .percent {
        font-size: 14px;
        width: 100%;
    }

    .awards_list li .txt {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .awards_list li .txt>img {
        width: 26px;
        height: 26px;
        object-position: center;
        object-fit: contain;
    }

    .awards_list li .info {
        font-size: 14px;
        margin-top: 10px;
    }

    .emblem_list_box .tit_box .list_tit {
        font-size: 30px;
    }

    .emblem_list_box .tit_box .list_desc1 {
        font-size: 18px;
        word-break: keep-all;
    }

    .emblem_list_box {
        padding: 0 30px;

    }

    .emblem_list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .emblem_list li p {
        font-size: 15px;
    }

    .emblem_list li img {
        width: 100px;
        height: 100px;
    }

    .quick_box {
        display: none;
    }

    #sec3 {
        padding: 80px 70px;
        background-image: url(../img/main/m_sec_bg2.png);
    }

    .title_box .title_desc2 {
        font-size: 34px;
    }

    .title_box .title_desc1 {
        font-size: 24px;
    }

    .title_box .title_desc2 .bg_point img {
        width: 102px;
    }

    #sec3 .title_box .title_desc2 .point {
        font-size: 40px;
    }

    .team_list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
        gap: 10px;
    }

    .team_list li {
        padding: 20px 0 20px;
    }

    .team_list li p {
        margin-top: 20px;
    }

    .more_box a {
        font-size: 25px;
    }

    .benefits_list {
        grid-template-columns: repeat(1, 1fr);
    }

    #sec4 {
        padding: 80px 70px;
        background-image: url(../img/main/m_sec_bg3.png);
    }

    .benefits_list li {
        border-radius: 10px;
    }

    #sec5 {
        padding: 80px 40px;
    }

    .marketing_slide_wrap {
        padding: 0;
        margin-top: 45px;
        overflow: visible;

    }

    .marketing_slide_wrap .swiper-pagination {
        position: relative;
        display: block;
        top: 0;
        bottom: 0;
        margin-top: 28px;
    }

    .marketing_slide_wrap .swiper-pagination span {
        width: 11px;
        height: 11px;
        background-color: #444747;
    }

    .marketing_slide_wrap .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--pointColor);
    }

    .marketing_slide .swiper-slide {
        width: 100%;
    }

    .marketing_slide_wrap button {
        width: 30px;
        height: 30px;
    }

    .marketing_slide_wrap button img {
        width: 26px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .marketing_slide_wrap button.prev {
        left: 0;
        transform: translate(-50%, -50%);
    }

    .marketing_slide_wrap button.next {
        right: 0;
        transform: translate(50%, -50%);
    }

    .marketing_slide {
        overflow: hidden;
    }

    #sec6 {
        background-image: url(../img/main/m_sec_bg4.png);
        padding: 80px 40px;
    }

    .story_list1 {
        flex-direction: column;
        gap: 60px;
    }

    .story_list2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .story_list2>li .txt .desc {
        font-size: 13px;
        letter-spacing: -0.8px;
    }

    .story_list2>li .txt .name {
        font-size: 16px;
    }

    .story_list2>li .txt a {
        font-size: 12px;
    }

    #sec7 {
        background-image: url(../img/main/m_sec_bg5.png);
    }

    .power_thumb_slide li {
        width: 294px;
    }

    #sec8 {
        background-color: #0b0d08;
        padding: 80px 20px;
        position: relative;
    }

    #sec8 .wrap {
        padding: 0
    }

    .round_table table th {
        font-size: 10px;
    }

    .round_table table td {
        font-size: 8px;
        padding: 2px 3px;
    }

    .round_table table td p {
        font-size: 8px;
    }

    .round_table table th p {
        font-size: 6px;
    }

    .round_table table td .status.active::before {
        width: 6px;
        height: 6px;
    }

    #sec8 .monkey_bg {
        width: 190px;
    }

    #sec9 {
        background-image: url(../img/main/m_sec_bg7.png);
        background-position: top;
    }

    .funnel_process ul {
        padding: 0 40px;
        display: grid;
        gap: 0;
        grid-template-columns: repeat(4, 1fr);
    }

    .funnel_process>.bar {
        width: 100%;
        height: 100%
    }

    .funnel_process>.bar {
        position: absolute;
        width: 90%;
        height: 51%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        border-radius: 0 20px 20px 0;
        background: transparent;
    }

    /* 그라데이션 보더 */
    .funnel_process>.bar::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 3px;
        /* 보더 두께 */
        border-radius: inherit;
        background: linear-gradient(174deg,
                #fff,
                var(--pointColor) 6%,
                #ff7900 90%);

        -webkit-mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;

        clip-path: inset(0 0 0 4px);
    }

    .funnel_process ul li:nth-child(5) {
        grid-column: 4 / 5;
        grid-row: 2 / 3;
    }

    .funnel_process ul li:nth-child(5) .info_txt {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .funnel_process ul li:nth-child(6) {
        grid-column: 3 / 4;
        grid-row: 2 / 3;

    }

    .funnel_process ul li:nth-child(7) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .funnel_process ul li:nth-child(8) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .funnel_process ul li:nth-child(5),
    .funnel_process ul li:nth-child(7) {
        padding-top: 0;
        padding-bottom: 196px;
        flex-direction: column-reverse;
    }

    .funnel_process ul li:nth-child(5) .info_txt,
    .funnel_process ul li:nth-child(7) .info_txt {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .funnel_process ul li:nth-child(6),
    .funnel_process ul li:nth-child(8) {
        padding-bottom: 0;
        padding-top: 203px;
        flex-direction: column-reverse;
    }

    .funnel_process ul li:nth-child(6) .info_txt,
    .funnel_process ul li:nth-child(8) .info_txt {
        margin-bottom: 11px;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .funnel_process ul li:nth-child(5) .ico,
    .funnel_process ul li:nth-child(7) .ico {
        margin-bottom: 0;
        margin-top: 20px;
    }

    .funnel_process ul li:nth-child(6) .ico,
    .funnel_process ul li:nth-child(8) .ico {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .funnel_process>.bar::after {
        content: "";
        width: 15px;
        height: 13px;
        background-image: url('../img/main/m_line_tri.png');
        background-repeat: no-repeat;
        background-position: center;
        display: block;
        position: absolute;
        left: -3px;
        bottom: -5px;
    }

    .funnel_process ul li:nth-child(5) .info_txt .p2,
    .funnel_process ul li:nth-child(7) .info_txt .p2 {
        min-height: auto;
    }

    .funnel_slide_wrap {
        padding: 0 60px;
    }

    .funnel_slide>ul>li {
        flex-direction: column;
        padding: 20px;
    }

    .funnel_slide>ul>li>div {
        width: 100%;
    }

    .funnel_slide_wrap .button.next {
        transform: translateX(-50%);
    }

    .funnel_slide_wrap .button.prev {
        transform: translateX(50%);
    }

    .funnel_slide_wrap .button {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    }

    #sec10 {
        background-image: url(../img/main/m_sec_bg8.png);
        padding: 80px 60px;
    }

    #consulting_form .input_box {
        width: 100%;
    }

    #consulting_form {
        padding: 30px;
    }

    #sec11 {
        padding: 80px 40px;
    }

    .news_list li .news_title {
        font-size: 14px;
        margin-top: 13px;
    }

    .news_list li .more {
        font-size: 16px;
        margin-top: 15px;
    }

    .news_list li .more img {
        width: 14px;
    }

    #sec12 {
        padding: 80px 0;
    }

    #sec13 {
        padding: 80px 40px;
    }

    #sec13 .partner_list ul {
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }

    #sec13 .partner_list ul li {
        height: 43px;
        padding: 10px;
    }

    #ft {
        padding: 50px;
    }

}

@media(max-width:650px) {
    .title_box .title img {
        height: 45px
    }

    .title_box .title_desc1+.title_desc2 {
        font-size: 22px;
    }

    .title_box .title_desc1+.title_desc2 {
        margin-top: 15px;
    }

    .title_box .title+* {
        margin-top: 25px;
    }

    #sec3 .title_box .title_desc2 .point {
        font-size: 24px;
    }

    .title_box .title_desc2 .bg_point img {
        width: 102px;
    }

    .title_box .title_desc1 {
        font-size: 16px;
        word-break: keep-all
    }

    #sec2 {
        padding: 50px 20px;
    }

    #sec2 .line_box {
        padding: 45px 20px
    }

    #sec2 .title_box {
        margin-bottom: 30px;
    }

    .awards_list li .txt .main_count {
        font-size: 20px;
    }

    .awards_list li {
        padding: 0;
    }

    .awards_list li .txt>img {
        width: 20px;
        height: 20px;
    }

    .awards_list li .list_tit {
        font-size: 14px;
    }

    .awards_list li .info {
        font-size: 12px;
        margin-top: 5px;
    }

    .emblem_list_box .tit_box .list_tit {
        font-size: 22px;
    }

    .emblem_list_box .tit_box .list_desc1 {
        font-size: 15px;
    }

    .emblem_list_box {
        padding: 0;
    }

    .emblem_list li img {
        width: 80px;
        height: 80px;
    }

    .emblem_list li p {
        font-size: 13px;
        word-break: keep-all;
        margin-top: 15px;
    }

    #sec3 {
        padding: 50px 20px;
    }

    .team_list {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 25px;
    }

    .more_box a {
        max-width: 100%;
        font-size: 18px;
        line-height: 40px
    }

    .more_box a span {
        width: 30px;
        height: 30px;
    }

    .more_box a span img {
        width: 15px;
    }

    #sec4 {
        padding: 50px 20px;
    }

    .benefits_list li .tit {
        align-items: start
    }

    .benefits_list li .tit p {
        font-size: 16px;
        word-break: keep-all
    }

    .benefits_list li .desc {
        font-size: 15px;
        word-break: keep-all
    }

    .benefits_list li .tit span {
        font-size: 13px;
        padding: 2px 9px;

    }

    .benefits_list li {
        padding: 20px 10px;
    }

    .more_box>p {
        font-size: 16px;
    }

    .benefits_list {
        margin-bottom: 25px;
    }

    #sec5 {
        padding: 50px 20px
    }

    .marketing_slide_wrap button {
        display: none;
    }

    #sec6 {
        padding: 50px 20px;
    }

    .story_list2>li .txt {
        padding: 15px 10px 15px;
        text-align: center;
    }

    .story_list1>li .txt_box .cate {
        font-size: 14px;
    }

    .story_list1>li .txt_box .desc {
        font-size: 18px;
    }

    .story_list2>li .txt .desc {
        font-size: 12px
    }

    .story_list2>li .txt .name {
        font-size: 12px;
        margin: 10px 0;
    }

    .story_list2 {
        gap: 15px
    }

    .story_list2>li .txt a {
        font-size: 12px;
        width: 100px;
        line-height: 28px
    }

    #sec7 {
        padding: 50px 20px
    }

    .title_box .title_desc2 {
        font-size: 25px;
    }

    .title_box .title_desc1 {
        font-size: 16px
    }

    .round_table table td {
        font-size: 8px;
        padding: 2px 3px;
    }

    .round_table table td .status.active::before {
        width: 4px;
        height: 4px;
        margin-right: 5px;
    }

    .round_table table th p {
        font-size: 6px;
        letter-spacing: -0.8px;
    }

    .round_table table th {
        padding: 8px 0
    }

    .funnel_process ul li .num {
        line-height: 25px;
        height: 25px;
        width: 25px;
        font-size: 14px;
    }

    .funnel_process ul li .info_txt .p1 {
        font-size: 14px;
    }

    .funnel_process ul li .info_txt .p2 {
        font-size: 12px;
    }

    .funnel_process ul li .ico {
        width: 25px;

    }

    .funnel_process ul li.bottom .ico {
        margin-bottom: 6px
    }

    .funnel_process ul li .info_txt .p2 {
        min-height: 60px
    }

    .funnel_process ul li.top {
        padding-bottom: 196px;
    }

    .funnel_process ul li.bottom {
        padding-top: 194px;
    }

    .funnel_process ul li:nth-child(5),
    .funnel_process ul li:nth-child(7) {
        padding-bottom: 197px;
        padding-top: 0;
    }

    .funnel_process ul li:nth-child(6),
    .funnel_process ul li:nth-child(8) {
        padding-top: 156px;
        padding-bottom: 0;
    }

    .funnel_process {
        margin: 45px0
    }

    .funnel_process ul li:nth-child(6) .ico,
    .funnel_process ul li:nth-child(8) .ico {
        margin-bottom: 10px
    }

    .funnel_process ul li:nth-child(6) .info_txt,
    .funnel_process ul li:nth-child(8) .info_txt {
        margin-bottom: 11px
    }

    .funnel_slide_wrap {
        padding: 0 20px;
    }

    .funnel_slide>ul>li {
        padding: 20px;
    }

    .funnel_slide>ul>li .funnel_tit_box .tit {
        font-size: 25px;
    }

    .funnel_slide>ul>li .funnel_tit_box .desc {
        font-size: 16px;
    }

    .funnel_slide>ul>li .funnel_tit_box ul li {
        font-size: 12px;
    }

    .funnel_chart .chart {
        width: 100%;
        height: auto;
        aspect-ratio: 1/0.8
    }

    .funnel_chart .y_line ul li {
        font-size: 10px
    }

    .funnel_chart .x_line ul li {
        font-size: 10px;
    }

    .funnel_chart .chart ul li>div {
        width: 30px;
    }

    .funnel_chart {
        width: 100%;
        padding-left: 75px;
    }

    .funnel_chart .x_line {
        padding-left: 75px
    }

    .funnel_chart_box .labels {
        font-size: 12px;
        gap: 15px
    }

    .funnel_chart_box .labels span {
        width: 10px;
        height: 10px;
    }

    .funnel_slide>ul>li .funnel_right_box .in_box .in_box_list li {
        font-size: 12px
    }

    .funnel_slide>ul>li .funnel_right_box .in_box .in_box_list .more_project {
        font-size: 10px;
    }

    .funnel_slide>ul>li .funnel_right_box .in_box .in_box_tit {
        font-size: 12px;
        padding: 0 10px;
    }

    .funnel_slide>ul>li .funnel_right_box .in_box .in_box_list {
        padding: 15px 10px;
    }

    .funnel_slide>ul>li .funnel_right_box .tit {
        font-size: 18px;
    }

    .funnel_slide>ul>li .funnel_right_box .tit span {
        width: 20px;
        height: 20px;
    }

    .funnel_slide>ul>li .funnel_right_box .in_box_table table th {
        font-size: 11px;
    }

    .funnel_slide>ul>li .funnel_right_box .in_box_table table td {
        font-size: 10px;
        padding: 0 5px;
    }

    .funnel_slide>ul>li .funnel_right_box .in_box_table table td.point,
    .funnel_slide>ul>li .funnel_right_box .in_box_table table th.point {
        font-size: 10px;
    }

    .funnel_slide .more_box a {
        line-height: 35px;
        font-size: 16px;
        width: 140px;
        text-align: left;
        padding-left: 20px;
    }

    .funnel_slide .more_box a span {
        width: 25px;
        height: 25px
    }

    .funnel_slide .more_box a span img {
        width: 14px;
    }

    .funnel_slide>ul>li .funnel_right_box .in_box_table table th,
    .funnel_slide>ul>li .funnel_right_box .in_box_table table td {
        height: 40px;
    }

    #sec10 {
        padding: 50px 20px
    }

    .title_box .title_desc2+.title_desc1 {
        margin-top: 18px;
    }

    #consulting_form {
        padding: 30px 20px;
    }

    #consulting_form .input_box {
        height: 40px;
    }

    #consulting_form .input_box input {
        font-size: 14px;
    }

    #consulting_form .input_box span {
        font-size: 14px;
    }

    #consulting_form textarea {
        padding: 20px;
        font-size: 14px;
        height: 180px;
    }

    #consulting_form .submit_btn {
        font-size: 16px;
    }

    #sec11 {
        padding: 50px 20px;
    }

    .news_list {
        gap: 15px;
    }

    .news_list li .news_title {
        font-size: 14px;
    }

    .news_list li .more {
        font-size: 12px;
    }

    .news_list li .more img {
        width: 12px;
    }

    #sec12 {
        padding: 50px 0
    }

    .ad_partner_list ul {
        gap: 30x
    }

    .ad_partner_list ul li {
        height: 35px;
        width: 100px;
    }

    .ad_partner_list ul li img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .ad_partner_list {
        gap: 30px;
        margin-top: 45px;
    }

    #sec13 {
        padding: 50px 20px;
    }

    #sec13 .partner_list ul {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }

    #sec13 .partner_list ul li {
        border-radius: 5px;
    }

    #ft {
        padding: 50px 20px;
        font-size: 12px
    }

    #ft>img {
        width: 110px;
    }

    #ft .ft_txt .copy {
        font-size: 11px;
        margin-top: 15px;
    }

    .funnel_slide_wrap .button {
        width: 35px;
        height: 35px;
        ;
    }

    .funnel_slide_wrap .button img {
        width: 10px;
        ;
    }

    .funnel_slide_wrap .button.prev {
        left: -10px;
    }

    .funnel_slide_wrap .button.next {
        right: -10px;
    }
}

@media(max-width:500px) {
    .title_box .title img {
        height: 45px
    }

    .title_box .title_desc1+.title_desc2 {
        font-size: 18px;
    }

    .title_box .title_desc1+.title_desc2 {
        margin-top: 15px;
    }

    .title_box .title+* {
        margin-top: 25px;
    }

    #sec3 .title_box .title_desc2 .point {
        font-size: 20px;
    }

    .title_box .title_desc2 .bg_point img {
        width: 92px;
    }

    .title_box .title_desc1 {
        font-size: 16px;
        word-break: keep-all
    }

    #sec2 {
        padding: 50px 20px;
    }

    #sec2 .line_box {
        padding: 45px 15px;
    }

    #sec2 .title_box {
        margin-bottom: 30px;
    }

    .awards_list li .txt .main_count {
        font-size: 17px;
    }

    .awards_list li {
        padding: 0;
    }

    .awards_list li .txt>img {
        width: 18px;
        height: 17px;
    }

    .awards_list li .list_tit {
        font-size: 12px;
    }

    .awards_list li .info {
        font-size: 10px;
        margin-top: 5px;
    }

    .emblem_list_box .tit_box .list_tit {
        font-size: 18px;
    }

    .emblem_list_box .tit_box .list_desc1 {
        font-size: 13px;
    }

    .emblem_list_box {
        margin-top: 30px;
        padding: 0;
    }

    .emblem_list li img {
        width: 80px;
        height: 80px;
    }

    .emblem_list li p {
        font-size: 12px;
        word-break: keep-all;
        margin-top: 15px;
    }

    #sec3 {
        padding: 50px 20px;
    }

    .team_list {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 25px;
    }

    .more_box a {
        max-width: 100%;
        font-size: 18px;
        line-height: 40px
    }

    .more_box a span {
        width: 30px;
        height: 30px;
    }

    .more_box a span img {
        width: 15px;
    }

    #sec4 {
        padding: 50px 20px;
    }

    .benefits_list li .tit {
        margin-bottom: 9px;
        align-items: start;
        padding-bottom: 7px;
    }

    .benefits_list li .tit p {
        font-size: 14px;
        word-break: keep-all
    }

    .benefits_list li .desc {
        font-size: 13px;
        word-break: keep-all
    }

    .benefits_list li .tit span {
        font-size: 11px;
        padding: 2px 9px;
    }

    .benefits_list li {
        padding: 20px 10px;
    }

    .more_box>p {
        font-size: 16px;
    }

    .benefits_list {
        margin-bottom: 25px;
    }

    #sec5 {
        padding: 50px 20px
    }

    .marketing_slide_wrap button {
        display: none;
    }

    #sec6 {
        padding: 50px 20px;
    }

    .story_list2>li .txt {
        padding: 15px 10px 15px;
        text-align: center;
    }

    .story_list1>li .txt_box .cate {
        font-size: 14px;
    }

    .story_list1>li .txt_box .desc {
        font-size: 16px;
    }

    .story_list2>li .txt .desc {
        font-size: 12px
    }

    .story_list2>li .txt .name {
        font-size: 12px;
        margin: 10px 0;
    }

    .story_list2 {
        gap: 15px;
        grid-template-columns: repeat(1, 1fr);
    }

    .story_list2>li .txt a {
        font-size: 12px;
        width: 100px;
        line-height: 28px
    }

    #sec7 {
        padding: 50px 20px
    }

    .title_box .title_desc2 {
        word-break: keep-all;
        font-size: 23px;
    }

    .title_box .title_desc1 {
        font-size: 13px;
    }

    .round_table table td {
        font-size: 5px;
        padding: 2px 3px;
    }

    .round_table table td .status.active::before {
        width: 4px;
        height: 4px;
        margin-right: 5px;
    }

    .round_table table th p {
        font-size: 5px;
        letter-spacing: -0.8px;
    }

    .round_table table th {
        font-size: 6px;
        padding: 8px 0
    }

    .funnel_process ul li .num {
        line-height: 22px;
        height: 22px;
        width: 22px;
        font-size: 12px;
    }

    .funnel_process ul li .info_txt .p1 {
        font-size: 11px;
    }

    .funnel_process ul li .info_txt .p2 {
        font-size: 10px;
    }

    .funnel_process ul li .ico {
        /* margin-top: 10px; */
        width: 25px;
    }

    .funnel_process ul li.bottom .ico {
        margin-bottom: 0;
    }

    .funnel_process ul li .info_txt .p2 {
        min-height: 53px;
    }

    .funnel_process ul li.top {
        top: 10px;
        padding-bottom: 158px;
        position: relative;
    }

    .funnel_process ul li.bottom {
        padding-top: 150px;
    }

    .funnel_process ul li:nth-child(5),
    .funnel_process ul li:nth-child(7) {
        padding-bottom: 150px;
        padding-top: 0;
    }

    .funnel_process ul li:nth-child(6),
    .funnel_process ul li:nth-child(8) {
        top: 0;
        padding-top: 157px;
        padding-bottom: 0;
    }

    .funnel_process {
        margin: 45px0
    }

    .funnel_process ul li:nth-child(6) .ico,
    .funnel_process ul li:nth-child(8) .ico {
        margin-bottom: 10px
    }

    .funnel_process ul li:nth-child(6) .info_txt,
    .funnel_process ul li:nth-child(8) .info_txt {
        margin-bottom: 0;
    }

    .funnel_slide_wrap {
        padding: 0 20px;
    }

    .funnel_slide>ul>li {
        padding: 20px;
    }

    .funnel_slide>ul>li .funnel_tit_box .tit {
        font-size: 25px;
    }

    .funnel_slide>ul>li .funnel_tit_box .desc {
        word-break: keep-all;
        font-size: 16px;
    }

    .funnel_slide>ul>li .funnel_tit_box ul li {
        font-size: 12px;
    }

    .funnel_chart .chart {
        width: 100%;
        height: auto;
        aspect-ratio: 1/0.8
    }

    .funnel_chart .y_line ul li {
        font-size: 10px
    }

    .funnel_chart .x_line ul li {
        font-size: 10px;
    }

    .funnel_chart .chart ul li>div {
        width: 20px;
    }

    .funnel_chart {
        width: 100%;
        padding-left: 75px;
    }

    .funnel_chart .x_line {
        padding-left: 75px
    }

    .funnel_chart_box .labels {
        font-size: 12px;
        gap: 15px
    }

    .funnel_chart_box .labels span {
        width: 10px;
        height: 10px;
    }

    .funnel_slide>ul>li .funnel_right_box .in_box .in_box_list li {
        font-size: 10px;
    }

    .funnel_slide>ul>li .funnel_right_box .in_box .in_box_list .more_project {
        right: 10px;
        font-size: 7px;
    }

    .funnel_slide>ul>li .funnel_right_box .in_box .in_box_tit {
        font-size: 12px;
        padding: 0 10px;
    }

    .funnel_slide>ul>li .funnel_right_box .in_box .in_box_list {
        padding: 15px 10px;
    }

    .funnel_slide>ul>li .funnel_right_box .tit {
        font-size: 18px;
    }

    .funnel_slide>ul>li .funnel_right_box .tit span {
        width: 20px;
        height: 20px;
    }

    .funnel_slide>ul>li .funnel_right_box .in_box_table table th {
        font-size: 9px;
        font-size: 8px;
        white-space: nowrap;
        border-top: 0;
        padding: 0 5px;
    }

    .funnel_slide>ul>li .funnel_right_box .in_box_table table td {
        font-size: 7px;
        padding: 0 5px;
    }

    .funnel_slide>ul>li .funnel_right_box .in_box_table table td.point,
    .funnel_slide>ul>li .funnel_right_box .in_box_table table th.point {
        font-size: 10px;
    }

    .funnel_slide .more_box a {
        line-height: 35px;
        font-size: 16px;
        width: 140px;
        text-align: left;
        padding-left: 20px;
    }

    .funnel_slide .more_box a span {
        width: 25px;
        height: 25px
    }

    .funnel_slide .more_box a span img {
        width: 14px;
    }

    .funnel_slide>ul>li .funnel_right_box .in_box_table table th,
    .funnel_slide>ul>li .funnel_right_box .in_box_table table td {
        height: 40px;
    }

    #sec10 {
        padding: 50px 20px
    }

    .title_box .title_desc2+.title_desc1 {
        margin-top: 18px;
    }

    #consulting_form {
        padding: 30px 10px;
    }

    #consulting_form .input_box {
        overflow: hidden;
        padding: 0 14px;
        height: 40px;
    }

    #consulting_form .input_box input {
        font-size: 12px;
    }

    #consulting_form .input_box span {
        font-size: 12px;
        font-weight: bold;
    }

    #consulting_form textarea {
        padding: 20px;
        font-size: 14px;
        height: 180px;
    }

    #consulting_form .submit_btn {
        font-size: 16px;
    }

    #sec11 {
        padding: 50px 20px;
    }

    .news_list {
        margin-top: 30px;
        gap: 15px;
    }

    .news_list li .news_title {
        font-size: 14px;
    }

    .news_list li .more {
        font-size: 12px;
    }

    .news_list li .more img {
        width: 12px;
    }

    #sec12 {
        padding: 50px 0
    }

    .ad_partner_list ul {
        gap: 30x
    }

    .ad_partner_list ul li {
        height: 35px;
        width: 100px;
    }

    .ad_partner_list ul li img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .ad_partner_list {
        gap: 30px;
        margin-top: 45px;
    }

    #sec13 {
        padding: 50px 20px;
    }

    #sec13 .partner_list ul {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }

    #sec13 .partner_list ul li {
        border-radius: 5px;
    }

    #ft {
        padding: 50px 20px;
        font-size: 12px
    }

    #ft>img {
        width: 110px;
    }

    #ft .ft_txt .copy {
        font-size: 11px;
        margin-top: 15px;
    }

    .funnel_slide_wrap .button {
        width: 35px;
        height: 35px;
        ;
    }

    .funnel_slide_wrap .button img {
        width: 10px;
        ;
    }

    .funnel_slide_wrap .button.prev {
        left: -10px;
    }

    .funnel_slide_wrap .button.next {
        right: -10px;
    }

    .awards_list li .txt .percent img {
        width: 10px;
    }

    .team_list li p {
        margin-top: 10px;
        font-size: 15px
    }

    .team_list li img {
        width: 70px;
    }

    .marketing_slide_wrap .swiper-pagination span {
        width: 11px;
        height: 11px;
    }

    .insta {
        width: 320px;
        height: 567px;
    }

    .insta>img {
        width: 100%;
    }

    .round_table table td p {
        font-size: 5px
    }

    .funnel_process ul li {
        width: 70px;
    }

    .funnel_process ul li.top .ico {
        margin-top: 0;
    }

    .funnel_process ul li .line {
        height: 20px;
    }

    .news_list li .thumb {
        border-radius: 10px;
    }

    .team_list li {
        aspect-ratio: auto;
    }

    #sec13 .partner_list ul {
        grid-template-columns: repeat(3, 1fr);
    }

    #sec9 {
        padding: 50px 0;
    }

    #hd .hd_wrap .logo img {
        width: 70px;
        ;
    }
}