/* общее для всех */

.page {
  font-family: var(--font-family);
}

.header {
  display: flex;
  align-items: center;
  align-content: space-around;
  justify-content: space-between;
  justify-items: right;
  height: var(--header-height);
  /*border: 1px solid yellow;*/
}

.header__logo {
  padding-left: 5px;
  flex-shrink: 0;
  font-size: 0px;
  /*border: 1px red solid;*/
}

.header__logo-image {
  fill: var(--logo-color);
  flex-shrink: 0;
}

/* MEDIA запросы */

@media (max-width: 750px) {
  /* универсальные меню-лого */

  .header__logo {
    padding: 3px 10px 0 0;
    flex-shrink: 0;
  }

  .header {
    flex-direction: row-reverse;
  }
}
