.menu-flex {
  display: flex;
  justify-content: end;
  position: relative;
}

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

.menu-toggle svg {
  width: 22px;
  height: auto;
  fill: #fff;
}

.menu-section {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 90%;
  max-width: 330px;
  height: 100vh;
  display: none;
  background-color: #3E4095;
  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 ul {
  margin: 0;
  padding: 0;
  font-family: "Poppins";
  list-style: none;
  margin: 4em 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 {
  font-size: 1.3rem;
  display: grid;
  margin-left: 10px;
  width: 30px;
  cursor: pointer;
  align-items: center;
  justify-items: center;
}

.search-toggle svg {
  width: 22px;
  height: auto;
  fill: #fff;
}

.menu-search {
  position: absolute;
  top: 4px;
  right: 80px;
  z-index: 1000;
  width: calc(100vw - 120px);
  max-width: 320px;
  display: none;
  transition-duration: 1.5s;
}

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