/*---------------------
   CSS
-----------------------*/

.section-title {
	margin-bottom: 50px;
}

.section-title .ftgreen{color:#2e9e5b; letter-spacing: 0.1em; line-height: 30px; font-size: 14px;}
.section-title span {
	color: #4f4f4f;
	font-size: 15px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	display: block;
	line-height: 20px;
	
}

.section-title h2 {
	font-size: 46px;
	color: #111111;
	line-height: 60px;
	text-transform: uppercase;
	font-weight:700;
	letter-spacing: -0.05em;
	margin-bottom: 15px;
	
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}





/*---------------------
  Header
-----------------------*/

.header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 9;
	padding: 30px 0 0;
}

.header.header-normal {
	position: relative;
	padding: 30px 0 30px;
}

.header__logo a {
	display: inline-block;
}

.header__menu {
	text-align: right;
}

.header__menu ul li {
	list-style: none;
	display: inline-block;
	position: relative;
	margin-right: 40px;
}

.header__menu ul li.active a:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.header__menu ul li:hover a:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.header__menu ul li:hover .dropdown {
	top: 36px;
	opacity: 1;
	visibility: visible;
}

.header__menu ul li:last-child {
	margin-right: 0;
}

.header__menu ul li .dropdown {
	position: absolute;
	left: 0;
	top: 75px;
	width: 140px;
	background: rgba(0, 0, 0, 0.8);
	text-align: left;
	padding: 5px 0;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.header__menu ul li .dropdown li {
	display: block;
	margin-right: 0;
}

.header__menu ul li .dropdown li a {
	font-size: 13px;
	color: #fff;
	font-weight: 400;
	padding: 5px 20px;
	text-transform: capitalize;
}

.header__menu ul li .dropdown li a:hover {

	background:#dfa667;
	opacity: 7;
	-webkit-transition: all, 0.6s;
	-o-transition: all, 0.6s;
	transition: all, 0.6s;
}


.header__menu ul li .dropdown li a:after {
	display: none;
}

.header__menu ul li a {
	font-size: 16px;
	color: #ffffff;
	display: block;
	font-weight: 500;
	padding: 5px 0;
	position: relative;
}

.header__menu ul li a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: #dfa667;
	content: "";
	-webkit-transition: all, 0.4s;
	-o-transition: all, 0.4s;
	transition: all, 0.4s;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.header__widget {
	text-align: right;
}

.header__widget h4 span {


}

.header__widget h4 {
	font-size: 22px;
	color: #fff;
	font-family:  "맑은 고딕", "Malgun Gothic" , "Apple Gothic", "돋움", Dotum, "굴림", Gulim, sans-serif;
	font-weight: 600;
}

.offcanvas-menu-wrapper {
	display: none;
}

.canvas__open {
	display: none;
}

/*---------------------
  Hero
-----------------------*/

.hero {
	position: relative;
}

.hero__items {
	height: 860px;
	padding: 0 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.hero__text {
	max-width: 820px;
	text-align: center;
}

.hero__text h2 {
	color: #ffffff;
	font-size: 50px;
	font-weight: 300;
	line-height: 80px;
	letter-spacing:-0.05em;
	text-transform: uppercase;
	margin-bottom: 45px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}
.hero__text h2 span{font-weight: 900;}

.hero__text .primary-btn {
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 0.6s;
	-o-transition: all, 0.6s;
	transition: all, 0.6s;
}




.hero__slider.owl-carousel .owl-item.active .hero__text h2 {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__text .primary-btn {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-dots {
	display: none;
}

.hero__slider.owl-carousel .owl-nav button {
	font-size: 28px;
	color: #ffffff;
	position: absolute;
	left: 145px;
	top: 50%;
	display: inline-block;
	height: 50px;
	width: 50px;
	margin-top: -25px;
}

.hero__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 145px;
}

.hero__slider.owl-carousel .owl-nav button:before {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 20px;
	width: 20px;
	border-left: 2px solid rgba(255, 255, 255, 0.2);
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
	content: "";
	border-radius: 0 0 0 4px;
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.hero__slider.owl-carousel .owl-nav button:after {
	position: absolute;
	right: 0;
	top: 0;
	height: 20px;
	width: 20px;
	border-right: 2px solid rgba(255, 255, 255, 0.2);
	border-top: 2px solid rgba(255, 255, 255, 0.2);
	content: "";
	border-radius: 0 4px 0 0;
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.hero__slider.owl-carousel .owl-nav button:hover:before {
	height: 100%;
	width: 100%;
	border-radius: 4px;
}

.hero__slider.owl-carousel .owl-nav button:hover:after {
	height: 100%;
	width: 100%;
	border-radius: 4px;
}

.slide-num {
	position: absolute;
	left: 145px;
	bottom: 55px;
	z-index: 9;
}

.slide-num span {
	font-size: 16px;
	color: #ffffff;
	font-weight: 600;
	margin-right: 140px;
}

.slide-num span:last-child {
	margin-right: 0;
}

.slider__progress {
	width: 100px;
	height: 1px;
	background: rgba(255, 255, 255, 0.3);
	position: absolute;
	left: 180px;
	bottom: 67px;
	z-index: 9;
}

.slider__progress span {
	background: #ffffff;
	height: 2px;
	display: block;
	-webkit-transition: all, 0.4s;
	-o-transition: all, 0.4s;
	transition: all, 0.4s;
	position: relative;
	top: -1px;
}



/*---------------------
  companyinfo
-----------------------*/

.companyinfo {
	padding-top: 120px;
	padding-bottom: 90px;
}

.companyinfo.companyinfo-page {
	padding-bottom: 80px;
}

.companyinfo.companyinfo-page .companyinfo__item p {
	margin-bottom: 12px;
}

.companyinfo.companyinfo-page .companyinfo__item ul li {
	color: #111111;
	font-size: 15px;
	line-height: 36px;
	list-style: none;
}

.companyinfo__item {
	margin-bottom: 30px; 
	text-align: center;
}

.companyinfo__item h4 {
	color: #111111;
	text-transform: uppercase;
	margin-top: 35px;
	margin-bottom: 22px;
	font-weight: 500;
	font-size: 20px;

}

.companyinfo__item p {
	margin-bottom: 0;
}




/*---------------------
  productinfo Section
-----------------------*/

.productinfo-slider.owl-carousel .owl-item.active .cs-item .cs-text h4 {
	opacity: 1;
}

.productinfo-slider.owl-carousel .owl-item.active .cs-item .cs-text span {
	opacity: 1;
}

.productinfo-slider.owl-carousel .owl-nav button {
	font-size: 24px;
	color: #ffffff;
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	position: absolute;
	left: 30px;
	top: 152px;
}

.productinfo-slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 30px;
}

.cs-item {
	text-align: center;
	width: 100%;
	background: #f5f5f5;
}

.cs-item .cs-pic {
	height: 360px;
}

.cs-item .cs-text {
	padding: 25px 0 22px;
}

.cs-item .cs-text h4 {
	color: #111111;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 10px;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.cs-item .cs-text span {
	font-size: 17px;
	color: #009603;
	display: block;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}


/*---------------------
 Contact 
-----------------------*/

.contact-section {
	padding-top: 120px;
	padding-bottom: 90px;
}

.contactbg {

    background:#f5f5f5;
}

.contact-title {
    margin-top: 20px;
    margin-bottom: 50px;
}

.contact-title h4 {
    color: #000;
    font-weight: 600;
    font-size:2.286rem;
    margin-bottom: 16px;
}

.contact-section .contact-form {
  width: 100%; 
  }


.cs-map {
	height: 540px;

}

.cs-map iframe {
	width: 100%;
}



.btn-contact {
  color: #fff;
  background-color: #a7986d;
  border-color: #a7986d;
  width:100%;
}

.btn-contact:hover {
  color: #fff;
  background-color: #628d46;
  border-color: #628d46;
}

.btn-contact:focus, .btn-contact.focus {
  color: #fff;
  background-color: #628d46;
  border-color: #628d46;
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}




/*---------------------
  Footer
-----------------------*/

.footer {
	padding: 40px 0 20px 0;
	background:#373737;
}

.copyright {
	padding: 0;
}


.copyright ul {margin-left:15px}
.copyright ul li {
	font-size: 13px;
	line-height: 26px;
	color: #ffffff;
	float:left;
	padding-right:30px;
	
}


.copyright__text {color: #ffffff; font-size: 13px; margin-top: 30px;}


.copyright__logo { 
	text-align: right;
}






/*--------------------------------- Responsive Media Quaries -----------------------------*/


@media only screen and (min-width: 1450px) {
	.header {
		padding: 30px 130px 0;
	}
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {

	.header__menu ul li {
		margin-right: 25px;
	}
	.hero__slider.owl-carousel .owl-nav button {
		left: 15px;
	}
	.hero__slider.owl-carousel .owl-nav button.owl-next {
		right: 15px;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {


	.hero__text .hero__social {
		right: 80px;
	}
	.slide-num {
		left: 70px;
	}
	.slider__progress {
		left: 106px;
	}
	.canvas__open {
		display: block;
		font-size: 22px;
		color: #ffffff;
		height: 35px;
		width: 35px;
		line-height: 35px;
		text-align: center;
		border: 1px solid #ffffff;
		border-radius: 2px;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 34px;
	}
	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.7);
		content: "";
		z-index: 98;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		visibility: hidden;
	}
	.offcanvas-menu-overlay.active {
		visibility: visible;
	}
	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		width: 300px;
		height: 100%;
		background: #111111;
		padding: 50px 20px 30px 30px;
		display: block;
		z-index: 99;
		overflow-y: auto;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		opacity: 0;
	}
	.offcanvas-menu-wrapper.active {
		opacity: 1;
		left: 0;
	}
	.offcanvas__logo {
		margin-bottom: 30px;
	}
	.offcanvas__logo a {
		display: inline-block;
	}
	.slicknav_btn {
		display: none;
	}
	.slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 30px;
	}
	.slicknav_nav ul {
		margin: 0;
	}
	.slicknav_nav li{list-style:none; padding: 5px 0;}
	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 13px 0;
		margin: 0;
		color: #fff;
		font-weight: 600;
		font-size: 18px;
	}
	.slicknav_nav .dropdown {padding:10px 0}
	.slicknav_nav .dropdown li {
	 background:#1f1f1f; list-style:none; padding:3px 20px
	}

	.slicknav_nav .dropdown a{
		font-weight: 600;
		font-size: 16px;
		padding: 5px 0;
	}
	.slicknav_nav .slicknav_arrow {
		color: #ffffff;
	}
	.slicknav_nav .slicknav_row:hover {
		border-radius: 0;
		background: transparent;
		color: #ffffff;
	}
	.slicknav_nav a:hover {
		border-radius: 0;
		background: transparent;
		color: #ffffff;
	}
	.slicknav_nav {
		display: block !important;
	}
	.offcanvas__widget span {
		font-size: 14px;		
		color: #b7b7b7;
		display: block;
		margin-bottom: 10px;
		
	}
	.offcanvas__widget h4 a{
		font-size: 22px;
		color: #dfa667;
		font-weight: 700;
		font-family:  "맑은 고딕", "Malgun Gothic" , "Apple Gothic", "돋움", Dotum, "굴림", Gulim, sans-serif;
	}
	.header__menu {
		display: none;
	}
	.header__widget {
		display: none;
	}
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {




.copyright ul li {

	float:left;
	width:100%;
	
}



	.hero__text h2 {
		font-size: 34px;
		line-height: 45px;
	}
	.hero__items {
		height: 600px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding: 0 40px;
	}

	
	.canvas__open {
		display: block;
		font-size: 22px;
		color: #ffffff;
		height: 35px;
		width: 35px;
		line-height: 35px;
		text-align: center;
		border: 1px solid #ffffff;
		border-radius: 2px;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 34px;
	}
	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.7);
		content: "";
		z-index: 98;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		visibility: hidden;
	}
	.offcanvas-menu-overlay.active {
		visibility: visible;
	}
	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		width: 300px;
		height: 100%;
		background: #111111;
		padding: 50px 20px 30px 30px;
		display: block;
		z-index: 99;
		overflow-y: auto;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		opacity: 0;
	}
	.offcanvas-menu-wrapper.active {
		opacity: 1;
		left: 0;
	}
	.offcanvas__logo {
		margin-bottom: 30px;
	}
	.offcanvas__logo a {
		display: inline-block;
	}




	.slicknav_btn {
		display: none;
	}
	.slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 30px;
	}
	.slicknav_nav ul {
		margin: 0;
	}
	.slicknav_nav li{list-style:none; padding: 5px 0;}
	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 13px 0;
		margin: 0;
		color: #fff;
		font-weight: 600;
		font-size: 18px;
	}
	.slicknav_nav .dropdown {padding:10px 0}
	.slicknav_nav .dropdown li {
	 background:#1f1f1f; list-style:none; padding:3px 20px
	}

	.slicknav_nav .dropdown a{
		font-weight: 600;
		font-size: 16px;
		padding: 5px 0;
	}
	.slicknav_nav .slicknav_arrow {
		color: #ffffff;
	}
	.slicknav_nav .slicknav_row:hover {
		border-radius: 0;
		background: transparent;
		color: #ffffff;
	}
	.slicknav_nav a:hover {
		border-radius: 0;
		background: transparent;
		color: #ffffff;
	}
	.slicknav_nav {
		display: block !important;
	}
	.offcanvas__widget span {
		font-size: 14px;		
		color: #b7b7b7;
		display: block;
		margin-bottom: 10px;
		
	}
	.offcanvas__widget h4 a{
		font-size: 22px;
		color: #dfa667;
		font-weight: 700;
		font-family:  "맑은 고딕", "Malgun Gothic" , "Apple Gothic", "돋움", Dotum, "굴림", Gulim, sans-serif;
	}
	.header__menu {
		display: none;
	}
	.header__widget {
		display: none;
	}

	.hero__slider.owl-carousel .owl-nav button {
		left: 0;
	}
	.hero__slider.owl-carousel .owl-nav button.owl-next {
		right: 0;
	}
	.hero__text h2 {
		font-size: 46px;
		line-height: 58px;
	}
	.hero__text .hero__social {
		right: 0;
		left: 0;
		margin: 0 auto;
		bottom: 100px;
	}
	.slide-num {
		bottom: 25px;
		left: 0;
		width: 100%;
		text-align: center;
	}
	.slider__progress {
		left: 0;
		bottom: 35px;
		right: 0;
		margin: 0 auto;
	}
	.hero__text .more_btn {
		bottom: 62px;
	}


	.footer__top__text {
		margin-bottom: 35px;
	}
	.copyright__text {
		text-align: center;
		margin-bottom: 0px;
	}


	.copyright__logo { 
		text-align: center;
		margin-bottom: 20px;
	}

}

