@charset "utf-8";

/* Main layout */
#wrap {
  width: 100%;
}

header {
  width: 100%;
  height: 72px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background-color: rgba(255, 255, 255, 1);
  -webkit-transition: top 0.4s ease-in-out;
  transition: top 0.4s ease-in-out;
}

.header_up {
  border-bottom: 1px solid #aaa;
  background-color: rgba(255, 255, 255, 1);
}

.header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}

.header_wrap .header_logo {
  width: 149px;
  height: 24px;
  background: url(/images/new/img/common/logo.png);
  -webkit-background-size: 350px 219px;
  background-size: 350px 219px;
  background-position: 0px -26.5px;
}

.header_wrap .header_logo a {
  display: block;
  width: 100%;
  height: 100%;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.gnb_menu {
  display: flex;
  column-gap: 50px;
  font-size: 0;
  text-align: center;
}

.gnb_menu .gnb_menu_list {

}

.gnb_menu .gnb_menu_list h2 span {
  font-size: 30px;
}

.gnb_menu .gnb_menu_list .gnb_menu_item:before {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -2px;
  width: calc(100% + 2px);
  height: 2px;
  background-color: #068acd;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.gnb_menu .gnb_menu_list:hover .gnb_menu_item:before,
.gnb_menu .gnb_menu_list .gnb_menu_item:focus:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.gnb_menu .gnb_menu_list.on .gnb_menu_item:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.gnb_menu .gnb_menu_item {
  display: block;
  position: relative;
  font-family: "NanumSquare-B";
  font-size: 18px;
  color: #333;
}

.gnb_menu .gnb_dropMenu_wrap {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  z-index: 999;
  padding-bottom: 20px;
  background: url(/images/new/img/dropmenu_bg.png) center no-repeat #fff;
  border-bottom: 1px solid #999;
  border-top: 1px solid #f2f2f2;
}

.gnb_menu .gnb_dropMenu_wrap h2 {
  font-size: 30px;
  width: 100%;
  max-width: 1000px;
  margin: 25px auto 10px;
  text-align: left;
  padding: 0 20px;
  font-family: "NanumSquare-B";
  color: #666;
}

.gnb_menu .gnb_dropMenu_wrap > h2 span {
  padding: 0 0 0 20px;
  font-size: 18px;
  font-family: "NanumSquare-L";
}

.gnb_menu .gnb_dropMenu_wrap > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}

.gnb_menu .gnb_dropMenu_wrap ul > li {
  position: relative;
  bottom: 0;
  background: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.gnb_menu .gnb_dropMenu_wrap > li:hover:before,
.gnb_menu .gnb_dropMenu_wrap > li:hover + li:before,
.gnb_menu .gnb_dropMenu_wrap > li:last-child:hover:after {
  display: none;
}

.gnb_menu .gnb_menu_list:first-child > .gnb_dropMenu_wrap ul > li {
  width: 97.7777778px;
}

.gnb_menu .gnb_menu_list:nth-child(2) > .gnb_dropMenu_wrap ul > li {
  width: 111.25px;
}

.gnb_menu .gnb_menu_list:nth-child(3) > .gnb_dropMenu_wrap ul > li {
  width: 151.666667px;
}

.gnb_menu .gnb_menu_list:nth-child(4) > .gnb_dropMenu_wrap ul > li {
  width: 128.571429px;
}

.gnb_menu .gnb_menu_list:nth-child(5) > .gnb_dropMenu_wrap ul > li {
  width: 320px;
}

.gnb_menu .gnb_menu_list:nth-child(6) > .gnb_dropMenu_wrap ul > li {
  width: 313.333333px;
}


/*
esg
.gnb_menu .gnb_menu_list:nth-child(4) > .gnb_dropMenu_wrap > li {
    width:190px;
}
.gnb_menu .gnb_menu_list:nth-child(5) > .gnb_dropMenu_wrap > li {
    width:110px;
}
.gnb_menu .gnb_menu_list:nth-child(6) > .gnb_dropMenu_wrap > li {
    width:250px;
}
.gnb_menu .gnb_menu_list:nth-child(7) > .gnb_dropMenu_wrap > li, .gnb_menu .gnb_menu_list:nth-child(6) > .gnb_dropMenu_wrap > li {
    width:320px;
} 
*/

.gnb_menu .gnb_dropMenu > li {
  border: 1px solid #ddd;
  box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.08);
}

.gnb_menu .gnb_dropMenu_wrap ul > li:hover {
  background: rgba(231, 249, 252, 0.7);
  box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.4);
}

.gnb_menu .gnb_dropMenu .gnb_dropMenu_item {
  display: block;
  padding: 78px 0 20px;
  text-align: center;
  color: #222;
  font-size: 16px;
  line-height: 1.2;
}

.gnb_menu .gnb_dropMenu .gnb_dropMenu_item span {
  font-family: "NotoSansKr-R";
}

.gnb_menu .gnb_dropMenu .gnb_dropMenu_item:hover .depth,
.gnb_menu .gnb_dropMenu .gnb_dropMenu_item:focus .depth {
  opacity: 1;
  filter: alpha(opacity=100);
}

.dropMenu01 li .gnb_dropMenu_item:before,
.dropMenu02 li .gnb_dropMenu_item:before,
.dropMenu03 li .gnb_dropMenu_item:before,
.dropMenu04 li .gnb_dropMenu_item:before,
.dropMenu05 li .gnb_dropMenu_item:before,
.dropMenu06 li .gnb_dropMenu_item:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 43px;
  height: 38px;
  background: url(/images/new/img/common/icons.png) no-repeat;
  -webkit-background-size: 1000px 1200px;
  background-size: 1000px 1200px;
  background-position: 0 -1121px;
}

.dropMenu01 li:first-child .gnb_dropMenu_item:before {
  background-position: 0 -1121px;
}

.dropMenu01 li:nth-child(2) .gnb_dropMenu_item:before {
  background-position: -43px -1121px;
}

.dropMenu01 li:nth-child(3) .gnb_dropMenu_item:before {
  background-position: -86px -1121px;
}

.dropMenu01 li:nth-child(4) .gnb_dropMenu_item:before {
  background-position: -129px -1121px;
}

.dropMenu01 li:nth-child(5) .gnb_dropMenu_item:before {
  background-position: -172px -1121px;
}

.dropMenu01 li:nth-child(6) .gnb_dropMenu_item:before {
  background-position: -215px -1121px;
}

.dropMenu01 li:nth-child(7) .gnb_dropMenu_item:before {
  background-position: -258px -1121px;
}

.dropMenu01 li:nth-child(8) .gnb_dropMenu_item:before {
  background-position: -301px -1121px;
}

.dropMenu01 li:nth-child(9) .gnb_dropMenu_item:before {
  background-position: -344px -1121px;
}

.dropMenu02 li:first-child .gnb_dropMenu_item:before {
  /*신용조회*/
  background-position: -387px -1121px;
}

.dropMenu02 li:nth-child(2) .gnb_dropMenu_item:before {
  /*신용평가*/
  background-position: -430px -1121px;
}

.dropMenu02 li:nth-child(3) .gnb_dropMenu_item:before {
  /*기술평가*/
  background-position: -473px -1121px;
}

.dropMenu02 li:nth-child(4) .gnb_dropMenu_item:before {
  /*ESG*/
  background-position: -690px -1160px;
}

.dropMenu02 li:nth-child(5) .gnb_dropMenu_item:before {
  /*리스크솔루션*/
  background-position: -516px -1121px;
}

.dropMenu02 li:nth-child(6) .gnb_dropMenu_item:before {
  /*글로벌기업정보*/
  background-position: -559px -1121px;
}

.dropMenu02 li:nth-child(6) .gnb_dropMenu_item {
  font-size: 15px;
}

/* .dropMenu02 li:nth-child(8) .gnb_dropMenu_item:before {
  /*데이터플랫폼*/
  /* background-position: -734px -1160px;
} */

.dropMenu02 li:nth-child(7) .gnb_dropMenu_item:before {
  /*부가서비스*/
  background-position: -602px -1121px;
}

.dropMenu02 li:nth-child(8) .gnb_dropMenu_item:before {
  /*KO-DLab*/
  background: url(/images/new/img/common/presentation.png) no-repeat center
    center / 100% auto;
}

.dropMenu03 li:first-child .gnb_dropMenu_item:before {
  background-position: -645px -1121px;
}

.dropMenu03 li:nth-child(2) .gnb_dropMenu_item:before {
  background-position: -688px -1121px;
}

.dropMenu03 li:nth-child(3) .gnb_dropMenu_item:before {
  background-position: -774px -1121px;
}

.dropMenu03 li:nth-child(4) .gnb_dropMenu_item:before {
  background-position: -473px -1162px;
}

.dropMenu03 li:nth-child(5) .gnb_dropMenu_item:before {
  background-position: -731px -1121px;
}

.dropMenu03 li:nth-child(6) .gnb_dropMenu_item:before {
  background-position: -430px -1162px;
}

.dropMenu03 li:nth-child(7) .gnb_dropMenu_item:before {
  background-position: -817px -1121px;
}

.dropMenu04 li:first-child .gnb_dropMenu_item:before {
  background-position: -860px -1121px;
}

.dropMenu04 li:nth-child(2) .gnb_dropMenu_item:before {
  background-position: -559px -1162px;
}

/*
.dropMenu04  li:nth-child(4) .gnb_dropMenu_item:before {
    background-position: -558px -1162px;
}
*/

.dropMenu04 li:nth-child(3) .gnb_dropMenu_item:before {
  background-position: -645px -1162px;
}

.dropMenu04 li:nth-child(4) .gnb_dropMenu_item:before {
  background-position: -946px -1121px;
}

.dropMenu04 li:nth-child(5) .gnb_dropMenu_item:before {
  background-position: 1px -1162px;
}

