/* style css */
body, html {
	height: 100%
}

::selection {
   background: #252525;
   color: #fff
}

::-moz-selection {
   background: #252525;
   color: #fff
}


::-webkit-selection {
    background: #252525;
   color: #fff
}


.flex {
	display: -webkit-flex;
	display: flex
}

.flex-v {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center; 
	align-items: center
}

body, html {
	min-width:1220px;
}

body {
	overflow-x:hidden;
	-webkit-font-smoothing: antialiased;
	color:#333
}

.row {
	width: 100%;
	max-width:1200px;
	margin: auto
}

/* 헤더 */
.header {
	min-width:1200px;
	position:fixed;
	z-index: 99;
	top: 0;
	left: 0;
	right: 0;
	height: 90px;
	background-color:#fefefe;
	padding: 15px 0;
	border-bottom:1px solid #d5d5d5
}

.header .logo {
	width: 150px;
	padding-top: 10px;
}

.header .menu {
	/* border:1px solid #d5d5d5 */
}

.header .nav > li {
	width: 100px;
	float:left;
	position:relative;
	padding: 25px 0;
	margin-left: 40px;
	text-align:center;
}

.header .nav > li a {
	transition: all 0.3s
}

.header .nav > li a:hover {
	color:#ddd
}

.header .nav li .submenu {
	display:none;
}

.header .dropmenu {
 	display:none;
 	position:absolute;
 	top: 85px;
 	left: 0;
 	right: 0;
 	width: 100%;
 	padding: 20px 0;
 	background:#fff;
 	box-shadow: 0 0 10px #ddd;
 }
.header .dropmenu .menu {
	float:right;
}

.header .dropmenu .menu > li {
	position:relative;
	width: 100px;
	text-align:center;
	float:left;
	vertical-align:top;
	padding: 5px 0;
	margin-left: 40px
}

.header .dropmenu li a {
	font-size:15px;
	color:#757575
}

.header .dropmenu li a:hover {
	font-weight:bold;
}

.header .dropmenu .menu > li ul li {
	padding: 5px 0
}

.back-top {
	position:relative;
}

.back-top span {
	opacity: 0;
	visibility:hidden;
	z-index: 99;
	cursor:pointer;
	position:absolute;
	bottom: 10px;
	right: -60px;
	transition:all 0.3s;
	font-size:40px;
	background-color:#454545;
	color:#fff;
	width: 50px;
	height: 50px;
	text-align:center;
	line-height:50px;
	border-radius:50%;
}

.back-top span.show {
	opacity: 1;
	visibility:visible;
	right: 10px;
}

.back-top span.fixed {
	position:fixed;
}

/* 푸터 */
.footer {
	background-color:#353535;
	color:#fdfdfd;
	font-size:13px;
	text-align:center;
}

.footer .row {
	padding: 40px 0;
}

.footer .title {
	font-size:18px;
	margin-bottom: 10px
}

.footer .kind p {
	color:#999;
}

.footer .copy {
	background:#444;
	color:#f9f9f9;
	padding: 10px 0;
}

[class*='section-'] {
	padding: 60px 0;
}

@media(min-width:992px) {
	.pc {
		display:block !important
	}

	.mobile {
		display:none !important
	}
}

@media(max-width:991px) {

	.pc {
		display:none !important
	}

	.mobile {
		display:block !important
	}

	

}

@media(max-width:575px) {

	


}