#container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}
.w-1300 {
    width: 1300px;
    margin: 0 auto;
    @media all and (max-width: 1300px) {
        width: 100%;
        padding: 0 16px;
    }
}
#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: var(--black);
    width: 100%;
    height: 70px;
    z-index: 999;
    .hd-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 30px;
        margin: 0 auto;
    }
    .logo {
        display: block;
        background: url(../images/logo.webp) no-repeat;
        width: 85px;
        height: 42px;
        background-size: 100%;
        font-size: 0;
    }
    .topNav {
        float: right;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 6px;
        & > li {
            border-radius: 100px;
            height: 42px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 16px;
            padding: 0 25px;
        }
    }
}
@media all and (max-width: 768px) {
    #header {
        height: 56px;
        .hd-inner {
            padding: 0 16px;
        }
        .logo {
            width: 85px;
            height: 42px;
        }
        .topNav {
            float: right;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 6px;
            & > li {
                border-radius: 100px;
                height: 42px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 16px;
                padding: 0 25px;
            }
        }
    }
}
.content-body-wrap {
    padding-top: 70px;
    height: 100vh;
}
.gradient-bg {
    background: radial-gradient(105.46% 97.05% at 45.11% 50%, #6100ff 0%, #e5007c 100%), #fff;
}
.sec-join-wrap {
    width: 700px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    @media all and (max-width: 768px) {
        width: 100%;
    }
}
.sub-content-box {
    width: 100%;
    padding: 30px;
}
.header-util-right {
    display: flex;
    gap: 8px;
    & > a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        height: 36px;
        padding: 0 14px;
        font-size: 15px;
        border: 1px solid var(--gray-700) !important;
        background: var(--gray-900);
        color: var(--gray-200) !important;
        border-radius: 6px;
        white-space: nowrap;
        &::before {
            filter: var(--filter-white);
            width: 18px;
            height: 18px;
            display: block;
        }
    }
}
@media all and (max-width: 768px) {
    .header-util-right {
        gap: 4px;
        & > a {
            gap: 4px;
            height: 34px !important;
            padding: 0 6px;
            font-size: 13px;
            &::before {
                width: 14px !important;
                height: 14px !important;
            }
        }
    }
}
.content-scroll-box {
    display: flex;
    width: 100%;
    -ms-overflow-style: none;
    flex-direction: column;
    overflow: hidden auto;
    scroll-snap-type: y mandatory;
    margin-top: 70px;
    .sec-item {
        position: relative;
        scroll-snap-align: start;
        min-height: 100%;
        padding: 90px 0;
    }
}
@media all and (max-width: 768px) {
    .content-scroll-box {
        margin-top: 56px;
        .sec-item {
            padding: 60px 0;
        }
    }
}
.content-scroll-box::-webkit-scrollbar {
    display: none;
    background-color: #fff;
    height: 4px;
    width: 4px;
}
.content-scroll-box::-webkit-scrollbar-track {
    background-color: #fff;
}
.content-scroll-box::-webkit-scrollbar-thumb {
    background-color: #babac0;
    border-radius: 4px;
}
.content-title {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    font-family: 'JalnanGothic';
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.5px;
    & > li {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .badge {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 8px;
        padding: 7px 16px 3px;
        border-radius: 100px;
        background: #379854;
        color: var(--white);
        width: fit-content;
        &::before {
            content: '';
            background: url(../images/ico-earth.webp) no-repeat;
            background-size: 100%;
            width: 24px;
            height: 24px;
            display: flex;
        }
    }
    .title {
        font-size: clamp(34px, 4.5vw, 65px);
        line-height: 120%;
        & > span {
            display: flex;
        }
        .storng {
            display: flex;
            color: #e2ff30;
        }
    }
    .desc {
        font-family: 'Pretendard', sans-serif;
        font-size: clamp(15px, 4.5vw, 18px);
        line-height: 120%;
        font-weight: 400;
    }
}
@media all and (max-width: 768px) {
    .content-title {
        padding: 0 16px;
        gap: 8px;
        & > li {
            justify-content: center;
            align-items: center !important;
        }
        .badge {
            width: auto;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }
        .title {
            text-align: center;
            & > span {
                display: inline-block;
            }
            .storng {
                display: inline-block !important;
            }
        }
        .desc {
            text-align: center;
        }
    }
}
@media all and (max-width: 416px) {
    .content-title {
        gap: 8px;
    }
}
.intro-half-content-body {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 100vh;
    margin: 0 auto;
    gap: 50px;
    overflow: hidden;
    @media all and (max-width: 1280px) {
        justify-content: center;
    }
    @media all and (max-width: 1024px) {
        align-items: center;
    }
}
.right-1depth--container {
    height: 100%;
    position: relative;
    .darkbg {
        z-index: 10;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 60%, #000 100%);
    }
}
.left-1depth--container {
    display: flex;
    align-items: center;
    position: relative;
}
.visual-right-animated {
    display: flex;
    gap: 8px;
    .flow-wrap {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        position: relative;
        gap: 8px;
        & > img {
            width: 200px;
            height: 300px;
            object-fit: cover;
            border-radius: 8px;
            @media all and (max-width: 1024px) {
                width: 100px;
                height: 160px;
            }
        }
    }
    .photo-box-top img {
        animation: flow-top 5s linear infinite;
    }
    .photo-box-top-slow img {
        animation: flow-top 8s linear infinite;
    }
    .photo-box-down img {
        animation: flow-down 5s linear infinite;
    }
}
@media all and (max-width: 1024px) {
    .visual-right-animated {
        flex-direction: column;
        flex-wrap: nowrap;
        .flow-wrap {
            flex-direction: row;
            & > img {
                width: 136px;
                height: 170px;
            }
        }
        .photo-box-top img {
            animation: flow-top 5s linear infinite;
        }
        .photo-box-top-slow img {
            animation: flow-top 8s linear infinite;
        }
        .photo-box-down img {
            animation: flow-down 5s linear infinite;
        }
    }
}
@keyframes flow-top {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}
@keyframes flow-down {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}
@media all and (max-width: 1024px) {
    @keyframes flow-top {
        0% {
            transform: translate(0, 0);
        }
        100% {
            transform: translate(-50%, 0);
        }
    }
    @keyframes flow-down {
        0% {
            transform: translate(-50%, 0);
        }
        100% {
            transform: translate(0%, 0);
        }
    }
}
.section-wrap-01 {
    position: relative;
    height: calc(100vh - 70px);
    .section-01-title {
        display: flex;
        flex-direction: column;
        gap: 10px;
        & > li {
            font-size: 40px;
            color: var(--white);
        }
        .title {
            font-size: 58px;
            line-height: 100%;
            font-weight: 800;
        }
        .desc {
            padding: 20px 0 36px;
            font-size: 25px;
            line-height: 125%;
        }
    }
    .tilting-img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-10%, -50%);
        z-index: 50;
        display: flex;
        width: 48%;
        height: auto;
        will-change: transform;
        .tilting {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform-origin: center bottom;
            animation: tiltLeftRight 4s infinite ease-in-out;
        }
    }
    .btn-videoCall {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        padding: 0 30px;
        border-radius: 8px;
        color: var(--gray-100);
        background: linear-gradient(90deg, #985cfd 0%, #1c92ff 100%);
        font-size: 18px;
        width: fit-content;
    }
}
@media all and (max-width: 1024px) {
    .section-wrap-01 {
        .section-01-title {
            margin-top: 35px;
            gap: 10px;
            align-items: center;
            .title {
                font-size: 50px;
            }
            .desc {
                font-size: 22px;
                padding: 10px 0 16px;
                text-align: center;
            }
        }
        .tilting-img {
            width: 90%;
            transform: translate(-50%, -50%);
        }
        .btn-videoCall {
            font-size: 17px;
        }
    }
}
@media all and (max-width: 768px) {
    .section-wrap-01 {
        height: calc(100vh - 52px);
        .section-01-title {
            .title {
                font-size: 40px;
            }
            .desc {
                font-size: 18px;
            }
        }
        .tilting-img {
            transform: translate(-50%, -50%);
        }
    }
}
@media all and (max-width: 360px) {
    .section-wrap-01 {
        .section-01-title {
            .title {
                font-size: 32px;
            }
            .desc {
                font-size: 17px;
            }
        }
    }
}
@keyframes tiltLeftRight {
    0% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(10deg);
    }
}
.section-wrap-02 {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 50px;
    .sec-img-02 {
        max-width: 700px;
        min-width: 300px;
    }
}
.flex-column-gap {
    display: flex;
    flex-direction: column;
    gap: 100px;
    @media all and (max-width: 768px) {
        gap: 50px;
    }
}
.section-wrap-03 {
    display: flex;
    flex-direction: column;
    gap: 100px;
    height: 100% !important;
    background: rgb(var(--rgb-white), 5%);
    .sec-img-03 {
        width: 500px;
    }
    .float-left,
    .float-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 0 auto;
        width: 100%;
        .content-title {
            gap: 8px;
            .badge {
                padding: 7px 16px 3px;
                background: #610ced;
            }
            .title {
                font-size: clamp(16px, 3.4vw, 35px);
                line-height: 120%;
                .storng {
                    display: flex;
                    color: #e2ff30;
                }
            }
            .desc {
                font-family: 'Pretendard', sans-serif;
                font-size: clamp(14px, 2vw, 18px);
                line-height: 120%;
                font-weight: 400;
            }
        }
    }
}
@media all and (max-width: 1300px) {
    .section-wrap-03 {
        .float-left,
        .float-right {
            gap: 30px;
        }
        .float-left,
        .float-right {
            .content-title {
            }
        }
    }
}
@media all and (max-width: 1024px) {
    .section-wrap-03 {
        gap: 50px;
        .sec-img-03 {
            max-width: 90%;
            min-width: 300px !important;
        }
        .float-right {
            .content-title {
                order: 1;
            }
            .sec-img-03 {
                order: 2;
            }
        }
        .float-left,
        .float-right {
            justify-content: center !important;
            gap: 20px;
            .content-title {
                align-items: center;
                gap: 8px;
                .desc {
                    text-align: center;
                }
            }
        }
    }
}
@media all and (max-width: 414px) {
    .section-wrap-03 {
        .sec-img-03 {
        }
        .float-left,
        .float-right {
            .content-title {
                .badge {
                    font-size: 13px;
                }
            }
        }
    }
}
#footer {
    background: var(--black);
    padding: 20px 0;
    width: 100%;
    .footer-inner {
        width: 1200px;
        margin: 0 auto;
        @media all and (max-width: 1200px) {
            width: 100%;
            padding: 0 16px;
        }
    }
    .link-wrap {
        display: flex;
        gap: 16px;
        align-items: center;
        height: 40px;
        & > a {
            font-size: 14px;
            color: var(--gray-400);
        }
    }
    .address {
        color: var(--gray-600);
        padding: 2px 0;
        .row {
            font-size: 14px;
            display: flex;
            gap: 20px;
            @media all and (max-width: 768px) {
                &:nth-child(1) {
                    flex-direction: row;
                    gap: 16px;
                }
                &:nth-child(4) {
                    flex-direction: row;
                    gap: 16px;
                }
                gap: 2px;
                flex-direction: column;
            }
        }
    }
}
@media all and (max-width: 1024px) {
    .footer {
        width: 100%;
        padding: 0 16px 20px 16px;
        margin-top: 50px;
        .menu {
            height: 46px;
            & > a {
                font-size: 14px;
            }
        }
    }
    .footer .address {
        font-size: 12px;
        line-height: 18px;
        word-break: keep-all;
        p.row:nth-child(3) {
            flex-direction: column;
            gap: 0;
        }
    }
    .section-modal-popup .mod-inContent .pop-textbox {
        font-size: 12px;
        line-height: 22px;
    }
}
#dark-md-bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}
.modalLayer-popup {
    position: relative;
}
.section-modal-popup {
    display: none;
    width: calc(100% - 100px);
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    height: 70%;
    box-shadow: 0 15px 25px 0 rgb(0 0 0 / 20%);
    overflow-y: scroll;
}
.mod-inContent {
    position: relative;
    &:after {
        content: '';
        display: table;
        clear: both;
    }
    .btn-close i {
        position: absolute;
        top: 10px;
        right: 15px;
        width: 20px;
        height: 20px;
        background: url(../images/btn-close.svg) no-repeat center center;
        background-size: 100%;
        z-index: 1;
        display: inline-block;
    }
    .btn-close:hover,
    .btn-close:focus {
        cursor: pointer;
    }
    .pop-content-box {
        font-size: 14px;
        line-height: 140%;
    }
}
@media all and (max-width: 767px) {
    .section-modal-popup {
        width: 90%;
        padding: 16px;
    }
}
.hd-title {
    font-size: 30px;
    color: var(--white);
}
.sns-button-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    & a {
        display: flex;
        align-items: center;
        gap: 14px;
        height: 48px;
        padding: 0 50px 0 60px;
        font-weight: 600;
        font-size: 16px;
    }
}
.join-caption {
    padding-top: 30px;
    text-align: center;
    color: var(--white);
    font-size: 14px;
}
.w-member-wrap {
    width: 700px;
    background: var(--gray-900);
    height: 100%;
    margin: 0 auto;
    @media all and (max-width: 768px) {
        width: 100%;
    }
}
.app-title-area {
    display: flex;
    align-items: center;
    margin: 0 auto;
    height: 56px;
    color: var(--gray-100);
    max-width: 100%;
    z-index: 500;
    padding: 0 16px 0;
    background: rgb(var(--rgb-white), 5%);
    .title {
        width: 100%;
        text-align: center;
        font-size: 17px;
        font-weight: 600;
    }
    .btn-back {
        display: block;
        background: url(../images/arrow-left.svg) no-repeat center;
        width: 14px;
        height: 14px;
        cursor: pointer;
        filter: var(--filter-gray-500);
    }
}
.panel-input-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    & > input {
        display: flex;
        width: 100% !important;
    }
    .row-item {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 4px 0;
        width: 100%;
        &:after {
            content: '';
            display: table;
            clear: both;
        }
        &:last-child {
            margin-bottom: 0;
        }
        .subject {
            display: flex;
            gap: 4px;
            font-size: 15px;
            font-weight: 600;
            color: var(--gray-400);
        }
        .btn-selectBox {
            border: 1px solid var(--gray-300);
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            &::after {
                content: '';
                background: url(../svg/arrow-down.svg) no-repeat;
                background-size: 100% auto;
                width: 20px;
                height: 20px;
                filter: var(--filter-gray-600);
            }
        }
        .important-warning {
            display: block;
            color: var(--red);
            font-size: 13px;
            font-weight: 400;
        }
        .important-error {
            color: var(--red);
            font-size: 13px;
            font-weight: 300;
        }
        .important-notice {
            display: block;
            color: var(--primary-200);
            font-size: 13px;
        }
        .in-row {
            display: flex;
            align-items: center;
            gap: 6px;
            & > input {
                display: flex;
                width: 100% !important;
            }
        }
        .in-col {
            display: flex;
            flex-direction: column;
            gap: 4px;
            position: relative;
            & > input {
                width: 100%;
            }
            .in-col-in {
                display: flex;
                gap: 6px;
                & > input {
                    display: flex;
                    width: 100% !important;
                }
            }
        }
    }
    .important-note {
        display: block;
        color: var(--gray600);
        font-size: 13px;
    }
    .important-caution {
        display: block;
        color: var(--red);
        font-size: 13px;
    }
    .eyeView {
        position: absolute;
        top: 12px;
        right: 10px;
        .security[type='checkbox'] {
            display: none !important;
        }
        .security[type='checkbox'] + .Link {
            color: #222;
        }
    }
}
.btn-inputReg {
    background: var(--gray-800);
    color: var(--gray-500);
    height: 52px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    &.active {
        color: var(--gray-100);
        background: var(--primary-500);
        border: 1px solid var(--primary-500) !important;
    }
}
.password-serach {
    text-align: right;
    font-size: 14px;
    color: var(--gray-100);
}
.btn-auth-number {
    margin-top: 6px;
    font-size: 14px;
    margin-left: auto;
    border: 1px solid var(--primary-300);
    color: var(--primary-300);
    padding: 6px 8px;
}
.h2-pay-title {
    font-size: 18px;
    padding: 10px 0;
}
.payment-amount-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: rgb(var(--rgb-white), 5%);
    border: 1px solid rgb(var(--rgb-white), 20%);
    border-radius: 8px;
    padding: 16px;
    .myPoint {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: start;
        gap: 8px 0;
        .title {
            font-size: 15px;
            color: var(--gray-300);
        }
        .point {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: -0.7px;
            .ico-p {
                font-weight: 400;
                font-size: 16px;
            }
        }
    }
    .price {
        color: var(--secondary-500);
        font-size: 17px;
        display: flex;
        gap: 2px;
    }
}
.payment-method-select {
    display: flex;
    gap: 8px;
    & > a {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        gap: 4px;
        border-radius: 6px;
        height: 55px;
        flex: 1 0 auto;
        color: var(--gray-400);
        background: var(--black);
        &.active {
            color: var(--gray-100);
            border: 1px solid var(--primary-100);
        }
    }
    .btn-creditCard {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--gray-200);
        &::before {
            content: '';
            background: url(../images/ico-creditCard.svg) no-repeat center;
            background-size: 100%;
            width: 24px;
            height: 24px;
            display: flex;
            filter: var(--filter-gray-400);
        }
    }
    .btn-paypal {
        font-size: 0;
        &::after {
            content: '';
            background: url(../images/sns-paypal-gray.svg) no-repeat center;
            background-size: 100%;
            width: 80px;
            height: 26px;
            display: flex;
        }
    }
}
.bank-deposit-info {
    & > li {
        display: grid;
        grid-template-columns: 1.2fr 4fr;
        align-items: center;
        height: 50px;
        border-bottom: 1px solid var(--gray-800);
        .subj {
            font-size: 15px;
            color: var(--gray-400);
        }
        .paybox {
            font-size: 16px;
            display: flex;
            justify-content: flex-end;
            gap: 2px;
        }
        .paytotal {
            color: var(--secondary-500);
            font-size: 18px !important;
        }
    }
}
.footer-notice-caution {
    background: rgb(var(--rgb-white), 3%);
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    dd {
        color: var(--gray-300);
    }
}

