@charset "utf-8";

/*body 에 background-img를 넣는건 최대한 자제하세요*/

/* 기본 css */
#wrap {
	display: flex;
	flex-flow: column nowrap;
	margin: 0 auto;
	width: 100%;
	max-width: 1280px;
	height: auto;
	/* 
	row : 기본값으로, 행으로 수평방향으로 왼쪽에서 오른쪽으로 정렬한다.
	row-reverse : 행으로 수평방향으로 오른쪽에서 왼쪽으로 정렬한다.
	column : 열로 수직방향으로 위에서 아래로 정렬한다.
	column-reverse : 열로 수직방향으로 아래에서 위로 정렬한다.
	column nowrap; 모바일에서 박스 배치를 한줄로 하기 위함	
	initial : 디폴트 값으로 이 속성을 설정한다.
	inherit : 부모 요소로부터 값을 상속 받는다.
	overflow: hidden;
	*/
}
#body {	
	margin: 0 auto;
	width: 100%;
	height: 100%;
}

#header {
	margin: 0 auto;
	width: 100%;
	height: auto; 
	/* [disabled]height: 200px; */
	position: relative;
	/* [disabled]display: block; */
	/*background-color: red;*/
}
#navi-outbox {
	height: auto;
	width: 100%;
	position: absolute;
	margin: 0 auto;
	z-index: 999;
}
.logo {
	background: url(../images/logo-chn.png);
	background-size: 60% 60%;
	background-repeat: no-repeat;
	margin-top: 30px;
	margin-left: 50px;
	width: 250px;
	height: 50px;
	float: left:
	cursor: pointer;
}
.language-box {
	width: 250px;
	/*background: blue;*/
	float: right;
	margin-right: 0;
	margin-top: -40px;
	padding-right: 40px;
	font-size: 0;
	text-align: right;
}
.language a {
	/*width: 78px;*/
	float: right;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 10px;
	color: #FFF;
	/*background-color: #fa772f;*/
	padding: 0px 8px 0px 8px;
	cursor: pointer;
	font-weight: 400;
	text-align: center;
	vertical-align: middle;
	display: block;
	letter-spacing: 0.05em;
	text-transform:uppercase;
}
.language a:hover {
	background-color: #42454b;
}
.langbutton {
  font-family: 'Noto Sans SC', sans-serif;
  color: #FFFFFF !important;
  background: none;
  font-size: 10px;
  padding: 0px 8px;
  border: 0;
  text-transform:uppercase;
}
.langbutton a {
  font-family: 'Noto Sans SC', sans-serif;
  color: #FFFFFF !important;
  background: none;
  font-size: 10px;
  padding: 0px 6px;
  border: 0;
  text-transform:uppercase;
}
.langbutton:hover {
  color: #fff !important;
  background: #42454b;
  cursor: pointer;
}
.fixed {
	position: fixed; 
	top: 0; 
	height: 200px; 
	z-index: 1;
}
/* 네비게이션 정의 */
.topnavi-bar{
	margin: 0 auto;
	width: 100%; /*네비게이션 전체 width */
	background-color: #ffbe32; /*전체 네비바 색깔*/
	height: 48px;*/
	overflow: hidden;
}
ul.topnav {
	list-style-type: none;
	margin: 0 auto;
	margin-top: 0px;
	/*margin-left: 500px;*/
	overflow: hidden;
	/*background-color: red; 큰화면에서의 가운데 정렬 바 네비게이션 색깔*/
	width: 770px; /*큰화면에서의 네비게이션 가운데 정렬 바 width*/
	/*height: 70px; /*큰화면에서의 네비게이션 가운데 정렬 바 세로크기*/
}

ul.topnav li {
	float: left;
	text-align: center;
	/*background-color: black;*/
}
ul.topnav li a {
	display: inline-block;
	color: white;
	/*text-shadow: 1px 1px 3px #333;*/
	text-align: center;
	padding: 11px 25px 13px 25px;
	text-decoration: none;
	transition: 0.2s;
	font-size: 16px;
	font-weight: 400;
}
/*
ul.topnav li a:after {
	display: block;
	content: "";
    padding-right: 100px;
}
*/
ul.topnav li a:hover {
	background-color: #555;
}
#nav-active {
	/*height: 48px;
	margin-top: 2px;*/
	background: #555;
	/*text-shadow: 1px 1px 1px #555;*/
}
ul.topnav li.icon {display: none;}



@media screen and (max-width:680px) {
  ul.topnav li:not(:first-child) {display: none;}
  ul.topnav li.icon {
    float: right;
    display: inline-block;
  }
  ultopnav { width: 100%; }

}

@media screen and (max-width:680px) {
  ul.topnav.responsive {position: relative;}
  ul.topnav.responsive li.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  ul.topnav.responsive li {
    float: none;
    display: inline;
  }
  ul.topnav.responsive li a {
    display: block;
    text-align: left;
  }
  
}


/* 모바일 네비게이션 정의 */
#header-mobile {
	position: relative;
	display: none;
}
.mobile-menu {
	font-size:24px;
	cursor:pointer;
	display: none;
	position: absolute;
	width: 100%;
	padding: 5px;
	color: white;
	right: 0;
}
.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-y: hidden;
    transition: 0.5s;
	display: none;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay {overflow-y: auto;}
  .overlay a {font-size: 20px}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
/* 모바일 네비게이션 끝 */



/* container 정의 */


#container {
	width: 100%;
	height: auto; 
	background: white;
	margin: 0 auto;
	/*background: red;*/
}

