/*
.menu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: inherit;
  margin: 0px;
  padding: 0px 15px;
  justify-content: center;
}
.menu li {
  display: block;
  height: inherit;
  cursor: pointer;
  transition: 0.1s;
  text-align: center;
  flex-grow: 0.2;
  height: max-content;
  min-width: max-content;
}
.menu li a {
  display: inline-block;
  padding: 0px 3.2%;
  box-sizing: border-box;
  color: inherit;
  font-size: 17px;
  font-family: 'robotomedium', sans-serif !important;
}
@media only screen and (min-width: 1201px) and (max-width: 1700px) {
  .menu li a {
    font-size: 1vw;
  }
}
.menu li ul.sub-menu {
  display: none;
  background: #f5f5f5;
  margin-top: -1px;
  color: white;
  border-top: 0;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.6);
  position: absolute;
  padding-left: 0px;
  padding-right: 0px;
}
.menu li ul.sub-menu li {
  min-width: 200px;
}
@media only screen and (max-width: 1025px) {
  .menu li ul.sub-menu {
    position: static !important;
    display: grid;
    background-color: transparent;
    box-shadow: none;
    margin: auto;
  }
}
.menu li.current_page_item > li {
  background: #f5f5f5;
  color: white;
}
.menu li.current-menu-item > li {
  background: #e8e8e8;
  color: white;
}
.menu li:hover ul.sub-menu {
  display: block;
}
#mapframe {
  height: 70vh;
}
@media only screen and (max-width: 1025px) {
  #mapframe {
    height: 65vh;
  }
}
*/