.dropMenu04 li:nth-child(6) .gnb_dropMenu_item:before {
  background-position: -42px -1162px;
}

.dropMenu04 li:nth-child(7) .gnb_dropMenu_item:before {
  background-position: -129px -1162px;
}

.dropMenu05 li:first-child .gnb_dropMenu_item:before {
  background-position: -172px -1162px;
}

.dropMenu05 li:nth-child(2) .gnb_dropMenu_item:before {
  background-position: -215px -1162px;
}

.dropMenu05 li:nth-child(3) .gnb_dropMenu_item:before {
  background-position: -258px -1162px;
}

.dropMenu05 li:nth-child(4) .gnb_dropMenu_item:before {
  background-position: -258px -1162px;
}

.dropMenu06 li:first-child .gnb_dropMenu_item:before {
  background-position: -301px -1162px;
}

.dropMenu06 li:nth-child(2) .gnb_dropMenu_item:before {
  background-position: -344px -1162px;
}

.dropMenu06 li:nth-child(3) .gnb_dropMenu_item:before {
  background-position: -387px -1162px;
}

.header_util .header_lang {
  display: inline-block;
  vertical-align: top;
  background: #023e7c;
  border-radius: 3px;
  height: 23px;
  width: 44px;
  margin: -2px 10px 0;
  text-align: center;
}

.header_util .header_lang a {
  color: #fff;
  font-size: 12px;
  font-family: "NanumSquare-B";
  line-height: 23px;
}

.header_util .header_lang a:hover {
  color: #009ce2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header_util .sitemap_box {
  width: 42px;
  height: 39px;
}

.header_util .btn_sitemap {
  position: relative;
  width: 100%;
  height: 100%;
}

.header_util .btn_sitemap p {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 11px;
  color: #222;
}

.header_util .btn_sitemap .btn_line {
  position: absolute;
  display: block;
  width: 30px;
  height: 5px;
  left: 6px;
  border-radius: 5px;
  background-color: #023e7c;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header_util .btn_sitemap .btn_line:nth-child(2) {
  top: 0px;
}

.header_util .btn_sitemap .btn_line:nth-child(3) {
  top: 8px;
}

.header_util .btn_sitemap .btn_line:nth-child(4) {
  top: 16px;
}

.header_util .btn_sitemap:hover .btn_line {
  background-color: #009ce2;
}

.sitemap,
.sitemap_dimmed {
  display: none;
}

header.active {
  height: 72px;
  background-color: #014282;
  border: 0;
}

header.active .header_logo {
  width: 148px;
  height: 23px;
  background: url(/images/new/img/common/logo.png);
  -webkit-background-size: 350px 219px;
  background-size: 350px 219px;
  background-position: 0px -80px;
}

header.active .header_util .header_lang {
  background: #fff;
}

header.active .header_util .header_lang a {
  color: #0050a0;
}

header.active .sitemap_box {
  height: 42.75px;
}

header.active .gnb_menu {
  display: none;
}

header.active .header_lang a {
  color: #fff;
}

header.active .sitemap_box p {
  color: #fff;
}

header.active .header_lang a:first-child:after {
  background-color: #fff;
  opacity: 0.3;
  filter: alpha(opacity=30);
}

header.active .btn_sitemap .btn_line {
  background-color: #fff;
}

header.active .btn_sitemap .btn_line:nth-child(2) {
  top: -12px;
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}

header.active .btn_sitemap .btn_line:nth-child(3) {
  opacity: 0;
  filter: alpha(opacity=0);
}

header.active .btn_sitemap .btn_line:nth-child(4) {
  top: 28px;
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
}

header.active .btn_sitemap:hover .btn_line {
  background-color: #fff;
}

header.active .sitemap {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  z-index: 9999;
  background-color: #0050a0;
  height: 100vh;
  overflow-y: auto;
}

header.active + .sitemap_dimmed {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(58, 62, 80, 0.97);
}

.sitemap_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 50px 20px;
}

.sitemap_container:after {
  content: "";
  display: block;
  clear: both;
}  

.sitemap_container > li:nth-child(2) {
  width: 20%;
}

.sitemap_list {
  float: left;
  width: 16%;
  margin: 0 0 50px 0;
  color: #fff;
}

.sitemap_list:after {
  content: "";
  display: block;
  clear: both;
}

.sitemap_list:first-child {
  margin: 0;
}

.sitemap_list .menu_title {
  display: block;
  padding-bottom: 20px;
  font-family: "NanumSquare-EB", "나눔고딕", "Dotum", "돋움", "Helvetica",
    "Arial", "AppleSDGothicNeo", sans-serif;
  font-size: 22px;
  position: relative;
}

.sitemap_list .menu_title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 30px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.5);
}

.sitemap_list .menu_container {
  margin: 0 0 10px 0;
}

.sitemap_list .menu_list {
  margin: 3px 0 0;
  line-height: 1.2;
}

.sitemap_list:nth-child(3) .menu_container:last-child .menu_list a span {
  font-family: "NotoSansKr-R";
}

.sitemap_list .menu_list.depth_title {
  padding-bottom: 2px;
  display: inline-block;
  position: relative;
  font-family: "NanumSquare-B", "나눔고딕", "Dotum", "돋움", "Helvetica",
    "Arial", "AppleSDGothicNeo", sans-serif;
  font-size: 16px;
}

.sitemap_list .menu_list a {
  color: #fff;
}

.sitemap_list .menu_list .depth {
  display: inline-block;
  position: relative;
  font-family: "NanumSquare-L", "나눔고딕", "Dotum", "돋움", "Helvetica",
    "Arial", "AppleSDGothicNeo", sans-serif;
  font-size: 14px;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.sitemap_list .menu_list a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.sitemap_list .menu_list a:hover:before,
.sitemap_list .menu_list a:focus:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.sitemap_list .menu_list a:hover .depth,
.sitemap_list .menu_list a:focus .depth {
  opacity: 1;
  filter: alpha(opacity=100);
}

.sitemap_list .menu_list .btn_link:after {
  top: -1px;
  background-position: -81px 0;
}

/* main */
.container {
  padding: 72px 0 0px;
}

.container h3 {
  padding: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
  color: #222;
  position: relative;
  font-family: "NanumSquare-R", "나눔고딕", "Dotum", "돋움", "Helvetica",
    "Arial", "AppleSDGothicNeo", sans-serif;
}

.kedrating_wrap {
  position: relative;
  max-width: 1200px;
  height: 85px;
  margin: 0 auto;
  z-index: 999;
  font-family: "NotoSansKr-R";
}

.kedrating_wrap ul {
  position: absolute;
  top: -30px;
  left: 10%;
  width: 80%;
  height: 80px;
  background: #fff;
  border: 1px solid #e6e8ef;
  padding: 15px 40px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid #dbdde3;
}

.kedrating_wrap ul li {
  float: left;
}

.kedrating_wrap ul li:nth-child(1) {
  width: 22%;
  font-size: 30px;
  line-height: 30px;
  font-family: "NotoSansKr-Bl";
  letter-spacing: -1px;
}

.kedrating_wrap ul li:nth-child(1) span {
  color: #ff912f;
}

.kedrating_wrap ul li:nth-child(1) p {
  font-size: 16px;
  line-height: 25px;
  font-family: "NotoSansKr-L";
}

.kedrating_wrap ul li:nth-child(2) {
  width: 58%;
  font-size: 27px;
  letter-spacing: -0.5px;
  text-align: center;
  padding: 3px 0 0 0;
}

.kedrating_wrap ul li:nth-child(2) span {
  position: relative;
}

.kedrating_wrap ul li:nth-child(2) span:before {
  position: absolute;
  content: "";
  background: #ff912f;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  left: 13px;
  top: -3px;
}

.kedrating_wrap ul li:nth-child(3) {
  width: 20%;
}

.kedrating_wrap ul li:nth-child(3) img {
  vertical-align: middle;
  width: 90%;
}

.content_summary {
  width: 100%;
  height: 220px;
  background-color: #fff;
  margin: 50px auto;
  display: block;
  overflow: hidden;
}

.content_summary > ul {
  max-width: 1200px;
  min-width: 1024px;
  margin: 0 auto;
}

.content_summary .summary_container:nth-child(1) {
  width: 50%;
}

.summary_container {
  position: relative;
  float: left;
  width: 22%;
  margin: 0 1% 0 0;
}

.summary_container:last-child {
  margin: 0;
  float: right;
}

.summary_container p {
  font-size: 18px;
  text-align: center;
}

.content_summary .customer {
  background: url(/images/new/img/main_pr.png) no-repeat bottom #fff;
  background-position: 0 70px;
  width: 22%;
  height: 220px;
  position: relative;
  margin: 0;
  padding: 20px 0 0 0;
}

.content_summary .customer h3,
.recruit h3 {
  text-align: center;
}

.content_summary .customer h3 {
  display: none;
}

.content_summary .customer p.call_num {
  color: #97c64f;
  font-family: "NanumSquare-EB";
  font-size: 28px;
  letter-spacing: -1px;
  text-align: right;
  padding: 10px 35px 0 0;
}

.content_summary .customer > p:nth-child(4) {
  text-align: right;
  margin: 0 15px 0 0;
}

.content_summary .recruit {
  width: 20%;
  height: 220px;
  margin: 0;
  background: url(/images/new/img/main_pr.png) no-repeat bottom #fff;
  background-position: -180px 70px;
}

.content_summary .recruit p {
  text-align: left;
  line-height: 20px;
}

.content_summary .recruit p:last-child {
  margin: 25px 0 0;
}

.content_summary .pr_banner {
  width: 24%;
}

.content_summary .pr_banner li {
  background: url(/images/new/img/s_banner_recruit.png) no-repeat;
  height: 240px;
}

.news_box {
  clear: both;
  width: 100%;
}

.news_box > a:hover {
  color: #1673cc;
}

.news_box a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
}

.news_box a:last-child:after {
  content: none;
}

