.mobbar {
  display: none;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  font-size: 1.3em;
  font-family: roboto;
  line-height: 0px;
  text-align: center;
  margin: 0 auto;
  background: #BF4337;
  z-index: 3;
  transition: all 0.5s;
  border-radius: none;
}
.navbar:hover {
  background: #cf645a;
}
.navbar ul {
  text-decoration: none;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: stretch;
}
.navbar ul .navitem {
  display: inline-block;
  margin: 0 10px;
}
.navbar ul .navitem .navlink {
  text-decoration: none;
  color: black;
  transition: all 0.4s;
}
.navbar ul .navitem .navlink:hover {
  color: white;
  margin: 0 10px;
  padding: 0 5px;
}

.active {
  color: #dec3c1 !important;
}
.active:hover {
  color: white !important;
}/*# sourceMappingURL=nav.css.map */