.menu-toggle {
  display: grid;
  margin-left: 10px;
  width: 30px;
  cursor: pointer;
  align-items: center;
  justify-items: center;
}

.menu-toggle svg {
  width: 18px;
  height: auto;
  fill: #999999;
}

.menu-section {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9998;
  width: 90%;
  max-width: 350px;
  height: 100vh;
  display: none;
  background-color: rgba(0, 0, 0, 0.9);
  transition-duration: 1.5s;
}

.menu-section.on {
  display: block;
}

.off {
  display: none;
}

.menu-section .social-link {
  text-decoration: none;
  margin: 0 10px;
  color: #fff;
}

.hamburger {
  overflow: scroll;
  height: calc(100vh - 220px);
}

.hamburger ul {
  margin: 0;
  padding: 0;
  font-family: "arsenal";
  list-style: none;
  margin: 2rem auto;
  text-align: center;
}

.hamburger ul a {
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  text-decoration: none;
  color: white;
  font-size: 1.5em;
  line-height: 3rem;
  width: 100%;
  display: block;
}

.hamburger ul a:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  text-decoration: none;
}

.search-toggle {
  cursor: pointer;
  align-items: center;
  justify-items: center;
}

.menu-search {
  background-color: #fff;
  position: absolute;
  top: 195px;
  z-index: 9998;
  width: 90%;
  max-width: 1200px;
  left: 50%;
  transform: translate(-50%, 0);
  display: none;
  transition-duration: 1.5s;
}

.menu-search .form-control {
  border: solid 2px #393d93;
  border-right: none;
  background-color: #ffffff;
  border-radius: 5px 0 0 5px;
  margin-top: 5px;
}

.menu-search .btn {
  border: solid 2px #393d93;
  border-left: none;
  background-color: #ffffff;
  border-radius: 0 5px 5px 0;
  margin-top: 5px;
}

.menu-search.on {
  display: block;
}