.button-main {
	width: 180px;
	padding: 13px 10px;
	letter-spacing: 0.2em;
  	font-family: 'Noto Sans SC', sans-serif;
  	color: #000000 !important;
	font-weight: 400;
	text-align: center;
  	/*-moz-border-radius: 6px;
  	-webkit-border-radius: 6px;
  	border-radius: 6px;*/
  	/*border: 1px solid #c0c0c0;*/
  	background: #ffbe32;
	/*text-transform: uppercase;*/
	margin-top: 30px;
	cursor: pointer;
}
.button-main:hover {
	color: black !important;
  	background: white;
}
.button-fotter {
	width: 140px;
	letter-spacing: 0.2em;
  	color: #000000 !important;
  	font-size: 12px;
	font-family: 'Noto Sans SC', sans-serif;
	font-weight: 400;
	text-align: center;
  	padding: 11px 11px;
  	/*-moz-border-radius: 6px;
  	-webkit-border-radius: 6px;
  	border-radius: 6px;*/
  	/*border: 1px solid #c0c0c0;*/
  	background: #ffbe32;
	/*text-transform: uppercase;*/
	margin-top: 40px;
	cursor: pointer;
}
.button-fotter:hover {
	color: black !important;
  	background: white;
}
#img-main1 {
	width: 100%;
	height: 710px;
	background: url(../images/main_banner_images_1_1333.jpg);
	background-position: center;
	background-size: cover;
	display: block;
	overflow: hidden;
	position: relative;
}
.img-title-box-1 {
	width: 100%;
	margin-top: 300px;
	margin-left: 150px;
}
.img-title-1-1 {
	font-size: 36px;
	color: #ffbe32;
	line-height: 150%;
	text-transform: uppercase;
	font-family: 'Noto Sans SC', sans-serif;
	letter-spacing: 0.02em;
	text-shadow: 1px 1px 3px #333;
}
.img-title-1-2 {
	font-size: 75px;
	font-family: 'Noto Sans SC', sans-serif;
	/*font-family: 'Raleway', sans-serif; */
	letter-spacing: -0.05em;
	color: #ffbe32;
	font-weight: 600;
	line-height: 130%;
	text-shadow: 1px 1px 3px #333;
}
.img-title-1-3 {
	font-size: 18px;
	letter-spacing: 0.03em;
	color: #fff;
	font-family: 'Noto Sans SC', sans-serif;
	text-shadow: 1px 1px 3px #333;
}
#img-main2 {
	width : 100%;
	height: 710px;
	background: url(../images/main_banner_images_2_1333.jpg) ;
	/*background-position: center;*/
	background-size: cover;
	display: block;
	overflow: hidden;
}
#img-main3 {
	width : 100%;
	height: 710px;
	background: url(../images/main_banner_images_3_1333.jpg);
	background-position: center;
	background-size: cover;
	display: block;
	overflow: hidden;
}
#img-main4 {
	width : 100%;
	height: 710px;
	background: url(../images/main_banner_images_4_1333.jpg);
	background-position: center;
	background-size: cover;
	display: block;
	overflow: hidden;
}
#img-main5 {
	width : 100%;
	height: 710px;
	background: url(../images/main_banner_images_5_1333.jpg);
	background-position: center;
	background-size: cover;
	display: block;
	overflow: hidden;
}
.video {
	margin: 0 auto;
	width: 1002px;
	height: 281px;
	display: block;
}
.video div {
	float: left;
	width: 500px;
	height: 100%;
	display: block;
}
.video div:last-child {
	padding-left: 2px;
}
.box_100per {
	width: 100%;
	background: white;
	padding-bottom: 20px;
}
.main_3_outbox {
	margin: 0 auto;
	width: 1127px;
	height: 220px;
}
.3box1 {
	width: 275px;
	height: 200px;
	background: red;
	float: left;
}
.sub-title {
	font-size: 28px;
	color: #000;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	font-family: 'Noto Sans SC', sans-serif;
	font-weight: 900;
	padding-top: 140px;
	padding-bottom: 50px;
}
.main_3_1 {
	float: left;
	width: 275px;
	padding: 0px 50px 0px 50px;
}
.main_3_1_img {
	background: url(../images/main_images_1.png);
	background-size: 100%;
	height: 50px;
	width: 50px;
	margin: 0 auto;
}
.main_3_1_title {
	padding-top: 28px;
	font-size: 18px;
	text-align: center;
	padding-bottom: 28px;
	color: black;
	font-family: 'Noto Sans SC', sans-serif;
}
.main_3_1_sub {
	font-size: 15px;
	text-align: center;
	font-family: 'Noto Sans SC', sans-serif;
}
.main_3_2_line {
	width: 1px;
	height: 200px;
	background: #e9e9e9;
	float: left;
}
.main_3_3 {
	float: left;
	width: 275px;
	padding: 0px 40px 0px 40px;
}
.main_3_3_img {
	background: url(../images/main_images_2.png);
	background-size: 100%;
	height: 50px;
	width: 50px;
	margin: 0 auto;
}
.main_3_3_title {
	padding-top: 28px;
	font-size: 18px;
	text-align: center;
	padding-bottom: 28px;
	color: black;
	font-family: 'Noto Sans SC', sans-serif;
}
.main_3_3_sub {
	font-size: 15px;
	text-align: center;
	font-family: 'Noto Sans SC', sans-serif;
}
.main_3_5 {
	float: left;
	width: 275px;
	padding: 0px 40px 0px 40px;
}
.main_3_5_img {
	background: url(../images/main_images_3.png);
	background-size: 100%;
	height: 50px;
	width: 50px;
	margin: 0 auto;
}
.main_3_5_title {
	padding-top: 28px;
	font-size: 18px;
	text-align: center;
	padding-bottom: 28px;
	color: black;
	font-family: 'Noto Sans SC', sans-serif;
}
.main_3_5_sub {
	font-size: 15px;
	text-align: center;
	font-family: 'Noto Sans SC', sans-serif;
}
.main_5_outbox {
	margin: 0 auto;
	width: 1000px;
	margin-top: -40px;
	background: red;
}
.main_5_outbox2 {
	margin: 0 auto;
	width: 650px;
	margin-top: -20px;
}
.main_5_1 {
	float: left;
	width: 290px;
	padding: 0px 30px 0px 0px;
	cursor: pointer;
}
.main_5_1_img {
	background: url(../images/main_images_4.png);
	background-size: 60% 60%;
	background-repeat: no-repeat;
	background-position: center;
	height: 221px; /* 302*/
	width: 280px; /* 382*/
	margin: 0 auto;
	/*opacity: 0.5;*/
}
.main_5_1_title {
	padding-top: 0px;
	font-size: 18px;
	text-align: center;
	padding-bottom: 20px;
	color: black;
	font-family: 'Noto Sans SC', sans-serif;
}
.main_5_1_sub {
	font-size: 15px;
	text-align: center;
	font-family: 'Noto Sans SC', sans-serif;
	line-height: 170%;
}
.main_5_2_line {
	margin-top: 50px;
	width: 1px;
	height: 250px;
	background: #e9e9e9;
	float: left;
}
.main_5_3 {
	float: left;
	width: 290px;
	padding: 0px 30px 0px 30px;
	cursor: pointer;
}
.main_5_3_img {
	background: url(../images/main_images_5.png);
	background-size: 60% 60%;
	background-repeat: no-repeat;
	background-position: center;
	height: 221px; /* 302*/
	width: 280px; /* 382*/
	margin: 0 auto;
}
.main_5_3_title {
	padding-top: 0px;
	font-size: 18px;
	text-align: center;
	padding-bottom: 20px;
	color: black;
	font-family: 'Noto Sans SC', sans-serif;
}
.main_5_3_sub {
	font-size: 15px;
	text-align: center;
	font-family: 'Noto Sans SC', sans-serif;
	padding: 0px 20px 0px 20px;
	line-height: 170%;
}

.main_5_5 {
	float: left;
	width: 290px;
	padding: 0px 0px 0px 30px;
	cursor: pointer;
}
.main_5_5_img {
	background: url(../images/main_images_6.png);
	background-size: 60% 60%;
	background-repeat: no-repeat;
	background-position: center;
	height: 221px; /* 302*/
	width: 280px; /* 382*/
	margin: 0 auto;
}
.main_5_5_title {
	padding-top: 0px;
	font-size: 18px;
	text-align: center;
	padding-bottom: 20px;
	color: black;
	font-family: 'Noto Sans SC', sans-serif;
}
.main_5_5_sub {
	font-size: 15px;
	text-align: center;
	font-family: 'Noto Sans SC', sans-serif;
	padding: 0px 20px 0px 20px;
	line-height: 170%;
}
.main_5_7 {
	float: left;
	width: 290px;
	padding: 0px 30px 0px 0px;
	cursor: pointer;
}
.main_5_7_img {
	background: url(../images/main_images_7.png);
	background-size: 60% 60%;
	background-repeat: no-repeat;
	background-position: center;
	height: 221px; /* 302*/
	width: 280px; /* 382*/
	margin: 0 auto;
}
.main_5_7_title {
	padding-top: 0px;
	font-size: 18px;
	text-align: center;
	padding-bottom: 20px;
	color: black;
	font-family: 'Noto Sans SC', sans-serif;
}
.main_5_7_sub {
	font-size: 15px;
	text-align: center;
	font-family: 'Noto Sans SC', sans-serif;
	padding: 0px 20px 0px 20px;
	line-height: 170%;
}
.main_5_9 {
	float: left;
	width: 290px;
	padding: 0px 0px 0px 30px;
	cursor: pointer;
}
.main_5_9_img {
	background: url(../images/main_images_8.png);
	background-size: 60% 60%;
	background-repeat: no-repeat;
	background-position:50% 50%;
	height: 221px; /* 302*/
	width: 280px; /* 382*/
	margin: 0 auto;
}
.main_5_9_title {
	padding-top: 0px;
	font-size: 18px;
	text-align: center;
	padding-bottom: 20px;
	color: black;
	font-family: 'Noto Sans SC', sans-serif;
}
.main_5_9_sub {
	font-size: 15px;
	text-align: center;
	font-family: 'Noto Sans SC', sans-serif;
	padding: 0px 20px 0px 20px;
	line-height: 170%;
}




