/* CSS reset */
*,
*:before,
*:after {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  word-break: keep-all;
}

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
a,
blockquote,
th,
td,
footer {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
textarea,
button {
  margin: 0;
  padding: 0;
  border: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}

ol,
ul,
li {
  list-style: none;
}

img {
  vertical-align: middle;
}

a,
address {
  text-decoration: none;
  font-style: normal;
}

#skipNavi {
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

#skipNavi a {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: #fff;
  position: absolute;
  left: 0;
  top: -100px;
  text-align: center;
  z-index: 200;
  background: #00387f;
  border: 0 none;
  z-index: 9999;
}

#skipNavi a:focus, #skipNavi a:hover, #skipNavi a:active {
  top: 0;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  border-bottom: 1px solid #fff;
  outline: none;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all .8s;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  padding: 0 4.68vw;
  justify-content: space-between;
  column-gap: 45px;
}

header:after {
  content: "";
  width: 100%;
  height: 0;
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #fff;
  transition: all .5s;
}

header #logo {
  width: 230px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: none;
}

header #logo a {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
}

header #logo .kisa {
  width: 119px;
  height: 29px;
  background-image: url(/images/images_2023/main/logo_kisa.svg);
}

header #logo .krnic {
  width: 105px;
  height: 23px;
  background-image: url(/images/images_2023/main/logo_krnic.svg);
}

header #nav {
  max-width: 1100px;
  width: 100%;
}

header #gnb {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 0;
  position: relative;
}

header #gnb .menu {
  height: 100px;
  position: relative;
}

header #gnb .menu > a {
  color: #fff;
  font-size: 20px;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

header #gnb .menu > a:after {
  content: "";
  width: 1px;
  height: 18px;
  display: block;
  position: absolute;
  background-color: #ebebeb;
  right: 0;
  top: calc(50% - 9px);
}

header #gnb .menu:before {
  content: "";
  width: 0;
  height: 3px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: #004ea2;
  opacity: 0;
  transition: width .5s;
}

header #gnb .menu:last-child > a:after {
  display: none;
}

header #gnb .menu .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 320px;
  z-index: 1000;
  z-index: 95;
  text-align: center;
  padding: 10px 0;
  transition: all .3s;
  &::-webkit-scrollbar {width: 4px; height: 10px;}
  &::-webkit-scrollbar-thumb {background-color: #004ea2; }
  &::-webkit-scrollbar-track {} 
}

header #gnb .menu .sub-menu a {
  display: block;
  font-size: 16px;
  color: #555;
  line-height: 1.1;
  transition: color .3s;
  padding: 6px 0;
}


header .util {
  display: flex;
  column-gap: 20px;
  flex: none;
}

header .util a {
  display: flex;
  align-items: center;
  column-gap: 5px;
  font-size: 20px;
  color: #fff;
}

header .util a i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #8CC53E;
  border-radius: 100%;
}

header .mo-menu-btn {
  display: none;
}

header.fixed {
  background-color: #fff;
}

header.fixed #logo .kisa {
  background-image: url(/images/images_2023/main/logo_kisa_ov.svg);
}

header.fixed #gnb .menu > a {
  color: #555;
}

header.fixed #gnb .menu > a:after {
  background-color: #ddd;
}

header.fixed .util a {
  color: #555;
}

header.active {
  background-color: #fff;
}

header.active:after {
  height: 320px;/* �섏젙 */
  border-top: 1px solid #ddd;
}

header.active #logo .kisa {
  background-image: url(/images/images_2023/main/logo_kisa_ov.svg);
}

header.active #gnb .menu > a {
  color: #555;
}

header.active #gnb .menu > a:after {
  background-color: #ddd;
}

header.active #gnb .menu .sub-menu {
  opacity: 1;
  visibility: visible;
  transition: all .5s .2s;
}

header.active #gnb .menu .sub-menu a:hover,
header.active #gnb .menu .sub-menu a:focus {
  color: #004ea2;
  font-weight: 500;
}

header.active #gnb .menu.on:before {
  width: 100%;
  opacity: 1;
}

header.active #gnb .menu.on > a {
  color: #004ea2;
  font-weight: 700;
}

header.active .util a {
  color: #555;
}

#moNav {
  display: none;
}



@media (max-width: 1400px) {
  header {
    padding: 0 2%;
    column-gap: 15px;
  }
  header #logo {
    width: 168px;
    height: 20px;
  }
  header #logo .kisa {
    width: 87px;
    height: 20px;
  }
  header #logo .krnic {
    width: 77px;
    height: 17px;
  }
  header #nav {
    max-width: 660px;
  }
  header #gnb .menu {
    height: 80px;
  }
  header #gnb .menu > a {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  header #gnb .menu > a:after {
    width: 1px;
    height: 18px;
    top: calc(50% - 9px);
  }
  header #gnb .menu:before {
    width: 0px;
    height: 3px;
  }
  header #gnb .menu .sub-menu {
    height: 330px;
    padding: 15px 0;
  }
  header #gnb .menu .sub-menu a {
    font-size: 13px;
    /* line-height: 30px; */
  }
  header .util {
    column-gap: 15px;
  }
  header .util a {
    column-gap: 3px;
    font-size: 14px;
  }
  header .util a i {
    width: 16px;
    height: 16px;
  }
  header .util a i img {
    width: 7px;
  }
  header.active:after {
    height: 280px;
  }
}

