/* === НАВИГАЦИОННОЕ ПОДЧЁРКИВАНИЕ === */
.t-menu__link-item {
  position: relative !important;
  transition: color .2s ease !important;
}
.t-menu__link-item::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -2px !important;
  width: 0 !important;
  height: 2px !important;
  background: #000 !important;
  transition: width .25s ease !important;
}
.t-menu__link-item:hover::after,
.t-menu__link-item.t-active::after,
.t-menu__link-item.active::after {
  width: 100% !important;
}
