.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}

.container {
  /*max-width: 1200px;*/

  margin: 0 auto;
  padding: 0 0 1rem 0;
}

.top-bar {
  /*display: flex;*/
  display: block;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.logo {
  position: absolute;
  z-index: 999;
  padding: 0;
  width:25rem;
}
.logo a{
 text-decoration: none;
}

.logo img {
  width: 4rem;
  height: auto;
  margin-right: 1rem;
  float:left;
}

  .logo-text {
  font-size: 1rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  color: #000;
  line-height: 1.1rem;
  padding-top:1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle .hamburger,
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
  content: '';
  display: block;
  background: #000;
  height: 3px;
  width: 25px;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  /*gap: 1rem;*/
}

.nav .top-menu {
  padding-top: 1rem;
  margin-top: 1rem;
  /* border-bottom: 1px solid #ccc; */
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  float: right;
}

.nav .top-menu li {
  border-right: 1px solid #000;
  padding: 0 0.5rem;

}

.nav .top-menu li:last-child {
  border-right: none;
}

.nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 0.70rem;
  transition: color 0.3s;
}

.nav ul li a:hover {
  color: #555;
}

.nav .bottom-menu {
  background-color: #555;
  /*padding: 0.5rem 0;*/
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.nav .bottom-menu li {
  padding: 0.5rem;
  border-left: 1px solid #eee;
}

.nav .bottom-menu li:last-child {
  border-right: 1px solid #eee;
}

.nav .bottom-menu li:hover {
  background-color: #AAB6C9;
}

.nav .bottom-menu li a {
  color: #fff;
  font-size: 0.80rem;
  font-weight: 400;
}

.nav .bottom-menu a:hover {
  color: #ddd;

}


/* Responsive */
@media (max-width: 600px) {
    .logo {
    position: relative;
    padding: 0;
    width:100%;
    height:5rem;
    border-bottom:1px solid #AAB6C9;
  }
  .logo a{
  text-decoration: none;
  }

.logo img {
  width: 4rem;
  height: auto;
  margin-right: 1rem;
  float:left;
  }

  .logo-text {
  font-size: 1rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  color: #000;
  line-height: 1.1rem;
  padding-top:1rem;
  }
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    width: 100%;
  }

  .nav.open {
    display: block;
    animation: slideDown 0.3s ease-in-out forwards;
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
  }

  .nav .top-menu {
    display: block;
    width: 100%;
  }
  .nav .bottom-menu li {
  border-left: none;
  }
  .nav .bottom-menu li:last-child {
  padding: 0.5rem;
  border-right: none;
  }

  .nav .top-menu li,
  .nav .bottom-menu li {
    border-right: none;
    border-bottom: 1px solid #ccc;
    color: #556A8D;
    padding: .5rem;
    /*width: 100%;
    display: block;*/
    font-size: .9rem;
  }
  .nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 0.85rem;
    transition: color 0.3s;
    padding:.5rem;
  }
  .nav .bottom-menu {
    background-color: #555;
    padding: 0;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10%);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}