/* fotter정의 */

#fotter {
	margin: 0 auto;
	width: 100%;
	background: #ffbe32;
	padding: 0px 0px 130px 0px;	
	display: inline-block;
}
.fottertop {
	width: 100%;
	background: #444444;
	color: white;
	margin: 0 auto;
	text-align: center;
	font-size: 16px;
	font-family: 'Noto Sans SC', sans-serif;
	padding: 40px 0px 40px 0px;
	font-weight: 100;
	display: inline-block;
}
.fotter_menu {
	width: 100%;
	margin: 0 auto;
	margin-top: 30px;
	display: inline-block;
}
.fotter_menu ul {
	color: #000;
	list-style-type: none;
	width: 630px;
	margin: 0 auto;
}
.fotter_menu ul li {
	font-size: 14px;
	font-weight: 400;
	text-transform:uppercase;
	font-family: 'Noto Sans SC', sans-serif;
	font-weight: 400;
	padding: 10px 18px 10px 18px;
	letter-spacing: 0.05em;
	display: inline-block;
}
.fotter_menu ul li a {
	color: #000;
	cursor: pointer;
}
.fotter_menu ul li:hover {
	/*text-transform:uppercase;
	background: #444444;
	color: white;
	transition: 0.2s;*/
}
.fotter_address {
	margin: 0 auto;
	width: 90%;
	font-size: 14px;
	color: #000;
	font-family: 'Noto Sans SC', sans-serif;
	padding: 40px 0px 0px 0px;
	text-align: center;
}
.fotter_copy {
	margin: 0 auto;
	width: 100%;
	font-size: 11px;
	color: #000;
	font-family: 'Noto Sans SC', sans-serif;
	text-align: center;	
}
.gototop {
	background: url(../images/main_gototop.png);
	background-size: cover;
	height: 60px;
	width: 60px;
	position: absolute;
	right: 0;
	margin-top: 0px;
	margin-right: 5%;
	/*bottom: 0;
	margin-bottom: 176px;*/
	cursor: pointer;
}


/* about 회사소개 정의 */


#img-about {
	width : 100%;
	height: 550px;
	background: url(../images/banner_about_1333.jpg) no-repeat;
	background-position: center top;
	background-size: 100%;
	display: block;
	overflow: hidden;
}
.about-box-1 {
	width: 100%;
	margin-top: 300px;
	/*margin-left: 150px;*/
}
.about-title-1-1 {
	font-size: 70px;
	letter-spacing: 0.2em;
	color: white;
	line-height: 120%;
	font-weight: 300;
	font-family: 'Noto Sans SC', sans-serif;
	text-align: center;
	text-shadow: 2px 2px 5px #666;
}
.about-title-1-2 {
	font-size: 22px;
	font-family: 'Noto Sans SC', sans-serif;
	font-weight: 300;
	/*font-family: 'Noto Sans SC', sans-serif;
	font-family: 'Raleway', sans-serif; */
	letter-spacing: 0.02em;
	color: white;
	/*font-weight: 400;*/
	line-height: 190%;
	text-align: center;
	text-shadow: 1px 1px 3px #666;
}
.title {
	margin-top: 50px;
	font-size: 30px;
	font-family: 'Noto Sans SC', sans-serif;
	letter-spacing: 0.05em;
	color: black;
	text-align: center;
	font-weight: 300;
}
.about-3sub {
	margin: 0 auto;
	padding: 80px 0px 100px 0px;
	width: 1040px;
	/*background: yellow;*/
}
.about-3sub_1 {
	margin: 0 auto;
	width: 320px;
	font-family: 'Noto Sans SC', sans-serif;
	/*background: blue;*/
	color: #111;
	display: inline-block;
	vertical-align: top;
	padding: 0px 15px 0px 0px;
	font-size: 15px;
}


.about-3sub_imgbox {
	width: 320px;
	height: 140px;
	overflow: hidden;
	padding-bottom: 40px;
}
.about-3sub_1_img {
	width: 100%;
	height: 140px;
	background: url(../images/DSC06358_1024.jpg) no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center;
}
.about-3sub_1_img:hover {
	-webkit-animation: animatedBackground .3s ease-in-out 1;
 	-moz-animation: animatedBackground .3s ease-in-out 1;
 	animation: animatedBackground .3s ease-in-out 1;
 	-webkit-animation-fill-mode: forwards;
 	animation-fill-mode: forwards;
}
.about-3sub_2_img {
	width: 100%;
	height: 140px;
	background: url(../images/DSC06359_1024.jpg) no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center;
}
.about-3sub_2_img:hover {
	-webkit-animation: animatedBackground .3s ease-in-out 1;
 	-moz-animation: animatedBackground .3s ease-in-out 1;
 	animation: animatedBackground .3s ease-in-out 1;
 	-webkit-animation-fill-mode: forwards;
 	animation-fill-mode: forwards;
}
.about-3sub_3_img {
	width: 100%;
	height: 140px;
	background: url(../images/DSC06367_1024.jpg) no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center;
}
.about-3sub_3_img:hover {
	-webkit-animation: animatedBackground .3s ease-in-out 1;
 	-moz-animation: animatedBackground .3s ease-in-out 1;
 	animation: animatedBackground .3s ease-in-out 1;
 	-webkit-animation-fill-mode: forwards;
 	animation-fill-mode: forwards;
}
@-webkit-keyframes animatedBackground {
 0% {
 -webkit-transform: scale(1, 1);
 -moz-transform: scale(1, 1);
 -ms-transform: scale(1, 1);
 -o-transform: scale(1, 1);
 transform: scale(1, 1)
 }
 100% {
 -webkit-transform: scale(1.1, 1.1);
 -moz-transform: scale(1.1, 1.1);
 -ms-transform: scale(1.1, 1.1);
 -o-transform: scale(1.1, 1.1);
 transform: scale(1.1, 1.1)
 }
 }
 @-moz-keyframes animatedBackground {
 0% {
 -webkit-transform: scale(1, 1);
 -moz-transform: scale(1, 1);
 -ms-transform: scale(1, 1);
 -o-transform: scale(1, 1);
 transform: scale(1, 1)
 }
 100% {
 -webkit-transform: scale(1.1, 1.1);
 -moz-transform: scale(1.1, 1.1);
 -ms-transform: scale(1.1, 1.1);
 -o-transform: scale(1.1, 1.1);
 transform: scale(1.1, 1.1)
 }
 }
 @keyframes animatedBackground {
 0% {
 -webkit-transform: scale(1, 1);
 -moz-transform: scale(1, 1);
 -ms-transform: scale(1, 1);
 -o-transform: scale(1, 1);
 transform: scale(1, 1)
 }
 100% {
 -webkit-transform: scale(1.1, 1.1);
 -moz-transform: scale(1.1, 1.1);
 -ms-transform: scale(1.1, 1.1);
 -o-transform: scale(1.1, 1.1);
 transform: scale(1.1, 1.1)
 }
 }


