.nav {
  &__list {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;

    display: flex;
    align-items: center;
    gap: 3px;
  }

  &__item {
    flex: 1 0 auto;
  }

  &__link {
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;

    background-image: linear-gradient(to bottom, hsl(210 1% 63% / 0.56), hsl(0 0% 78% /0.45), hsl(0 0% 87% / 0.39), hsl(0 0% 90% / 0.37));
    border-radius: 0 0 10px 10px;

    &:hover,
    &.active {
      background-image: linear-gradient(to top, #ffdc00, #c1a600);
    }
  }
}
