.b-separator {
  position: relative;
  z-index: 2;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  height: 0.5rem;
  border: none;
}
.b-separator svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.b-separator svg path {
  fill: none;
  stroke: var(--color-black);
  stroke-width: 0.5rem;
}
.b-separator--spacing-sm {
  margin-top: var(--section-spacing-sm);
  margin-bottom: var(--section-spacing-sm);
}
.b-separator--spacing-md {
  margin-top: var(--section-spacing-md);
  margin-bottom: var(--section-spacing-md);
}
@media only screen and (max-width: 767px) and (orientation: landscape),
  only screen and (max-width: 576px) {
  .b-separator--spacing-md {
    margin-top: var(--section-spacing-sm);
    margin-bottom: var(--section-spacing-sm);
  }
}
.b-separator--spacing-lg {
  margin-top: var(--section-spacing-lg);
  margin-bottom: var(--section-spacing-lg);
}
@media only screen and (max-width: 767px) and (orientation: landscape),
  only screen and (max-width: 576px) {
  .b-separator--spacing-lg {
    margin-top: var(--section-spacing-md);
    margin-bottom: var(--section-spacing-md);
  }
}
