@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,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 !important;
    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;
}

p {
    text-align: justify !important;
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
    margin: 0;
    padding: 0;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1em;
    font-family: inherit !important;
}

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;
}

.en {
    font-family: 'Nunito Sans', sans-serif !important;
}

/*head.sub.php로 셋팅하는 값 = full-h, full-w*/
:root {
    --primary: #E48B36;
    --seconday: #666;
    --ca-color: #333;
    --full-h: calc(var(--vh, 1vh) * 100);
    --full-w: calc(var(--vw, 1vw) * 100);
    --header-h: 70px;
    --lnb-h: 48px;
    --nav-max-w: 614px;
    --sub-h: 230px;
    --btn-width: 180px;
    --btn-width-md: 130px;
    --btn-width-sm: 80px;
    --btn-height: 42px;
    --btn-height-md: 36px;
    --btn-height-sm: 28px;
}

.overlay {
    position: relative;
}

.overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}



/* 아이콘 있는 경우 header.active * {color: #000 !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.1);
}

.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.1);
}

.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.1);
}

.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.1);
}



.button:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-primary-outline:disabled,
.btn-secondary-outline: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);
}

.btn-animation {
    position: relative;
    border-radius: 500px;
    width: var(--btn-width);
    height: var(--btn-height);
    overflow: hidden;
    background-color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.btn-animation:hover {
    cursor: pointer;
    border: 2px solid var(--primary);
}

.btn-animation .text {
    position: relative;
    z-index: 2;
    color: var(--primary);
    transition: color 0.3s ease;
}

.btn-animation:hover .text {
    color: #fff;
}

.btn-animation.sm {
    width: var(--btn-width-sm);
    height: var(--btn-height-sm);
    font-size: 0.875rem;
}

.btn-animation.md {
    width: var(--btn-width-md);
    height: var(--btn-height-md);
    font-size: 1rem;
}

/* 모바일에서 hover 상태 리셋 */
@media (max-width: 991px) {}


@keyframes scale-up {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(600);
    }
}

@keyframes scale-down {


    to {
        transform: scale(0);
    }
}

.btn-animation .round {
    border-radius: 50%;
    background-color: var(--primary);
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: 1;


    animation: scale-down 0.5s forwards;

}

.btn-animation.animate .round {
    animation: scale-up 0.8s forwards;
}



.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;
}

#logo {
    background-image: url("../img/w_logo.png") !important;
}

#logo.active {
    background-image: url("../img/logo.png") !important;
}

/* #header.active {
  background-color: #fff !important;
  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;
} */

#toggler span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    max-height: 5px;
    transition: all ease 200ms;
    z-index: 100;

}

#toggler .first {
    top: 0%;
    transition: transform 100ms;
}

#toggler .second {
    top: 50%;
}

#toggler .third {
    top: 100%;
}

#toggler.active .first {
    transform: translateY(10px) translateX(0) rotate(45deg);
    transition: all ease 200ms;
}

#toggler.active .second {
    opacity: 0;
    transition: all ease 200ms;
}

#toggler.active .third {
    transform: translateY(-10px) translateX(0) rotate(-45deg);
    transition: all ease 200ms;
}

#toggler.active span {
    background-color: #000;
}

.main-nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 0;
    height: var(--full-h);
    width: 100%;
    padding-top: var(--header-h);
    opacity: 0;
    transform: scale(0.85);
    transition: 0.5s;
    visibility: hidden;
    /* background-image: url(../img/sub/diagram_bg2.png); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
}

.main-nav.active {
    visibility: visible;
    z-index: 10;
    transform: scale(1);
    opacity: 1;
    transition: 0.5s;
}

.main-nav>ul>li>a {

    color: #000;
    font-weight: 300;
    display: block;
    transition: 0.5s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    font-weight: 500;
}

.main-nav>ul>li:last-child>a {
    border-bottom: none;
}

.main-nav>ul>li>a:hover {
    opacity: 0.45;
    transition: 0.5s;
    padding: 0.8em;
}

#banner img {
    z-index: -1;
}

#banner .char {
    animation: slide-up1 1s ease 0s both;
    animation-delay: calc(100ms * var(--char-index));
}

#banner img {
    animation: scale 3s ease 0s both;
}

@keyframes scale {
    0% {
        transform: scale(1.1);
        filter: blur(5px);

    }

    100% {
        transform: scale(1);
        filter: blur(0px);
    }
}





/* SPlitType */





