.site-header {
  width: 100%;
  height: 80px;
  padding: 0;
  transition: all 0.3s ease;
  background: transparent;
  z-index: 1020;
}
.inner-header {
  width: 100%;
  height: 100%;
  background: #fff;
  border: none !important;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}
.site-header.scrolled {
  padding-top: 15px;
}
.site-header.scrolled .inner-header {
  width: 1320px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50px;
  box-shadow: 0 10px 25px 1px rgba(255, 140, 64, 0.4) !important;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
  align-items: center;
}

.nav-list li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.3s;
}

.nav-list li a:hover {
  color: #ff8c40;
}

.nav-list li.current-menu-item a {
  color: #ff8c40;
}
