.ht-process-line {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border);
  z-index: 0;
}

.ht-process-item {
  position: relative;
  z-index: 1;
}

.ht-process-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #ffffff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.ht-process-icon i,
.ht-process-icon svg {
	font-size: 22px;
	width: 22px;
	height: 22px;
	color: var(--secondary);
	transition: color 0.3s ease;
}

.ht-process-item:hover .ht-process-icon {
  border-color: var(--theme);
}

.ht-process-item:hover .ht-process-icon i {
  color: var(--theme);
}
.ht-process-item p {
	color: var(--secondary) !important;
	font-size: 14px;
	line-height: 1.2;
	margin-bottom: 20px;
}

