/* NAVBAR */	

	.navbar {
		/*
			display: flex;
			flex-flow: row wrap;
			width: 100%; 
		*/
		width: 100%; 
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
		align-items: flex-start;
		min-height: 60px;
		font-size: .8em;
		background: linear-gradient(90deg, #fcff9e 0%, #339933 100%);
		border: 1px solid rgba(0, 0, 0, 0.2);
		padding-bottom: 1em;
	}

/* LOGO */

	.navbar-logo {
		min-width: 120px;
		position: relative;
		top: 1em;
		left: 1em;
		font-size: 1em;
		text-align: left;
		/*
		border: 1px solid red;
		position: relative;
		top: .8em;
		top: 10px;
		left: 20px;

			text-align: left;

			padding-top: 1em;
			padding-left: 1em;
		margin-top: 0;
		margin-bottom: 0;
		margin-left: 0;

			visibility: hidden;
		*/
	}

/* MENU */

	.navbar-menu {
		min-width: 120px;
		list-style-type: none;
		/*
		border: 1px solid brown;
		display: none;
		*/	
			display: none;
	}

	.nav-links,
	.navbar-logo {
		text-decoration: none;
		/*	color: rgba(255, 255, 255, 0.7); */
		color: rgba(0, 0, 0, 1);
		text-transform: uppercase;
	}
	.nav-links .nav-link-selected a {
		text-decoration: underline:
	}

	.navbar-menu li {
		text-align: center;
		margin: 0.9em auto;
	}

/* HAMBURGER ICON */

	.navbar-toggle {
		/*
			position: absolute;
			top: 10px;
			right: 20px;

			position: relative;
			top: 10px;
			right: 20px;
			border: 1px solid blue;
		*/
		position: relative;
		top: 0.4em;
		right: .9em;
		min-width: 120px;
		cursor: pointer;
		color: rgba(255, 255, 255, 0.8);
		font-size: 1.5em;
		text-align: right;
	}

/*
	insert animated hamburger menu here 
	the hamburger will no longer be an icon
*/



	.navbar-toggle i {
		color: black;
		color: rgba(0, 0, 0, 0.5);
	}

/* JS CLASS TOGGLES */

	.active {
		display: block;
	}
	.inactive {
		display: none;
	}

@media screen and (min-width: 768px) {
		.navbar {
				display: flex;
				justify-content: space-between;
				padding-bottom: 0;
				min-height: 70px;
				align-items: center;
		}

		.navbar-logo {
			/*
			margin-top: 0;
			margin-left: 20px;
			*/
			top: 0;
		}

		.navbar-menu {
				display: flex;
				margin-right: 30px;
				flex-direction: row;
				justify-content: flex-end;
		}

		.navbar-menu li {
				margin: 0;
		}

		.nav-links {
				margin-left: 40px;
		}

		.navbar-toggle {
			display: none;
		}

		.carousel-toggle {
			display: none;
		}

		.navbar-logo:hover,
		.nav-links:hover {
/*
				color: rgba(255, 255, 255, 1);
*/
				color: rgba(0, 128, 0, 1);
				text-decoration: underline;
		}
}