.header-btn__menu {
  font-family: "Montserrat Bold";
  width: 120px;
  font-size: 15px;
  text-align: center;
  color: #789f1e;
  font-weight: bold;
  padding: 11px 40px;
  border: 1px solid #789f1e;
  border-radius: 50px;
  vertical-align: middle;
}

.header-btn__menu:hover {
  background: #789f1e;
  color: #fff;
  text-decoration: none;
}

.dropdown {
  font-family: "Montserrat Bold";
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  margin-top: 10px;
  background-color: #f9f9f9;
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  opacity: 80%;
}

.dropdown-content a {
  color: #789f1e;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .header-btn__menu {
  color: #fff;
  background-color: #789f1e;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  color: #fff;
  background-color: #789f1e;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  color: #fff;
  display: block;
}
