header .top_area {
  width: 100%;
  background-color: #0c1429;
  height: 36px;
}
header .top_area .site_map_open {
  cursor: pointer;
  padding-right: 10px;
  border-right: 1px solid #e1e1e1;
}
@media screen and (max-width: 800px) {
  header .top_area .site_map_open {
    display: none;
  }
}
header .top_area .top_gnb {
  text-align: right;
  font-size: 13px;
  font-weight: 400;
  line-height: 36px;
}
header .top_area .top_gnb a {
  color: #e1e1e1;
  margin-left: 10px;
}
header .bottom_area {
  height: 84px;
}
header .bottom_area .inner {
  display: grid;
  grid-template-columns: 1fr 4fr;
  align-items: center;
}
@media screen and (max-width: 1250px) {
  header .bottom_area .inner {
    width: 95%;
  }
}
header .bottom_area .inner .gnb_main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-family: "Nanum Square";
}
header .bottom_area .inner .gnb_main li {
  height: 84px;
  line-height: 84px;
  font-size: 17px;
  text-align: center;
  font-weight: 700;
  box-sizing: border-box;
}
header .bottom_area .inner .gnb_main li a {
  color: #222;
  display: inline-block;
  position: relative;
  width: 100%;
}
header .bottom_area .inner .gnb_main li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 5px;
  background-color: #2763ba;
  transition: all 0.3s;
}
header .bottom_area .inner .gnb_main li a:hover::after {
  width: 100%;
  left: 0;
}
header .bottom_area .inner .gnb_main li a:hover::before {
  width: 100%;
  left: 0;
}
header .bottom_area .inner .gnb_main li a.on {
  color: #2763ba;
}
header .bottom_area .inner .gnb_main li .gnb_sub {
  visibility: hidden;
  position: absolute;
  display: flex;
  justify-content: center;
  z-index: 5;
}
header .bottom_area .inner .gnb_main li .gnb_sub.show {
  visibility: visible;
}
header .bottom_area .inner .gnb_main li .gnb_sub a {
  height: 40px;
  line-height: 40px;
}
header .bottom_area .inner .gnb_main li .gnb_sub li {
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  margin-left: 4em;
  font-weight: 300;
}
header .bottom_area .inner .gnb_main li .gnb_sub li:hover a {
  color: #2763ba;
}
@media screen and (max-width: 900px) {
  header .bottom_area .inner .gnb_main li .gnb_sub li {
    font-size: 12px;
  }
}
header .bottom_area .inner .gnb_main li .gnb_sub li a::after {
  content: none;
}
header .bottom_area .inner .gnb_main li .abroad_sub {
  margin-left: -1em;
}
@media screen and (max-width: 1010px) {
  header .bottom_area .inner .gnb_main li .abroad_sub {
    left: 33%;
  }
}
header .bottom_area .inner .gnb_main li .cooperation_sub {
  margin-left: 1em;
}
header .bottom_area .inner .gnb_main li .network_sub {
  left: 50%;
}
@media screen and (max-width: 1210px) {
  header .bottom_area .inner .gnb_main li .network_sub {
    left: 40%;
  }
}
@media screen and (max-width: 1040px) {
  header .bottom_area .inner .gnb_main li .network_sub {
    left: 34%;
  }
}
header .bottom_area .inner .gnb_main #main_menu {
  cursor: pointer;
  width: 100%;
}
@media screen and (max-width: 1250px) {
  header .bottom_area .inner .gnb_main #main_menu {
    font-size: 16px;
  }
}
@media screen and (max-width: 903px) {
  header .bottom_area .inner .gnb_main #main_menu {
    font-size: 14px;
  }
}
header .bottom_area .inner .gnb_main #main_menu.line {
  border-bottom: 5px solid #2763ba;
}
header .bottom_area .inner .gnb_main #main_menu.line > a {
  color: #2763ba;
}

.m_menu_wrap {
  height: 69px;
  display: none;
  position: relative;
  transition: all 800ms cubic-bezier(0.8, 0, 0.33, 1);
  border-radius: 0% 0% 100% 50%;
  border-bottom-left-radius: 10em;
  z-index: 6;
}
.m_menu_wrap .m_menu_wrap-open {
  transform: translateX(0px);
  border-radius: 0% 0% 0% 0%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0;
}
.m_menu_wrap .m_menu_btn {
  position: absolute;
  top: 30%;
  right: 5%;
  padding: 0;
  width: 30px;
  cursor: pointer;
  z-index: 2;
}
.m_menu_wrap .m_menu_btn .line {
  padding: 0;
  width: 30px;
  background: #000;
  height: 2px;
  margin: 5px 0;
  transition: all 700ms cubic-bezier(0.9, 0, 0.33, 1);
}
.m_menu_wrap .m_menu_list_wrap {
  position: absolute;
  left: 0;
  top: 69px;
  padding-bottom: 2em;
  width: 100%;
  transform: translateX(700px);
  opacity: 0;
  transition: all 900ms cubic-bezier(0.9, 0, 0.33, 1);
}
.m_menu_wrap .m_menu_list_wrap a {
  color: #a4cdff;
}
.m_menu_wrap .m_menu_list_wrap .m_content_wrap {
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  right: 0;
  height: auto;
  width: 100%;
}
.m_menu_wrap .m_menu_list_wrap .m_content_wrap .m_menu_list {
  text-align: right;
  padding: 1em 1em 2em 0;
  box-sizing: border-box;
  font-size: 1.5em;
  transition: all 300ms cubic-bezier(0.9, 0, 0.33, 1);
  width: 50%;
  background-color: #000;
  margin-left: 50%;
}
@media screen and (max-width: 600px) {
  .m_menu_wrap .m_menu_list_wrap .m_content_wrap .m_menu_list {
    width: 70%;
    margin-left: 30%;
  }
}
@media screen and (max-width: 400px) {
  .m_menu_wrap .m_menu_list_wrap .m_content_wrap .m_menu_list {
    width: 100%;
    margin-left: 0;
    font-size: 1.3em;
  }
}
.m_menu_wrap .m_menu_list_wrap .m_content_wrap .m_menu_list .m_menu_sub {
  margin-top: 20px;
  margin-left: 20px;
}
.m_menu_wrap .m_menu_list_wrap .m_content_wrap .m_menu_list .m_menu_sub a {
  color: #fff;
  font-size: 0.7em;
}

