body,
html {
	position: relative;
	width: 100%;
	height: 100%;
}

.overflow {
	overflow: hidden;
}

.video_wrap {
    position: relative;
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video_wrap video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.visual_container {
	overflow: hidden;
	position: relative;
	background: #000;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

.visual_container .slider {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	opacity: 0.65;
}

.visual_container .img {
	width: 100%;
	z-index: 1;
	display: block;
	float: left;
	position: relative;
	height: 100%;
	overflow: hidden;
}

.visual_container .img div {
	width: 100%;
	z-index: 1;
	display: block;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	transform: scale(1) rotate(0.01deg);
	transition: transform 4s linear;
}

.visual_container .img.active div {
	transform: scale(1.15) rotate(0.01deg);
}

.visual_container .slider span {
	display: block;
	position: relative;
	overflow: hidden;
	width: auto;
	height: 100%;
}

.visual_container .arrow {
	display: none;
}

.visual_container .arrow span {
	cursor: pointer;
	position: absolute;
	top: 50%;
	margin-top: -60px;
	width: 90px;
	height: 120px;
	padding-top: 1px;
	padding-left: 11px;
	box-sizing: border-box;
	z-index: 10;
	background: rgba(0, 0, 0, 0.08);
	transition: background .3s ease-out;
}

.visual_container .arrow span:hover {
	background: rgba(0, 0, 0, 0.5);
}

.visual_container .arrow span.prev {
	left: 20px;
}

.visual_container .arrow span.next {
	right: 20px;
}

.visual_container .dot {
	display: none;
	position: absolute;
	width: 200px;
	left: 50%;
	text-align: center;
	z-index: 3;
	margin-left: -100px;
	bottom: 47px;
	font-size: 0px;
}

.visual_container .dot i {
	vertical-align: top;
	cursor: pointer;
	transition: width .3s ease-out;
}

.visual_container .dot i.active {
	cursor: default;
	width: 55px;
	background: #fff;
}

.slogan {
    z-index: 3;
    color: #fff;
    text-align: center;
    position: absolute;
    width: auto;
    box-sizing: border-box;
    bottom: 200px;
    right: 5%;
    text-align: left;
    float: right;
    display: inline-block;
    /* border-bottom: 4px solid; */
}

.slogan .text_box {
    text-align: right;
}

.visual_title {
    font-size: 70px;
    font-weight: 500;
    line-height: 1.2;
    padding-bottom: 15px;
}


.slogan span {
    letter-spacing: 0;
    opacity: 0;
}
.slogan .text01 span {
    font-size: 45px;
}

.slogan .text03 span {
    font-size: 45px;
}


.hexagon {
	display: inline-block;
	position: relative;
	line-height: 12px;
	width: 15px;
	height: 12px;
	background: transparent;
	margin: 0px 7px;
	/* just spacing */
	position: relative;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: scale(0.8, 0.9);
}

.hexagon:before,
.hexagon:after {
	content: '';
	position: absolute;
	top: -3px;
	/* magic number = border width */
	width: 12px;
	height: 12px;
	background: inherit;
	transform-origin: center;
	z-index: -1;
	border: 3px solid #fff;
}

.hexagon:before {
	right: 100%;
	border-right-color: transparent;
	border-top-color: transparent;
	transform: translateX(50%) rotate(45deg) scale(0.6);
}

.hexagon:after {
	left: 100%;
	border-left-color: transparent;
	border-bottom-color: transparent;
	transform: translateX(-50%)rotate(45deg) scale(0.6);
}

.copy {
	z-index: 3;
	color: #fff;
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	box-sizing: border-box;
}

.copy h4 {
	font-size: 32px;
	font-weight: 500;
	letter-spacing: -0.05em;
}

.copy h2 {
	text-transform: uppercase;
	font-size: 88px;
	font-weight: 500;
	line-height: 90px;
	padding-bottom: 15px;
}

.copy p {
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	line-height: 26px;
	width:50%;
	word-break:keep-all;
	margin:0 auto;
	letter-spacing: -0.05em;
}

section {
	width: 100%;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	background: #fff;
}

section.product {
	background-color: #000;
	padding: 100px 0;
	background-image: url(../images/main_bg01.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

section.product::after {
	display: block;
	content: "";
	clear: both;
}
section.product .dot2{
	display: none;
}
section.product .item {
	position: relative;
	width: 33.33%;
	float: left;
	height: 840px;
	padding: 50px;
	padding-top: 500px;
	box-sizing: border-box;
	overflow: hidden;
	background: #000;
}

section.product .item .bg {
	left: 0px;
	top: 0px;
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 0.5;
	transition: all .5s ease-out;
}

section.product .item a {
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
}

section.product .product_item_wrap {
    max-width: 1440px;
    margin: 0 auto;
}
section.product .product_item_wrap:after {
	content: "";
	display: table;
	clear: both;
}

section.product .item:nth-of-type(1) .bg {
	background-image: url('../images/product_img1_new.png');
}

section.product .item:nth-of-type(2) .bg {
	background-image: url('../images/product_img2_new.png');
}

section.product .item:nth-of-type(3) .bg {
	background-image: url('../images/product_img1.jpg');
}

section.product .item:hover .bg {
	opacity: 0.8;
	transform: scale(1.05) rotate(0.01deg);
}

section.product .item {
	cursor: pointer;
}
section.product .item .top {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
	padding: 40px 50px;
	width: 100%;
	box-sizing: border-box;
	transition: height .5s ease-out;
}

section.product .item:nth-of-type(1) .top {
	background: rgba(19,207,128, 0.6);
}

section.product .item:nth-of-type(2) .top {
	background: rgba(7,174,252, 0.65);
}

section.product .item:nth-of-type(3) .top {
	background: rgba(237, 188, 7, 0.5);
}

section.product .item .top p {
	color: #fff;
}

section.product .item .top p {
	font-weight: 300;
	font-size: 32px;
}

section.product .item h4 {
	position: relative;
	z-index: 2;
	font-size: 64px;
	line-height: 70px;
	color: #fff;
	font-weight: 500;
}

section.product .item .detail {
	position: absolute;
	bottom: 120px;
	letter-spacing: 0.05em;
	z-index: 2;
	font-size: 18px;
	color: #fff;
	padding-right: 50px;

}

section .detail::after {
	content: "";
	top: 7px;
	right: 0px;
	display: block;
	position: absolute;
	width: 36px;
	height: 9px;
	z-index: 1;
	background: url('../images/arrow.png') center right no-repeat;
}

section .detail i {
	display: block;
	z-index: 0;
	top: 3px;
	right: -4px;
	position: absolute;
	line-height: 15px;
	width: 17px;
	height: 15px;
	background: transparent;
	/* just spacing */
	border-top: 1px solid rgba(255, 255, 255, 0.8);
	border-bottom: 1px solid rgba(255, 255, 255, 0.8);
	transform: scale(1, 1.23);
}

section .detail i:before,
section .detail i:after {
	content: '';
	position: absolute;
	top: -2px;
	/* magic number = border width */
	width: 17px;
	height: 17px;
	background: inherit;
	transform-origin: center;
	z-index: -1;
	border: 1px solid #fff;
}

section .detail i:before {
	right: 100%;
	border-right-color: transparent;
	border-top-color: transparent;
	transform: translateX(50%) rotate(45deg) scale(0.63);
}

section .detail i:after {
	left: 100%;
	border-left-color: transparent;
	border-bottom-color: transparent;
	transform: translateX(-50%)rotate(45deg) scale(0.63);
}

section .item:nth-of-type(1) .detail i {
	background-color: #13cf80;
}

section .item:nth-of-type(2) .detail i {
	background-color: #20a8c2;
}

section .item:nth-of-type(3) .detail i {
	background-color: #edbc07;
}

section.product .item:hover .detail i {
	background: transparent;
}

section.business {
	overflow: hidden;
	background: #000;
}

section.business::after {
	z-index: 0;
	content: "";
	display: block;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	position: absolute;
	background: url('../images/business_bg1.jpg');
	background-size: cover;
	opacity: 0.3;
}

section.business .detail {
	display: inline-block;
	position: relative;
	margin-top: 100px;
	letter-spacing: 0.05em;
	z-index: 2;
	font-size: 18px;
	color: #fff;
	padding-right: 50px;
		cursor: pointer;
}

section.business .text-wrap {
	color: #fff;
	display: block;
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding-top: 120px;
	padding-bottom: 150px;
}

section.business .text-wrap h4 {
	font-size: 26px;
	padding-bottom: 5px;
	font-weight: 500;
}

section.business .text-wrap h2 {
	padding-top: 100px;
	font-size: 60px;
	font-weight: 500;
	line-height: 62px;
}
section.business .text-wrap .title_kor_comm {
	margin-top: 5px;
	margin-bottom: 25px;
	font-size: 18px;
}
section.business .text-wrap h2 > span,
section.business .text-wrap p > span{
	display: block;
}
section.business .text-wrap p {
	line-height: 28px;
}

section.business .item-wrap {
	position: absolute;
	left: 40%;
	width: 60%;
	height: 500px;
	top: 70px;
	overflow: hidden;
}

section.business .item-wrap .items {
	width: calc(323px * 12)
}

section.business .item-wrap .items:after {
	content: "";
	display: table;
	clear: both;
}

section.business .item {
	height: 450px;
	top: 0px;
	float: left;
	width: 600px;
	background: #fff;
	z-index: 2;
	position: relative;
	margin-right: 20px;
	padding-bottom: 50px;
	-webkit-touch-callout: none; /* iOS Safari */
	 -webkit-user-select: none; /* Safari */
		-khtml-user-select: none; /* Konqueror HTML */
			-moz-user-select: none; /* Firefox */
			 -ms-user-select: none; /* Internet Explorer/Edge */
					 user-select: none; /* Non-prefixed version, currently
																 supported by Chrome and Opera */

}

section.business .item::after {
	content: '';
	position: absolute;
	width: 290px;
	height: 50px;
	background: #fff;
	left: 0px;
	bottom: -50px;
}

section.business .item::before {
	margin-bottom: -50px;
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	border-bottom: 50px solid transparent;
	border-left: 50px solid #fff;
}

section.business .item .img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 412px;
}

section.business .item:nth-of-type(1) .img {
	background: url('../images/sub/company/main_status_hq.png');
	background-size: cover;
}

section.business .item:nth-of-type(2) .img {
	background: url('../images/sub/company/main_status_pt1.png');
	background-size: cover;
}
section.business .item:nth-of-type(3) .img {
	background: url('../images/sub/company/main_status_pt2.png');
	background-size: cover;
}

section.business .item:nth-of-type(4) .img {
	background: url('../images/sub/company/main_status_jc.png');
	background-size: cover;
}
section.business .item:nth-of-type(5) .img {
	background: url('../images/sub/company/main_status_gsrecycle.png');
	background-size: cover;
}
section.business .item:nth-of-type(6) .img {
	background: url('../images/sub/company/main_status_gschem.png');
	background-size: cover;
}

section.business .item:nth-of-type(7) .img {
	background: url('../images/sub/company/partner_img01.png');
	background-size: cover;
}
section.business .item:nth-of-type(7) .img {
	background: url('../images/sub/company/partner_img02.png');
	background-size: cover;
}

section.business .item:nth-of-type(8) .img {
	background: url('../images/business_img1_new_reupload.png');
	background-size: cover;
}

section.business .item:nth-of-type(9) .img {
	background: url('../images/business_img2_new_reupload.png');
	background-size: cover;
}
section.business .item:nth-of-type(10) .img {
	background: url('../images/sub/company/partner_img05_re.jpg');
	background-size: cover;
	background-position: center;
}
section.business .item * {
	text-align: center;
}

section.business .item h4.eng {
	font-weight: 400;
}

section.business .item h4 {
	text-align:center;
	padding-top: 20px;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.03em;
	display: block;
	height: 40px;
	box-sizing: border-box;
	line-height: 22px;
}

section.business .item article {
	padding-top: 10px;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.03em;
	color: #7f7f7f;
}

section.business .item p {
	position: relative;
	z-index: 2;
	padding-top: 15px;
	font-size: 16px;
	color: #EC131C;
}

section.business .scroll_slider {
	position: relative;
	bottom: 60px;
	z-index: 3;
	left: 50px;
}

section.business .scroll_slider .line {
	position: absolute;
	background: rgba(255, 255, 255, 0.5);
	width: 55%;
	left: 40%;
	margin-left: -50px;
	height: 1px;
}

section.business .scroll_slider .slider-wrap {
	width: 100%;
	margin-left: 0%;
}

section.business .scroll_slider .pointer {
	left: 0%;
	width: 48px;
	transform: scale(1, 0.8);
	background: #EC131C;
	cursor: pointer;
	transition: background .3s ease-out;
	top: -10px;
}

section.business .scroll_slider .pointer:hover {
	background: #fff;
}

section.business .scroll_slider .pointer,
section.business .scroll_slider .pointer::after,
section.business .scroll_slider .pointer::before {
	border-color: transparent;
}

section.news .item {
	position: relative;
	box-sizing: border-box;
	overflow: hidden;
	padding: 90px 120px 80px 120px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	transition: background .3s ease-out;
}
section.news .item a{
	display: block;
	margin:0 auto;
	max-width:1440px;
}
section.news .item .img {
	left: 0px;
	top: 0px;
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0;
	transition: all .3s ease-out;
}

section.news .item:hover {
	background: #000;
}

section.news .item:hover .img {
	transform: scale(1.05) rotate(0.01deg);
	opacity: 0.3;
}

section.news .item::after {
	content: "";
	display: block;
	clear: both;
}

section.news .item .day {
	position: relative;
	z-index: 1;
	float: left;
	width: 40%;
}

section.news .item .text {
	color: #000;
	position: relative;
	z-index: 1;
	float: left;
	width: 60%;
	transition: color .3s ease-out;
}

section.news .item .text * {
	word-break: break-word;
}

section.news .item .day .date {
	position: relative;
	z-index: 1;
	font-size: 148px;
	line-height: 130px;
	font-weight: 700;
	display: inline-block;
	color: rgba(0, 0, 0, 0.05);
}

section.news .item .day .month {
	position: relative;
	z-index: 1;
	display: inline-block;
	font-size: 58px;
	line-height: 50px;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.05);
}

section.news .item:hover .day * {
	color: rgba(255, 255, 255, 0.3);
}

section.news .item .text h4 {
	font-size: 24px;
	line-height: 30px;
	padding-bottom: 5px;
}

section.news .item .text p {
	font-size: 16px;
	line-height: 24px;
	padding-top: 20px;
	color: rgba(0, 0, 0, 0.4);
}

section.news .item:hover .text h4,
section.news .item:hover .text .date {
	color: rgba(255, 255, 255, 1);
}

section.news .item:hover .text p {
	color: rgba(255, 255, 255, 0.7);
}

section.contact {
	min-height: 1080px;
}

section.contact {}

/* <contactus> */

.contact_container {
}

.contact_container .contact_wrap {
	position: relative;
}

.contact_nav {
	position: absolute;
	display: block;
	left: 50%;
	bottom: 0;
	margin-left: -120px;
	z-index: 5;
}

ul.contact_nav:after {
	content: "";
	display: table;
	clear: both;
}

.contact_nav .nav_item {
	float: left;
	width: 185px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	position: relative;
	font-size: 16px;
	font-weight: 300;
	background-color: #fff;
	transition: all 0.4s ease-out;
}

.contact_nav .nav_item:last-child:after {
	display: none;
}

.contact_nav .nav_item:hover,
.contact_nav .nav_item.active {
	background-color: #000;
}

li.nav_item.active:after {
	display: none;
}

li.nav_item:after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 9px;
	height: 35px;
	width: 1px;
	background-color: #959595;
}

.contact_nav .nav_item a {
	color: #000;
	display: block;
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-out;
}

.contact_nav .nav_item:hover a,
.contact_nav .nav_item.active a {
	color: #fff;
}

.contact_info_wrap_bg {

background-color: #A81A31;

display: block;

color: #fff;

box-sizing: border-box;

width: calc(50% - 420px);

height: 100%;

left: 0;

z-index: 1;

position: absolute;
}

.contact_info_wrap {
	padding: 115px 40px 40px 80px;
	background-color: #A81A31;
	display: inline-block;
	color: #fff;
	position: relative;
	box-sizing: border-box;
	width: 500px;
	left: 50%;
	margin-left: -800px;
	z-index: 1;
}

.contact_container .map {
	width: 100%;
	height: 100%;
}

.contact_container .map_wrap .root_daum_roughmap .wrap_btn_zoom {
    display: none !important;
}

.contact_container .map_wrap::before {
	display: none;
    content:'';
    position: absolute;
    top: 0;
    height: 100%;
    width: calc(100% - 500px);
    left: 0;
    margin-left: 0;
    z-index: 3;
}

.contact_container .map_wrap .root_daum_roughmap_landing {
    overflow: hidden;
    margin: 0;
    background: transparent;    
    width: calc( 100%  - ((50% - 420px) - 70px))!important;
    height: 100% !important;
    position: absolute;
}

.contact_container .map_wrap .root_daum_roughmap_landing.act {
    position: relative;
}

.contact_container .map_wrap .root_daum_roughmap .wrap_map {    
    height: 100% !important;
}

.contact_container .map_wrap {
	position: absolute;
	top: 0;
	height: 100%;
	width: calc(100% - 500px);
	left: 50%;
	margin-left: -225px;
}

.contact_info_wrap:before {
	content: "";
	position: absolute;
	right: -75px;
	top: 0;
	width: 75px;
	background-color: #A81A31;
	height: calc(100% - 75px);
}

.contact_info_wrap:after {
	content: "";
	display: block;
	position: absolute;
	right: -52px;
	bottom: 19px;
	background-color: #A81A31;
	width: 110px;
	height: 110px;
	transform: rotate(-45deg);
}

.contact_info_wrap .info_title {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0.05em;
	position: relative;
	display: block;
}

span.info_title:before {
	content: "";
	display: block;
	background-image: url("../images/img_contactus_title.png");
	width: 12px;
	height: 12px;
	position: absolute;
	left: -17px;
	top: -11px;
}

span.info_title:before {
	content: "";
}

.contact_info_wrap .info_calli {
	font-size: 64px;
	font-weight: 500;
	display: block;
	margin-top: 40px;
	line-height: 65px;
}

.contact_info_wrap .info_comm a {
	color: #fff;
	font-weight: 500;
}

.contact_info_wrap .info_comm {
	font-size: 16px;
	font-weight: 100;
	line-height: 25px;
	display: block;
	margin-top: 30px;
	margin-bottom: 125px;
}

.contact_info_wrap .info_detail_title {
	font-size: 18px;
	font-weight: 400;
	display: block;
	margin-top: 25px;
	line-height: 1;
}

h4.info_detail_title:nth-of-type(1) {
	margin-top: 0;
}

.contact_info_wrap .info_detail_title .title_div {
	font-weight: 100;
	margin: 0 3px;
}

.contact_info_wrap .info_detail_content {
	font-size: 16px;
	font-weight: 100;
	line-height: 1;
	margin-top: 8px;
	display: block;
	letter-spacing: -0.045em;
}

.contact_info_wrap .content_div {
	display: inline-block;
	width: 2px;
	margin: 0 20px;
	background-color: rgba(255, 255, 255, 0.5);
	height: 13px;
	vertical-align: middle;
}

.contact_info_wrap .info_copyright {
	font-size: 14px;
	font-weight: 100;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.05em;
	display: block;
	margin-top: 55px;
}
.defalut_width {
  width: 1200px;
	margin: 0 auto;
}

/* </contactus> */
@media (max-width: 1540px){
	section.business .text-wrap{
		max-width:100%;
		padding-left:50px;
	}
	section.news .item {
	padding: 90px 50px 80px 50px;
	}

	/* .contact_container .contact_info_wrap_bg {
		display: none;
	} */

	.contact_container .contact_wrap {}
	.contact_container .map_wrap {
        width: calc(100% - 460px - 75px);
        left: 535px;
        margin-left: 0;
    }
    .contact_container .map_wrap .root_daum_roughmap_landing {
        width: 100% !important;
    }
	.contact_info_wrap {
    left: 0;
    margin-left: 0;
    padding-left: 55px;
    width: 460px;
}
section.product{
	padding:0
}
}

@media (max-width: 1280px) {

    .slogan {
        z-index: 3;
        color: #fff;
        text-align: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        box-sizing: border-box;
        right: 0;
    }
		.slogan .text_box {
	    text-align: center;
		}
    .visual_title {
        font-size: 6vw;
				line-height: 1.5;
    }
		.slogan .text01 span {
		    font-size: 5vw;
		}

		.slogan .text02 span {
		    font-size: 5.2vw;
		}

		.slogan .text03 span {
		    font-size: 5vw;
		}

	section.product .item {
		height:700px;
		padding-top:470px;
	}
	section.product .item h4 {
		font-size: 44px;
		line-height: 50px;
		font-weight: 500;
	}
	section.product .item .detail {
		bottom: 80px;
	}
	section.product .item .top p {
		font-size: 29px;
	}
	section.product .item .top {
		width: 100%;
	}

	.contact_container .contact_nav {
    left: auto;
    right: 0;
    margin-left: 0;
    bottom: 0;
    margin-top: 0;
}
	.contact_container .contact_nav .nav_item {
	    float: none;
		width: 140px;
	}
	.contact_container .contact_nav .nav_item:after {
		display: none;
	}
	.defalut_width {
		width: 900px;
	}
}
@media (max-width: 980px) {

	section.product .item {
		height:700px;
		padding-top:320px;
		width:100%;
		clear:both;
	}

	section.product .item .top p {
		font-size: 34px;
	}
	section.product .item h4,
	section.product .item .top p{
		text-align: center;
	}
	section.product .item h4{
		font-size: 80px;
		line-height: 80px;
	}
	section.business .text-wrap h2 > span{
		display: inline-block;
		padding-right:20px;
	}
	section.business .text-wrap p > span{
		display: inline-block;
		padding-left:5px;
	}
	section.business .text-wrap h2 {
    padding-top: 50px;
	}
	section.business .detail{
		display: none;
	}
	section.product .item .detail{
		left:50%;
		display: none;
		bottom:150px;
		margin-left:-95px;
	}

	section.product .item.active {
		opacity: 1;
	}
	section.product .item {
		position: absolute;
		z-index:0;
		opacity: 0;
		transition: all 0.5s ease-out;
	}
	section.product .item:first-child{
		position: relative;
		z-index: 1;
	}
	section.product .item:hover .bg {
		opacity: 0.5;
		transform: scale(1) rotate(0deg);
	}
	section.product .dot2{
		display: block;
		position: absolute;
		z-index: 2;
		bottom:50px;
		width:200px;
		left:50%;
		margin-left: -100px;
		text-align: center;
		font-size: 0px;
	}
	section.product .dot2 i {
	    transition: width .3s ease-out;
	}

	section.product .dot2 i.active {
		width: 55px;
		background: #fff;

	}
	section.business {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	section.business .scroll_slider {
		top: 0;
		bottom: auto;
		left: 0;
		margin-top: 40px;
	}
	section.business .scroll_slider .line {
		left: 5%;
		width: 90%;
		margin-left: 0;
	}
	section.business .text-wrap {
		padding: 0;
		text-align: center;
	}
	section.business .item-wrap {
		position: relative;
		left: 0;
		top: 0;
		margin-top: 40px;
		width: 100%;
	}
	section.news .item{
		padding:30px;
	}
	section.news .item .text,
	section.news .item .day{
		width:100%;
	}
	section.news .item .day{
		padding-bottom: 20px;
	}
	section.news .item .day .date{
		font-size:80px;
		line-height:80px;
	}
	section.news .item .day .month{
		font-size: 38px;
	}

	.contact_container .contact_wrap {
    width: 100%;
    height: 100%;
}
	.contact_container .map_wrap {
    width: 100%;
    position: relative;
    height: calc(50vh);
    left: 0;
    top: 0;
}
	.contact_info_wrap {
    width: 100%;
    height: 50vh;
    padding: 25px;
    overflow: hidden;
    display: block;
}
.contact_info_wrap .info_title {
    font-size: 75%;
}
.contact_info_wrap .info_calli {
    font-size: 100%;
    line-height: 1;
    margin-top: 3%;
}
.contact_info_wrap .info_comm{
    margin-bottom: 4%;
    margin-top: 5%;
    font-size: 90%;
    line-height: 1;
}

.contact_info_wrap .info_copyright {
    margin-top: 3%;
    font-size: 50%;
}

.contact_info_wrap .info_detail_title {
    margin-top: 2%;
}

.contact_info_wrap:before,
.contact_info_wrap:after {
	display: none;
}

.contact_info_wrap .info_detail_content {
    font-size: 70%;
}
}
@media (max-width: 960px) {
  .defalut_width {
		    width: 708px;
		}
	}
	@media (max-width: 768px) {
	  .defalut_width {
			    width: 420px;
		}
@media (max-width: 640px) {
	.copy h2 {
    text-transform: uppercase;
    font-size: 58px;
    line-height: 60px;
    font-weight: 500;
    padding-bottom: 15px;
	}
	.copy {
		height: 268px;
	}
	.copy h4 {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: -0.05em;
    padding-bottom: 10px;
	}
	.copy p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    line-height: 26px;
    width: 80%;
	}
	section.product .item{
		padding:0px;
		padding-top:320px;
	}
	section.product .item .top {
		padding:0px;
		padding-top:40px;
		height: 120px;
	}

	section.product .item .top p {
		padding-top:0px;
		font-size: 22px;
	}
	section.product .item h4{
		font-size: 50px;
		line-height: 50px;
	}
	section.business{
		padding-top:50px;
	}
	section.business .text-wrap h2{
		font-size:40px;
		line-height: 44px;
		padding-bottom:15px;
	}
	section.business .text-wrap h2 > span{
		padding-right:10px;
	}
	section.business .text-wrap p{
		width:80%;
		margin:0 auto;
	}
	section.business .item-wrap{
		margin-top: 60px;
	}
}
@media (max-width: 480px) {
  .defalut_width {
		width: 300px;
	}
	section.business .item {
    max-width: 340px;
    width: 100%;
    margin-right: 10px;
	}

	section.business .item-wrap .items {
    width: calc(323px * 6);
	}
	.contact_nav .nav_item {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
	}
	section.business .item-wrap .items {
    width: calc(100% * 6);
	}
}
