/* MAIN SHARED CSS FILE FOR NAVBAR & FOOTER */


/* NAVBAR SECTION */
nav button {
  background-color: white;
}

/*hamburger icon: toggler:*/
.navbar-default .navbar-toggler {
 color: white;
 border-color:  white;
/*background-color: black;*/
}
/*hamburger 3 lines color:*/
.navbar-default .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
 /*background-image with hexcode needed to change color of three lines (#FFFFFF is white) */
}

.navbar-nav .nav-link {
  color: white;
}

.navbar-nav .nav-link:hover {
  color: black;
  background-color: white;
  border-radius: 4px;
}

/* .navbar-nav .nav-link:focus {
  color: white;
} */

#navLogo{
  color: white;
  font-weight: bold;
}
.navbar{
  background-color: black;
  list-style-type:none;
  /* float: right; */
}
.navbar-brand img{
  display: inline;
}
/*END NAVIGATION BAR STYLING*/


/*FOOTER SECTION*/
.footer {
  background-color: black;
  padding-bottom: 15px;
  padding-top: 15px;
  /* border-bottom: 3px solid white; */

  /* To stick the footer to bottom of page */
  position: fixed; /* Fixed instead of absolute fixes the scrolling issue. */
  bottom: 0;
  width: 100%;
}
/* #copyright {
  width: 50%;
} */
#copyright p {
  color: #8C8B8A;
  font-weight: 400;
  font-size: 15px;
  margin: 0;
  text-transform: uppercase;
}
#copyright p a {
  text-decoration: none;
  color: white;
}
.scroll-top {
  text-align: right;
}
/*.scroll-top a {
  background-color: #0066FF;
  padding: 25px;
}*/
.scroll-top a i {
  color: white;
  font-size: 50px;
  /*padding-top: 10px;*/
}