@media (max-width: 1024px) {
  header {
    padding: 0 5%;
    column-gap: 40px;
    height: 70px;
  }
  header:after {
    display: none;
  }
  header #logo {
    width: 168px;
    height: 20px;
  }
  header #logo .kisa {
    width: 87px;
    height: 20px;
  }
  header #logo .krnic {
    width: 77px;
    height: 17px;
  }
  header #nav {
    display: none;
  }
  header .util {
    padding-right: 50px;
    column-gap: 15px;
  }
  header .util a {
    column-gap: 3px;
    font-size: 14px;
  }
  header .util a i {
    width: 16px;
    height: 16px;
  }
  header .util a i img {
    width: 7px;
  }
  header .mo-menu-btn {
    display: block;
    width: 24px;
    height: 14px;
    position: absolute;
    top: 28px;
    right: 5%;
    cursor: pointer;
  }
  header .mo-menu-btn span {
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    background-color: #fff;
  }
  header .mo-menu-btn span:nth-child(1) {
    top: 0;
  }
  header .mo-menu-btn span:nth-child(2) {
    top: calc(50% - 1px);
  }
  header .mo-menu-btn span:nth-child(3) {
    bottom: 0;
  }
  header.fixed .mo-menu-btn span {
    background-color: #555;
  }
  #moNav {
    display: block;
    pointer-events: none;
  }
  #moNav.show {
    pointer-events: auto;
  }
  #moNav.show .dim {
    opacity: 1;
  }
  #moNav.show .mo-gnb-wrap {
    right: 0;
    transition-delay: .1s;
  }
  #moNav .dim {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 2;
    transition: opacity .2s;
    opacity: 0;
  }
  #moNav .mo-gnb-wrap {
    display: block;
    width: 400px;
    height: 100vh;
    position: fixed;
    z-index: 2;
    right: -400px;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 70px 0;
    transition: all .5s;
  }
  #moNav .mo-gnb-wrap::-webkit-scrollbar {
    width: 8px;
  }
  #moNav .mo-gnb-wrap::-webkit-scrollbar-track {
    background-color: #e5e5e5;
  }
  #moNav .mo-gnb-wrap::-webkit-scrollbar-thumb {
    background-color: #005BAA;
    width: 100%;
  }
  #moNav .mo-gnb-wrap .nav-head {
    width: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 20px;
  }
  #moNav .mo-gnb-wrap .nav-head .util {
    display: none;
  }
  #moNav .mo-gnb-wrap .nav-head .close-btn {
    font-size: 0;
    width: 30px;
    height: 30px;
    margin: 0 20px 0 auto;
    position: relative;
  }
  #moNav .mo-gnb-wrap .nav-head .close-btn:before, #moNav .mo-gnb-wrap .nav-head .close-btn:after {
    content: "";
    width: 20px;
    height: 2px;
    display: block;
    position: absolute;
    border-radius: 2px;
    background-color: #555;
    top: calc(50% - 1px);
    left: calc(50% - 10px);
  }
  #moNav .mo-gnb-wrap .nav-head .close-btn:before {
    transform: rotate(45deg);
  }
  #moNav .mo-gnb-wrap .nav-head .close-btn:after {
    transform: rotate(-45deg);
  }
  #moNav .mo-gnb-wrap .depth1-menu {
    display: block;
    font-size: 24px;
    line-height: 60px;
    font-weight: 700;
    color: #333;
    padding-left: 30px;
    position: relative;
  }
  #moNav .mo-gnb-wrap .depth1-menu .more-btn {
    width: 30px;
    height: 30px;
    position: absolute;
    top: calc(50% - 15px);
    right: 30px;
  }
  #moNav .mo-gnb-wrap .depth1-menu .more-btn:before, #moNav .mo-gnb-wrap .depth1-menu .more-btn:after {
    content: "";
    width: 16px;
    height: 2px;
    display: block;
    position: absolute;
    border-radius: 2px;
    background-color: #aaa;
    top: calc(50% - 1px);
    left: calc(50% - 8px);
    transition: all .3s;
  }
  #moNav .mo-gnb-wrap .depth1-menu .more-btn:after {
    transform: rotate(90deg);
  }
  #moNav .mo-gnb-wrap .depth1-menu.active {
    color: #004ea2;
  }
  #moNav .mo-gnb-wrap .depth1-menu.active .more-btn:after {
    opacity: 0;
  }
  #moNav .mo-gnb-wrap .depth2 {
    display: none;
  }
  #moNav .mo-gnb-wrap .depth2-menu > a {
    display: block;
    text-indent: 40px;
    font-size: 18px;
    line-height: 40px;
    font-weight: 500;
    color: #666;
    position: relative;
  }
  #moNav .mo-gnb-wrap .depth2-menu > a .more-btn {
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    right: 40px;
  }
  #moNav .mo-gnb-wrap .depth2-menu > a .more-btn:before, #moNav .mo-gnb-wrap .depth2-menu > a .more-btn:after {
    content: "";
    width: 12px;
    height: 2px;
    display: block;
    position: absolute;
    border-radius: 2px;
    background-color: #8CC53E;
    top: calc(50% - 1px);
    left: calc(50% - 6px);
    transition: all .3s;
  }
  #moNav .mo-gnb-wrap .depth2-menu > a .more-btn:after {
    transform: rotate(90deg);
  }
  #moNav .mo-gnb-wrap .depth2-menu > a.active .more-btn:after {
    opacity: 0;
  }
  #moNav .mo-gnb-wrap .depth3 {
    background-color: #f7f7f7;
    padding: 10px 0;
    display: none;
  }
  #moNav .mo-gnb-wrap .depth3-menu > a {
    display: block;
    text-indent: 60px;
    font-size: 16px;
    line-height: 36px;
    color: #666;
    padding-left: 4px;
    position: relative;
  }
  #moNav .mo-gnb-wrap .depth3-menu > a:before {
    content: "";
    width: 6px;
    height: 1px;
    display: block;
    position: absolute;
    left: 54px;
    top: 50%;
    background-color: #999;
  }
  #moNav .mo-gnb-wrap .depth3-menu ul li a {
    display: block;
    font-size: 14px;
    color: #666;
    line-height: 30px;
    text-indent: 80px;
  }
}

