* {
	font-family: 'Exo 2', Arial, sans-serif;
}
body {
	margin: 0;
}
header {
	border-bottom: 1px solid gray;
	width: 100%;
	height: 100px;
	box-sizing: border-box;
	float: left;
	position: fixed;
	z-index: 4;
  transition: background-color .5s;
}
header .logo {
	width: 150px;
	float: left;
	padding: 0 20px;
	box-sizing: border-box;
}
.bgNav a {
	color: white;
	text-decoration: none;
}
.bgNav {
	padding-top: 25px;
	float: left;
	display: none;
	color: white;
}
.bgNav ul {
	list-style: none;
}
.bgNav ul li {
	font-weight: 700;
	float: left;
	padding: 0 10px;
}

.bgNav ul li:hover  {
	color: lightblue;
	cursor: pointer;
}
.smlNavBtn {
	font-size: 25px;
	height: 50px;
	float: right;
	padding: 50px 40px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	color: white;
}
.smlNavBtn:hover {
	cursor: pointer;
	color: lightblue;
}
.smlNav a {
	color: black;
	text-decoration: none;
}
.smlNav {
	z-index: 2;
	position: fixed;
	top: 0;
	right: -100%;
	background-color: white;
	width: 100%;
	height: calc(100% - 70px);
	margin-top: 100px;
  transition: right 400ms;
}
.smlNav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.smlNav ul li {
	font-weight: 700;
	padding: 10px;
	border-bottom: 1px solid black;
}
.smlNav ul li:hover {
	background-color: dimgray;
}
@media only screen and (min-width: 900px) {
  .smlNavHold, .smlNavBtn {
		display: none;
	}
	.bgNav {
		display: block;
	}
}