/* ==================================================
	메인 공통 CSS
================================================== */
#Mcontainer {
	width: 100%;
}

.mcontent {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
}

.mcontent:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

/*** 모바일CSS ***/
@media all and (max-width:800px) {
	.mcontent {
		width: 96%;
	}
}

/* ==================================================
	메인 공통 타이틀
================================================== */
.m_title {
	overflow: hidden;
	display: block;
	padding-left: 16px;
	font-size: 32pt;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	color: #fff;
	word-break: keep-all;
	word-wrap: break-word;
	background: url('../images/icon/mat_icon.png') no-repeat 0 0;
}

.m_title>span {
	font-size: 13pt;
	font-family: 'Noto Sans KR';
	font-style: normal;
	font-weight: 400;
	color: #333;
	margin-left: 15px;
}

.test_title {
	color: #000;
}

/*** 모바일CSS ***/
@media all and (max-width:1200px) {
	.m_title {
		padding-left: 23px;
		font-size: 26pt;
	}

	.m_title>span {
		display: block;
		font-size: 12pt;
		margin-left: 0;
		margin-top: 10px;
	}

}

@media all and (max-width:640px) {
	.m_title {
		padding-left: 28px;
		font-size: 16pt;
	}

	.m_title>span {
		font-size: 11pt;
	}
}

@media all and (max-width:450px) {
	.m_title {
		padding-left: 23px;
		font-size: 14pt;
	}

	.m_title>span {
		font-size: 10pt;
	}
}

/* ==================================================
	메인이미지 움직이는 효과
================================================== */
.mover-cover {
	overflow: hidden;
	position: relative;
	display: block;
}

