/* 서브페이지 공통 */
.est {
  padding-bottom: 160px;
}
.est .intro {
  height: 512px;
  position: relative;
  overflow: hidden;
}

.est .intro .bg {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1.2);
  transition: all 2s ease;
}
.est .intro.move .bg {
  transform: scale(1);
}

.est .intro .logo {
  width: 100%;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.est .intro .logo img {
  transform: scale(0.8);
}
.est .intro .logo img.move {
  animation: scaleDown 0.8s ease-in-out forwards;
}


/* 서브비주얼 */
#sv {
  height: 358px;
  margin-top: 100px;
  position: relative;
  z-index: 5;
}

#sv > .inner1200 {
  height: 100%;
}
#sv .svBox {
  padding-top: 100px;
}
#sv .svBox h2 {
  opacity: 0;
  font-size: 35px;
  color: #333;
  line-height: 1.3;
  font-family: "NanumSquare_acEB";
  transition: all 0.8s ease;
  position: relative;
  top: auto;
}
#sv .svBox.move h2 {
  animation: fadeLeft50 1s ease-in-out forwards;
}
#sv .svBox h2 span {
  display: block;
  font-size: 55px;
}

#sv .linkBtn {
  text-transform: uppercase;
  position: absolute;
  right: 0;
  bottom: 31px;
  z-index: 6;
}
#sv .linkBtn > a {
  display: block;
  padding-right: 80px;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  font-family: "Poppins", sans-serif;
  position: relative;
}

#sv .linkBtn > a:before,
#sv .linkBtn > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
}

#sv .linkBtn > a:before {
  width: 50px;
  height: 5px;
  margin-top: -2.5px;
  background: url("/img/sub/icon_arrow04.png") no-repeat;
  right: 17px;
  animation: arr_ani01 0.8s ease-in-out infinite;
}
@keyframes arr_ani01 {
  0% {
    right: 10px;
  }
  50% {
    right: 17px;
  }
  100% {
    right: 10px;
  }
}

#sv .linkBtn > a:after {
  width: 36px;
  height: 36px;
  margin-top: -18px;
  border: 3px solid #222;
  border-radius: 50%;
  box-sizing: border-box;
  right: 0;
  z-index: 1;
}

/* svg 텍스트 공통*/
#sv .svgTxt {
  opacity: 0.6;
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 0;
}
#sv .svgTxt02 {
  opacity: 0.4;
}
#sv .svgTxt.on {
  opacity: 0.2;
}
#sv .svgTxt .svgBg_busi {
  position: absolute;
  left: 0;
  top: 0;
}
#sv .svgTxt .svgBg_busi path {
  opacity: 0;
  transition: all 1s ease;
}
#sv .svgTxt.on .svgBg_busi path {
  opacity: 1;
  fill: #d2d2d2;
}

/* 회사소개 페이지 svg */
#sv .svgTxt01 svg {
  width: 1043px;
}
#sv .svgTxt01 .svgTxt_busi path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}

/* 사업소개 페이지 svg */
#sv .svgTxt02 svg {
  width: 417px;
}
#sv .svgTxt02 .svgTxt_busi path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
}

/* 주요실적 페이지 svg */
#sv .svgTxt03 svg {
  width: 1100px;
}
#sv .svgTxt03 .svgTxt_busi path {
  stroke-dasharray: 1030;
  stroke-dashoffset: 1030;
}

/* 고객지원 페이지 svg */
#sv .svgTxt04 svg {
  width: 907px;
}
#sv .svgTxt04 .svgTxt_busi path {
  stroke-dasharray: 680;
  stroke-dashoffset: 680;
}

/* lnb */
#lnb.fixed {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
}
#lnb {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  transition: position 0.8s 0.1s ease;
  box-sizing: border-box;
}
#lnb > .inner1200 {
  height: 100%;
  display: flex;
  align-items: center;
}
#lnb ul {
}
#lnb ul li {
  float: left;
  padding-top: 3px;
  margin-right: 7px;
}
#lnb ul li:last-child {
  margin-right: 0;
}
#lnb ul li a {
  display: inline-block;
  /* width: 100%; */
  height: 100%;
}

#lnb ul li a span.on {
  background-color: #6db1c7;
  border: 1px solid #6db1c7;
  color: #fff;
}

#lnb ul li a span {
  display: inline-block;
  padding: 0 22px;
  height: 44px;
  text-align: center;
  line-height: 44px;
  font-size: 18px;
  font-weight: 500;
  color: #222;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 30px;
}
#lnb ul.busi_menu{
	display: none;
}
#lnb ul.busi_menu li:first-child {
  padding: 3px;
  background-color: #f5f5f5;
  border-radius: 30px;
}
#lnb ul.busi_menu li:first-child a span {
}
#lnb ul.busi_menu li:first-child a span + span {
  margin-left: 3px;
}


