.topbar {
  background-color: #022940;
  padding: 9px 76px;
  display: flex;
  place-content: flex-end;
}

.social-media-icons {
  height: fit-content;
  display: flex;
  column-gap: 20px;
}

.social-media-icons a {
  height: fit-content;
  width: fit-content;
}

.social-media-icons i {
  height: 13px;
  width: 13px;
  color: #9fc13bfa;
}

.navbar-content {
  background-color: #9fc13b;
  padding: 12px 36px;
  display: flex;
  height: fit-content;
  place-items: center;
  place-content: space-between;
}

ul {
  list-style: none;
  display: flex;
  place-items: center;
  place-content: space-between;
  column-gap: 5px;
  max-width: 390px;
  width: 100%;
  height: 100%;
  margin: 0 16px;
  padding: 0;
}

li {
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  color: #ffffff;
}

#menu-modal-o-nama {
  position: absolute;
  top: 115%;
  width: 180px;
  display: none;
  z-index: 9999;
}
#menu-modal-o-nama ul {
  padding: 0px;
  list-style: none;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-bottom-right-radius: 3%;
  border-bottom-left-radius: 3%;
}
#menu-modal-o-nama li {
  padding: 15px 20px 10px 20px;
  background-color: transparent;
  height: 100%;
  border-radius: 10%;

  /* line-height: 30px; */
}
#menu-modal-o-nama ul a {
  text-decoration: none !important;
}
#menu-modal-o-nama a:hover {
  background-color: #ededed;
}
#menu-modal-o-nama .nav-link {
  color: #333350;
}
#menu-modal-o-nama.show-hide-class {
  display: block;
}

.app-lang {
  display: flex;
  place-content: space-between;
  place-items: center;
  column-gap: 5px;
  max-width: 167px;
  width: 100%;
}

.app-lang button {
  border: none;
}

.btn-app {
  background-color: #025d54;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  color: #d8e02f;
  border-radius: 7px;
  /* padding: 6px 17px 7px 17px; */
  max-height: 24px;
  height: 24px;
  min-height: 24px;

  max-width: 110px;
  width: 110px;
  min-width: 110px;
}

.btn-lang {
  border-radius: 7px;
  background-color: #d8e02f;
  color: black;
}

.header-title {
  font-family: "HelveticaBlack";
  font-size: 53px;
  font-weight: 900;
  line-height: 77.91px;
  letter-spacing: 0.06em;
  text-align: left;
  color: #ffffff;
  margin-left: 67px;
}

.header-buttons {
  font-family: "HelveticaBold";
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  gap: 20px;
  border: none;
}

.nav-logo img {
    max-width: 203px;
    max-height: 50px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 600px) {
    .nav-logo img {
        max-width: 150px;
        max-height: 40px;
    }
}
.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100%; /* Make sure the height doesn't exceed the viewport height */
  height: auto;
  background-color: #9fc13b;
  z-index: 9999; /* Ensures it is on top of everything */
  padding-top: 60px;
  text-align: center;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 10000; /* Higher than other elements */
}

/* Mobile & Tablet */

@media screen and (max-width: 768px) {
  .nav-menu,
  .app-lang {
      display: none;
  }

  .nav-menu.active {
      display: flex;
      flex-direction: column;
  }

  .hamburger {
      display: block;
  }
}

/*padajuci meni*/

.nav-item {
  position: relative;
}

/* Menu titles uppercase */

.nav-item a {
  text-transform: uppercase;
}

.nav-link {
  display: block;
  color: white;
  background-color: #9fc13b;
  padding: 14px 16px;
  text-decoration: none;
  font-size: larger;
}

.nav-link:hover {
  background-color: #9fc13b;
}

.dropdown {
  display: none;
  position: absolute;
  background-color: #9fc13b;
  min-width: fit-content;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.child-list {
  background-color: white;
  min-width: fit-content;
}

.child-list li {
  color: #9fc13b;
  min-width: fit-content;
}

.radius-top {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.radius-bottom {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

/* .dropdown-link {
  color: whitesmoke;
  text-decoration: none;
  display: block;
  padding: 0px;
} */

.child-list:hover {
  background-color: whitesmoke;
}

.dropdown-link:hover {
  background-color: whitesmoke;
}

.nav-item:hover .dropdown {
  display: block;
}

/* Social networks side-navbar */
.hidden-socials-nav {
  display: none;
}
