@charset "utf-8";
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap'); */
/* NotoSans 쓸 경우 주석 풀고, body 적용 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-ExtraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('fonts/Pretendard-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

* {
    word-break: keep-all;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard',
        'Noto Emoji',
        'Segoe UI Emoji',
        sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
}

/* 초기화 */
html {
    overflow-y: auto !important
}


html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
    margin: 0;
    padding: 0;
    border: 0
}


article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

ul,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
    list-style: none
}

legend {
    position: absolute;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden
}

label,
input,
button,
select,
img {
    vertical-align: middle;
    font-size: 1em
}

input,
button {
    margin: 0;
    padding: 0;
    font-family: inherit !important;
}

input[type="submit"] {
    cursor: pointer
}

button {
    cursor: pointer
}

textarea,
select {
    font-family: inherit !important;

}

select {
    margin: 0
}

p {
    margin: 0;
    padding: 0;
    word-break: break-all
}



pre {
    overflow-x: scroll;
    font-size: 1.1em
}

a {
    color: inherit;
    text-decoration: none
}

:root {
    --primary: #3690EA;
    --seconday: #666;
    --ca-color: #333;
}

.en {
    font-family: "Montserrat",
        sans-serif;
}

.overlay {
    position: relative;
}

.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

#header.active {
    background-color: #fff;
    color: #000 !important;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}



#header.active #logo {
    background-image: url('../img/logo.png') !important;
}

/* 아이콘 있는 경우 header.active * {color: #000 !important;} 해주시면 됩니다. */

/* 애니메이션 관련 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);

}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);

}

.fade-right {
    opacity: 0;
    transform: translateX(30px);

}


.fade-down {
    opacity: 0;
    transform: translateY(-30px);
}

/* 애니메이션 */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes fadeLeftUp {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.swiper-slide-active .swiper-fade-in {
    animation: fadeUp 1s ease-in-out 0.4s both;
}

.delay-1 {
    animation-delay: 0.4s !important;
}

.delay-2 {
    animation-delay: 0.8s !important;
}

/* 버튼 */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #fff;
    color: var(--primary);
    outline: 1px solid var(--primary);
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);

}

.btn-primary:active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 1px 4px rgba(96, 165, 250, 0.10);
}

.btn-secondary {
    background-color: var(--seconday);
    color: #fff;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #fff;
    color: var(--seconday);
    outline: 1px solid var(--seconday);
    box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);

}

.btn-secondary:active {
    background: var(--seconday);
    color: #fff;
    box-shadow: 0 1px 4px rgba(156, 163, 175, 0.10);
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--primary);
    outline: 1px solid var(--primary);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
    outline: none;
}

.btn-primary-outline:active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 1px 4px rgba(96, 165, 250, 0.10);
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--seconday);
    outline: 1px solid var(--seconday);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
    background: var(--seconday);
    color: #fff;
    box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);
    outline: none;
}

.btn-secondary-outline:active {
    background: #fff;
    color: var(--seconday);
    box-shadow: 0 1px 4px rgba(156, 163, 175, 0.10);
}

.btn-animation {
    position: relative;
    overflow: hidden;
    color: var(--primary);
    outline: 1px solid var(--primary);
}

.btn-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary);
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-animation:hover {
    color: #fff;
    outline: 0;
}

.btn-animation:hover::before {
    width: 100%;
}

.button:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-primary-outline:disabled,
.btn-secondary-outline:disabled,
.btn-animation:disabled {
    background: #e5e7eb !important;
    /* Tailwind gray-200 */
    color: #b0b0b0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    pointer-events: none;
    filter: grayscale(0.2);
}

.sit_icon {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
}


.editor-content img {
    display: initial;
}

#sev_himg * {
    font-family: 'Pretendard',
        'Noto Emoji',
        'Segoe UI Emoji',
        sans-serif !important;
}

.sev_admin {
    display: none;
}

/* 구글번역 */
body>.skiptranslate,
.goog-logo-link,
.gskiptranslate,
.goog-te-gadget span,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
div#goog-gt- {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0px;
    width: 100px;
    border: 1px solid black;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

#google_translate_element select {
    background: transparent;
    color: #000;
    border: none;
    font-weight: bold;
    border-radius: 0px;
    padding: 8px 12px
}

@keyframes bg-scale-ani {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.15);
    }

    60% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}



@keyframes slide-up2 {
    0% {
        transform: translateX(40px);
        opacity: 0;
    }

    30% {
        transform: translateX(40px);
        opacity: 0;
    }
}


.overlay {
    position: relative;
}

.overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 46, 54, 0.5);
    z-index: -1;
    opacity: 0;
}

.section2-item {
    position: relative;
}

.section2-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 46, 54, 0.5);
    z-index: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.section2-item span {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.section2-item img {
    transition: all 0.5s ease-in-out;
}

.section2-item:hover::after {
    opacity: 1;
}

.section2-item:hover img {
    transform: scale(1.1);
}

.section2-item:hover span {
    opacity: 1;
}

.bg-text {
    position: absolute;
    top: 5vw;
    bottom: 0vw;
    color: #373B47;
    font-size: 12vw;
}

.swiper-pagination-bullet {
    background-color: #C0C0C0;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background-color: #696969;
    position: relative;
}

.swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background-color: rgba(105, 105, 105, 0.5);
    border-radius: 50%;
    z-index: 0;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.75rem;
}


.notice-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slide Vertical & Horizontal Animation (from SCSS) */
.slide-vertical .char {
    overflow: visible;
    color: transparent;
    position: relative;
    display: inline-block;
}

.slide-vertical .char:before,
.slide-vertical .char:after {
    content: attr(data-char);
    visibility: visible;
    color: #FFF;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transition:
        transform 0.7s cubic-bezier(0.77, 0, 0.175, 1),
        color 0.5s cubic-bezier(0.77, 0, 0.175, 1),
        text-shadow 0.5s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: calc(0.2s + (0.02s * var(--char-index)));
    opacity: 1;
    pointer-events: none;
}

.slide-vertical .char:before {
    transform: translateY(-100%);
    transition-delay: calc(0.02s * var(--char-index));
    z-index: 2;
    text-shadow: none;
    opacity: 0;
}

.slide-vertical .char:after {
    transform: translateY(0%);
    z-index: 1;
    color: #fff;
    text-shadow: none;
    opacity: 1;
}


.slide-vertical:hover .char:before {
    transform: translateY(0%);
    transition-delay: calc(0.2s + (0.02s * var(--char-index)));
    color: #fff;
    text-shadow:
        0 0 4px #fff,
        0 0 12px #0ff,
        0 0 24px #0ff;
    opacity: 1;
}

.slide-vertical:hover .char:after {
    transform: translateY(100%);
    transition-delay: calc(0.02s * var(--char-index));
    opacity: 0;
}

.neon {
    color: #fff;
    text-shadow: 0 0 4px #fff,
        0 0 12px #0ff,
        0 0 24px #0ff;
}

.notranslate {
    translate: no !important;
}

.notranslateAll * {
    translate: no !important;
}