.about-3sub_title {
	font-family: 'Noto Sans SC', sans-serif;
	font-weight: 800;
	font-size: 15px;
}
.about-3sub_2 {
	margin: 0 auto;
	width: 320px;
	font-family: 'Noto Sans SC', sans-serif;
	/*background: blue;*/
	color; #111;
	display: inline-block;
	vertical-align: top;
	padding: 0px 15px 0px 15px;
	font-size: 15px;
}
.about-3sub_3 {
	margin: 0 auto;
	width: 320px;
	font-family: 'Noto Sans SC', sans-serif;
	/*background: blue;*/
	color; #111;
	display: inline-block;
	vertical-align: top;
	padding: 0px 0px 0px 15px;
	font-size: 15px;
}
.count_outbox {
	width: 100%;
	height: 300px;
	margin: 0 auto;
	background: url(../images/about_images_1.jpg) 50% 0 no-repeat ;
	background-size: cover;
	display: block;
	overflow: hidden;
}
.count_inbox {
	width: 60%;
	min-width: 1000px;
	height: 200px;
	margin: 0 auto;
	margin-top: 25px;
	/*background: yellow;*/
}
.count_inbox div {
	margin: 0 auto;
	display: inline-block;
	/*background: blue;*/
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	color: white;
	padding: 20px;
	vertical-align: text-top;
	width: 15%;
}
.count_big {
	font-size: 55px;
	font-weight: 400;
	font-family: 'Noto Sans SC', sans-serif;
}
.year {
	width: 100%;
	margin: 0 auto;
	font-size: 70px;
	font-weight: 800;
	font-family: 'Noto Sans SC', sans-serif !important;
	text-align: center !important;
	color: #eeeeee;
	margin-top: 35px;
	height: 60px;
}
/*
.history_year {
	width: 60%;
	min-width: 1000px;
	margin: 0 auto;
	font-size: 80px;
	font-weight: 800;
	font-family: 'Noto Sans SC', sans-serif;
	text-align: center;
	color: #eeeeee;
	margin-top: 35px;
	height: 60px;
}
*/
.history_sub {
	font-size: 14px;
	font-weight: 400;
	color: black;
	font-family: 'Noto Sans SC', sans-serif;
	text-align: center;
	vertical-align: middle;
	margin-top: -20px;
	text-shadow: 1px 1px 3px white;
}
.production_outbox {
	max-width: 1280px;
	width: 100%;
	height: 400px;
	margin: 0 auto;
	background: #e8e8e8;
}
.production_outbox div {
	width: 45%;
	display:inline-block;
	height: 100%;
	vertical-align: text-top;
}
.production_outbox div:first-child {
	width: 48%;
	background: url(../images/about_images_2.png) no-repeat;
	background-size: 80%;
	background-position: right bottom;
}
.production_outbox div:last-child {
	width: 48%;
	color: black;
	font-family: 'Noto Sans SC', sans-serif;
	padding: 100px 0px 0px 40px;
	font-size: 14px;
	font-weight: 400;
	line-height: 220%;
}
.production_title {
	width: 48%;
	font-size: 36px;
	font-family: 'Noto Sans SC', sans-serif;
	color: white;
	font-weight: normal;
}
.production_outbox2 {
	max-width: 1280px;
	width: 100%;
	height: 400px;
	margin: 0 auto;
	background: #e6dfd6;
}
.production_outbox2 div {
	display:inline-block;
	height: 100%;
	vertical-align: text-top;
}
.production_outbox2 div:first-child {
	width: 45%;
	color: black;
	font-family: 'Noto Sans SC', sans-serif;
	padding: 75px 50px 0px 0px;
	font-size: 14px;
	font-weight: 400;
	line-height: 220%;
	text-align: right;
}
.production_outbox2 div:last-child {
	max-width: 620px;
	width: 100%;
	background: url(../images/about_images_3.png) no-repeat;
	background-size: 100%;
	background-position: left bottom;
}


/* repair 수리 */
#img-repair {
	width : 100%;
	height: 550px;
	background: url(../images/img_repair_1333.jpg) no-repeat;
	background-position: center top;
	background-size: 100%;
	display: block;
	overflow: hidden;
	position: relative;
}
.repair_outbox {
	width: 100%;
	background: #f8f8f8;
	height: 330px;
	margin: 0 auto;
	display: inline-block;
}
.repair_outbox_left {
	width: 35%;
	height: 100%;
	margin-left: 15%;
	font-family: 'Noto Sans SC', sans-serif;
	font-weight: normal;
	float: left;
}
.repair_outbox_title_k {
	color: black;
	font-size: 18px;
	margin-top: 90px;
	font-family: 'Noto Sans SC', sans-serif;
}
.repair_outbox_title_e {
	font-size: 24px;
	color: black;
	font-weight: 400;
	margin-top: 20px;
	text-transform:uppercase;
}
.repair_outbox_sub {
	font-size: 14px;
	margin-top: 20px;
	padding-right: 50px;
	font-weight: 100;
}
.repair_outbox_right {
	width: 48%;
	height: 100%;
	background: url(../images/rapair_images_1.png) no-repeat;
	background-size: 90%;
	background-position: left bottom;
	float: left;
}
.repair_outbox2 {
	width: 100%;
	background: white;
	height: 330px;
	margin: 0 auto;
	display: inline-block;
}
.repair_outbox_left2 {
	width: 48%;
	height: 100%;
	background: url(../images/rapair_images_2.png) no-repeat;
	background-size: 90%;
	background-position: right bottom;
	float: left;
}
.repair_outbox_right2 {
	width: 35%;
	height: 100%;
	margin-left: 50px;
	font-family: 'Noto Sans SC', sans-serif;
	font-weight: normal;
	float: left;
}
.repair_outbox3 {	
	width: 100%;
	height: 1100px;
	background: #f8f8f8;
	margin: 0 auto;
	position: relative;
}
.repair_outbox3_title_k {
	color: black;
	font-size: 18px;
	padding-top: 100px;
	font-family: 'Noto Sans SC', sans-serif;
}
.repair_outbox3_title_e {
	font-size: 24px;
	color: black;
	font-weight: 400;
	margin-top: 30px;
	text-transform:uppercase;	
}
.repair_outbox3_sub {
	font-size: 14px;
	margin-top: 30px;
	font-weight: 100;
}
.repair_outbox3_inbox {
	width: 900px;
	height: 400px;
	margin: 0 auto;
	text-align: center;
}
.flowchart_outbox {
	margin: 0 auto;
	width: 770px;
	height: 148px;
	margin-top: 30px;
}
.flowchart_outbox div {
	width: 180px;
	height: 96px;
	padding: 20px 0px 0px 10px;
	display: inline-block;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	color: white;
	text-align: left;
	/*text-shadow: 1px 1px 2px #666;*/
}
.flowchart_outbox div:first-child {
	background: url(../images/rapair_images_3.png) no-repeat;
	background-size: 100%;
	position: absolute;
	z-index: 7;
}
.flowchart_outbox div:nth-child(2) {
	background: url(../images/rapair_images_4.png) no-repeat;
	background-size: 100%;
	position: absolute;
	z-index: 6;
	margin-left: 184px;
}
.flowchart_outbox div:nth-child(3) {
	background: url(../images/rapair_images_3.png) no-repeat;
	background-size: 100%;
	position: absolute;
	z-index: 5;
	margin-left: 368px;
}
.flowchart_outbox div:nth-child(4) {
	background: url(../images/rapair_images_4.png) no-repeat;
	background-size: 100%;
	position: absolute;
	z-index: 4;
	margin-left: 552px;
}
.flowchart_outbox div:nth-child(5) {
	background: url(../images/rapair_images_3.png) no-repeat;
	background-size: 100%;
	position: absolute;
	z-index: 3;
	margin-left: 736px;
}
.flowchart_title {
	font-size: 18px;
	font-weight: 400;
}
.flowchart_outbox2 {
	margin: 0 auto;
	width: 880px;
	height: 148px;
	margin-top: 30px;
	/*background: gray;*/
}
.flowchart_outbox2 div {
	width: 180px;
	height: 96px;
	padding: 20px 0px 0px 10px;
	display: inline-block;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	color: white;
	text-align: left;
	/*text-shadow: 1px 1px 2px #666;*/
}

