@charset "UTF-8";

/* CSS Document */
/*기본CSS*/

* {
	margin:0;
	padding:0;
	border:0;
}
a {
	text-decoration:none !important;
	color:#393939 !important;
}
ol,ul {
	list-style:none;
}
body {
	font-size:14px;
	color:#fff;
	overflow-x: hidden;
	font-family: 'GmarketSans' !important;
	width: 100%;
    height: 100%;
}
img {
	vertical-align: middle;
}

.left {
	text-align: left;
}

/*--기본CSS--*/

/*top버튼*/
#fade_btn {
	position:fixed;
	display:none;
	color:#fff !important;
	text-align:center;
	right:2%;
	bottom:50px;
}

#top_btn {
	background: #293c7f;
	position:fixed;
	z-index:999;
	right:2%;
	bottom:50px;
	border-radius:100%;
	border:1px solid #293c7f;
	color:#fff !important;
	width:60px;
	height:60px;
	text-align:center;
	line-height: 60px;
	font-size:14px;
}

#kakao-talk-channel-chat-button {
	display: none;
	position:fixed;
	right:2%;
	bottom:124px;
}
/*//top버튼*/

/*header*/
input[id="menuicon"] {
	display:none;
}
html {
	position:relative;
	overflow-x:hidden;
}
button {
	background:none !important;
}
.menu_btn_wrap>a {
	color:#393939 !important;
}
header {
	width:100%;
	height:104px;
	background:#fff;
	border-bottom:2px solid #eeeeee;
	position:fixed;
	transition:top 0.2s ease-in-out;
	top:0;
	z-index: 998;
}

.main_menu {
	text-align: center;
}

.main_logo {
	width:100%;
}

.nav-up {
    top: -104px;
}

.dropdown_menubar {
	display: none;
}

header:hover .dropdown_menubar {
	display: block;
	background-color: #fff;
}

.sub_menu {
	width: 100%;
	height: auto;
	text-align: center;
}

.sub_menu>div>a>h5 {
	font-size:20px;
	font-weight: bold;
	margin-top:12px
}

.sub_menu>div>a>p {
	font-size:16px;
	margin-top:12px;

}

.area_desc {
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	font-size:20px;
}
.menu_logo {
	margin:60px auto 0;
	text-align:center;
}
.menu_logo>button>img {
	width:100%;
}

.main_menu>a>div {
	font-size:18px;
	color:#393939;
	height: 80px;
	line-height: 104px;
}

.overlay_wrap {
	background:#fff;
}

.overlay_wrap>div {
	margin:0 auto;
	text-align: center;
	padding-top:14px;
}


.overlay_wrap>div>a {
	color:#393939;
}

.overlay_wrap>div>a>h5 {
	font-size:30px;
	color:#393939;
	padding-bottom: 14px;
	padding-top: 14px;
	border-top:1px #eeeeee solid;
	border-bottom:1px #eeeeee solid;
}

.overlay_wrap>div>a>h5:hover {
	color:#fff;
	background:#6fba2c;
	transition:all 0.5s
}

.n_store {
	border-bottom:1px solid #eee;
}
.menubtn {
	display:none;
	width:32px;
	height:28px;
	position:absolute;
	top:50%;
	right:14px;
	transform:translateY(-50%);
	cursor:pointer;
	z-index:999;
}
.menubtn span {
	display:block;
	position:absolute;
	width:80%;
	height:2px;
	background:#a0a0a0;
	transition:all 0.35s;
}
.menubtn span:nth-child(1) {
	top:20%;
	left:50%;
	transform:translateX(-50%);
}
.menubtn span:nth-child(2) {
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}
.menubtn span:nth-child(3) {
	bottom:20%;
	left:50%;
	transform:translateX(-50%);
}
.conta {
	width:100%;
	position:relative;
}
.conta .contents {
	width:1200px;
	margin:0 auto;
	min-height:700px;
	border:1px solid #eee;
	z-index:30;
	transition:0.35s;
}
.conta .sidebar {
	position:fixed;
	top:0;
	right:-300px;
	width:300px;
	height:100%;
	background:#fff;
	border:1px solid #eee;
	z-index:30;
	transition:0.35s;
}
input[id=menuicon]:checked ~ header .menubtn {
	z-index:50;
}
input[id=menuicon]:checked ~ header .menubtn span:nth-child(1) {
	top:50%;
	left:50%;
	transform:translate(-50%,-50%) rotate(135deg);
}
input[id=menuicon]:checked ~ header .menubtn span:nth-child(2) {
	left:50%;
	transform:translate(-50%,-50%);
	opacity:0;
}
input[id=menuicon]:checked ~ header .menubtn span:nth-child(3) {
	bottom:50%;
	left:50%;
	transform:translate(-50%,-50%) rotate(-135deg);
}
input[id="menuicon"]:checked ~ .conta .sidebar {
	right:0;
}




