.site-header {
  width: 100%;
  height: 80px;
  background: #000;
  display: flex;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.navbar {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 100px 1fr 100px;
  align-items: center;
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  width: 96px;
  object-fit: contain;
  display: block;
}

.div-menu-more {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav-link {
  min-width: 120px;
  height: 53px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.25s ease;
}

.nav-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.75;
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover img {
  opacity: 1;
}

.nav-link.is-active {
  background-image: url("../images/navbar/bg-nav-active.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
}

.nav-link.is-center {
  min-width: 153px;
  height: 86px;
  background-image: url("../images/navbar/bg-nav-center.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

.nav-link.is-disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(100%);
}

.hamburger {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger img {
  width: 47px;
  height: auto;
  display: block;
}

.nav-link.link-signin {
  padding: 0;
  min-width: auto;
}

/* Tablet */
@media (max-width: 1024px) {
  .navbar {
    grid-template-columns: 140px 1fr 140px;
    gap: 16px;
    padding: 0 20px;
  }

  .nav-menu {
    gap: 8px;
  }

  .nav-link {
    min-width: auto;
    padding: 0 14px;
    font-size: 16px;
  }

  .nav-link.link-signin {
    padding: 0;
    min-width: auto;
  }
}

@media (max-width: 992px) {
  .nav-bottom {
    width: 100%;
    height: 80px;
    background: #000;
    display: flex;
    align-items: center;

    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99999;
  }

  .navbar {
    grid-template-columns: 140px 140px;
    gap: 16px;
    padding: 0 20px;
  }

  .navbar>.nav-menu {
    display: none;
  }

  .nav-logo img {
    width: 75%;
  }

  .nav-link {
    min-width: 120px;
    font-size: 20px;
    flex-direction: column;
    gap: 0;
  }

  .nav-link.link-signin {
    flex-direction: row;
    gap: 5px;
  }

  .nav-menu {
    gap: 15px;
  }

  .nav-link.is-center {
    margin-top: -4px;
  }

  .nav-link.is-active {
    background: none;
  }

  .nav-link img {
    width: 24px;
    height: 24px;
  }

  .nav-link.is-active img {
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .site-header {
    height: 76px;
  }

  .nav-logo img {
    width: 105px;
  }


  .hamburger img {
    width: 40px;
  }

  .nav-link.link-signin {
    padding: 0;
    min-width: auto;
  }
}

@media (max-width: 575px) {
  .nav-link.is-center {
    min-width: 100px;
    height: 66px;
    font-size: 20px;
  }

  .nav-link {
    min-width: 66px;
    font-size: 15px;
    font-weight: 400;
    padding: 0;
  }

  .nav-bottom {
    height: 58px;
  }

  .nav-menu {
    gap: 5px;
  }

  .nav-link.link-signin {
    padding: 0;
    min-width: auto;
  }
}