.titlebar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--h, 96px);
  background: var(--color-navy);
}

.titlebar__title {
  color: #fff;
  font: 400 37px/46px var(--font-head);
  text-align: center;
}

@media (max-width: 979px) {
  .titlebar {
    height: auto;
    padding: 18px 10px 19px;
  }

  .titlebar__title {
    font-size: 23px;
    line-height: 28px;
  }
}