.news_box a:first-child {
  padding: 15px 7px 3px 7px;
}

.news_box a {
  display: block;
  font-size: 16px;
  color: #444;
  padding: 10px 7px 3px 7px;
  font-family: "NanumSquare-B", "나눔고딕", "Dotum", "돋움", "Helvetica",
    "Arial", "AppleSDGothicNeo", sans-serif;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.news_tab {
  background: #ebecee;
  height: 52px;
}

.news_tab li {
  float: left;
  width: 50%;
  text-align: center;
  box-sizing: border-box;
  display: inline-block;
  padding: 11px 0;
  cursor: pointer;
  font-size: 20px;
  font-family: "NanumSquare-B";
  color: #ababab;
}

.news_tab li.on {
  font-family: "NanumSquare-EB";
  background-color: #9bda3b;
  color: #fff;
  position: relative;
}

.news_tab li.on:after {
  content: "";
  position: absolute;
  left: 46%;
  bottom: -9px;
  width: 19px;
  height: 9px;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  -webkit-background-size: 474px 364px;
  background-size: 474px 364px;
  background-position: -290px -24px;
}

.tab_con {
  clear: both;
  margin-top: 5px;
}

.tab_con div {
  display: none;
}

.content_summary:after,
.content_service:after,
.content_site:after,
.content_banner:after {
  content: "";
  clear: both;
  display: block;
}

.content_srv {
  position: relative;
  max-width: 1200px;
  height: 250px;
  margin: 0 auto;
}

/*서비스 소개*/
/* SR-32071 고가륭 조사역 CSS로 교체 START */
.main_srv_wrap ul {
  display: flex;
}

.main_srv_wrap ul li {
  width: 14.28%;
  height: 198px;
  border: 1px solid #e6e8ef;
  border-right: 0;
}

.main_srv_wrap ul li:hover {
  box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, 0.04),
    0 3px 2px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.5s;
}

.main_srv_wrap ul li:last-child {
  border-right: 1px solid #e6e8ef;
}

.main_srv_wrap ul li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 148px;
  font-family: "NanumSquare-B";
  font-size: 20px;
  color: #222;
  text-align: center;
}

.main_srv_wrap ul li a::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100%;
  background: url("/images/new/img/common/icons.png") no-repeat #fff;
  background-size: 1000px 1200px;
  transition: all 0.5s;
}

.main_srv_wrap ul li:hover a::before {
  background-color: #b7d3e6;
}

.main_srv_wrap ul li:first-child a::before {
  background-position: 14.5px 17px;
}

.main_srv_wrap ul li:nth-child(2) a::before {
  background-position: -92.5px 16.5px;
}

.main_srv_wrap ul li:nth-child(3) a::before {
  background-position: -186px 16.5px;
}

.main_srv_wrap ul li:nth-child(4) a::before {
  background-position: -280px 16.5px;
}

.main_srv_wrap ul li:nth-child(5) a::before {
  background-position: -377px 16.5px;
}

.main_srv_wrap ul li:nth-child(6) a::before {
  background-position: -472px 16.5px;
}

.main_srv_wrap ul li:last-child a::before {
  background-position: 22px -166px;
}

.main_srv_wrap ul li:hover:first-child a::before {
  background-position: 14.5px -70px;
}

.main_srv_wrap ul li:hover:nth-child(2) a::before {
  background-position: -92.5px -69.5px;
}

.main_srv_wrap ul li:hover:nth-child(3) a::before {
  background-position: -186px -69.5px;
}

.main_srv_wrap ul li:hover:nth-child(4) a::before {
  background-position: -280px -69.5px;
}

.main_srv_wrap ul li:hover:nth-child(5) a::before {
  background-position: -377px -69.5px;
}

.main_srv_wrap ul li:hover:nth-child(6) a::before {
  background-position: -472px -69.5px;
}

.main_srv_wrap ul li:hover:last-child a::before {
  background-position: 22px -262px;
}
/* SR-32071 고가륭 조사역 CSS로 교체 END */

/* 서비스 바로가기*/
/* SR-31521 고가륭 조사역 CSS로 교체 START */
.srv_list_wrap {
  height: 90px;
  max-width: 1200px;
  margin: 50px auto;
  border: 1px solid #efefef;
}
/* SR-31521 고가륭 조사역 CSS로 교체 END */

.service_list {
  display: inline-block;
  width: 100%;
  margin: 0 auto;
}

.service_list > ul > li {
  float: left;
}

.service_list > ul > li:first-child {
  width: 40%;
}

.service_list > ul > li:last-child {
  width: 55%;
  float: right;
}

.service_list .main_kedrating {
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  width: 100%;
  height: 165px;
  padding: 20px 20px 20px 30px;
  position: relative;
}

.service_list .main_kedrating > p:nth-child(1) {
  font-size: 20px;
  position: relative;
  margin: 0 0 10px;
}

.service_list .main_kedrating > p:nth-child(1):after {
  content: "";
  position: absolute;
  left: 205px;
  top: 10px;
  width: 15px;
  height: 12px;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  -webkit-background-size: 474px 364px;
  background-size: 474px 364px;
  background-position: -119px -50px;
}

.service_list .main_kedrating > p:nth-child(3) {
  width: 25%;
  height: 65%;
  position: absolute;
  top: 25px;
  right: 3%;
  border-radius: 3px;
}

.service_list .main_kedrating > p:nth-child(2) img {
  width: 65%;
}

.service_list .main_kedrating > p:nth-child(3) a:before {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  top: 20%;
  left: 25%;
  background: url(/images/new/img/common/icons.png) no-repeat;
  background-size: 1000px 1200px;
  background-position: -835px -1035px;
}

.service_list .main_kedrating > p:nth-child(3):hover {
  box-shadow: 1px 2px 4px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* SR-31521 고가륭 조사역 CSS로 교체 START */
.service_etc {
  width: 100%;
  height: 100%;
  display: flex;
}

.service_etc li {
  width: 12.5%;
  border-right: 1px solid #efefef;
}

.service_etc li:nth-child(2) a img {
  margin-top: 8px;
}

.service_etc li:last-child {
  border-right: none;
}

.service_etc li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.service_etc li a img {
  padding: 0 10px;
}
/* SR-31521 고가륭 조사역 CSS로 교체 END */

.rolling_panel {
  position: relative;
  width: 25%;
  height: 220px;
  margin: 0;
  padding: 0;
  border: 1px solid #e6e8ef;
  overflow: hidden;
}

.rolling_panel ul {
  padding: 0;
  width: 100%;
  height: 100%;
}

.rolling_panel ul li {
  float: left;
  width: 100%;
  height: 100%;
}

.rolling_panel > a {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #ddd;
  background: #fff;
  width: 22px;
  height: 17px;
}

.rolling_panel > a:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 12px;
  height: 15px;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  -webkit-background-size: 474px 364px;
  background-size: 400px 307px;
  background-position: -76px -40px;
}

.rolling_panel > a:first-child {
  right: 37px;
}

.rolling_panel > a:nth-child(2):before {
  background-position: -86px -40px;
}

.rolling_panel ul li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.main_bn {
  max-width: 100%;
  height: 70px;
  padding: 20px 0;
  margin: 50px auto 0;
  background: #f2f2f2;
}

.main_bn ul {
  max-width: 1200px;
  min-width: 1024px;
  margin: 0 auto;
}

.main_bn ul li {
  float: left;
  margin: 0 20px;
}

.main_bn ul li a.bn_fine {
  width: 63px;
  height: 35px;
  padding: 5px 70px 10px 0;
  background: url(/images/new/img/main_banner.png) no-repeat;
  background-size: 500px 35px;
  background-position: 0 0;
}

.main_bn ul li a.bn_mss {
  width: 120px;
  height: 35px;
  padding: 5px 150px 10px 0;
  background: url(/images/new/img/main_banner.png) no-repeat;
  background-size: 500px 35px;
  background-position: -70px 0;
}

footer {
  background: #fff;
  width: 100%;
  font-size: 12px;
}

.footer_top {
  background: #e7e9ed;
  height: 50px;
}

.footer_top > ul {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  font-size: 14px;
}

.footer_top ul li a {
  color: #303542;
  padding: 0 20px 0 0;
  font-family: "NanumSquare-B";
}

.footer_top ul li {
  float: left;
}

.footer_top ul li:first-child {
  padding: 12px 0 12px 10px;
  width: 75%;
}

.footer_top ul li:nth-child(2) {
  width: 25%;
  color: #25aae2;
  text-align: right;
  position: relative;
  padding: 8px 0 0 0;
}

.footer_top ul li:nth-child(2) a {
  padding: 0 7px 0 0;
}

.footer_top span {
  position: relative;
  font-size: 0;
}

.footer_copy {
  position: relative;
  display: block;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
  color: #888;
}

.footer_copy > p {
  width: 167px;
  height: 30px;
  position: absolute;
  top: 35px;
  left: 10px;
  background: url(/images/new/img/common/logo.png);
  -webkit-background-size: 450px 281px;
  background-size: 450px 281px;
  background-position: -245px -137px;
}

.footer_copy > li {
  margin-left: 250px;
  line-height: 1.5;
}
/* (end) Main layout */

/* Sub Layout */
.navi {
  position: fixed;
  top: 72px;
  background: #00a2c5;
  width: 100%;
  z-index: 9990;
}

.navi > ul {
  max-width: 1200px;
  margin: 0 auto;
}

.navi .navi_menu li {
  float: left;
  line-height: 50px;
  height: 50px;
}

.navi .navi_menu li a {
  color: #fff;
  font-size: 16px;
  font-family: "NanumSquare-B";
  position: relative;
  padding: 15px 17px 15px 17px;
  top: 0;
}

.navi .navi_menu li a:hover {
  background: rgba(0, 0, 0, 0.15);
}

.navi .navi_menu li a {
  font-family: "NotoSansKr-R";
}

