@charset "UTF-8";
@import url('https://fonts.bunny.net/css?family=anek-latin:400,500,600,700');

.menu-toggle {
  display: grid;
  margin-left: 10px;
  width: 30px;
  cursor: pointer;
  align-items: center;
  justify-items: center;
}

.menu-toggle svg {
  width: 20px;
  height: auto;
}

.menu-section {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9998;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  display: none;
  background-color: #000000;
  transition-duration: 1.5s;
}

.menu-section.on {
  display: block;
}

.off {
  display: none;
}

.hamburger {
  overflow: scroll;
  height: calc(100vh - 220px);
  font-family: "anek latin";
}

.hamburger ul {
  padding: 0;
  font-size: 1.1rem;
  line-height: 2.5rem;
  list-style: none;
}

.hamburger ul li {
  padding-left: 10px;
}

.hamburger ul a {
  text-decoration: none;
  color: #ffffff;
}

.hamburger ul a:hover {
  color: #DD6A10 !important;
}

.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: 18px;
  height: auto;
  fill: #335235;
}

.menu-search {
  background-color: #f5d2b7;
  position: absolute;
  top: 210px;
  z-index: 9998;
  width: 94vw;
  left: 3vw;
  display: none;
  transition-duration: 1.5s;
  padding: 5px;
}

.menu-search .form-control {
  border: solid 2px #DD6A10;
  border-right: none;
  background-color: transparent;
  border-radius: 10px 0 0 10px;
  margin-top: 5px;
}

.menu-search .btn {
  border: solid 2px #DD6A10;
  border-left: none;
  background-color: transparent;
  border-radius: 0 10px 10px 0;
  margin-top: 5px;
}

.menu-search.on {
  display: block;
}