@charset "utf-8";
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap'); */
/* NotoSans 쓸 경우 주석 풀고, body 적용 */


@font-face {
  font-family: "GmarketSans";
  src: url("fonts/GmarketSansLight.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "GmarketSans";
  src: url("fonts/GmarketSansMedium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "GmarketSans";
  src: url("fonts/GmarketSansMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "GmarketSans";
  src: url("fonts/GmarketSansBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}


* {
  word-break: keep-all !important;
  box-sizing: border-box;
}

body {
  font-family: "GmarketSans", "Noto Emoji", "Segoe UI Emoji", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}


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;
}

/*head.sub.php로 셋팅하는 값 = full-h, full-w*/
:root {
  --primary: #FD6F22;
  --seconday: #666;
  --ca-color: #333;
  --light: #F9F2E3;
  --full-h: calc(var(--vh, 1vh) * 100);
  --full-w: calc(var(--vw, 1vw) * 100);
  --header-h: 76px;
  --header-h-active: 62px;
  --lnb-h: 48px;
}

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

@media screen and (max-width:1536px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}

/* 아이콘 있는 경우 header.active * {color: #000 !important;} 해주시면 됩니다. */

/* 애니메이션 관련 */


/* common button - 게시판 및 그누보드 곳곳에있는 데이터용 */
.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);
}

/* aniamtion buttonv */
.btn-ani-1 {
  --btn-text: #fff;
  --btn-bg: #000;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  box-shadow: none !important;
  border-radius: 9999px;
  background-color: transparent;
  min-height: 42px;
}

.btn-ani-1:focus,
.btn-ani-1:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.btn-ani-1 span {
  position: relative;
  z-index: 1;
  color: var(--btn-text);
  transition: 0.25s ease-in;
  transition-delay: 0.1s;
}

.btn-ani-1::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 500%;
  background: var(--btn-text);
  border-radius: 100%;
  transform: translate(30%, 10%) translateZ(0);
  transition: 0.36s cubic-bezier(0.4, 0.0, 1, 1);
  z-index: 0;
  pointer-events: none;
}

.btn-ani-1:hover::before {
  transform: translate(-45%, -34%) translateZ(0);
}

.btn-ani-1:hover {
  color: transparent;
  background: none;

}

.btn-ani-1:hover span {
  color: var(--btn-bg);
}

/* 기타 에디터 */

.sit_icon {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.editor-content img {
  display: initial;
}

#sev_himg * {
  font-family: "GmarketSans", "Noto Emoji", "Segoe UI Emoji", sans-serif !important;
}

.sev_admin {
  display: none;
}

.ctt_admin {
  display: none;
}

/* 해더 */


#header #logo {
  background-image: url("../img/logo.png");
  z-index: 51;
  background-position: left;
}

#header {
  transition: all 0.5s ease;

}

#header.active {
  height: var(--header-h-active);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);

}

#header.active #logo {
  transform: scale(0.8);
}

#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(13px) translateX(0) rotate(45deg);
  transition: all ease 200ms;
}

#toggler.active .second {
  opacity: 0;
  transition: all ease 200ms;
}

#toggler.active .third {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  transition: all ease 200ms;
}



.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-color: #fff;

}

.main-nav.active {
  visibility: visible;
  z-index: 50;
  transform: scale(1);
  opacity: 1;
  transition: 0.5s;
}

.main-nav>ul>li>a {

  font-weight: 300;
  display: block;
  transition: 0.5s;

  font-weight: 500;
}




.sub-icon {
  transition: transform 0.3s ease;
}

.sub-icon.active {
  transform: rotate(180deg);
}


/* SPlitType Animation */

@keyframes slide-up1 {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }

  30% {
    transform: translateX(-20px);
    opacity: 1;
  }
}


@keyframes slide-up2 {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }

  50% {
    transform: translateX(20px);
    opacity: 1;
  }
}

[data-aos="blur-up"] {
  filter: blur(8px);
  transition: filter 0.5s ease-out;
}

[data-aos="blur-up"].aos-animate {
  filter: blur(0);
}

/* 프로그램과정 섹션 배경 고정 */
@media (min-width: 1024px) {
  .program-process-section {
    background-attachment: fixed;
  }
}

/* 교육효과 섹션 배경 고정 */
@media (min-width: 1024px) {
  .effect-section {
    background-attachment: fixed;
  }
}

/* 커스텀 AOS 애니메이션 */
[data-aos="slide-in-right"] {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="slide-in-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="slide-in-left"] {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="slide-in-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="rotate-in"] {
  opacity: 0;
  transform: rotate(-180deg) scale(0.5);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="rotate-in"].aos-animate {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

[data-aos="bounce-in"] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos="bounce-in"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="slide-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="slide-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ Accordion Styles */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 2000px !important;
}

.faq-toggle-icon {
  transition: transform 0.3s ease;
}

.faq-toggle-icon.rotate-180 {
  transform: rotate(180deg);
}

.faq-toggle-icon i {
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-toggle-icon.rotate-180 i,
.faq-toggle-icon i.rotate-180 {
  transform: rotate(180deg);
}

.faq-answer {
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  user-select: none;
}

.faq-question:hover {
  background-color: rgba(249, 250, 251, 1);
}

@media (max-width: 1023px) {
  .faq-item.active .faq-answer {
    max-height: 3000px !important;
  }
}

/* Partnership Styles */
.partnership-item:hover {
  background-color: var(--hover-bg-color);
}

.partnership-item:hover .partnership-text {
  color: white !important;
}

.partnership-item:hover .partnership-icon svg path {
  fill: white !important;
}