@media (max-width: 767px) {
  header {
    height: 60px;
  }
  header .util {
    display: none;
  }
  #moNav .mo-gnb-wrap {
    width: 80%;
    right: -80%;
    padding: 50px 0;
  }
  #moNav .mo-gnb-wrap::-webkit-scrollbar {
    width: 4px;
  }
  #moNav .mo-gnb-wrap .nav-head {
    top: 10px;
  }
  #moNav .mo-gnb-wrap .nav-head .util {
    display: flex;
    column-gap: 30px;
    padding-left: 20px;
  }
  #moNav .mo-gnb-wrap .nav-head .util li a {
    font-size: 12px;
    font-weight: 500;
    color: #555;
    display: flex;
    align-items: center;
    column-gap: 4px;
  }
  #moNav .mo-gnb-wrap .nav-head .util li a i {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8CC53E;
    border-radius: 100%;
  }
  #moNav .mo-gnb-wrap .nav-head .util li a i img {
    width: 7px;
  }
  #moNav .mo-gnb-wrap .depth1-menu {
    font-size: 22px;
    line-height: 54px;
    padding-left: 20px;
  }
  #moNav .mo-gnb-wrap .depth1-menu .more-btn {
    width: 24px;
    height: 24px;
    top: calc(50% - 12px);
    right: 20px;
  }
  #moNav .mo-gnb-wrap .depth1-menu .more-btn:before, #moNav .mo-gnb-wrap .depth1-menu .more-btn:after {
    width: 14px;
    left: calc(50% - 7px);
  }
  #moNav .mo-gnb-wrap .depth2-menu > a {
    text-indent: 30px;
    font-size: 16px;
    line-height: 36px;
  }
  #moNav .mo-gnb-wrap .depth2-menu > a .more-btn {
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    right: 30px;
  }
  #moNav .mo-gnb-wrap .depth2-menu > a .more-btn:before, #moNav .mo-gnb-wrap .depth2-menu > a .more-btn:after {
    width: 8px;
    left: calc(50% - 4px);
  }
  #moNav .mo-gnb-wrap .depth3 {
    padding: 8px 0;
  }
  #moNav .mo-gnb-wrap .depth3-menu > a {
    text-indent: 40px;
    font-size: 14px;
    line-height: 30px;
  }
  #moNav .mo-gnb-wrap .depth3-menu > a:before {
    width: 4px;
    left: 36px;
  }
  #moNav .mo-gnb-wrap .depth3-menu ul li a {
    font-size: 12px;
    line-height: 26px;
    text-indent: 55px;
  }
}

.site-link {
  padding: 5px 0;
}

.site-link .inner {
  max-width: 1370px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  column-gap: 128px;
  justify-content: center;
}

.site-link .inner p {
  color: #25292C;
  font-size: 22px;
  font-weight: 500;
  line-height: 40px;
  display: flex;
  align-items: center;
  column-gap: 12px;
}

.site-link .inner .mobileOnly {
  display: none;
}

.site-link .inner ul {
  display: flex;
  align-items: center;
  column-gap: 30px;
  position: relative;
  overflow-x: scroll;
}
.site-link .inner ul::-webkit-scrollbar {
  display: none;
  }

#footer-wrap {
  height: auto !important;
  min-height: inherit;
}

#footer-wrap .fp-tableCell {
  height: auto !important;
}

footer .util-wrap {
  background-color: #383E42;
}

footer .util-wrap ul {
  max-width: 1370px;
  width: 100%;
  margin: 0 auto;
  height: 50px;
  display: flex;
  align-items: center;
  column-gap: 50px;
}

footer .util-wrap ul li a {
  display: block;
  font-size: 15px;
  line-height: 50px;
  color: #fff;
}

footer .util-wrap ul li a strong {
  font-size: 18px;
}