.navi .navi_menu a:after {
}

.navi .navi_menu li:last-child a:after {
  content: none;
}

.navi .navi_menu li a.on {
  padding: 16px 10px;
  color: #017dc7;
  background: #fff;
  font-family: "NanumSquare-EB";
  position: relative;
}

.location_wrap {
  width: 100%;
  background: #fbfbfb;
}

.location {
  max-width: 1200px;
  margin: 0 auto;
  height: 40px;
  line-height: 40px;
}

.location li {
  float: left;
}

.location li a {
  color: #666;
  font-size: 16px;
  position: relative;
  padding: 0 12px 0;
  letter-spacing: -0.8px;
}

.location li a:hover {
  text-decoration: underline;
}

.location li:first-child {
  width: 25px;
}

.location li:first-child a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 14px;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  -webkit-background-size: 474px 364px;
  background-size: 474px 364px;
  background-position: -217px -70px;
}

.location li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 5px;
  height: 8px;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  -webkit-background-size: 474px 364px;
  background-size: 474px 364px;
  background-position: -433px 0;
}

.location li:last-child a {
  font-family: "NanumSquare-B";
  color: #444;
}

.content_wrap {
  width: 100%;
  margin: 50px auto 0;
  font-size: 18px;
}

.content_wrap .content_head {
  height: 184px;
  width: 100%;
  text-align: center;
  background-position: center;
  border-bottom: 1px solid #eee;
}

.content_list {
  max-width: 1200px;
  margin: 0 auto 100px;
  clear: both;
  display: block;
}

.content_list h2 {
  font-size: 28px;
  color: #444;
  font-family: "NanumSquare-EB";
  clear: both;
  margin: 30px 0 0 0;
  letter-spacing: -1px;
  border-bottom: 1px solid #8b8c90;
  line-height: 1.8;
}

.content_list h2 span {
  clear: both;
}

.content_list h2 > .btnApply {
  float: right;
  background: #ff912f;
  width: 140px;
  height: 45px;
  letter-spacing: 0.5px;
  font-size: 18px;
  position: relative;
  padding: 7px 0 0 20px;
  color: #fff;
  border-radius: 50px;
  text-align: left;
}

.content_list h2 > .btnApply:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 13px;
  width: 24px;
  height: 24px;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  background-size: 400px 307px;
  background-position: -158px -59px;
}

.content_list h2 > .btnApply:hover {
  background: #ff6702;
}

.content_list h3 {
  color: #222;
  font-size: 24px;
  margin: 30px 0 10px 0;
  font-family: "NotoSansKr-R";
  position: relative;
  clear: both;
  padding: 0 0 0 17px;
  line-height: 1.7;
  text-align: left;
}

.content_list h3 span {
  font-size: 18px;
  margin: 0 0 0 20px;
  font-family: "NotoSansKr-L";
}

.content_list h3.ico_arrow {
  padding: 0 0 0 15px;
}

.content_list h3.ico_arrow:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 17px;
  width: 6px;
  height: 10px;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  background-position: -458px -33px;
}

.content_list h3:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 12px;
  width: 11px;
  height: 17px;
  background: #017dc7;
  border-radius: 0 20px 20px 0;
}

.custom .content_list h3 {
  font-size: 20px;
  padding: 0 0 0 16px;
}

.custom .content_list h3:before {
  top: 8px;
  width: 12px;
  height: 18px;
}

.content_list h4 {
  position: relative;
  padding: 0 0 0 15px;
  font-family: "NanumSquare-B";
  clear: both;
}

.content_list h4:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #6d6e72;
  border-radius: 50%;
}

.content_list strong {
  font-family: "NanumSquare-B";
}

.content_list > p {
  text-align: center;
}

.content_list p > img {
  width: auto;
  margin: 50px 0 20px 0;
}
/* (end) Sub Layout  */

/* Sub Head IMG */
.company .content_head {
  background: url(/images/new/img/sub_head_ked.png) center top no-repeat;
}

.service .content_head {
  background: url(/images/new/img/sub_head_service.png) center top no-repeat;
}

.pr .content_head {
  background: url(/images/new/img/sub_head_pr.png) center top no-repeat;
}

.group .content_head {
  background: url(/images/new/img/sub_head_group.png) center top no-repeat;
}

.recruit .content_head {
  background: url(/images/new/img/sub_head_recruit.png) center top no-repeat;
}

.custom .content_head {
  background: url(/images/new/img/sub_head_custom.png) center top no-repeat;
}

/* .es .content_head {background:url(/images/new/img/sub_head_esg.png) center top no-repeat;} */

.content_head dl {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.content_head dl dt {
  padding: 35px 0 0;
  font-size: 40px;
  text-shadow: 2px 1px 2px #fff;
  moz-text-shadow: 2px 2px 5px #fff;
  -webkit-text-shadow: 2px 2px 5px #fff;
}

.content_head dl dd {
  margin-top: -5px;
  line-height: 25px;
  width: 50%;
  text-shadow: 2px 1px 1px #fff;
  moz-text-shadow: 2px 1px 1px #fff;
  -webkit-text-shadow: 2px 1px 1px #fff;
}

.content_wrap .srv6 dl dt,
.content_wrap .srv7 dl dt {
  padding: 50px 0 0;
}
/*(end) Sub Head IMG */

.history {
  width: 100%;
  padding-left: 40%;
  background: url(/images/new/img/history_bg.png) no-repeat left bottom;
}

.history_box {
  padding: 20px 0;
  border-top: 1px solid #efefef;
}

.history > p {
  padding: 0 0 0 10px;
  font-family: "NanumSquare-B";
  font-size: 22px;
  position: relative;
}

.history > p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 15px;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  background-size: 474px 364px;
  background-position: -469px -50px;
}

.history_box:first-child {
  padding-top: 0;
  border-top: 0;
}

.history_box:last-child {
  padding-bottom: 0;
}

.history_box > dl {
  font-size: 0;
}

.history_box > dl:after {
  content: "";
  display: block;
  clear: both;
}

.history_box .history_year {
  float: left;
  width: 95px;
  margin: -4px 0 0;
  font-family: "NanumSquare-EB";
  font-size: 26px;
  color: #023e7c;
  letter-spacing: -1px;
}

.history_box .history_explain {
  overflow: hidden;
  margin: 3px 0 0;
  font-size: 18px;
  color: #222;
}

.history_box .history_explain > dl {
  margin: 12px 0 0;
}

.history_box .history_explain > dl:after {
  content: "";
  display: block;
  clear: both;
}

.history_box .history_explain > dl:first-child {
  margin: 0;
}

.history_box .history_month {
  float: left;
  width: 70px;
  font-family: "NanumSquare-B";
  color: #6d6e72;
}

.history_box .history_text {
  overflow: hidden;
  margin: -0;
}

.history_box .history_text p {
  margin: 8px 0 0;
  line-height: 1.8;
}

.history_box .history_text > p:first-child {
  margin: 0;
}

.company .ceo {
  background: url(/images/new/img/ceo_sign_241024.jpg) no-repeat bottom;
  padding-bottom: 100px;
}

.company .ceo > h1 {
  margin: 0 0 20px 0;
  font-size: 40px;
  color: #4f4f4f;
  font-family: "NanumSquare-EB";
}

.company .ceo > h1 > span {
  font-size: 40px;
  color: #0063ae;
}

.company .ceo > p {
  font-size: 16px;
  margin: 0 0 20px 0;
  line-height: 26px;
}

.ked_group > p:first-child {
  float: right;
  display: inline-block;
  height: 15px;
}

.ked_group > p:first-child > a {
  position: relative;
  width: 240px;
  padding: 8px 30px 8px 10px;
}

.ked_group > p:first-child > a:after {
  content: "";
  position: absolute;
  right: 7px;
  top: 11px;
  width: 14px;
  height: 12px;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  background-size: 474px 364px;
  background-position: -120px -50px;
}

.group_map {
  height: 422px;
  margin: 0 auto;
  position: relative;
  clear: both;
  border: 1px solid #ccc;
}

.group_map a {
  width: 100%;
  height: 420px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(/images/new/img/map_all.png) no-repeat;
  background-size: 1200px;
}

.group_map a.map1 {
  background-position: 0 0;
}

.group_map a.map2 {
  background-position: 0 -420px;
}

.group_map a.map3 {
  background-position: 0 -840px;
}

.group_map a.map4 {
  background-position: 0 -1260px;
}

.group_map a.map5 {
  background-position: 0 -1680px;
}

.group_map a.map6 {
  background-position: 0 -2100px;
}

.group_map a.map7 {
  background-position: 0 -2520px;
}

.group_map a.map8 {
  background-position: 0 -2940px;
}

.group_map a.map9 {
  background-position: 0 -3360px;
}

.group_map a.map10 {
  background-position: 0 -3780px;
}

.group_map a.map11 {
  background-position: 0 -4200px;
}

.group_map a.map12 {
  background-position: 0 -4620px;
}

.group_map a > span {
  position: relative;
}

.group_map a > span.kko_map {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 130px;
  height: 130px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-family: "NanumSquare-EB";
  text-align: center;
  font-size: 14px;
  padding: 70px 0 0;
  text-shadow: 1px 1px 2px #222;
  line-height: 18px;
}

.group_map a > span.kko_map:hover {
  box-shadow: -1px -1px 2px 0px rgba(0, 0, 0, 0.6);
}

.group_map a > span.kko_map:before {
  content: "";
  position: absolute;
  left: 35%;
  top: 20px;
  width: 35px;
  height: 35px;
  background: url(/images/new/img/common/icons.png) no-repeat;
  background-size: 1000px 1200px;
  background-position: -819px -1162px;
}

.group_info {
  display: block;
  height: 130px;
  margin: 30px 0 20px 0;
  padding: 20px 0;
  border-top: 2px solid #606060;
  border-bottom: 1px solid #d1d1d1;
}

