.burger-menu-button {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 9vh;
  width: 9vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.burger-menu-button i {
  height: 60px;
  width: 60px;
  font-size: 60px;
  position: relative;
  z-index: 1;
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 70vw;
  z-index: 1000;
  background-color: var(--color-primary);
  display: none;
}
.mobile-menu #logo-wrapper {
  position: relative;
  height: 9vh;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: left;
}
.mobile-menu #logo-wrapper #logo {
  position: relative;
  margin-left: 10px;
  height: 60%;
  width: auto;
  filter: brightness(0) invert(1);
}
.mobile-menu ul {
  list-style: none;
  padding-left: 0;
}
.mobile-menu ul li:last-child {
  border-bottom: 1px #a8a29e solid;
}
.mobile-menu ul li {
  border-top: 1px #a8a29e solid;
  height: 60px;
  text-align: left;
}
.mobile-menu ul li:hover {
  background-color: var(--color-secondary);
  transition: background-color 0.3s;
}
.mobile-menu ul li:hover a {
  display: block;
  color: black;
  transition: color 0.3s;
  height: 100%;
  width: 100%;
  position: relative;
}
.mobile-menu ul li a {
  text-decoration: none;
  color: white;
  line-height: 60px;
  font-weight: bold;
  font-size: larger;
  width: 100%;
  height: 100%;
  position: relative;
}

/*# sourceMappingURL=burger-menu.css.map */