.flowchart_outbox2 div:first-child {
	background: url(../images/rapair_images_3.png) no-repeat;
	background-size: 100%;
	position: absolute;
	z-index: 7;
}
.flowchart_outbox2 div:nth-child(2) {
	background: url(../images/rapair_images_4.png) no-repeat;
	background-size: 100%;
	position: absolute;
	z-index: 6;
	margin-left: 174px;
}
.flowchart_outbox2 div:nth-child(3) {
	background: url(../images/rapair_images_3.png) no-repeat;
	background-size: 100%;
	position: absolute;
	z-index: 5;
	margin-left: 348px;
}
.flowchart_outbox2 div:nth-child(4) {
	background: url(../images/rapair_images_4.png) no-repeat;
	background-size: 100%;
	position: absolute;
	z-index: 4;
	margin-left: 522px;
}
.flowchart_outbox2 div:nth-child(5) {
	background: url(../images/rapair_images_3.png) no-repeat;
	background-size: 100%;
	position: absolute;
	z-index: 3;
	margin-left: 696px;
}
.flowchart_outbox2 div:nth-child(6) {
	background: url(../images/rapair_images_4.png) no-repeat;
	background-size: 100%;
	position: absolute;
	z-index: 2;
	margin-left: 870px;
}
.flowchart_outbox2 div:nth-child(7) {
	background: url(../images/rapair_images_3.png) no-repeat;
	background-size: 100%;
	position: absolute;
	z-index: 1;
	margin-left: 1044px;
}
.flowchart_subtitle {
	font-size: 15px;
	font-family: 'Noto Sans SC', sans-serif;
	font-weight: 400;
	color: black;
	width: 100%;
	text-align: center;
	margin-top: -30px;
}
.flowchart_subtitle2 {
	font-size: 15px;
	font-family: 'Noto Sans SC', sans-serif;
	font-weight: 400;
	color: black;
	width: 100%;
	text-align: center;
	margin-top: -30px;
}

/* contact us 정의 */
#img-contactus {
	width : 100%;
	height: 550px;
	background: url(../images/img_contact_1333.jpg) no-repeat;
	background-position: center top;
	background-size: 100%;
	display: block;
	overflow: hidden;
	position: relative;
}
#img-whereis {
	width : 100%;
	height: 550px;
	background: url(../images/img-whereis_1333.jpg) no-repeat fixed;
	background-position: center top;
	background-size: 100%;
	display: block;
	overflow: hidden;
	position: relative;
}
.branch_map {
	background: url(../images/contact_images_1.png) no-repeat;
	background-size: 75%;
	background-position: center center;
	width: 1147px;
	height: 393px;
	margin: 0 auto;
	margin-top: 80px;
	position: relative;
}
.location1 {
	background: url(../images/contact_map_1.png) no-repeat;
	background-position: left bottom;
	position: absolute;
	width: 150px;
	height: 80px;
	margin-top: 30px;
	margin-left: 440px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	color: black;
	display: none;
}
.location2 {
	background: url(../images/contact_map_2.png) no-repeat;
	background-position: right top;
	position: absolute;
	width: 250px;
	height: 80px;
	margin-top: 115px;
	margin-left: 540px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	color: black;    
}
.location3 {
	background: url(../images/contact_map_3.png) no-repeat;
	background-position: right top;
	position: absolute;
	width: 250px;
	height: 80px;
	margin-top: 80px;
	margin-left: 520px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	color: black;
}
.location4 {
	background: url(../images/contact_map_4.png) no-repeat;
	background-position: left top;
	position: absolute;
	width: 170px;
	height: 80px;
	margin-top: 90px;
	margin-left: 770px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	color: black;
	text-align: right;
	font-weight: 400;
	text-shadow: 1px 1px 3px #fff;
}

.box_map {
	width: 1000px;
	height: auto;
	margin: 0 auto;
	display: block;
	margin-top: -30px;
}
.box_100per_map {
	width: 100%;
	height: 250px;
	margin-top: -20px;
	background: url(../images/maploading.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
}
.box_100per_map_infor {
	width: 100%;
	height: 300px;
}
.map_infor_outbox {
	padding: 30px 0px 0px 0px;
}
.map_infor_title {
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 17px;
	font-weight: normal;
	color: black;
	padding-bottom: 40px;
}
.map_infor_title2 {
	font-size: 13px;
	margin-left: 20px;
	font-family: 'Noto Sans SC', sans-serif;
}
.map_infor_detail {
	width: 90%;
	height: 30px;
}
.map_infor_detail div {
	width: 100%;
	height: 100%;
	display: inline-block;
}
.map_infor_detail div:nth-child(1) {
	width: 25px;
}
.map_infor_detail div:nth-child(2) {
	width: 70px;
	font-family: 'Noto Sans SC', sans-serif;
	color; #111;
	font-size: 14px;
}
.map_infor_detail div:nth-child(3) {
	width: 780px;
	color: #888;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
}
.contactus_title_sub {
	width: 100%;
	margin-top: 30px;
	text-align: center;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 15px;
	color: black;
	padding: 0px 0px 50px 0px;
}
.contactus_form_outbox {
	width: 1000px;
	margin: 0 auto;
}
.contactus_form_outbox_txt1 {
	font-size: 14px;
	font-family: 'Noto Sans SC', sans-serif;
	text-align: right;
}
.contactus_form_outbox_txt2 {
	font-size: 18px;
	font-family: 'Noto Sans SC', sans-serif;
}
.textfield {
	margin: 0 auto;
	width: 100%;
	padding: 10px;
	border: 1px solid #999;
}
.button-connect {
	margin: 0 auto;
	width: 130px;
	letter-spacing: 0.2em;
  	font-family: 'Noto Sans SC', sans-serif;
  	color: #000000 !important;
  	font-size: 13px;
	text-align: center;
  	padding: 11px 13px;
  	/*-moz-border-radius: 6px;
  	-webkit-border-radius: 6px;
  	border-radius: 6px;*/
  	/*border: 1px solid #c0c0c0;*/
  	background: #ffbe32;
	/*text-transform: uppercase;*/
	margin-top: 30px;
	cursor: pointer;
	margin-left: 200px;
	border: 0;
	font-weight: 400;
}
.button-connect:hover {
	color: white !important;
  	background: #313131;
}


/* 서브네비 정의 */
.subnav_outbox {
	width: 890px;
	margin: 0 auto;
	height: auto;
	/*background: blue;*/
	margin-top: -22px;
	font-size: 0;
}
.subnav_outbox div {
	width: auto;
	height: auto;
	text-align: center;
	display: inline-block;
	padding: 15px 16px 14px 16px;
	text-decoration: none;
	transition: 0.1s;
	font-size: 14px;
	font-family: 'Noto Sans SC', sans-serif;
	font-weight: 400;
	background: #f8f8f8;
	color: black;
	cursor: pointer;
}
.subnav_outbox div:hover {
	background: #ffbe32;
	color: white;
	/*text-shadow: 1px 1px 1px #555;*/
}
#active {
	background: #ffbe32;
	color: white;
	/*text-shadow: 1px 1px 1px #555;*/
}

.subnav_outbox div:nth-child(1) {
	width: 220px;
}
.subnav_outbox div:nth-child(2) {
	width: 100px;
}
.subnav_outbox div:nth-child(3) {
	width: 100px;
}
.subnav_outbox div:nth-child(4) {
	width: 180px;
}
.subnav_outbox div:nth-child(5) {
	width: 110px;
}
.active {
	background: #ffbe32;
	color: white;
}





