@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;
}



* {

  box-sizing: border-box;

  word-break: keep-all !important;
}

body {
  font-family: "Pretendard", "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: #267AAC;
  --seconday: #666;
  --ca-color: #333;
  --full-h: calc(var(--vh, 1vh) * 100);
  --full-w: calc(var(--vw, 1vw) * 100);
  --header-h: 80px;
  --lnb-h: 56px;
  --dark: #131B37;
}

@media (max-width: 991px) {
  :root {
    --header-h: 60px;
  }
}

.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 * {color: #000 !important;} 해주시면 됩니다. */

/* 애니메이션 관련 */


/* 버튼 */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;

}

.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: transparent;

  outline: 1px solid #fff;
  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);
}

.btn-animation {
  position: relative;
  overflow: hidden;
  color: #fff;
  outline: 1px solid #fff;
}

.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%;
}

.btn_more {
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  min-width: 190px;

  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  position: relative;
}

.btn_more:before,
.btn_more:after {
  width: 0;
  height: 100%;
  content: "";
  box-sizing: border-box;
  border-radius: 35px;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.3s;
}

.btn_more:before {
  background: #fff;
}

.btn_more:after {
  background: var(--primary);
  transition-delay: 0.1s;
}

.btn_more span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  position: relative;
  z-index: 5;
  letter-spacing: -0.04em;
}

.btn_more em {
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  background: var(--primary);
  border-radius: 100%;
  display: inline-block;
  margin-left: 18px;
  position: relative;
  z-index: 3;
  background-size: auto 13px;
  overflow: hidden;
}

.btn_more em:before {
  width: 100%;
  height: 13px;
  content: "";
  background: url(../img/icons/main_arw_more_white.svg) no-repeat center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: auto 100%;
  transition: all 0.3s;
}

.btn_more em:after {
  width: 100%;
  height: 13px;
  content: "";
  background: url(../img/icons/main_arw_more_point.svg) no-repeat center;
  position: absolute;
  top: 120%;
  left: 10%;
  transform: translate(-50%, -50%);
  background-size: auto 100%;
  transition: all 0.3s;
}

.btn_more:hover {
  border-color: var(--primary);
}

.btn_more:hover:before,
.btn_more:hover:after {
  width: 100%;
}

.btn_more:hover em {
  background: #fff;
}

.btn_more:hover em:before {
  top: -10%;
  left: 100%;
}

.btn_more:hover em:after {
  top: 50%;
  left: 50%;
}

.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;
}

/* Lnb 관련  */
/* lnb  */
.lnb_wrap {
  position: relative;
}

.lnb {
  background: #fff;

}

.lnb .lnb_map {
  height: var(--lnb-h);
  display: flex;
  align-items: center;
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
  max-width: 1600px;
  margin: 0 auto;
}

.lnb .lnb_map .home {
  width: var(--lnb-h);
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lnb .lnb_map .home a {
  color: #333;
}


.lnb .lnb_map>li {

  height: 100%;
  border-right: 1px solid #ddd;

  position: relative;
}

.lnb .lnb_map li.dep a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.lnb .lnb_map li.dep a span {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #333;
}


.lnb .lnb_map li.dep ul {
  display: none;
  position: absolute;
  left: 0;
  top: var(--lnb-h);
  width: 100%;
  z-index: 9999;
}

.lnb .lnb_map li.dep ul li {
  width: 100%;
  background: #f9f9f9;
  border-bottom: 1px solid #fff;
}



.lnb .lnb_map li.dep ul li a:hover {
  background: var(--primary);
  color: #fff;
  transition: 0.3s all;
}

.lnb .lnb_map li.dep ul li a.on {
  background: var(--primary);
  color: #fff;
}


@media (max-width: 1439px) {
  .container {
    max-width: 100%;

  }
}

/* 해더 메뉴 관련  */
#header.active {
  background-color: transparent;
}

#header.active #nav-menu {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}



