/***************** NavBar CSS ********************/
#NavBarContainer{
	display: flex;
	margin-left: auto;
	margin-right: auto;
	background: rgba(0,0,0,0);
	border-bottom: 3px solid #00c6ff; 
	min-height:60px;
	
	/* Will affect all contents of container with 0.5ms transition speed */
	-webkit-transition: all 0.5s ease;  /* Safari and Chrome */
	-moz-transition: all 0.5s ease;    /* Mozilla Firefox */
	-ms-transition: all 0.5s ease;    /* Edge */
	-o-transition: all 0.5s ease;    /* Opera */
	transition: all 0.5s ease;	    /* Standard */
}

@media (max-width: 767px) {
	#NavBarContainer {
		min-height:40px;
	}
}

#NavBarContainer:hover{
	background: rgba(0,0,0,1);
	transition: all 0.5s ease-in-out; /* text has 0.1ms delay when hovering out */
}

.navbar-brand{
    position: absolute;
    width: 120px;
    transform:translatex(-50%);
    text-align: center;
	left:50%;
}

.navbar-brand >img{
    position: absolute;
    transform:translatex(-50%);
	left:50%;
	margin-top:-25px;
	filter: drop-shadow(6px 6px 6px rgba(0,0,0,0.3));
	width: 100px;
	
	/* Will affect all contents of container with 0.5ms transition speed */
	-webkit-transition: all 0.5s ease;  /* Safari and Chrome */
	-moz-transition: all 0.5s ease;    /* Mozilla Firefox */
	-ms-transition: all 0.5s ease;    /* Edge */
	-o-transition: all 0.5s ease;    /* Opera */
	transition: all 0.5s ease;	    /* Standard */	
}

@media (max-width: 767px) {
	.navbar-brand >img {
		width:45px;
		margin-top:-15px;
	}
}

#LeftNavLinks{
	position:absolute;
	text-align: center;
	right:50%;
	margin-right:30px;
	font-weight:bold;
}

#LeftNavLinks li > a {
	float: left;
	padding-top: 0px;
    padding-left: 20px;
    padding-right: 20px;
	color:white;
}

#LeftNavLinks li > a:hover {
	color:#00c6ff;
}


#RightNavLinks {
	position:absolute;
	text-align: center;
	left:50%;
	float:right;
	font-weight:bold;
}

#RightNavLinks li > a {
	float: right;
	padding-top: 0px;
    padding-left: 20px;
    padding-right: 20px;
	color:white;
}

#RightNavLinks li > a:hover {
	color:#00c6ff;
}


@media (max-width: 767px) {
	
	#LeftNavLinks{
		position:relative;
		text-align: center;
		right:inherit;
		margin-left:20px;
		margin-top:10px;
		float:left;
		font-weight:bold;
	}

	#LeftNavLinks li > a {
		color:white;
	}

	#LeftNavLinks li > a:hover {
		color:#00c6ff;
	}


	#RightNavLinks {
		position:relative;
		text-align: center;
		left:inherit;
		margin-right:20px;
		margin-top:10px;
		float:right;
		font-weight:bold;
	}


	#RightNavLinks li > a {
		color:white;
	}

	#RightNavLinks li > a:hover {
		color:#00c6ff;
	}

}

@media (max-width: 375px) {
	#LeftNavLinks{
		margin:inherit;
	}
	
	#RightNavLinks{
		margin:inherit;	
	}
}


/**************** End Of NavBar CSS ******************/



/************* Collapsible NavBar CSS **************/

#NavBarContainer .navbar-toggle {
	padding: 10px;
	margin: 10px 15px 5px 10px; /* Top Right Bottom Left */
	border-color: transparent; /*changes burger bar outside border*/
	/*changes burger bar background border*/
}

.navbar-collapse{
	padding-left:10px;
	padding-right:10px;
}

#NavBarCollapse{
	border: none;
	box-shadow: none;
}


#NavBarContainer .navbar-toggle .icon-bar {
	background: rgba(255,255,255,0.7);
	/* Collapsible NavBar Burger Bar Colour*/
  
	/* Will affect all contents of container with 0.5ms transition speed */
	-webkit-transition: all 0.5s ease;  /* Safari and Chrome */
	-moz-transition: all 0.5s ease;    /* Mozilla Firefox */
	-ms-transition: all 0.5s ease;    /* Edge */
	-o-transition: all 0.5s ease;    /* Opera */
	transition: all 0.5s ease;	    /* Standard */
}

.navbar-toggler{
	font-size: 0.5rem;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
	background: transparent;
}

/********** End Of Collapsible NavBar CSS ************/