.navbar {
  position: fixed;
  top: 0;
  margin: 0 auto;
  width: 1104px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 60px;
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.2);
  fill: color(display-p3 1 1 1 / 0.08);
  stroke-width: 1px;
  stroke: color(display-p3 1 1 1 / 0.2);
  z-index: 9;
  transition: width 0.3s ease-in-out;
  background: rgb(24, 24, 27);
}
@supports ((-webkit-backdrop-filter: blur(60px)) or (backdrop-filter: blur(60px))) {
  .navbar {
    background: transparent;
    -webkit-backdrop-filter: blur(60px);
    backdrop-filter: blur(60px);
  }
}
.navbar.wide {
  width: 1272px;
  /* background: transparent;
  border: none;
  backdrop-filter: none; */
}
.logo {
  flex: 0 0 auto;
}
.logo img {
  height: 32px;
}
.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  list-style: none;
  padding: 0;
  height: 100%;
}
.nav-list li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.nav-list li.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px 4px 0 0;
  background-color: #fff;
  position: absolute;
  bottom: 0;
}
.nav-list li.active a {
  color: #fff;
}
.nav-list li a:hover {
  color: #fff;
}
.nav-list li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.95;
  padding: 8px 0 4px 0;
  border-bottom: 3px solid transparent;
  transition: border 0.2s, color 0.2s, opacity 0.2s;
}
.contact-btn {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  box-sizing: border-box;
  width: 144px;
  height: 36px;
  padding: 9px 22px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 36px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.7)
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.08) 100%
    );
  border: 1px solid color(display-p3 1 1 1 / 0.7);
  background: rgba(255, 255, 255, 0.08);
  background: color(display-p3 1 1 1 / 0.08);
  text-decoration: none;
  white-space: nowrap;
}
.contact-btn:hover {
  background: rgba(255, 255, 255);
  color: rgba(24, 24, 27, 1);
}
.contact-btn-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../../images/nav_contact.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.contact-btn:hover .contact-btn-icon {
  background-image: url("../../images/nav_contact_dark.png");
}
