/* 모바일 div 사이즈 */
.content {
	width: 100vw;
	margin-bottom:40px;
	}

.content .centerWrapper {
	width: 100%;
}

.side {
	width: 100%;
	background-color: #fff;
}

.side .sideWrapper {
	width: 100%;
}

.foot {
	width: 100%;
	
}

/* header */
/* 전체 화면 가리는거 */
.blackBox {
	z-index: 1;

	width: 100vw;
	height: 100vh;

	position: absolute;
	left: 0;
	top: 0;

	visibility: hidden;
	background-color: #0007;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

/* 헤더 사이즈 */
header {
	width: 100vw;
	height: 60px;

	background-color: var(--mainGreen);
}

header>.headerWrapper {
	width: 100%;
	height: 100%;

	display: flex;
	align-items: center;
}


/* 타이틀 */
header .headerWrapper a{
	display: flex;
	align-items: center;
}
header .headerWrapper a svg{
	width: 50px;
	margin-bottom:10px
}
header>.headerWrapper a .title {
	margin-left: 0;
	font-size: 24px;
	font-family: 'SBAggroB';
		color: var(--mainGreen);
		padding-left:15px
		
}

/* 빈공간 */
.blank {
	flex-grow: 1;
}

/* 메뉴 아이콘 */
.menuIcon {
	z-index: 3;

	width: 30px;
	height: 30px;
	margin-right: 10px;

	cursor: pointer;
}

.menuIcon>div {
	width: 30px;
	height: 6px;

	background-color: #fff;
	border-radius: 1px;
}

.menuIcon>div:nth-child(2) {
	margin: 6px 0;
}

.closeIcon {
	transform: rotate(-180deg);
}

.closeIcon div:first-child {
	width: 20px;
	transform: translate(-1px, 5px) rotate(-45deg);
}

.closeIcon div:last-child {
	width: 20px;
	transform: translate(-1px, -5px) rotate(45deg);
}

/* 네비게이션 */
header>.headerWrapper>ul {
	z-index: 2;
	width: calc(90vw - 40px);
	height: calc(100vh - 40px);
	position: fixed;
	right: -90vw;
	top: 0;
	padding: 20px;
	visibility: hidden;
	background-color: var(--mainGreen);
}



header>.headerWrapper>ul>li>a {
	width: 100%;
	height: 40px;
	margin: 20px 0;
	margin:0 30px;
	display: flex;
	justify-content: center;	
	font-size: 16px;
	text-align: center;
	line-height: 40px;	
	color:#fff
	
}


header>.headerWrapper>ul>li:first-child{
	margin-top: 80px;
}

header>.headerWrapper>ul>li>a:hover {	
	color:  var(--mainGreen);
	font-weight: bold;
	border-bottom:3px solid  var(--mainGreen);
	display:inline-block;
	
	
}


header>.headerWrapper>ul>li>a.select {	
	color: var(--mainGreen);
	font-weight: bold;
	pointer-events: none;
	position:relative;
	border-bottom:3px solid var(--mainGreen)
}


header .headerWrapper ul li a svg{
	width: 30px;
	margin-right: 5px;
}
header>.headerWrapper>ul>li>a.select svg .cls-1{
	fill: var(--mainGreen);
}

/* pc size */
@media (min-width: 1330px) {
	body {
		height: 100vh;

		cursor: default;
	}

	/** pc 사이즈  */
	.content {
		width: 100vw;
	}

	.content>.centerWrapper {
		height: 100%;
		width: 1330px;
		margin: 0 auto;
	}

	.side {
		width: 100%;
		height: 70px;
		background-color: var(--mainGreen);
	}

	.side>.sideWrapper {
		height: 100%;
		width: 1330px;
		margin: 0 auto;
	}

	.foot {
		height: 160px;
		background: ##F0F0F2;
	}

	/* header */
	.blackBox {
		visibility: hidden;
	}

	header {
		width: 100vw;
		height: 90px;
		padding: 0;
		background-color: var(--whBG);
		box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
		z-index: 100;
	}

	header .headerWrapper {
		width: 1330px;
		height: 90px;

		margin: 0 auto;
	}
	
	header .headerWrapper img {margin-bottom:15px;}
		
	header>.headerWrapper>ul>li:first-child{
		margin-top: 0;
	}
	header .headerWrapper a{
		display: flex;
    align-items: center;
	}
	header .headerWrapper a .title {
		margin: 0;
		
		
	}

	.menuIcon {
		visibility: hidden;
	}

	header .headerWrapper ul {
		width: auto;
		height: auto;

		padding: 0;

		visibility: visible;
		display: block;
		text-align: right;
		position: static;
		background: transparent;
	}

	header .headerWrapper ul li {
		display: inline-block;
	}

	header .headerWrapper ul li a {
		
		height: 65px;
		line-height: 65px;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: center;
		border: none;		
		font-size: 20px;
		color: var(--fontNonSetect);
		letter-spacing: -.05em;
		font-weight: bold;
	}


}

.title {
		font-family: 'SBAggroB';
		color: #fff;
}

@media (max-width:1329px){

	header>.headerWrapper a .title {color:#fff}
	header .cls-1 {fill:#fff}
	
	header>.headerWrapper>ul>li>a:hover {	
	color:  #fff;
	font-weight: bold;
	border-bottom:3px solid  #fff;
}

header>.headerWrapper>ul>li>a.select {color:#fff; border-bottom:3px solid  #fff;}




}