/* Our Process — scroll progress: fixed left trail + tip moving in tandem */

#process .roadmap-wrap {
  position: relative;
  padding-top: 190px;
}

#process .roadmap-wrap::before,
#process .roadmap-wrap::after {
  display: none !important;
}

#process .roadmap-item:first-child::before {
  display: none !important;
}

#process .roadmap-rail {
  position: absolute;
  left: 0;
  right: 0;
  top: 189px;
  height: 0;
  z-index: 2;
  pointer-events: none;
}

#process .roadmap-rail__track {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 2px;
  border-radius: 2px;
  background: rgba(167, 203, 235, 0.45);
}

/* One SVG: trail x1 always 0; tip + trail x2 share the same junction */
#process .roadmap-progress {
  position: absolute;
  left: 0;
  top: -10px;
  height: 20px;
  overflow: visible;
  display: block;
  opacity: 0;
  z-index: 5;
}

#process .roadmap-progress.is-ready {
  opacity: 1;
}

#process .roadmap-progress__trail {
  stroke: #ffe27a;
  stroke-width: 2;
  stroke-linecap: butt;
  fill: none;
}

#process .roadmap-progress__tip polygon {
  fill: #ffe27a;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
}

#process .roadmap-item {
  z-index: 3;
}

#process .roadmap-item span.roadmap-icon {
  height: 168px;
  width: 152px;
  line-height: 168px;
  top: -190px;
}

#process .roadmap-item span.roadmap-icon:before {
  font-size: 168px;
  line-height: 168px;
}

#process .roadmap-item span.roadmap-icon i,
#process .roadmap-item span.roadmap-icon i:before {
  font-size: 92px;
}

#process .roadmap-item.is-passed::after {
  box-shadow: 0 0 0 4px rgba(255, 226, 122, 0.35);
}

body.home-navy #process .roadmap-rail__track {
  background: rgba(255, 255, 255, 0.28);
}

@media (max-width: 576px) {
  #process .roadmap-rail {
    display: none !important;
  }

  #process .roadmap-wrap {
    padding-top: 0;
  }

  #process .roadmap-item {
    padding-top: 190px;
  }

  #process .roadmap-item span.roadmap-icon {
    top: 0;
  }

  #process .roadmap-item::after {
    top: 183.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #process .roadmap-progress {
    display: none !important;
  }
}
