.navBar {
	list-style-type: none;
	margin: 0px;
	padding: 0;
	width: 100%;
	background-color: #005DAA;
	display: flex;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

/* style for the headings */
.heading {
	display: inline-block;
	color: white;
	text-align: center;
	padding: 0px 5px 0px 5px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
}

/* style of heading on hover */
.heading:hover {
	color: lightblue;
	text-decoration: none;
}

/* structure of the heading list */
.navList {
	display: inline-block;
	padding: 10px;
}

.rightDropdown {
	display: none;
	position: inherit;
	padding: 5px;
	background-color: #f9f9f9;
	width: 250px;
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

/* shows the content of the heading */
.navList:hover .dropdown-content {
	display: block;
}

.dropdown-content a:hover + .rightDropdown {
	display: block;
}

/* styles for the dropdown container */
.dropdown-content {
	display: none;
	position: absolute;
	padding: 5px;
	background-color: #f9f9f9;
	width: 255px;
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

/* styles for the content links */
.dropdown-content a {
	color: black;
	text-decoration: none;
	padding: 10px;
	display: block;
	text-align: left;
}

/* style for hovering over content links */
.dropdown-content a:hover {
	background-color: #005DAA;
	color: white;
}

.fa-caret-down {
	padding: 0px 5px;
}