.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Golos Text', sans-serif;
}

.top-bar__icons {
  display: flex;
  gap: 24px;
}

.top-bar__logo-link {
  display: flex;
  text-decoration: none;
  color: #fff;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.top-bar__logo {
  height: 32px;
  transition: transform var(--effect-duration);
}

.top-bar__navigation {
  display: none;
}

.top-bar__logo-title {
  font-size: 32px;
  display: none;
}

@media (min-width: 576px) {
  .top-bar__logo {
    height: 40px;
  }
}

@media (min-width: 1024px) {
  .top-bar__logo:hover {
    transform: var(--effect-scale);
  }

  .top-bar__navigation {
    display: block;
  }

  .top-bar__logo-title {
    display: block;
  }
}