footer .inner {
  max-width: 100% !important;
  background-color: #25292C;
  padding: 25px 0 35px;
}

footer .inner > div {
  max-width: 1370px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}

footer .inner .footer-logo {
  padding-top: 5px;
  margin-right: 30px;
}

footer .inner .footer-logo a {
  display: flex;
}

footer .inner .address-wrap {
  padding-top: 5px;
  color: #fff;
  font-size: 13px;
  line-height: 24px;
}

footer .inner .address-wrap span {
  margin-right: 6px;
}

footer .inner .btn-wrap {
  margin-left: auto;
  display: flex;
  align-items: center;
  column-gap: 30px;
}

footer .inner .btn-wrap .down-btn {
  width: 200px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  font-size: 13px;
  color: #fff;
  border-radius: 3px;
  border: 1px solid;
}

footer .inner .btn-wrap .wa img {
  height: 60px;
}

@media (max-width: 1400px) {
  .site-link {
    padding: 5px 0;
  }
  .site-link .inner {
    max-width: 90%;
    column-gap: 40px;
  }
  .site-link .inner p {
    font-size: 18px;
    line-height: 32px;
    column-gap: 10px;
  }
  .site-link .inner p img {
    width: 10px;
  }
  .site-link .inner ul {
    column-gap: 20px;
  }
  .site-link .inner ul img {
    width: 210px;
  }
  footer .util-wrap ul {
    max-width: 90%;
    height: 40px;
    column-gap: 40px;
  }
  footer .util-wrap ul li a {
    font-size: 13px;
    line-height: 40px;
  }
  footer .util-wrap ul li a strong {
    font-size: 15px;
  }
  footer .inner {
    padding: 20px 0 30px;
  }
  footer .inner > div {
    max-width: 90%;
    flex-wrap: wrap;
  }
  footer .inner .footer-logo {
    padding-top: 0;
    margin: 0 0 10px;
    width: 100%;
  }
  footer .inner .address-wrap {
    padding-top: 0;
    font-size: 12px;
    line-height: 22px;
  }
  footer .inner .btn-wrap {
    column-gap: 20px;
  }
  footer .inner .btn-wrap .down-btn {
    width: 160px;
    height: 26px;
    column-gap: 8px;
    font-size: 12px;
    border-radius: 3px;
  }
  footer .inner .btn-wrap .wa img {
    height: 50px;
  }
}

@media (max-width: 1300px) {
  .banner {
    max-width: 95% !important;
/*     column-gap: 10px !important; */
  }
}

@media (max-width: 1200px) {
  .site-link .inner p {
    font-size: 18px;
    line-height: 32px;
    column-gap: 10px;
    display: none;
  }
  .site-link .inner ul img {
      width: 200px;
  }
  .mobileOnly {display: block !important;}
}

@media (max-width: 1024px) {
  .site-link .inner {
    column-gap: 20px;
  }
  .site-link .inner p {
    font-size: 14px;
    line-height: 28px;
    column-gap: 8px;
  }
  .site-link .inner p img {
    width: 8px;
  }
  .site-link .inner ul {
    column-gap: 10px;
  }
  .site-link .inner ul img {
    width: 185px;
  }
  footer .util-wrap ul {
    column-gap: 30px;
  }
  footer .util-wrap ul li a {
    font-size: 12px;
    line-height: 40px;
  }
  footer .util-wrap ul li a strong {
    font-size: 14px;
  }
  footer .inner {
    padding: 15px 0 25px;
  }
  footer .inner .footer-logo img {
    width: 80px;
  }
  footer .inner .address-wrap span {
    display: block;
  }
  footer .inner .btn-wrap {
    column-gap: 10px;
  }
  footer .inner .btn-wrap .wa img {
    height: 40px;
  }
}

@media (max-width: 767px) {
  .banner {
    max-width: 99% !important;
    column-gap: 10px !important;
  }
  .mobileOnly {display: block !important;}
  .site-link .inner {
    column-gap: 20px;
  }
  .site-link .inner p {
    font-size: 14px;
    line-height: 28px;
    column-gap: 8px;
  }
  .site-link .inner p img {
    width: 8px;
  }
  .site-link .inner ul {
/*     width: 200px; */
    height: 55px;
    position: relative;
    overflow-x: scroll;
    
  }
  .site-link .inner ul::-webkit-scrollbar {
  display: none;
  }
/*   .site-link .inner ul li { */
/*     display: none; */
/*   } */
/*   .site-link .inner ul li:nth-child(1) { */
/*     display: block; */
/*   } */
  .site-link .inner ul img {
    width: 200px;
  }
  footer .util-wrap ul {
    column-gap: 20px;
  }
  footer .util-wrap ul li a {
    font-size: 11px;
  }
  footer .util-wrap ul li a strong {
    font-size: 12px;
  }
  footer .inner {
    padding: 10px 0 20px;
  }
  footer .inner .footer-logo img {
    width: 70px;
  }
  footer .inner .btn-wrap {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Noto Sans KR', sans-serif;
  letter-spacing: -0.4px;
  position: relative;
  color: #000;
}

.top-btn {
  position: fixed;
  right: 100px;
  bottom: 110px;
  z-index: 1;
  text-align: center;
}

.top-btn a {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #1F8923;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.top-btn a img {
  margin-bottom: -8px;
}

#container {
  overflow: hidden;
  position: relative;
}