#header {
    z-index: 100;
}

#header.active .header-bg {
    height: var(--sub-h);
    overflow: visible;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}


.nav-item>a {
    position: relative;
}

.nav-item>a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: rgba(243, 98, 30, 1);
    transition: width 0.3s ease;
}

#header.active .nav-item>a {
    padding: 0 1.8rem;
    transition: all 0.5s ease;
}

.nav-item:hover>a::after {
    width: 50%;
}

#header.active .nav-item>ul {
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

/* Main */
@keyframes fadeUp {
    0% {
        transform: translateY(80px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.section1 .container h1,
.section1 .container p,
.section1 .container .btn-wrap {
    overflow: hidden;
}

.section1.active .container h1 span {
    animation: fadeUp 2s ease 0s both;
}

.section1.active .container p span {
    animation: fadeUp 2s ease 0.4s both;
}

.section1.active .container .btn-wrap a {
    animation: fadeUp 2s ease 0.8s both;
}

@keyframes slide-up1 {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-up2 {
    0% {
        transform: translateX(40px);
        opacity: 0;
    }

    30% {
        transform: translateX(40px);
        opacity: 1;
    }
}

.section.active .sub-title .char {
    animation: slide-up2 2s cubic-bezier(.5, 0, .5, 1) both;
    animation-delay: calc(100ms * var(--char-index));
}



.sub-title {
    border-bottom: 0 solid transparent;
    width: fit-content;
    padding: 0 2rem;
    transition: border-bottom-width 0.3s ease;
}

.section.active .sub-title {
    border-bottom-width: 1.5px;
    border-bottom-color: #fb923c;
    /* orange-400 */
    border-bottom-style: solid;
}

.section2.active .section2-content {
    animation: fadeUp 2s 1s both;
}

.section2.active .section2-link {
    animation: fadeUp 2s 1.4s both;
}

@media (min-width: 991px) {
    .bg-container.active {
        z-index: 20;
        transition: z-index 0.5s ease;
    }

    .bg-container.active img {
        animation: blurFilter 2s ease;
    }

    @keyframes blurFilter {
        0% {
            filter: blur(10px);
            transform: scale(1.1);
        }

        100% {
            filter: blur(0px);
            transform: scale(1);
        }
    }
}

.section3-grid .section3-item {
    width: 10%;
    min-height: 33.1944vw;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: space-around;
    padding: 1rem;
    background: linear-gradient(0deg, #F5F5F5 0%, #F5F5F5 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.40) 75.67%), url() lightgray 50% / cover no-repeat;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section3-grid .section3-item.active {
    width: 40%;
}

.section3-item-description {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    padding: 0 2rem;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;
}

.section3-grid .section3-item h3 {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;
}

.section3-grid .section3-item.active h3 {
    opacity: 0;
    visibility: hidden;
    transition-delay: 0.1s;
}

.section3-grid .section3-item img {
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;
}

.section3-grid .section3-item.active img {
    width: 100%;
    max-width: 275px;
    object-fit: contain;
    padding-bottom: 5rem;
    opacity: 1;
    transition-delay: 0.2s;
}

.section3-grid .section3-item.active i {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;
}

.section3-grid .section3-item.active i {
    opacity: 0;
    visibility: hidden;
    transition-delay: 0.1s;
}

.section3-grid .section3-item.active .section3-item-description {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.5s;
}

.section4-button-wrap button {
    padding-bottom: 0.5rem;
    color: rgba(0, 0, 0, 0.4);
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
}

.section4-button-wrap button.active {
    color: #000;
    border-bottom: 1.5px solid var(--primary);
}

.section4-bg {
    opacity: 0.1;
    filter: blur(5px);
}

.section4.active .section4-bg {
    animation: blurFilter2 5s ease-in-out;
}

@keyframes blurFilter2 {
    0% {
        transform: scale(1.1);
        filter: blur(0);
    }

    100% {

        transform: scale(1);
        filter: blur(5px);
    }
}

/* Line expand animation for overview page */
[data-aos="line-expand"] {
    width: 0;
}

[data-aos="line-expand"].aos-animate {
    width: 100%;
}

/* Fade-in animation for overview page */
.curacle {
    font-size: 1.2em;
    color: var(--primary);
}

/* Team career list styling */
.team-career {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-career li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.team-career li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 2px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 50%;
}

@media (min-width: 1024px) {
    .team-career li {
        padding-left: 1rem;
    }

    .team-career li::before {
        width: 4px;
        height: 4px;
        top: 0.6em;
    }
}

.main-link {
    transition: all 0.5s ease;
}

/* Section3 main-link 이미지 호버 효과 */
.section3-item.active .main-link:hover {
    transform: scale(1.1);
    transition: all 0.5s ease;
    cursor: pointer;
}

/* Section1 배경 Swiper */
.section1-bg-swiper {
    width: 100%;
    height: 100%;
}

.section1-bg-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.section1-bg-swiper .swiper-slide>div {
    width: 100%;
    height: 100%;
}

/* 커스텀 파일첨부 */
/* 파일 첨부 커스텀 스타일 */
.custom-file-upload {
    margin-bottom: 1.5rem !important;
}

.custom-file-wrapper {
    margin-bottom: 0.75rem !important;
}

.custom-file-label {
    display: block !important;
    font-weight: 500 !important;
    color: #374151 !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.875rem !important;
}

.custom-file-label i {
    margin-right: 0.25rem !important;
    color: var(--primary) !important;
}

.custom-file-input {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    border: 2px dashed #d1d5db !important;
    border-radius: 0.5rem !important;
    background-color: #ffffff !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

@media (max-width: 991px) {
    .custom-file-input {
        padding: 0.5rem 0.75rem !important;
    }
}

.custom-file-input:hover {
    border-color: var(--primary) !important;
    background-color: rgba(242, 101, 35, 0.05) !important;
}

.custom-file-description {
    margin-bottom: 0.75rem !important;
}

.custom-file-desc-label {
    display: block !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: #374151 !important;
    margin-bottom: 0.5rem !important;
}

.custom-file-desc-label i {
    margin-right: 0.25rem !important;
    color: var(--primary) !important;
}

.custom-file-desc-input {
    width: 100% !important;
    padding: 0.5rem 0.75rem !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 0.5rem !important;
    margin-top: 0 !important;
    transition: border-color 0.2s ease !important;
}

.custom-file-desc-input:focus {
    outline: none !important;
    border-color: var(--primary) !important;
}

.custom-file-delete {
    margin-top: 0.75rem !important;
    padding: 0.75rem !important;
    background-color: #f9fafb !important;
    border-radius: 0.5rem !important;
    border: 1px solid #e5e7eb !important;
}

.custom-file-delete-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.custom-file-delete-checkbox {
    width: 1rem !important;
    height: 1rem !important;
    color: var(--primary) !important;
    border-color: #d1d5db !important;
    border-radius: 0.25rem !important;
}

.custom-file-delete-checkbox:focus {
    outline: 2px solid var(--primary) !important;
    outline-offset: 2px !important;
}

.custom-file-delete-label {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.875rem !important;
    color: #374151 !important;
    cursor: pointer !important;
}

.custom-file-delete-label i {
    color: var(--primary) !important;
}

/* 캡챠 커스텀 */
#captcha {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 4px !important;
    flex-wrap: wrap !important;
}

#captcha #captcha_info {
    width: 100% !important;
    font-size: 12px !important;
    color: #666 !important;
}

#captcha #captcha_mp3,
#captcha #captcha_reload {
    margin: 0;
    padding: 0;
    width: 32px !important;
    height: 32px !important;
    border: 0;
    background: transparent;
    vertical-align: middle;
    overflow: hidden;
    cursor: pointer;
    background: url(../img/captcha2.png) no-repeat;
    text-indent: -999px;
    border-radius: 3px;
}

#captcha #captcha_mp3 {
    background: url(../img/icons/captcha.png) no-repeat !important;
}

#captcha #captcha_reload {
    background: url(../img/icons/captcha.png) no-repeat 0 -32px !important;
}

.image-fit {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1319px) {
    .container {
        max-width: 100%;
    }
}