/* product 디스플레이 */
#img-display {
	width : 100%;
	height: 550px;
	background: url(../images/img_product_1333.jpg) no-repeat;
	background-position: center top;
	background-size: 100%;
	display: block;
	overflow: hidden;
	position: relative;
}
.product-title {
	width: 100%;
	font-size: 36px;
	margin-top: 70px;
	color: black;
	font-weight: 100;
	letter-spacing: -0.05em;
	text-align: center;
	font-family: 'Noto Sans SC', sans-serif;
}
.product-title-sub {
	width: 100%;
	font-size: 16px;
	margin-top: 30px;
	color; #111;
	font-weight: 100;
	text-align: center;
	font-family: 'Noto Sans SC', sans-serif;
}
.display-icon-bar {
	width: 1000px;
	margin: 0 auto;
	height: 230px;
	margin-top: 30px;
	position: relative;
	/*background: gray;*/
}
.display-icon1 {
	background: url(../images/product_images_1.png) no-repeat;
	width: 332px;
	height: 210px;
	background-size: 65% 65%;
	position: absolute;
	margin-top: 70px;
	margin-left: 650px;
}
.display-icon2 {
	background: url(../images/product_images_2.png) no-repeat;
	width: 385px;
	height: 243px;
	background-size: 75% 75%;
	position: absolute;
	margin-top: 30px;
	margin-left: 70px;
}
.display-icon3 {
	background: url(../images/product_images_3.png) no-repeat;
	width: 200px;
	height: 284px;
	background-size: 55% 55%;
	position: absolute;
	margin-top: 50px;
	margin-left: 380px;
}
.display-icon4 {
	background: url(../images/product_images_4.png) no-repeat;
	width: 146px;
	height: 226px;
	background-size: 55% 55%;
	position: absolute;
	margin-top: 80px;
	margin-left: 480px;
}
.display-icon5 {
	background: url(../images/product_images_5.png) no-repeat;
	width: 111px;
	height: 224px;
	background-size: 55% 55%;
	position: absolute;
	margin-top: 85px;
	margin-left: 550px;
}
.product-img1 {
	width: 100%;
	height: 320px;
	background: url(../images/product_images_6.jpg) no-repeat;
	background-size: cover;
	display: block;
	position: relative;
}
.product-left {
	float: left;
	width: 50%;
	height: 100%;
}
.product-right {
	float: left;
	width: 50%;
	height: 100%;
}
.product-right-title {
	margin-top: 100px;
	margin-left: 40px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 30px;
	font-weight: 100;
	color: white;
}
.product-right-sub {
	width: 500px;
	margin-top: 50px;
	margin-left: 50px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 13px;
	font-weight: 100;
	color: white;
}
.product-img2 {
	width: 100%;
	height: 320px;
	background: url(../images/product_images_7.jpg) no-repeat;
	background-size: cover;
	display: block;
	position: relative;
}
.product-left-title {
	margin-top: 70px;
	margin-left: 150px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 30px;
	font-weight: 100;
	color: white;
	line-height: 120%;
}
.product-left-sub {
	width: 500px;
	margin-top: 40px;
	margin-left: 150px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 13px;
	font-weight: 100;
	color: white;
}
.product-app-outbox {
	width: 100%;
	height: auto;
	background: #3c3c42;
}
.product-app-inbox {
	width: 890px;
	height: auto;
	margin: 0 auto;
}
.product-app-inbox1 {
	width: 250px;
	height: auto;
	padding: 70px 20px 70px 20px;
	display: inline-block;
	vertical-align: top;
}
.product-app-title {
	text-align: center;
	font-size: 18px;
	color: #818181;
	font-family: 'Noto Sans SC', sans-serif;
}
.product-app-img1 {
	background: url(../images/product_images_8.png) no-repeat;
	width: 200px;
	height: 150px;
	background-size: 25%;
	background-position: center center;
	margin: 0 auto;
	margin-top: -20px;
}
.product-app-img2 {
	background: url(../images/product_images_9.png) no-repeat;
	width: 200px;
	height: 150px;
	background-size: 25%;
	background-position: center center;
	margin: 0 auto;
	margin-top: -20px;
}
.product-app-blank {
	width: 300px;
	height: 100px;
	margin: 0 auto;
	font-family: 'Noto Sans SC', sans-serif;
	color: #bea265;
	font-size: 28px;
	letter-spacing: -0.03em;
	text-align: center;
	vertical-align: text-bottom;
	line-height: 70%;
	font-weight: 100;
	padding-top: 30px;
}
.product-app-sub {
	text-align: center;
	font-size: 14px;
	color: #f2f2f2;
	font-family: 'Noto Sans SC', sans-serif;
	font-weight: 100;
	margin-top: -30px;
}

/* 렌즈부분 정의 */
.lens-icon-bar {
	width: 900px;
	margin: 0 auto;
	height: 150px;
	margin-top: 100px;
	/*background: gray;*/
	position: relative;
}
.lens-icon1 {
	background: url(../images/lens_images_1.png) no-repeat;
	width: 536px;
	height: 205px;
	background-size: 50% 50%;
	position: absolute;
	margin-top: -30px;
	margin-left: 150px;
}
.lens-icon2 {
	background: url(../images/lens_images_2.png) no-repeat;
	width: 509px;
	height: 205px;
	background-size: 50% 50%;
	position: absolute;
	margin-top: -30px;
	margin-left: 479px;
}
.lens-icon3 {
	background: url(../images/lens_images_3.png) no-repeat;
	width: 291px;
	height: 221px;
	background-size: 45% 45%;
	position: absolute;
	margin-top: 50px;
	margin-left: 630px;
}
.lens-img1 {
	width: 100%;
	height: 320px;
	background: url(../images/lens_images_4.jpg) no-repeat;
	background-size: cover;
	display: block;
	position: relative;
}
.lens-img2 {
	width: 100%;
	height: 320px;
	background: url(../images/lens_images_5.jpg) no-repeat;
	background-size: cover;
	display: block;
	position: relative;
}
.lens-app-img1 {
	background: url(../images/lens_images_6.png) no-repeat;
	width: 200px;
	height: 150px;
	background-position: center center;
	background-size: 40%;
	margin: 0 auto;
	margin-top: -30px;
}
.lens-app-img2 {
	background: url(../images/lens_images_7.png) no-repeat;
	width: 200px;
	height: 150px;
	background-position: center center;
	background-size: 30%;
	margin: 0 auto;
	margin-top: -30px;
}
.lens-app-blank {
	width: 200px;
	height: 90px;
	margin: 0 auto;
	font-family: 'Noto Sans SC', sans-serif;
	color: #bea265;
	font-size: 36px;
	text-align: center;
	vertical-align: text-bottom;
	line-height: 70%;
	font-weight: 100;
	padding-top: 30px;
}

