/*!***********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/process-timeline/index.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************/
.process-timeline {
  width: 100%;
  padding: 96px 20px;
  background: #EAEBF2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
@media (min-width: 992px) {
  .process-timeline {
    gap: 64px;
  }
}
.process-timeline__header {
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (min-width: 992px) {
  .process-timeline__header {
    padding: 0 20px;
  }
}
.process-timeline__title {
  flex: 1 1 0;
  text-align: center;
  margin: 0;
}
@media (min-width: 992px) {
  .process-timeline__title {
    max-width: 900px;
  }
}
.process-timeline__container {
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 992px) {
  .process-timeline__container {
    max-width: 900px;
    gap: 0;
  }
}
.process-timeline__mobile-progress {
  width: 100%;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
@media (min-width: 992px) {
  .process-timeline__mobile-progress {
    display: none;
  }
}
.process-timeline__progress-bar {
  width: 100%;
  height: 4px;
  position: relative;
  background: rgba(3, 5, 10, 0.05);
  overflow: hidden;
  border-radius: 20px;
}
.process-timeline__progress-fill {
  width: 20%;
  height: 4px;
  position: absolute;
  left: 0;
  top: 0;
  background: #5172FF;
  border-radius: 20px;
  transition: width 0.5s ease;
}
.process-timeline__slider {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-reset: step-counter;
  margin-top: 0 !important;
}
@media (min-width: 992px) {
  .process-timeline__slider {
    overflow: visible;
    gap: 0;
  }
}
@media (max-width: 991px) {
  .process-timeline__slider {
    height: auto;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .process-timeline__slider::-webkit-scrollbar {
    display: none;
  }
}
.process-timeline__step {
  width: 80%;
  max-width: 80%;
  min-width: 80%;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  scroll-snap-align: start;
  transition: opacity 0.3s ease;
  counter-increment: step-counter;
}
@media (min-width: 992px) {
  .process-timeline__step {
    min-width: auto;
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    padding-bottom: 0;
    align-self: stretch;
  }
}
@media (max-width: 991px) {
  .process-timeline__step {
    opacity: 0.6;
  }
  .process-timeline__step--active {
    opacity: 1;
  }
}
.process-timeline__number-column {
  display: contents;
}
@media (min-width: 992px) {
  .process-timeline__number-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 96px;
    position: relative;
  }
  .process-timeline__number-column::after {
    content: "";
    position: absolute;
    top: 96px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: var(--connector-height, 100px);
    background: rgba(3, 5, 10, 0.1);
    z-index: 1;
  }
  .process-timeline__number-column::before {
    content: "";
    position: absolute;
    top: 96px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: #000000;
    transition: height 0.5s ease;
    z-index: 2;
  }
  .process-timeline__step.is-previous .process-timeline__number-column::before {
    height: var(--connector-height, 100px);
  }
  .process-timeline__number-column.animate-connector::before {
    height: var(--connector-height, 100px);
  }
  .process-timeline__step.is-upcoming .process-timeline__number-column::before {
    height: 0;
  }
  .process-timeline__step:last-child .process-timeline__number-column::after, .process-timeline__step:last-child .process-timeline__number-column::before {
    display: none;
  }
}
.process-timeline__number {
  width: 70px;
  height: 70px;
  padding: 16px;
  background: #03050A;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  transition: background 0.5s ease;
}
@media (min-width: 992px) {
  .process-timeline__number {
    width: 96px;
    height: 96px;
    padding: 20px;
    border-radius: 24px;
  }
}
.process-timeline__number::after {
  content: counter(step-counter, decimal-leading-zero);
  text-align: center;
  color: white;
  font-size: 29px;
  font-family: Lexend, sans-serif;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
  z-index: 10;
}
@media (min-width: 576px) {
  .process-timeline__number::after {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  .process-timeline__number::after {
    font-size: 35px;
  }
}
@media (min-width: 992px) {
  .process-timeline__number::after {
    font-size: 39px;
  }
}
@media (min-width: 1200px) {
  .process-timeline__number::after {
    font-size: 42px;
  }
}
@media (min-width: 1440px) {
  .process-timeline__number::after {
    font-size: 45px;
  }
}
.process-timeline__step--active .process-timeline__number {
  background: #5172FF;
}
@media (min-width: 992px) {
  .process-timeline__step.is-active .process-timeline__number {
    background: #5172FF;
  }
  .process-timeline__step.is-upcoming .process-timeline__number, .process-timeline__step.is-previous .process-timeline__number {
    background: #03050A;
  }
}
.process-timeline__connector {
  display: none;
}
.process-timeline__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 !important;
  transition: opacity 0.3s ease;
}
@media (min-width: 992px) {
  .process-timeline__content {
    padding: 32px 20px 64px 20px;
    border-radius: 24px;
  }
}
.process-timeline__step-title {
  align-self: stretch;
  margin: 0;
  font-size: 25px;
  font-family: Lexend, sans-serif;
  font-weight: 500;
  line-height: 1.3;
  word-wrap: break-word;
}
@media (min-width: 576px) {
  .process-timeline__step-title {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .process-timeline__step-title {
    font-size: 27px;
  }
}
@media (min-width: 1200px) {
  .process-timeline__step-title {
    font-size: 28px;
  }
}
@media (min-width: 1440px) {
  .process-timeline__step-title {
    font-size: 29px;
  }
}
.process-timeline__step-description {
  align-self: stretch;
  margin: 0 !important;
  font-size: 16px;
  font-family: Lexend, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  word-wrap: break-word;
}
@media (min-width: 768px) {
  .process-timeline__step-description {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  .process-timeline__step-description {
    font-size: 18px;
  }
}
.process-timeline__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
}
.process-timeline__cta-button {
  margin: 0 !important;
}
@media (min-width: 992px) {
  .process-timeline__step {
    position: relative;
  }
  .process-timeline__step:not(:last-child) {
    margin-bottom: 0;
  }
}

/*# sourceMappingURL=index.css.map*/