.process-bar {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);

  width: min(1420px, calc(100% - 80px));
  padding: 28px 34px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  background: rgba(8, 8, 7, 0.84);
  border: 1px solid rgba(213, 172, 76, 0.38);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);

  z-index: 8;
}

.process-item {
  display: flex;
  gap: 18px;
  padding: 4px 28px;
  border-right: 1px solid rgba(213, 172, 76, 0.28);
}

.process-item:first-child {
  padding-left: 0;
}

.process-item:last-child {
  border-right: none;
  padding-right: 0;
}

.step-number {
  flex: 0 0 auto;

  font-family: Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;

  color: #d5ac4c;
}

.process-item h3 {
  margin-bottom: 8px;

  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;

  color: #fffaf1;
  text-transform: uppercase;
}

.process-item p {
  max-width: 220px;

  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.6;
}