@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
header{
	/* z-index: 100000; */
}
.navbar{
	font-size: 10px;
	font-family: 'Noto Sans KR', sans-serif;
	overflow: hidden;
}


.menU {
	text-decoration: none;
	color: #eee;
}
 
.navMenu{
	max-width: 120rem;
	width: 90%;
	margin: 0 auto;
}
.menu-toggle{
	position: absolute;
	top: 2.5rem;
	right: 2.5rem;
	color: #278bda;
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 1000;
	display: none;
}


nav{
	padding-top: 2.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: uppercase;
	font-size: 1rem;
}

.brand{
	font-size: 1.5rem;
	font-weight: 300;
	transform: translateX(100rem);
	animation: slideIn .5s forwards;
}



nav ul{
	display: flex;
}

nav ul li{
	list-style: none;
	transform: translateX(-100rem);
	animation: slideIn .5s forwards;
}

nav ul li:nth-child(1){
	animation-delay: .5s;
}

nav ul li:nth-child(2){
	animation-delay: .5s;
}

nav ul li:nth-child(3){
	animation-delay: .5s;
}

nav ul li:nth-child(4){
	animation-delay: .5s;
}

nav ul li a{
	padding: 1 rem;
	margin: 0 3rem;
	position: relative;
	font-weight: bold;
	font-size: 1.05rem;
}

nav ul li a:last-child{
	margin-right: 0;
}



nav ul li a::before{
	top: 0;
	transform-origin: left;
}

nav ul li a::after{
	bottom: 0;
	transform-origin: right;
}
nav ul li a:hover{
	color: #278bda;
}
nav ul li a:active{
	color: #278bda;
}
.overlay{
	position: fixed;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	transition: opacity 650ms;
	transform: scale(0);
	opacity: 0;
  display: none;
}

nav ul li a:hover::before,
nav ul li a:hover::after{
	transform: scaleX(1);
}

@keyframes slideIn {
	from{

	}
	to{
		transform: translateX(0);
	}
}

@media screen and (max-width: 800px){
	/* nav ul li a::before, */
nav ul li a::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #278bda;
	left: 0;
	transform: scaleX(0);
	transition: all .5s;
}

	.menu-toggle{
		display: block;
	}

	nav{
		padding-top: 0;
		display: none;
		flex-direction: column;
		justify-content: space-evenly;
		align-items: center;
		height: 100vh;
		text-align: center;
		background-color: black;
	}

	nav ul{
		flex-direction: column;
	}

	nav ul li{
		margin-top: 5rem;
	}

	nav ul li a{
		margin: 0;
		font-size: 1.1rem;
	}

	.brand{
		font-size: 2rem;
	}
  
  .overlay.menu-open,
  nav.menu-open{
	  display: flex;
	  transform: scale(1);
	  opacity: 1;
  }
  
} 
@media screen and (max-width: 1200px){
	nav{
		
		font-size: 0.8rem;
		
	}
}