/* 데스크톱 등 모바일이 아닌 환경에서는 <br> 숨기기 */
@media (min-width: 768px) {
    .mobile-break {
        display: none;
    }
}



/* 우측 고정 배너 기본 스타일 */
#fixedBanner {
    position: fixed;
    right: -500px;
    top: 0;
    width: 500px;
    height: 100%;
    background-color: #272727;
    box-shadow: -3px 0 3px rgba(0, 0, 0, 0.05);
    z-index: 100;
    transition: right 0.8s cubic-bezier(0.6, 0, 1, 1);
}

/* 배너 오픈 상태 */
#fixedBanner.open {
    right: 0;
}

/* 토글 버튼 스타일 */
#fixedToggle {
    position: absolute;
    top: 70%;
    margin-top: -40px;
    left: -80px;
    width: 80px;
    height: 80px;
    border: none;
    background: #f63737;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

#fixedToggle:hover {
    background: #666;
}

#fixedToggle span {
    color: #fff;
}

/* 모바일 화면에서는 배너 숨김 */
@media screen and (max-width: 1024px) {
    #fixedBanner {
        display: none;
    }
}

/* 문의하기 버튼 스타일 */
#subbtn {
    background: rgb(0, 150, 230);
    margin: 15px auto 0;
    border: currentColor;
    width: 200px;
    height: 50px;
    text-align: center;
    color: rgb(255, 255, 255);
    line-height: 50px;
    font-size: 25px;
    display: block;
}


/* r_inquiry */
.r_inquiry {
    width: 100%;
    height: 100vh;
    margin-top: 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    z-index: 30;
}


.r_inquiry-box {
    width: 100%;
    padding: 50px;
    height: 100%;
    ;
}

.r_inquiry-box .r_inquiry-form {
    width: 100%;
    height: 100%;
}

.r_inquiry-box .r_inquiry-form .tit_box {
    width: 100%;
    text-align: center;
    height: 120px;
    font-size: 30px;
}

.r_inquiry-box .r_inquiry-form .tit_box div {
    font-size: 15px;
}

.r_inquiry-box .user-box {
    position: relative;
    z-index: 5;
    padding-bottom: 20px;
}


.r_inquiry-box .user-box span {
    position: relative;
    z-index: 5;
    padding-bottom: 20px;
}



.r_inquiry-box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
    appearance: none;
    box-shadow: none;
    resize: none;
    position: relative;
    z-index: 5;
        font-family: 'GmarketSansMedium';
}



/* 기본 라벨 스타일 */
.r_inquiry-box .user-box label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: 0.5s;
    z-index: 5;
}

/* .active 상태일 때 (JavaScript로 토글) */
.r_inquiry-box .user-box.active label {
    top: -20px;
    left: 0;
    color: #03e9f4;
    font-size: 12px;
}

/* 포커스 시 하단 테두리 강조 */
.r_inquiry-box .user-box input:focus,
.r_inquiry-box .user-box textarea:focus {
    border-bottom: 1px solid #03e9f4;
}