#container.main {
  color: #fff;
}

@keyframes fade_up {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

#container.main .section {
  width: 100%;
  height: 100vh;
}

#container.main .section .inner {
  max-width: 1370px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

#container.main .section01 {
  background-image: url("/images/images_2023/main/mvis01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}

#container.main .section01 .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

#container.main .section01 .inner:focus {
  outline: none;
}

#container.main .section01 .inner p {
  font-size: 50px;
  font-weight: 700;
  opacity: 0;
  animation: fade_up 1s .5s forwards;
}

#container.main .section01 .inner p:nth-child(2) {
  margin-top: 15px;
}

#container.main .section01 .inner .scroll-down {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  margin-bottom: 55px;
  padding-bottom: 15px;
}

#container.main .section01 .inner .scroll-down span {
  font-size: 14px;
  line-height: 24px;
  display: block;
}

#container.main .section01 .inner .scroll-down:before {
  content: "";
  width: 1px;
  height: 55px;
  display: block;
  position: absolute;
  border-left: 1px solid #fff;
  left: 50%;
  bottom: -55px;
}

#container.main .section01 .inner .scroll-down:after {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  position: absolute;
  background-color: #fff;
  border-radius: 100%;
  bottom: 0;
  left: calc(50% - 4px);
  animation: scroll_down 2s infinite;
}

@keyframes scroll_down {
  50% {
    opacity: 1;
  }
  100% {
    bottom: -55px;
    opacity: 0;
  }
}

#container.main .section02 {
  background-image: url("/images/images_2023/main/mvis02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#container.main .section02 .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#container.main .section02 h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 58px;
}

#container.main .section02 h3 small {
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-top: 10px;
}

#container.main .section02 .resources ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 20px;
  margin: 30px 0 80px;
}

#container.main .section02 .resources ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(51, 51, 51, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  transition: all .3s;
}

#container.main .section02 .resources ul li a:hover, #container.main .section02 .resources ul li a:focus {
  border: 2px solid #fff;
  outline: none;
}

#container.main .section02 .resources ul li a span {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  display: block;
  margin-top: 30px;
}

#container.main .section02 .statistics h3 {
  margin-bottom: 30px;
}

#container.main .section02 .statistics ul {
  display: flex;
  justify-content: space-between;
}

#container.main .section02 .statistics ul li {
  display: flex;
  align-items: flex-start;
  column-gap: 60px;
  flex: none;
}

#container.main .section02 .statistics ul li:nth-child(2) dt {
  width: 34px;
}

#container.main .section02 .statistics ul li p {
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 23px;
}

#container.main .section02 .statistics ul li div {
  display: grid;
  row-gap: 30px;
}

#container.main .section02 .statistics ul li dl {
  font-size: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  column-gap: 30px;
}

#container.main .section02 .statistics ul li dl dt {
  margin-bottom: 8px;
}

#container.main .section02 .statistics ul li dl strong {
  font-family: 'Poppins', sans-serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 70px;
  letter-spacing: -2px;
  overflow: hidden;
  height: 70px;
  display: inline-flex;
  margin-right: 5px;
}

#container.main .section02 .statistics ul li dl strong > span {
  display: inline-flex;
  vertical-align: top;
  overflow: hidden;
  height: 100%;
}

#container.main .section02 .statistics ul li dl strong > span:nth-last-child(3n):before {
  content: ",";
}

#container.main .section02 .statistics ul li dl strong > span:first-child:before {
  display: none;
}

#container.main .section02 .statistics ul li dl strong > span span {
  display: block;
  position: relative;
  top: 0;
  text-align: center;
  width: 43px;
}

#container.main .section03 {
  background-image: url("/images/images_2023/main/mvis03.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#container.main .section03 .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#container.main .section03 form {
  width: 830px;
  padding: 25px 65px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(235, 235, 235, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 32px;
  margin: 0 auto 40px;
  position: relative;
}

#container.main .section03 form label {
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
}

#container.main .section03 form input[type="text"] {
  width: 482px;
  height: 45px;
  padding: 10px 20px;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  color: #000;
}

#container.main .section03 form input[type="text"]::placeholder {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 16px;
  color: #777;
}

#container.main .section03 form input[type="submit"] {
  font-size: 0;
  width: 24px;
  height: 24px;
  background-image: url("/images/images_2023/search_btn.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: transparent;
  position: absolute;
  top: calc(50% - 12px);
  right: 80px;
  cursor: pointer;
}

#container.main .section03 .title {
  display: flex;
  align-items: flex-end;
  column-gap: 10px;
  padding-left: 30px;
}

#container.main .section03 .title h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
}

#container.main .section03 .title p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

#container.main .section03 .notice-tab {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  column-gap: 30px;
  margin-top: -38px;
  margin-bottom: 484px;
  padding-right: 50px;
}

#container.main .section03 .notice-tab a {
  color: #fff;
}

