.home-card {
    padding: 15px 20px;
    min-height: 160px;
	text-align: center;
	align-items: center;
}
.home-card-h {
    padding: 15px 20px;
    min-height: 250;
	text-align: center;
	align-items: center;
}
.home-icon {
    font-size: 23px;
    color: white;
    background: #3a68fb;
    width: 50px;
    height: 50px;
    padding: 13px;
    border-radius: 50%;
    text-align: center;
    margin: 15px;
}
.home-row {
    margin-top: 30px;
}
.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 40px;
}

.step, .start-form {
  background-color: white;
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 8px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1em;
  min-width: 250px;
  position: relative;
  box-shadow: 1px 2px 0px 0 rgba(0, 0, 0, 0.2);
}
.start-form {
  justify-content: center;
}

.arrow-down {
  font-size: 2em;
  color: #4a90e2;
  transform: rotate(90deg);
}
.arrow {
  font-size: 2em;
  color: #4a90e2;
}

@media (max-width: 600px) {
  .steps-container {
	flex-direction: column;
	gap: 30px;
  }

  .arrow {
	transform: rotate(90deg);
  }
}