/* 회사소개 - 회사 개요 */
#overview{
	padding-bottom:310px;
}
#overview .cont{
	padding-top:170px;
}
#overview .cont.bg{
	position:relative; 
}
#overview .cont.bg::before{
	content:""; 
	position:absolute; 
	top: 0; 
	left: 0; 
	background: #f6f6f6;
	width: 100%; 
	height: 688px; 
	z-index: -1;
}
#overview .cont .icon_box{
	font-size:0;
	margin-bottom:100px;
}
#overview .cont .icon_box .item{
	display:inline-block; 
	vertical-align: top; 
	width: 20%; 
	text-align: center;
}
#overview .cont .icon_box .item figure{
	
}
#overview .cont .icon_box .item h5{
	font-family: 'Poppins', sans-serif;
	font-weight: bold; 
	font-size:14px; 
	color: #6db1c7; 
	margin: 45px 0 31px; 
	text-transform: uppercase;
}
#overview .cont .icon_box .item p{ 
	font-weight:500; 
	font-size:16px; 
	color: #333; 
	line-height:1.5em
}
#overview .cont .info{
	text-align: center; 
	margin-top:180px;
}
#overview .cont .info h2{
	margin-bottom:30px; 
	font-family: 'Poppins', sans-serif; 
	font-weight:bold; 
	font-size:70px; 
	color: #222;
}
#overview .cont .info p{ 
	font-size:18px; 
	color: #333; 
	line-height:1.3em
}
#overview .cont .info .img_box{
	font-size:0; 
	margin-top:90px;
}
#overview .cont .info .img_box .item{
	position:relative; 
	display:inline-block; 
	text-align: left; 
	width: 32.3%; 
	margin-right:1.5%;	
	vertical-align: top;
}
#overview .cont .info .img_box .item a{
	position:absolute; 
	top: 0; 
	right: 0; 
	bottom: 0; 
	left: 0;
}
#overview .cont .info .img_box .item:last-of-type{
	margin-right:0;
}
#overview .cont .info .img_box .item .ctn{
	position:relative;
}
#overview .cont .info .img_box .item .ctn::before{
	content:""; 
	display:inline-block; 
	position:absolute; 
	bottom: 130px; 
	right: 130px; 
	background:url(/img/sub/wBox_arrow.jpg) 50% 50% no-repeat; 
	background-size:cover; 
	width: 40px; 
	height: 40px; 
	opacity: 0; 
	transition:0.4s
}
#overview .cont .info .img_box .item .po_icon{
	position:absolute; 
	right: 0; 
	bottom: 0; 
	width: 130px; 
	height: 130px; 
	background: #fff; 
	text-align: center;
}
#overview .cont .info .img_box .item .po_icon img{
	margin: 33px 0;
}
#overview .cont .info .img_box .item .txt{
	
}
#overview .cont .info .img_box .item .txt h4{
	font-weight:bold; 
	font-size:24px; 
	color: #000; 
	line-height:1.3em; 
	margin: 52px 0 20px;
}
#overview .cont .info .img_box .item .txt p{
	font-weight:400; 
	font-size:16px; 
	letter-spacing:-0.035em; 
	color: #333; 
	line-height:1.3em
}
#overview .cont .info .img_box .item:hover .ctn::before{
	opacity: 1;
}
#overview .cont .icon_box .item.move{
    animation: fadeLeft50 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
#overview .cont .icon_box .item:nth-child(2){
	animation-delay: 0.2s;
}
#overview .cont .icon_box .item:nth-child(3){
	animation-delay: 0.4s;
}
#overview .cont .icon_box .item:nth-child(4){
	animation-delay: 0.6s;
}
#overview .cont .icon_box .item:nth-child(5){
	animation-delay: 0.8s;
}
#overview .cont .info h2.move,
#overview .cont .info p.move{
    animation: fadeUp50 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
#overview .cont .info .img_box .item.move{
    animation: fadeLeft50 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
#overview .cont .info .img_box .item:nth-child(2){
	animation-delay: 0.2s;
}
#overview .cont .info .img_box .item:nth-child(3){
	animation-delay: 0.4s;
}


/* 회사소개 - 인사말 */
#greeting .intro .bg {
  background: url("/img/sub/greeting_bg.jpg") no-repeat center;
}
#greeting .scon {
  padding-top: 160px;
  position: relative;
}
#greeting .scon:after {
  content: "";
  display: block;
  width: 1px;
  height: 185px;
  background-color: #6db1c7;
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 1;
}
#greeting .scon .txt > h3 {
  font-size: 95px;
  font-weight: 700;
  line-height: 1.1;
  font-family: "Poppins", sans-serif;
}
#greeting .scon .txt > span {
  display: block;
  margin: 35px 0 75px;
  font-size: 35px;
  line-height: 1.3;
  letter-spacing: -0.025em;
  font-family: "NanumSquare_acEB";
}
#greeting .scon .txt > p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(34, 34, 34, 0.8);
  line-height: 1.7;
}
#greeting .scon .txt > p + p {
  margin-top: 30px;
}
#greeting .scon .name {
  padding-top: 60px;
}
#greeting .scon .name span {
  margin-right: 50px;
  font-size: 17px;
}
#greeting .scon .name em {
  font-size: 48px;
  font-family: "Nanum Pen Script", cursive;
}