/* 햄버거메뉴스타일 */
.mobile_menu_btn {
	position: absolute;
	transition: .3s ease-in-out;
	width: 36px;
	height: 34px;
	display: none;
	top: 4rem;
	right: 2rem;
	z-index: 999;
}

	.mobile_menu_btn span {
		position: absolute;
		height: 2px;
		width: 100%;
		background-color: #393939;
		top: 0;
		transition: transform .2s ease-in-out, opacity .2s ease-in-out;
	}

		.mobile_menu_btn span:nth-child(1) {
			top: 0px;
		}

		.mobile_menu_btn span:nth-child(2),
		.mobile_menu_btn span:nth-child(3) {
			top: 9px;
		}

		.mobile_menu_btn span:nth-child(4) {
			top: 18px;
		}

	.mobile_menu_btn.active span {
		background-color: #393939;
	}

		.mobile_menu_btn.active span:nth-child(1),
		.mobile_menu_btn.active span:nth-child(4) {
			opacity: 0;
		}

		.mobile_menu_btn.active span:nth-child(2) {
			transform: rotate(45deg);
		}

		.mobile_menu_btn.active span:nth-child(3) {
			transform: rotate(-45deg);
		}

	.overlay {
		position:fixed;
		background:#fff;
		top:0;
		right:0;
		width:60%;
		height:0;
		opacity: 0;
		visibility: hidden;
		display: flex;
		justify-content:center;
		align-items: center;
		transition: 0.3s;
		z-index: 998;
	}

	nav ul li {
		text-align: left;
		margin:1rem 0;
		opacity: 0;
		margin-bottom: 10px;
	}


	nav ul li p {
		display: block;
		font-size:16px;
		font-weight: 500;
		line-height: 20px;
	}

	nav ul li a {
		text-decoration: none;
		color:#393939 !important;
		font-weight: 700;
		font-size:28px;
		opacity:0.75;
		transition:opacity 0.2s ease;
	}

	nav ul li a:hover {
		opacity: 1;
	}

	@keyframes fadeInLeft {
		0% {
			opacity: 0;
			transform: translateX(-25%);
		}

		100% {
			opacity: 1;
			transform: translateX(0);
		}
	}

	.overlay.visible {
		height:100%;
		opacity: 1;
		visibility: visible;
	}

	.overlay.visible nav ul li {
		animation: fadeInLeft 0.3s ease forwards;
	}

	.overlay.visible nav ul li:nth-child(1) {
		animation-delay: 0.23s;
		margin-bottom: 20px;
	}
	.overlay.visible nav ul li:nth-child(2) {
		animation-delay: 0.26s;
	}
	.overlay.visible nav ul li:nth-child(3) {
		animation-delay: 0.29s;
	}
	.overlay.visible nav ul li:nth-child(4) {
		animation-delay: 0.32s;
	}
	.overlay.visible nav ul li:nth-child(5) {
		animation-delay: 0.35s;
	}
	.overlay.visible nav ul li:nth-child(6) {
		animation-delay: 0.38s;
	}

	.overlay.visible nav ul li:nth-child(7) {
		animation-delay: 0.41s;
	}

	@media(max-width:991px) {
		.main_menu {
			display: none;
		}
		.mobile_menu_btn {
			display: block;
		}

		.sub_logo {
			display: none;
		}

		.sub_menu {
			display: none;
		}
	
		.sns_icons_m {
			text-align: center;
		}
	
		.sns_icons_m>div {
			display: inline-block;
			margin-right: 5px;
			margin-left: 5px;
		}
	}
