.header{
	width: 100%;
	height: 11rem;
	align-items: center;
	padding: 0 var(--padding);
	background-color: var(--white);
	justify-content: space-between;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}
.header img{
	width: 14rem;
	height: 5rem;
}
.header nav a{
	cursor: pointer;
	position: relative;
	color: var(--black);
	margin-left: 2.4rem;
	font-size: 1.4rem;
}
img.header-menu{
	display: none;
	width: 4.4rem;
	height: 4.4rem;
}
.cup-wrapper{
	display: none;
	z-index: 3;
	position: absolute;
	left: 65%;
	border-top: .5rem solid #FFA800;
	top: 11rem;
	width: 24rem;
	align-items: flex-start;
	flex-direction: column;
	background: #FFFFFF;
	padding: 1.4rem;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
	border-radius: 0px 0px 4px 4px;
}
.cup-wrapper p {
	color: var(--black);
}
.cup-wrapper a{
	display: flex;
	align-items: center;
	margin-bottom: 1.6rem;
	cursor: pointer;
}


.mobile-nav{
	display: none;
	z-index: 2;
	right: 0;
	top: 0;
	position: absolute;
	flex-direction: column;
	background-color: var(--blue);
}
.mobile-nav header{
	height: 11rem;
	align-items: center;
	padding: 0 var(--padding);
	width: 100%;
	justify-content: flex-end;
}
.mobile-nav nav{
	margin-right: 6rem;
	margin-bottom: 6rem;
	flex-direction: column;
	padding: 0 var(--padding);
}
.mobile-nav nav a{
	color: var(--white);
	font-size: 1.8rem;
	margin-bottom: 2.4rem;
}

/* media */
@media (max-width: 467px) {
	
}
@media (max-width: 769px) {
	.header nav{
		display: none;
	}
	img.header-menu{
		display: flex;
	}
}