#greeting .scon .txt > h3.move,
#greeting .scon .txt > span.move,
#greeting .scon .txt > p.move,
#greeting .scon .name.move {
  animation: fadeLeft50 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}


/* 회사소개 - 비전,경영이념 */
#vision .intro {
  height: 816px;
}

#vision .intro .bg {
  background: url("/img/sub/vision_bg.jpg") no-repeat center;
}

#vision .intro .txt {
  width: 100%;
  padding: 230px 10px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
#vision .intro .txt:before {
  content: "";
  display: block;
  width: 1px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
}
#vision .intro .txt * {
  color: #fff;
}
#vision .intro .txt span {
  display: block;
  margin-bottom: 100px;
  font-size: 24px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
#vision .intro .txt h3 {
  margin-bottom: 30px;
  font-size: 70px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
#vision .intro .txt p {
  font-size: 30px;
  line-height: 1.3;
  font-family: "NanumSquare_acR";
}

#vision .intro .txt span.move {
  animation: scaleDown 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
#vision .intro .txt h3.move {
  animation: fadeUp50 1s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
#vision .intro .txt p.move {
  animation: fadeUp50 1s 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

#vision .scon {
  margin-top: -130px;
}
#vision .scon .tit {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
#vision .scon .list {
}
#vision .scon .list li {
  float: left;
  width: calc(33.333333333% - 10px);
  margin-right: 15px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.08);
}
#vision .scon .list li:last-child {
  margin-right: 0;
}
#vision .scon .list li .txt {
  height: 387px;
  padding: 80px 10px 0;
  background-color: #fff;
  text-align: center;
  box-sizing: border-box;
}
#vision .scon .list li .txt img {
  margin-bottom: 50px;
}
#vision .scon .list li .txt dl {
}
#vision .scon .list li .txt dl dt {
  margin-bottom: 20px;
  font-size: 30px;
  color: #333;
  font-family: "NanumSquare_acEB";
}
#vision .scon .list li .txt dl dd {
  font-size: 18px;
  color: #777;
  line-height: 1.6;
}
#vision .scon .list li .img {
}
#vision .scon .list li .img img {
}

#vision .scon .tit.move {
  animation: fadeLeft50 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
#vision .scon .list li.move {
  animation: fadeUp50 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
#vision .scon .list li:nth-child(2) {
  animation-delay: 0.2s;
}
#vision .scon .list li:nth-child(3) {
  animation-delay: 0.4s;
}


/* 회사소개 - 회사 연혁 */
#history .intro .bg {
  background: url("/img/sub/history_bg.jpg") no-repeat center;
}

#history .scon {
  margin-top: -115px;
}
#history .scon .top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 230px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.08);
  transform: scale(0.5);
}
#history .scon .top.move {
  animation: scaleDown 0.5s ease-in-out forwards;
}

#history .scon .top > div {
  text-align: center;
}
#history .scon .top > div img {
}
#history .scon .top > div p {
  padding-top: 25px;
  font-size: 24px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
#history .scon .list {
  padding-bottom: 160px;
  position: relative;
}
#history .scon .list:before,
#history .scon .list:after,
#history .scon .list ul:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#history .scon .list:before,
#history .scon .list:after {
  width: 12px;
  height: 12px;
  background-color: #6db1c7;
  border-radius: 50%;
  z-index: 1;
}
#history .scon .list:before {
  top: 0;
}
#history .scon .list:after {
  bottom: 0;
}
#history .scon .list > ul {
  position: relative;
}

#history .scon .list > ul:before {
  width: 1px;
  height: calc(100% + 160px);
  background-color: #e1e1e1;
  top: 0;
}
#history .scon .list > ul > li {
  padding-top: 30px;
  position: relative;
  z-index: 1;
}
#history .scon .list > ul > li:after {
  content: "";
  display: block;
  clear: both;
}
#history .scon .list > ul > li > div {
  width: 50%;
}
#history .scon .list > ul > li:nth-child(odd) > div {
  margin-right: 40px;
}
#history .scon .list > ul > li:nth-child(even) > div {
  margin-left: 40px;
}
#history .scon .list > ul > li:nth-child(odd) > div {
  float: right;
}
#history .scon .list > ul > li > div .year {
}
#history .scon .list > ul > li > div .year.move {
  animation: fade 0.5s ease-in-out forwards;
}
#history .scon .list > ul > li:nth-child(odd) > div .year {
  text-align: right;
  margin-right: 130px;
}
#history .scon .list > ul > li:nth-child(even) > div .year {
  margin-left: 70px;
}
#history .scon .list > ul > li > div ul {
}
#history .scon .list > ul > li > div ul li {
  display: flex;
  max-width: 430px;
  padding: 20px 40px;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  box-sizing: border-box;
}
#history .scon .list > ul > li > div ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #6db1c7;
  display: block;margin-top: 10px;
}
#history .scon .list > ul > li > div ul li a:hover{
	text-decoration: underline;
}

