/*********************
// core colours
*********************/
/*********************
// secondary
*********************/
/*********************
// Tertiary
*********************/
/*********************
// notifications
*********************/
/*********************
// Legacy
*********************/
/*********************
// Transitions
*********************/
/*********************
// Breakpoints
*********************/
/*********************
// Gaps and sizes
*********************/
/*********************
// Opacity and shadows
*********************/
/*
This placeholder is usually added to blocks using the data-type attribute selector
    [data-type="acf/block-name"] {}
*/
:root {
  font-size: var(--root-font-size, 10px);
  --base-font: proxima-nova, Helvetica, Arial, sans-serif;
  --heading-font: effra, proxima-nova, Helvetica, Arial, sans-serif;
  --subheading-font: proxima-nova, Helvetica, Arial, sans-serif;
  --thin-font: proxima-nova-thin, proxima-nova, Helvetica, Arial, sans-serif;
  /*********************
  // Core colours
  *********************/
  --color-lime: #c3d82e;
  --color-magenta: #e52592;
  --color-deep-blue: #5525e5;
  /*********************
  // Secondary
  *********************/
  --white: #fff;
  --black: #000;
  --body-black: #051c2a;
  --black--bg: #1a1a1a;
  --text-color: #4b4b4b;
  --gray: #b3b3b3;
  --gray--light: #e8e8e8;
  --gray--lighter: #f0f0f0;
  --gray--lightest: #f7f7f7;
  --gray--dark: #717171;
  --gray--darker: #4b4b4b;
  --gray--darkest: #303030;
  /*********************
  // Tertiary
  *********************/
  --color-apple: #1de57e;
  --color-apple--light: #e6f9ef;
  --color-banana: #fff3a8;
  --color-banana--light: #fffadc;
  --color-chilli: #f02020;
  --color-deep-blue--light: #f1eefd;
  --color-lime--light: #141605;
  --color-magenta--light: #fdeef7;
  --color-magenta--dark: #ca2381;
  --color-strawberry: #ff615e;
  --color-strawberry--light: #ffefef;
  --color-strawberry--dark: #1f0c0b;
  --error: #ffecec;
  --success: #e9ffd9;
  --primary-color: #051c2a;
  /*********************
  // Gaps and sizes
  *********************/
  --gap: 2.4rem;
  --gap-element: 3.2rem;
  --gap-small: 2rem;
  --gap-smaller: 1.6rem;
  --gap-smallest: 1.2rem;
  --gap-large: 3.2rem;
  --gap-larger: 4rem;
  --gap-largest: 4.8rem;
  --gap-xlarge: 5.6rem;
  --grid-sidebar-w: 28rem;
}
:root {
  --gap-half: 10px;
}
@media screen and (min-width: 500px) {
  :root {
    --gap-half: calc(10px + 10 * (100vw - 500px) / 940);
  }
}
@media screen and (min-width: 1440px) {
  :root {
    --gap-half: 20px;
  }
}
:root {
  --gap: 20px;
}
@media screen and (min-width: 500px) {
  :root {
    --gap: calc(20px + 20 * (100vw - 500px) / 940);
  }
}
@media screen and (min-width: 1440px) {
  :root {
    --gap: 40px;
  }
}
:root {
  --gap-double: 40px;
}
@media screen and (min-width: 500px) {
  :root {
    --gap-double: calc(40px + 40 * (100vw - 500px) / 940);
  }
}
@media screen and (min-width: 1440px) {
  :root {
    --gap-double: 80px;
  }
}
:root {
  --gap-negative: -20px;
}
@media screen and (min-width: 500px) {
  :root {
    --gap-negative: calc(-20px + -20 * (100vw - 500px) / 940);
  }
}
@media screen and (min-width: 1440px) {
  :root {
    --gap-negative: -40px;
  }
}

.numbered-list__items {
  counter-reset: num 0;
  padding: 0;
  margin: 0;
}
.numbered-list__item {
  background: #fff;
  padding: var(--gap);
  margin-bottom: var(--gap);
  list-style-type: none;
  counter-increment: num;
  position: relative;
  margin-left: var(--gap);
  padding-left: calc(var(--gap-double) + var(--gap-half));
}
@media (min-width: 56.25em) {
  .numbered-list__item {
    margin-left: var(--gap-half);
    padding-left: calc(var(--gap) + var(--gap-half));
  }
}
.numbered-list__item::before {
  width: 62px;
  height: 62px;
  line-height: 62px;
  content: counter(num);
  text-align: center;
  background: var(--color-deep-blue);
  color: #fff;
  position: absolute;
  font-size: 20.46px;
  top: 0;
  left: 0;
  transform: translateX(-50%);
}
.numbered-list__item:last-child {
  margin-bottom: 0;
}
.numbered-list__item ul li {
  list-style-type: disc;
}

/*# sourceMappingURL=numbered-list.css.map*/