
/*
header {
  width: 100%;
  background: #c1272d;
  height: 50px;
  line-height: 50px;
  position: fixed;
}*/

.navHeader {
	width: 100vw;
	background: white;
	height: 50px;
	line-height: 50px;
	position: relative;
}

/* REMOVE */
.test-height {
  height: 500px;
}

.color-change {
  background-color: #bdc3c7;
}

.color-alt {
  background-color: #95a5a6;
}

.header-top {
    /*line-height: 50px;*/
    height: 50px;
}

/* /REMOVE */

.hamburger {
  background: none;
  position: absolute;
  top: 0;
  right: 10px;
  line-height: 45px;
  padding: 12px 15px 0px 15px;
  color: #ecf0f1;
  border: 0;
  font-size: 1.4em;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  /* z-index: 10000000000000; */
}

.menu {
	z-index: 1000000;
	font-weight: bold;
	font-size: 0.8em;
	width: 100%;
	background: #FFF;
	position: absolute;
	text-align: center;
}

.menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-image: none;
}

.menuheader {
	padding-top: 50px;
}

.menu li {
  display: block;
  /*padding: 15px 0;*/
  color: #000;
  border-bottom: #7f8c8d 1px solid;
  font-size: x-large;
}

.menu li:hover {
  display: block;
  background: #ecf0f1;
  /*padding: 15px 0;*/
  border-bottom: #1d1f20 1px solid;
}

.menu ul li a {
  text-decoration: none;
  margin: 0px;
  color: #fff;
}

.menu ul li a:hover {
  color: #fff;
  text-decoration: none;
}

.menu a {
  text-decoration: none;
  color: white;
}

.menu a:hover {
  text-decoration: none;
  color: white;
}

.sticky {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
    border-top: 0;
}

@media only screen and (max-device-width: 480px) {
	.hamburger {
		width: 100px;
	}

	.header-top {
		height: 100px;
	}

	.menu li {
		padding: 30px 0px 30px 0px;
	}

	.menuheader {
		margin-top: 50px;
	}
}