.menu-icon {
  position: relative;
  z-index: 4;
  display: block;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  cursor: pointer;
  background: none;
  border: 0;
  z-index: 30;
}


.menu-icon span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  max-height: 5px;
  background: #fff;
  transition: all ease 200ms;

}

.menu-icon span:nth-of-type(2) {
  top: 33%;
  transition: transform 100ms;
}

.menu-icon span:nth-of-type(3) {
  top: 66%;
}

.menu-icon span:nth-of-type(4) {
  top: 100%;
}

.menu-bg {
  width: 100%;
  height: var(--full-h);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/menu_bg.png) no-repeat center;
  background-size: cover;
  clip-path: circle(0% at 100% 0%);
  z-index: 13;
  transition: all 0.8s;
}

.menu-bg.active {
  clip-path: circle(145vmax at 100% 0);
  transition: all 1s;
}

.menu-icon.active .first {
  transform: translateY(11px) translateX(0) rotate(45deg);
  transition: all ease 200ms;
}

.menu-icon.active .second {
  opacity: 0;
  transition: all ease 200ms;
}

.menu-icon.active .third {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  transition: all ease 200ms;
}

@media (max-width: 991px) {
  .menu-icon {
    width: 26px;
    height: 26px;
  }

  .menu-icon.active .first {
    transform: translateY(10px) translateX(0) rotate(45deg);
    transition: all ease 200ms;
  }

  .menu-icon.active .third {
    transform: translateY(-8px) translateX(0) rotate(-45deg);
    transition: all ease 200ms;
  }

}

html.active,
html.active body {
  overflow: hidden !important;
}

.menu-container {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  z-index: 40;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s;
  transition-delay: 0s;

}

.menu-container.active {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.3s;
}


.dep_1 {
  position: relative;
  overflow: hidden;
}

.dep_1::before {
  content: "";
  position: absolute;
  top: 0;
  right: 2%;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--primary);
  opacity: 0;
  transition: all 0.3s ease-in;
}


.dep_1_wrap:hover .dep_1::before {
  opacity: 1;
}

@keyframes banner-bg-animation {
  0% {

    transform: scale(1.25);
  }

  100% {

    transform: scale(1);
  }
}

/* 배너 관련 */
.banner-bg {
  animation: banner-bg-animation 5s linear 1;
}




.about_why_item {
  margin-bottom: 3rem;
  perspective: 300px;
}

.about_why_box {
  display: flex;
  justify-content: space-between;
  background-color: #fff;


  transform-origin: center top;
  position: relative;
  filter: brightness(1);
  gap: 3rem;
}

/* tab-menu  */
.tab-navigation {
  height: 81px;
}

.tab-navigation .tab-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  position: relative;

}

.tab-navigation .tab-item.active {
  color: #fff;
}

.tab-navigation .tab-item::after {
  content: "";
  height: 3px;
  background-color: #AAE0F9;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  transition: all .5s ease;
}

.tab-navigation .tab-item:hover::after {
  width: 100%;
}

.tab-navigation .tab-item.active::after {
  width: 100%;
}

@media (max-width: 991px) {
  .tab-navigation {
    height: 45px;
  }
}

@keyframes lastImgMove {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(60px);
  }

  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}

.last-img {
  animation: lastImgMove 6s ease-in-out infinite;
}

.about-img.active .about-img__cover {
  width: 101%;
  opacity: 1;
  animation: about-img-reveal 1.2s ease 0.2s forwards;
  z-index: 20;
  animation-fill-mode: forwards;
}

@keyframes about-img-reveal {
  0% {
    width: 101%;
    opacity: 1;
  }

  99% {
    width: 0%;
    opacity: 1;
  }

  100% {
    width: 0%;
    opacity: 0;
  }
}

.last-txt {
  color: #FFF;

  text-align: center;
  font-feature-settings: 'liga'off, 'clig'off;
  text-shadow: 0 2px 60px #000;

  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 24.8px;
}