/*header*/

/*메인배너*/
.mainbanner_1 {
	height: 720px;
	margin: 0 auto;
	background: url("../img/main_banner.jpg") no-repeat center center;
	background-size:cover;
}

.mainbanner_2 {
	height: 720px;
	margin: 0 auto;
	background-size: cover;
	background: url("../img/main_banner_2.jpg") no-repeat center center;
	background-size:cover;
}

.banner_ment {
	color:#fff;
	margin-top:240px;
}

.banner_ment>h5 {
	font-size:24px;
	font-weight:500;
}

.banner_ment>p {
	font-size:72px;
	font-weight:700;
	line-height: 84px;
}

.banner_ment>div {
	font-size:24px;
}

.banner_img {
	margin-top:132px;
}

.banner_img>img {
	width:85%;
}

.banner_ment_2 {
	color:#393939;
	margin-top:240px;
}

.banner_ment_2>h5 {
	font-size:24px;
	font-weight:500;
}

.banner_ment_2>p {
	font-size:72px;
	font-weight:500;
	line-height: 84px;
	
}

.banner_ment_2>p>span {
	font-weight: 700;
	color:#293c7f;
}

.banner_img_2 {
	margin-top:124px;
}

.banner_img_2>img {
	width:100%;
}

.purschase_btns {
	width:200px;
	font-size:24px;
	font-weight: 500;
	height:60px;
	color:#293c7f;
	border: 1px solid #293c7f;
	border-radius: 50px;
	line-height: 58px;
	text-align: center;
	display: inline-block;
	margin-right: 10px;
}

.purschase_btns:hover {
	background:#293c7f;
	color:#fff;
	font-weight: 700;
	transition:all 0.5s;
}


.slick-dotted.slick-slider {
	margin:0 !important;
}

.slick-prev {
	left: 20px !important;
    top: 50% !important;
	z-index: 500;
}

.slick-next {
	right: 20px !important;
    top: 50% !important;
	z-index: 500;
}

