.header {
  position: fixed;
  z-index: 5;
  left: 0;
  width: 100%;
  top: 0;
  background: var(--color-white);
  font-size: clamp(1rem, 0.896vw + 0.79rem, 1.5rem);
}
.header a {
  text-decoration: none;
  color: inherit;
}

.header-flex {
  height: var(--header-height);
  transition: height 0.2s;
}
.header__logo {
  flex-shrink: 0;
}
.header__contacts {
  gap: 0 24px;
  text-align: right;
}

body.-fixed .header-flex {
  height: 72px;
}

@media (max-width: 991px) {
  .header__logo img {
    width: 150px;
    height: 31px;
  }
}
