.greedy-nav {
  position: relative;
  flex: 0 0 auto;
  width: 78%;
  display: flex;
  align-items: flex-start;
}
.greedy-nav a {
  display: block;
  text-decoration: none;
}
.greedy-nav button{
  position: relative;
  padding: 0 30px 0 15px;
  border: 0;
  order: 2;
  outline: none;
  background-color: transparent;
  color: #497947;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}
.hamburger {
  border: solid #497947;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin-left: 10px;
  margin-top: 5px;
  position: absolute;
  top: 0;
  right: 5px;
}
.greedy-nav ul.visible-links {
  display: inline-table;
  padding-left: 0 !important;
}
.greedy-nav ul.visible-links li{
  display: table-cell;
  padding: 0 15px 10px;
  text-align: center;
  white-space: nowrap;
}
.hidden-links {
  position: absolute;
  right: 0px;
  top: 30px;
  background: #FFF;
  z-index: 700;
  box-shadow: 0 3px 5px rgb(0 0 0 / 20%);
  padding: 0px 0px 5px !important;
}
.hidden-links li {
  display: block;
  border-top: 1px solid #497947;
  text-transform: uppercase;
  font-weight: bold;
  font-family: 'Roboto';
  padding: 10px 15px !important;
  margin-bottom: 0 !important;
  white-space: nowrap;
}
.greedy-nav .hidden {
  visibility: hidden;
}