.group_info li {
  position: relative;
  padding: 0 0 0 50px;
  line-height: 40px;
  height: 55px;
}

.group_info li:nth-child(2) {
  float: left;
  width: 50%;
}

.group_info li:nth-child(3) {
  width: 50%;
  float: right;
}

.group_info li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 43px;
  height: 38px;
  background: url(/images/new/img/common/icons.png) no-repeat;
  background-size: 1000px 1200px;
  background-position: -860px -1162px;
}

.group_info li:nth-child(2):before {
  background-position: -903px -1162px;
}

.group_info li:nth-child(3):before {
  background-position: -946px -1162px;
}

.group_info li > span {
  padding: 0 30px 0 0;
  font-family: "NanumSquare-B";
}

.group_info2 {
  display: block;
  height: 75px;
  margin: 10px 0 20px 0;
  padding: 20px 0;
  border-top: 2px solid #606060;
  border-bottom: 1px solid #d1d1d1;
}

.group_info2 li {
  position: relative;
  padding: 0 0 0 50px;
  line-height: 40px;
  height: 55px;
  float: left;
  width: 50%;
}

.group_info2 li.map:before {
  background-position: -860px -1162px;
}

.group_info2 li:nth-child(2) {
  width: 50%;
  float: right;
}

.group_info2 li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 43px;
  height: 38px;
  background: url(/images/new/img/common/icons.png) no-repeat;
  background-size: 1000px 1200px;
  background-position: -903px -1162px;
}

.group_info2 li:nth-child(2):before {
  background-position: -946px -1162px;
}

.group_info2 li > span {
  padding: 0 30px 0 0;
  font-family: "NanumSquare-B";
}

.transport_box {
  display: block;
  font-size: 16px;
  height: 100%;
  border-bottom: 1px solid #d1d1d1;
}

.transport_box dl dt {
  font-family: "NanumSquare-B";
  float: left;
  position: relative;
  padding: 0 0 20px 15px;
  width: 150px;
  clear: both;
}

.transport_box dl dt:before {
  position: absolute;
  top: 12px;
  left: 3px;
  content: "";
  width: 7px;
  height: 2px;
  background: #aaa;
}

.transport_box dl dd {
  padding: 0 0 20px 100px;
}

.transport_box .subway:before {
  position: absolute;
  content: "";
  top: 0;
  left: 5px;
  width: 17px;
  height: 17px;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  background-size: 474px 364px;
  background-position: -385px -21px;
}

.transport_box .subway {
  padding: 0 0 0 23px;
  position: relative;
}

/**
.custom .content_list a.btn_point:first-child { 
    margin:0 40px 0 0;
} 
*/

/*서비스 MAIN */
.srv_wrap {
  margin: 50px 0 0;
  position: relative;
}

.srv_wrap p {
  word-break: break-all;
}

.srv_wrap ul {
  display: inline-block;
}

.srv_wrap > ul > li:first-child {
  float: left;
  width: 48%;
  margin: 0 2% 0 0;
}

.srv_wrap > ul > li:last-child {
  float: right;
  width: 48%;
  margin: 0;
}

.srv_wrap h4 {
  position: relative;
  font-size: 26px;
  line-height: 27px;
  margin: 0 0 20px 0;
  font-family: "NanumSquare-L";
}

.srv_wrap ul li .boxBlue > h4:before {
  top: 0;
  left: 0;
  width: 4px;
  height: 30px;
  background: #18a3dc;
  border-radius: 0;
}

.srv_wrap .boxGreen > h4:before {
  top: 0;
  left: 0;
  width: 4px;
  height: 30px;
  background: #90ca38;
  border-radius: 0;
}

.srv_wrap .boxOrange > h4:before {
  top: 0;
  left: 0;
  width: 4px;
  height: 30px;
  background: #f59c0c;
  border-radius: 0;
}

.srv_wrap .boxpurple > h4:before {
  top: 0;
  left: 0;
  width: 4px;
  height: 30px;
  background: #9780b2;
  border-radius: 0;
}

.srv_wrap li a p:last-child {
  line-height: 22px;
}

.srv_wrap ul li ul li {
  margin: 20px 0;
  padding: 0 0 0 10px;
  height: 90px;
}

.srv_wrap li a p {
  margin: 0 0 0 90px;
  font-size: 16px;
}

.srv_wrap li a p:first-child {
  color: #222;
  font-size: 20px;
  font-family: "NanumSquare-B";
  position: relative;
}

.srv_wrap li a p:first-child:after {
  content: "";
  position: absolute;
  top: auto;
  width: 18px;
  height: 18px;
  margin: 4px 0 0 5px;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  background-position: -59px 0;
}

.srv_wrap li a:hover {
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.srv_sol li a p:first-child,
.srv_global li a p:first-child,
.srv_add li a p:first-child {
  padding: 8px 0 0;
  line-height: 28px;
  font-family: "NanumSquare-R";
}

.srv_sol li a p:first-child:after,
.srv_global li a p:first-child:after,
.srv_add li a p:first-child:after {
  content: "";
  right: auto;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  background-position: -59px 0;
}

.srv_global li a p:first-child {
  padding: 3px 0 0;
}

.srv_wrap ul li {
  position: relative;
}

.srv_wrap li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
}

.srv_wrap .boxBlue li:before {
  background: url(/images/new/img/common/icons.png) no-repeat #18a3dc;
}

.srv_wrap .boxGreen li:before {
  background: url(/images/new/img/common/icons.png) no-repeat #90ca38;
}

.srv_wrap .boxOrange li:before {
  background: url(/images/new/img/common/icons.png) no-repeat #f59c0c;
}

.srv_wrap .boxpurple li:before {
  background: url(/images/new/img/common/icons.png) no-repeat #9780b2;
}

.srv_check .boxOrange {
  margin: 30px 0 0;
}

.srv_check .boxOrange li {
  float: left;
  width: 48%;
  padding: 10px;
}

.srv_rating .boxpurple {
  position: absolute;
  width: 48%;
  right: 0;
  top: 400px;
}

.srv_check .boxBlue li:nth-child(2):before {
  background-position: -555px 18px;
}

.srv_check .boxGreen li:nth-child(2):before {
  background-position: -700px 18px;
}

.srv_check .boxGreen li:nth-child(3):before {
  background-position: -770px 18px;
}

.srv_check .boxOrange li:nth-child(2):before {
  background-position: -915px 18px;
}

.srv_check .boxOrange li:nth-child(3):before {
  background-position: -842px 18px;
}

.srv_rating ul .boxBlue li:nth-child(2):before {
  background-position: -555px -52px;
}

.srv_rating ul .boxBlue li:nth-child(3):before {
  background-position: -627px -52px;
}

.srv_rating ul .boxBlue li:nth-child(4):before {
  background-position: -698px -52px;
}

.srv_rating ul .boxBlue li:nth-child(5):before {
  background-position: -768px -52px;
}

.srv_rating ul .boxBlue li:nth-child(6):before {
  background-position: -843px -52px;
}

.srv_rating ul .boxBlue li:nth-child(7):before {
  background-position: -915px -52px;
}

.srv_rating ul .boxGreen li:nth-child(2):before {
  background-position: -556px -124px;
}

.srv_rating .boxOrange li:nth-child(2):before {
  background-position: -625px -124px;
}

.srv_rating .boxpurple li:nth-child(2):before {
  background-position: -768px -268px;
}

.srv_tech ul .boxBlue li:nth-child(2):before {
  background-position: -625px -124px;
}

.srv_tech ul .boxBlue li:nth-child(3):before {
  background-position: -770px -124px;
}

.srv_tech ul .boxBlue li:nth-child(4):before {
  background-position: -843px -124px;
}

.srv_tech ul .boxBlue li:nth-child(5):before {
  background-position: -915px -124px;
}

.srv_tech ul .boxBlue li:nth-child(6):before {
  background-position: -843px -52px;
}

.srv_tech ul .boxGreen li:nth-child(2):before {
  background-position: -555px -196px;
}

.srv_tech .boxOrange li:nth-child(2):before {
  background-position: -627px -196px;
}

.srv_sol ul .boxBlue li:nth-child(2):before {
  background-position: -698px -196px;
}

.srv_sol ul .boxGreen li:nth-child(2):before {
  background-position: -770px -196px;
}

.srv_sol ul .boxOrange li:nth-child(2):before {
  background-position: -842px -196px;
}

.srv_global ul .boxOrange li:nth-child(2):before {
  background-position: -698px -196px;
}

.srv_global ul .boxBlue li:nth-child(2):before {
  background-position: -914px -196px;
}

.srv_global ul .boxGreen li:nth-child(2):before {
  background-position: -556px -268px;
}

.srv_add ul .boxBlue li:nth-child(2):before {
  background-position: -626px -196px;
}

.srv_add ul .boxGreen li:nth-child(2):before {
  background-position: -698px -268px;
}

.srv_add ul .boxOrange li:nth-child(2):before {
  background-position: -914px -52px;
}

.srv_rating .boxOrange,
.srv_tech .boxOrange {
  position: absolute;
  width: 48%;
  right: 0;
  top: 200px;
}

.srv_rating .boxOrange li,
.srv_tech .boxOrange li,
.srv_rating .boxpurple li {
  width: 100% !important;
  padding: 10px;
}

.srv_sol .boxBlue li,
.srv_sol .boxGreen li,
.srv_sol .boxOrange li,
.srv_global .boxBlue li,
.srv_global .boxGreen li,
.srv_global .boxOrange li,
.srv_add .boxBlue li,
.srv_add .boxGreen li,
.srv_add .boxOrange li {
  margin: 0 0 40px 0 !important;
  display: inline-block;
  height: 90px;
}

.srv_sol ul .boxBlue li:before,
.srv_global ul .boxBlue li:before,
.srv_add ul .boxBlue li:before {
  background: url(/images/new/img/common/icons.png) no-repeat #18a3dc;
  background-position: -555px -53px;
}

