.heading .cms-text-secondary,
.treatments__header .heading > span,
.hero2__heading .heading > span {
  color: var(--color-robin-blue-500);
}

.treatment-description--headings-plum h2,
.treatment-description--headings-plum h3,
.treatment-description--headings-plum h4,
.text.treatment-description--headings-plum h2,
.text.treatment-description--headings-plum h3,
.text.treatment-description--headings-plum h4 {
  color: var(--color-plum-500);
}

.text-image__col h2,
.text-image__col h3,
.text-image__col h4 {
  color: var(--color-plum-500);
}

.thank-you {
  padding-top: var(--spacing-5xl);
  text-align: center;
}

.thank-you__check {
  width: var(--spacing-9xl);
  height: var(--spacing-9xl);
  margin: 0 auto var(--spacing-3xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-white);
}

.thank-you__check svg {
  width: var(--spacing-5xl);
  height: var(--spacing-5xl);
  fill: transparent;
  stroke: var(--color-plum-600);
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: -60px;
  animation: 0.5s linear 0.2s forwards check;
}

.thank-you__back {
  margin-top: var(--spacing-4xl);
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  text-align: center;
}

.call-to-action__content ul {
  margin-bottom: 24px;
  list-style: inside none;
}

.call-to-action__content ul:last-child {
  margin: 0;
}

.call-to-action__content ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 25px;
}

.call-to-action__content ul li:last-of-type {
  margin-bottom: 0;
}

.call-to-action__content ul li::before {
  position: absolute;
  top: 0.6875em;
  left: 11px;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--color-text);
  border-radius: 50%;
}

.call-to-action__content ol {
  margin-bottom: 24px;
  list-style: inside none;
  counter-reset: call-to-action-list;
}

.call-to-action__content ol:last-child {
  margin: 0;
}

.call-to-action__content ol li {
  position: relative;
  margin-bottom: 8px;
  margin-left: 8px;
  padding-left: 25px;
  counter-increment: call-to-action-list;
}

.call-to-action__content ol li:last-of-type {
  margin-bottom: 0;
}

.call-to-action__content ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-text);
  font-weight: 600;
  content: counter(call-to-action-list) ".";
}

@media screen and (width <= 47.9375em) {
  .numbered-list {
    width: calc(100% + 24px);
    margin-left: -12px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .tabs__list {
    margin-right: -12px;
    margin-left: -12px;
  }

  .tabs__list > div,
  .tabs__list > div:not(.is-scrollable) {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
  }
}
