a.dep-list__name {
  height: unset !important;
  line-height: 28px;
}

a.dep-list__name:hover {
  color: #18a0fb !important;
}

@media screen and (min-width: 767px) {
  .header-bottom .content .menu ul {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .header-bottom .content .menu ul li a {
    padding-right: 15px;
  }

  .header-bottom .promo-link {
    margin: 0;
    padding: 0 10px;
    background: #ef4c4e;
    border-radius: 5px;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header-bottom .promo-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg); /* Делает блик "наклоненным" */
    transition: none;
    animation: blink 3s infinite;
  }
  @keyframes blink {
    0% {
      left: -100%;
    }
    50% {
      left: 110%;
    }
    100% {
      left: 110%;
    }
  }

  .header-bottom .promo-link:hover {
    background: #9d3233;
    color: #fff;
  }
}
