@charset "UTF-8";
/* layout */
html,
body {
  width: 100%;
  height: 100%;
}

body.fixed {
  overflow-y: hidden;
}

.main {
  width: 100%;
  height: 100%;
  padding: 16px;
  padding-top: 152px;
}

#wrap {
  width: 100%;
  min-height: 100%;
  position: relative;
  padding-bottom: 418px;
}

#wrap.wrap_main {
  padding: 16px;
  background-color: #F1F1F5;
  padding-bottom: 418px;
}

.container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 20px;
}

#wrap.wrap_main .main {
  padding: 0;
  padding-top: 90px;
}

#wrap.wrap_main.scroll {
  padding: 0;
  padding-bottom: 418px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 102;
  background-color: #fff;
  transition: 0.1s;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

.header_logo_gnb {
  display: flex;
  align-items: center;
  gap: 80px;
}

.logo {
  display: inline-block;
  width: 167px;
  height: 40px;
  background: url(/kor/_img/common/logo.png) no-repeat center / contain;
}

nav.gnb>ul {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 40px;
}

nav.gnb>ul>li {
  position: relative;
  transform: translateY(10px);
  padding-bottom: 16px;
}

nav.gnb>ul>li>a {
  display: inline-block;
  height: 100%;
  color: #111111;
}

nav.gnb>ul>li.active>a,
nav.gnb>ul>li>a.active {
  color: var(--color-primary);
}

nav.gnb>ul>li ul.gnb_2depth {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  min-width: 180px;
  background-color: #fff;
  box-shadow: 0 0 16px rgb(0, 0, 0, 0.2);
  z-index: 102;
}

nav.gnb>ul>li ul.gnb_2depth li {
  height: 40px;
}

nav.gnb>ul>li ul.gnb_2depth li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
}

nav.gnb>ul>li ul.gnb_2depth li a:hover{
  background-color: #F2F7FA;
  color: var(--color-primary);
  border-bottom: 1px solid #E5E5EC;
}

.select_lang {
  position: relative;
}

.select_lang .selected {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 100px;
  border: 1px solid #E5E5EC;
  padding: 0 16px;
  cursor: pointer;
}

.select_lang .selected span {
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  position: relative;
  padding-left: 20px;
  padding-right: 18px;
}

.select_lang .selected span::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(/kor/_img/icon/icon_lang.svg) no-repeat center / contain;
}

.select_lang .selected span::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 17px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(/kor/_img/icon/icon_lang_arrow.svg) no-repeat center / contain;
}

.select_lang .lang_list {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 16px rgb(0, 0, 0, 0.2);
  z-index: 102;
}

.select_lang .lang_list li {
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  font-weight: 600;
  padding: 0 16px;
  cursor: pointer;
}

.select_lang .lang_list li.active {
  color: var(--color-primary);
  background-color: #F2F7FA;
}

.header .btn_mo_menu {
  display: none;
}

#wrap.wrap_main .header {
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  border-radius: 20px;
}

#wrap.wrap_main.scroll .header {
  width: 100%;
  top: 0;
  border-radius: 0px;
}

/* Footer */
.footer {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -418px;
  height: 418px;
  transform: translateY(-100%);
  background-color: #222222;
}

.footer__inner {
  max-width: 1520px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 0 20px;
  justify-content: center;
}

.footer_left, .footer_right {
  padding-top: 56px;
  flex: 1;
}

.footer_left {
  padding-right: 70px;
  border-right: 1px solid #444444;
}

.footer .footer_info {
  margin-top: 32px;
}

.footer .footer_info p {
  color: #999999;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer .footer_info p.copyright {
  margin-top: 24px;
}

.footer_right {
  padding-left: 70px;
}

.footer_gnb {
  display: flex;
  gap: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #999;
}

.footer_gnb>ul {
  position: relative;
  padding-right: 15px;
}

.footer_gnb>ul li {
  margin-bottom: 16px;
}

.footer_gnb>ul li.tit {
  color: #fff;
  line-height: 1.4;  
}

.footer_gnb>ul::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 13px;
  background-color: #505050;
  position: absolute;
  right: 0;
  top: 2.5px;
}

.footer_gnb>ul:last-child {
  padding-right: 0px;
}

.footer_gnb>ul:last-child::after {
  content: none;
}