.button-select {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.button-select button {
    padding: 8px 10px 5px 10px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease, border-color 0.3s ease;
    font-size: 13px;
    font-weight: 200;
    line-height: 20px;
}

/* 선택된 버튼 스타일 */
.button-select button.active {
    background: #03e9f4;
    border-color: #03e9f4;
}

.r_inquiry-box .checkbox-box {
    display: flex;
    align-items: center;
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
}

.r_inquiry-box .checkbox-box input {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 4px;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background: transparent;
}

.r_inquiry-box .checkbox-box input:checked {
    background: #03e9f4;
    border-color: #03e9f4;
}

.r_inquiry-box .checkbox-box input:checked::after {
    content: '\2713';
    font-size: 14px;
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

/* 모바일 (최대 768px) */
@media screen and (max-width: 768px) {
    .r_inquiry {
        width: 100%;
        height: auto;
        margin-top: 200px;
    }

    .r_inquiry-box .r_inquiry-form {
        padding: 5px;
        height: auto;
    }

    .r_inquiry-bg {
        width: 100%;
        height: 300px;
        background: url('/images/r_inquiry_bg.webp') no-repeat center center/cover;
    }

    .r_inquiry-box {
        width: 100%;
        padding: 10px;
        height: 700px;
    }

    .r_inquiry-box .r_inquiry-form {
        padding-top: 50px;
        width: 100%;
        height: 100%;
    }

    .r_inquiry-box .user-box textarea.active {
        height: 200px;
    }
}








/* 기본 로고 스타일 */
.logo {
    position: absolute;
    top: 5px;
    left: 20px;
    /* 좌측 상단 위치 */
    z-index: 15;
    font-size: 35px;
    /* 기본 폰트 크기 (PC) */
    color: white;
    /* 기본 흰색 */
    background-color: transparent;
    padding: 10px 0px;
    transition: font-size 0.8s ease-in-out, mix-blend-mode 0.8s ease-in-out;
    font-family: 'GangwonEduPowerExtraBoldA';
    font-weight: 700;

}


.s_logo {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    transition: font-size 0.8s ease-in-out, mix-blend-mode 0.8s ease-in-out;
    font-weight: 700;

}



/* 모바일 - 기본 폰트 크기 35px */
@media screen and (max-width: 768px) {
    .logo {
        font-size: 25px;
    }


}




/*===========================================
main video
===========================================*/


.section01 {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
}

.black_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* 검은색 투명 레이어 */
    z-index: 11;
    pointer-events: none;
}



/* 검은색 레이어 */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 15;
    opacity: 1;
    animation: holdBlack 2s ease-out, slideUpFade 1s ease-out 2s forwards;
}

