.content-header-breadcrumbs {
  list-style-type: none;
  padding: 0;
  display: flex;
  position: absolute;
  margin: 0;
  width: 200%;
}

.content-header-text {
  width: 48%;
  position: relative;
  z-index: 2;
}

.content-header-text > p {
  font-family: var(--font-roboto-regular);
  margin: 0;
  font-size: 18px;
  line-height: 152.69%;
}

.content-header-breadcrumbs li {
  font-family: var(--font-roboto-regular);
  color: var(--color-white);
  width: fit-content;
}

.content-header-breadcrumbs li a {
  color: var(--color-white);
}

.content-header-breadcrumbs li + li:before {
  padding: 8px;
  content: "/";
}

.content-header-breadcrumbs li:last-child {
  color: var(--color-white-a40);
}

.content-header-breadcrumbs li:last-child:before {
  color: var(--color-white);
}

@media (min-width: 1024px) and (max-width: 1260px) {
  .content-header-breadcrumbs {
    top: -35px;
  }
}

@media (max-width: 1023.98px) {
  .content-header-text {
    width: 100%;
  }
  .content-header-breadcrumbs {
    width: 100%;
    flex-wrap: wrap;
    top: 0;
  }
}