#history .scon .list > ul > li:nth-child(odd) > div ul li.move {
  animation: fadeRight50 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
#history .scon .list > ul > li:nth-child(even) > div ul li.move {
  animation: fadeLeft50 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

#history .scon .list > ul > li > div ul li + li {
  margin-top: 5px;
}
#history .scon .list > ul > li > div ul li:first-child {
  max-width: 550px;
}
#history .scon .list > ul > li > div ul li:last-child {
  max-width: 485px;
}
#history .scon .list > ul > li:nth-child(even) > div ul li {
  justify-content: flex-end;
  float: right;
  text-align: right;
}
#history .scon .list > ul > li > div ul li .date {
  flex-shrink: 0;
  width: 100px;
  font-size: 24px;
  font-weight: 700;
  color: #6db1c7;
  font-family: "Poppins", sans-serif;
}
#history .scon .list > ul > li > div ul li .txt {
}
#history .scon .list > ul > li > div ul li .txt p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
#history .scon .list > ul > li > div ul li .txt p + p {
  margin-top: 40px;
}
#history .scon .list > ul > li > div ul li .txt p span {
  display: block;
  padding-top: 5px;
  font-size: 16px;
  font-weight: 300;
}

#history .scon .list > ul > li:nth-child(even) > div ul li .date {
  order: 2;
}
#history .scon .list > ul > li:nth-child(even) > div ul li .txt {
  order: 1;
}
#history .scon .bot {
  padding-top: 60px;
  text-align: center;
}
#history .scon .bot.move {
  animation: fadeUp50 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
#history .scon .bot * {
  font-weight: 700;
  color: #6db1c7;
}
#history .scon .bot > img {
}
#history .scon .bot > span {
  display: block;
  margin: 20px 0;
  font-size: 20px;

  font-family: "Poppins", sans-serif;
}
#history .scon .bot > p {
  font-size: 36px;
}


