.process-container {
  --process-heading-title-color: var(--darkblue);
  --process-heading-subtitle-color: var(--darkblue);
  --process-progress: 0%;
  --process-step-width: 69px;
}
@media screen and (max-width: 768px) {
  .process-container {
    --process-step-width: 35px;
  }
}
.process-container.align-center {
  max-width: 1200px;
  margin: 0 auto;
}
.process-container .left-column {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex: 0 0 var(--process-step-width);
  -moz-box-flex: 0 0 var(--process-step-width);
  -webkit-flex: 0 0 var(--process-step-width);
  -ms-flex: 0 0 var(--process-step-width);
  flex: 0 0 var(--process-step-width);
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  position: relative;
  z-index: 0;
}
.process-container .left-column:after {
  content: "";
  background: linear-gradient(var(--secondary) var(--process-progress), #dcdcdc 0%, #dcdcdc 100%);
  width: 4px;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.process-container .left-column .process-step-count {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  color: var(--white);
  height: var(--process-step-width);
  width: var(--process-step-width);
  background: var(--secondary);
  margin: 0;
  text-align: center;
  border-radius: 50%;
  font-family: var(--fontFamily), sans-serif;
  letter-spacing: 0;
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .process-container .left-column .process-step-count {
    font-size: 1.56rem;
    line-height: 2.08rem;
  }
}
.process-container .left-column .process-step-count.inactive {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .process-container .left-column .process-step-count.inactive {
    font-size: 1.4rem;
  }
}
.process-container .left-column .process-step-count.focused {
  outline-width: 2px;
  outline-style: dashed;
  outline-offset: 8px;
  outline-color: var(--darkblue);
  border-radius: 50%;
}
.process-container .left-column .process-step-count:after {
  content: attr(data-content);
}
.process-container .right-column {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0 1 900px;
  -moz-box-flex: 0 1 900px;
  -webkit-flex: 0 1 900px;
  -ms-flex: 0 1 900px;
  flex: 0 1 900px;
  padding-bottom: 20px;
}
.process-container .right-column .process-step-title {
  font-family: var(--fontFamily), sans-serif;
  letter-spacing: 0;
  font-size: 2.8rem;
  line-height: 4.2rem;
  font-weight: 600;
  color: var(--process-heading-title-color);
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .process-container .right-column .process-step-title {
    font-size: 1.82rem;
    line-height: 2.73rem;
  }
}
.process-container .right-column .process-step-title.inactive {
  font-size: 2.4rem;
  line-height: 3.6rem;
}
@media screen and (max-width: 768px) {
  .process-container .right-column .process-step-title.inactive {
    font-size: 1.56rem;
    line-height: 2.34rem;
  }
}
.process-container .right-column .process-step-headline {
  font-family: var(--fontFamily), sans-serif;
  letter-spacing: 0;
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 600;
  letter-spacing: 0.01rem;
  color: var(--process-heading-subtitle-color);
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .process-container .right-column .process-step-headline {
    font-size: 1.56rem;
    line-height: 2.34rem;
  }
}
.process-container .right-column .process-step-headline.inactive {
  font-size: 2rem;
  line-height: 3rem;
}
@media screen and (max-width: 768px) {
  .process-container .right-column .process-step-headline.inactive {
    font-size: 1.3rem;
    line-height: 1.95rem;
  }
}
.process-container .right-column .process-step-headline:empty {
  margin-bottom: 0;
}
.process-container .right-column .process-step-content {
  font-family: var(--fontFamily), sans-serif;
  letter-spacing: 0;
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-weight: 100;
}
@media screen and (max-width: 768px) {
  .process-container .right-column .process-step-content {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.process-container .process-steps {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .process-container .process-steps {
    gap: 10px;
  }
}

/*# sourceMappingURL=process-group.css.map */
