.hmg-resources-menu {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  margin-bottom: -40px;
}

.hmg-resources-menu__link {
  font-family: var(--hmg-heading-font);
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  text-transform: uppercase;
  color: rgb(var(--hmg-color-grey-light));
  text-decoration: none;
  transition: all 300ms ease;
  transform: scale(0.8);
  border-bottom: 1px solid transparent;
  padding-bottom: 10px;
}

.hmg-resources-menu__link--active {
  transform: scale(1);
  color: rgb(var(--hmg-color-grey-dark));
  border-bottom-color: rgb(var(--hmg-color-main));
}