@charset "UTF-8";

@font-face {
    font-family: 'NanumSquareRound';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/NanumSquareRound.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NanumSquareRoundEB';
    src: url('https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareRound/NanumSquareRoundEB.eot');
    src: url('https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareRound/NanumSquareRoundEB.eot?#iefix') format("embedded-opentype"), url('https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareRound/NanumSquareRoundEB.woff2') format("woff2"), url('https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareRound/NanumSquareRoundEB.woff') format("woff"), url('https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareRound/NanumSquareRoundEB.ttf') format("truetype");
}

html,
body {
    overflow-x: hidden;
    font-size: clamp(14px, 1.5vw, 16px);
}


* {
    letter-spacing: -0.05em;
    line-height: 1.2;
    color: #000;
    font-family: 'NanumSquareRound';
}

.gap-4 {
    gap: 1rem;
}

.ek-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.items-start {
    align-items: start;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: end;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

img[src$=".svg"] {

    max-width: 100% !important;
    display: block !important;
}

.relative {
    position: relative;
}

.text-white {
    color: #fff;
}

.text-center {
    text-align: center;
}

a {
    text-decoration: none !important;
}

.overflow-hidden {
    overflow: hidden;
}

.pc-flex {
    display: flex;
}

.mobile {
    display: none;
}

.mobile-flex {
    display: none;
}

.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.main-header .container {
    padding: 1.125rem 2.5rem;
    padding-top: 1.813rem;
}

.main-header nav ul {
    gap: 80px;
}

.main-header nav a {
    font-size: 1.5rem;
    font-weight: 400;
    transition: color 0.3s;
}

.main-header nav a.active {
    font-weight: 700;
    color: #A100FF;
}

.main-header .start-btn {
    background-color: #6DDD00;
    color: #fff;
    padding: 12px 22px;
    border-radius: 60px;
    position: relative;
    min-width: 290px;
}

.main-header .start-btn span {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.main-header .start-btn img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn .menu-icon-close {
    display: none;
}

.mobile-menu-btn.is-open .menu-icon-hamburger {
    display: none;
}

.mobile-menu-btn.is-open .menu-icon-close {
    display: block;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 5.5rem;
    left: 0;
    width: 100%;
    height: calc(100% - 5.5rem);
    background: #fff;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.875rem 0;
}

.mobile-menu-overlay.is-open {
    display: flex;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
}

.mobile-nav a.active {
    font-weight: 700;
}

footer {
    background: #000;
    padding: 0.813rem 1.25rem;
}

footer p {
    color: #fff;
    font-size: 1.25rem;
}

.mobile-hidden {
    display: block;
}

.mobile-visible {
    display: none;
}

@media (max-width: 1600px) {
    .main-header nav ul {
        gap: 40px;
    }
}

@media (max-width: 1399px) {
    .mobile-hidden {
        display: none;
    }

    .mobile-visible {
        display: block;
    }

    .main-header nav ul {
        gap: 24px;
    }

    .main-header .header-inner,
    .main-header .container {
        flex-direction: row !important;
        justify-content: space-between;
    }

    .main-header .header-nav,
    .main-header .header-cta {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (min-width: 1025px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 767px) {

    .main-header .logo img{
        max-width: 140px !important;
    }
}