.steps-bubbles {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 5vh;
  width: 100%;
  z-index: 0;
}

.steps-bubbles::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 5px;
  background: var(--green);
  transform: translateX(-50%);
  z-index: 0;
}

.step {
  display: flex;
  width: 100%;
  position: relative;
}

.step.left {
  justify-content: flex-start;
}

.step.right {
  justify-content: flex-end;
}

.bubble {
	position: relative;
	background: var(--white);
	color: var(--black);
	cursor: pointer;
  max-width: 45%;
  padding: 15px;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  text-align: center;
  z-index: 1;
  transition: all 0.4s;
}

.bubble.left {
  border-right: 5px solid var(--green);
}

.bubble.right {
  border-left: 5px solid var(--green);
}

.bubble.right.final {
  border-left: 5px solid var(--accent);
}

.bubble:hover,
.bubble:focus {
  background: var(--green);
  color: var(--white);
}

.bubble.final:hover,
.bubble.final:focus {
  background: var(--accent);
  color: var(--white);
}

.connector {
	content: '';
  position: absolute;
  top: 50%;
  width: 50%;
  height: 5px;
  transform: translateY(-50%);
  background: var(--green);
  z-index: 0;
}

.connector.final {
  background: var(--accent);
}

.circle {
  position: absolute;
	width: 17px;
  height: 17px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--green);
  border-radius: 50%;
  z-index: 4;
}

.circle.final {
	background: var(--accent);
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid var(--green);
  margin-top: 10px;
  transform: translateY(10px);
}

/* Media */

@media (max-width: 1200px) {
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
}

@media (max-width: 480px) {
}
