@charset "utf-8";

/* JST Header */
/* ==============================
   JST Header
============================== */
.jst_header {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 82px;
    background: #050505;
    font-family: 'Paperozi', sans-serif;
}

.jst_header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    margin: 0 auto;
    padding: 0 36px;
	box-shadow: 13px 13px 20px 3px rgba(0, 91, 255, .3);
}

.jst_header__logo {
    margin: 0;
}

.jst_header__logo a {
    display: flex;
    align-items: center;
}

.jst_header__logo img {
    display: block;
    width: 178px;
    height: auto;
}

.jst_header__nav ul {
    display: flex;
    align-items: center;
    gap: 74px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.jst_header__nav a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 450;
    line-height: 1;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.25s ease;
}

.jst_header__nav a:hover {
    color: #7cc7ff;
}

.jst_header__right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.jst_header__apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 136px;
    height: 48px;
    border: 1px solid rgba(116, 170, 255, 0.9);
    border-radius: 7px;
    color: #fff;
    font-size: 17px;
    font-weight: 450;
    line-height: 1;
    text-decoration: none;
    background: rgba(5, 9, 22, 0.8);
    box-shadow: 0 0 16px rgba(74, 133, 255, 0.22);
}

.jst_header__apply img {
    display: block;
    width: 17px;
    height: 17px;
    object-fit: contain;
}

.jst_header__hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(116, 170, 255, 0.75);
    border-radius: 7px;
    background: rgba(5, 9, 22, 0.8);
    cursor: pointer;
}

.jst_header__hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.jst_header.is-open .jst_header__hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.jst_header.is-open .jst_header__hamburger span:nth-child(2) {
    opacity: 0;
}

.jst_header.is-open .jst_header__hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.jst_header__mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    width: 100%;
    background: rgba(5, 5, 8, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(116, 170, 255, 0.22);
    backdrop-filter: blur(12px);
}

.jst_header__mobile ul {
    max-width: 1440px;
    margin: 0 auto;
    padding: 18px 20px;
    list-style: none;
	box-shadow: 13px 13px 20px 3px rgba(0, 91, 255, .3);
}

.jst_header__mobile li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.jst_header__mobile a {
    display: block;
    padding: 18px 4px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
}

.jst_header.is-open .jst_header__mobile {
    display: block;
}


/* Header Responsive */
@media (max-width: 1440px) {
    .jst_header__inner {
		
        padding: 0 32px;
    }
}

@media (max-width: 1200px) {
    .jst_header__nav ul {
        gap: 48px;
    }

    .jst_header__nav a {
        font-size: 17px;
    }
}

@media (max-width: 1024px) {
    .jst_header {
        height: 72px;
    }

    .jst_header__inner {
        padding: 0 20px;
    }

    .jst_header__logo img {
        width: 148px;
    }

    .jst_header__nav {
        display: none;
    }

    .jst_header__apply {
        width: 116px;
        height: 42px;
        font-size: 15px;
    }

    .jst_header__hamburger {
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .jst_header {
        height: 68px;
    }

    .jst_header__logo img {
        width: 138px;
    }

    .jst_header__right {
        gap: 8px;
    }

    .jst_header__apply {
        width: 108px;
        height: 40px;
        font-size: 14px;
    }

    .jst_header__apply img {
        width: 15px;
        height: 15px;
    }

    .jst_header__hamburger {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .jst_header {
        height: 64px;
    }

    .jst_header__inner {
        padding: 0 14px;
    }

    .jst_header__logo img {
        width: 126px;
    }

    .jst_header__apply {
        width: 96px;
        height: 36px;
        font-size: 13px;
    }

    .jst_header__apply img {
        width: 14px;
        height: 14px;
    }

    .jst_header__hamburger {
        width: 36px;
        height: 36px;
        gap: 4px;
    }

    .jst_header__hamburger span {
        width: 18px;
    }

    .jst_header__mobile a {
        padding: 16px 2px;
        font-size: 16px;
    }
}