.navbar-default .navbar-toggle {
  border-color: rgba(0, 0, 0, 0);
}
nav {
  width: 100%;
  position: absolute;
  top: 5rem;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0) !important;
}
nav .container-fluid {
  position: relative;
  width: 100%;
}
nav .container-fluid .navbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
nav .container-fluid .navbar-header .brand {
  width: 50%;
}
nav .container-fluid .navbar-header .brand img {
  width: 100%;
}
nav .container-fluid .navbar-header .navbar-toggle {
  margin-right: 0;
  background: #8d6037;
  transition: all 0.5s;
}
nav .container-fluid .navbar-header .navbar-toggle .icon-bar {
  background-color: #fff;
}
nav .container-fluid .coll {
  width: 40%;
  opacity: 0;
  height: 0;
  padding-left: 0;
  position: absolute;
  right: 6rem;
  text-indent: 6rem;
  background: #8d6037;
  transition: all 0.5s;
  border-radius: 3rem;
}
nav .container-fluid .coll ul {
  width: 100%;
}
nav .container-fluid .coll ul li {
  width: 100%;
  border-bottom: 1px solid #8d6037;
  height: 0;
  display: flex;
  align-items: center;
  padding-left: 6rem;
  transition: all 0.5s;
}
nav .container-fluid .coll ul li a {
  display: inline-block;
  width: 100%;
  color: #fff;
  border-left: 0.9rem solid rgba(0, 0, 0, 0);
  pointer-events: none;
}
nav .container-fluid .coll ul li a:hover {
  background: rgba(0, 0, 0, 0);
}
nav .container-fluid .coll ul li:active {
  background-color: #eccb92;
}
nav .container-fluid .coll ul li:first-of-type {
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
}
nav .container-fluid .coll ul li:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
}
