@-webkit-keyframes animate-text {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes animate-text {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.breadcrumb {
  margin-bottom: 15px;
}
.program-hero .breadcrumb {
  padding-right: 250px;
}
@media (max-width: 767.98px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.breadcrumb-item {
  display: inline-block;
  position: relative;
  line-height: 1;
  margin: 5px 7px;
  color: #002157;
}
.breadcrumb-item:last-child:after {
  display: none;
}
.breadcrumb-item[aria-current=page] {
  font-weight: 400;
}
.breadcrumb-link {
  color: #002157;
  text-decoration: none;
  font-weight: bold;
}
.breadcrumb-link:before {
  content: "";
  width: 4px;
  height: 4px;
  display: inline-block;
  background-color: #fff;
  margin-right: 5px;
  vertical-align: middle;
  border-radius: 4px;
}
.breadcrumb-link:hover {
  color: #002157;
  text-decoration: underline;
}