input[type=checkbox] {
	display: none
}

#site-header {
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	--text-color: #424242
}

.navbar-nav {
	margin: 0;
	padding: 0
}

.navbar-nav li {
	list-style: none
}

.navbar-nav a {
	padding: 0 0
}

#nav-open {
	display: block;
	z-index: 30;
	position: fixed;
	top: 20px;
	right: 20px;
	cursor: pointer;
}

#nav-open span {
	display: block;
	width: 40px;
	height: 4px;
	background-color: darkgoldenrod;
	margin: 0 auto;
	border-radius: 15px;
}

#nav-open span:nth-child(2) {
	margin-top: 8px;
}
#nav-open span:nth-child(3) {
	margin-top: 8px;
}

.nav-hamburger {
	height: 1.9px;
	width: 20px;
	border-radius: 3px;
	display: block;
	content: "";
	cursor: pointer;
	background: var(--text-color);
	margin-top: 6px;
}

#nav-close {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	transition: .3s ease-in-out;
	background: #000;
	z-index: 99;
	opacity: 0
}

#nav-content {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
	width: 90%;
	max-width: 280px;
	height: 100%;
	overflow: auto;
	background: #fff;
	transition: .3s ease-in-out;
	transform: translateX(105%)
}

#nav-content a {
	text-decoration: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 24px;
	font-size: 13px;
	line-height: 48px;
	letter-spacing: .4px;
	color: var(--text-color);
	font-weight: 300
}

#nav-content a::after {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 1px solid;
	border-right: 1px solid;
	border-color: var(--text-color) var(--text-color) transparent transparent;
	transform: rotate(45deg);
	display: inline-block
}

#nav-input:checked~#nav-close {
	display: block;
	opacity: .5
}

#nav-input:checked~#nav-content {
	transform: translateX(0);
	box-shadow: 6px 0 25px rgba(0, 0, 0, .15)
}

@media screen and (max-device-width: 900px) {
	#nav-open span {
		display: block;
		width: 30px;
		height: 3px;
		background-color: darkgoldenrod;
		margin: 0 auto;
		border-radius: 15px;
	}
}