.ellipse{
  position: absolute;
  content: "";
  display: flex;
  top: 50%;
  right: -125px;
  align-items: center;
  width: 150px;
  z-index: -1;
  transform: translateY(-50%);
}
.ellipse .circle{
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
}
.ellipse .line{
  width: calc( 100% - 14px );
  height: 1px;
  border: 1px  solid var(--primary);
  border-style: dotted;
}