.menu-toggle {
  position: absolute;
  right: 5px;
  display: grid;
  width: 30px;
  cursor: pointer;
  align-items: center;
  justify-items: center;
}

.menu-toggle svg {
  width: 22px;
  height: auto;
  fill: #00bba7;
}

.menu-section {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 90%;
  max-width: 350px;
  height: 100vh;
  display: none;
  background-color: #00bba7ee;
  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 {
  margin: 0;
  padding: 0;
  font-family: 'libre franklin', sans-serif;
  list-style: none;
  margin: 4em auto;
  text-align: center;
}

.hamburger a {
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  text-decoration: none;
  color: #fff;
  line-height: 3rem;
  width: 100%;
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
}

.hamburger a:hover {
  background-color: #000000ff;
  color: #fff;
  text-decoration: none;
  margin: 0 7px;
}