.sns-symbol-wrap {
    display: flex;
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    gap: 20px;
    z-index: 100;

    & > a {
        display: flex;
        align-items: center;
        border-radius: 10px;
        height: 65px;
        padding: 0 22px;
        color: var(--gray-100);
        background: var(--black);
        font-size: 20px;
        border: 1px solid var(--white);
        white-space: nowrap !important;
        font-weight: 800;
        &::before {
            display: block;
            width: 24px;
            height: 24px;
            margin-right: 6px;
        }
    }

    .btn-store-ios {
        &::before {
            content: '';
            background: url('../images/sns-ios.svg') no-repeat;
            background-size: contain;
            filter: var(--filter-white);
        }
    }

    .btn-store-google {
        background: var(--white);
        color: var(--black);

        &::before {
            content: '';
            background: url('../images/ico-store-google.svg') no-repeat;
            background-size: contain;
            filter: unset;
        }
    }

    .btn-google {
        &::before {
            content: '';
            background: url('../images/sns-google.svg') no-repeat;
            background-size: 100%;
            filter: unset;
        }
    }

    .btn-email {
        &::before {
            content: '';
            background: url('../images/ico-email.svg') no-repeat;
            background-size: 100%;
            filter: var(--filter-white);
        }
    }
}

@media all and (max-width: 768px) {
    .sns-symbol-wrap {
        flex-direction: column;
        padding: 8px;
        border-radius: 10px;
        width: 90%;
        bottom: 20px;
        gap: 16px;
        & > a {
            justify-content: center;
            height: 56px;
            padding: 0 10px;
            font-size: 17px;
            border-radius: 8px;
            &::before {
                width: 20px;
                height: 20px;
            }
        }
    }
}
