.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: #ffffff;
}

.menu-section {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9998;
  width: 90%;
  max-width: 320px;
  height: 100vh;
  display: none;
  background-color: #008080ee;
  transition-duration: 1.5s;
}

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

.off {
  display: none;
}

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

.hamburger {
  margin: 0;
  padding: 0;
  font-family: 'work sans';
  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: #ffffff;
  line-height: 3rem;
  width: 100%;
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;

}

.hamburger a:hover {
  background-color: #008080ff;
  color: #ffffff;
  text-decoration: none;
  margin: 0 7px;
}

.search-toggle {
  cursor: pointer;
}

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

.menu-search {
  position: absolute;
  top: 190px;
  left: 0;
  right: 0;
  z-index: 9998;
  width: 100%;
  height: 50px;
  margin: auto;
  padding: 0 10px;
  display: none;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition-duration: 1.5s;
}

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

.menu-search .form-control {
  max-width: 350px;
  border-color: #008080;
}

.menu-search .btn {
  max-width: 350px;
  border-color: #008080;
}