@media only screen and (max-width: 575px) {


}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {

	.hero__text h2 {
		font-size: 28px;
		line-height: 42px;
	}
	.hero__items {
		height: 610px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding: 0 40px;
	}


}

/*---------------------
  sub-img--section
-----------------------*/

.sub-img-section {
	padding-top: 170px;
	padding-bottom: 120px;
}

.sub-img__text h2 {
	font-size: 35px;
	color: #ffffff;
	text-transform: uppercase;
	margin-bottom: 12px;
	font-weight: 700;
}

.sub-img__links a {
	font-size: 14px;
	color: #fff;
	display: inline-block;
	margin-right: 25px;
	position: relative;
}

.sub-img__links a:after {
	position: absolute;
	right: -17px;
	top: 2px;
	content: "";
	font-family: "FontAwesome";
}

.sub-img__links span {
	font-size: 14px;
	color: #dfa667;
	display: inline-block;
}



/*---------------------
  default-page
-----------------------*/


.default-page {
	padding-top: 120px;
	padding-bottom: 90px;
}

.about-pic {
	-webkit-box-shadow: 0px 0px 30px rgba(11, 12, 48, 0.15);
	box-shadow: 0px 0px 30px rgba(11, 12, 48, 0.15);
}

.about-pic img {
	min-width: 100%;
}

