/* ===== TOP BAR ===== */
.top-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 20px;
  background: var(--color-blue-grey-900);
  color: var(--blue-grey-50);
}
.top-bar__left {
  display: flex;
}
.top-bar__center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-bar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.top-bar a {
  color: var(--blue-grey-50);
  text-decoration: none;
  margin-right: 10px;
}

.top-bar__link:hover .top-bar__icon {
  transform: scale(1.2);
  transition: transform 0.6s ease;
}
.top-bar__center img {
  height: 45px;
}
.top-bar__icon {
  width: auto;
  height: 30px;
  vertical-align: middle;
  margin-right: 8px;
  color: var(--color-blue-grey-600);
  transition: transform 0.6s ease;
}
.top-bar__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 768px) {
  .top-bar {
    display: flex;
    justify-content: space-between;
  }
  .top-bar__left {
    display: none;
  }
  .top-bar__link span {
    display: none;
  }
  .top-bar__icon {
    height: 35px;
    width: auto;
    margin-right: 12px;
  }
}
