/* Breadcrumbs */
.breadcrumbs {
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 34px;
}

.breadcrumbs ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline;
}

.breadcrumbs li:not(:last-child):after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg width='4' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M.651 6.892 3.888 3.76a.36.36 0 0 0 0-.522L.653.108a.39.39 0 0 0-.54 0 .36.36 0 0 0 0 .522L3.08 3.5.112 6.37a.361.361 0 0 0 0 .522.39.39 0 0 0 .54 0Z' fill='%233B3B3B'/%3E%3C/svg%3E");
  margin: 0 1.2em;
}

.breadcrumbs a {
  color: var(--secondary-color);
}

.breadcrumbs a:hover {
  color: var(--main-color);
}

@media (max-width: 767.98px) {
  .breadcrumbs {
    margin-bottom: 20px;
  }

  .breadcrumbs li:not(:last-child):after {
    margin: 0 0.5em;
  }
}
/* ! Breadcrumbs */