.srv_sol ul .boxGreen li:before,
.srv_global ul .boxGreen li:before,
.srv_add ul .boxGreen li:before {
  background: url(/images/new/img/common/icons.png) no-repeat #90ca38;
  background-position: -555px -53px;
}

.srv_sol ul .boxOrange li:before,
.srv_global ul .boxOrange li:before,
.srv_add ul .boxOrange li:before {
  background: url(/images/new/img/common/icons.png) no-repeat #f59c0c;
  background-position: -555px -53px;
}

.cretop_service {
  width: 96%;
  margin: 10px auto;
  display: block;
  clear: both;
}

.cretop_service li:first-child {
  border-top: 1px solid #6f6f6f;
}

.cretop_service li {
  position: relative;
  border-bottom: 1px solid #6f6f6f;
  padding: 20px 20px 20px 130px;
}

.cretop_service li:before {
  content: "";
  width: 62px;
  height: 58px;
  position: absolute;
  left: 20px;
  top: 30%;
  background: url(/images/new/img/common/icons.png) no-repeat;
  background-size: 1000px 1200px;
}

.cretop_service li:nth-child(1):before {
  background-position: -476px -1047px;
}

.cretop_service li:nth-child(2):before {
  background-position: -548px -1047px;
}

.cretop_service li:nth-child(3):before {
  background-position: -619px -1047px;
  top: 90px;
}

.cretop_service li:nth-child(4):before {
  background-position: -690px -1047px;
}

.cretop_service li:nth-child(5):before {
  background-position: -760px -1047px;
}

.cretop_service li > p:first-child {
  font-family: "NanumSquare-B";
}

/* 이용신청 절차 안내 */
.process ul {
  border: 1px solid #e9e9e9;
  width: 100%;
  display: inline-block;
  clear: both;
  position: relative;
  margin: 0 0 40px 0;
}

.process ul:after {
  content: "";
  width: 35px;
  height: 19px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  background-size: 474px 364px;
  background-position: -410px -21px;
}

.process ul:last-child {
  margin: 0;
}

.process ul:last-child:after {
  content: none;
}

.process ul li {
  float: left;
  position: relative;
}

.process ul li:first-child {
  width: 25%;
  padding: 10px 10px 10px 20px;
  font-family: "NanumSquare-B";
}

.process ul li:first-child:before {
  content: "";
  width: 6px;
  height: 70%;
  position: absolute;
  left: 0;
  top: 15%;
  background: #97c8e0;
}

.process ul li:last-child {
  width: 75%;
  border-left: 1px solid #e9e9e9;
  padding: 10px;
}

.process ul li:last-child p {
  position: relative;
  padding: 0 0 0 13px;
}

.process ul li:last-child p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 2px;
  background: #999;
}

.process a {
  color: #023e7c;
}

.process a:hover {
  text-decoration: underline;
}

.process ul li p.topline {
  border-top: 1px solid #e9e9e9;
}

.ked_charter {
  margin: 20px 0 0 0;
}

.ked_charter ul li {
  position: relative;
  height: 100px;
  padding: 20px 0 0 90px;
  border-top: 1px solid #ececec;
}

.ked_charter ul li:last-child {
  height: 150px;
}

.ked_charter ul li span {
  font-size: 25px;
  font-family: "NanumSquare-EB";
  color: #fff;
  position: absolute;
  left: 25px;
  top: 12px;
}

.ked_charter ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  -webkit-background-size: 474px 364px;
  background-size: 474px 364px;
  background-position: -242px -50px;
}

.shareholder {
  width: 100%;
  display: block;
  height: 600px;
  overflow: hidden;
}

.shareholder li {
  width: 32%;
  position: relative;
  float: left;
  margin: 20px 1% 0 0;
}

.recruit_wrap p {
  text-align: left;
}

.recruit_title {
  font-size: 30px;
  font-family: "NanumSquare-B";
  margin: 70px 0 0;
}

.brochure_wrap {
  display: block;
  height: 100%;
  clear: both;
}

.Brief_wrap {
  display: block;
  height: 100%;
  clear: both;
  background: url("/images/new/img//brief_bg.gif") no-repeat right bottom;
}

.typeOfTalent ul {
  margin: 60px 0;
}

.typeOfTalent ul li:first-child {
  position: relative;
  float: left;
}

.typeOfTalent ul li:first-child:before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 100px;
  height: 90px;
  background: url(/images/new/img/common/icons.png) no-repeat;
  -webkit-background-size: 1000px 1200px;
  background-size: 1000px 1200px;
  background-position: 0 -1028px;
}

.typeOfTalent ul li:first-child:after {
  content: "";
  position: absolute;
  left: 110px;
  top: 0;
  width: 5px;
  height: 130px;
  background: #0e4177;
  border-radius: 10px;
}

.typeOfTalent ul:nth-child(2) li:first-child:before {
  top: 10px;
  left: 5px;
  width: 80px;
  background-position: -111px -1028px;
}

.typeOfTalent ul:nth-child(2) li:first-child:after {
  height: 110px;
  background: #174c88;
}

.typeOfTalent ul:nth-child(3) li:first-child:before {
  top: 20px;
  left: 10px;
  width: 80px;
  background-position: -205px -1028px;
}

.typeOfTalent ul:nth-child(3) li:first-child:after {
  height: 130px;
  background: #0c6aa3;
}

.typeOfTalent ul:nth-child(4) li:first-child:before {
  top: 20px;
  left: 0;
  width: 80px;
  background-position: -296px -1028px;
}

.typeOfTalent ul:nth-child(4) li:first-child:after {
  height: 130px;
  background: #25b2e4;
}

.typeOfTalent ul:nth-child(5) li:first-child:before {
  top: 10px;
  left: 10px;
  width: 80px;
  background-position: -396px -1028px;
}

.typeOfTalent ul:nth-child(5) li:first-child:after {
  height: 110px;
  background: #65dcfa;
}

.typeOfTalent ul li:nth-child(2) {
  padding: 0 0 0 140px;
  float: none;
  font-size: 27px;
}

.typeOfTalent ul li:nth-child(3) > p {
  line-height: 24px;
}

.typeOfTalent ul li:nth-child(3) {
  padding: 0 0 0 140px;
  float: none;
  color: #555;
}

/* KED 인 로그인 */
.kedlogin .input_box {
  margin: 30px auto;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  height: 280px;
  width: 62%;
}

.kedlogin .input_box .login_txt {
  position: relative;
  height: 280px;
  width: 30%;
  background: #a4b7d3;
  float: left;
  border-radius: 10px 0 0 10px;
}

.login_txt:before {
  content: "";
  position: absolute;
  left: 18%;
  top: 13%;
  width: 155px;
  height: 210px;
  background: url(/images/new/img/common/icons.png) no-repeat;
  background-position: -644px -635px;
  background-size: 800px 960px;
}

.kedlogin .input_box .login_form {
  width: 70%;
  float: right;
  padding: 50px;
}

.kedlogin .input_box .login_form input {
  width: 100%;
  height: 50px;
  margin: 0 0 20px;
  padding: 0 0 0 15px;
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.05);
}

.ipt_tx {
  width: 50%;
}

.photolist {
  margin: 20px auto 30px;
  height: 100%;
  display: block;
  overflow: hidden;
}

.photolist li {
  float: left;
  width: 32%;
  margin: 0 2% 0 0;
  text-align: center;
  line-height: 22px;
}

.photolist li:last-child {
  margin: 0;
}

.photolist li img {
  margin: 10px auto;
  display: block;
  width: 100%;
  height: 180px;
}

.photolist li span.photo_txt {
  font-weight: 800;
  line-height: 15px;
}

/* 공통스타일 TABLE  */
table {
  width: 100%;
  text-align: center;
  border-top: 2px solid #6f6f6f;
  border-bottom: 2px solid #6f6f6f;
}

table thead {
  border-bottom: 1px solid #6f6f6f;
  height: 50px;
  line-height: 40px;
}

table thead th {
  padding: 8px 10px;
  color: #222;
  font-family: "NanumSquare-EB";
  border-right: 1px solid #6f6f6f;
  border-bottom: 1px solid #6f6f6f;
  background: #e0f3fc;
  line-height: 1.6;
  white-space: normal;
  word-break: break-all;
}

table thead th:last-child {
  border-right: none;
}

table tbody tr {
  border-bottom: 1px solid #6f6f6f;
  line-height: 40px;
}

table tbody tr:last-child {
  border-bottom: none;
}

table tbody th:last-child {
  border-right: none;
}

table tbody th,
table tbody td {
  padding: 8px 10px !important;
  border-right: 1px solid #6f6f6f;
  line-height: 1.6;
}

table tbody th,
td:last-child {
  border-right: none;
}

.bdR {
  border-right: 1px solid #6f6f6f !important;
}

table tbody th {
  border-right: 1px solid #6f6f6f;
  line-height: 1.6;
  background: #f6f6f6;
}

table.tbl_td_ct tbody td {
  text-align: center;
  line-height: 1.8;
}

table.tbl_td_ct tbody .offer {
  background: url(/images/new/img/common/sprite.png) no-repeat center top;
  background-position: -458px -73px;
  width: 16px;
  height: 16px;
  padding: 0 8px;
  vertical-align: middle;
}

table.tbl_td_cl tbody td {
  text-align: left;
}

/* 공지사항, NEWS (TABLE)  */
.prTable {
  width: 100%;
  text-align: center;
  border-top: 2px solid #5789d4;
  border-bottom: 1px solid #6f6f6f;
  font-family: "NotoSansKr-R", "NotoSansSC-Regular";
}

.prTable thead {
  border-bottom: 1px solid #6f6f6f;
  height: 50px;
  line-height: 50px;
}

