.header-sticky-wrap {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  will-change: transform;
}

.header-blur {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(168, 168, 168, 0.01);
  backdrop-filter: blur(26.5px);
  -webkit-backdrop-filter: blur(26.5px);
  mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
  transition: background-color 0.3s ease;
}

.header-sticky-wrap.is-scrolled .header-blur {
  background: rgba(168, 168, 168, 0.1);
}

.header {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 59px;

  background: transparent;
  color: #111;
}

.header__logo {
  position: absolute;
  left: 16px;
  bottom: 27px;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
}

.header__nav {
  position: absolute;
  right: 16px;
  bottom: 31px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 400;
  font-size: 12px;
}

.header__nav a {
  color: inherit;
  text-decoration: none;
}

.header__menu-toggle {
  display: none;
  position: absolute;
  right: 32px;
  top: 32px;
  bottom: 37px;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font-family: inherit;
  font-weight: 400;
  font-size: 12px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .header__nav {
    display: none;
  }

  .header__logo {
    left: 32px;
    right: auto;
    top: 18px;
    bottom: auto;
    white-space: nowrap;
    font-size: 22px;
    text-transform: lowercase;
  }

  .header__menu-toggle {
    right: 32px;
    top: 21px;
    bottom: auto;
    display: flex;
    white-space: nowrap;
    font-size: 16px;
    line-height: 110%;
  }
}

@media (max-width: 480px) {
  .header__logo {
    left: 20px;
    top: 24px;
    font-size: 18px;
  }

  .header__menu-toggle {
    right: 20px;
    top: 26px;
    font-size: 14px;
  }
}