/* R&D소개 공통 */
.rnd *{
	line-height: 1.3;
}
.rnd .imgBox {
  display: flex;
  align-items: center;
  height: 980px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rnd .imgBox * {
  color: #fff;
}
.rnd .imgBox .bg {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1.2);
  transition: all 2s ease;
}
.rnd .tab.move .imgBox .bg {
  transform: scale(1);
}
.rnd .tab .imgBox h3 {
  font-size: 50px;
  line-height: 1.3;
  font-family: "NanumSquare_acB";
}
.rnd .tab .imgBox p {
  padding-top: 40px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
}
.rnd .tab .imgBox dl {
  font-size: 0;
}
.rnd .tab .imgBox dl dt,
.rnd .tab .imgBox dl dd {
  display: inline-block;
  vertical-align: middle;
}
.rnd .tab .imgBox dl dt {
  margin-right: 40px;
  font-size: 18px;
  font-weight: 700;
}
.rnd .tab .imgBox dl dd {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
}
.rnd .tab .txtBox h4 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
}
.rnd .tab .txtBox {
  padding: 170px 0;
}
.rnd .tab .txtBox .intro {
  width: 100%;
  padding: 50px;
  border: 5px solid #e1e1e1;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}
.rnd .tab .txtBox .intro ul li{
	font-size: 16px; 
	font-weight: 500; 
	color: #222;
	line-height: 1.5;
	text-indent: -18px;
	padding-left: 18px;
}
.rnd .tab .txtBox .intro ul li:not(:last-of-type){
	margin-bottom: 10px;
}
.rnd .tab .txtBox .intro ul li::before{
	content: ""; 
	display: inline-block;
	width: 18px;
	height: 16px;
	background: url("/img/sub/icon_rnd_check.png") no-repeat center center / contain;
	margin-right: 10px;
	transform: translateY(1px);
}
.rnd .tab .txtBox .item {
  padding-top: 120px;
}
.rnd .tab .txtBox .item > div {
  float: left;
}
.rnd .tab .txtBox .item .left {
  width: 240px;
}
.rnd .tab .txtBox .item .right {
  width: calc(100% - 240px);
}
.rnd .tab .txtBox .item .tit{
	margin-bottom: 30px;
}
.rnd .tab .txtBox .item .tit p{ 
	font-size: 20px;
	font-weight: 300;
	color: #222;
	line-height: 1.7;
}
.rnd .tab .txtBox .item .tit p strong{
	font-weight: 500;
}
.rnd .tab .txtBox .item .tit a{
	display: inline-block;
	font-size: 20px; 
	font-weight: 500;
	color: #007bc7;
	line-height: 1.5;
}
.rnd .tab .txtBox .item .tit a span{
	background: linear-gradient(to bottom, transparent calc(100% - 1px), #007bc7 1px);
	line-height: inherit;
}
.rnd .tab .txtBox .item .tit a i{ 
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: #e3ecf2;
	border-radius: 50%;
	margin-left: 7px;
}
.rnd .tab .txtBox .item .tit a i::before{
	content: "";
	height: 12px;
	display: block;
	background: url("/img/sub/icon_link.png") no-repeat center center / contain;
}
.rnd .tab .txtBox .item .grayBox{
	border: 1px solid #CCC;
	padding: 40px;
}
.rnd .tab .txtBox .item .grayBox + .grayBox{
	margin-top: 20px;
}
.rnd .tab .txtBox .item .grayBox .bb{
	border-bottom: 1px dashed #CCC;
	padding-bottom: 40px;
	margin-bottom: 40px;
}
.rnd .tab .txtBox .item .grayBox dl > *:only-child{
	margin-bottom: 0 !important;
}
.rnd .tab .txtBox .item .grayBox dl dt{
	font-size: 18px;
	font-weight: 500; 
	color: #003764;
	margin-bottom: 18px;
}
.rnd .tab .txtBox .item .grayBox dl dt em{
	color: #6db1c7;
}
.rnd .tab .txtBox .item .grayBox dl dd{
	font-size: 16px;
	font-weight: 300; 
	color: #222;
	position: relative;
	padding-left: 8px;
	margin-top: 8px;
}
.rnd .tab .txtBox .item .grayBox dl dd::before{
	content: "· ";
	line-height: inherit;
	position: absolute; 
	top: 0;
	left: 0;
}
.rnd .tab .txtBox .item .grayBox dl dd strong{
	font-weight: 500;
}


/* R&D소개 - R&D with KENTECH - 이산화탄소의 자원화 */
#co2.rnd .tab .imgBox .bg{
	background: url("/img/sub/rnd01_img.jpg") no-repeat center;
}
#co2 .diagram{ 
	margin-top: 40px;
}
#co2 .diagram .flex-box{
	display: flex;
}
#co2 .diagram .radius{ 
	width: calc((100% + 60px) / 2);
	border-radius: 170px;
	text-align: center;
	padding: 88px 60px;
	position: relative;
}
#co2 .diagram .radius:not(:last-of-type){
	margin-right: -60px;
}
#co2 .diagram .radius::before{
	content: "";
	width: 20px;
	height: 20px;
	background: url("/img/sub/icon_plus.png") no-repeat center center / contain;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translate(50%, -50%);
}
#co2 .diagram .radius:last-of-type::before{ 
	display: none;
}
#co2 .diagram .radius p{
	font-size: 16px;
	font-weight: 700;
	color: #666;
	line-height: 1.625;
	margin-top: 18px;
}
#co2 .step-box .step{
	display: grid;
	grid-template-columns: 48px calc(100% - 48px);
}
#co2 .step-box .num{
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	padding-bottom: 24px;
}
#co2 .step-box .step:not(:first-of-type) .num{
	padding-top: 5px;
}
#co2 .step-box .num::before{
	content: "";
	width: 32px;
	height: 24px;
	background: var(--color);
	position: absolute;
	bottom: 5px; 
	left: 50%; 
	transform: translateX(-50%);
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	-webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
}
#co2 .step-box .num::after{
	content: "";
	width: 16px;
	display: block;
	flex: 1 0 auto;
	background: linear-gradient(to bottom, transparent, var(--color));
}
#co2 .step-box .step:last-of-type .num::before,
#co2 .step-box .step:last-of-type .num::after{
	display: none;
}
#co2 .step-box .num i{ 
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	background: var(--color);
	border-radius: 50%;
	font-size: 16px;
	font-weight: 500;
	color: #FFF;
	line-height: 1;
	font-style: normal;
}
#co2 .step-box .num + div{
	margin-left: 20px;
}
#co2 .step-box .step:not(:last-of-type) .num + div{
	border-bottom: 1px dashed #CCC;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
#co2 .step-box .box{
	border: 2px solid var(--color);
	padding: 40px 50px;
}
#co2 .step-box .step01 .grid{
	display: grid;
	grid-template-columns: calc(100% - 295px) 295px;
	align-items: center;
	font-size: 15px; 
	font-weight: 300;
	color: #222;
	margin: -15px;
}
#co2 .step-box .step01 .grid > *{
	margin: 15px;
}
#co2 .step-box .step01 .grid .row{
	grid-row: auto / span 2;
}
#co2 .step-box .step01 .grid p{
	font-size: 18px;
	font-weight: 500;
}
#co2 .step-box .step01 .grid ul{
	margin: 13px 0;
}
#co2 .step-box .step01 .grid ul li{
	padding-left: 12px;
	position: relative;
}
#co2 .step-box .step01 .grid ul li:not(:last-of-type){
	margin-bottom: 10px;
}
#co2 .step-box .step01 .grid ul li::before{
	content: "·";
	position: absolute;
	top: 0; 
	left: 0;
}
#co2 .step-box .step01 .grid strong{
	font-weight: 500;
	color: var(--color);
}
#co2 .step-box .step02 .box{
	padding: 0;
}
#co2 .step-box .step02 .box figure img{
	width: 100%;
}
#co2 .step-box .step03 .box > p{
	font-size: 16px; 
	font-weight: 300; 
	color: #222;
}
#co2 .step-box .step03 .box > p strong{
	display: block;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}