/* scd pcd 정의 */
.scd-icon-bar {
	width: 600px;
	margin: 0 auto;
	height: 200px;
	margin-top: 80px;
	/*background: gray;*/
	position: relative;
}
.scd-icon1 {
	background: url(../images/scdpcd_images_1.png) no-repeat;
	width: 392px;
	height: 276px;
	background-size: 50% 50%;
	position: absolute;
	margin-top: 0px;
	margin-left: 0px;
}
.scd-icon2 {
	background: url(../images/scdpcd_images_2.png) no-repeat;
	width: 379px;
	height: 289px;
	background-size: 50% 50%;
	position: absolute;
	margin-top: 0px;
	margin-left: 242px;
}
.scd-icon3 {
	background: url(../images/scdpcd_images_3.png) no-repeat;
	width: 258px;
	height: 257px;
	background-size: 50% 50%;
	position: absolute;
	margin-top: 0px;
	margin-left: 500px;
}
.scd-img1 {
	width: 100%;
	height: 320px;
	background: url(../images/scdpcd_images_4.jpg) no-repeat;
	background-size: cover;
	display: block;
	position: relative;
}
.scd-img2 {
	width: 100%;
	height: 320px;
	background: url(../images/scdpcd_images_5.jpg) no-repeat;
	background-size: cover;
	display: block;
	position: relative;
}
.scd-app-img1 {
	background: url(../images/scdpcd_images_6.png) no-repeat;
	width: 200px;
	height: 150px;
	background-size: 25%;
	background-position: center center;
	margin: 0 auto;
	margin-top: -20px;
}
.scd-app-img2 {
	background: url(../images/scdpcd_images_7.png) no-repeat;
	width: 200px;
	height: 150px;
	background-size: 25%;
	background-position: center center;
	margin: 0 auto;
	margin-top: -20px;
}



/* special 정의 */
.special-icon-bar {
	width: 950px;
	margin: 0 auto;
	height: 250px;
	margin-top: 30px;
	/*background: gray;*/
	position: relative;
}
.special-icon1 {
	background: url(../images/special_images_1.png) no-repeat;
	width: 542px;
	height: 176px;
	background-size: 65% 65%;
	position: absolute;
	margin-top: 50px;
	margin-left: 0px;
}
.special-icon2 {
	background: url(../images/special_images_2.png) no-repeat;
	width: 436px;
	height: 245px;
	background-size: 65% 65%;
	position: absolute;
	margin-top: 0px;
	margin-left: 650px;
}
.special-icon3 {
	background: url(../images/special_images_8.png) no-repeat;
	width: 256px;
	height: 209px;
	background-size: 60% 60%;
	position: absolute;
	margin-top: 60px;
	margin-left: 350px;
}
.special-icon4 {
	background: url(../images/special_images_9.png) no-repeat;
	width: 220px;
	height: 209px;
	background-size: 60% 60%;
	position: absolute;
	margin-top: 60px;
	margin-left: 510px;
}
.special-img1 {
	width: 100%;
	height: 320px;
	background: url(../images/special_images_3.jpg) no-repeat;
	background-size: cover;
	display: block;
	position: relative;
}
.special-img2 {
	width: 100%;
	height: 320px;
	background: url(../images/special_images_4.jpg) no-repeat;
	background-size: cover;
	display: block;
	position: relative;
}
.special-img3 {
	width: 100%;
	height: 320px;
	background: url(../images/special_images_7.jpg) no-repeat;
	background-size: cover;
	display: block;
	position: relative;
}
.special-app-img1 {
	background: url(../images/special_images_5.png) no-repeat;
	width: 200px;
	height: 150px;
	background-size: 40%;
	background-position: center center;
	margin: 0 auto;
	margin-top: -20px;
}
.special-app-img2 {
	background: url(../images/special_images_6.png) no-repeat;
	width: 200px;
	height: 150px;
	background-size: 40%;
	background-position: center center;
	margin: 0 auto;
	margin-top: -20px;
}

.button_special {
	width: 185px;
	margin: 0 auto;
	letter-spacing: 0.2em;
  	font-family: 'Noto Sans SC', sans-serif;
  	color: #000000 !important;
  	font-size: 12px;
	font-weight: 400;
	text-align: center;
  	padding: 10px 10px;
  	/*-moz-border-radius: 6px;
  	-webkit-border-radius: 6px;
  	border-radius: 6px;*/
  	/*border: 1px solid #c0c0c0;*/
  	background: #ffbe32;
	/*text-transform: uppercase;*/
	margin-top: 20px;
	cursor: pointer;
}
.button_special:hover {
	color: white !important;
  	background: #333;
}


/* upc 정의 */
.upc-icon-bar {
	width: 700px;
	margin: 0 auto;
	height: 250px;
	margin-top: 20px;
	/*background: gray;*/
	position: relative;
}
.upc-icon1 {
	background: url(../images/upc_images_1.png) no-repeat;
	width: 327px;
	height: 207px;
	background-size: 65% 65%;
	position: absolute;
	margin-top: 100px;
	margin-left: 0px;
}
.upc-icon2 {
	background: url(../images/upc_images_2.png) no-repeat;
	width: 156px;
	height: 290px;
	background-size: 65% 65%;
	position: absolute;
	margin-top: 60px;
	margin-left: 240px;
}
.upc-icon3 {
	background: url(../images/upc_images_3.png) no-repeat;
	width: 167px;
	height: 340px;
	background-size: 65% 65%;
	position: absolute;
	margin-top: 30px;
	margin-left: 340px;
}
.upc-icon4 {
	background: url(../images/upc_images_4.png) no-repeat;
	width: 179px;
	height: 227px;
	background-size: 65% 65%;
	position: absolute;
	margin-top: 100px;
	margin-left: 480px;
}
.upc-icon5 {
	background: url(../images/upc_images_5.png) no-repeat;
	width: 128px;
	height: 178px;
	background-size: 65% 65%;
	position: absolute;
	margin-top: 140px;
	margin-left: 570px;
}

.upc-img1 {
	width: 100%;
	height: 320px;
	background: url(../images/upc_images_6.jpg) no-repeat;
	background-size: cover;
	display: block;
	position: relative;
}
.upc-img2 {
	width: 100%;
	height: 320px;
	background: url(../images/upc_images_7.jpg) no-repeat;
	background-size: cover;
	display: block;
	position: relative;
}
.upc-img3 {
	width: 100%;
	height: 320px;
	background: url(../images/upc_images_8.jpg) no-repeat;
	background-size: cover;
	display: block;
	position: relative;
}
.upc-app-img1 {
	background: url(../images/upc_images_9.png) no-repeat;
	width: 200px;
	height: 150px;
	background-size: 45%;
	background-position: center center;
	margin: 0 auto;
	margin-top: -20px;
}
.upc-app-img2 {
	background: url(../images/upc_images_10.png) no-repeat;
	width: 200px;
	height: 150px;
	background-size: 45%;
	background-position: center center;
	margin: 0 auto;
	margin-top: -20px;
}
.product-title-e {
	width: 100%;
	font-size: 36px;
	margin-top: 70px;
	color: black;
	font-weight: 100;
	letter-spacing: 0.03em;
	text-align: center;
	font-family: 'Noto Sans SC', sans-serif;
}