.sidebar {
  display: none;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.sidebar.open {
  visibility: visible;
  opacity: 1;
}

.sidebar .sidebar__inner {
  position: absolute;
  right: -100%;
  top: 0;
  background-color: #fff;
  width: 320px;
  height: 100%;
  padding: 44px 24px;
  transition: 0.45s;
}

.sidebar.open .sidebar__inner {
  right: 0;
}

.sidebar .btn_close_sidebar {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url(/kor/_img/icon/icon_sidebar_close.svg) no-repeat center / contain;
  position: absolute;
  right: 16px;
  top: 14px;
}

.sidebar__gnb {
  margin-top: 24px;
}

.sidebar__gnb li {
  margin-bottom: 40px;
}

.sidebar__gnb li a {
  display: inline-block;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  font-family: "Libre Bodoni", serif;
}

.sidebar__gnb li a.active {
  color: var(--color-primary);
}

.page__navigation {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 56px;
  z-index: 101;
  background-color: #00649C;
}

.page__navigation .nav__inner {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  height: 100%;
}

.page__navigation ul.navigation {
  display: flex;
  height: 100%;
}

.page__navigation ul.navigation li.home {
  display: inline-block;
  width: 56px;
  height: 100%;
  border-left: 1px solid #2892D3;
  border-right: 1px solid #2892D3;
}

.page__navigation ul.navigation li.home a {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url(/kor/_img/icon/icon_home.svg) no-repeat center / 24px;
}

.page__navigation ul.navigation li.nav_li {
  min-width: 240px;
  height: 100%;
  border-right: 1px solid #2892D3;
}

.page__navigation ul.navigation span.current {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #F1F1F5;
  padding: 0 16px;
  cursor: pointer;
  position: relative;
}

.page__navigation ul.navigation span.current::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  right: 16px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  background: url(/kor/_img/icon/icon_navigation_arrow.svg) no-repeat center / 20px;
}

.page__navigation ul.navigation li.nav_li .depth_2 {
  display: none;
  box-shadow: 0 0 16px rgb(0, 0, 0, 0.2);
  width: 100%;
  margin-top: 8px;
}

.page__navigation ul.navigation li.nav_li .depth_2 li {
  width: 100%;
  height: 56px;
  font-size: 13px;
  font-weight: 600;
  background-color: #fff;
  border-bottom: 1px solid transparent;
}

.page__navigation ul.navigation li.nav_li .depth_2 li:hover,
.page__navigation ul.navigation li.nav_li .depth_2 li.active {
  background-color: #F2F7FA;
  color: var(--color-primary);
  border-bottom: 1px solid #E5E5EC;
}

.page__navigation ul.navigation li.nav_li .depth_2 li a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  padding: 0 16px;
}

.page__header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 280px;
  border-radius: 0 40px 0 40px;
}

.page__header.about {
  background: url(/kor/_img/sub/bg_about.png) no-repeat center / cover;
}

.page__header.product {
  background: url(/kor/_img/sub/bg_product.png) no-repeat center / cover;
}

.page__header.research {
  background: url(/kor/_img/sub/bg_research.png) no-repeat center / cover;
}

.page__header.service {
  background: url(/kor/_img/sub/bg_service.png) no-repeat center / cover;
}

.page__header h1 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
}

.page__content {
  margin-top: 80px;
  padding-bottom: 160px;
}

.page__title {
  text-align: center;
}

ul.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

ul.breadcrumb li.home {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/kor/_img/icon/icon_home_breadcrumb.svg) no-repeat center / contain;
}

ul.breadcrumb li {
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
  color: #999;
  position: relative;
  line-height: 20px;
  margin-right: 8px;
}

ul.breadcrumb li::after {
  content: '/';
  font-size: 14px;
  font-weight: 500;
  color: #999;
  position: absolute;
  top: 50%;
  right: -9px;
  transform: translateY(-50%);
}

ul.breadcrumb li:last-child {
  margin-right: 0px;
}

ul.breadcrumb li:last-child::after {
  content: none;
}

ul.breadcrumb li.active {
  color: #111;
}

.page__title h1.title {
  /* font-family: "Libre Bodoni",serif; */
  font-size: 64px;
  font-weight: 600;
  color: #111;
}

.page__tab {
  margin-top: 40px;
  border-bottom: 1px solid #E5E5EC;
}

.page__tab span.mo_currnt {
  display: none;
}

.page__tab ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.page__tab ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  min-width: 180px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #999;
  border-bottom: 2px solid transparent;
}

.page__tab ul li.active a {
  color: var(--color-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--color-primary);
}

.page__content .contents {
  margin-top: 80px;
}

.page__content .contents .sub_title {
  padding-bottom: 40px;
  border-bottom: 1px solid #111111;
  margin-bottom: 40px;
}

.page__content .contents .sub_title h2 {
  font-size: 40px;
  font-weight: 600;
  color: #111;
}

ul.pagination {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

ul.pagination li {
  display: inline-block;
  width: 32px;
  height: 32px;
}

ul.pagination li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 32px;
  text-align: center;
  font-size: 16px;
  color: #767676;
  border-radius: 50%;
}

ul.pagination li.active a {
  color: #fff;
  font-weight: 500;
  background-color: var(--color-primary);
}

ul.pagination li.first {
  background: url(/kor/_img/icon/icon_pagination_first.svg) no-repeat center / contain;
}

ul.pagination li.prev {
  background: url(/kor/_img/icon/icon_pagination_prev.svg) no-repeat center / contain;
}

ul.pagination li.next {
  background: url(/kor/_img/icon/icon_pagination_next.svg) no-repeat center / contain;
}