#co2 .step-box .step03 ul{ 
	border-bottom: 1px dashed var(--color);
	padding-bottom: 20px;
	margin-bottom: 40px;
}
#co2 .step-box .step03 ul li p{
	border-bottom: 1px solid var(--color);
	font-size: 18px;
	font-weight: 400;
	color: var(--color);
	padding-bottom: 10px;
}
#co2 .step-box .step03 ul li figure{
	text-align: center;
	padding: 40px 0;
}


/* R&D소개 - R&D with KENTECH - 폐플라스틱 원료로 순환 */
#plastic.rnd .tab .imgBox .bg{
	background: url("/img/sub/rnd02_img.jpg") no-repeat center;
}
#plastic.rnd .tab .txtBox .item .tit p{
	font-weight: 300;
}
#plastic.rnd .tab .txtBox .item .tit p strong{
	font-weight: 500;
}
#plastic.rnd .tab .txtBox .item .grayBox dl dd strong.arrow{
	display: inline-block;
	padding-left: 30px;
	position: relative;
}
#plastic.rnd .tab .txtBox .item .grayBox dl dd strong.arrow::before{
	content: "";
	width: 6px;
	height: 8px;
	background: #6db1c7;
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	-webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
	position: absolute;
	top: calc(1.3em / 2);
	left: 15px;
	transform: translate(-50%, -50%);
}
#plastic.rnd .tab .txtBox .item .grayBox figure{
	display: block;
	text-align: center;
}
#plastic.rnd .grid-box{
	display: grid;
	grid-template-columns: repeat(2, 50%);
	margin: -30px 0;
}
#plastic.rnd .grid-box > *{
	margin: 30px 0;
}
#plastic.rnd .grid-box .block{
	grid-column: auto / span 2;
}


/* R&D소개 -  R&D with 울주강소특구 */
#laboratory.rnd .tab .imgBox .bg {
  background: url("/img/sub/rnd03_img.jpg") no-repeat center;
}
#laboratory.rnd .imgBox {
  height: 1446px;
}
#laboratory.rnd .imgBox * {
  color: #333;
}
#laboratory.rnd .tab .imgBox p {
  padding-top: 30px;
}
#laboratory .rndBox {
  max-width: 1033px;
  height: 688px;
  margin: 85px auto 0;
  position: relative;
}
#laboratory .rndBox .top {
  width: 388px;
  height: 388px;
  padding: 43px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-sizing: border-box;
  position: relative;
}
#laboratory .rndBox .top:before {
  content: "";
  display: block;
  width: calc(100% + 10px);
  height: 50%;
  border: 5px solid #fff;
  border-top: none;
  border-radius: 0 0 204px 204px;
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  box-sizing: border-box;
}
#laboratory .rndBox .top > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
#laboratory .rndBox .top > div:before {
  content: "";
  display: block;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
#laboratory .rndBox .top > div span {
  display: inline-block;
  font-size: 50px;
  font-weight: 700;
  color: #003764;
  font-family: "Poppins", sans-serif;
}
#laboratory .rndBox .bot {
}
#laboratory .rndBox .bot ul {
}
#laboratory .rndBox .bot ul li {
  width: 302px;
  height: 302px;
  padding-top: 60px;
  background-color: #003764;
  border-radius: 50%;
  box-sizing: border-box;
  position: absolute;
}
#laboratory .rndBox .bot ul li:nth-child(even) {
  background-color: #6db1c7;
}
#laboratory .rndBox .bot ul li:nth-child(1) {
  left: 0;
  bottom: 252px;
}
#laboratory .rndBox .bot ul li:nth-child(2) {
  left: 205px;
  bottom: 0;
}
#laboratory .rndBox .bot ul li:nth-child(3) {
  right: 205px;
  bottom: 0;
}
#laboratory .rndBox .bot ul li:nth-child(4) {
  right: 0;
  bottom: 252px;
}
#laboratory .rndBox .bot ul li * {
  color: #fff;
}
#laboratory .rndBox .bot ul li:before,
#laboratory .rndBox .bot ul li:after {
  content: "";
  display: block;
  position: absolute;
}
#laboratory .rndBox .bot ul li:before {
  width: 11px;
  height: 11px;
  background-color: #003764;
  border-radius: 50%;
}
#laboratory .rndBox .bot ul li:nth-child(even):before {
  background-color: #6db1c7;
}
#laboratory .rndBox .bot ul li:nth-child(1):before {
  right: -28px;
  top: 100px;
}
#laboratory .rndBox .bot ul li:nth-child(2):before {
  right: 70px;
  top: -18px;
}
#laboratory .rndBox .bot ul li:nth-child(3):before {
  left: 70px;
  top: -18px;
}
#laboratory .rndBox .bot ul li:nth-child(4):before {
  left: -27px;
  top: 100px;
}

