/*boxslider css*/
#main_visual .bx-wrapper .bx-controls-direction a {
    margin-top: -44px;
    width: 45px;
    height: 87px;
	z-index: 11;
  }
#main_visual .bx-wrapper {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: none;
    margin-bottom: 0;
}

#main_visual .bx-wrapper .bx-prev { 
    background: url() no-repeat 0 0px;
}
#main_visual .bx-wrapper .bx-next { 
    background: url() no-repeat 0 0px;
}

#main_visual .bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
    position: absolute;
    bottom:50%;
	left: 60px;
    width: 100%;
	text-align: left;
}
#main_visual .bx-wrapper .bx-pager.bx-default-pager a:hover, 
#main_visual .bx-wrapper .bx-pager.bx-default-pager a.active, 
#main_visual .bx-wrapper .bx-pager.bx-default-pager a:focus {  background-color: #fff; }
#main_visual .bx-wrapper .bx-pager.bx-default-pager a {
    background: rgba(255,255,255,0.2);
}
.mvs_txt {
	position: absolute;
	top: 30%;
	left: 60px;
	font-size: 50px;
	font-weight: bold;
	color: #fff;
	line-height: 1.1;
	
}
.sub_txt {
	font-size: 19px;
	letter-spacing: -1px;
	font-weight: 1.1;
}
#main_section_wrap {
	width: 100%;
    position: relative;
    z-index: 1;
}
.main_section {
	display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 100vh;
	margin: 60px;
}
.main_section.about {
	background:  url(../img/main_02.png) 0 0 no-repeat;
	padding: 7% 0;
}
.main_section > .inner {
    width: 100%;
	margin: 0 auto;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}
.main_contents {
    text-align: center;
    margin-bottom: 60px;
}
.main_contents h2 {
	font-size: 48px;
	line-height: 1.2;
    display: inline-block;
	color: #fff;
}
.main_contents .txt {
	font-size: 23px;
    color: #fff;
    font-weight: 300;
    margin: 0 auto;
    margin-top: 30px;
    width: 82%;
    max-width: 1300px;
}
.main_contents .btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    color: #fff;
    background-color: transparent;
    width: 175px;
    height: 50px;
    border: 2px solid #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.35s ease;
}
.main_contents .btn a:hover {
	background: #fff;
	color: #222;
}
/*--- 제품소개 ---*/
.products_wrap {
	margin: 0 60px 60px 60px;
	padding: 3% 0;
}
.products_wrap h2 {
	width: 100%;
	font-size: 48px;
	text-align: center;
	margin-bottom: 30px;
}
ul.products_list {
	display: flex;
	flex-wrap: wrap;
}
ul.products_list > li {
	width: 16.6666%;
}
ul.products_list > li > .inner {
    position: relative;
    display: flex;
    flex-direction: column;
	border: 1px solid #bdbdbd;
	border-left: none;
}
ul.products_list > li:first-child > .inner {
	border-left:1px solid #d7d7d7;
}
ul.products_list > li > .inner .img {
	width: 100%;
    height: 280px;
    background-color: #dedede;
    overflow: hidden;
}
ul.products_list > li > .inner .img > div {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform .85s ease-in-out;
	transform: scale(1);
}
ul.products_list > li > .inner .cont {
	height: 70px;
    padding: 37px;
    text-align: center;
    position: relative;
	transition: all 1s ease;
}
ul.products_list > li > .inner .cont > .txt {
	font-size: 22px;
    font-weight: 600;
	
}
ul.products_list > li > .inner .cont > .btn {
	width: 100px;
	margin:0 auto;
	margin-top: 20px;
	padding: 5px 0;
	color: #000;
}
ul.products_list > li > .inner .cont > .btn p::after {
    content: '';
    position: absolute;
    bottom: 38px;
    right: 105px;
    width: 6px;
    height: 6px;
    border-bottom: 1px solid #222;
    border-right: 1px solid #222;
	transform: rotate(315deg); /* 각도 */
}
ul.products_list > li > .inner:hover .img > div { transform: scale(1.2); }
ul.products_list > li > .inner:hover .cont {
	background: #8FC31F;
}
ul.products_list > li > .inner:hover .cont > .txt {
	color: #fff;
}
ul.products_list > li > .inner:hover .cont > .btn {
	color: #fff;
}
ul.products_list > li > .inner:hover .cont > .btn p::after {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
	transform: rotate(135deg); /* 각도 */
}
.main_section.recruit_wrap {
	background:  url(../img/recruit.jpg) 0 0 no-repeat;
	padding: 7% 0;
	min-height: 80vh;
}
.main_section.recruit_wrap img {
	margin-bottom: 10px;
	display: inline-block;
}

/*미디어 쿼리*/
@media screen and (max-width: 1850px) {
    ul.products_list > li { width: 33.3333%; }
	ul.products_list > li > .inner {
		border-left: 1px solid #bdbdbd
	}
	/* ul.products_list > li > .inner .cont > .btn { display: none; } */
	#main_visual .bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto { left: 0; bottom: 10%; text-align: center; }
}
@media screen and (max-width: 1280px) {
   ul.products_list > li > .inner .cont > .btn p::after { display: none; }
	.main_section { min-height: 40vh;  margin: 40px 20px; }
	.main_section.about {padding: 10% 0;}
	.main_section.recruit_wrap {
		padding: 10% 5% 0;
		min-height: 30vh;
	}
	.main_contents h2, .products_wrap h2 {
	 font-size: 3em;
   }
   .products_wrap h2 {
		margin-bottom: 5%;
	}
   .products_wrap {
		margin: 0 20px 40px 20px;
   }
   .main_contents .txt {
	font-size: 1.8em;
   }
   .main_section.recruit_wrap h2{
		font-size: 2.7em;
   } 
}
@media screen and (max-width: 1024px) {
    ul.products_list > li > .inner .cont > .btn p::after { display: none; }
	ul.products_list > li { width: 50%; }
}
@media screen and (max-width: 640px){
	.mvs_txt {
		left: 5%;
		font-size: 3em;
	}
	.mvs_txt > img {
		width: 80%;
	}
	.bx-wrapper .mobile-height img {
		min-height: 367px;
		height: 100%;
		opacity: 0;
	}
	.main_visual_slide li {
		height: 722px;
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
	}
	.main_visual_slide li.mvs_b01 {
		background-image:  url(../img/main_m_05.png) ;
	}
	.main_visual_slide li.mvs_b02 {
		background-image:  url(../img/main_m_01.png) ;
	}
	.main_visual_slide li.mvs_b03 {
		background-image:  url(../img/main_m_03.png) ;
	}
	.main_visual_slide li.mvs_b04 {
		background-image:  url(../img/main_m_04.png) ;
	}
	ul.products_list > li { width: 100%; }
}