.about_page_services {
    font-weight: 300;
}

.about_page_services h3 {
	color: #171822;
	font-weight: 600;
	margin-bottom: 25px;
	letter-spacing:-0.05em;
}

.about_page_services h5 {
	color: #dfa667; 
	font-weight: 400; 
	font-size: 20px; 
	margin-bottom: 25px; 
	line-height: 33px;
}

.about_page_services p {
	margin-bottom: 20px;
}

h3.subtitle {font-size: 25px; color: #000; font-weight: 700; line-height: 33px;  margin-bottom: 40px; }
h5.subtitle_s {color: #0055af;font-weight: 500; line-height: 33px; margin-top: 30px; margin-bottom: 35px; }
h5.title3step {color:#1a1a1a; font-weight: 500; line-height: 33px; margin-bottom: 20px;}

/*---------------------company-----*/
.ftblue {color: #0055af;font-weight: 700;}
.ftgreen {color: #bed52b;font-weight: 700;}

.history {padding-bottom:40px; margin-bottom:40px; border-bottom: 1px solid #e7e7e8;}
.history h3.year {color: #d2a657; font-weight: 600; margin-bottom:20px; line-height: 45px;}
.history .company_ui_01 li {padding-left:120px; display:block; line-height: 35px;}
.history .company_ui_01 li strong{position:absolute; left:15px;}




/*------------------------
  customer tab Section
-------------------------*/

.customer-tabs-section {
	padding-top: 60px;
	padding-bottom: 90px;
}




.customer-tab .nav-tabs {
	border: 0px solid #e7e7e8;
	margin-bottom:40px;

}



.customer-tab .nav-tabs {border-bottom: 1px solid #e7e7e8;}


.customer-tab .nav-tabs .nav-item{padding:0 20px; margin-top:5px}

.customer-tab .nav-tabs  .nav-link {
	padding: 15px 20px;
	border: 0px solid #e7e7e8;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	color: #171822; 
}


.customer-tab .nav-tabs .nav-link.active {
	border-bottom: 2px solid #dfa667;
	color: #dfa667;
}



.tab-content {position: relative; display: inline-block; width:100%; margin-top:30px}
.customer-content {	position: relative; display: inline-block; width:100%}
.customer-content ul {	position: relative; display: inline-block;}
.customer-content li:before{content:" "; padding-right:2px; width:2px; height:2px; background:#666; position:absolute; left:0; top:13px}
.customer-content li{  position:relative; display: block; padding-left:12px; }



.benefit {margin-bottom:100px}
.benefit .info-title { width:100%; font-size:22px; font-weight:700; }
.benefit .table { width:100%; display:flex; flex-wrap:wrap; border-top:3px solid #616161; }
.benefit .table .tr { width:100%; border-bottom:3px solid #dadada; display:flex; }
.benefit .table .tr .th { width:200px; display:flex; align-items:center; word-break:break-all; }
.benefit .table .tr .th span { padding:20px 0; font-size:20px; font-weight:500; }
.benefit .table .tr .td { width:740px; display:flex; align-items:center; }
.benefit .table .tr .td ul { display:flex; align-items:center; flex-wrap:wrap; }
.benefit .table .tr .td ul li { margin-left:30px; padding:20px 0; position:relative; font-size:18px; font-weight:300 } 
.benefit .table .tr .td ul li:before { content:''; width:6px; height:6px; display:block; position: absolute; top:50%; left:-10px; transform:translateY(-50%); border-radius:50%; background:#1d83ca; }






@media only screen and (max-width: 767px) {

.default-page {
	padding-top: 60px;
	padding-bottom: 60px;
}


.sub-img__text h2 {
	font-size: 35px;
}


/*---------------------company-----*/
.com-CI {font-size: 24px; letter-spacing:-0.05em; }


	.customer-tab .customer-content {
		overflow-x: auto;
	}
	.customer-tab .nav-tabs .nav-item {
		width: 50%;
		border-bottom: 1px solid #e7e7e8;
	}



.benefit .info-title { width:100%; font-size:22px; }
.benefit .table { width:100%; margin-top:15px; border-top:2px solid #616161; }
.benefit .table .tr { border-bottom:1px solid #dadada; }
.benefit .table .tr .th { width:120px; }
.benefit .table .tr .th span { margin-left:10px; padding:10px 0; font-size:17px; }
.benefit .table .tr .td { width:240px; }
.benefit .table .tr .td ul { display:block; margin-left:30px; }
.benefit .table .tr .td ul li { display:block; margin-left:10px; padding:5px 0; font-size:15px; text-align:left; } 
.benefit .table .tr .td ul li:before { width:4px; height:4px; left:-8px; }




}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.section-title h2 {
		font-size: 28px;
		line-height: 1;
	}
}

/*보드*/

.defaultboard .allcount{padding-top:30px}
.defaultboard .allcount span{color:#c88d4d; font-weight: 400;}
.defaultboard .default_search{position:relative; margin:20px auto}
.defaultboard .default_search fieldset select{position: absolute;top: 0;left:0; display:inline-block;min-width: 120px;padding: 0 15px;height:46px;line-height:46px;font-size:16px;font-weight:300; border:1px solid #ccc;  border-right:0px solid #ccc;background:#fff;  border-radius: 5px 0px 0px 5px;}
.defaultboard .default_search fieldset input{display:inline-block;min-width: 240px; width:100%;height: 46px;line-height: 46px;font-size: 16px;color:#666;border:1px solid #ccc;padding: 0 55px 0 120px;border-radius: 5px; font-weight:300; }
.defaultboard .default_search fieldset button {position: absolute;top: 0;right:0; width: 46px;height: 46px; background:#dfa667; color:#fff; border:1px solid #dfa667;  border-radius: 0 5px 5px 0;}

.defaultboard .default_table table{width:100%;border-collapse:collapse;border-top:1px solid #333; border-bottom:1px solid #ddd;}
.defaultboard .default_table table caption{display:none}
.defaultboard .default_table table tbody tr:hover { background:#fafafa;}
.defaultboard .default_table table thead th{word-break: keep-all; padding: 16px 10px 16px 10px;line-height: 1.2em;font-size: 15px;font-weight: 400;text-align: center;color: #fff;border-bottom: 1px solid #ddd;position: relative;background: #242d36;}
.defaultboard .default_table table tbody th {vertical-align: middle; word-break: keep-all;}
.defaultboard .default_table table tbody td{vertical-align: middle;padding:13px 10px;font-size:14px;color:#666;text-align:center;border-bottom:1px solid #ddd;}
.defaultboard .default_table table tbody td a{padding: 2px;line-height: 1.2em;color:#666}
.defaultboard .default_table table tbody td.subject{text-align:left;}
.defaultboard .default_table table tbody td.subject a{display:inline-block; font-size:14px; font-weight:normal; color:#666;}
.defaultboard .default_table table tbody td.subject a:hover { color:#c88d4d;}
.defaultboard .default_table table tbody td.subject .new{position:relative;display:inline-block;width:30px;top:-1px;height:15px;margin:0 8px;background:url(../images/ic_new.gif) no-repeat 50% 50%; text-indent:-9999em;vertical-align: middle;}
.defaultboard .default_table table tbody td.subject .secret{position:relative;display:inline-block;width: 35px;height: 35px;background:url(../img/ico_lock.png) no-repeat 50% 50%;text-indent:-9999em;overflow:hidden;vertical-align: middle;}
.defaultboard .default_table table tbody td.subject .reply{display: inline-block;position: relative;left: -2px;padding: 0 0 0 34px;background: url(../img/ico_reply.png) no-repeat 22px 3px;text-indent: -9999em;overflow: hidden;width: 1px;}
.defaultboard .default_table table tbody td.subject .list_reply{color:#aa6801}
.defaultboard .default_table table tbody td .notice{font-size:12px;color: #dfa667;}



.board_pagination {
	position:relative; display:block; padding-top: 30px; text-align:center;
}

.board_pagination a {
	font-size: 15px;
	color: #111111;
	font-weight: 600;
	display: inline-block;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;	
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	margin-right: 12px;
	border-radius: 25px;
}

.board_pagination a i {
	font-size: 15px;
	font-weight: 600;
}

.board_pagination a:last-child {
	margin-right: 0;
}

.board_pagination a:hover,.board_pagination a.active{

	background: rgba(184, 134, 79, 0.3);;
	color:#000;
}



/* view */

.boardview .bod_view h2 {position:relative; padding: 0 25px; border-top:1px solid #333; border-bottom:1px solid #ddd;  font-weight: 400; background: #f5f5f5; text-align: center;}
.boardview .bod_view h2.title {overflow: hidden; display: block;font-size: 17px;line-height: 60px;font-weight: 500; color: #333; text-overflow: ellipsis; white-space: nowrap;}
.boardview .bod_view .contxt {padding:10px 0px; margin:0; border-bottom:1px solid #ddd; font-size: 15px;}
.boardview .bod_view .contxt span{padding: 0 15px}
.boardview .bod_view .contxt .right{text-align: right;}
.boardview .bod_view .contxt a{color:#666;}
.boardview .bod_view .contxt a:hover { color:#c88d4d;}
.boardview .viewcontent {position:relative; display:block; padding:20px; border-bottom:1px solid #ddd; min-height:300px;background:none!important;width:auto !important;}

.boardview .prevnext{padding: 25px 0;}

.boardview .prevnext ul{border-top:1px solid #ccc; border-bottom:1px solid #ccc; font-size:15px; }
.boardview .prevnext li{position:relative;padding:0px 90px 0 110px; height:44px;  border-top:0;}
.boardview .prevnext li strong{position:absolute;top:0;left:0; width:90px; background:#fafafa; height:43px; line-height:43px; font-size:14px;   text-align:center;display:block; color:#555;}
.boardview .prevnext li strong i{padding:0 5px}
.boardview .prevnext li p{color:#999; line-height:44px;}
.boardview .prevnext li a {display:block; color:#666; height:44px; line-height:44px;  white-space:nowrap; text-overflow:ellipsis;overflow:hidden}
.boardview .prevnext li a:hover { color:#c88d4d;}
.boardview .prevnext li span{position:absolute;top:11px;right:18px;display:block;color:#999}



/* write */

.default-write .agreebox{margin-bottom: 40px;}
.default-write .agreebox .privacy{border: 1px solid #ddd;height: 165px;background: #fff;padding: 10px;overflow-y: scroll;}
.default-write .agreebox .agree{display: block;margin-top: 10px;font-size: 15px;letter-spacing: -1px;}

.default-write .write_tbl{width: 100%;border-top: 2px solid #545c73;}
.default-write .write_tbl tr > *{padding: 10px 15px;border-bottom: 1px solid #dddddd;font-size: 14px;line-height: 18px;}
.default-write .write_tbl tbody th{font-weight: normal;background: #f7f7f7;}
.default-write .write_tbl tbody.memo td{padding: 10px 0;}
.default-write .write_tbl tbody.fileWrap th em{font-style: normal;margin-left: 3px;}
.default-write .write_tbl .inp{width: 450px;height: 35px;line-height: 35px;padding: 0 15px;background: #ffffff;border: 1px solid #dddddd;}
.default-write .write_tbl .inp.w100{width: 100%;}
.default-write .write_tbl .inp.w30{width: 30%;}
.default-write .write_tbl select{height: 35px;line-height: 35px;padding: 0 10px;background: #ffffff;border: 1px solid #dddddd;}
.default-write .write_tbl textarea{width: 100%;height: 300px;font-size: 14px;line-height: 18px;padding: 15px;background: #ffffff;border: 1px solid #ddd;}
.default-write .write_tbl em.tbl_sment{display: block;margin: 5px 0;font-size: 13px;color: #999;font-style: normal;letter-spacing: -1px;}
.default-write .write_tbl .fileWrap .addFile{display: inline-block;*display: inline;*zoom: 1;vertical-align: middle;margin-left: 10px;}
.default-write .write_tbl .fileWrap .addFile > a{display: inline-block;*display: inline;*zoom: 1;vertical-align: top;width: 16px;height: 16px;text-indent: -999em;}
.default-write .write_tbl .fileWrap .addFile > a.plus{background: url(/superboard/images/sb_fileinp_plus.jpg);}
.default-write .write_tbl .fileWrap .addFile > a.minus{background: url(/superboard/images/sb_fileinp_min.jpg);}

ul.pagination { 
    display:block;
    margin:0 auto;
    padding:0;
    overflow:hidden;
    text-align:center; 
}
ul.pagination li { 
    display:inline-block;
    margin:0px;
    padding:0;
    letter-spacing:-1px;
    vertical-align:middle; 
}


ul.pagination li a { 
    font-size: 15px;
    color: #111111;
    font-weight: 600;
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center; 
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
    margin-right: 5px;
    border-radius: 25px;
}

ul.pagination li a:hover,
ul.pagination li a:focus { 
    background: rgba(184, 134, 79, 0.3);;
    color:#000;
}

ul.pagination li.pv a,
ul.pagination li.fw a { 
    width:30px;
    height:33px;
    line-height:33px;
    text-indent:-9999px;
    padding:0;
    position:relative;
    box-sizing:border-box;
    background:#fff;
}



ul.pagination li.pv a:after,
ul.pagination li.fw a:after { 
    content:"";
    position:absolute;
    display:block;
    width:10px;
    height:10px;
    position:absolute;
    border-top:1px solid #9e9e9e;
    border-left:1px solid #9e9e9e;
    top:10px;
}

ul.pagination li.pv a:before,
ul.pagination li.pv a:after {
    -webkit-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    -ms-transform:rotate(-45deg);
    transform:rotate(-45deg);
}

ul.pagination li.fw a:before,
ul.pagination li.fw a:after {
    -webkit-transform:rotate(135deg);
    -moz-transform:rotate(135deg);
    -ms-transform:rotate(135deg);
    transform:rotate(135deg);
}

ul.pagination li.pv a:before { left:10px; }
ul.pagination li.pv a:after { left:15px; }
ul.pagination li.fw a:before { right:10px; }
ul.pagination li.fw a:after { right:15px; }


ul.pagination li.active a,
ul.pagination li.active a:hover,
ul.pagination li.active a:focus { 
    background: rgba(184, 134, 79, 0.3);;
    color:#000;
}
