.header {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1376px;
  width: 100%;
  height: 60px;
  padding: 3px;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  z-index: 10;
}

.header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-link {
  padding-top: 5px;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0px 10px;
  border-radius: 19px;
    background: rgba(255, 255, 255, 0.1);
}

.header__logo svg {
  display: block;
}

/* меню */
.header__nav {
  display: flex;
  align-items: center;
}

.header__nav-wrap {
  border-radius: 19px;
}

.header__nav {
  display: flex;
  align-items: center;
  height: 54px;
}

.header__link {
  padding: 0 14px;
  height: 54px;
  display: flex;
  align-items: center;

  border-radius: 19px;
  color: #fff !important;
  font-size: 14px;
  text-decoration: none;
}

.header__link:hover {
  background: rgba(255,255,255,0.1);
}

/* правая часть */
.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* контакты */
.header__contacts {
  display: flex;
  flex-direction: row;
  gap: 20px;
  font-size: 14px;
}

.header__contacts a {
  color: #fff;
  text-decoration: underline;
}

/* соц */
.header__socials {
  display: flex;
  gap: 8px;
}

.header__socials img {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 10px;
}

/* консультация */
.header__consult {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 3px 16px;
  height: 54px;
  background: rgba(255,255,255,0.1);
  border-radius: 19px;
  text-decoration: none;
  color: #fff !important;
  min-width: 248px;
}

.header__consult--has-photo {
  padding: 3px 16px 3px 3px;
}

.header__consult img {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

.header__consult span {
  display: block;
  font-size: 14px;
}

.header__consult small {
  font-size: 12px;
  opacity: 0.6;
}

/* user */
.header__user {
  width: 54px;
  height: 54px;
  border-radius: 19px;
  background: rgba(255,255,255,0.1);
}

.header__contacts {
  white-space: nowrap;
}

.header__burger {
  display: none;
}