#laboratory .rndBox .bot ul li:after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #003764;
}
#laboratory .rndBox .bot ul li:nth-child(even):after {
  background-color: #6db1c7;
}
#laboratory .rndBox .bot ul li:nth-child(1):after {
  right: -30px;
  top: 129px;
  transform: rotate(-30deg);
}
#laboratory .rndBox .bot ul li:nth-child(2):after {
  right: 50px;
  top: 30px;
  transform: rotate(-60deg);
}
#laboratory .rndBox .bot ul li:nth-child(3):after {
  left: 50px;
  top: 30px;
  transform: rotate(60deg);
}
#laboratory .rndBox .bot ul li:nth-child(4):after {
  left: -30px;
  top: 129px;
  transform: rotate(30deg);
}

#laboratory .rndBox .bot ul li .icon {
  margin-bottom: 15px;
}
#laboratory .rndBox .bot ul li .icon img {
}
#laboratory .rndBox .bot ul li p {
  padding-top: 0 !important;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
#laboratory .rndBox .bot ul li span {
  display: block;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}


/* R&D소개 -  기술연구소 */
#technology .tab .txtBox .item:first-of-type{
	padding-top: 0;
}
#technology .tab .imgBox .bg{
	background: url("/img/sub/rnd04_img.jpg") no-repeat center center / cover;
}
#technology .tab .txtBox .item .grayBox dl dt{ 
	font-weight: 400;
	color: #222;
}
#technology .btn{ 
	display: inline-flex; 
	justify-content: center; 
	align-items: center; 
	background: #222;
	border-radius: 3px;
	font-size: 16px; 
	font-weight: 400; 
	color: #FFF; 
	padding: 10px 25px; 
	margin-top: 30px; 
}


/* 주요실적 - 경영 실적 */
#perfor {
}
#perfor .intro .bg {
  background: url("/img/sub/perfor_bg.jpg") no-repeat center;
}
#perfor .intro .txt {
  padding-top: 180px;
}
#perfor .intro .txt * {
  color: #fff;
}
#perfor .intro .txt span {
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
#perfor .intro .txt h3 {
  font-size: 45px;
  line-height: 1.4;
  letter-spacing: -0.025em;
  font-family: "NanumSquare_acB";
}
#perfor .intro .txt span {
  animation: fadeLeft50 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
#perfor .intro .txt h3 {
  animation: fadeLeft50 1s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

#perfor .scon {
  padding-top: 110px;
}
#perfor .scon .sconTit {
  margin-bottom: 75px;
  text-align: center;
  font-size: 45px;
  line-height: 1.3;
  font-family: "NanumSquare_acB";
}
#perfor .finance > p{
	font-size: 14px;
	color: #666;
	text-align: right;
	margin-bottom: 10px;
}
#perfor table.financeTable{
	position: relative;
	width: 100%;
}
#perfor table.financeTable th.bdt{
	border-top: 1px solid #6db1c7;
}
#perfor table.financeTable th{
	font-size: 16px;
	font-weight: 400;
	color: #222;
	text-align: center;
	height: 52px;
	border: 1px solid #e1e1e1;
	border-right: none;
	box-sizing:border-box;
}
#perfor table.financeTable th:first-child{
	border-left: none;
	width: 166px;
}
#perfor table.financeTable td{
	font-size: 15px;
	font-weight: 300;
	color: #666;
	text-align: center;
	height: 52px;
	border: 1px solid #e1e1e1;
	border-right: none;
	box-sizing:border-box;
}
#perfor table.financeTable td:first-child{border-left: none;}
#perfor .scon .state {
  padding-top: 120px;
}
#perfor .scon .state h5 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}
#perfor .scon .state .tbBox {
  display: flex;
}
#perfor .scon .state .tbBox .item {
  display: flex;
  align-items: center;
}
#perfor .scon .state .tbBox .item > img {
}
#perfor .scon .state .tbBox .item > p {
  font-family: "Poppins", sans-serif;
}
#perfor .scon .state .tbBox .item > p > span {
  font-size: 18px;
  font-weight: 600;
}
#perfor .scon .state .tbBox .item > p > em {
  display: inline-block;
  width: 200px;
  font-size: 65px;
  font-weight: 200;
  box-sizing: border-box;
}

#perfor .scon .state .tbBox > div {
  width: calc(50% - 10px);
  height: 310px;
  margin-right: 20px;
}
#perfor .scon .state .tbBox .left {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
}
#perfor .scon .state .tbBox .left .item {
}
#perfor .scon .state .tbBox .left .item > img {
  margin-right: 70px;
}
#perfor .scon .state .tbBox .left .item > p {
  text-align: center;
}
#perfor .scon .state .tbBox .left .item > p span {
  display: block;
  margin-bottom: 30px;
}