@keyframes holdBlack {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

/* 위로 올라가면서 사라지는 효과 */
@keyframes slideUpFade {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.section01 .main_video {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}

.section01 .main_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main_tit_box {
    position: absolute;
    z-index: 16;
    /* 블랙 레이어 위에 위치 */
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
}

/* 기본 흰색 → 블랙 배경 대비 유지 */
.main_tit_box .main_tit {
    font-size: 45px;
    font-weight: bold;
    color: white;
    line-height: 80px;
    letter-spacing: 8px;
}

.main_tit_box .main_stit {
    font-size: 25px;
    font-weight: bold;
    color: white;
    line-height: 35px;
    letter-spacing: 3px;
}


@media screen and (max-width: 768px) {


    .section01 {
        width: 100%;
        height: 650px;
        position: relative;
        overflow: hidden;
        display: flex;
    }

    .black_overlay {

        height: 650px;


    }


    .main_tit_box {
        width: 100%;
        text-align: center;
        top: 46%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 3px;


    }



    .main_tit_box .main_tit {
        font-size: 24px;
        color: white;
        line-height: 30px;
        letter-spacing: -1px;
        transition: font-size 0.8s ease-in-out, mix-blend-mode 0.8s ease-in-out;
        padding: 20px 0px;

    }

    .main_tit_box .main_stit {
        font-size: 20px;
        color: white;
        line-height: 25px;
        letter-spacing: 1px;
        transition: font-size 0.8s ease-in-out, mix-blend-mode 0.8s ease-in-out;

    }


}



/* 텍스트 페이드 인 */
.main_tit_box div {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

/* 개별 요소 애니메이션 딜레이 설정 */
.main_tit_box .main_stit:nth-child(1) {
    animation-delay: 0.3s;
}

.main_tit_box .main_stit:nth-child(2) {
    animation-delay: 0.6s;
}

.main_tit_box .main_tit {
    animation-delay: 0.9s;
}

.main_tit_box .main_stit:nth-child(4) {
    animation-delay: 1.2s;
    color: #ffffff;
    position: relative;
    display: inline-block;
    /* 언더라인 크기를 텍스트에 맞추기 */
}

/* 언더라인 효과 */
.main_tit_box .main_stit:nth-child(4)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    /* 텍스트 아래에 위치 */
    width: 0%;
    height: 5px;
    /* 언더라인 두께 */
    background-color: rgba(255, 255, 255, 0.69);
    /* 언더라인 색상 */
    transition: width 0.5s ease-in-out;
    mix-blend-mode: difference;
    /* 배경과 색상 반전 */
}

/* 애니메이션 완료 후 언더라인 등장 */
.main_tit_box .main_stit:nth-child(4).animate::after {
    width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* company { */


.company {
    width: 100%;
    background-color: #ffffff;
    padding: 0px 10px;
    height: 800px;
    position: relative;
    overflow: hidden;
}

.cleative {
    position: absolute;
    z-index: 1;
    bottom: 50px;
    left: 50px
}

.company .company_box {
    display: flex;
    width: 100%;
    max-width: 1200px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    height: 100%;
    margin: 0 auto;
}

.company .company_item {
    color: #000;
    width: 100%;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;

}



.company .company_item .c_i_box_f {
    padding-top: 15%;

}



.company .company_item .c_i_box_f .yea_tit {
    font-size: 45px;
    padding-bottom: 25px;
}



.company .company_item .c_i_box_m {
    padding-top: 50%;

}


.company .company_item .c_i_box_e {
    padding-top: 5%;
}


.company .company_item:nth-child(1) {
    border-left: solid 1px #d0d0d0;

}

.company .company_item:nth-child(2) {
    border-left: solid 1px #d0d0d0;
    border-right: solid 1px #d0d0d0;
}

.company .company_item:nth-child(3) {
    border-right: solid 1px #d0d0d0;
    position: relative;
}


/* 모바일 스타일 */
@media (max-width: 768px) {

    .company {
        width: 100%;
        background-color: #fff;
        padding: 50px 10px;
        height: auto;
    }


    .company .company_box {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
    }

    .company .company_item {
        width: 100%;
        height: auto;
        border-left: none;
        border-right: none;
        border-bottom: solid 1px #d0d0d0;
        padding: 20px 0;

    }

    .company .company_item .c_i_box_f {
        padding-top: 5%;

    }


    .company .company_item .c_i_box_m {
        padding-top: 5%;

    }


    .company .company_item .c_i_box_e {
        padding-top: 5%;
    }


    .c_i_box_f .fs-50 {
        font-size: 35px;
        line-height: 50px;
    }


    .c_i_box_m .fs-rem-10 {
        font-size: 65px;
    }

    .c_i_box_f {
        text-align: center
    }

    .c_i_box_m {
        text-align: center
    }


    .c_i_box_e {
        text-align: center;
    }

    .c_i_box_e .pos-absolute {
        position: static
    }





    .company .company_item:nth-child(1) {
        border-left: none
    }

    .company .company_item:nth-child(2) {
        border-left: none;
        border-right: none;
    }

    .company .company_item:nth-child(3) {
        border-right: none;
        position: static;
        border-bottom: none;
    }


    .c_i_box_f .fs-50 {
        font-size: 30px;
        line-height: 45px;
    }

    .c_i_box_m,
    .c_i_box_e,
    .c_i_box_f .fs-24 {
        font-size: 15px;
        line-height: 35px;
    }


    .c_i_box_e .top-10 {
        border-bottom: solid 1px #d0d0d0;
        padding-bottom: 30px;
    }

    .fw-900 {
        padding-top: 30px;
    }

    .c_i_box_e .bottom-10 {
        padding-top: 30px;
    }


    .c_i_box_m .fs-rem-8 {
        font-size: 55px;
    }

    .c_i_box_e .fs-rem-8 {
        font-size: 55px;
    }


}


/* company } */



/* price { */

.price {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
    height: auto;
    position: relative;
    background-image: url('/images/gnme_dot.png');
    background-repeat: no-repeat;
    background-position: right 50px top 50px;
    /* 우측 50px, 상단 고정 */
    background-size: auto;

    transition: background-position 0.5s ease-out;
    /* 부드러운 이동 효과 */

    background-color: #f0f0f0;
}


.price .price_tit_box {

    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
    text-align: left;
    color: #000;
    padding-bottom: 80px;


}



.price .price_box {
    display: flex;
    width: 100%;
    max-width: 1400px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;

}

.price .price_item {
    color: #000;
    width: 100%;
    height: 300px;
    padding: 20px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.47);
    margin: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.price .price_item:hover {
    transform: perspective(1000px) translateZ(30px);
    /* 튀어나오는 효과 */
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
    /* 그림자 더 진하게 */
}


.price .price_item:nth-child(1) {
    margin-left: 0px;

}

.price .price_item:nth-child(3) {
    margin-right: 0px;

}




.price_dex_box .mony {
    font-size: 45px;
    font-weight: 700;
    color: #f63737;
    padding: 0px 5px;
}

.price_line {
    height: 2px;
    background-color: #dedede;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    /* 왼쪽에서 확장 */
    transition: transform 1.2s ease-out;
}

.price_line.animate {
    transform: scaleX(1);
}

.price .price_tit_box .price_tit {
    font-size: 35px;
    font-weight: 700;
    padding-bottom: 15px;
}

.price .price_stit {
    font-size: 25px;
    font-weight: 400;

}




.price_tit_b {
    font-size: 25px;
    font-weight: 700;
    padding-bottom: 5px;
}

.price_tit_s {
    font-size: 13px;
    padding-bottom: 10px;
}






.price_dex_box .price_tit {
    padding: 5px 0px;
    font-size: 20px;
    font-weight: 700
}

.price_dex_box div {

    margin-bottom: 5px;

}

.price_dex_box .price_dex {
    font-family: 'GmarketSansMedium';

    font-size: 15px;
    font-weight: 200;
    line-height: 25px;
    padding-top: 15px;
}

.price_dex_box br {}


/* 모바일 스타일 */
@media (max-width: 768px) {

    .price {
        width: 100%;
        background-color: #fff;
        padding: 50px 0px;
        height: auto;

        background-image: url('/images/gnme_dot_m.png');

    }


    .price .price_box {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        height: 100%;
    }



    .price .price_tit_box .price_tit {
        font-size: 30px;
        font-weight: 700;
    }

    .price .price_stit {
        font-size: 20px;
        font-weight: 400;
        line-height: 25px;
    }


    .price_tit_b {
        font-size: 20px;
        font-weight: 700;
        padding-bottom: 5px;
    }

    .price_tit_s {
        font-size: 13px;
        padding-bottom: 5px;
    }




    .price .price_item {
        color: #000;
        width: 100%;
        height: auto;
        margin: 20px 0px;
        background-color: rgba(255, 255, 255, 0.47);
        padding-bottom: 30px;


    }


    .price .price_tit_box {

        padding: 30px;
        padding-bottom: 80px;
        word-break: keep-all;

    }



    .price_dex_box .price_dex {

        font-size: 14px;
        font-weight: 200;
        line-height: 23px;
        letter-spacing: 0px;
    }




}


/* inquiry */
.inquiry {
    width: 100%;
    height: 1000px;
    margin-top: 100px;
    position: relative;
    background-color: #272727;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.inquiry-bg {
    width: 50%;
    height: 100%;
    background: url('/images/inquiry_bg.png') no-repeat center center/cover;
}

.inquiry-box {
    width: 50%;
    padding: 50px;
    height: 100%;
}

.inquiry-box .inquiry-form {
    background: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    z-index: 10;
    padding: 50px;
    height: auto;
}

.inquiry-box .inquiry-form .tit_box {
    width: 100%;
    text-align: center;
    height: 120px;
    font-size: 30px;
    padding-bottom: 50px;
}

.inquiry-box .inquiry-form .tit_box div {
    font-size: 15px;
}

.inquiry-box .user-box {
    position: relative;
    z-index: 5;
    padding-bottom: 20px;
}


.inquiry-box .user-box span {
    position: relative;
    z-index: 5;
    padding-bottom: 20px;
}



.text_area_t {
    padding-bottom: 8px;
    font-weight: 1em
}

.textare_d {
    border: 1px #fff solid;
    background-color: #272727;
    width: 100%;
    height: 100px;
    color: #fff;
    padding: 5px;
    background-color: #272727;
    font-family: 'GmarketSansMedium';
}

.submit_btn {
    background-color: #3788f6;
    width: 50%;
    font-weight: bold;
    font-size: 22px;
    padding: 15px;
    color: #ffffff;
    font-weight: bold;
    border: none
}


.inquiry-box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
    appearance: none;
    box-shadow: none;
    resize: none;
    position: relative;
    z-index: 5;
        font-family: 'GmarketSansMedium';
}


/* 기본 라벨 스타일 */
.inquiry-box .user-box label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: 0.5s;
    z-index: 5;
}

/* .active 상태일 때 (JavaScript로 토글) */
.inquiry-box .user-box.active label {
    top: -20px;
    left: 0;
    color: #03e9f4;
    font-size: 12px;
}

/* 포커스 시 하단 테두리 강조 */
.inquiry-box .user-box input:focus {
    border-bottom: 1px solid #03e9f4;
}

/* 기존 :valid 관련 선택자 제거 - active 클래스로만 처리 */
/*
.inquiry-box .user-box input:focus ~ label,
.inquiry-box .user-box textarea:focus ~ label {
    top: -20px;
    left: 0;
    color: #03e9f4;
    font-size: 10px;
}
*/

.button-select {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.button-select button {
    padding: 6px 10px 6px 10px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease, border-color 0.3s ease;
    font-size: 13px;
    font-weight: 200;
    line-height: 20px;
}

/* 선택된 버튼 스타일 */
.button-select button.active {
    background: #03e9f4;
    border-color: #03e9f4;
}


.inquiry-box .checkbox-box {
    display: flex;
    align-items: center;
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
}

.inquiry-box .checkbox-box input {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 4px;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background: transparent;
    font-family: 'GmarketSansMedium';
}

.inquiry-box .checkbox-box input:checked {
    background: #03e9f4;
    border-color: #03e9f4;
}

.inquiry-box .checkbox-box input:checked::after {
    content: '\2713';
    font-size: 14px;
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

/* 모바일 (최대 768px) */
@media screen and (max-width: 960px) {
    .inquiry {
        width: 100%;
        height: auto;
        margin-top: 200px;
    }

    .inquiry-box .inquiry-form {
        padding: 5px;
        height: auto;
    }

    .inquiry-bg {
        width: 100%;
        height: 300px;
        background: url('/images/inquiry_bg.png') no-repeat center center/cover;
    }

    .inquiry-box {
        width: 100%;
        padding: 10px;
        height: 1000px;
    }

    .inquiry-box .inquiry-form {
        padding-top: 50px;
        width: 100%;
        height: 100%;
    }


}


/* ====================================================
      Service Section
==================================================== */


.service {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


.intro-grand-prize {
    position: relative;
    margin-top: 50px;
    ;
}

.service_stit {
    width: 100%;
    font-size: 15px;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 20px;
}

.service_tit {
    width: 100%;
    font-size: 55px;
    text-align: center;
    font-weight: 700;
    padding-bottom: 50px;
}


@media screen and (max-width: 768px) {
    .service_tit {

        font-size: 35px;
        padding-bottom: 20px;

    }


}



.intro-grand-prize .prize-item {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 12rem;
}

.intro-grand-prize .prize-item:last-of-type {
    margin-bottom: 0;
}

/* 수직 퍼센트 바 */
.intro-grand-prize .prize-percent-bar {
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -1.5px;
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

/* 퍼센트 바 채우기 영역 */
.intro-grand-prize .prize-percent-bar .percent-bar-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #00f7ef;
    z-index: 1;
}

.intro-grand-prize .prize-percent-bar .percent-bar-child .point {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 5;
    background: #00f7ef;
    margin-left: -24px;
    transition: transform 0.3s cubic-bezier(0.42, 0, 1, 1);
    /* 박스 섀도우를 이용한 펄스 애니메이션 효과 */
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 247, 239, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 247, 239, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 247, 239, 0);
    }
}


/* ====================================================
   Service Section
==================================================== */
#service .left-item {
    width: 100%;
    text-align: right;
    padding-right: 55%;
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 35px;

}

#service .right-item {
    width: 100%;
    text-align: left;
    padding-left: 55%;
    height: auto;
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 35px;
}


.left-item .item_tit {
    font-size: 25px;
    padding-bottom: 20px;
    width: 100%;
}



.right-item .item_tit {
    font-size: 25px;
    padding-bottom: 20px;
    width: 100%;
}


.item_dex_text {
    font-size: 15px;
    font-weight: 200;
    font-family: 'GmarketSansMedium';
    width: 100%;

}


/* 기본 텍스트 전환 효과 (부드러운 색상 전환) */
.left-item .item_tit,
.right-item .item_tit,
.left-item .item_dex_text,
.right-item .item_dex_text {
    transition: color 0.5s ease;
    width: 100%;
}

/* .point 와 겹쳤을 때 활성화된 상태 */
.left-item.active .item_tit,
.right-item.active .item_tit {
    color: #00f7ef;
    width: 100%;
}

.left-item.active .item_dex_text,
.right-item.active .item_dex_text {
    color: #cffafc;
    width: 100%;
}






/* ====================================================
   Responsive Styles (max-width: 768px)
==================================================== */
@media all and (max-width: 768px) {
    .intro-grand-prize .prize-percent-bar {
        left: 20px;
        margin-left: 0;
    }

    .intro-grand-prize .prize-percent-bar .percent-bar-child .point {
        width: 30px;
        height: 30px;
        margin-left: -15px;
    }

    .intro-grand-prize .prize-percent-bar .percent-bar-child .point::before {
        bottom: 50%;
        /* 원의 위쪽에 위치 */
    }

    #service .left-item {
        padding-right: 10px;
        ;
        width: 100%;
        text-align: left;
        padding-left: 50px;
        height: 300px;
    }

    #service .right-item {
        padding-right: 10px;
        width: 100%;
        text-align: left;
        padding-left: 50px;
        height: 300px;
    }

    .point svg {
        display: none
    }

}





/*footer */
.footer {
    width: 100%;
    position: relative;
    height: 300px;
    background-color: #292929;


}



.footer .footer_box {
    font-family: 'GmarketSansMedium';
    width: 100%;
    height: auto;
    max-width: 1400px;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding-top: 50px;
    line-height: 28px;
    padding-left: 20px;
    padding-right: 20px;


}

.foot_com {
    font-size: 23px;
    padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .footer {
        height: 400px;

    }

    .foot_dec {
        font-size: 13px;
        font-weight: 200
    }

}



.parallax > use {
    animation: move-forever 15s linear infinite;

    &:nth-child(1) {
        animation-delay: -4s;
    }

    &:nth-child(2) {
        animation-delay: -4s;
        animation-duration: 10s
    }

    &:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 8s
    }
}

@keyframes move-forever {
    0% {
        transform: translate(-90px, 0%)
    }

    100% {
        transform: translate(85px, 0%)
    }
}



.editorial {

    width: 100%;
    height: 100px;
    margin: 0;
    position: absolute;
    bottom: 0px;
    margin-bottom: -20px;
    z-index: 1;
}
