@charset "UTF-8";
.section--breadcrumb {
  background-color: #FFFFFF;
  padding-block: 0;
}
.section--breadcrumb .section--outer {
  padding-block: 12px;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991.98px) {
  .breadcrumb {
    font-family: "silkamedium", Helvetica, Arial, sans-serif;
    font-weight: 500;
    color: #0A152E;
    font-style: normal;
    letter-spacing: -0.5px;
    font-size: 14px;
    line-height: 22px;
    color: #21242A;
  }
}
@media (min-width: 992px) {
  .breadcrumb {
    font-family: "silkamedium", Helvetica, Arial, sans-serif;
    font-weight: 500;
    color: #0A152E;
    font-style: normal;
    letter-spacing: -0.4px;
    font-size: 12px;
    line-height: 22px;
    color: #717786;
  }
}
@media (max-width: 991.98px) {
  .breadcrumb .fa-kit {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .breadcrumb .fa-kit {
    display: none;
  }
}
.breadcrumb a {
  text-decoration: none;
  color: inherit;
  color: inherit;
}
.breadcrumb a:has(span) span, .breadcrumb a:not(:has(span)) {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 1px;
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: none;
  transition: none;
}
.breadcrumb a:hover:has(span) span, .breadcrumb a:hover:not(:has(span)) {
  text-decoration-color: currentColor;
}
.breadcrumb li {
  position: relative;
  padding-left: 20px;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .breadcrumb li {
    display: none;
  }
  .breadcrumb li:nth-last-child(2) {
    display: block;
    padding: 0;
  }
  .breadcrumb li:nth-last-child(2) a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    height: 32px;
    line-height: 32px;
  }
}
@media (min-width: 992px) {
  .breadcrumb li:before {
    content: "•";
    font-size: 10px;
    color: #717786;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 8px;
    transform: translateY(-50%);
  }
}
.breadcrumb li:first-child {
  padding-left: 0;
}
.breadcrumb li:first-child:before {
  display: none;
}
.breadcrumb li :last-child {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
.breadcrumb li:last-child::before a {
  color: #0A152E;
}
.breadcrumb li.active a {
  color: #21242A;
}
