.process {
  margin-bottom: 5rem;
}
.process.section-lining {
  margin: -11.875rem 0 10rem;
  padding-top: 10rem;
}
.process + .banner {
  margin-top: 5rem;
}
.process__title {
  margin-bottom: 5rem;
}
.process__container {
  max-width: 62.5rem;
  width: 100%;
  margin: 0 auto;
}
.process__steps {
  counter-reset: steps;
}
.process__step {
  position: relative;
  padding-left: 20rem;
  counter-increment: steps;
}
.process__step-text {
  line-height: 130%;
  color: var(--white-06);
}
.process__step-text > p:not(:last-child) {
  margin-bottom: 0.9375rem;
}
.process__step-text:not(:first-child) {
  margin-top: 1.5rem;
}
.process__step-number {
  position: absolute;
  top: 0;
  left: 4rem;
  line-height: 100%;
  font-weight: 600;
  padding: 0.65625rem 1.25rem;
  background-color: var(--white-005);
  border: 1px solid var(--white-01);
  border-radius: 6.25rem;
  text-transform: uppercase;
  -webkit-transition: color var(--hover-transition);
  transition: color var(--hover-transition);
}
.process__step-number::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  border-radius: 6.25rem;
  background: -webkit-gradient(linear, left top, right top, from(#46fb65), to(#f5fc44));
  background: linear-gradient(90deg, #46fb65 0%, #f5fc44 100%);
  -webkit-transition: opacity var(--hover-transition), visibility var(--hover-transition);
  transition: opacity var(--hover-transition), visibility var(--hover-transition);
}
.process__step-number::after {
  content: counter(steps);
}
.process__step-block {
  border-radius: 3rem;
  margin-top: 1.5rem;
  padding: 3rem;
}
.process__step-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: max(1.5rem, 12px);
  line-height: 120%;
  color: var(--white-07);
}
.process__step-list > li > span {
  margin-right: 1.5rem;
}
.process__step-list > li > span::after {
  background-image: url('data:image/svg+xml,%3Csvg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M20 7L10 17L5 12" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /%3E%3Cpath d="M20 7L10 17L5 12" stroke="url(%23paint0_linear_3672_8692)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /%3E%3Cdefs%3E%3ClinearGradient id="paint0_linear_3672_8692" x1="5" y1="7" x2="20.3867" y2="7.864" gradientUnits="userSpaceOnUse"%3E%3Cstop stop-color="%23E9FF8F" /%3E%3Cstop offset="1" stop-color="%238BF258" /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E');
}
.process__step-list > li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.process__step.is-active .process__step-number {
  color: var(--black);
}
.process__step.is-active .process__step-number::before {
  opacity: 1;
  visibility: visible;
}
.process__step:not(:last-child) {
  padding-bottom: 4.5rem;
}
.process__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 4rem;
}
.process__block {
  background-color: var(--white-005);
  border-radius: 1.5rem;
  padding: 3rem;
  margin-top: 5rem;
}
.process__block-title {
  text-align: center;
  font-weight: 400;
}
.process__block-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 2rem;
}
@media (min-width: 769px) {
  .process__button .btn {
    width: 100%;
  }
}
@media (min-width: 769px) and (any-hover: hover) {
  .process__button .btn:hover::after {
    -webkit-transform: scale(42) translateX(-20%);
    -ms-transform: scale(42) translateX(-20%);
    transform: scale(42) translateX(-20%);
  }
}
@media (max-width: 768px) {
  .process {
    margin-bottom: 60px;
  }
  .process.section-lining {
    margin: -230px 0 120px;
    padding-top: 80px;
  }
  .process + .banner {
    margin-top: 60px;
  }
  .process__title {
    margin-bottom: 60px;
  }
  .process__step {
    padding-left: 44px;
  }
  .process__step-text {
    font-size: 14px;
  }
  .process__step-text:not(:first-child) {
    margin-top: 16px;
  }
  .process__step-number {
    position: relative;
    left: 0;
    font-size: 14px;
    padding: 7px 16px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    margin-bottom: 16px;
  }
  .process__step-block {
    border-radius: 24px;
    margin-top: 16px;
    padding: 24px;
  }
  .process__step-list > li {
    font-size: 14px;
    line-height: 140%;
  }
  .process__step-list > li > span {
    width: 24px;
    height: 24px;
    margin-right: 16px;
  }
  .process__step-list > li > span::after {
    width: 18px;
    height: 18px;
  }
  .process__step-list > li:not(:last-child) {
    margin-bottom: 20px;
  }
  .process__step:not(:last-child) {
    padding-bottom: 32px;
  }
  .process__step:not(:last-child)::after {
    top: 32px;
    bottom: 8px;
  }
  .process__block {
    padding: 24px;
    margin-top: 48px;
  }
  .process--starter .process__step-title {
    font-size: 24px;
    line-height: 130%;
  }
  .process--qa .process__title {
    font-size: 32px;
    font-weight: 500;
  }
}
/*# sourceMappingURL=process.css.map */
/*# sourceMappingURL=process.css.map */