@charset "UTF-8";
/* NAVIGATION */

#navBar {
	background-color: #333333;
	height: auto;
	min-width: 360px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
	max-width : 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	box-sizing: border-box;
	overflow: hidden;
}

.footerNav {
	background-color: #333333;
	min-width: 360px;
	width: 100%;
	bottom:0;
	position: absolute;
}

nav {
	
}

nav .navContainer {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  text-align: center;
	min-width: 360px;
	white-space : nowrap; /* this does the trick */
}

nav a {
	display: inline-block;
	margin-left: 0;
	margin-right: 0;
	padding: 15px 30px 15px 30px;
	position: relative;
	text-align: center;
	list-style: none;
	cursor: pointer; 
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: calc(20px + (20 - 20)*(100vw - 380px)/(1600 - 380));
	font-weight: 500;
}

nav a:hover {
	background: #41B6E6;
	color: #fff;
}

nav a:focus {
	background: #41B6E6;
	color: #fff;
}
.disabled, .disabled:active, .disabled:focus, .disabled:hover, .disabled:before {
	background: #333333;
	color: #fff;
	opacity:0.25;
	outline: none;
	cursor: none; 
}


nav a::before {
  content: "";
  display: block;
  height: 5px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  transition: all ease-in-out 250ms;
}

nav a:hover::before {
  width: 100%;
}

