@import url("https://fonts.googleapis.com/css?family=Englebert&display=swap");

.menu-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid #d58500;
}
.menu-header {
  box-sizing: border-box;
}

.menu-logo {
  padding: 0.5rem 0;
}
.menu-logo img {
  display: block;
  height: 65px;
}

.menu-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-nav-container {
  transition: 0.3s;
}

.menu-nav-item {
  list-style: none;
}
.menu-nav-item a {
  color: #00803e;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-family: "Englebert", sans-serif;
  font-weight: 400;
  text-decoration: none;
}
.menu-nav-item a:hover {
  color: #d58500;
  text-decoration: none;
  border-bottom: 2px solid #d58500;
}

.menu-nav-item a.active {
  color: #d58500;
  text-decoration: none;
  border-bottom: 2px solid #d58500;
  font-weight: 700;
}

/* Desktop */
@media (min-width: 971px) {
  .menu-nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  i.menu-nav-mobile {
    display: none;
  }
  i.menu-nav-close {
    display: none;
  }
  .menu-social {
    display: flex;
  }
  .menu-social-item {
    padding: 0.5rem;
    color: #00803e;
    font-size: 1.3rem;
  }
  .menu-social-item:hover {
    color: #d58500;
  }
}

/* Mobile */
@media (max-width: 970px) {
  .menu-nav-container {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(213, 133, 0, 0.9);
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
  }
  .menu-nav-container.active {
    opacity: 1;
    visibility: visible;
  }
  i.menu-nav-close {
    display: block;
    color: #fff;
    font-size: 2rem;
    padding: 0.5rem;
    position: absolute;
    top: 1rem;
    right: 2rem;
  }
  .menu-nav {
    width: 100%;
  }
  .menu-nav-item {
    width: 100%;
    text-align: center;
    margin: 1rem 0;
  }
  .menu-nav-item a {
    font-size: 1.7rem;
    color: #fff;
  }
  .menu-nav-item a:hover {
    color: #fff;
    text-decoration: none;
    border-bottom: none;
    font-weight: 700;
  }
  i.menu-nav-mobile {
    display: block;
    color: #d58500;
    font-size: 1.5rem;
  }
  .menu-social {
    display: none;
  }
  .menu-nav-item a.active {
    color: #fff;
    text-decoration: underline;
    border-bottom: none;
    font-weight: 700;
  }
}
