@media screen and (min-width: 1280px) {
  .background-arrow:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 40px;
    background-image: url("../images/arrow-element-down.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px 100%;
    z-index: -1;
  }
}
@media screen and (min-width: 1280px) {
  .background-arrow:before {
    top: 26px;
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
    background-image: url("../images/arrow-element.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}

.benefits-wrapper .environment-list-item {
  padding-top: 70px;
}
.benefits-wrapper.key-stages .environment-list-item:nth-child(odd) .title {
  color: #46C2C2;
}
.benefits-wrapper.key-stages .environment-list-item:nth-child(even) .title {
  color: #0064AA;
}
.benefits-wrapper.key-stages .environment-list-item p {
  margin-bottom: 12px;
}
.benefits-wrapper.key-stages .environment-list-item .icon-box img {
  top: 10px;
}
.benefits-wrapper.key-stages hr {
  background-color: transparent;
  border-bottom: 1px solid #E0E0E0;
}

.timeline {
  --timeline-blue: #0064aa;
  --timeline-teal: #46c2c2;
  --timeline-track-color: #eeeeee;
  --timeline-line-color: #b7b7b7;
  --timeline-body-color: #858380;
  --timeline-progress-gradient: linear-gradient(180deg, #a28835 0%, #cebc6a 47.596%, #fd6b06 100%);
  position: relative;
  margin-top: 32px;
  --timeline-progress-window: 420px;
  --timeline-progress-fill: 560px;
  --timeline-progress-offset: 320px;
  --timeline-sticky-top: 84px;
}
@media (min-width: 1024px) {
  .timeline {
    --timeline-progress-window: 523px;
    --timeline-progress-fill: 696px;
    --timeline-progress-offset: 441px;
    --timeline-sticky-top: 90px;
  }
}
.timeline .timeline-content {
  position: relative;
  clip-path: inset(0);
}
.timeline .timeline-track .timeline-track-base {
  position: absolute;
  top: -36px;
  bottom: 0;
  width: 4px;
  border-radius: 5px;
  background: var(--timeline-track-color);
  left: 23px;
  transform: none;
}
@media (min-width: 1024px) {
  .timeline .timeline-track .timeline-track-base {
    left: 50%;
    transform: translateX(-50%);
  }
}
.timeline .timeline-track .timeline-track-progress {
  position: absolute;
  top: calc(var(--timeline-progress-offset) * -1);
  right: 0;
  bottom: 0;
  left: 0;
}
.timeline .timeline-track .timeline-track-progress .timeline-track-progress-sticky {
  position: sticky;
  top: var(--timeline-sticky-top);
  width: 46px;
  height: var(--timeline-progress-window);
  margin: 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .timeline .timeline-track .timeline-track-progress .timeline-track-progress-sticky {
    width: 5px;
    margin: 0 auto;
  }
}
.timeline .timeline-track .timeline-track-progress .timeline-track-progress-fill {
  position: absolute;
  bottom: 0;
  left: 23px;
  width: 4px;
  height: var(--timeline-progress-fill);
  border-radius: 5px;
  background-image: var(--timeline-progress-gradient);
  transform: none;
}
@media (min-width: 1024px) {
  .timeline .timeline-track .timeline-track-progress .timeline-track-progress-fill {
    left: 50%;
    transform: translateX(-50%);
  }
}
.timeline .timeline-phase {
  position: relative;
  z-index: 1;
  top: -1px;
}
.timeline .timeline-phase + .timeline-phase {
  margin-top: 32px;
}
.timeline .timeline-phase .timeline-phase-heading {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .timeline .timeline-phase .timeline-phase-heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .timeline .timeline-phase .timeline-phase-heading .timeline-phase-heading-line {
    flex: 1 1 auto;
    height: 1px;
    background: var(--timeline-line-color);
  }
}
.timeline .timeline-phase .timeline-phase-heading .timeline-phase-heading-line:last-child {
  display: none;
}
@media (min-width: 1024px) {
  .timeline .timeline-phase .timeline-phase-heading .timeline-phase-heading-line:last-child {
    display: block;
  }
}
.timeline .timeline-phase .timeline-phase-heading .timeline-phase-label {
  width: auto;
  min-width: max-content;
  margin: 0;
  padding: 12px 28px;
  border-radius: 12px;
  background: linear-gradient(270deg, #4dc2c1 0%, #0064aa 100%);
  color: #fff;
  font-size: 1.313rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .timeline .timeline-phase .timeline-phase-heading .timeline-phase-label {
    width: 240px;
    padding-inline: 32px;
    max-width: calc(100% - 72px);
  }
}
@media (min-width: 1100px) {
  .timeline .timeline-phase .timeline-phase-heading .timeline-phase-label {
    width: 279px;
    padding: 12px 64px;
  }
}
.timeline .timeline-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.timeline .timeline-item {
  --timeline-item-color: var(--timeline-blue);
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: start;
}
@media (min-width: 1024px) {
  .timeline .timeline-item {
    grid-template-columns: minmax(0, 1fr) 50px minmax(0, 1fr);
    column-gap: 0;
  }
}
.timeline .timeline-item.timeline-item-blue {
  --timeline-item-color: var(--timeline-blue);
}
.timeline .timeline-item.timeline-item-teal {
  --timeline-item-color: var(--timeline-teal);
}
.timeline .timeline-item .timeline-item-column-content {
  width: 100%;
  grid-column: 2;
  opacity: 0;
}
@media (min-width: 1024px) {
  .timeline .timeline-item .timeline-item-column-content {
    grid-column: auto;
  }
}
.timeline .timeline-item .timeline-item-column-marker {
  grid-column: 1;
  grid-row: 1/span 2;
  display: flex;
  justify-content: center;
  margin-top: -3px;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .timeline .timeline-item .timeline-item-column-marker {
    grid-column: 2;
  }
}
.timeline .timeline-item .timeline-item-column-empty {
  display: none;
}
@media (min-width: 1024px) {
  .timeline .timeline-item .timeline-item-column-empty {
    display: block;
  }
}
.timeline .timeline-item .timeline-item-marker {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  border: 5px solid var(--timeline-item-color);
  border-radius: 50%;
  background: #fff;
}
.timeline .timeline-item .timeline-item-marker .timeline-item-marker-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: var(--timeline-item-color);
  transform: translate(-50%, -50%);
}
.timeline .timeline-item .timeline-item-header {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 50px;
  flex-direction: row-reverse;
}
.timeline .timeline-item .timeline-item-connector {
  flex: 1 1 auto;
  height: 1px;
  background: var(--timeline-item-color);
}
.timeline .timeline-item .timeline-item-date {
  margin: 0;
  padding: 8px 24px 8px 32px;
  border-radius: 20px 0 0 20px;
  background: var(--timeline-item-color);
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
  white-space: normal;
}
@media (min-width: 1024px) {
  .timeline .timeline-item .timeline-item-date {
    padding: 8px 24px 8px 48px;
    border-radius: 20px 0 0 20px;
    font-size: 1.125rem;
    white-space: nowrap;
  }
}
@media (min-width: 1100px) {
  .timeline .timeline-item .timeline-item-date {
    font-size: 1.313rem;
  }
}
.timeline .timeline-item .timeline-item-body {
  color: var(--timeline-body-color);
  line-height: 1.35;
}
.timeline .timeline-item .timeline-item-body > *:first-child {
  margin-top: 0;
}
.timeline .timeline-item .timeline-item-body > *:last-child {
  margin-bottom: 0;
}
.timeline .timeline-desc .text {
  color: var(--box-text-color);
}
.timeline .timeline-item-left .timeline-item-column-content {
  grid-column: 2;
}
@media (min-width: 1024px) {
  .timeline .timeline-item-left .timeline-item-column-content {
    grid-column: 1;
  }
}
.timeline .timeline-item-left .timeline-item-date {
  padding: 8px 24px 8px 32px;
  border-radius: 20px 0 0 20px;
}
@media (min-width: 1024px) {
  .timeline .timeline-item-left .timeline-item-date {
    padding: 8px 48px 8px 24px;
    border-radius: 0 20px 20px 0;
  }
}
.timeline .timeline-item-left .timeline-item-header {
  flex-direction: row;
}
@media (min-width: 1024px) {
  .timeline .timeline-item-left .timeline-item-header {
    flex-direction: row-reverse;
  }
}
.timeline .timeline-item-left .timeline-item-body {
  text-align: left;
  padding: 10px 16px 36px 24px;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 0 0 20px;
}
.timeline .timeline-item-left .timeline-desc {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='20' ry='20' stroke='%23858380' stroke-width='2' stroke-dasharray='6%2c 14' stroke-dashoffset='32' stroke-linecap='square'/%3e%3c/svg%3e");
  background-position-x: -20px;
  background-position-y: -20px;
  background-repeat: no-repeat;
  background-size: calc(100% + 20px);
}
@media screen and (min-width: 768px) {
  .timeline .timeline-item-left .timeline-desc {
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='20' ry='20' stroke='%23858380' stroke-width='2' stroke-dasharray='6%2c 14' stroke-dashoffset='32' stroke-linecap='square'/%3e%3c/svg%3e");
    background-position-x: 0px;
    background-position-y: -20px;
    background-repeat: no-repeat;
    background-size: calc(100% + 20px);
  }
}
.timeline .timeline-item-right .timeline-item-column-content {
  grid-column: 2;
}
@media (min-width: 1024px) {
  .timeline .timeline-item-right .timeline-item-column-content {
    grid-column: 3;
  }
}
.timeline .timeline-item-right .timeline-item-body {
  padding: 24px 24px 36px 10px;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 0 20px 0;
  text-align: right;
}
.timeline .timeline-item-right .timeline-desc {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='20' ry='20' stroke='%23858380' stroke-width='2' stroke-dasharray='6%2c 14' stroke-dashoffset='32' stroke-linecap='square'/%3e%3c/svg%3e");
  background-position-x: -20px;
  background-position-y: -20px;
  background-repeat: no-repeat;
  background-size: calc(100% + 20px);
}
.timeline.timeline-reveal-enabled .timeline-item-column-content,
.timeline.timeline-reveal-enabled .timeline-item-column-marker {
  will-change: transform, opacity;
  transition-property: transform, opacity;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.timeline.timeline-reveal-enabled .timeline-item-left .timeline-item-column-content {
  transform: translate3d(-56px, 0, 0);
}
.timeline.timeline-reveal-enabled .timeline-item-right .timeline-item-column-content {
  transform: translate3d(56px, 0, 0);
}
.timeline.timeline-reveal-enabled .timeline-item-column-marker {
  transform: scale(0.72);
  transition-delay: 90ms;
}
.timeline.timeline-reveal-enabled .timeline-item.is-visible .timeline-item-column-content,
.timeline.timeline-reveal-enabled .timeline-item.is-visible .timeline-item-column-marker {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .timeline.timeline-reveal-enabled .timeline-item-column-content,
  .timeline.timeline-reveal-enabled .timeline-item-column-marker {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.background-arrow-wrapper {
  position: relative;
}
@media screen and (max-width: 1280px) {
  .background-arrow-wrapper {
    padding-block: 120px;
  }
}
.background-arrow-wrapper .arrow-element {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 30px;
  height: 100%;
  background: linear-gradient(to bottom, #0064AA 0%, #4DC2C1 100%), #F0F0F0;
}
@media screen and (min-width: 1280px) {
  .background-arrow-wrapper .arrow-element {
    display: none;
  }
}
.background-arrow-wrapper .arrow-element .arrow-element-inner {
  position: relative;
  width: 100%;
  display: block;
  height: 100%;
}
.background-arrow-wrapper .arrow-element .arrow-element-inner:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  height: 93px;
  right: 0;
  width: 30px;
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: top;
}
.background-arrow-wrapper .arrow-element .arrow-element-inner:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: -2px;
  height: 101px;
  right: 0;
  width: 34px;
  background-size: 32px;
  background-repeat: no-repeat;
}

:root {
  --arrow-tip: url("../images/arrow-tip.svg") no-repeat center;
  --arrow-top: url("../images/arrow-top.svg") no-repeat center;
}

body.theme-default {
  --arrow-tip: url("../images/arrow-tip.svg") no-repeat center;
  --arrow-top: url("../images/arrow-top.svg") no-repeat center;
}

body.theme-dark {
  --arrow-tip: url("../images/arrow-tip-dark.svg") no-repeat center;
  --arrow-top: url("../images/arrow-top-dark.svg") no-repeat center;
}

body.theme-cream {
  --arrow-tip: url("../images/arrow-tip-cream.svg") no-repeat center;
  --arrow-top: url("../images/arrow-top-cream.svg") no-repeat center;
}

body.theme-blue {
  --arrow-tip: url("../images/arrow-tip-blue.svg") no-repeat center;
  --arrow-top: url("../images/arrow-top-blue.svg") no-repeat center;
}

.arrow-element-inner:before {
  background: var(--arrow-top);
}
.arrow-element-inner:after {
  background: var(--arrow-tip);
}

/*# sourceMappingURL=development-page-styles.css.map */