#container.main .section03 .notice-tab .subject {
  font-size: 20px;
  font-weight: unset;
  line-height: 30px;
  position: relative;
  padding-left: 13px;
  padding-right: 13px;
  cursor: pointer;
  transition: all .5s;
}

#container.main .section03 .notice-tab .subject ~ .more-btn {
	/* width: 5px; */ /* height: 5px; */
	border-radius: 100%;
	background-color: #ccc;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	pointer-events: none;
}

#container.main .section03 .notice-tab .subject.active {
  font-weight: 700;
}

#container.main .section03 .notice-tab .subject.active ~ .more-btn {
  width: 20px;
  height: 20px;
  background-color: #fff;
  pointer-events: auto;
}

#container.main .section03 .notice-tab .subject.active ~ .more-btn:before, #container.main .section03 .notice-tab .subject.active ~ .more-btn:after {
  content: "";
  width: 15px;
  height: 2px;
  display: block;
  position: absolute;
  border-radius: 2px;
  background-color: #8CC53E;
  left: calc(50% - 7.5px);
  top: calc(50% - 1px);
}

#container.main .section03 .notice-tab .subject.active ~ .more-btn:after {
  transform: rotate(90deg);
}

#container.main .section03 .notice-tab .subject.active ~ .list {
  display: block;
}

#container.main .section03 .notice-tab li .list {
  display: none;
  width: 100%;
  position: absolute;
  top: 64px;
  left: 0;
  border-top: 1px solid #ddd;
  backdrop-filter: blur(15px);
}

#container.main .section03 .notice-tab li .list li {
  display: flex;
  align-items: center;
  height: 90px;
  padding: 0 30px;
  border-bottom: 1px solid #ddd;
  background: rgba(0, 0, 0, 0.05);
  transition: background .5s;
}

#container.main .section03 .notice-tab li .list li a {
  font-size: 20px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 100px;
  line-height: 90px;
}

#container.main .section03 .notice-tab li .list li a .cate {
  width: 110px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #FFF;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

#container.main .section03 .notice-tab li .list li a:focus {
  outline: 3px solid #EB5500;
}

#container.main .section03 .notice-tab li .list li .date {
  margin-left: auto;
}

#container.main .section03 .notice-tab li .list li:hover, #container.main .section03 .notice-tab li .list li:focus {
  background: #005BAA;
}

.mo-only {
  display: none;
}

