/* breakpoints */
.link {
  background: transparent;
  /* breakpoints */
}

.link a {
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color, color, border-color, border-width, box-shadow;
  transition-property: background-color, color, border-color, border-width, box-shadow;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  background-color: transparent;
  text-decoration: none;
  border-bottom-width: 0;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  font-size: 1em;
  font-weight: 600;
  color: #003798;
  box-shadow: 0 0 0 0 transparent;
}

@media (prefers-reduced-motion) {
  .link a {
    -webkit-transition-duration: 0 !important;
    transition-duration: 0 !important;
    -webkit-transition-delay: 0 !important;
    transition-delay: 0 !important;
  }
}

.link a:hover, .link a.hover {
  color: #03335F;
  background-color: rgba(0, 149, 67, 0.2);
  box-shadow: 0 0 0 4px rgba(0, 149, 67, 0.2);
  text-decoration: none;
  border-bottom-width: 3px;
  border-bottom-color: #009543;
}

.link a:focus, .link a.focus {
  outline: 0;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #009543;
}

.link a:focus:hover, .link a.focus.hover, .link a.focus:hover, .link a.hover:focus {
  color: #03335F;
  outline: 0;
  box-shadow: 0 0 0 2px #d7ffe9, 0 0 0 4px #009543;
  border-bottom-width: 0;
}

.link .sc_DropDownItem a {
  outline: 0;
  box-shadow: none;
}