#perfor .scon .state .tbBox .right {
  margin-right: 0;
}
#perfor .scon .state .tbBox .right ul {
}
#perfor .scon .state .tbBox .right ul li {
  display: flex;
  align-items: center;
  padding-left: 50px;
  height: 150px;
  background-color: #f5f5f5;
  box-sizing: border-box;
}
#perfor .scon .state .tbBox .right ul li + li {
  margin-top: 10px;
}
#perfor .scon .state .tbBox .right ul li .item {
}
#perfor .scon .state .tbBox .right ul li .item > p {
}
#perfor .scon .state .tbBox .right ul li .item > p span {
  display: inline-block;
  vertical-align: middle;
  width: 88px;
  text-align: center;
}
#perfor .scon .state .tbBox .right ul li .item > p em {
  padding-left: 55px;
  display: inline-block;
  vertical-align: middle;
}


/* 고객지원 - 오시는길 */
#location {

}
#location .scon {
  padding: 130px 0 0;
}
#location .tabBtnWrap{
	position: relative;
	display: flex;
	justify-content: center;
	margin-bottom: 60px;
}
#location .tabBtnWrap a{
	position: relative;
	display: block;
	text-align: center;
	font-size: 20px;
	font-weight: 300;
	color: #666;
	width: 50%;
	height: 60px;
	line-height: 60px;
	border: 1px solid #e1e1e1;
	box-sizing:border-box;
	border-right: none;
	overflow: hidden;
}
#location .tabBtnWrap a:last-child{
	border-right: 1px solid #e1e1e1;
}
#location .tabBtnWrap a:hover{
	background: #6db1c7;
	color: #fff;
	font-weight: 400;
}
#location .tabBtnWrap a.active{
	background: #6db1c7;
	color: #fff; 
	font-weight: 400;
}
#location .mapWrap{
	border: 1px solid #e1e1e1;
	animation: fadeLeft50 1s ease-in-out forwards;
}
#location .mapWrap .root_daum_roughmap{
	width: 100%;
}
#location .mapWrap .root_daum_roughmap .cont .section.lst{
	display: none;
}
#location .mapWrap .root_daum_roughmap .map_border{
	display: none;
}
#location .scon .mapInfo {
  display: flex;
  flex-wrap: wrap;
}
#location .scon .mapInfo li {
  width: calc((100% - 60px) / 3);
  height: 300px;
  padding: 70px 10px 0;
  margin-right: 30px;
  margin-bottom: 30px;
  border: 1px solid #e1e1e1;
  box-sizing: border-box;
  text-align: center;
}
#location .scon .mapInfo li.move {
  animation: fadeUp50 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
#location .scon .mapInfo li:nth-child(2) {
  animation-delay: 0.2s;
}
#location .scon .mapInfo li:nth-child(3) {
  animation-delay: 0.4s;
}
#location .scon .mapInfo li:nth-child(4) {
  animation-delay: 0.6s;
}
#location .scon .mapInfo li:first-child{
	width: 100%;
	margin-right: 0;
}
#location .scon .mapInfo li:last-child {
  margin-right: 0;
}
#location .scon .mapInfo li img {
}
#location .scon .mapInfo li dl {
  padding-top: 50px;
}
#location .scon .mapInfo li dl dt {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
}
#location .scon .mapInfo li dl dd {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4;
}
#location .scon .mapWrap {
  width: 100%;
}
#location .scon .cf:after{
	display: block;
	clear: both;
	content: '';
}
#location .scon .downBtn {
  float: right;
  display: block;
  width: 280px;
  height: 80px;
  line-height: 80px;
  margin-top: 30px;
  border: 1px solid #e1e1e1;
  box-sizing: border-box;
  transition: all 0.5s ease;
  text-align: center;
}
#location .scon .downBtn.move {
  animation: fadeRight50 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
#location .scon .downBtn span {
  font-size: 18px;
  color: #222;
}
#location .scon .downBtn:hover {
  background-color: #6db1c7;
  border-color: #6db1c7;
}
#location .scon .downBtn:hover span {
  color: #fff;
}


/* boardCon */
.boardCon {
  margin-bottom: 135px;
  background-color: #fafafa;
}
.boardCon .scon {
  padding: 100px 0;
}

/* notice */
#notice{
	position: relative;
	padding: 130px 0 200px;
	font-family: 'Poppins','Noto Sans KR';
}
#notice table th{
	border-top: 1px solid #6db1c7;
	border-bottom: 1px solid #e1e1e1;
	font-size: 16px;
	font-weight: 400;
	color: #222;
	text-align: center;
	padding: 16px 0;
	box-sizing:border-box;
}
#notice table td{
	border-bottom: 1px solid #e1e1e1;
	font-size: 15px;
	font-weight: 300;
	color: #666;
	text-align: center;
	padding: 16px 0;
	box-sizing:border-box;
}
#notice table td a{
	display: block;
	line-height: 1.3;
}
#notice table td a:hover{
	color: #6db1c7;
}