/*애니메이션 정의 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}



/* 코드 추가 부분 */
.product-special-left {
	margin: 0 auto;
	width: 70%;
	padding: 80px 15% 80px 15%;
	height: auto;
	display: block;
	position: relative;
}
.product-special-right {
	margin: 0 auto;
	width: 70%;
	padding: 80px 15% 80px 15%;
	height: auto;
	display: block;
	position: relative;
}
.product-special-right-title {
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 30px;
	font-weight: 300;
	color: black;
	text-align: center;
	margin-top: 0px;
}
.product-special-right-sub {
	width: 100%;
	margin-top: 50px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #111;
	text-align: center;
}
.product-special-left-title {
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 30px;
	font-weight: 300;
	color: black;
	text-align: center;
	margin-top: 0px;
}
.product-special-left-sub {
	width: 100%;
	margin-top: 50px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #111;
	text-align: center;
}
.product-scdpcd-left {
	margin: 0 auto;
	width: 70%;
	padding: 80px 15% 80px 15%;
	height: auto;
	display: block;
	position: relative;
}
.product-scdpcd-right {
	margin: 0 auto;
	width: 70%;
	padding: 80px 15% 80px 15%;
	height: auto;
	display: block;
	position: relative;
}
.product-scdpcd-right-title {
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 30px;
	font-weight: 300;
	color: black;
	text-align: center;
	margin-top: 0px;
}
.product-scdpcd-right-sub {
	width: 100%;
	margin-top: 50px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #111;
	text-align: center;
}
.product-scdpcd-left-title {
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 30px;
	font-weight: 300;
	color: black;
	text-align: center;
	margin-top: 0px;
}
.product-scdpcd-left-sub {
	width: 100%;
	margin-top: 50px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #111;
	text-align: center;
}
.product-display-left {
	margin: 0 auto;
	width: 70%;
	padding: 80px 15% 80px 15%;
	height: auto;
	display: block;
	position: relative;
}
.product-display-right {
	margin: 0 auto;
	width: 70%;
	padding: 80px 15% 80px 15%;
	height: auto;
	display: block;
	position: relative;
}
.product-display-right-title {
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 30px;
	font-weight: 300;
	color: black;
	text-align: center;
	margin-top: 0px;
}
.product-display-right-sub {
	width: 100%;
	margin-top: 50px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #111;
	text-align: center;
}
.product-display-left-title {
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 30px;
	font-weight: 300;
	color: black;
	text-align: center;
	margin-top: 0px;
}
.product-display-left-sub {
	width: 100%;
	margin-top: 50px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #111;
	text-align: center;
}
.product-lens-left {
	margin: 0 auto;
	width: 70%;
	padding: 80px 15% 80px 15%;
	height: auto;
	display: block;
	position: relative;
}
.product-lens-right {
	margin: 0 auto;
	width: 70%;
	padding: 80px 15% 80px 15%;
	height: auto;
	display: block;
	position: relative;
}
.product-lens-right-title {
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 30px;
	font-weight: 300;
	color: black;
	text-align: center;
	margin-top: 0px;
}
.product-lens-right-sub {
	width: 100%;
	margin-top: 50px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #111;
	text-align: center;
}
.product-lens-left-title {
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 30px;
	font-weight: 300;
	color: black;
	text-align: center;
	margin-top: 0px;
}
.product-lens-left-sub {
	width: 100%;
	margin-top: 50px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #111;
	text-align: center;
}
.product-upc-left1 {
	margin: 0 auto;
	width: 70%;
	padding: 80px 15% 80px 15%;
	height: auto;
	display: block;
	position: relative;
}
.product-upc-right1 {
	margin: 0 auto;
	width: 70%;
	padding: 80px 15% 80px 15%;
	height: auto;
	display: block;
	position: relative;
}
.product-upc-right2 {
	margin: 0 auto;
	width: 70%;
	padding: 80px 15% 80px 15%;
	height: auto;
	display: block;
	position: relative;
}
.product-upc-right-title1 {
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 30px;
	font-weight: 300;
	color: black;
	text-align: center;
}
.product-upc-right-sub1 {
	width: 100%;
	margin-top: 50px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #111;
	text-align: center;
}
.product-upc-left-title1 {
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 30px;
	font-weight: 300;
	color: black;
	text-align: center;
}
.product-upc-left-sub1 {
	width: 100%;
	margin-top: 50px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #111;
	text-align: center;
}
.product-upc-right-title2 {
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 30px;
	font-weight: 300;
	color: black;
	text-align: center;
}
.product-upc-right-sub2 {
	width: 100%;
	margin-top: 50px;
	font-family: 'Noto Sans SC', sans-serif;
	font-size: 14px;
	font-weight: 300;
	color: #111;
	text-align: center;
}

.hide {
	display: none;
}




/* 모바일메뉴 secondary-expandable-navigation */
.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.overflow-hidden {
  overflow: hidden;
}

.cd-main-content {
  /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
  min-height: 100%;
  position: relative;
  background-color: white;
  z-index: 998;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.cd-main-content.lateral-menu-is-open {
  /*-------------오픈네비 width 1/3 --------------*/
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}


header {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background: #ffbe32;  /*-------------네비바탕색깔--------------*/
  z-index: 999;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
  display: none;
}
header.lateral-menu-is-open {
  /*-------------오픈네비 width 2/3--------------*/
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}
header.is-fixed {
  position: fixed;
}


#cd-logo {
  display: block;
  float: left;
  margin: 12px 0 0 20px;
}
#cd-logo img {
  display: block;
}

#cd-top-nav {
  position: absolute;
  top: 0;
  right: 120px;
  height: 100%;
  display: none;
}
#cd-top-nav ul {
  height: 100%;
  padding-top: 18px;
}
#cd-top-nav li {
  display: inline-block;
  margin-right: 1em;
}
#cd-top-nav a {
  display: inline-block;
  padding: .5em;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 600;
}
#cd-menu-trigger {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-color: #ffbe32;
}
#cd-menu-trigger .cd-menu-text {
  height: 100%;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
  display: none;
}
#cd-menu-trigger .cd-menu-icon {
  /* this span is the central line in the menu menu */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 18px;
  height: 2px;
  background-color: #FFF;
  /* these are the upper and lower lines in the menu menu */
}
#cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: inherit;
  left: 0;
}
#cd-menu-trigger .cd-menu-icon::before {
  bottom: 5px;
}
#cd-menu-trigger .cd-menu-icon::after {
  top: 5px;
}
#cd-menu-trigger.is-clicked .cd-menu-icon {
  background-color: rgba(255, 255, 255, 0);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before, #cd-menu-trigger.is-clicked .cd-menu-icon::after {
  background-color: white;
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


#cd-lateral-nav {
  padding-top: 20px;
  position: fixed;
  height: 100%;
  right: 0;
  top: 0;
  visibility: hidden;
  /* the secondary navigation is covered by the main element */
  z-index: 997;
  width: 260px;/*-------------오픈네비 width 3/3 --------------*/
  background-color: #2b2f38; /*-------------오픈네비색깔--------------*/
  overflow-y: auto;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
  transition: transform .4s 0s, visibility 0s .4s;
  /* this creates the subtle slide in animation of the navigation */
  -webkit-transform: translateX(80px);
  -moz-transform: translateX(80px);
  -ms-transform: translateX(80px);
  -o-transform: translateX(80px);
  transform: translateX(80px);
}
#cd-lateral-nav .sub-menu {
  padding: 0 10px 20px 15px;
  display: none;
}
#cd-lateral-nav a {
  display: block;
  line-height: 2em;
  padding: 8px 0px 8px 30px;
  color: #fff; /*-------------네비 글씨 색깔--------------*/
  font-size: 13px; /*-------------네비 글씨 크기--------------*/
  font-weight: 400;
  font-family: 'Noto Sans SC', sans-serif;
}
#cd-lateral-nav a.current {
  background-color: #3a3f49;
  color: #FFF; /*-------------네비 구분 포인트 글씨 색깔--------------*/
}
.no-touch #cd-lateral-nav a:hover {
  color: #FFF; /*-------------네비 오버 글씨 색깔--------------*/
}

#cd-lateral-nav.lateral-menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
  transition: transform .4s 0s, visibility 0s 0s;
  /* smooth the scrolling on touch devices - webkit browsers */
  -webkit-overflow-scrolling: touch;
}

/* style menu items which have a submenu  */
#cd-lateral-nav .item-has-children > a {
  position: relative;
  text-transform: uppercase;
  font-weight: 100;
  font-size: 14px; /*-------------서브네비 / 2차서브네비 글씨 크기--------------*/
  font-weight: 400;
  /* this is the right arrow to show that the item has a submenu  */
}
#cd-lateral-nav .item-has-children > a::after {
  content: '';
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1em;
  background: url("../images/cd-arrow.svg") no-repeat center center;
  background-size: 8px 11px;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
#cd-lateral-nav .item-has-children > a.submenu-open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

#cd-lateral-nav .socials {
  padding: 0 32px;
}
