@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
  font-family: 'Montserrat', sans-serif !important;
}


    nav.navbar {
      width: 100%;
      background-color: #000038;
    }

    .topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      flex-wrap: wrap;
      position: relative;
    }

    .topbar-left {
      display: flex;
      align-items: center;
      margin-top: 1vw;
    }

    .topbar-left img {
      height: 50px;
      background-color: transparent;
    }

    .hamburger {
      display: none;
      font-size: 24px;
      color: white;
      background: none;
      border: none;
      cursor: pointer;
      position: absolute;
      right: 20px;
      top: 12px;
      z-index: 1001; /* Make sure it's above all */
      margin-left: auto;
    }

    .topbar-buttons {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .nav-btn {
      border: none;
      padding: 8px 16px;
      font-weight: 600;
      cursor: pointer;
      border-radius: 0;
      font-size: 14px;
    }

    .btn-orange { background-color: #ff6600; color: #fff; }
    .btn-lightblue { background-color: #4da6ff; color: #fff; }
    .btn-blue { background-color: #0077cc; color: #fff; }

    .nav-lang-select {
      background-color: #000038;
      color: white;
      border: none;
      font-weight: 600;
      padding: 8px 12px;
    }

    .main-menu {
      list-style: none;
      display: flex;
      justify-content: center;
      background-color: #000038;
      padding: 10px 20px;
      gap: 20px;
      flex-wrap: wrap;
      font-size: 14px;
      margin-top: -1vw;
    }
    .main-menu > li > a {
      cursor: pointer;
      padding: 10px;
      display: inline-block;
    }

    .main-menu > li {
      position: relative;
    }

    .main-menu a {
      color: white;
      text-decoration: none;
      padding: 8px 5px;
      font-size: small;
      font-weight: 500;
    }

    .main-menu a i {
      margin-left: 4px;
    }

    .sub-dropdown {
      display: none;
      position: absolute;
      background-color: #000038;
      top: 100%;
      left: 0;
      min-width: 220px;
      z-index: 1000;
    }

    .sub-dropdown li {
      list-style: none;
    }

    .sub-dropdown a {
      display: block;
      padding: 10px 16px;
      color: white;
    }

    .sub-dropdown li {
      position: relative;
    }
    .sub-dropdown .sub-dropdown {
      padding-left: 20px;
      background-color: #000038;
    }

    .sub-sub-dropdown {
      display: none;
      position: absolute;
      top: 0;
      left: 100%;
      background-color: #000038;
      min-width: 220px;
      z-index: 1000;
    }

    .sub-dropdown li:hover > .sub-sub-dropdown {
      display: block;
    }
 /* #langSelect {
  background-color: #000038;
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}*/
 #google_translate_element {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: white;
  }

  .goog-te-gadget {
    color: #000038 !important;
    background-color: #000038;
  }

  .goog-logo-link, .goog-te-gadget span {
    display: none !important;
  }

  .goog-te-combo {
    background-color: #000038;
    color: white;
    border: none;
    padding: 6px 10px;
    font-weight: bold;
    border-radius: 2px;
  }

    @media (max-width: 768px) {
      .topbar {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        position: relative;
      }

      .topbar-left {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .topbar-left img {
        height: 40px;
        margin-left: 10px;
      }
      .hamburger {
        display: block;
      }
      .hamburger {
        display: block;
        font-size: 24px;
        color: white;
        background: none;
        border: none;
        cursor: pointer;
        margin-right: 10px;
      }

      .topbar-buttons {
        display: none;
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
        width: auto;
        gap: 10px;
      }

      .navbar.active .topbar-buttons {
        display: flex;
      }

      .main-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
      }

      .navbar.active .main-menu {
        display: flex;
      }

      .main-menu > li {
        width: 100%;
        text-align: center;
        font-size: 13px;
      }
      
      .sub-dropdown {
        display: none;
        position: relative;
        background-color: #000038;
        margin-top: 5px;
      }

      .sub-dropdown a {
        padding: 8px 10px;
        font-size: 13px;
      }

      .show-submenu .sub-dropdown {
        display: block;
      }
      .nav-btn {
          min-width: 250px;
        }
        .main-menu a {
          font-size: smaller;
        }
    }
    /* Enable hover dropdowns on desktop */
    @media (min-width: 769px) {
      .main-menu > li {
        position: relative;
      }

      .main-menu > li:hover > .sub-dropdown {
        display: block;
      }
    }
    @media (max-width: 768px) {
      .sub-dropdown {
        display: none;
        position: relative;
        background-color: #000038;
      }

      .sub-dropdown.active {
        display: block;
      }

      .sub-sub-dropdown {
        display: none;
        position: relative;
        left: 0;
        top: 0;
        background-color: #000038;
        padding-left: 20px;
      }

      .show-sub-submenu > .sub-sub-dropdown {
        display: block;
      }

      .sub-dropdown li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
    }
