#navbar {
  background-color: #4b423d;
  display: flex;
  flex-direction: row;
  z-index: 2;
  -webkit-box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.56);
  -moz-box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.56);
  box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.56);
}

#navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 24px;
  text-decoration: none;
  font-size: 17px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
}

#navbar a:hover {
  color: #fe6c31;
}

#navbar a.active {
  color: #fe6c31;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 62px;
}

#navBarLogo {
  height: 32px;
  width: auto;
  padding-left: 24px;
}

.hamburger {
  align-self: center;
  margin-right: 15px;
}

#hamburger {
  display: none;
}

@media screen and (max-width: 1100px) {
  #hamburger {
    display: block;
  }
  .showResponsive {
    visibility: visible;
    align-self: center;
    margin-left: auto;
    opacity: 1;
    height: auto;
    transition: ease-in 2s;
  }

  .align-end {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .hideResponsive {
    visibility: hidden;
    height: 0;
  }
}