ul.pagination li.last {
  background: url(/kor/_img/icon/icon_pagination_last.svg) no-repeat center / contain;
}

.table_wrap {
  overflow-x: auto;
  padding-bottom: 8px;
}

.tbl_list table {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid #111111;
}

.tbl_list table thead th,
.tbl_list table tbody td {
  height: 100px;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 500;
  color: #111;
  background-color: #fff;
  text-align: center;
  border-bottom: 1px solid #E5E5EC;
  color: #111;
  padding: 0 12px;
}

.tbl_list table thead th {
  background-color: #F2F7FA;
}

.tbl_list table tbody td.tal {
  text-align: left;
}

.scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.scroll::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 10px;
}

.scroll::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 10px;
}

/* Badge */
.badge {
  display: inline-block;
  height: 41px;
  line-height: 41px;
  border-radius: 800px;
  width: auto;
  padding: 0 16px;
  font-size: 18px;
  font-weight: 600;
}

.badge.green {
  background-color: #F2F9EF;
  color: #5CB531;
}

.badge.blue {
  background-color: #EBF5FA;
  color: #017DC3;
}

@media screen and (min-width: 768px) and (max-width:1200px) {
  .footer_left {
    padding-right: 32px;
  }
  .footer_right {
    padding-left: 32px;
  }
}

/* Mobile */
@media screen and (max-width:767px) {
  .main {
    padding-left: 0;
    padding-right: 0;
    padding-top: 104px;
  }
  #wrap {
    padding-bottom: 408px;
  }
  .container {
    padding: 0 16px;
  }
  #wrap.wrap_main {
    padding: 0;
    padding-bottom: 408px;
  }
  #wrap.wrap_main .main {
    padding-top: 56px;
  }
  #wrap.wrap_main.scroll {
    padding-bottom: 408px;
  }
  .header {
    height: 56px;
  }
  .header__inner {
    padding: 0 16px;
  }
  .header_logo_gnb {
    gap: 0px;
  }
  .logo {
    width: 123px;
    height: 28px;
  }
  nav.gnb {
    display: none;
  }
  .header .select_lang {
    display: none;
  }
  .header .btn_mo_menu {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(/kor/_img/icon/icon_mo_menu.svg) no-repeat center / contain;
  }
  #wrap.wrap_main .header {
    top: 0;
    border-radius: 0px;
    width: 100%;
  }
  .footer {
    height: 408px;
    bottom: -408px;
  }
  .footer__inner {
    padding: 0 16px;
  }
  .footer_right {
    display: none;
  }
  .footer_left {
    padding-left: 0;
    border-right: none;
  }
  .footer .footer_info p {
    font-size: 14px;
  }
  .sidebar {
    display: block;
  }
  .page__navigation {
    height: 48px;
    top: 56px;
  }
  .page__navigation ul.navigation span.current {
    font-size: 14px;
  }
  .page__navigation ul.navigation li.nav_li {
    flex: 1;
    min-width: auto;
  }
  .page__navigation ul.navigation li.nav_li .depth_2 {
    margin-top: 4px;
  }
  .page__navigation ul.navigation li.nav_li .depth_2 li {
    height: 48px;
  }
  .page__header {
    height: 124px;
    border-radius: 0px;
  }
  .page__header h1 {
    font-size: 16px;
  }
  .page__content {
    margin-top: 40px;
    padding-bottom: 120px;
  }
  ul.breadcrumb li {
    font-size: 13px;
  }
  .page__title h1.title {
    font-size: 22px;
  }
  .page__tab {
    margin-top: 12px;
    border-bottom: none;
    position: relative;
  }
  .page__tab span.mo_currnt {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    height: 48px;
    border-bottom: 2px solid var(--color-primary);
    color: var(--color-primary);
  }
  .page__tab span.mo_currnt::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    background: url(/kor/_img/icon/icon_pagetab_arrow.svg) no-repeat center / contain;
  }
  .page__tab ul {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 104;
    display: none;
    margin-top: 4px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  }
  .page__tab ul li a {
    height: 56px;
    min-width: auto;
    width: 100%;
    font-size: 16px;
    justify-content: flex-start;
    padding: 0 16px;
    border-bottom: 1px solid #E5E5EC;
  }
  .page__tab ul li.active a {
    border-bottom: 1px solid #E5E5EC;
  }
  .page__content .contents {
    margin-top: 40px;
  }
  .page__content .contents .sub_title {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .page__content .contents .sub_title h2 {
    font-size: 20px;
  }
  ul.pagination {
    margin-top: 20px;
  }
  .tbl_list table thead th,
  .tbl_list table tbody td {
    font-size: 14px;
  }
  .tbl_list table thead th {
    height: 48px;
  }
  .tbl_list table tbody td {
    height: 64px;
  }
  .badge {
    height: 29px;
    line-height: 29px;
    font-size: 12px;
  }
}