.prTable thead th {
  padding: 8px 10px;
  color: #222;
  font-family: "NanumSquare-EB";
  border-right: 1px solid #6f6f6f;
  border-bottom: 1px solid #6f6f6f;
  background: #fcfcfc;
  text-align: center;
}

.prTable thead tr {
  border-bottom: 1px solid #6f6f6f;
}

.prTable thead th:last-child,
.prTable thead td:last-child,
.prTable tbody th:last-child,
.prTable tbody td:last-child,
.prTable tfoot th:last-child,
.prTable tfoot td:last-child {
  border-right: none;
}

.prTable thead td {
  text-align: left;
  padding: 8px 10px 8px 20px;
  border-right: 1px solid #6f6f6f;
}

.prTable tbody tr {
  border-bottom: 1px solid #ddd;
  height: 30px;
  line-height: 30px;
}

.prTable tbody th {
  width: 30%;
  border-right: 1px solid #6f6f6f;
  line-height: 1.6;
}

.prTable tbody td {
  padding: 8px 10px 8px 15px !important;
}

.prTable tbody td a {
  width: 100%;
}

.prTable tfoot th {
  padding: 7px;
  color: #222;
  font-family: "NanumSquare-EB";
  border-right: 1px solid #6f6f6f;
  border-top: 1px solid #6f6f6f;
  background: #fcfcfc;
  text-align: center;
  height: 50px;
  line-height: 40px;
}

.prTable tfoot td {
  text-align: left;
  padding: 5px 10px 5px 20px;
  border-top: 1px solid #6f6f6f;
  border-right: 1px solid #6f6f6f;
}

/*table in table */
.prTable tbody td > table {
  width: 96%;
  margin: 40px auto;
  border-top: 1px solid #6f6f6f;
  border-bottom: 1px solid #6f6f6f;
}

.prTable tbody td > table thead th,
.prTable tbody td > table thead td {
  border-bottom: 1px solid #6f6f6f;
}

.prTable tbody td > table tbody th,
prTable tbody td > table tbody td {
  border-bottom: 1px solid #6f6f6f;
}

/* paginate */
.paginate {
  margin: 20px auto;
  overflow: hidden;
  clear: both;
  text-align: center;
}

.paginate > button {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  height: 30px;
  width: 30px;
  vertical-align: middle;
  position: relative;
}

.paginate > button:before {
  content: "";
  position: absolute;
  top: 25%;
  left: 25%;
  width: 15px;
  height: 12px;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  -webkit-background-size: 474px 364px;
  background-size: 474px 364px;
  background-position: -74px -50px;
}

.paginate > button.prev:before {
  background-position: -90px -50px;
}

.paginate > button.next:before {
  background-position: -104px -50px;
}

.paginate > button.dnext:before {
  background-position: -119px -50px;
}

.paginate > a.on {
  color: #1673cc;
  font-weight: 800;
}

.paginate > a {
  height: 30px;
  padding: 4px 7px;
  color: #999;
}

#board_search {
  display: block;
  height: 80px;
  margin: 20px auto;
  text-align: center;
  background: #f6f6f6;
  padding: 20px 0;
  border-radius: 10px;
}

#board_search ul {
  width: 85%;
  margin: 0 auto;
}

#board_search ul li {
  float: left;
  margin: 0 20px 0 0;
}

#board_search ul li:first-child input {
  width: 25px;
  height: 25px;
  margin: -2px 0 0;
  vertical-align: middle;
}

#board_search ul li:first-child label {
  line-height: 40px;
  padding: 0 10px 0 5px;
}

#board_search ul li > a.btn_submit_S {
  padding: 3px 20px 3px 35px;
}

#board_search ul li input.ipt_tx {
  width: 50%;
}

/* 삭제할 class */
.boardNavi {
  margin: 20px 0 0 0;
}

.tablebnone tbody {
  border: none;
}

.tablebnone tbody th,
td {
  border-right: none;
}

#search {
  text-align: center;
}

.ser_list02 {
  margin: 20px 0 20px 15px;
  font-size: 18px;
  border-bottom: 1px solid #ccc;
  padding: 0 0 30px 0;
}

.ser_list02 h5 {
  font-size: 18px;
}

.ser_list02 h5 span {
  background: #006;
  color: #fff;
  padding: 2px 10px;
}

.ser_list02 h6 {
  margin: 10px 0 5px 10px;
  padding: 0 0 0 12px;
  color: #1673cc;
  font-size: 18px;
  position: relative;
}

.ser_list02 h6:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background: #1673cc;
}

.ser_list02 ul {
  margin: 0 0 0 20px;
}

.ser_list02 ul li {
  padding: 0 0 0 12px;
  position: relative;
}

.ser_list02 ul li:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 5px;
  height: 1px;
  border-radius: 10px;
  background: #555;
}

.ex_box {
  border: #999 dashed 1px;
  margin: 50px 0 0 0;
  width: 100%;
  padding: 10px;
}

.ex_box h5 {
  font-weight: blod;
  font-size: 20px;
}

.ex_box ul {
  margin: 10px 20px 0 20px;
}

.ex_box li {
  color: #666;
  list-style-type: circle;
}

.title1 {
  font-size: 18px;
}

.brochure {
  margin: 50px 0 100px 0;
  height: 280px;
}

.brochure li {
  float: left;
  width: 25%;
}

.brochure ul.brosemle {
  width: 245px;
  height: 280px;
}

.brochure ul.brosemle li {
  text-align: center;
  width: 200px;
  margin: 10px 0 0;
}

.brochure ul.brosemle li img {
  box-shadow: 1px 3px 5px 1px rgba(0, 0, 0, 0.1);
}

.Brief {
  margin: 50px 0 0 0;
  overflow: hidden;
}

.Brief em {
  font-family: NanumSquare-B;
  margin: 0 0 0 -20px;
}

.Brief li {
  float: left;
  width: 50%;
}

.Brief li h4 {
  color: #3a96d3;
  font-size: 20px;
}

.Brief li:first-child {
  width: 25%;
}

.Brief li:nth-child(2) {
  width: 70%;
}

.Brief ul.brosemle {
  width: 245px;
}

.Brief ul.brosemle li {
  text-align: center;
  width: 200px;
  margin: 10px 0 0;
}

.Brief ul.brosemle li img {
  box-shadow: 1px 3px 5px 1px rgba(0, 0, 0, 0.1);
}

.Brief ul.Brief_list {
  height: 300px;
  float: left;
  margin: 30px 0 0 20px;
}

.Brief ul.Brief_list li {
  list-style: decimal;
  padding: 10px;
  width: 90%;
  font-size: 15px;
}

.Brief ul.Brief_list li em {
  font-size: 18px;
  margin: 0;
  font-family: NanumSquare-R;
}

.Brief p em {
  font-family: NanumSquare-B;
  margin: 20px 0 0;
  display: inline-block;
}

.Brief p span {
  display: block;
  font-size: 16px;
}

.Brief li .list_apply .depth2 {
  text-indent: 11px;
}

.Brief li .list_apply .depth3 {
  text-indent: 30px;
}

/* 삭제할 class */
.pr .content_list h3 span {
  font-family: "NotoSansKr-R";
}

.policy p {
  line-height: 1.6;
  margin: 5px 0 0 0;
}

.policy ul li {
  line-height: 1.6;
}

.policy h2 {
  font-size: 26px;
  text-align: center;
  border: none;
}

.policy h3 {
  padding: 0;
  font-size: 20px;
  margin: 30px 0 5px 0;
}

.policy h3:before {
  content: none;
}

.policy > .box {
  background: #f6f6f6;
  border: 1px solid #e1e1e1;
  padding: 10px;
}

/* 공통스타일 BOX */
.box1 {
  border: 1px solid #d1d1d1;
  width: 19%;
  margin: 10px 5px 30px 0;
  float: left;
  display: block;
}

.box1 h6 {
  font-family: "NanumSquare-B";
  background: #f5f5f5;
  padding: 8px 10px;
  text-align: left;
  font-size: 16px;
}

.box1 li {
  padding: 7px;
  height: 250px;
}

.box1 ul li > p:first-child {
  font-family: "NanumSquare-B";
  color: #1673cc;
  font-size: 16px;
  padding: 0 0 10px 0;
}

.box1 ul li > p:first-child:before {
  content: none !important;
}

.box1 ul li > p {
  font-size: 16px;
  position: relative;
  padding: 0 0 7px 10px;
  line-height: 21px;
  word-break: break-all;
}

.box1 ul li > p:before {
  content: "-";
  left: 0;
  width: 5px;
  height: 10px;
  position: absolute;
}

.box1:last-child {
  clear: both;
}

.dl1 dt {
  float: left;
  width: 100px;
  height: 100%;
  line-height: 40px;
}

.dl1 dd {
  padding: 0 0 0 75px;
  line-height: 40px;
}

/* list style (-)Hyphen */
.list_hyphen > li,
.list_circle > li {
  position: relative;
  padding: 0 0 0 12px;
}

.list_hyphen > li:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 10px;
  width: 6px;
  height: 2px;
  background: #777;
}
/* list style (●)Circle */

.list_circle > li:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 11px;
  width: 6px;
  height: 6px;
  background: #aaa;
  border-radius: 50%;
}

.list_num li {
  line-height: 20px;
}

.list_num > li:before {
  list-style: decimal;
}

.list_h4 > li {
  padding: 0 0 0 15px;
  position: relative;
}

.list_h4 > li > h4 {
  padding: 0;
}

.list_h4 > li > h4:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: -15px;
  width: 9px;
  height: 9px;
  background: #898989;
}

.list_num li {
  list-style: decimal;
  margin: 0 0 0 25px;
  padding: 5px 0;
}

.list_hangul li {
  list-style: hangul;
  margin: 0 0 0 25px;
  padding: 0;
}

.list_hangul li > p {
  position: relative;
  font-size: 16px;
  color: #666;
  margin: 0 0 5px 0;
  padding: 0 0 0 10px;
}

