@import url("https://use.typekit.net/tvg4pki.css");
:root {
  --heading-font-family: Times New Roman, Times, serif;
  --body-font-family: neue-haas-grotesk-display, Garamond, Verdana, Arial, sans-serif;
}

@keyframes arrowLinkHover {
  0% {
    margin-left: 10px;
  }
  50% {
    margin-left: 15px;
  }
  100% {
    margin-left: 10px;
  }
}
nav.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
nav.breadcrumb ol li {
  color: #fff;
  width: auto;
  font-weight: 700;
  border-left: 2px solid #fff;
  padding: 0 15px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  line-height: 16px;
}
nav.breadcrumb ol li:first-child {
  border: none;
  padding-left: 0;
}
nav.breadcrumb ol li a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: block;
}
nav.breadcrumb ol li a:hover {
  text-decoration: underline;
}