/* hide link for active trail in main menu */
.block-menu.navigation .menu-item--active-trail {
	pointer-events: none; /* Disables the link from being clicked */
  cursor: default;     /* Changes the cursor from a hand to the default arrow */
  text-decoration: none; /* Optional: removes the underline */
  /* color: black !important; */        /* Optional: changes the color to look like plain text */
  font-weight: 900 !important;
}