.m_menu_wrap .m_menu_btn .line.line--1 {
  width: 30px;
  transform: rotate(0) translateY(0);
}

.m_menu_wrap .m_menu_btn .line.line--1.line-cross {
  width: 30px;
  transform: rotate(45deg) translateY(10px);
  background: rgba(0, 0, 0, 0.6);
}

.m_menu_wrap .m_menu_btn .line.line--2 {
  width: 30px;
  transform: translateX(0);
}

.m_menu_wrap .m_menu_btn .line.line--2.line-fade-out {
  width: 28px;
  transform: translate(30px);
  opacity: 0;
}

.m_menu_wrap .m_menu_btn .line.line--3 {
  width: 30px;
  transform: rotate(0) translateY(0);
}

.m_menu_wrap .m_menu_btn .line.line--3.line-cross {
  width: 30px;
  transform: rotate(-45deg) translateY(-10px);
  background: rgba(0, 0, 0, 0.6);
}

.m_menu_wrap .m_menu_list_wrap.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

@media screen and (max-width: 819px) {
  .network_sub {
    left: 24%;
  }
}
@media screen and (max-width: 798px) {
  header .bottom_area {
    display: none;
  }
  header .m_menu_wrap {
    display: block;
  }
  header > inner {
    width: 100%;
  }
  header .top_gnb {
    width: 97%;
  }
}
.scroll_box .scroll_top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  cursor: pointer;
  border: 0;
  text-align: center;
  background-color: rgba(39, 99, 186, 0.9);
  color: #fff;
}

footer {
  background-color: #0c1429;
  padding: 40px 0;
}
footer .inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
}
footer .inner .logo {
  height: 42px;
}
footer .inner .info_content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
footer .inner .info_content .text01 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  opacity: 0.3;
}
footer .inner .info_content .text02 {
  font-weight: 500;
  color: #fff;
  margin-top: 10px;
}
footer .inner .info_content .text02 a {
  color: #fff;
}
@media screen and (max-width: 798px) {
  footer .inner .info_content .text02 span {
    display: block;
  }
}
footer .inner .bt_nav a {
  color: #fff;
  opacity: 0.3;
  font-size: 14px;
  font-weight: 400;
  margin-right: 20px;
}
footer .inner .address {
  font-size: 14px;
  font-weight: 500;
  color: #e1e1e1;
  margin-top: 30px;
}
footer .inner .copyright {
  font-size: 14px;
  font-weight: 500;
  color: #e1e1e1;
  margin-top: 10px;
}

@media screen and (max-width: 1024px) {
  footer .inner {
    display: block;
    text-align: center;
  }
  footer .inner .info_content {
    margin: 2em 0;
    grid-template-columns: repeat(3, 1fr);
  }
  footer .inner .info_content .sns {
    margin-top: 1em;
  }
  footer .inner .info_content .brochure {
    margin-top: 1em;
    margin-left: 1em;
  }
  footer .inner .info_content li:nth-child(4) {
    grid-column: 1/3;
    grid-row: 2/5;
  }
  footer .inner .info_content li:nth-child(5) {
    grid-column: 2/4;
    grid-row: 2/5;
  }
}
@media screen and (max-width: 500px) {
  .info_content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.bottom_area .gnb_main #main_menu .gnb_sub li a.sub_on {
  color: #2763ba;
}

header .bottom_area .eng_logo {
  margin-top: 0.4em;
}

.m_menu_wrap .m_menu_list_wrap .eng_m_content_wrap .eng_m_menu_list {
  width: 100%;
  margin-left: 0;
}
@media screen and (max-width: 798px) {
  .m_menu_wrap .m_menu_list_wrap .eng_m_content_wrap .eng_m_menu_list a {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 798px) {
  footer .eng_logo {
    scale: 0.8;
  }
}
footer .eng_info_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
footer .eng_info_content .text01 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  opacity: 0.3;
}
footer .eng_info_content .text02 {
  font-weight: 500;
  color: #fff;
  margin-top: 10px;
}
@media screen and (max-width: 1025px) {
  footer .eng_info_content {
    margin-top: 1.5em;
  }
}
@media screen and (max-width: 798px) {
  footer .eng_info_content {
    grid-template-columns: repeat(2, 1fr);
  }
  footer .eng_info_content li:nth-child(3), footer .eng_info_content li:nth-child(4) {
    margin-top: 2em;
  }
}
@media screen and (max-width: 798px) {
  footer .infoArea .eng_address {
    font-size: 12px;
  }
}
@media screen and (max-width: 798px) {
  footer .infoArea .eng_copyright {
    font-size: 12px;
  }
}/*# sourceMappingURL=header_footer.css.map */