#breadcrumb {
  max-width: 1440px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 7.9%;
}
#breadcrumb .breadcrumbs {
  display: flex;
  align-items: center;
  font-weight: 400;
}

#breadcrumb .breadcrumbs li {
  width: fit-content;
  height: fit-content;
  position: relative;
  padding: 0px 15px;
  font-size: 16px;
}

#breadcrumb .breadcrumbs li:last-of-type {
  padding-right: unset;
}
#breadcrumb .breadcrumbs li:first-of-type {
  padding-left: unset;
}

#breadcrumb .breadcrumbs li:not(:last-of-type)::after {
  position: absolute;
  content: "";
  width: 1px;
  height:  70%;
  transform: rotate(25deg);
  bottom: 0;
  right: -3px;
  margin: auto;
  background-color: #000;
}

.bg_img #breadcrumb .breadcrumbs li {
  color: #fff;
}
.bg_img #breadcrumb .breadcrumbs li:not(:last-of-type)::after {
  background-color: #fff;
}

@media screen and (max-width: 480px) {
  #breadcrumb {
    width: 94%;
    margin-bottom: 35px;
  }
  #breadcrumb .breadcrumbs li {
    padding: 0px 10px;
  }
}
