.navbar {
  width: 100%;
  box-shadow: none;
  background: white;
  position: sticky;
  top: 0px;
  z-index: 99;
  align-items: center;
  transition: 0.3s;
  border-bottom: 1px solid rgba(35, 111, 35, 0.1490196078);
}

html:not([data-scroll="0"]) .navbar {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.logo {
  display: block;
  max-width: 89px;
  height: 74px;
  margin-left: 20px;
  margin-right: 10px;
}
@media (max-width: 750px) {
  .logo {
    margin-right: 20px;
  }
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
@media (max-width: 750px) {
  .navbar-content {
    display: none;
  }
}

.menu-text {
  height: 83px;
  color: black;
  font-weight: bold;
  font-size: 16px;
  font-family: Verdana;
  text-decoration: none;
  text-align: center;
  padding: 0px 8px 32px 8px;
  transition: 0.3s;
}
.menu-text:hover {
  color: #84c182;
}
@media (min-width: 1100px) {
  .menu-text {
    padding: 0px 20px 32px 20px;
  }
}

.navbar-contact-button {
  margin-right: 20px;
}
@media (min-width: 750px) and (max-width: 1100px) {
  .navbar-contact-button {
    display: none;
  }
}

.menu-text {
  height: 83px;
  color: black;
  font-weight: bold;
  font-size: 16px;
  font-family: Verdana;
  text-decoration: none;
  text-align: center;
  padding: 0px 8px 32px 8px;
  transition: 0.3s;
}
.menu-text:hover {
  color: #84c182;
}
@media (min-width: 1100px) {
  .menu-text {
    padding: 0px 20px 32px 20px;
  }
}

.navbar-wrapper {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 100%;
}
@media (max-width: 750px) {
  .navbar-wrapper {
    justify-content: space-between;
  }
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  padding: 18px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1500;
}

.submenu-item {
  list-style-type: none;
}
.submenu-item:hover .submenu-link {
  color: #84c182;
}

.submenu-link {
  display: block;
  color: black;
  padding: 5px;
  text-decoration: none;
  font-family: Verdana;
  font-size: 1.05rem;
}

.hover-detector:hover .submenu {
  display: block;
}

/*# sourceMappingURL=navbar.css.map */