.list_hangul li > p:before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 2px;
  background: #898989;
}

.list_hangul li > p.ast:before {
  content: "*";
  top: 2px;
  left: 0;
  background: none;
}

.srv_tech li a p {
  position: relative;
}

.srv_tech li a:hover p:first-child:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 2px);
  height: 2px;
  background-color: #068acd;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.updown {
  position: relative;
  border: 1px solid red;
  max-width: 1200px;
  min-width: 1024px;
  margin: 0 auto;
  height: 200px;
}

.pageUp {
  position: absolute;
  z-index: 9990;
  bottom: 90px;
  right: 10px;
  background: rgba(212, 219, 226, 0.5);
  border-radius: 50%;
  width: 35px;
  height: 35px;
}

.pageUp span,
.pageDown span {
  font-size: 0 !important;
}

.pageUp span:before {
  content: "";
  position: absolute;
  left: 30%;
  top: 35%;
  width: 13px;
  height: 8px;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  background-size: 474px 364px;
  background-position: -270px -24px;
}

.pageDown {
  position: absolute;
  z-index: 9990;
  bottom: 50px;
  right: 10px;
  background: rgba(212, 219, 226, 0.5);
  border-radius: 50%;
  width: 35px;
  height: 35px;
}

.pageDown span:before {
  content: "";
  position: absolute;
  left: 30%;
  top: 40%;
  width: 13px;
  height: 8px;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  background-size: 474px 364px;
  background-position: -270px -39px;
}

.topked p {
  background: url(/images/new/img/ex_toplogo.png) left bottom no-repeat;
  background-size: auto 100%;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 4rem;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 72px auto;
  border: 1px solid #888;
  width: 522px;
}

.modal-content .pop_close {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: rgb(48, 97, 148);
  background-color: rgba(48, 97, 148, 0.4);
}

.modal-content .pop_close:before {
  content: "";
  position: absolute;
  left: 25%;
  top: 25%;
  width: 23px;
  height: 23px;
  background: url(/images/new/img/common/sprite.png) no-repeat;
  -webkit-background-size: 474px 364px;
  background-size: 474px 364px;
  background-position: -28px 0;
}

.file_input_textbox {
  float: left;
  height: 29px;
}

.file_input_div {
  position: relative;
  display: inline-block;
}

.file_input_img_btn {
  vertical-align: middle;
  background: #21262a;
  display: inline-block;
  padding: 7px 10px;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
}

.file_input_hidden {
  position: absolute;
  right: 0px;
  top: 0px;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: alpha(opacity=0);
  cursor: pointer;
}

.company .ceosign {
  display: inline-block;
  float: right;
  font-size: 16px;
  padding: 0 80px 0;
}

.company .ceosign em {
  font-size: 24px;
  margin: 0 0 0 20px;
  line-height: 150%;
}

/*홍보관*/
.public_warp {
  text-align: center;
  margin: 60px 0 0;
  font-family: "NanumSquare-R";
}

.public_warp .youtube p {
  font-size: 18px;
}

.public_warp .youtube p em {
  font-size: 30px;
  padding: 10px 0;
  display: block;
  font-family: "NanumSquare-B";
}

.public_warp .youtube > div {
  width: 970px;
  height: 550px;
  margin: 40px auto;
}

.brochure-warp {
  overflow: hidden;
  width: 970px;
  margin: 70px auto 0;
}

.brochure_img {
  float: left;
  width: 300px;
}

.brochure_img img {
  width: 100%;
}

.brochure_text {
  float: left;
  margin: 0 0 0 30px;
}

.brochure_text p {
  text-align: left;
}

.brochure_text p em {
  font-size: 24px;
  font-family: "NanumSquare-B";
  display: block;
  padding: 0 20px 0 0;
}

.brochure-warp .btn_round {
  margin: 50px 0 0;
  display: inline-block;
}

/*common component*/
.switch_container > div.active {
  display: block;
}

.switch_container > div > div {
  padding-bottom: 150px;
}

.content_list .ci > div ::before,
.content_list .bi > div ::before {
  display: none !important;
}

.content_list .ci h3,
.content_list .bi h3 {
  color: #111;
  font-size: 24px;
  font-weight: 600;
  padding-left: 0;
  margin: 0;
}

.download_button_box {
  margin-top: 40px;
}

.download_button_box > span {
  display: block;
  padding-top: 10px;
  color: #7a7a7a;
  font-size: 14px;
  text-align: center;
}

.download_button {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  width: 180px;
  height: 42px;
  margin: auto;
  border-radius: 5px;
  border: 1px solid #111;
}

.download_button span {
  font-size: 16px;
  text-transform: uppercase;
  color: #111;
}

.download_button img {
  width: 18px;
  height: 18px;
}

.identity h3 {
  padding-bottom: 20px;
}

.identity p {
  color: #222;
  font-size: 18px;
  line-height: 1.8;
}

/*CI/BI tab*/
.tabs {
  display: flex;
  column-gap: 24px;
  max-width: 384px;
  margin: 50px auto 50px;
}

.tabs li {
  width: calc((100% - 24px) / 2);
  height: 42px;
}

.tabs li.on {
  border-bottom: 2px solid #00a2c5;
}

.tabs li button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.tabs li button span {
  color: #ddd;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tabs li.on button span {
  color: #00a2c5;
  font-weight: 600;
}

/*CI*/
.ci {
  display: none;
}

.ci .big_logo > img {
  display: block;
  width: 100%;
  max-width: 840px;
  margin: 0 auto 40px;
}

.ci .identity p:first-of-type {
  padding-bottom: 20px;
}

.ci .signature h3 {
  padding-bottom: 40px;
  text-align: center;
}

.ci .signature .signature_list li:first-child {
  padding-bottom: 100px;
}

.ci .signature .signature_ci {
  display: flex;
  column-gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}

.ci .signature .signature_ci > div:first-of-type,
.ci .signature .signature_ci > div:nth-of-type(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 24px) / 2);
  height: 260px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.ci .signature .signature_ci > div:nth-of-type(2) img {
  margin-top: -9px;
}

.ci .color_usage {
  display: flex;
  justify-content: space-between;
  column-gap: 24px;
  padding-bottom: 0;
}

.ci .color_usage h3 br {
  display: none;
}

.ci .color_usage img {
  width: 80%;
  max-width: 894px;
}

/*BI*/
.bi {
  display: none;
}

.bi .ko_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 210px;
  padding: 0;
  margin-bottom: 150px;
}

.bi .bi_logo {
  padding-bottom: 0;
}

.bi .bi_logo_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 24px;
}

.bi .bi_logo_list li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 48px) / 3);
  height: 180px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.bi .bi_logo_list li:nth-child(6) {
  flex-direction: column;
  align-items: flex-end;
  border: none;
}

.bi .bi_logo_list li:nth-child(6) p {
  font-size: 24px;
  color: #00a2c5;
  font-weight: 600;
  text-transform: uppercase;
}

.bi .bi_logo_list li:nth-child(6) span {
  display: block;
  padding-top: 5px;
}

.bi .bi_logo_list li:nth-child(8) img {
  margin-top: 11.5px;
}

/*KODALab*/
.kodalab_mobile {
  display: none;
}

.list_num_depth {
  padding-top: 20px;
}

.list_num .list_num_depth li {
  position: relative;
  margin-left: 0;
  padding: 0 0 10px 38px;
  list-style: none;
}

.list_num_depth li > span {
  position: absolute;
  top: 0;
  left: 0;
}

.list_num_depth li:last-child {
  padding-bottom: 15px;
}

.list_num_depth li a.btn_round {
  margin-left: 20px;
}

.list_num_depth li p {
  display: inline-block;
  margin-left: 20px;
  font-weight: bold;
}

.list_num_depth li p span {
  color: #023e7c;
}

.contact_list {
  display: flex;
  column-gap: 20px;
  margin-top: 20px;
}

.contact_list li span {
  display: inline-block;
  width: 18px;
  height: 18px;
  text-indent: -9999px;
  vertical-align: middle;
  margin-right: 5px;
}

.contact_list li:first-child span {
  background: url(/images/new/img/common/call.png) no-repeat center center /
    100% auto;
}

.contact_list li:last-child span {
  background: url(/images/new/img/common/email.png) no-repeat center center /
    100% auto;
}

/* 기업역량 우수기업 인증패*/
.certificate_list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 28px;
}

.certificate_list li {
  width: calc((100% - 84px) / 4);
}

.certificate_list li:nth-child(5),
.certificate_list li:nth-child(6),
.certificate_list li:last-child {
  width: calc((100% - 56px) / 3);
}

.certificate_list .certificate_img_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  /* border: 1px solid #ddd; */
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.certificate_list .certificate_img_wrapper img {
  height: 320px;
  padding: 30px 0;
}

.certificate_list li:nth-child(5) .certificate_img_wrapper img,
.certificate_list li:nth-child(6) .certificate_img_wrapper img,
.certificate_list li:last-child .certificate_img_wrapper img {
  height: 260px;
}

.certificate_list .certificate_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  text-align: center;
}

.certificate_list .certificate_info h5 {
  font-size: 18px;
  font-weight: bold;
}

.certificate_list .certificate_info h5 span {
  display: block;
  padding-top: 5px;
  color: #7a7a7a;
  font-size: 14px;
  font-weight: normal;
}

.certificate_list .certificate_info p {
  padding-top: 5px;
  color: #017dc7;
  font-size: 24px;
  font-weight: bold;
}

.certificate_list .certificate_info p span {
    font-weight: normal;
    font-size: 14px;
    color: #222;
}

.certificate_package thead tr th:last-child {
  background-color: #f6f6f6;
}

.certificate_package tbody tr td:last-child {
  color:#017dc7;
  font-weight: bold;
}

.certificate_package tbody tr td:last-child span {
  font-size: 14px;
  color: #222;
  font-weight: normal;
}