.slick-dots {
	position: absolute;
    bottom: 25px !important;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li button:before {
	color:#293c7f !important;

}


/*작은 스마트폰*/
@media (min-width:320px) and (max-width:424px) {
	.banner_ment {
		text-align: left;
		color:#fff;
		margin-top:420px;
	}

	.banner_ment>h5 {
		font-size:14px;
		font-weight:500;
	}

		
	.banner_ment>p {
		font-size:28px;
		font-weight:700;
		line-height: 36px;
	}

	.banner_ment>div {
		font-size:14px;
		font-weight:500;
	}

	.banner_ment_2 {
		text-align: center;
		margin-top:224px;
	}
	
	.banner_ment_2>h5 {
		font-size:14px;
		font-weight:500;
	}
	
	.banner_ment_2>p {
		font-size:28px;
		font-weight:700;
		line-height: 36px;
	}
	
	.banner_ment_2>p>span {
		font-weight: 700;
	}
	
	.banner_img_2 {
		margin-top:20px;
		text-align: center;
	}
	
	.banner_img_2>img {
		text-align: center;
		width:100%;
		margin:0 auto;
	}
}

/*작은 스마트폰*/

/*스마트폰 기기*/
@media (min-width:425px) and (max-width:768px) {
	.mainbanner_1 {
		height:720px;
		padding-bottom: 40px;
		background-size:cover;
	}
	.banner_ment {
		text-align: left;
		color:#fff;
		margin-top:460px;
	}
	
	.banner_ment>h5 {
		font-size:16px;
		font-weight:500;
	}
	
	.banner_ment>p {
		font-size:48px;
		font-weight:700;
		line-height: 60px;
	}

		
	.banner_ment>div {
		font-size:16px;
		font-weight:500;
	}
	

	.mainbanner_2 {
		height:720px;
		padding-bottom: 40px;
		background-size:cover;
	}
	.banner_ment_2 {
		text-align: center;
		margin-top:150px;
	}
	
	.banner_ment_2>h5 {
		font-size:18px;
		font-weight:500;
	}
	
	.banner_ment_2>p {
		font-size:48px;
		font-weight:700;
		line-height: 60px;
	}
	
	.banner_ment_2>p>span {
		font-weight: 700;
	}
	
	.banner_img_2 {
		margin-top:45px;
		text-align: center;
	}
	
	.banner_img_2>img {
		text-align: center;
		width:72%;
		margin:0 auto;
	}


	
}
/*테블릿*/
@media (min-width:769px) and (max-width:991px) {
	.mainbanner_2 {
		background-size:cover;
	}

	.banner_ment_2 {
		margin-top:180px;
	}
	
	.banner_ment_2>h5 {
		font-size:20px;
		font-weight:500;
	}
	
	.banner_ment_2>p {
		width:100%;
		font-size:54px;
		font-weight:700;
		line-height: 56px;
	}
	
	.banner_ment_2>p>span {
		font-weight: 700;
	}
	
	.banner_img_2 {
		margin-top:366px;
	}
	
	.banner_img_2>img {
		width:100%;
	}


}

/*//테블릿*/

/*작은PC*/
@media (min-width:992px) and (max-width:1200px) {

	.banner_ment {
		color:#fff;
		margin-top:260px;
	}
	
	.banner_ment>h5 {
		font-size:20px;
		font-weight:500;
	}
	
	.banner_ment>p {
		font-size:60px;
		font-weight:700;
		line-height: 84px;
	}
	
	.banner_ment>div {
		font-size:20px;
	}
	
	
	.banner_img>img {
		width:85%;
	}
	
	.banner_ment_2 {
		color:#393939;
		margin-top:260px;
	}
	
	.banner_ment_2>h5 {
		font-size:20px;
		font-weight:500;
	}
	
	.banner_ment_2>p {
		font-size:60px;
		font-weight:500;
		line-height: 84px;
		
	}
	
	.banner_ment_2>p>span {
		font-weight: 700;
		color:#293c7f;
	}
	
	.banner_img_2 {
		margin-top:248px;
	}
	
	.banner_img_2>img {
		width:100%;
	}
	
}
/*//작은PC*/


/*//메인배너*/

/*메인제품소개*/

.sub_big_title {
	font-size: 42px;
	font-weight: bold;
	text-align: left;
	margin-bottom: 40px;
	margin-top:48px;
	float: left;
}

.sub_big_title>span {
	color:#293c7f;
}

.left_bar {
	width:100px;
	height:2px;
	background-color: #393939;
}

.detail_btn {
	margin-top:106px;
	float: right !important;
	font-size:24px;
	width:172px;
	height:56px;
	background:#fff;
	line-height: 58px;
	color:#393939;
	border: 1px solid #393939;
	border-radius: 100px;
	text-align: center;
}

.detail_btn:hover {
	background:#293c7f;
	color:#fff;
	font-weight: 500;
	transition: all 0.5s;
}

.main_products {
	margin-bottom: 56px;
}

.products {
	width:100%;
}

.products>img {
	width:90%;
}

.products_titles {
	margin-top:68px;
}

.products_titles>span {
	font-size:24px;
	color:#393939;
}

.products_titles>h5 {
	font-size:48px;
	font-weight: bold;
	color:#293c7f;
}

.products_titles>p {
	color:#393939;
	font-size:20px;
	margin-top:20px;
	margin-bottom: 20px;
}

.view_btn {
	width:158px;
	height:52px;
	background:#fff;
	line-height: 54px;
	color:#393939;
	font-size:20px;
	text-align: center;
	border: 1px solid #393939;
	border-radius: 100px;
}

.view_btn:hover {
	background:#293c7f;
	color:#fff;
	font-weight: 500;
	transition: all 0.5s;
}

.products_list_wrap {
	margin-bottom: 56px;
	width:100%;
	height:420px;
	background-color: #004b57;
	padding:40px;
}

.product_lists {
	width:282px !important;
	height:330px;
	border: 1px solid #fff;
	border-radius: 20px;
	padding:10px;
	text-align: center;
	font-size:28px;
	font-weight: 700;
	color:#fff;
	margin-left: 5px;
	margin-right: 5px;
}

.product_lists>p {
	margin-top: 10px;
}

.product_lists:hover {
	background-color: #fff;
	color:#004b57;
	transition:all 0.5s;
}


/*작은 스마트폰*/
@media (min-width:320px) and (max-width:424px) {
	.sub_big_title {
		font-size:30px;
	}
	.detail_btn {
		display: none;
	}
	.products_titles>span {
		font-size:18px;
		color:#393939;
	}

	.products_titles>h5 {
		font-size:30px;
	}

	.products_titles>p {
		font-size:16px;
	}

	.products_list_wrap {
		margin-bottom: 56px;
		width:100%;
		height:auto;
		padding:40px;
	}

	.product_lists {
		width:100% !important;
		height:auto;
		margin-top:12px
	}

	.view_btn {
		width: 142px;
		height: 45px;
		line-height: 45px;
		color: #393939;
		font-size: 18px;
	}
}

/*//작은 스마트폰*/
/*스마트폰*/
@media (min-width:425px) and (max-width:768px) {
	.sub_big_title {
		font-size:36px;
	}

	.detail_btn {
		display: none;
	}

	.products_titles>span {
		font-size:20px;
		color:#393939;
	}

	.products_titles>h5 {
		font-size:36px;
	}

	.products_titles>p {
		font-size:18px;
	}

	.products_list_wrap {
		margin-bottom: 56px;
		width:100%;
		height:auto;
		background-color: #004b57;
		padding:40px;
	}

	.product_lists {
		width:100% !important;
		height:330px;
		margin-top:12px
	}
}
/*//스마트폰*/

/*테블릿*/
@media (min-width:769px) and (max-width:991px) {
	.sub_big_title {
		font-size:36px;
	}

	.products_titles {
		margin-top:24px;
	}

	.products_titles>span {
		font-size:22px;
		color:#393939;
	}

	.products_titles>h5 {
		font-size:36px;
	}

	.products_titles>p {
		font-size:18px;
	}

	.products_list_wrap {
		margin-bottom: 56px;
		width:100%;
		height:auto;
		background-color: #004b57;
		padding:40px;
	}

	.product_lists {
		width:100% !important;
		height:330px;
		margin-top:12px
	}

}
/*//테블릿*/

/*작은PC*/
@media (min-width:992px) and (max-width:1200px) {
	.product_lists {
		width:48% !important;
		height:330px;
		border: 1px solid #fff;
		border-radius: 20px;
		padding:10px;
		text-align: center;
		font-size:28px;
		font-weight: 700;
		color:#fff;
		margin-top:10px;
		margin-left: 5px;
		margin-right: 5px;
	}

	.products_list_wrap {
		margin-bottom: 56px;
		width:100%;
		height:auto;
		background-color: #004b57;
		padding:40px;
	}


}
/*//작은PC*/

/*//메인제품소개*/

/*회사소개*/
.company_wrap {
	margin-bottom: 56px;
}

.workers_bg {
	background:url("../img/contents_banner.jpg")no-repeat center center;
	background-size:cover;
	height: 392px;
	width:100%;
}

.company_explain {
	width:100%;
	background:#004b57;
	height:250px;
}

.sub_big_title_2 {
	font-size: 48px;
	font-weight: bold;
	text-align: left;
	margin-bottom: 20px;
	margin-top:40px;
	color:#fff;
}

.left_bar_2 {
	width:100px;
	height:2px;
	background-color: #fff;
}

.detail_btn2 {
	margin-top:20px;
	font-size:24px;
	width:172px;
	height:56px;
	line-height: 58px;
	color:#fff;
	border: 1px solid #fff;
	border-radius: 100px;
	text-align: center;
}

.detail_btn2:hover {
	background:#fff;
	color:#293c7f;
	font-weight: 500;
	transition: all 0.5s;
}

.company_ment {
	margin-top:40px;
	color:#fff;
	font-size:24px;
}


/*작은 스마트폰*/
@media (min-width:320px) and (max-width:424px) {
	.sub_big_title_2 {
		font-size: 30px;
	}

	.company_ment {
		margin-top:20px;
		font-size:16px;
	}

	.company_explain {
		background:#004b57;
		height:auto;
		padding-bottom: 40px;
	}

	.detail_btn2 {
		width: 142px;
		height: 45px;
		line-height: 45px;
		color: #fff;
		font-size: 18px;
	}
}	


/*//작은 스마트폰*/


/*스마트폰*/
@media (min-width:425px) and (max-width:768px) {
	.company_explain {
		background:#004b57;
		height:auto;
		padding-bottom: 40px;
	}

	.sub_big_title_2 {
		font-size: 36px;
		font-weight: bold;
		text-align: left;
		margin-bottom: 20px;
		margin-top:40px;
		color:#fff;
	}

	.company_ment {
		margin-top:20px;
		font-size:18px;
	}

}
/*//스마트폰*/

/*테블릿*/
@media (min-width:769px) and (max-width:991px) {
	.company_explain {
		height:auto;
		padding-bottom: 40px;
	}

	.sub_big_title_2 {
		font-size: 36px;
		font-weight: 700;
	}

	.company_ment {
		font-size:18px;
	}

}
/*//테블릿*/

/*작은PC*/
@media (min-width:992px) and (max-width:1200px) {
	.company_explain {
		height:auto;
		padding-bottom: 40px;
	}
}
/*//작은PC*/

/*//회사소개*/




/*고객문의사항*/
.sub_contents_title {
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
	margin-top:48px;
}

.left_bar {
	width:100px;
	height:2px;
	background-color: #393939;
}

.sub_title_ment {
	font-size:20px;
	margin-top:20px;
	text-align: center;
}

.consumer_wrap {
	width:100%;
	margin-top:40px;
	margin-bottom: 80px;
}

.consumer_titles {
	width:100%;
	height: 60px;
	background: #293c7f;
	color:#fff;
	font-weight: bold;
}

.consumer_wrap>div {
	border-bottom:1px solid #eee;
}

.consumer_wrap>div:nth-child(1) {
	border-bottom:2px solid #000;
}

.consumer_wrap>div:last-child {
	border-bottom:2px solid #000;
}


.consumer_wrap>div>div {
	display: inline-block;
	font-size:18px;
	vertical-align: middle;
	text-align: left;
	padding: 15px 0;
}

.consumer_wrap .complain {
	width:79%;
}

.consumer_wrap .date {
	width:9%;
}

.line_title {
	font-size:36px;
	font-weight: 700;
	float: left;
}

.chart_position {
	height: 60px;
	border-bottom: 2px solid #000;
}

.caution_view_btn {
	float: right;
	line-height: 50px;
	font-size:20px;
	font-weight: 500;
}


/*//스마트폰*/

@media (min-width:320px) and (max-width:424px) {
	.line_title {
		font-size:24px;
		line-height: 60px;
	}

	.caution_view_btn {
		font-size:16px;
		font-weight: 500;
		line-height: 60px;
	}

	.consumer_wrap .complain {
		width:100%;
		height: auto;
		font-size:14px;
	}
	
	.consumer_wrap .date {
		display: none;
	}
}
/*//작은스마트폰*/

/*스마트폰*/
@media (min-width:425px) and (max-width:768px) {

	.line_title {
		font-size:30px;
	}

	.caution_view_btn {
		font-size:18px;
		font-weight: 500;
	}


	.consumer_wrap .complain {
		height: auto;
		width:100%;
		font-size:16px;
	}
	
	.consumer_wrap .date {
		display: none;
		font-size:16px;
	}

	
}

/*//스마트폰*/

/*테블릿*/
@media (min-width:769px) and (max-width:991px) {

	.line_title {
		font-size:30px;
	}

	.caution_view_btn {
		font-size:18px;
		font-weight: 500;
	}

	.consumer_wrap .complain {
		width:69%;
		font-size:16px;
	}
	
	.consumer_wrap .date {
		width:29%;
		font-size:16px;
	}
}
/*//테블릿*/


/*작은PC*/
@media (min-width:992px) and (max-width:1200px) {
	.consumer_wrap .complain {
		width:75%;
	}
}
/*//작은PC*/
/*//고객문의사항*/

/*협력업체*/

.corperation_wrap {
	margin-bottom: 40px;
	text-align: center;
}
.corperation_title>div {
	font-size:42px;
	font-weight: 700;
}

/*협력사 로고 슬라이더*/
.logo_slide_wrapper {
	display: none;
}
.logo_slide>img {
	text-align: center;
	width:70%;
}


.logo_slide_slider{
	width:100%;
	margin:0px auto;
	position:relative;
  }
  .logo_slide_slider .silder-title{
	text-align:center;
	margin:30px auto;
  }

  .logo_slide_slider .logo_slide_wrapper{
	width:100%;
	height:auto;
	margin:0px auto;
	overflow: hidden;
	padding:10px 0px 10px 0px;
  }
  .logo_slide_slider .logo_slide_wrapper .logo_slide{
	width:100%;
	margin:0px 10px;
	display:inline-block;
	background:white;
	border-radius: 5px;
  }

  .logo_slide_slider .logo_slide_wrapper .logo_slide .slider-image{
	margin: 0 auto;
	width:170px;
	border-top-left-radius:5px;
	border-top-right-radius:5px;
  }

  /*//협력사 로고 슬라이더*/


  .box_btn {
    width:220px;
    height:60px;
    line-height:62px;
    color:#393939;
    font-size:24px;
    border:1px solid #393939;
    text-align:center;
    border-radius:5px;
    display:inline-block;
    margin-right: 5px;
	margin-left: 5px;
}

@media (min-width:320px) and (max-width:424px) {
	.corperation_title>div {
		font-size:24px;
		font-weight: 700;
	}
	.logo_slide_slider .logo_slide_wrapper .logo_slide .slider-image{
		width:90%;
	}
}

@media (min-width:425px) and (max-width:768px) {

	.corperation_title>div {
		font-size:30px;
		font-weight: 700;
	}

	.logo_slide_slider .logo_slide_wrapper .logo_slide .slider-image{
		width:90%;
	}
}


@media (min-width:769px) and (max-width:991px) {

	.corperation_title>div {
		font-size:30px;
		font-weight: 700;
	}

	.logo_slide_slider .logo_slide_wrapper .logo_slide .slider-image{
		width:90%;
	}
}


@media (min-width:992px) and (max-width:1200px) {

	.corperation_title>div {
		font-size:36px;
		font-weight: 700;
	}

	.logo_slide_slider .logo_slide_wrapper .logo_slide .slider-image{
		width:100%;
	}
}


/*//협력업체*/

/*footer*/
.footer {
	background-color: #393939;
	height: auto;
	padding: 20px;
	font-size:14px;
	color:#fff;
}

.footer_logo {
	font-size:18px;
	font-weight: 700;
}

.footer_info {
	margin-top:20px;
}

.private_law>a>h5 {
	margin-top:20px;
	color:#fff;
	font-size:16px;
	font-weight: 700;
}

.sitemap_menu {
	margin-top:20px;
	border-top: 1px solid #a0a0a0;
	
}

.sitemap_menu>div>a {
	color:#fff !important;
}

.sitemap_menu>div>a>h5 {
	font-size:18px;
	font-weight: bold;
	margin-top:12px
}

.sitemap_menu>div>a>p {
	font-size:14px;
	margin-top:12px;

}

/*스마트폰*/
@media (min-width:320px) and (max-width:768px) {
	.sitemap_menu{
		display: none;
	}
}

/*//스마트폰*/

/*테블릿*/
@media (min-width:769px) and (max-width:991px) {
	.sitemap_menu{
		display: none;
	}

}
/*//테블릿*/

/*//footer*/