@media (max-width: 1400px) {
  .top-btn {
    right: 50px;
    bottom: 60px;
  }
  .top-btn a {
    width: 60px;
    height: 60px;
    font-size: 16px;
  }
  .top-btn a img {
    width: 24px;
  }
  #container.main .section .inner {
    max-width: 90%;
  }
  #container.main .section01 .inner p {
    font-size: 38px;
  }
  #container.main .section01 .inner p:nth-child(2) {
    margin-top: 10px;
  }
  #container.main .section01 .inner .scroll-down {
    bottom: 20px;
    margin-bottom: 40px;
    padding-bottom: 10px;
  }
  #container.main .section01 .inner .scroll-down span {
    font-size: 12px;
    line-height: 20px;
  }
  #container.main .section01 .inner .scroll-down:before {
    height: 40px;
    bottom: -40px;
  }
  #container.main .section01 .inner .scroll-down:after {
    width: 7px;
    height: 7px;
    left: calc(50% - 3px);
  }
  @keyframes scroll_down {
    50% {
      opacity: 1;
    }
    100% {
      bottom: -40px;
      opacity: 0;
    }
  }
  #container.main .section02 h3 {
    font-size: 32px;
    line-height: 46px;
  }
  #container.main .section02 h3 small {
    font-size: 16px;
    line-height: 24px;
    margin-top: 5px;
  }
  #container.main .section02 .resources ul {
    column-gap: 8px;
    margin: 20px 0 60px;
  }
  #container.main .section02 .resources ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  }
  #container.main .section02 .resources ul li a img {
    width: 80px;
  }
  #container.main .section02 .resources ul li a span {
    font-size: 15px;
    line-height: 24px;
    margin-top: 10px;
    letter-spacing: -1px;
  }
  #container.main .section02 .statistics h3 {
    margin-bottom: 20px;
  }
  #container.main .section02 .statistics ul {
    flex-direction: column;
    row-gap: 40px;
  }
  #container.main .section02 .statistics ul li {
    display: grid;
    grid-template-columns: 150px 1fr;
  }
  #container.main .section02 .statistics ul li:nth-child(2) dt {
    width: auto;
  }
  #container.main .section02 .statistics ul li p {
    font-size: 20px;
    line-height: 36px;
    column-gap: 8px;
    margin-top: 20px;
  }
  #container.main .section02 .statistics ul li div {
    row-gap: 20px;
  }
  #container.main .section02 .statistics ul li dl {
    font-size: 14px;
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 20px;
  }
  #container.main .section02 .statistics ul li dl dt {
    margin-bottom: 8px;
  }
  #container.main .section02 .statistics ul li dl strong {
    font-size: 58px;
    line-height: 58px;
    height: 58px;
  }
  #container.main .section02 .statistics ul li dl strong > span span {
    width: 35px;
  }
  #container.main .section03 form {
    width: 680px;
    padding: 20px 50px;
    column-gap: 20px;
  }
  #container.main .section03 form label {
    font-size: 20px;
    line-height: 32px;
  }
  #container.main .section03 form input[type="text"] {
    width: 420px;
    height: 40px;
    padding: 8px 15px;
    font-size: 14px;
  }
  #container.main .section03 form input[type="text"]::placeholder {
    font-size: 14px;
  }
  #container.main .section03 form input[type="submit"] {
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    right: 70px;
  }
  #container.main .section03 .title {
    column-gap: 8px;
    padding-left: 20px;
  }
  #container.main .section03 .title h3 {
    font-size: 32px;
    line-height: 36px;
  }
  #container.main .section03 .title p {
    font-size: 14px;
    line-height: 22px;
  }
  #container.main .section03 .notice-tab {
    column-gap: 20px;
    margin-top: -28px;
    margin-bottom: 424px;
    padding-right: 50px;
  }
  #container.main .section03 .notice-tab .subject {
    font-size: 16px;
    line-height: 28px;
    padding-left: 10px;
    padding-right: 10px;
  }
  #container.main .section03 .notice-tab .subject.active a {
    width: 14px;
    height: 14px;
  }
  #container.main .section03 .notice-tab .subject.active a:before, #container.main .section03 .notice-tab .subject.active a:after {
    width: 8px;
    left: calc(50% - 4px);
  }
  #container.main .section03 .notice-tab li .list {
    top: 50px;
  }
  #container.main .section03 .notice-tab li .list li {
    padding: 0 20px;
    height: 80px;
  }
  #container.main .section03 .notice-tab li .list li a {
    font-size: 18px;
    padding-right: 60px;
    line-height: 80px;
  }
  #container.main .section03 .notice-tab li .list li a .cate {
    width: 90px;
    height: 30px;
    border-radius: 8px;
    font-size: 16px;
    margin-right: 20px;
  }
  #container.main .section03 .notice-tab li .list li .date {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  body.open {
    overflow-y: hidden !important;
    height: 100vh !important;
  }
  .top-btn {
    right: 30px;
    bottom: 50px;
  }
  .top-btn a {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
  .top-btn a img {
    width: 20px;
  }
  #container.main .section01 .inner p {
    font-size: 30px;
  }
  #container.main .section01 .inner p:nth-child(2) {
    margin-top: 5px;
  }
  #container.main .section02 h3 {
    font-size: 26px;
    line-height: 38px;
    text-align: center;
  }
  #container.main .section02 h3 small {
    font-size: 14px;
    line-height: 22px;
    margin-top: 0;
  }
  #container.main .section02 .resources ul {
    grid-template-columns: repeat(3, 160px);
    gap: 20px;
    justify-content: center;
    margin: 20px 0 40px;
  }
  #container.main .section02 .resources ul li a img {
    width: 60px;
  }
  #container.main .section02 .resources ul li a span {
    font-size: 14px;
    line-height: 22px;
    margin-top: 5px;
  }
  #container.main .section02 .statistics h3 {
    margin-bottom: 20px;
  }
  #container.main .section02 .statistics ul {
    row-gap: 30px;
    max-width: 520px;
    margin: 0 auto;
  }
  #container.main .section02 .statistics ul li {
    grid-template-columns: 120px 1fr;
    column-gap: 40px;
  }
  #container.main .section02 .statistics ul li p {
    font-size: 18px;
    line-height: 32px;
    margin-top: 14px;
  }
  #container.main .section02 .statistics ul li p img {
    width: 18px;
  }
  #container.main .section02 .statistics ul li div {
    row-gap: 10px;
  }
  #container.main .section02 .statistics ul li dl {
    font-size: 12px;
    grid-template-columns: 26px 1fr;
    column-gap: 10px;
  }
  #container.main .section02 .statistics ul li dl dt {
    margin-bottom: 6px;
  }
  #container.main .section02 .statistics ul li dl strong {
    font-size: 46px;
    line-height: 46px;
    height: 46px;
  }
  #container.main .section02 .statistics ul li dl strong > span span {
    width: 28px;
  }
  #container.main .section03 form {
    width: 520px;
    padding: 20px 30px;
    column-gap: 20px;
  }
  #container.main .section03 form label {
    font-size: 18px;
    line-height: 30px;
  }
  #container.main .section03 form input[type="text"] {
    width: 300px;
    height: 35px;
    padding: 5px 15px;
    font-size: 12px;
  }
  #container.main .section03 form input[type="text"]::placeholder {
    font-size: 12px;
  }
  #container.main .section03 form input[type="submit"] {
    width: 18px;
    height: 18px;
    top: calc(50% - 9px);
    right: 50px;
  }
  #container.main .section03 .title {
    padding-left: 10px;
  }
  #container.main .section03 .title h3 {
    font-size: 26px;
    line-height: 34px;
  }
  #container.main .section03 .title p {
    font-size: 12px;
  }
  #container.main .section03 .notice-tab {
    column-gap: 10px;
    margin-top: -28px;
    margin-bottom: 374px;
  }
  #container.main .section03 .notice-tab .subject {
    font-size: 14px;
    line-height: 28px;
  }
  #container.main .section03 .notice-tab .subject a {
    width: 3px;
    height: 3px;
    left: 10px;
  }
  #container.main .section03 .notice-tab .subject.active a {
    width: 12px;
    height: 12px;
    left: 3px;
  }
  #container.main .section03 .notice-tab .subject.active a:before, #container.main .section03 .notice-tab .subject.active a:after {
    width: 6px;
    left: calc(50% - 3px);
  }
  #container.main .section03 .notice-tab li .list {
    top: 40px;
  }
  #container.main .section03 .notice-tab li .list li {
    padding: 0 10px;
    height: 70px;
  }
  #container.main .section03 .notice-tab li .list li a {
    font-size: 16px;
    line-height: 70px;
  }
  #container.main .section03 .notice-tab li .list li a .cate {
    width: 70px;
    height: 25px;
    border-radius: 6px;
    font-size: 14px;
    margin-right: 10px;
  }
  #container.main .section03 .notice-tab li .list li .date {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .top-btn {
    right: 20px;
    bottom: 40px;
  }
  .top-btn a {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  .top-btn a img {
    width: 16px;
    margin-bottom: -5px;
  }
  #container.main .section01 .inner p {
    font-size: 24px;
  }
  #container.main .section01 .inner .scroll-down {
    bottom: 10px;
    margin-bottom: 30px;
    padding-bottom: 5px;
  }
  #container.main .section01 .inner .scroll-down span {
    font-size: 11px;
    line-height: 18px;
  }
  #container.main .section01 .inner .scroll-down:before {
    height: 30px;
    bottom: -30px;
  }
  #container.main .section01 .inner .scroll-down:after {
    width: 5px;
    height: 5px;
    left: calc(50% - 2px);
  }
  @keyframes scroll_down {
    50% {
      opacity: 1;
    }
    100% {
      bottom: -30px;
      opacity: 0;
    }
  }
  #container.main .section02 {
    height: auto;
    padding: 80px 0;
    background-position: left;
  }
  #container.main .section02 h3 {
    font-size: 20px;
    line-height: 32px;
  }
  #container.main .section02 h3 small {
    font-size: 12px;
    line-height: 18px;
  }
  #container.main .section02 .resources ul {
    grid-template-columns: repeat(2, 135px);
    gap: 10px;
  }
  #container.main .section02 .resources ul li a img {
    width: 50px;
  }
  #container.main .section02 .resources ul li a span {
    font-size: 12px;
    line-height: 18px;
    margin-top: 5px;
    letter-spacing: normal;
  }
  #container.main .section02 .statistics ul {
    row-gap: 20px;
    max-width: 280px;
  }
  #container.main .section02 .statistics ul li {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  #container.main .section02 .statistics ul li p {
    font-size: 16px;
    line-height: 28px;
    margin: 0;
  }
  #container.main .section02 .statistics ul li dl strong {
    font-size: 34px;
    line-height: 34px;
    height: 34px;
  }
  #container.main .section02 .statistics ul li dl strong > span span {
    width: 20px;
  }
  #container.main .section03 form {
    width: 280px;
    padding: 15px 20px;
    border-radius: 8px;
    flex-direction: column;
    row-gap: 10px;
    margin: 0 auto 40px;
  }
  #container.main .section03 form label {
    font-size: 16px;
    line-height: 24px;
  }
  #container.main .section03 form input[type="text"] {
    width: 100%;
    height: 30px;
  }
  #container.main .section03 form input[type="submit"] {
    width: 18px;
    height: 18px;
    top: unset;
    bottom: 21px;
    right: 30px;
  }
  #container.main .section03 .title {
    padding-left: 10px;
  }
  #container.main .section03 .title h3 {
    font-size: 26px;
    line-height: 34px;
  }
  #container.main .section03 .title p {
    font-size: 12px;
  }
  #container.main .section03 .notice-tab {
    column-gap: 6px;
    margin-top: 10px;
    margin-bottom: 302px;
    justify-content: flex-start;
  }
  #container.main .section03 .notice-tab .subject {
    line-height: 24px;
  }
  #container.main .section03 .notice-tab .subject a {
    width: 3px;
    height: 3px;
    left: 10px;
  }
  #container.main .section03 .notice-tab li .list {
    top: 30px;
  }
  #container.main .section03 .notice-tab li .list li {
    padding: 0 10px;
    height: 60px;
  }
  #container.main .section03 .notice-tab li .list li a {
    font-size: 14px;
    padding-right: 20px;
    line-height: 60px;
  }
  #container.main .section03 .notice-tab li .list li a .cate {
    width: 60px;
    height: 20px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 5px;
  }
  #container.main .section03 .notice-tab li .list li .date {
    font-size: 11px;
  }
  .mo-only {
    display: block;
  }
}

/* 異붽� 240403_1806 */
@media(max-width: 1560px) {
  header #gnb .menu .sub-menu {
    height: 280px;
  }
  header #gnb .menu .sub-menu a {
    font-size: 13px;
  }
  header.active:after {
    height: 280px;
  }
}
@media(max-width: 1100px) {
  header #gnb .menu .sub-menu a {
    font-size: 12px;
  }
}