.site-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  padding: 20px 0;
  background-color: #fff;

  position: fixed;
  top: 0;

  width: 100vw;

  border-bottom: 3px solid #09529b;

  z-index: 100;
}

.header-logo {
  min-width: 140px;
  max-width: 140px;
}

.logo-image {
  width: 100%;
  object-fit: fill;
}

.nav-list {
  display: flex;
  align-items: center;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 5px;
}

.nav-list a {
  text-decoration: none;
  color: #09529b;
  transition: background-color 0.2s ease;
  padding: 5px 20px;
  border-radius: 5px;
  font-weight: 600;
}

.nav-list a:hover,
.nav-list a:focus {
  background-color: #09529b;
  color: white;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

.hamburger-menu div {
  width: 2rem;
  height: 0.2rem;
  background-color: #09529b;
  transition: all 0.3s linear;
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    gap: 10px;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;

    width: 100%;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    gap: 10px;
    background-color: #fff;
    border-radius: 5px;

    width: 100%;
  }

  .nav-list.show {
    display: flex;
  }

  .site-nav.show {
    display: flex;
  }

  .hamburger-menu {
    display: flex;
  }

  .site-header {
    align-items: center;
    padding: 10px 0;
  }

  .nav-item {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-item a {
    width: 100%;
    text-align: center;

    border-radius: 0;
    padding: 5px 0px;
  }
}