.mover-cover img {
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.5s linear;
	transition: all 0.5s linear;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.mover-cover:hover img {
	-webkit-transform: scale3d(1.2, 1.2, 1);
	transform: scale3d(1.2, 1.2, 1);
}


/* ==================================================
	메인비주얼
================================================== */
.main_visual {
	position: relative;
	margin-top: 91px;
}

.main_visual_slide .item {
	overflow: hidden;
	position: relative;
	height: 700px;
}

.main_visual_slide .item .inner {
	height: 100%;
}

.main_visual_slide .item .inner .txt {
	position: absolute;
	max-width: 1400px;
	width: 100%;
	top: 170px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.owl-item .item .inner .txt dl {
	color: #fff;
}

.owl-item .item .inner .txt dl dt {
	position: relative;
	font-size: 79px;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	line-height: 1;
}

.owl-item .item .inner .txt dl dt:after {
	width: 85px;
	height: 5px;
	margin-top: 25px;
	display: block;
	content: "";
	background-color: #fff;
}

.owl-item .item .inner .txt dl dt>span {
	font-weight: 800;
	color: #03a9f4;
}

.owl-item .item .inner .txt dl dd {
	font-size: 15pt;
	padding-top: 25px;
	line-height: 1.6;
}

.owl-item .item .inner .txt dl dd>span {
	display: block;
}

.main_visual_slide .slide1 .img,
.main_visual_slide .slide2 .img {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	transition: all 3s ease;
	transform: scale(1.1);
	left: 0
}

.main_visual_slide .slide1 .img {
	background: url('../images/main/main_visual01.jpg') #A9A6A8 center no-repeat;
	background-size: cover
}

.main_visual_slide .slide2 .img {
	background: url('../images/main/main_visual02.jpg') #D3D0D2 center no-repeat;
	background-size: cover
}

.main_visual_slide .active .img {
	transform: scale(1)
}

.main_visual .owl-carousel .owl-dots {
	position: absolute;
	top: 90%;
	left: 0;
	right: 0;
	z-index: 250;
	margin: 0 auto;
	text-align: center
}

.main_visual .owl-carousel .owl-dots .owl-dot {
	float: none !important;
	display: inline-block;
	margin: 0 4px
}

.main_visual .owl-carousel .owl-dots span {
	display: block;
	width: 14px;
	height: 14px;
	background: rgba(255, 255, 255, 0);
	border: 2px solid rgba(255, 255, 255, 1);
	position: relative
}

.main_visual .owl-carousel .owl-dots span:after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: 0;
	border-radius: 10px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto
}

.main_visual .owl-carousel .owl-dots .owl-dot.active span {
	background: #fff;
	border: 0;
}

/* 텍스트 애니메이션효과 */
.owl-item .item .inner .txt dl dt,
.owl-item .item .inner .txt dl dd {
	opacity: 0;
	-moz-transform: scale(0.5);
	-webkit-transform: scale(0.5);
	-o-transform: scale(0.5);
	-ms-transform: scale(0.5);
	transform: scale(0.5);
}

.owl-item .item .inner .txt dl dt {
	-webkit-transition: all 0.5s ease-in-out 0.25s;
	-moz-transition: all 0.5s ease-in-out 0.25s;
	-ms-transition: all 0.5s ease-in-out 0.25s;
	-o-transition: all 0.5s ease-in-out 0.25s;
	transition: all 0.5s ease-in-out 0.25s;
}

.owl-item .item .inner .txt dl dd {
	-webkit-transition: all 0.5s ease-in-out 0.55s;
	-moz-transition: all 0.5s ease-in-out 0.55s;
	-ms-transition: all 0.5s ease-in-out 0.55s;
	-o-transition: all 0.5s ease-in-out 0.55s;
	transition: all 0.5s ease-in-out 0.55s;
}

.owl-item.active .item .inner .txt dl dt,
.owl-item.active .item .inner .txt dl dd {
	opacity: 1;
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	tansform: scale(1);
}

/*** 모바일CSS ***/
@media all and (max-width:1400px) {
	.main_visual_slide .item {
		height: 600px;
	}

	.owl-item .item .inner .txt dl dt {
		font-size: 60px;
	}

	.owl-item .item .inner .txt dl dt:after {
		width: 65px;
		height: 3px;
		margin-top: 20px;
	}


	.owl-item .item .inner .txt dl dd {
		font-size: 13pt;
		padding-top: 20px
	}

}

@media all and (max-width:1250px) {
	.main_visual {
		margin-top: 61px;
	}
}

@media all and (max-width:1024px) {

	.main_visual_slide .item {
		height: 400px;
	}

	.main_visual_slide .item .inner .txt {
		text-align: center;
		top: 80px;
	}

	.owl-item .item .inner .txt dl dt {
		font-size: 50px;
	}

	.owl-item .item .inner .txt dl dt:after {
		width: 55px;
		height: 2px;
		margin: 20px auto;
	}

	.owl-item .item .inner .txt dl dd {
		font-size: 12pt;
		padding-top: 0
	}
}

@media all and (max-width:800px) {
	.main_visual_slide .item {
		height: 320px;
	}

	.owl-item .item .inner .txt dl dt {
		font-size: 42px;
	}

	.owl-item .item .inner .txt dl dd {
		font-size: 11pt;
	}
}

@media all and (max-width:640px) {
	.owl-item .item .inner .txt dl dt {
		font-size: 36px;
	}
}

/* ==================================================
	메인 제품
================================================== */
.mpro_list {
	margin-top: 30px;
}

.mpro_list:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.mpro_list>li {
	float: left;
	width: 32%;
	margin-left: 2%;
}

.mpro_list>li:first-child {
	margin-left: 0;
}

.mpro_list>li a {
	display: block;
}

.mpro_list>li a img {
	width: 100%;
}

.mpro_list>li a p {
	padding: 15px 2px;
	text-align: center;
	color: #fff;
	background: #000;
	font-size: 13pt;
}

.mpro_list>li a p.test_p {
	color: #333;
	background: #fff;
}


/*** 모바일CSS ***/
@media all and (max-width:1023px) {
	.mpro_list>li a p {
		font-size: 12pt;
	}
}

@media all and (max-width:640px) {
	.mpro_list {
		margin-top: 10px;
	}

	.mpro_list>li {
		float: none;
		width: 100%;
		margin-left: 0;
		margin-top: 25px;
	}

	.mpro_list>li a p {
		font-size: 11pt;
	}
}


/* ==================================================
	메인 제품 자동화장비
================================================== */
.auto_mpro {
	padding: 120px 0 110px 0;
	background: url('../images/main/auto_bg.jpg') #0c1319;
	background-repeat: no-repeat;
	background-position: center top;
}

/*** 모바일CSS ***/
@media all and (max-width:1023px) {
	.auto_mpro {
		padding: 100px 0 90px 0;
	}
}

@media all and (max-width:640px) {
	.auto_mpro {
		padding: 50px 0 40px 0;
	}
}

/* ==================================================
	메인 제품 시험측정장비
================================================== */
.test_mpro {
	padding: 120px 0 110px 0;
	background: url('../images/main/test_bg.jpg') #f4f4f4;
	background-repeat: no-repeat;
	background-position: center top;
}

/*** 모바일CSS ***/
@media all and (max-width:1023px) {
	.test_mpro {
		padding: 100px 0 90px 0;
	}
}

@media all and (max-width:640px) {
	.test_mpro {
		padding: 50px 0 40px 0;
	}
}

/* ==================================================
	회사소개
================================================== */
.company_bg {
	padding: 120px 0 110px 0;
	background: url('../images/main/mcompany_bg.jpg') #142538;
	background-repeat: no-repeat;
	background-position: center top;
}

.company_inner {
	position: relative;
	max-width: 1050px;
	width: 93%;
	margin: 0 auto;
}

.list_wrap li {
	text-align: center;
}

.list_wrap li .circle {
	width: 240px;
	height: 240px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	font-family: 'gotham';
}

.list_wrap li .circle {
	font-weight: 500;
	font-size: 20px;
	color: #fff;
	margin-bottom: 13px;
}

.list_wrap li .circle .icon {
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
}

.list_wrap li:nth-child(3) .circle .icon img {
	margin-top: 3px;
}

.list_wrap li .circle .num {
	font-size: 75px;
	color: #0595d5;
	font-weight: 600;
	line-height: 1em;
}

.list_wrap li .tit2 {
	font-size: 28px;
	color: #fff;
	font-weight: 700;
}

.list_wrap li .tit2:before {
	display: block;
	content: "";
	width: 2px;
	height: 40px;
	background: #fff;
	margin: -30px auto 20px;
}

.list_wrap li .txt1 {
	font-size: 13pt;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 5px;
}

.list_wrap li .txt1 span {
	display: block;
}

/*** 모바일CSS ***/
@media all and (max-width:1023px) {
	.company_bg {
		padding: 100px 0 90px 0;
	}

	.list_wrap li .circle {
		width: 200px;
		height: 200px;
		font-size: 16px;
	}

	.list_wrap li:nth-child(3) .circle .icon img {
		margin-top: 0;
	}

	.list_wrap li .circle .num {
		font-size: 55px;
	}

	.list_wrap li .tit2 {
		font-size: 23px;
	}

	.list_wrap li .txt1 {
		font-size: 12pt;
	}
}

@media all and (min-width:641px) {
	.list_wrap {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}

@media all and (max-width:640px) {
	.company_bg {
		padding: 50px 0 40px 0;
	}

	.list_wrap {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.list_wrap li {
		width: 50%;
		max-width: 300px;
		padding: 10px 0;
	}

	.list_wrap li .circle {
		width: 140px;
		height: 140px;
		margin: 0 auto;
		font-size: 10pt;
	}

	.list_wrap li .circle .icon {
		display: none;
	}

	.list_wrap li .tit2:before {
		display: none;
	}

	.list_wrap li .circle .num {
		font-size: 35px;
	}

	.list_wrap li .tit2 {
		font-size: 18px;
	}

	.list_wrap li .txt1 {
		font-size: 10pt;
	}

}

/* ==================================================
	ABOUT US
================================================== */
.about_bg {
	padding: 120px 0 80px;
}

.about_bg .m_content:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.about_left {
	float: left;
	width: 20%;
}

.about_left .text1 {
	color: #000;
}

.about_left .text2 {
	margin-top: 20px;
	padding-left: 14px;
	font-size: 16px;
	font-weight: 500;
	color: #666;
}

.about_left .text2 span {
	display: block;
}

.about_right {
	float: left;
	width: 77%;
	margin-left: 3%;
}

.about_right:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.about_right .list {
	float: left;
	width: 46%;
}

.about_right .list>li {
	height: 150px;
	padding: 35px 0 0 0;
	border-top: 1px solid #d8d8d8;
}

.about_right .list a {
	position: relative;
	display: block;
	padding-right: 80px;
}

.about_right .list a:before {
	content: "";
	position: absolute;
	right: 0;
	top: 5px;
	width: 56px;
	height: 58px;
	background: url("../images/main/about_bg.jpg") 0 0 no-repeat;
}

.about_right .list a.bg1:before {
	background-position: -66px 0;
}

.about_right .list a.bg2:before {
	background-position: 0 -68px;
}

.about_right .list .name {
	display: block;
	margin: 0 0 10px;
	font-size: 18px;
	color: #000;
}

.about_right .list .text {
	color: #333;
}

.mpr_video {
	float: left;
	width: 46%;
	margin-left: 8%;
}

.mpr_video a img {
	width: 100%;
}

.about_right .list .text .day {
	display:block;
	color: #9E9E9E;
}

/*** 모바일CSS ***/
@media all and (max-width:1023px) {
	.about_bg {
		padding: 100px 0 90px 0;
	}

	.about_left {
		float: none;
		width: 100%;
	}

	.about_left .text2 {
		margin-top: 10px;
	}

	.about_left .text2 span {
		display: inline;
	}

	.about_right {
		float: none;
		width: 100%;
		margin-left: 0;
		margin-top: 25px;
	}
}

@media screen and (max-width:900px) {
	.about_right .list {
		float: none;
		width: 100%;
	}

	.mpr_video {
		float: none;
		width: 100%;
		margin-left: 0;
		margin-top: 25px;
	}
}

@media screen and (max-width:640px) {
	.about_bg {
		padding: 50px 0 40px 0;
	}

	.about_left .text2 {
		font-size: 10pt;
	}

	.about_right .list>li {
		height: 120px;
		padding: 25px 0 0 0;
	}

	.about_right .list .name {
		margin: 0 0 5px;
		font-size: 16px;
	}

	.about_right .list .text {
		font-size: 12px;
	}
}

/* ==================================================
	Contact us
================================================== */
.mcontact {
	background: url('../images/main/mcontact_bg.png');
	background-repeat: repeat-y;
	background-position: top right, ;
	background-size: 32% auto;
	padding: 50px 0;
}

.mcontact .mcontent:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.mcontact_l {
	float: left;
	width: 17%;
	color: #fff;
}

.mcontact_l h3 {
	font-size: 18pt;
}

.mcontact_l h3 span {
	display: block;
	font-size: 11pt;
	font-weight: 400;
}

.mcontact_r {
	float: left;
	width: 83%;
}

.mcontact_r ul:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.mcontact_r ul li {
	position: relative;
	float: left;
	width: 25%;
	padding: 0 50px;
}

.mcontact_r ul li:first-child {
	width: 50%;
	padding: 0 100px;
}

.mcontact_r ul li:nth-child(2) {
	padding: 0 70px;
}

.mcontact_r ul li:nth-child(2):before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: -15px;
	width: 1px;
	height: 86px;
	background: #004ea2;
}

.mcontact_r ul li:nth-child(2):after {
	display: block;
	content: "";
	position: absolute;
	right: 0;
	top: -15px;
	width: 1px;
	height: 86px;
	background: #004ea2;
}

.mcontact_r ul li p {
	font-size: 12pt;
	color: #004ea2;
}

.mcontact_r ul li h3 {
	font-size: 14pt;
	font-weight: 500;
	color: #333;
}

.mcontact_r ul li h3 a {
	color: #333;
}

/*** 모바일CSS ***/
@media all and (max-width:2100px) {
	.mcontact {
		background-size: 27% auto;
	}
}

@media all and (max-width:1920px) {
	.mcontact {
		background-size: 22% auto;
	}
}

@media all and (max-width:1300px) {
	.mcontact {
		background-size: 18% auto;
	}
}

@media all and (max-width:1023px) {
	.mcontact {
		background: none;
		padding: 0;
	}

	.mcontact_l {
		float: none;
		width: 100%;
		background: #004ea2;
		padding-left: 0;
		padding: 25px 15px;
	}

	.mcontact_l h3 span {
		display: inline;
		padding-left: 10px;
	}

	.mcontact_r {
		float: none;
		width: 100%;
		margin-top: 25px;
		margin-bottom: 30px;
	}

	.mcontact_r ul li {
		width: 33.333333333333333333333%;
		padding: 15px 15px;
		text-align: center;
	}

	.mcontact_r ul li:first-child {
		width: 33.333333333333333333333%;
		padding: 15px 15px;
	}

	.mcontact_r ul li:nth-child(2) {
		padding: 15px 15px;
		border-left: 1px solid #004ea2;
		border-right: 1px solid #004ea2;
	}

	.mcontact_r ul li:nth-child(2):before {
		display: none;
	}

	.mcontact_r ul li:nth-child(2):after {
		display: none;
	}

	.mcontact_r ul li p {
		font-size: 11pt;
	}

	.mcontact_r ul li h3 {
		font-size: 12pt;
	}

}

@media all and (max-width:900px) {
	.mcontact_r {
		margin-top: 15px;
	}

	.mcontact_r ul li {
		float: none;
		width: 100%;
		text-align: left;
	}

	.mcontact_r ul li:first-child {
		width: 100%;
	}

	.mcontact_r ul li:nth-child(2) {
		border-top: 1px solid #004ea2;
		border-bottom: 1px solid #004ea2;
		border-left: 0;
		border-right: 0;
	}

}