/* .ax-interior-section {
  padding-top: 100px !important;
}

.ax-section-process {
  padding-top: 80px;
  padding-bottom: 80px;
} */



.ax-process-title h1 {
  font-size: 60px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 20px;
}

.ax-timeline-wrapper {
  position: relative;
  width: 100%;
  max-width: 545px;
  margin: 0 auto;
  padding: 15px 20px 0 120px;
  max-height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.ax-timeline-wrapper::-webkit-scrollbar {
  display: none;
}

.ax-timeline-wrapper .ax-timeline-wrapper {
  padding: 0;
  max-height: none;
  overflow: visible;
  margin: 0;
}

.ax-timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.25rem;
  padding-bottom: 120px;
  cursor: pointer;
}

.ax-timeline-item:last-child {
  padding-bottom: 0;
}

.ax-timeline-item::before {
  content: '';
  position: absolute;
  left: -107px;
  top: 25px;
  bottom: -15px;
  width: 3px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.25);
}

.ax-timeline-item .ax-progress-line {
  position: absolute;
  left: -107px;
  top: 25px;
  bottom: -15px;
  width: 3px;
  border-radius: 15px;
  background: #ffffff;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease-in-out var(--item-delay, 0s);
  z-index: 1;
}

.ax-timeline-item.completed .ax-progress-line {
  transform: scaleY(1);
}

.ax-timeline-item:last-child::before,
.ax-timeline-item:last-child .ax-progress-line {
  display: none;
}

.ax-timeline-item::after {
  content: '';
  position: absolute;
  left: -120px;
  top: -2px;
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  z-index: 2;

  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.15),
    inset 0 0 0 100px rgba(255, 255, 255, 0.42);
  transition: box-shadow 0.3s ease var(--item-delay, 0s);
}

.ax-timeline-item.active::after,
.ax-timeline-item.completed::after {
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.15),
    inset 0 0 0 100px #ffffff;
}

.ax-step-label {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
}

.ax-step-title {
  color: #ffffff;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
}

.ax-step-desc {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
  width: 100%;
}

.ax-step-desc br {
  display: block;
  content: '';
  margin-top: 8px;
}

@media (max-width: 1059px) {
  .process-col>.col-inner {
    padding: 0px 25% 0px 0px !important;
  }
}

@media (max-width: 849px) {
  .ax-section-process {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .ax-process-title h1 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
  }

  .ax-timeline-wrapper {
    padding-left: 45px;
  }

  .ax-timeline-item::after {
    left: -45px;
    width: 22px;
    height: 22px;
    top: 2px;
  }

  .ax-timeline-item::before {
    left: -35px;
  }

  .ax-step-title {
    font-size: 20px;
  }

  .ax-step-desc {
    font-size: 15px;
  }
}

@media (max-width: 559px) {
  .process-col>.col-inner {
    padding: 0px 0% 0px 0px !important;
  }
}