@charset "UTF-8";
/* stylelint-disable */
/**
 * Modern CSS Reset Tweaks
 * ==================================================
 * A collection of modern CSS reset and normalization styles
 * to ensure consistent behavior across browsers, OS and devices.
 */
/* Ensure consistent font resizing on mobile devices */
html {
  -webkit-text-size-adjust: 100%;
}

html:focus-within {
  scroll-behavior: smooth;
}

/* Basic body setup for layout and text rendering optimization */
body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  position: relative;
  width: 100%;
  min-height: 100vh;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

/* Apply box-sizing globally for consistent element sizing */
*,
::after,
::before {
  box-sizing: border-box;
}

/* Style unclassed links for better accessibility */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/**
 * CSS Reset Tweaks
 * Based on Eric Meyer's CSS Reset v2.0-modified (public domain)
 * URL: http://meyerweb.com/eric/tools/css/reset/
 */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
br,
button,
canvas,
caption,
center,
cite,
code,
col,
colgroup,
data,
datalist,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
head,
header,
hgroup,
hr,
html,
i,
iframe,
img,
input,
ins,
kbd,
label,
legend,
li,
link,
main,
map,
mark,
menu,
meta,
meter,
nav,
noscript,
object,
ol,
optgroup,
option,
output,
p,
param,
picture,
pre,
progress,
q,
rb,
rp,
rt,
rtc,
ruby,
s,
samp,
script,
section,
select,
small,
source,
span,
strong,
style,
svg,
sub,
summary,
sup,
table,
tbody,
td,
template,
textarea,
tfoot,
th,
thead,
time,
title,
tr,
track,
tt,
u,
ul,
var,
video,
wbr {
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* Add focus styles to improve accessibility */
:focus {
  outline: 0;
}

/* Normalize HTML5 elements for older browsers */
article,
aside,
details,
embed,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
object,
section {
  display: block;
}

canvas,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove default list styling */
ol,
ul {
  list-style: none;
}

/* Normalize quote styling */
blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* Reset and normalize form inputs */
input:required,
input {
  box-shadow: none;
}

/* Autofill styling for better compatibility */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

/* Improve appearance of search inputs */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:focus {
  outline: none;
}

video {
  background: #000;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 */
[hidden] {
  display: none;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: none;
}

/**
 * Make media easier to work with
 */
audio,
img,
picture,
svg,
video {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* Additional attribute handling for accessibility */
[disabled],
[disabled=true],
[aria-disabled=true] {
  pointer-events: none;
}

/**
 * Address box sizing set to content-box in IE 8/9.
 */
input[type=checkbox],
input[type=radio] {
  padding: 0;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button {
  border: 0;
  background: transparent;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
}

/**
 * Based on normalize.css v8.0.1
 * github.com/necolas/normalize.css
 */
hr {
  box-sizing: content-box;
  overflow: visible;
  background: #000;
  border: 0;
  height: 1px;
  line-height: 0;
  margin: 0;
  padding: 0;
  page-break-after: always;
  width: 100%;
}

/**
 * Correct the inheritance and scaling of font size in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 100%;
}

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -5px;
}

sup {
  top: -5px;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/**
 * Show the overflow in IE and Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  outline: 0;
}

legend {
  color: inherit;
  white-space: normal;
  display: block;
  border: 0;
  max-width: 100%;
  width: 100%;
}

fieldset {
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: block;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
template {
  display: none;
}

:root {
  --colour-rgb-black: #000000;
  --colour-rgb-black-0: white;
  --colour-rgb-black-1: rgb(252.45, 252.45, 252.45);
  --colour-rgb-black-5: rgb(242.25, 242.25, 242.25);
  --colour-rgb-black-10: rgb(229.5, 229.5, 229.5);
  --colour-rgb-black-15: rgb(216.75, 216.75, 216.75);
  --colour-rgb-black-20: #cccccc;
  --colour-rgb-black-25: rgb(191.25, 191.25, 191.25);
  --colour-rgb-black-30: rgb(178.5, 178.5, 178.5);
  --colour-rgb-black-35: rgb(165.75, 165.75, 165.75);
  --colour-rgb-black-40: #999999;
  --colour-rgb-black-45: rgb(140.25, 140.25, 140.25);
  --colour-rgb-black-50: rgb(127.5, 127.5, 127.5);
  --colour-rgb-black-55: rgb(114.75, 114.75, 114.75);
  --colour-rgb-black-60: #666666;
  --colour-rgb-black-65: rgb(89.25, 89.25, 89.25);
  --colour-rgb-black-70: rgb(76.5, 76.5, 76.5);
  --colour-rgb-black-75: rgb(63.75, 63.75, 63.75);
  --colour-rgb-black-80: #333333;
  --colour-rgb-black-85: rgb(38.25, 38.25, 38.25);
  --colour-rgb-black-90: rgb(25.5, 25.5, 25.5);
  --colour-rgb-black-95: rgb(12.75, 12.75, 12.75);
  --colour-rgb-black-100: black;
  --colour-rgb-black-10: #E5E5E5;
  --colour-rgb-black-10-0: white;
  --colour-rgb-black-10-1: rgb(254.74, 254.74, 254.74);
  --colour-rgb-black-10-5: rgb(253.7, 253.7, 253.7);
  --colour-rgb-black-10-10: rgb(252.4, 252.4, 252.4);
  --colour-rgb-black-10-15: rgb(251.1, 251.1, 251.1);
  --colour-rgb-black-10-20: rgb(249.8, 249.8, 249.8);
  --colour-rgb-black-10-25: rgb(248.5, 248.5, 248.5);
  --colour-rgb-black-10-30: rgb(247.2, 247.2, 247.2);
  --colour-rgb-black-10-35: rgb(245.9, 245.9, 245.9);
  --colour-rgb-black-10-40: rgb(244.6, 244.6, 244.6);
  --colour-rgb-black-10-45: rgb(243.3, 243.3, 243.3);
  --colour-rgb-black-10-50: #f2f2f2;
  --colour-rgb-black-10-55: rgb(240.7, 240.7, 240.7);
  --colour-rgb-black-10-60: rgb(239.4, 239.4, 239.4);
  --colour-rgb-black-10-65: rgb(238.1, 238.1, 238.1);
  --colour-rgb-black-10-70: rgb(236.8, 236.8, 236.8);
  --colour-rgb-black-10-75: rgb(235.5, 235.5, 235.5);
  --colour-rgb-black-10-80: rgb(234.2, 234.2, 234.2);
  --colour-rgb-black-10-85: rgb(232.9, 232.9, 232.9);
  --colour-rgb-black-10-90: rgb(231.6, 231.6, 231.6);
  --colour-rgb-black-10-95: rgb(230.3, 230.3, 230.3);
  --colour-rgb-black-10-100: #e5e5e5;
  --colour-rgb-black-4: #F5F5F5;
  --colour-rgb-black-4-0: white;
  --colour-rgb-black-4-1: rgb(254.9, 254.9, 254.9);
  --colour-rgb-black-4-5: rgb(254.5, 254.5, 254.5);
  --colour-rgb-black-4-10: #fefefe;
  --colour-rgb-black-4-15: rgb(253.5, 253.5, 253.5);
  --colour-rgb-black-4-20: #fdfdfd;
  --colour-rgb-black-4-25: rgb(252.5, 252.5, 252.5);
  --colour-rgb-black-4-30: #fcfcfc;
  --colour-rgb-black-4-35: rgb(251.5, 251.5, 251.5);
  --colour-rgb-black-4-40: #fbfbfb;
  --colour-rgb-black-4-45: rgb(250.5, 250.5, 250.5);
  --colour-rgb-black-4-50: #fafafa;
  --colour-rgb-black-4-55: rgb(249.5, 249.5, 249.5);
  --colour-rgb-black-4-60: #f9f9f9;
  --colour-rgb-black-4-65: rgb(248.5, 248.5, 248.5);
  --colour-rgb-black-4-70: #f8f8f8;
  --colour-rgb-black-4-75: rgb(247.5, 247.5, 247.5);
  --colour-rgb-black-4-80: #f7f7f7;
  --colour-rgb-black-4-85: rgb(246.5, 246.5, 246.5);
  --colour-rgb-black-4-90: #f6f6f6;
  --colour-rgb-black-4-95: rgb(245.5, 245.5, 245.5);
  --colour-rgb-black-4-100: whitesmoke;
  --colour-rgb-gray-1: #212121;
  --colour-rgb-gray-1-0: white;
  --colour-rgb-gray-1-1: rgb(252.78, 252.78, 252.78);
  --colour-rgb-gray-1-5: rgb(243.9, 243.9, 243.9);
  --colour-rgb-gray-1-10: rgb(232.8, 232.8, 232.8);
  --colour-rgb-gray-1-15: rgb(221.7, 221.7, 221.7);
  --colour-rgb-gray-1-20: rgb(210.6, 210.6, 210.6);
  --colour-rgb-gray-1-25: rgb(199.5, 199.5, 199.5);
  --colour-rgb-gray-1-30: rgb(188.4, 188.4, 188.4);
  --colour-rgb-gray-1-35: rgb(177.3, 177.3, 177.3);
  --colour-rgb-gray-1-40: rgb(166.2, 166.2, 166.2);
  --colour-rgb-gray-1-45: rgb(155.1, 155.1, 155.1);
  --colour-rgb-gray-1-50: #909090;
  --colour-rgb-gray-1-55: rgb(132.9, 132.9, 132.9);
  --colour-rgb-gray-1-60: rgb(121.8, 121.8, 121.8);
  --colour-rgb-gray-1-65: rgb(110.7, 110.7, 110.7);
  --colour-rgb-gray-1-70: rgb(99.6, 99.6, 99.6);
  --colour-rgb-gray-1-75: rgb(88.5, 88.5, 88.5);
  --colour-rgb-gray-1-80: rgb(77.4, 77.4, 77.4);
  --colour-rgb-gray-1-85: rgb(66.3, 66.3, 66.3);
  --colour-rgb-gray-1-90: rgb(55.2, 55.2, 55.2);
  --colour-rgb-gray-1-95: rgb(44.1, 44.1, 44.1);
  --colour-rgb-gray-1-100: #212121;
  --colour-rgb-gray-6: #535E6E;
  --colour-rgb-gray-6-0: white;
  --colour-rgb-gray-6-1: rgb(253.28, 253.39, 253.55);
  --colour-rgb-gray-6-5: rgb(246.4, 246.95, 247.75);
  --colour-rgb-gray-6-10: rgb(237.8, 238.9, 240.5);
  --colour-rgb-gray-6-15: rgb(229.2, 230.85, 233.25);
  --colour-rgb-gray-6-20: rgb(220.6, 222.8, 226);
  --colour-rgb-gray-6-25: rgb(212, 214.75, 218.75);
  --colour-rgb-gray-6-30: rgb(203.4, 206.7, 211.5);
  --colour-rgb-gray-6-35: rgb(194.8, 198.65, 204.25);
  --colour-rgb-gray-6-40: rgb(186.2, 190.6, 197);
  --colour-rgb-gray-6-45: rgb(177.6, 182.55, 189.75);
  --colour-rgb-gray-6-50: rgb(169, 174.5, 182.5);
  --colour-rgb-gray-6-55: rgb(160.4, 166.45, 175.25);
  --colour-rgb-gray-6-60: rgb(151.8, 158.4, 168);
  --colour-rgb-gray-6-65: rgb(143.2, 150.35, 160.75);
  --colour-rgb-gray-6-70: rgb(134.6, 142.3, 153.5);
  --colour-rgb-gray-6-75: rgb(126, 134.25, 146.25);
  --colour-rgb-gray-6-80: rgb(117.4, 126.2, 139);
  --colour-rgb-gray-6-85: rgb(108.8, 118.15, 131.75);
  --colour-rgb-gray-6-90: rgb(100.2, 110.1, 124.5);
  --colour-rgb-gray-6-95: rgb(91.6, 102.05, 117.25);
  --colour-rgb-gray-6-100: #535e6e;
  --colour-rgb-white: #FFFFFF;
  --colour-rgb-white-0: white;
  --colour-rgb-white-1: white;
  --colour-rgb-white-5: white;
  --colour-rgb-white-10: white;
  --colour-rgb-white-15: white;
  --colour-rgb-white-20: white;
  --colour-rgb-white-25: white;
  --colour-rgb-white-30: white;
  --colour-rgb-white-35: white;
  --colour-rgb-white-40: white;
  --colour-rgb-white-45: white;
  --colour-rgb-white-50: white;
  --colour-rgb-white-55: white;
  --colour-rgb-white-60: white;
  --colour-rgb-white-65: white;
  --colour-rgb-white-70: white;
  --colour-rgb-white-75: white;
  --colour-rgb-white-80: white;
  --colour-rgb-white-85: white;
  --colour-rgb-white-90: white;
  --colour-rgb-white-95: white;
  --colour-rgb-white-100: white;
  --colour-rgb-blue-1: #0E163F;
  --colour-rgb-blue-1-0: white;
  --colour-rgb-blue-1-1: rgb(252.59, 252.67, 253.08);
  --colour-rgb-blue-1-5: rgb(242.95, 243.35, 245.4);
  --colour-rgb-blue-1-10: rgb(230.9, 231.7, 235.8);
  --colour-rgb-blue-1-15: rgb(218.85, 220.05, 226.2);
  --colour-rgb-blue-1-20: rgb(206.8, 208.4, 216.6);
  --colour-rgb-blue-1-25: rgb(194.75, 196.75, 207);
  --colour-rgb-blue-1-30: rgb(182.7, 185.1, 197.4);
  --colour-rgb-blue-1-35: rgb(170.65, 173.45, 187.8);
  --colour-rgb-blue-1-40: rgb(158.6, 161.8, 178.2);
  --colour-rgb-blue-1-45: rgb(146.55, 150.15, 168.6);
  --colour-rgb-blue-1-50: rgb(134.5, 138.5, 159);
  --colour-rgb-blue-1-55: rgb(122.45, 126.85, 149.4);
  --colour-rgb-blue-1-60: rgb(110.4, 115.2, 139.8);
  --colour-rgb-blue-1-65: rgb(98.35, 103.55, 130.2);
  --colour-rgb-blue-1-70: rgb(86.3, 91.9, 120.6);
  --colour-rgb-blue-1-75: rgb(74.25, 80.25, 111);
  --colour-rgb-blue-1-80: rgb(62.2, 68.6, 101.4);
  --colour-rgb-blue-1-85: rgb(50.15, 56.95, 91.8);
  --colour-rgb-blue-1-90: rgb(38.1, 45.3, 82.2);
  --colour-rgb-blue-1-95: rgb(26.05, 33.65, 72.6);
  --colour-rgb-blue-1-100: #0e163f;
  --colour-rgb-blue-2: #344ABE;
  --colour-rgb-blue-2-0: white;
  --colour-rgb-blue-2-1: rgb(252.97, 253.19, 254.35);
  --colour-rgb-blue-2-5: rgb(244.85, 245.95, 251.75);
  --colour-rgb-blue-2-10: rgb(234.7, 236.9, 248.5);
  --colour-rgb-blue-2-15: rgb(224.55, 227.85, 245.25);
  --colour-rgb-blue-2-20: rgb(214.4, 218.8, 242);
  --colour-rgb-blue-2-25: rgb(204.25, 209.75, 238.75);
  --colour-rgb-blue-2-30: rgb(194.1, 200.7, 235.5);
  --colour-rgb-blue-2-35: rgb(183.95, 191.65, 232.25);
  --colour-rgb-blue-2-40: rgb(173.8, 182.6, 229);
  --colour-rgb-blue-2-45: rgb(163.65, 173.55, 225.75);
  --colour-rgb-blue-2-50: rgb(153.5, 164.5, 222.5);
  --colour-rgb-blue-2-55: rgb(143.35, 155.45, 219.25);
  --colour-rgb-blue-2-60: rgb(133.2, 146.4, 216);
  --colour-rgb-blue-2-65: rgb(123.05, 137.35, 212.75);
  --colour-rgb-blue-2-70: rgb(112.9, 128.3, 209.5);
  --colour-rgb-blue-2-75: rgb(102.75, 119.25, 206.25);
  --colour-rgb-blue-2-80: rgb(92.6, 110.2, 203);
  --colour-rgb-blue-2-85: rgb(82.45, 101.15, 199.75);
  --colour-rgb-blue-2-90: rgb(72.3, 92.1, 196.5);
  --colour-rgb-blue-2-95: rgb(62.15, 83.05, 193.25);
  --colour-rgb-blue-2-100: #344abe;
  --colour-rgb-blue-2-50: #566EEB;
  --colour-rgb-blue-2-50-0: white;
  --colour-rgb-blue-2-50-1: rgb(253.31, 253.55, 254.8);
  --colour-rgb-blue-2-50-5: rgb(246.55, 247.75, 254);
  --colour-rgb-blue-2-50-10: rgb(238.1, 240.5, 253);
  --colour-rgb-blue-2-50-15: rgb(229.65, 233.25, 252);
  --colour-rgb-blue-2-50-20: rgb(221.2, 226, 251);
  --colour-rgb-blue-2-50-25: rgb(212.75, 218.75, 250);
  --colour-rgb-blue-2-50-30: rgb(204.3, 211.5, 249);
  --colour-rgb-blue-2-50-35: rgb(195.85, 204.25, 248);
  --colour-rgb-blue-2-50-40: rgb(187.4, 197, 247);
  --colour-rgb-blue-2-50-45: rgb(178.95, 189.75, 246);
  --colour-rgb-blue-2-50-50: rgb(170.5, 182.5, 245);
  --colour-rgb-blue-2-50-55: rgb(162.05, 175.25, 244);
  --colour-rgb-blue-2-50-60: rgb(153.6, 168, 243);
  --colour-rgb-blue-2-50-65: rgb(145.15, 160.75, 242);
  --colour-rgb-blue-2-50-70: rgb(136.7, 153.5, 241);
  --colour-rgb-blue-2-50-75: rgb(128.25, 146.25, 240);
  --colour-rgb-blue-2-50-80: rgb(119.8, 139, 239);
  --colour-rgb-blue-2-50-85: rgb(111.35, 131.75, 238);
  --colour-rgb-blue-2-50-90: rgb(102.9, 124.5, 237);
  --colour-rgb-blue-2-50-95: rgb(94.45, 117.25, 236);
  --colour-rgb-blue-2-50-100: #566eeb;
  --colour-rgb-blue-3: #C6CEFF;
  --colour-rgb-blue-3-0: white;
  --colour-rgb-blue-3-1: rgb(254.43, 254.51, 255);
  --colour-rgb-blue-3-5: rgb(252.15, 252.55, 255);
  --colour-rgb-blue-3-10: rgb(249.3, 250.1, 255);
  --colour-rgb-blue-3-15: rgb(246.45, 247.65, 255);
  --colour-rgb-blue-3-20: rgb(243.6, 245.2, 255);
  --colour-rgb-blue-3-25: rgb(240.75, 242.75, 255);
  --colour-rgb-blue-3-30: rgb(237.9, 240.3, 255);
  --colour-rgb-blue-3-35: rgb(235.05, 237.85, 255);
  --colour-rgb-blue-3-40: rgb(232.2, 235.4, 255);
  --colour-rgb-blue-3-45: rgb(229.35, 232.95, 255);
  --colour-rgb-blue-3-50: rgb(226.5, 230.5, 255);
  --colour-rgb-blue-3-55: rgb(223.65, 228.05, 255);
  --colour-rgb-blue-3-60: rgb(220.8, 225.6, 255);
  --colour-rgb-blue-3-65: rgb(217.95, 223.15, 255);
  --colour-rgb-blue-3-70: rgb(215.1, 220.7, 255);
  --colour-rgb-blue-3-75: rgb(212.25, 218.25, 255);
  --colour-rgb-blue-3-80: rgb(209.4, 215.8, 255);
  --colour-rgb-blue-3-85: rgb(206.55, 213.35, 255);
  --colour-rgb-blue-3-90: rgb(203.7, 210.9, 255);
  --colour-rgb-blue-3-95: rgb(200.85, 208.45, 255);
  --colour-rgb-blue-3-100: #c6ceff;
  --colour-rgb-blue-3-300: #BFCAFF;
  --colour-rgb-blue-3-300-0: white;
  --colour-rgb-blue-3-300-1: rgb(254.36, 254.47, 255);
  --colour-rgb-blue-3-300-5: rgb(251.8, 252.35, 255);
  --colour-rgb-blue-3-300-10: rgb(248.6, 249.7, 255);
  --colour-rgb-blue-3-300-15: rgb(245.4, 247.05, 255);
  --colour-rgb-blue-3-300-20: rgb(242.2, 244.4, 255);
  --colour-rgb-blue-3-300-25: rgb(239, 241.75, 255);
  --colour-rgb-blue-3-300-30: rgb(235.8, 239.1, 255);
  --colour-rgb-blue-3-300-35: rgb(232.6, 236.45, 255);
  --colour-rgb-blue-3-300-40: rgb(229.4, 233.8, 255);
  --colour-rgb-blue-3-300-45: rgb(226.2, 231.15, 255);
  --colour-rgb-blue-3-300-50: rgb(223, 228.5, 255);
  --colour-rgb-blue-3-300-55: rgb(219.8, 225.85, 255);
  --colour-rgb-blue-3-300-60: rgb(216.6, 223.2, 255);
  --colour-rgb-blue-3-300-65: rgb(213.4, 220.55, 255);
  --colour-rgb-blue-3-300-70: rgb(210.2, 217.9, 255);
  --colour-rgb-blue-3-300-75: rgb(207, 215.25, 255);
  --colour-rgb-blue-3-300-80: rgb(203.8, 212.6, 255);
  --colour-rgb-blue-3-300-85: rgb(200.6, 209.95, 255);
  --colour-rgb-blue-3-300-90: rgb(197.4, 207.3, 255);
  --colour-rgb-blue-3-300-95: rgb(194.2, 204.65, 255);
  --colour-rgb-blue-3-300-100: #bfcaff;
  --colour-rgb-blue-3-80: #D7DCFA;
  --colour-rgb-blue-3-80-0: white;
  --colour-rgb-blue-3-80-1: rgb(254.6, 254.65, 254.95);
  --colour-rgb-blue-3-80-5: rgb(253, 253.25, 254.75);
  --colour-rgb-blue-3-80-10: rgb(251, 251.5, 254.5);
  --colour-rgb-blue-3-80-15: rgb(249, 249.75, 254.25);
  --colour-rgb-blue-3-80-20: #f7f8fe;
  --colour-rgb-blue-3-80-25: rgb(245, 246.25, 253.75);
  --colour-rgb-blue-3-80-30: rgb(243, 244.5, 253.5);
  --colour-rgb-blue-3-80-35: rgb(241, 242.75, 253.25);
  --colour-rgb-blue-3-80-40: #eff1fd;
  --colour-rgb-blue-3-80-45: rgb(237, 239.25, 252.75);
  --colour-rgb-blue-3-80-50: rgb(235, 237.5, 252.5);
  --colour-rgb-blue-3-80-55: rgb(233, 235.75, 252.25);
  --colour-rgb-blue-3-80-60: #e7eafc;
  --colour-rgb-blue-3-80-65: rgb(229, 232.25, 251.75);
  --colour-rgb-blue-3-80-70: rgb(227, 230.5, 251.5);
  --colour-rgb-blue-3-80-75: rgb(225, 228.75, 251.25);
  --colour-rgb-blue-3-80-80: #dfe3fb;
  --colour-rgb-blue-3-80-85: rgb(221, 225.25, 250.75);
  --colour-rgb-blue-3-80-90: rgb(219, 223.5, 250.5);
  --colour-rgb-blue-3-80-95: rgb(217, 221.75, 250.25);
  --colour-rgb-blue-3-80-100: #d7dcfa;
  --colour-rgb-blue-3-60: #DFE0FE;
  --colour-rgb-blue-3-60-0: white;
  --colour-rgb-blue-3-60-1: rgb(254.68, 254.69, 254.99);
  --colour-rgb-blue-3-60-5: rgb(253.4, 253.45, 254.95);
  --colour-rgb-blue-3-60-10: rgb(251.8, 251.9, 254.9);
  --colour-rgb-blue-3-60-15: rgb(250.2, 250.35, 254.85);
  --colour-rgb-blue-3-60-20: rgb(248.6, 248.8, 254.8);
  --colour-rgb-blue-3-60-25: rgb(247, 247.25, 254.75);
  --colour-rgb-blue-3-60-30: rgb(245.4, 245.7, 254.7);
  --colour-rgb-blue-3-60-35: rgb(243.8, 244.15, 254.65);
  --colour-rgb-blue-3-60-40: rgb(242.2, 242.6, 254.6);
  --colour-rgb-blue-3-60-45: rgb(240.6, 241.05, 254.55);
  --colour-rgb-blue-3-60-50: rgb(239, 239.5, 254.5);
  --colour-rgb-blue-3-60-55: rgb(237.4, 237.95, 254.45);
  --colour-rgb-blue-3-60-60: rgb(235.8, 236.4, 254.4);
  --colour-rgb-blue-3-60-65: rgb(234.2, 234.85, 254.35);
  --colour-rgb-blue-3-60-70: rgb(232.6, 233.3, 254.3);
  --colour-rgb-blue-3-60-75: rgb(231, 231.75, 254.25);
  --colour-rgb-blue-3-60-80: rgb(229.4, 230.2, 254.2);
  --colour-rgb-blue-3-60-85: rgb(227.8, 228.65, 254.15);
  --colour-rgb-blue-3-60-90: rgb(226.2, 227.1, 254.1);
  --colour-rgb-blue-3-60-95: rgb(224.6, 225.55, 254.05);
  --colour-rgb-blue-3-60-100: #dfe0fe;
  --colour-rgb-blue-3-40: #E9EAFF;
  --colour-rgb-blue-3-40-0: white;
  --colour-rgb-blue-3-40-1: rgb(254.78, 254.79, 255);
  --colour-rgb-blue-3-40-5: rgb(253.9, 253.95, 255);
  --colour-rgb-blue-3-40-10: rgb(252.8, 252.9, 255);
  --colour-rgb-blue-3-40-15: rgb(251.7, 251.85, 255);
  --colour-rgb-blue-3-40-20: rgb(250.6, 250.8, 255);
  --colour-rgb-blue-3-40-25: rgb(249.5, 249.75, 255);
  --colour-rgb-blue-3-40-30: rgb(248.4, 248.7, 255);
  --colour-rgb-blue-3-40-35: rgb(247.3, 247.65, 255);
  --colour-rgb-blue-3-40-40: rgb(246.2, 246.6, 255);
  --colour-rgb-blue-3-40-45: rgb(245.1, 245.55, 255);
  --colour-rgb-blue-3-40-50: rgb(244, 244.5, 255);
  --colour-rgb-blue-3-40-55: rgb(242.9, 243.45, 255);
  --colour-rgb-blue-3-40-60: rgb(241.8, 242.4, 255);
  --colour-rgb-blue-3-40-65: rgb(240.7, 241.35, 255);
  --colour-rgb-blue-3-40-70: rgb(239.6, 240.3, 255);
  --colour-rgb-blue-3-40-75: rgb(238.5, 239.25, 255);
  --colour-rgb-blue-3-40-80: rgb(237.4, 238.2, 255);
  --colour-rgb-blue-3-40-85: rgb(236.3, 237.15, 255);
  --colour-rgb-blue-3-40-90: rgb(235.2, 236.1, 255);
  --colour-rgb-blue-3-40-95: rgb(234.1, 235.05, 255);
  --colour-rgb-blue-3-40-100: #e9eaff;
  --colour-rgb-blue-3-20: #F4F5FF;
  --colour-rgb-blue-3-20-0: white;
  --colour-rgb-blue-3-20-1: rgb(254.89, 254.9, 255);
  --colour-rgb-blue-3-20-5: rgb(254.45, 254.5, 255);
  --colour-rgb-blue-3-20-10: rgb(253.9, 254, 255);
  --colour-rgb-blue-3-20-15: rgb(253.35, 253.5, 255);
  --colour-rgb-blue-3-20-20: rgb(252.8, 253, 255);
  --colour-rgb-blue-3-20-25: rgb(252.25, 252.5, 255);
  --colour-rgb-blue-3-20-30: rgb(251.7, 252, 255);
  --colour-rgb-blue-3-20-35: rgb(251.15, 251.5, 255);
  --colour-rgb-blue-3-20-40: rgb(250.6, 251, 255);
  --colour-rgb-blue-3-20-45: rgb(250.05, 250.5, 255);
  --colour-rgb-blue-3-20-50: rgb(249.5, 250, 255);
  --colour-rgb-blue-3-20-55: rgb(248.95, 249.5, 255);
  --colour-rgb-blue-3-20-60: rgb(248.4, 249, 255);
  --colour-rgb-blue-3-20-65: rgb(247.85, 248.5, 255);
  --colour-rgb-blue-3-20-70: rgb(247.3, 248, 255);
  --colour-rgb-blue-3-20-75: rgb(246.75, 247.5, 255);
  --colour-rgb-blue-3-20-80: rgb(246.2, 247, 255);
  --colour-rgb-blue-3-20-85: rgb(245.65, 246.5, 255);
  --colour-rgb-blue-3-20-90: rgb(245.1, 246, 255);
  --colour-rgb-blue-3-20-95: rgb(244.55, 245.5, 255);
  --colour-rgb-blue-3-20-100: #f4f5ff;
  --colour-rgb-blue-3-10: #F5F4FF;
  --colour-rgb-blue-3-10-0: white;
  --colour-rgb-blue-3-10-1: rgb(254.9, 254.89, 255);
  --colour-rgb-blue-3-10-5: rgb(254.5, 254.45, 255);
  --colour-rgb-blue-3-10-10: rgb(254, 253.9, 255);
  --colour-rgb-blue-3-10-15: rgb(253.5, 253.35, 255);
  --colour-rgb-blue-3-10-20: rgb(253, 252.8, 255);
  --colour-rgb-blue-3-10-25: rgb(252.5, 252.25, 255);
  --colour-rgb-blue-3-10-30: rgb(252, 251.7, 255);
  --colour-rgb-blue-3-10-35: rgb(251.5, 251.15, 255);
  --colour-rgb-blue-3-10-40: rgb(251, 250.6, 255);
  --colour-rgb-blue-3-10-45: rgb(250.5, 250.05, 255);
  --colour-rgb-blue-3-10-50: rgb(250, 249.5, 255);
  --colour-rgb-blue-3-10-55: rgb(249.5, 248.95, 255);
  --colour-rgb-blue-3-10-60: rgb(249, 248.4, 255);
  --colour-rgb-blue-3-10-65: rgb(248.5, 247.85, 255);
  --colour-rgb-blue-3-10-70: rgb(248, 247.3, 255);
  --colour-rgb-blue-3-10-75: rgb(247.5, 246.75, 255);
  --colour-rgb-blue-3-10-80: rgb(247, 246.2, 255);
  --colour-rgb-blue-3-10-85: rgb(246.5, 245.65, 255);
  --colour-rgb-blue-3-10-90: rgb(246, 245.1, 255);
  --colour-rgb-blue-3-10-95: rgb(245.5, 244.55, 255);
  --colour-rgb-blue-3-10-100: #f5f4ff;
  --colour-rgb-blue-2-hover: #4663FF;
  --colour-rgb-blue-2-hover-0: white;
  --colour-rgb-blue-2-hover-1: rgb(253.15, 253.44, 255);
  --colour-rgb-blue-2-hover-5: rgb(245.75, 247.2, 255);
  --colour-rgb-blue-2-hover-10: rgb(236.5, 239.4, 255);
  --colour-rgb-blue-2-hover-15: rgb(227.25, 231.6, 255);
  --colour-rgb-blue-2-hover-20: rgb(218, 223.8, 255);
  --colour-rgb-blue-2-hover-25: rgb(208.75, 216, 255);
  --colour-rgb-blue-2-hover-30: rgb(199.5, 208.2, 255);
  --colour-rgb-blue-2-hover-35: rgb(190.25, 200.4, 255);
  --colour-rgb-blue-2-hover-40: rgb(181, 192.6, 255);
  --colour-rgb-blue-2-hover-45: rgb(171.75, 184.8, 255);
  --colour-rgb-blue-2-hover-50: rgb(162.5, 177, 255);
  --colour-rgb-blue-2-hover-55: rgb(153.25, 169.2, 255);
  --colour-rgb-blue-2-hover-60: rgb(144, 161.4, 255);
  --colour-rgb-blue-2-hover-65: rgb(134.75, 153.6, 255);
  --colour-rgb-blue-2-hover-70: rgb(125.5, 145.8, 255);
  --colour-rgb-blue-2-hover-75: rgb(116.25, 138, 255);
  --colour-rgb-blue-2-hover-80: rgb(107, 130.2, 255);
  --colour-rgb-blue-2-hover-85: rgb(97.75, 122.4, 255);
  --colour-rgb-blue-2-hover-90: rgb(88.5, 114.6, 255);
  --colour-rgb-blue-2-hover-95: rgb(79.25, 106.8, 255);
  --colour-rgb-blue-2-hover-100: #4663ff;
  --colour-rgb-green-1: #07281C;
  --colour-rgb-green-1-0: white;
  --colour-rgb-green-1-1: rgb(252.52, 252.85, 252.73);
  --colour-rgb-green-1-5: rgb(242.6, 244.25, 243.65);
  --colour-rgb-green-1-10: rgb(230.2, 233.5, 232.3);
  --colour-rgb-green-1-15: rgb(217.8, 222.75, 220.95);
  --colour-rgb-green-1-20: rgb(205.4, 212, 209.6);
  --colour-rgb-green-1-25: rgb(193, 201.25, 198.25);
  --colour-rgb-green-1-30: rgb(180.6, 190.5, 186.9);
  --colour-rgb-green-1-35: rgb(168.2, 179.75, 175.55);
  --colour-rgb-green-1-40: rgb(155.8, 169, 164.2);
  --colour-rgb-green-1-45: rgb(143.4, 158.25, 152.85);
  --colour-rgb-green-1-50: rgb(131, 147.5, 141.5);
  --colour-rgb-green-1-55: rgb(118.6, 136.75, 130.15);
  --colour-rgb-green-1-60: rgb(106.2, 126, 118.8);
  --colour-rgb-green-1-65: rgb(93.8, 115.25, 107.45);
  --colour-rgb-green-1-70: rgb(81.4, 104.5, 96.1);
  --colour-rgb-green-1-75: rgb(69, 93.75, 84.75);
  --colour-rgb-green-1-80: rgb(56.6, 83, 73.4);
  --colour-rgb-green-1-85: rgb(44.2, 72.25, 62.05);
  --colour-rgb-green-1-90: rgb(31.8, 61.5, 50.7);
  --colour-rgb-green-1-95: rgb(19.4, 50.75, 39.35);
  --colour-rgb-green-1-100: #07281c;
  --colour-rgb-green-2: #008575;
  --colour-rgb-green-2-0: white;
  --colour-rgb-green-2-1: rgb(252.45, 253.78, 253.62);
  --colour-rgb-green-2-5: rgb(242.25, 248.9, 248.1);
  --colour-rgb-green-2-10: rgb(229.5, 242.8, 241.2);
  --colour-rgb-green-2-15: rgb(216.75, 236.7, 234.3);
  --colour-rgb-green-2-20: rgb(204, 230.6, 227.4);
  --colour-rgb-green-2-25: rgb(191.25, 224.5, 220.5);
  --colour-rgb-green-2-30: rgb(178.5, 218.4, 213.6);
  --colour-rgb-green-2-35: rgb(165.75, 212.3, 206.7);
  --colour-rgb-green-2-40: rgb(153, 206.2, 199.8);
  --colour-rgb-green-2-45: rgb(140.25, 200.1, 192.9);
  --colour-rgb-green-2-50: rgb(127.5, 194, 186);
  --colour-rgb-green-2-55: rgb(114.75, 187.9, 179.1);
  --colour-rgb-green-2-60: rgb(102, 181.8, 172.2);
  --colour-rgb-green-2-65: rgb(89.25, 175.7, 165.3);
  --colour-rgb-green-2-70: rgb(76.5, 169.6, 158.4);
  --colour-rgb-green-2-75: rgb(63.75, 163.5, 151.5);
  --colour-rgb-green-2-80: rgb(51, 157.4, 144.6);
  --colour-rgb-green-2-85: rgb(38.25, 151.3, 137.7);
  --colour-rgb-green-2-90: rgb(25.5, 145.2, 130.8);
  --colour-rgb-green-2-95: rgb(12.75, 139.1, 123.9);
  --colour-rgb-green-2-100: #008575;
  --colour-rgb-green-3: #C8F3E3;
  --colour-rgb-green-3-0: white;
  --colour-rgb-green-3-1: rgb(254.45, 254.88, 254.72);
  --colour-rgb-green-3-5: rgb(252.25, 254.4, 253.6);
  --colour-rgb-green-3-10: rgb(249.5, 253.8, 252.2);
  --colour-rgb-green-3-15: rgb(246.75, 253.2, 250.8);
  --colour-rgb-green-3-20: rgb(244, 252.6, 249.4);
  --colour-rgb-green-3-25: rgb(241.25, 252, 248);
  --colour-rgb-green-3-30: rgb(238.5, 251.4, 246.6);
  --colour-rgb-green-3-35: rgb(235.75, 250.8, 245.2);
  --colour-rgb-green-3-40: rgb(233, 250.2, 243.8);
  --colour-rgb-green-3-45: rgb(230.25, 249.6, 242.4);
  --colour-rgb-green-3-50: rgb(227.5, 249, 241);
  --colour-rgb-green-3-55: rgb(224.75, 248.4, 239.6);
  --colour-rgb-green-3-60: rgb(222, 247.8, 238.2);
  --colour-rgb-green-3-65: rgb(219.25, 247.2, 236.8);
  --colour-rgb-green-3-70: rgb(216.5, 246.6, 235.4);
  --colour-rgb-green-3-75: rgb(213.75, 246, 234);
  --colour-rgb-green-3-80: rgb(211, 245.4, 232.6);
  --colour-rgb-green-3-85: rgb(208.25, 244.8, 231.2);
  --colour-rgb-green-3-90: rgb(205.5, 244.2, 229.8);
  --colour-rgb-green-3-95: rgb(202.75, 243.6, 228.4);
  --colour-rgb-green-3-100: #c8f3e3;
  --colour-rgb-green-2-50: #5DC99F;
  --colour-rgb-green-2-50-0: white;
  --colour-rgb-green-2-50-1: rgb(253.38, 254.46, 254.04);
  --colour-rgb-green-2-50-5: rgb(246.9, 252.3, 250.2);
  --colour-rgb-green-2-50-10: rgb(238.8, 249.6, 245.4);
  --colour-rgb-green-2-50-15: rgb(230.7, 246.9, 240.6);
  --colour-rgb-green-2-50-20: rgb(222.6, 244.2, 235.8);
  --colour-rgb-green-2-50-25: rgb(214.5, 241.5, 231);
  --colour-rgb-green-2-50-30: rgb(206.4, 238.8, 226.2);
  --colour-rgb-green-2-50-35: rgb(198.3, 236.1, 221.4);
  --colour-rgb-green-2-50-40: rgb(190.2, 233.4, 216.6);
  --colour-rgb-green-2-50-45: rgb(182.1, 230.7, 211.8);
  --colour-rgb-green-2-50-50: #aee4cf;
  --colour-rgb-green-2-50-55: rgb(165.9, 225.3, 202.2);
  --colour-rgb-green-2-50-60: rgb(157.8, 222.6, 197.4);
  --colour-rgb-green-2-50-65: rgb(149.7, 219.9, 192.6);
  --colour-rgb-green-2-50-70: rgb(141.6, 217.2, 187.8);
  --colour-rgb-green-2-50-75: rgb(133.5, 214.5, 183);
  --colour-rgb-green-2-50-80: rgb(125.4, 211.8, 178.2);
  --colour-rgb-green-2-50-85: rgb(117.3, 209.1, 173.4);
  --colour-rgb-green-2-50-90: rgb(109.2, 206.4, 168.6);
  --colour-rgb-green-2-50-95: rgb(101.1, 203.7, 163.8);
  --colour-rgb-green-2-50-100: #5dc99f;
  --colour-rgb-green-3-60: #DEF8EE;
  --colour-rgb-green-3-60-0: white;
  --colour-rgb-green-3-60-1: rgb(254.67, 254.93, 254.83);
  --colour-rgb-green-3-60-5: rgb(253.35, 254.65, 254.15);
  --colour-rgb-green-3-60-10: rgb(251.7, 254.3, 253.3);
  --colour-rgb-green-3-60-15: rgb(250.05, 253.95, 252.45);
  --colour-rgb-green-3-60-20: rgb(248.4, 253.6, 251.6);
  --colour-rgb-green-3-60-25: rgb(246.75, 253.25, 250.75);
  --colour-rgb-green-3-60-30: rgb(245.1, 252.9, 249.9);
  --colour-rgb-green-3-60-35: rgb(243.45, 252.55, 249.05);
  --colour-rgb-green-3-60-40: rgb(241.8, 252.2, 248.2);
  --colour-rgb-green-3-60-45: rgb(240.15, 251.85, 247.35);
  --colour-rgb-green-3-60-50: rgb(238.5, 251.5, 246.5);
  --colour-rgb-green-3-60-55: rgb(236.85, 251.15, 245.65);
  --colour-rgb-green-3-60-60: rgb(235.2, 250.8, 244.8);
  --colour-rgb-green-3-60-65: rgb(233.55, 250.45, 243.95);
  --colour-rgb-green-3-60-70: rgb(231.9, 250.1, 243.1);
  --colour-rgb-green-3-60-75: rgb(230.25, 249.75, 242.25);
  --colour-rgb-green-3-60-80: rgb(228.6, 249.4, 241.4);
  --colour-rgb-green-3-60-85: rgb(226.95, 249.05, 240.55);
  --colour-rgb-green-3-60-90: rgb(225.3, 248.7, 239.7);
  --colour-rgb-green-3-60-95: rgb(223.65, 248.35, 238.85);
  --colour-rgb-green-3-60-100: #def8ee;
  --colour-rgb-green-3-40: #DDF4EB;
  --colour-rgb-green-3-40-0: white;
  --colour-rgb-green-3-40-1: rgb(254.66, 254.89, 254.8);
  --colour-rgb-green-3-40-5: rgb(253.3, 254.45, 254);
  --colour-rgb-green-3-40-10: rgb(251.6, 253.9, 253);
  --colour-rgb-green-3-40-15: rgb(249.9, 253.35, 252);
  --colour-rgb-green-3-40-20: rgb(248.2, 252.8, 251);
  --colour-rgb-green-3-40-25: rgb(246.5, 252.25, 250);
  --colour-rgb-green-3-40-30: rgb(244.8, 251.7, 249);
  --colour-rgb-green-3-40-35: rgb(243.1, 251.15, 248);
  --colour-rgb-green-3-40-40: rgb(241.4, 250.6, 247);
  --colour-rgb-green-3-40-45: rgb(239.7, 250.05, 246);
  --colour-rgb-green-3-40-50: rgb(238, 249.5, 245);
  --colour-rgb-green-3-40-55: rgb(236.3, 248.95, 244);
  --colour-rgb-green-3-40-60: rgb(234.6, 248.4, 243);
  --colour-rgb-green-3-40-65: rgb(232.9, 247.85, 242);
  --colour-rgb-green-3-40-70: rgb(231.2, 247.3, 241);
  --colour-rgb-green-3-40-75: rgb(229.5, 246.75, 240);
  --colour-rgb-green-3-40-80: rgb(227.8, 246.2, 239);
  --colour-rgb-green-3-40-85: rgb(226.1, 245.65, 238);
  --colour-rgb-green-3-40-90: rgb(224.4, 245.1, 237);
  --colour-rgb-green-3-40-95: rgb(222.7, 244.55, 236);
  --colour-rgb-green-3-40-100: #ddf4eb;
  --colour-rgb-green-3-20: #F5F5F5;
  --colour-rgb-green-3-20-0: white;
  --colour-rgb-green-3-20-1: rgb(254.9, 254.9, 254.9);
  --colour-rgb-green-3-20-5: rgb(254.5, 254.5, 254.5);
  --colour-rgb-green-3-20-10: #fefefe;
  --colour-rgb-green-3-20-15: rgb(253.5, 253.5, 253.5);
  --colour-rgb-green-3-20-20: #fdfdfd;
  --colour-rgb-green-3-20-25: rgb(252.5, 252.5, 252.5);
  --colour-rgb-green-3-20-30: #fcfcfc;
  --colour-rgb-green-3-20-35: rgb(251.5, 251.5, 251.5);
  --colour-rgb-green-3-20-40: #fbfbfb;
  --colour-rgb-green-3-20-45: rgb(250.5, 250.5, 250.5);
  --colour-rgb-green-3-20-50: #fafafa;
  --colour-rgb-green-3-20-55: rgb(249.5, 249.5, 249.5);
  --colour-rgb-green-3-20-60: #f9f9f9;
  --colour-rgb-green-3-20-65: rgb(248.5, 248.5, 248.5);
  --colour-rgb-green-3-20-70: #f8f8f8;
  --colour-rgb-green-3-20-75: rgb(247.5, 247.5, 247.5);
  --colour-rgb-green-3-20-80: #f7f7f7;
  --colour-rgb-green-3-20-85: rgb(246.5, 246.5, 246.5);
  --colour-rgb-green-3-20-90: #f6f6f6;
  --colour-rgb-green-3-20-95: rgb(245.5, 245.5, 245.5);
  --colour-rgb-green-3-20-100: whitesmoke;
  --colour-rgb-green-3-10: #FAFEFD;
  --colour-rgb-green-3-10-0: white;
  --colour-rgb-green-3-10-1: rgb(254.95, 254.99, 254.98);
  --colour-rgb-green-3-10-5: rgb(254.75, 254.95, 254.9);
  --colour-rgb-green-3-10-10: rgb(254.5, 254.9, 254.8);
  --colour-rgb-green-3-10-15: rgb(254.25, 254.85, 254.7);
  --colour-rgb-green-3-10-20: rgb(254, 254.8, 254.6);
  --colour-rgb-green-3-10-25: rgb(253.75, 254.75, 254.5);
  --colour-rgb-green-3-10-30: rgb(253.5, 254.7, 254.4);
  --colour-rgb-green-3-10-35: rgb(253.25, 254.65, 254.3);
  --colour-rgb-green-3-10-40: rgb(253, 254.6, 254.2);
  --colour-rgb-green-3-10-45: rgb(252.75, 254.55, 254.1);
  --colour-rgb-green-3-10-50: rgb(252.5, 254.5, 254);
  --colour-rgb-green-3-10-55: rgb(252.25, 254.45, 253.9);
  --colour-rgb-green-3-10-60: rgb(252, 254.4, 253.8);
  --colour-rgb-green-3-10-65: rgb(251.75, 254.35, 253.7);
  --colour-rgb-green-3-10-70: rgb(251.5, 254.3, 253.6);
  --colour-rgb-green-3-10-75: rgb(251.25, 254.25, 253.5);
  --colour-rgb-green-3-10-80: rgb(251, 254.2, 253.4);
  --colour-rgb-green-3-10-85: rgb(250.75, 254.15, 253.3);
  --colour-rgb-green-3-10-90: rgb(250.5, 254.1, 253.2);
  --colour-rgb-green-3-10-95: rgb(250.25, 254.05, 253.1);
  --colour-rgb-green-3-10-100: #fafefd;
  --colour-rgb-error: #FF7070;
  --colour-rgb-error-0: white;
  --colour-rgb-error-1: rgb(255, 253.57, 253.57);
  --colour-rgb-error-5: rgb(255, 247.85, 247.85);
  --colour-rgb-error-10: rgb(255, 240.7, 240.7);
  --colour-rgb-error-15: rgb(255, 233.55, 233.55);
  --colour-rgb-error-20: rgb(255, 226.4, 226.4);
  --colour-rgb-error-25: rgb(255, 219.25, 219.25);
  --colour-rgb-error-30: rgb(255, 212.1, 212.1);
  --colour-rgb-error-35: rgb(255, 204.95, 204.95);
  --colour-rgb-error-40: rgb(255, 197.8, 197.8);
  --colour-rgb-error-45: rgb(255, 190.65, 190.65);
  --colour-rgb-error-50: rgb(255, 183.5, 183.5);
  --colour-rgb-error-55: rgb(255, 176.35, 176.35);
  --colour-rgb-error-60: rgb(255, 169.2, 169.2);
  --colour-rgb-error-65: rgb(255, 162.05, 162.05);
  --colour-rgb-error-70: rgb(255, 154.9, 154.9);
  --colour-rgb-error-75: rgb(255, 147.75, 147.75);
  --colour-rgb-error-80: rgb(255, 140.6, 140.6);
  --colour-rgb-error-85: rgb(255, 133.45, 133.45);
  --colour-rgb-error-90: rgb(255, 126.3, 126.3);
  --colour-rgb-error-95: rgb(255, 119.15, 119.15);
  --colour-rgb-error-100: #ff7070;
  --colour-rgb-error-light: #FFC2C2;
  --colour-rgb-error-light-0: white;
  --colour-rgb-error-light-1: rgb(255, 254.39, 254.39);
  --colour-rgb-error-light-5: rgb(255, 251.95, 251.95);
  --colour-rgb-error-light-10: rgb(255, 248.9, 248.9);
  --colour-rgb-error-light-15: rgb(255, 245.85, 245.85);
  --colour-rgb-error-light-20: rgb(255, 242.8, 242.8);
  --colour-rgb-error-light-25: rgb(255, 239.75, 239.75);
  --colour-rgb-error-light-30: rgb(255, 236.7, 236.7);
  --colour-rgb-error-light-35: rgb(255, 233.65, 233.65);
  --colour-rgb-error-light-40: rgb(255, 230.6, 230.6);
  --colour-rgb-error-light-45: rgb(255, 227.55, 227.55);
  --colour-rgb-error-light-50: rgb(255, 224.5, 224.5);
  --colour-rgb-error-light-55: rgb(255, 221.45, 221.45);
  --colour-rgb-error-light-60: rgb(255, 218.4, 218.4);
  --colour-rgb-error-light-65: rgb(255, 215.35, 215.35);
  --colour-rgb-error-light-70: rgb(255, 212.3, 212.3);
  --colour-rgb-error-light-75: rgb(255, 209.25, 209.25);
  --colour-rgb-error-light-80: rgb(255, 206.2, 206.2);
  --colour-rgb-error-light-85: rgb(255, 203.15, 203.15);
  --colour-rgb-error-light-90: rgb(255, 200.1, 200.1);
  --colour-rgb-error-light-95: rgb(255, 197.05, 197.05);
  --colour-rgb-error-light-100: #ffc2c2;
  --colour-rgb-success: #32d88d;
  --colour-rgb-success-0: white;
  --colour-rgb-success-1: rgb(252.95, 254.61, 253.86);
  --colour-rgb-success-5: rgb(244.75, 253.05, 249.3);
  --colour-rgb-success-10: rgb(234.5, 251.1, 243.6);
  --colour-rgb-success-15: rgb(224.25, 249.15, 237.9);
  --colour-rgb-success-20: rgb(214, 247.2, 232.2);
  --colour-rgb-success-25: rgb(203.75, 245.25, 226.5);
  --colour-rgb-success-30: rgb(193.5, 243.3, 220.8);
  --colour-rgb-success-35: rgb(183.25, 241.35, 215.1);
  --colour-rgb-success-40: rgb(173, 239.4, 209.4);
  --colour-rgb-success-45: rgb(162.75, 237.45, 203.7);
  --colour-rgb-success-50: rgb(152.5, 235.5, 198);
  --colour-rgb-success-55: rgb(142.25, 233.55, 192.3);
  --colour-rgb-success-60: rgb(132, 231.6, 186.6);
  --colour-rgb-success-65: rgb(121.75, 229.65, 180.9);
  --colour-rgb-success-70: rgb(111.5, 227.7, 175.2);
  --colour-rgb-success-75: rgb(101.25, 225.75, 169.5);
  --colour-rgb-success-80: rgb(91, 223.8, 163.8);
  --colour-rgb-success-85: rgb(80.75, 221.85, 158.1);
  --colour-rgb-success-90: rgb(70.5, 219.9, 152.4);
  --colour-rgb-success-95: rgb(60.25, 217.95, 146.7);
  --colour-rgb-success-100: #32d88d;
  --colour-rgba-black: black;
  --colour-rgba-black-0: rgba(0, 0, 0, 0);
  --colour-rgba-black-1: rgba(0, 0, 0, 0.01);
  --colour-rgba-black-5: rgba(0, 0, 0, 0.05);
  --colour-rgba-black-10: rgba(0, 0, 0, 0.1);
  --colour-rgba-black-15: rgba(0, 0, 0, 0.15);
  --colour-rgba-black-20: rgba(0, 0, 0, 0.2);
  --colour-rgba-black-25: rgba(0, 0, 0, 0.25);
  --colour-rgba-black-30: rgba(0, 0, 0, 0.3);
  --colour-rgba-black-35: rgba(0, 0, 0, 0.35);
  --colour-rgba-black-40: rgba(0, 0, 0, 0.4);
  --colour-rgba-black-45: rgba(0, 0, 0, 0.45);
  --colour-rgba-black-50: rgba(0, 0, 0, 0.5);
  --colour-rgba-black-55: rgba(0, 0, 0, 0.55);
  --colour-rgba-black-60: rgba(0, 0, 0, 0.6);
  --colour-rgba-black-65: rgba(0, 0, 0, 0.65);
  --colour-rgba-black-70: rgba(0, 0, 0, 0.7);
  --colour-rgba-black-75: rgba(0, 0, 0, 0.75);
  --colour-rgba-black-80: rgba(0, 0, 0, 0.8);
  --colour-rgba-black-85: rgba(0, 0, 0, 0.85);
  --colour-rgba-black-90: rgba(0, 0, 0, 0.9);
  --colour-rgba-black-95: rgba(0, 0, 0, 0.95);
  --colour-rgba-black-100: black;
  --colour-rgba-black-10: #e5e5e5;
  --colour-rgba-black-10-0: rgba(229, 229, 229, 0);
  --colour-rgba-black-10-1: rgba(229, 229, 229, 0.01);
  --colour-rgba-black-10-5: rgba(229, 229, 229, 0.05);
  --colour-rgba-black-10-10: rgba(229, 229, 229, 0.1);
  --colour-rgba-black-10-15: rgba(229, 229, 229, 0.15);
  --colour-rgba-black-10-20: rgba(229, 229, 229, 0.2);
  --colour-rgba-black-10-25: rgba(229, 229, 229, 0.25);
  --colour-rgba-black-10-30: rgba(229, 229, 229, 0.3);
  --colour-rgba-black-10-35: rgba(229, 229, 229, 0.35);
  --colour-rgba-black-10-40: rgba(229, 229, 229, 0.4);
  --colour-rgba-black-10-45: rgba(229, 229, 229, 0.45);
  --colour-rgba-black-10-50: rgba(229, 229, 229, 0.5);
  --colour-rgba-black-10-55: rgba(229, 229, 229, 0.55);
  --colour-rgba-black-10-60: rgba(229, 229, 229, 0.6);
  --colour-rgba-black-10-65: rgba(229, 229, 229, 0.65);
  --colour-rgba-black-10-70: rgba(229, 229, 229, 0.7);
  --colour-rgba-black-10-75: rgba(229, 229, 229, 0.75);
  --colour-rgba-black-10-80: rgba(229, 229, 229, 0.8);
  --colour-rgba-black-10-85: rgba(229, 229, 229, 0.85);
  --colour-rgba-black-10-90: rgba(229, 229, 229, 0.9);
  --colour-rgba-black-10-95: rgba(229, 229, 229, 0.95);
  --colour-rgba-black-10-100: #e5e5e5;
  --colour-rgba-black-4: whitesmoke;
  --colour-rgba-black-4-0: rgba(245, 245, 245, 0);
  --colour-rgba-black-4-1: rgba(245, 245, 245, 0.01);
  --colour-rgba-black-4-5: rgba(245, 245, 245, 0.05);
  --colour-rgba-black-4-10: rgba(245, 245, 245, 0.1);
  --colour-rgba-black-4-15: rgba(245, 245, 245, 0.15);
  --colour-rgba-black-4-20: rgba(245, 245, 245, 0.2);
  --colour-rgba-black-4-25: rgba(245, 245, 245, 0.25);
  --colour-rgba-black-4-30: rgba(245, 245, 245, 0.3);
  --colour-rgba-black-4-35: rgba(245, 245, 245, 0.35);
  --colour-rgba-black-4-40: rgba(245, 245, 245, 0.4);
  --colour-rgba-black-4-45: rgba(245, 245, 245, 0.45);
  --colour-rgba-black-4-50: rgba(245, 245, 245, 0.5);
  --colour-rgba-black-4-55: rgba(245, 245, 245, 0.55);
  --colour-rgba-black-4-60: rgba(245, 245, 245, 0.6);
  --colour-rgba-black-4-65: rgba(245, 245, 245, 0.65);
  --colour-rgba-black-4-70: rgba(245, 245, 245, 0.7);
  --colour-rgba-black-4-75: rgba(245, 245, 245, 0.75);
  --colour-rgba-black-4-80: rgba(245, 245, 245, 0.8);
  --colour-rgba-black-4-85: rgba(245, 245, 245, 0.85);
  --colour-rgba-black-4-90: rgba(245, 245, 245, 0.9);
  --colour-rgba-black-4-95: rgba(245, 245, 245, 0.95);
  --colour-rgba-black-4-100: whitesmoke;
  --colour-rgba-gray-1: #212121;
  --colour-rgba-gray-1-0: rgba(33, 33, 33, 0);
  --colour-rgba-gray-1-1: rgba(33, 33, 33, 0.01);
  --colour-rgba-gray-1-5: rgba(33, 33, 33, 0.05);
  --colour-rgba-gray-1-10: rgba(33, 33, 33, 0.1);
  --colour-rgba-gray-1-15: rgba(33, 33, 33, 0.15);
  --colour-rgba-gray-1-20: rgba(33, 33, 33, 0.2);
  --colour-rgba-gray-1-25: rgba(33, 33, 33, 0.25);
  --colour-rgba-gray-1-30: rgba(33, 33, 33, 0.3);
  --colour-rgba-gray-1-35: rgba(33, 33, 33, 0.35);
  --colour-rgba-gray-1-40: rgba(33, 33, 33, 0.4);
  --colour-rgba-gray-1-45: rgba(33, 33, 33, 0.45);
  --colour-rgba-gray-1-50: rgba(33, 33, 33, 0.5);
  --colour-rgba-gray-1-55: rgba(33, 33, 33, 0.55);
  --colour-rgba-gray-1-60: rgba(33, 33, 33, 0.6);
  --colour-rgba-gray-1-65: rgba(33, 33, 33, 0.65);
  --colour-rgba-gray-1-70: rgba(33, 33, 33, 0.7);
  --colour-rgba-gray-1-75: rgba(33, 33, 33, 0.75);
  --colour-rgba-gray-1-80: rgba(33, 33, 33, 0.8);
  --colour-rgba-gray-1-85: rgba(33, 33, 33, 0.85);
  --colour-rgba-gray-1-90: rgba(33, 33, 33, 0.9);
  --colour-rgba-gray-1-95: rgba(33, 33, 33, 0.95);
  --colour-rgba-gray-1-100: #212121;
  --colour-rgba-gray-6: #535e6e;
  --colour-rgba-gray-6-0: rgba(83, 94, 110, 0);
  --colour-rgba-gray-6-1: rgba(83, 94, 110, 0.01);
  --colour-rgba-gray-6-5: rgba(83, 94, 110, 0.05);
  --colour-rgba-gray-6-10: rgba(83, 94, 110, 0.1);
  --colour-rgba-gray-6-15: rgba(83, 94, 110, 0.15);
  --colour-rgba-gray-6-20: rgba(83, 94, 110, 0.2);
  --colour-rgba-gray-6-25: rgba(83, 94, 110, 0.25);
  --colour-rgba-gray-6-30: rgba(83, 94, 110, 0.3);
  --colour-rgba-gray-6-35: rgba(83, 94, 110, 0.35);
  --colour-rgba-gray-6-40: rgba(83, 94, 110, 0.4);
  --colour-rgba-gray-6-45: rgba(83, 94, 110, 0.45);
  --colour-rgba-gray-6-50: rgba(83, 94, 110, 0.5);
  --colour-rgba-gray-6-55: rgba(83, 94, 110, 0.55);
  --colour-rgba-gray-6-60: rgba(83, 94, 110, 0.6);
  --colour-rgba-gray-6-65: rgba(83, 94, 110, 0.65);
  --colour-rgba-gray-6-70: rgba(83, 94, 110, 0.7);
  --colour-rgba-gray-6-75: rgba(83, 94, 110, 0.75);
  --colour-rgba-gray-6-80: rgba(83, 94, 110, 0.8);
  --colour-rgba-gray-6-85: rgba(83, 94, 110, 0.85);
  --colour-rgba-gray-6-90: rgba(83, 94, 110, 0.9);
  --colour-rgba-gray-6-95: rgba(83, 94, 110, 0.95);
  --colour-rgba-gray-6-100: #535e6e;
  --colour-rgba-white: white;
  --colour-rgba-white-0: rgba(255, 255, 255, 0);
  --colour-rgba-white-1: rgba(255, 255, 255, 0.01);
  --colour-rgba-white-5: rgba(255, 255, 255, 0.05);
  --colour-rgba-white-10: rgba(255, 255, 255, 0.1);
  --colour-rgba-white-15: rgba(255, 255, 255, 0.15);
  --colour-rgba-white-20: rgba(255, 255, 255, 0.2);
  --colour-rgba-white-25: rgba(255, 255, 255, 0.25);
  --colour-rgba-white-30: rgba(255, 255, 255, 0.3);
  --colour-rgba-white-35: rgba(255, 255, 255, 0.35);
  --colour-rgba-white-40: rgba(255, 255, 255, 0.4);
  --colour-rgba-white-45: rgba(255, 255, 255, 0.45);
  --colour-rgba-white-50: rgba(255, 255, 255, 0.5);
  --colour-rgba-white-55: rgba(255, 255, 255, 0.55);
  --colour-rgba-white-60: rgba(255, 255, 255, 0.6);
  --colour-rgba-white-65: rgba(255, 255, 255, 0.65);
  --colour-rgba-white-70: rgba(255, 255, 255, 0.7);
  --colour-rgba-white-75: rgba(255, 255, 255, 0.75);
  --colour-rgba-white-80: rgba(255, 255, 255, 0.8);
  --colour-rgba-white-85: rgba(255, 255, 255, 0.85);
  --colour-rgba-white-90: rgba(255, 255, 255, 0.9);
  --colour-rgba-white-95: rgba(255, 255, 255, 0.95);
  --colour-rgba-white-100: white;
  --colour-rgba-blue-1: #0e163f;
  --colour-rgba-blue-1-0: rgba(14, 22, 63, 0);
  --colour-rgba-blue-1-1: rgba(14, 22, 63, 0.01);
  --colour-rgba-blue-1-5: rgba(14, 22, 63, 0.05);
  --colour-rgba-blue-1-10: rgba(14, 22, 63, 0.1);
  --colour-rgba-blue-1-15: rgba(14, 22, 63, 0.15);
  --colour-rgba-blue-1-20: rgba(14, 22, 63, 0.2);
  --colour-rgba-blue-1-25: rgba(14, 22, 63, 0.25);
  --colour-rgba-blue-1-30: rgba(14, 22, 63, 0.3);
  --colour-rgba-blue-1-35: rgba(14, 22, 63, 0.35);
  --colour-rgba-blue-1-40: rgba(14, 22, 63, 0.4);
  --colour-rgba-blue-1-45: rgba(14, 22, 63, 0.45);
  --colour-rgba-blue-1-50: rgba(14, 22, 63, 0.5);
  --colour-rgba-blue-1-55: rgba(14, 22, 63, 0.55);
  --colour-rgba-blue-1-60: rgba(14, 22, 63, 0.6);
  --colour-rgba-blue-1-65: rgba(14, 22, 63, 0.65);
  --colour-rgba-blue-1-70: rgba(14, 22, 63, 0.7);
  --colour-rgba-blue-1-75: rgba(14, 22, 63, 0.75);
  --colour-rgba-blue-1-80: rgba(14, 22, 63, 0.8);
  --colour-rgba-blue-1-85: rgba(14, 22, 63, 0.85);
  --colour-rgba-blue-1-90: rgba(14, 22, 63, 0.9);
  --colour-rgba-blue-1-95: rgba(14, 22, 63, 0.95);
  --colour-rgba-blue-1-100: #0e163f;
  --colour-rgba-blue-2: #344abe;
  --colour-rgba-blue-2-0: rgba(52, 74, 190, 0);
  --colour-rgba-blue-2-1: rgba(52, 74, 190, 0.01);
  --colour-rgba-blue-2-5: rgba(52, 74, 190, 0.05);
  --colour-rgba-blue-2-10: rgba(52, 74, 190, 0.1);
  --colour-rgba-blue-2-15: rgba(52, 74, 190, 0.15);
  --colour-rgba-blue-2-20: rgba(52, 74, 190, 0.2);
  --colour-rgba-blue-2-25: rgba(52, 74, 190, 0.25);
  --colour-rgba-blue-2-30: rgba(52, 74, 190, 0.3);
  --colour-rgba-blue-2-35: rgba(52, 74, 190, 0.35);
  --colour-rgba-blue-2-40: rgba(52, 74, 190, 0.4);
  --colour-rgba-blue-2-45: rgba(52, 74, 190, 0.45);
  --colour-rgba-blue-2-50: rgba(52, 74, 190, 0.5);
  --colour-rgba-blue-2-55: rgba(52, 74, 190, 0.55);
  --colour-rgba-blue-2-60: rgba(52, 74, 190, 0.6);
  --colour-rgba-blue-2-65: rgba(52, 74, 190, 0.65);
  --colour-rgba-blue-2-70: rgba(52, 74, 190, 0.7);
  --colour-rgba-blue-2-75: rgba(52, 74, 190, 0.75);
  --colour-rgba-blue-2-80: rgba(52, 74, 190, 0.8);
  --colour-rgba-blue-2-85: rgba(52, 74, 190, 0.85);
  --colour-rgba-blue-2-90: rgba(52, 74, 190, 0.9);
  --colour-rgba-blue-2-95: rgba(52, 74, 190, 0.95);
  --colour-rgba-blue-2-100: #344abe;
  --colour-rgba-blue-2-50: #566eeb;
  --colour-rgba-blue-2-50-0: rgba(86, 110, 235, 0);
  --colour-rgba-blue-2-50-1: rgba(86, 110, 235, 0.01);
  --colour-rgba-blue-2-50-5: rgba(86, 110, 235, 0.05);
  --colour-rgba-blue-2-50-10: rgba(86, 110, 235, 0.1);
  --colour-rgba-blue-2-50-15: rgba(86, 110, 235, 0.15);
  --colour-rgba-blue-2-50-20: rgba(86, 110, 235, 0.2);
  --colour-rgba-blue-2-50-25: rgba(86, 110, 235, 0.25);
  --colour-rgba-blue-2-50-30: rgba(86, 110, 235, 0.3);
  --colour-rgba-blue-2-50-35: rgba(86, 110, 235, 0.35);
  --colour-rgba-blue-2-50-40: rgba(86, 110, 235, 0.4);
  --colour-rgba-blue-2-50-45: rgba(86, 110, 235, 0.45);
  --colour-rgba-blue-2-50-50: rgba(86, 110, 235, 0.5);
  --colour-rgba-blue-2-50-55: rgba(86, 110, 235, 0.55);
  --colour-rgba-blue-2-50-60: rgba(86, 110, 235, 0.6);
  --colour-rgba-blue-2-50-65: rgba(86, 110, 235, 0.65);
  --colour-rgba-blue-2-50-70: rgba(86, 110, 235, 0.7);
  --colour-rgba-blue-2-50-75: rgba(86, 110, 235, 0.75);
  --colour-rgba-blue-2-50-80: rgba(86, 110, 235, 0.8);
  --colour-rgba-blue-2-50-85: rgba(86, 110, 235, 0.85);
  --colour-rgba-blue-2-50-90: rgba(86, 110, 235, 0.9);
  --colour-rgba-blue-2-50-95: rgba(86, 110, 235, 0.95);
  --colour-rgba-blue-2-50-100: #566eeb;
  --colour-rgba-blue-3: #c6ceff;
  --colour-rgba-blue-3-0: rgba(198, 206, 255, 0);
  --colour-rgba-blue-3-1: rgba(198, 206, 255, 0.01);
  --colour-rgba-blue-3-5: rgba(198, 206, 255, 0.05);
  --colour-rgba-blue-3-10: rgba(198, 206, 255, 0.1);
  --colour-rgba-blue-3-15: rgba(198, 206, 255, 0.15);
  --colour-rgba-blue-3-20: rgba(198, 206, 255, 0.2);
  --colour-rgba-blue-3-25: rgba(198, 206, 255, 0.25);
  --colour-rgba-blue-3-30: rgba(198, 206, 255, 0.3);
  --colour-rgba-blue-3-35: rgba(198, 206, 255, 0.35);
  --colour-rgba-blue-3-40: rgba(198, 206, 255, 0.4);
  --colour-rgba-blue-3-45: rgba(198, 206, 255, 0.45);
  --colour-rgba-blue-3-50: rgba(198, 206, 255, 0.5);
  --colour-rgba-blue-3-55: rgba(198, 206, 255, 0.55);
  --colour-rgba-blue-3-60: rgba(198, 206, 255, 0.6);
  --colour-rgba-blue-3-65: rgba(198, 206, 255, 0.65);
  --colour-rgba-blue-3-70: rgba(198, 206, 255, 0.7);
  --colour-rgba-blue-3-75: rgba(198, 206, 255, 0.75);
  --colour-rgba-blue-3-80: rgba(198, 206, 255, 0.8);
  --colour-rgba-blue-3-85: rgba(198, 206, 255, 0.85);
  --colour-rgba-blue-3-90: rgba(198, 206, 255, 0.9);
  --colour-rgba-blue-3-95: rgba(198, 206, 255, 0.95);
  --colour-rgba-blue-3-100: #c6ceff;
  --colour-rgba-blue-3-300: #bfcaff;
  --colour-rgba-blue-3-300-0: rgba(191, 202, 255, 0);
  --colour-rgba-blue-3-300-1: rgba(191, 202, 255, 0.01);
  --colour-rgba-blue-3-300-5: rgba(191, 202, 255, 0.05);
  --colour-rgba-blue-3-300-10: rgba(191, 202, 255, 0.1);
  --colour-rgba-blue-3-300-15: rgba(191, 202, 255, 0.15);
  --colour-rgba-blue-3-300-20: rgba(191, 202, 255, 0.2);
  --colour-rgba-blue-3-300-25: rgba(191, 202, 255, 0.25);
  --colour-rgba-blue-3-300-30: rgba(191, 202, 255, 0.3);
  --colour-rgba-blue-3-300-35: rgba(191, 202, 255, 0.35);
  --colour-rgba-blue-3-300-40: rgba(191, 202, 255, 0.4);
  --colour-rgba-blue-3-300-45: rgba(191, 202, 255, 0.45);
  --colour-rgba-blue-3-300-50: rgba(191, 202, 255, 0.5);
  --colour-rgba-blue-3-300-55: rgba(191, 202, 255, 0.55);
  --colour-rgba-blue-3-300-60: rgba(191, 202, 255, 0.6);
  --colour-rgba-blue-3-300-65: rgba(191, 202, 255, 0.65);
  --colour-rgba-blue-3-300-70: rgba(191, 202, 255, 0.7);
  --colour-rgba-blue-3-300-75: rgba(191, 202, 255, 0.75);
  --colour-rgba-blue-3-300-80: rgba(191, 202, 255, 0.8);
  --colour-rgba-blue-3-300-85: rgba(191, 202, 255, 0.85);
  --colour-rgba-blue-3-300-90: rgba(191, 202, 255, 0.9);
  --colour-rgba-blue-3-300-95: rgba(191, 202, 255, 0.95);
  --colour-rgba-blue-3-300-100: #bfcaff;
  --colour-rgba-blue-3-80: #d7dcfa;
  --colour-rgba-blue-3-80-0: rgba(215, 220, 250, 0);
  --colour-rgba-blue-3-80-1: rgba(215, 220, 250, 0.01);
  --colour-rgba-blue-3-80-5: rgba(215, 220, 250, 0.05);
  --colour-rgba-blue-3-80-10: rgba(215, 220, 250, 0.1);
  --colour-rgba-blue-3-80-15: rgba(215, 220, 250, 0.15);
  --colour-rgba-blue-3-80-20: rgba(215, 220, 250, 0.2);
  --colour-rgba-blue-3-80-25: rgba(215, 220, 250, 0.25);
  --colour-rgba-blue-3-80-30: rgba(215, 220, 250, 0.3);
  --colour-rgba-blue-3-80-35: rgba(215, 220, 250, 0.35);
  --colour-rgba-blue-3-80-40: rgba(215, 220, 250, 0.4);
  --colour-rgba-blue-3-80-45: rgba(215, 220, 250, 0.45);
  --colour-rgba-blue-3-80-50: rgba(215, 220, 250, 0.5);
  --colour-rgba-blue-3-80-55: rgba(215, 220, 250, 0.55);
  --colour-rgba-blue-3-80-60: rgba(215, 220, 250, 0.6);
  --colour-rgba-blue-3-80-65: rgba(215, 220, 250, 0.65);
  --colour-rgba-blue-3-80-70: rgba(215, 220, 250, 0.7);
  --colour-rgba-blue-3-80-75: rgba(215, 220, 250, 0.75);
  --colour-rgba-blue-3-80-80: rgba(215, 220, 250, 0.8);
  --colour-rgba-blue-3-80-85: rgba(215, 220, 250, 0.85);
  --colour-rgba-blue-3-80-90: rgba(215, 220, 250, 0.9);
  --colour-rgba-blue-3-80-95: rgba(215, 220, 250, 0.95);
  --colour-rgba-blue-3-80-100: #d7dcfa;
  --colour-rgba-blue-3-60: #dfe0fe;
  --colour-rgba-blue-3-60-0: rgba(223, 224, 254, 0);
  --colour-rgba-blue-3-60-1: rgba(223, 224, 254, 0.01);
  --colour-rgba-blue-3-60-5: rgba(223, 224, 254, 0.05);
  --colour-rgba-blue-3-60-10: rgba(223, 224, 254, 0.1);
  --colour-rgba-blue-3-60-15: rgba(223, 224, 254, 0.15);
  --colour-rgba-blue-3-60-20: rgba(223, 224, 254, 0.2);
  --colour-rgba-blue-3-60-25: rgba(223, 224, 254, 0.25);
  --colour-rgba-blue-3-60-30: rgba(223, 224, 254, 0.3);
  --colour-rgba-blue-3-60-35: rgba(223, 224, 254, 0.35);
  --colour-rgba-blue-3-60-40: rgba(223, 224, 254, 0.4);
  --colour-rgba-blue-3-60-45: rgba(223, 224, 254, 0.45);
  --colour-rgba-blue-3-60-50: rgba(223, 224, 254, 0.5);
  --colour-rgba-blue-3-60-55: rgba(223, 224, 254, 0.55);
  --colour-rgba-blue-3-60-60: rgba(223, 224, 254, 0.6);
  --colour-rgba-blue-3-60-65: rgba(223, 224, 254, 0.65);
  --colour-rgba-blue-3-60-70: rgba(223, 224, 254, 0.7);
  --colour-rgba-blue-3-60-75: rgba(223, 224, 254, 0.75);
  --colour-rgba-blue-3-60-80: rgba(223, 224, 254, 0.8);
  --colour-rgba-blue-3-60-85: rgba(223, 224, 254, 0.85);
  --colour-rgba-blue-3-60-90: rgba(223, 224, 254, 0.9);
  --colour-rgba-blue-3-60-95: rgba(223, 224, 254, 0.95);
  --colour-rgba-blue-3-60-100: #dfe0fe;
  --colour-rgba-blue-3-40: #e9eaff;
  --colour-rgba-blue-3-40-0: rgba(233, 234, 255, 0);
  --colour-rgba-blue-3-40-1: rgba(233, 234, 255, 0.01);
  --colour-rgba-blue-3-40-5: rgba(233, 234, 255, 0.05);
  --colour-rgba-blue-3-40-10: rgba(233, 234, 255, 0.1);
  --colour-rgba-blue-3-40-15: rgba(233, 234, 255, 0.15);
  --colour-rgba-blue-3-40-20: rgba(233, 234, 255, 0.2);
  --colour-rgba-blue-3-40-25: rgba(233, 234, 255, 0.25);
  --colour-rgba-blue-3-40-30: rgba(233, 234, 255, 0.3);
  --colour-rgba-blue-3-40-35: rgba(233, 234, 255, 0.35);
  --colour-rgba-blue-3-40-40: rgba(233, 234, 255, 0.4);
  --colour-rgba-blue-3-40-45: rgba(233, 234, 255, 0.45);
  --colour-rgba-blue-3-40-50: rgba(233, 234, 255, 0.5);
  --colour-rgba-blue-3-40-55: rgba(233, 234, 255, 0.55);
  --colour-rgba-blue-3-40-60: rgba(233, 234, 255, 0.6);
  --colour-rgba-blue-3-40-65: rgba(233, 234, 255, 0.65);
  --colour-rgba-blue-3-40-70: rgba(233, 234, 255, 0.7);
  --colour-rgba-blue-3-40-75: rgba(233, 234, 255, 0.75);
  --colour-rgba-blue-3-40-80: rgba(233, 234, 255, 0.8);
  --colour-rgba-blue-3-40-85: rgba(233, 234, 255, 0.85);
  --colour-rgba-blue-3-40-90: rgba(233, 234, 255, 0.9);
  --colour-rgba-blue-3-40-95: rgba(233, 234, 255, 0.95);
  --colour-rgba-blue-3-40-100: #e9eaff;
  --colour-rgba-blue-3-20: #f4f5ff;
  --colour-rgba-blue-3-20-0: rgba(244, 245, 255, 0);
  --colour-rgba-blue-3-20-1: rgba(244, 245, 255, 0.01);
  --colour-rgba-blue-3-20-5: rgba(244, 245, 255, 0.05);
  --colour-rgba-blue-3-20-10: rgba(244, 245, 255, 0.1);
  --colour-rgba-blue-3-20-15: rgba(244, 245, 255, 0.15);
  --colour-rgba-blue-3-20-20: rgba(244, 245, 255, 0.2);
  --colour-rgba-blue-3-20-25: rgba(244, 245, 255, 0.25);
  --colour-rgba-blue-3-20-30: rgba(244, 245, 255, 0.3);
  --colour-rgba-blue-3-20-35: rgba(244, 245, 255, 0.35);
  --colour-rgba-blue-3-20-40: rgba(244, 245, 255, 0.4);
  --colour-rgba-blue-3-20-45: rgba(244, 245, 255, 0.45);
  --colour-rgba-blue-3-20-50: rgba(244, 245, 255, 0.5);
  --colour-rgba-blue-3-20-55: rgba(244, 245, 255, 0.55);
  --colour-rgba-blue-3-20-60: rgba(244, 245, 255, 0.6);
  --colour-rgba-blue-3-20-65: rgba(244, 245, 255, 0.65);
  --colour-rgba-blue-3-20-70: rgba(244, 245, 255, 0.7);
  --colour-rgba-blue-3-20-75: rgba(244, 245, 255, 0.75);
  --colour-rgba-blue-3-20-80: rgba(244, 245, 255, 0.8);
  --colour-rgba-blue-3-20-85: rgba(244, 245, 255, 0.85);
  --colour-rgba-blue-3-20-90: rgba(244, 245, 255, 0.9);
  --colour-rgba-blue-3-20-95: rgba(244, 245, 255, 0.95);
  --colour-rgba-blue-3-20-100: #f4f5ff;
  --colour-rgba-blue-3-10: #f5f4ff;
  --colour-rgba-blue-3-10-0: rgba(245, 244, 255, 0);
  --colour-rgba-blue-3-10-1: rgba(245, 244, 255, 0.01);
  --colour-rgba-blue-3-10-5: rgba(245, 244, 255, 0.05);
  --colour-rgba-blue-3-10-10: rgba(245, 244, 255, 0.1);
  --colour-rgba-blue-3-10-15: rgba(245, 244, 255, 0.15);
  --colour-rgba-blue-3-10-20: rgba(245, 244, 255, 0.2);
  --colour-rgba-blue-3-10-25: rgba(245, 244, 255, 0.25);
  --colour-rgba-blue-3-10-30: rgba(245, 244, 255, 0.3);
  --colour-rgba-blue-3-10-35: rgba(245, 244, 255, 0.35);
  --colour-rgba-blue-3-10-40: rgba(245, 244, 255, 0.4);
  --colour-rgba-blue-3-10-45: rgba(245, 244, 255, 0.45);
  --colour-rgba-blue-3-10-50: rgba(245, 244, 255, 0.5);
  --colour-rgba-blue-3-10-55: rgba(245, 244, 255, 0.55);
  --colour-rgba-blue-3-10-60: rgba(245, 244, 255, 0.6);
  --colour-rgba-blue-3-10-65: rgba(245, 244, 255, 0.65);
  --colour-rgba-blue-3-10-70: rgba(245, 244, 255, 0.7);
  --colour-rgba-blue-3-10-75: rgba(245, 244, 255, 0.75);
  --colour-rgba-blue-3-10-80: rgba(245, 244, 255, 0.8);
  --colour-rgba-blue-3-10-85: rgba(245, 244, 255, 0.85);
  --colour-rgba-blue-3-10-90: rgba(245, 244, 255, 0.9);
  --colour-rgba-blue-3-10-95: rgba(245, 244, 255, 0.95);
  --colour-rgba-blue-3-10-100: #f5f4ff;
  --colour-rgba-blue-2-hover: #4663ff;
  --colour-rgba-blue-2-hover-0: rgba(70, 99, 255, 0);
  --colour-rgba-blue-2-hover-1: rgba(70, 99, 255, 0.01);
  --colour-rgba-blue-2-hover-5: rgba(70, 99, 255, 0.05);
  --colour-rgba-blue-2-hover-10: rgba(70, 99, 255, 0.1);
  --colour-rgba-blue-2-hover-15: rgba(70, 99, 255, 0.15);
  --colour-rgba-blue-2-hover-20: rgba(70, 99, 255, 0.2);
  --colour-rgba-blue-2-hover-25: rgba(70, 99, 255, 0.25);
  --colour-rgba-blue-2-hover-30: rgba(70, 99, 255, 0.3);
  --colour-rgba-blue-2-hover-35: rgba(70, 99, 255, 0.35);
  --colour-rgba-blue-2-hover-40: rgba(70, 99, 255, 0.4);
  --colour-rgba-blue-2-hover-45: rgba(70, 99, 255, 0.45);
  --colour-rgba-blue-2-hover-50: rgba(70, 99, 255, 0.5);
  --colour-rgba-blue-2-hover-55: rgba(70, 99, 255, 0.55);
  --colour-rgba-blue-2-hover-60: rgba(70, 99, 255, 0.6);
  --colour-rgba-blue-2-hover-65: rgba(70, 99, 255, 0.65);
  --colour-rgba-blue-2-hover-70: rgba(70, 99, 255, 0.7);
  --colour-rgba-blue-2-hover-75: rgba(70, 99, 255, 0.75);
  --colour-rgba-blue-2-hover-80: rgba(70, 99, 255, 0.8);
  --colour-rgba-blue-2-hover-85: rgba(70, 99, 255, 0.85);
  --colour-rgba-blue-2-hover-90: rgba(70, 99, 255, 0.9);
  --colour-rgba-blue-2-hover-95: rgba(70, 99, 255, 0.95);
  --colour-rgba-blue-2-hover-100: #4663ff;
  --colour-rgba-green-1: #07281c;
  --colour-rgba-green-1-0: rgba(7, 40, 28, 0);
  --colour-rgba-green-1-1: rgba(7, 40, 28, 0.01);
  --colour-rgba-green-1-5: rgba(7, 40, 28, 0.05);
  --colour-rgba-green-1-10: rgba(7, 40, 28, 0.1);
  --colour-rgba-green-1-15: rgba(7, 40, 28, 0.15);
  --colour-rgba-green-1-20: rgba(7, 40, 28, 0.2);
  --colour-rgba-green-1-25: rgba(7, 40, 28, 0.25);
  --colour-rgba-green-1-30: rgba(7, 40, 28, 0.3);
  --colour-rgba-green-1-35: rgba(7, 40, 28, 0.35);
  --colour-rgba-green-1-40: rgba(7, 40, 28, 0.4);
  --colour-rgba-green-1-45: rgba(7, 40, 28, 0.45);
  --colour-rgba-green-1-50: rgba(7, 40, 28, 0.5);
  --colour-rgba-green-1-55: rgba(7, 40, 28, 0.55);
  --colour-rgba-green-1-60: rgba(7, 40, 28, 0.6);
  --colour-rgba-green-1-65: rgba(7, 40, 28, 0.65);
  --colour-rgba-green-1-70: rgba(7, 40, 28, 0.7);
  --colour-rgba-green-1-75: rgba(7, 40, 28, 0.75);
  --colour-rgba-green-1-80: rgba(7, 40, 28, 0.8);
  --colour-rgba-green-1-85: rgba(7, 40, 28, 0.85);
  --colour-rgba-green-1-90: rgba(7, 40, 28, 0.9);
  --colour-rgba-green-1-95: rgba(7, 40, 28, 0.95);
  --colour-rgba-green-1-100: #07281c;
  --colour-rgba-green-2: #008575;
  --colour-rgba-green-2-0: rgba(0, 133, 117, 0);
  --colour-rgba-green-2-1: rgba(0, 133, 117, 0.01);
  --colour-rgba-green-2-5: rgba(0, 133, 117, 0.05);
  --colour-rgba-green-2-10: rgba(0, 133, 117, 0.1);
  --colour-rgba-green-2-15: rgba(0, 133, 117, 0.15);
  --colour-rgba-green-2-20: rgba(0, 133, 117, 0.2);
  --colour-rgba-green-2-25: rgba(0, 133, 117, 0.25);
  --colour-rgba-green-2-30: rgba(0, 133, 117, 0.3);
  --colour-rgba-green-2-35: rgba(0, 133, 117, 0.35);
  --colour-rgba-green-2-40: rgba(0, 133, 117, 0.4);
  --colour-rgba-green-2-45: rgba(0, 133, 117, 0.45);
  --colour-rgba-green-2-50: rgba(0, 133, 117, 0.5);
  --colour-rgba-green-2-55: rgba(0, 133, 117, 0.55);
  --colour-rgba-green-2-60: rgba(0, 133, 117, 0.6);
  --colour-rgba-green-2-65: rgba(0, 133, 117, 0.65);
  --colour-rgba-green-2-70: rgba(0, 133, 117, 0.7);
  --colour-rgba-green-2-75: rgba(0, 133, 117, 0.75);
  --colour-rgba-green-2-80: rgba(0, 133, 117, 0.8);
  --colour-rgba-green-2-85: rgba(0, 133, 117, 0.85);
  --colour-rgba-green-2-90: rgba(0, 133, 117, 0.9);
  --colour-rgba-green-2-95: rgba(0, 133, 117, 0.95);
  --colour-rgba-green-2-100: #008575;
  --colour-rgba-green-3: #c8f3e3;
  --colour-rgba-green-3-0: rgba(200, 243, 227, 0);
  --colour-rgba-green-3-1: rgba(200, 243, 227, 0.01);
  --colour-rgba-green-3-5: rgba(200, 243, 227, 0.05);
  --colour-rgba-green-3-10: rgba(200, 243, 227, 0.1);
  --colour-rgba-green-3-15: rgba(200, 243, 227, 0.15);
  --colour-rgba-green-3-20: rgba(200, 243, 227, 0.2);
  --colour-rgba-green-3-25: rgba(200, 243, 227, 0.25);
  --colour-rgba-green-3-30: rgba(200, 243, 227, 0.3);
  --colour-rgba-green-3-35: rgba(200, 243, 227, 0.35);
  --colour-rgba-green-3-40: rgba(200, 243, 227, 0.4);
  --colour-rgba-green-3-45: rgba(200, 243, 227, 0.45);
  --colour-rgba-green-3-50: rgba(200, 243, 227, 0.5);
  --colour-rgba-green-3-55: rgba(200, 243, 227, 0.55);
  --colour-rgba-green-3-60: rgba(200, 243, 227, 0.6);
  --colour-rgba-green-3-65: rgba(200, 243, 227, 0.65);
  --colour-rgba-green-3-70: rgba(200, 243, 227, 0.7);
  --colour-rgba-green-3-75: rgba(200, 243, 227, 0.75);
  --colour-rgba-green-3-80: rgba(200, 243, 227, 0.8);
  --colour-rgba-green-3-85: rgba(200, 243, 227, 0.85);
  --colour-rgba-green-3-90: rgba(200, 243, 227, 0.9);
  --colour-rgba-green-3-95: rgba(200, 243, 227, 0.95);
  --colour-rgba-green-3-100: #c8f3e3;
  --colour-rgba-green-2-50: #5dc99f;
  --colour-rgba-green-2-50-0: rgba(93, 201, 159, 0);
  --colour-rgba-green-2-50-1: rgba(93, 201, 159, 0.01);
  --colour-rgba-green-2-50-5: rgba(93, 201, 159, 0.05);
  --colour-rgba-green-2-50-10: rgba(93, 201, 159, 0.1);
  --colour-rgba-green-2-50-15: rgba(93, 201, 159, 0.15);
  --colour-rgba-green-2-50-20: rgba(93, 201, 159, 0.2);
  --colour-rgba-green-2-50-25: rgba(93, 201, 159, 0.25);
  --colour-rgba-green-2-50-30: rgba(93, 201, 159, 0.3);
  --colour-rgba-green-2-50-35: rgba(93, 201, 159, 0.35);
  --colour-rgba-green-2-50-40: rgba(93, 201, 159, 0.4);
  --colour-rgba-green-2-50-45: rgba(93, 201, 159, 0.45);
  --colour-rgba-green-2-50-50: rgba(93, 201, 159, 0.5);
  --colour-rgba-green-2-50-55: rgba(93, 201, 159, 0.55);
  --colour-rgba-green-2-50-60: rgba(93, 201, 159, 0.6);
  --colour-rgba-green-2-50-65: rgba(93, 201, 159, 0.65);
  --colour-rgba-green-2-50-70: rgba(93, 201, 159, 0.7);
  --colour-rgba-green-2-50-75: rgba(93, 201, 159, 0.75);
  --colour-rgba-green-2-50-80: rgba(93, 201, 159, 0.8);
  --colour-rgba-green-2-50-85: rgba(93, 201, 159, 0.85);
  --colour-rgba-green-2-50-90: rgba(93, 201, 159, 0.9);
  --colour-rgba-green-2-50-95: rgba(93, 201, 159, 0.95);
  --colour-rgba-green-2-50-100: #5dc99f;
  --colour-rgba-green-3-60: #def8ee;
  --colour-rgba-green-3-60-0: rgba(222, 248, 238, 0);
  --colour-rgba-green-3-60-1: rgba(222, 248, 238, 0.01);
  --colour-rgba-green-3-60-5: rgba(222, 248, 238, 0.05);
  --colour-rgba-green-3-60-10: rgba(222, 248, 238, 0.1);
  --colour-rgba-green-3-60-15: rgba(222, 248, 238, 0.15);
  --colour-rgba-green-3-60-20: rgba(222, 248, 238, 0.2);
  --colour-rgba-green-3-60-25: rgba(222, 248, 238, 0.25);
  --colour-rgba-green-3-60-30: rgba(222, 248, 238, 0.3);
  --colour-rgba-green-3-60-35: rgba(222, 248, 238, 0.35);
  --colour-rgba-green-3-60-40: rgba(222, 248, 238, 0.4);
  --colour-rgba-green-3-60-45: rgba(222, 248, 238, 0.45);
  --colour-rgba-green-3-60-50: rgba(222, 248, 238, 0.5);
  --colour-rgba-green-3-60-55: rgba(222, 248, 238, 0.55);
  --colour-rgba-green-3-60-60: rgba(222, 248, 238, 0.6);
  --colour-rgba-green-3-60-65: rgba(222, 248, 238, 0.65);
  --colour-rgba-green-3-60-70: rgba(222, 248, 238, 0.7);
  --colour-rgba-green-3-60-75: rgba(222, 248, 238, 0.75);
  --colour-rgba-green-3-60-80: rgba(222, 248, 238, 0.8);
  --colour-rgba-green-3-60-85: rgba(222, 248, 238, 0.85);
  --colour-rgba-green-3-60-90: rgba(222, 248, 238, 0.9);
  --colour-rgba-green-3-60-95: rgba(222, 248, 238, 0.95);
  --colour-rgba-green-3-60-100: #def8ee;
  --colour-rgba-green-3-40: #ddf4eb;
  --colour-rgba-green-3-40-0: rgba(221, 244, 235, 0);
  --colour-rgba-green-3-40-1: rgba(221, 244, 235, 0.01);
  --colour-rgba-green-3-40-5: rgba(221, 244, 235, 0.05);
  --colour-rgba-green-3-40-10: rgba(221, 244, 235, 0.1);
  --colour-rgba-green-3-40-15: rgba(221, 244, 235, 0.15);
  --colour-rgba-green-3-40-20: rgba(221, 244, 235, 0.2);
  --colour-rgba-green-3-40-25: rgba(221, 244, 235, 0.25);
  --colour-rgba-green-3-40-30: rgba(221, 244, 235, 0.3);
  --colour-rgba-green-3-40-35: rgba(221, 244, 235, 0.35);
  --colour-rgba-green-3-40-40: rgba(221, 244, 235, 0.4);
  --colour-rgba-green-3-40-45: rgba(221, 244, 235, 0.45);
  --colour-rgba-green-3-40-50: rgba(221, 244, 235, 0.5);
  --colour-rgba-green-3-40-55: rgba(221, 244, 235, 0.55);
  --colour-rgba-green-3-40-60: rgba(221, 244, 235, 0.6);
  --colour-rgba-green-3-40-65: rgba(221, 244, 235, 0.65);
  --colour-rgba-green-3-40-70: rgba(221, 244, 235, 0.7);
  --colour-rgba-green-3-40-75: rgba(221, 244, 235, 0.75);
  --colour-rgba-green-3-40-80: rgba(221, 244, 235, 0.8);
  --colour-rgba-green-3-40-85: rgba(221, 244, 235, 0.85);
  --colour-rgba-green-3-40-90: rgba(221, 244, 235, 0.9);
  --colour-rgba-green-3-40-95: rgba(221, 244, 235, 0.95);
  --colour-rgba-green-3-40-100: #ddf4eb;
  --colour-rgba-green-3-20: whitesmoke;
  --colour-rgba-green-3-20-0: rgba(245, 245, 245, 0);
  --colour-rgba-green-3-20-1: rgba(245, 245, 245, 0.01);
  --colour-rgba-green-3-20-5: rgba(245, 245, 245, 0.05);
  --colour-rgba-green-3-20-10: rgba(245, 245, 245, 0.1);
  --colour-rgba-green-3-20-15: rgba(245, 245, 245, 0.15);
  --colour-rgba-green-3-20-20: rgba(245, 245, 245, 0.2);
  --colour-rgba-green-3-20-25: rgba(245, 245, 245, 0.25);
  --colour-rgba-green-3-20-30: rgba(245, 245, 245, 0.3);
  --colour-rgba-green-3-20-35: rgba(245, 245, 245, 0.35);
  --colour-rgba-green-3-20-40: rgba(245, 245, 245, 0.4);
  --colour-rgba-green-3-20-45: rgba(245, 245, 245, 0.45);
  --colour-rgba-green-3-20-50: rgba(245, 245, 245, 0.5);
  --colour-rgba-green-3-20-55: rgba(245, 245, 245, 0.55);
  --colour-rgba-green-3-20-60: rgba(245, 245, 245, 0.6);
  --colour-rgba-green-3-20-65: rgba(245, 245, 245, 0.65);
  --colour-rgba-green-3-20-70: rgba(245, 245, 245, 0.7);
  --colour-rgba-green-3-20-75: rgba(245, 245, 245, 0.75);
  --colour-rgba-green-3-20-80: rgba(245, 245, 245, 0.8);
  --colour-rgba-green-3-20-85: rgba(245, 245, 245, 0.85);
  --colour-rgba-green-3-20-90: rgba(245, 245, 245, 0.9);
  --colour-rgba-green-3-20-95: rgba(245, 245, 245, 0.95);
  --colour-rgba-green-3-20-100: whitesmoke;
  --colour-rgba-green-3-10: #fafefd;
  --colour-rgba-green-3-10-0: rgba(250, 254, 253, 0);
  --colour-rgba-green-3-10-1: rgba(250, 254, 253, 0.01);
  --colour-rgba-green-3-10-5: rgba(250, 254, 253, 0.05);
  --colour-rgba-green-3-10-10: rgba(250, 254, 253, 0.1);
  --colour-rgba-green-3-10-15: rgba(250, 254, 253, 0.15);
  --colour-rgba-green-3-10-20: rgba(250, 254, 253, 0.2);
  --colour-rgba-green-3-10-25: rgba(250, 254, 253, 0.25);
  --colour-rgba-green-3-10-30: rgba(250, 254, 253, 0.3);
  --colour-rgba-green-3-10-35: rgba(250, 254, 253, 0.35);
  --colour-rgba-green-3-10-40: rgba(250, 254, 253, 0.4);
  --colour-rgba-green-3-10-45: rgba(250, 254, 253, 0.45);
  --colour-rgba-green-3-10-50: rgba(250, 254, 253, 0.5);
  --colour-rgba-green-3-10-55: rgba(250, 254, 253, 0.55);
  --colour-rgba-green-3-10-60: rgba(250, 254, 253, 0.6);
  --colour-rgba-green-3-10-65: rgba(250, 254, 253, 0.65);
  --colour-rgba-green-3-10-70: rgba(250, 254, 253, 0.7);
  --colour-rgba-green-3-10-75: rgba(250, 254, 253, 0.75);
  --colour-rgba-green-3-10-80: rgba(250, 254, 253, 0.8);
  --colour-rgba-green-3-10-85: rgba(250, 254, 253, 0.85);
  --colour-rgba-green-3-10-90: rgba(250, 254, 253, 0.9);
  --colour-rgba-green-3-10-95: rgba(250, 254, 253, 0.95);
  --colour-rgba-green-3-10-100: #fafefd;
  --colour-rgba-error: #ff7070;
  --colour-rgba-error-0: rgba(255, 112, 112, 0);
  --colour-rgba-error-1: rgba(255, 112, 112, 0.01);
  --colour-rgba-error-5: rgba(255, 112, 112, 0.05);
  --colour-rgba-error-10: rgba(255, 112, 112, 0.1);
  --colour-rgba-error-15: rgba(255, 112, 112, 0.15);
  --colour-rgba-error-20: rgba(255, 112, 112, 0.2);
  --colour-rgba-error-25: rgba(255, 112, 112, 0.25);
  --colour-rgba-error-30: rgba(255, 112, 112, 0.3);
  --colour-rgba-error-35: rgba(255, 112, 112, 0.35);
  --colour-rgba-error-40: rgba(255, 112, 112, 0.4);
  --colour-rgba-error-45: rgba(255, 112, 112, 0.45);
  --colour-rgba-error-50: rgba(255, 112, 112, 0.5);
  --colour-rgba-error-55: rgba(255, 112, 112, 0.55);
  --colour-rgba-error-60: rgba(255, 112, 112, 0.6);
  --colour-rgba-error-65: rgba(255, 112, 112, 0.65);
  --colour-rgba-error-70: rgba(255, 112, 112, 0.7);
  --colour-rgba-error-75: rgba(255, 112, 112, 0.75);
  --colour-rgba-error-80: rgba(255, 112, 112, 0.8);
  --colour-rgba-error-85: rgba(255, 112, 112, 0.85);
  --colour-rgba-error-90: rgba(255, 112, 112, 0.9);
  --colour-rgba-error-95: rgba(255, 112, 112, 0.95);
  --colour-rgba-error-100: #ff7070;
  --colour-rgba-error-light: #ffc2c2;
  --colour-rgba-error-light-0: rgba(255, 194, 194, 0);
  --colour-rgba-error-light-1: rgba(255, 194, 194, 0.01);
  --colour-rgba-error-light-5: rgba(255, 194, 194, 0.05);
  --colour-rgba-error-light-10: rgba(255, 194, 194, 0.1);
  --colour-rgba-error-light-15: rgba(255, 194, 194, 0.15);
  --colour-rgba-error-light-20: rgba(255, 194, 194, 0.2);
  --colour-rgba-error-light-25: rgba(255, 194, 194, 0.25);
  --colour-rgba-error-light-30: rgba(255, 194, 194, 0.3);
  --colour-rgba-error-light-35: rgba(255, 194, 194, 0.35);
  --colour-rgba-error-light-40: rgba(255, 194, 194, 0.4);
  --colour-rgba-error-light-45: rgba(255, 194, 194, 0.45);
  --colour-rgba-error-light-50: rgba(255, 194, 194, 0.5);
  --colour-rgba-error-light-55: rgba(255, 194, 194, 0.55);
  --colour-rgba-error-light-60: rgba(255, 194, 194, 0.6);
  --colour-rgba-error-light-65: rgba(255, 194, 194, 0.65);
  --colour-rgba-error-light-70: rgba(255, 194, 194, 0.7);
  --colour-rgba-error-light-75: rgba(255, 194, 194, 0.75);
  --colour-rgba-error-light-80: rgba(255, 194, 194, 0.8);
  --colour-rgba-error-light-85: rgba(255, 194, 194, 0.85);
  --colour-rgba-error-light-90: rgba(255, 194, 194, 0.9);
  --colour-rgba-error-light-95: rgba(255, 194, 194, 0.95);
  --colour-rgba-error-light-100: #ffc2c2;
  --colour-rgba-success: #32d88d;
  --colour-rgba-success-0: rgba(50, 216, 141, 0);
  --colour-rgba-success-1: rgba(50, 216, 141, 0.01);
  --colour-rgba-success-5: rgba(50, 216, 141, 0.05);
  --colour-rgba-success-10: rgba(50, 216, 141, 0.1);
  --colour-rgba-success-15: rgba(50, 216, 141, 0.15);
  --colour-rgba-success-20: rgba(50, 216, 141, 0.2);
  --colour-rgba-success-25: rgba(50, 216, 141, 0.25);
  --colour-rgba-success-30: rgba(50, 216, 141, 0.3);
  --colour-rgba-success-35: rgba(50, 216, 141, 0.35);
  --colour-rgba-success-40: rgba(50, 216, 141, 0.4);
  --colour-rgba-success-45: rgba(50, 216, 141, 0.45);
  --colour-rgba-success-50: rgba(50, 216, 141, 0.5);
  --colour-rgba-success-55: rgba(50, 216, 141, 0.55);
  --colour-rgba-success-60: rgba(50, 216, 141, 0.6);
  --colour-rgba-success-65: rgba(50, 216, 141, 0.65);
  --colour-rgba-success-70: rgba(50, 216, 141, 0.7);
  --colour-rgba-success-75: rgba(50, 216, 141, 0.75);
  --colour-rgba-success-80: rgba(50, 216, 141, 0.8);
  --colour-rgba-success-85: rgba(50, 216, 141, 0.85);
  --colour-rgba-success-90: rgba(50, 216, 141, 0.9);
  --colour-rgba-success-95: rgba(50, 216, 141, 0.95);
  --colour-rgba-success-100: #32d88d;
  /* @media (prefers-color-scheme: light) {} */
  /* @media (prefers-color-scheme: dark) {} */
  --colour-black: #000000;
  --colour-black-10: #E5E5E5;
  --colour-black-4: #F5F5F5;
  --colour-gray-1: #212121;
  --colour-gray-6: #535E6E;
  --colour-white: #FFFFFF;
  --colour-blue-1: #0E163F;
  --colour-blue-2: #344ABE;
  --colour-blue-2-50: #566EEB;
  --colour-blue-3: #C6CEFF;
  --colour-blue-3-300: #BFCAFF;
  --colour-blue-3-80: #D7DCFA;
  --colour-blue-3-60: #DFE0FE;
  --colour-blue-3-40: #E9EAFF;
  --colour-blue-3-20: #F4F5FF;
  --colour-blue-3-10: #F5F4FF;
  --colour-blue-2-hover: #4663FF;
  --colour-green-1: #07281C;
  --colour-green-2: #008575;
  --colour-green-3: #C8F3E3;
  --colour-green-2-50: #5DC99F;
  --colour-green-3-60: #DEF8EE;
  --colour-green-3-40: #DDF4EB;
  --colour-green-3-20: #F5F5F5;
  --colour-green-3-10: #FAFEFD;
  --colour-error: #FF7070;
  --colour-error-light: #FFC2C2;
  --colour-success: #32d88d;
  --gradient-text: linear-gradient(90deg, #344ABE 0%, #98A5F0 76.92%, #6274E2 100%);
  --gradient-text-green: linear-gradient(90deg, #058754 0%, #5DC99F 53.37%, #058754 100%);
  --rgb-alpha-0: 0;
  --rgb-alpha-1: 0.01;
  --rgb-alpha-5: 0.05;
  --rgb-alpha-10: 0.1;
  --rgb-alpha-15: 0.15;
  --rgb-alpha-20: 0.2;
  --rgb-alpha-25: 0.25;
  --rgb-alpha-30: 0.3;
  --rgb-alpha-35: 0.35;
  --rgb-alpha-40: 0.4;
  --rgb-alpha-45: 0.45;
  --rgb-alpha-50: 0.5;
  --rgb-alpha-55: 0.55;
  --rgb-alpha-60: 0.6;
  --rgb-alpha-65: 0.65;
  --rgb-alpha-70: 0.7;
  --rgb-alpha-75: 0.75;
  --rgb-alpha-80: 0.8;
  --rgb-alpha-85: 0.85;
  --rgb-alpha-90: 0.9;
  --rgb-alpha-95: 0.95;
  --rgb-alpha-100: 1;
  --blend-modes-normal: Normal;
  --blend-modes-color: Colour;
  --blend-modes-color-dodge: Colour Dodge;
  --blend-modes-color-burn: Colour Burn;
  --blend-modes-darken: Darken;
  --blend-modes-exclusion: Exclusion;
  --blend-modes-hard-light: Hard Light;
  --blend-modes-hue: Hue;
  --blend-modes-lighten: Lighten;
  --blend-modes-luminosity: Luminosity;
  --blend-modes-multiply: Multiply;
  --blend-modes-overlay: Overlay;
  --blend-modes-saturation: Saturation;
  --blend-modes-screen: Screen;
  --blend-modes-soft-light: Soft Light;
  --blend-modes-inherit: Inherit;
  --blend-modes-initial: Initial;
  --blend-modes-revert: Revert;
  --blend-modes-revert-layer: Revert Layer;
  --blend-modes-unset: Unset;
  --transition-all: all ease-in-out var(--base-transition-speed);
  --transition-background: background ease-in-out var(--base-transition-speed);
  --transition-background-color: background-color ease-in-out var(--base-transition-speed);
  --transition-border: border ease-in-out var(--base-transition-speed);
  --transition-border-color: border-color ease-in-out var(--base-transition-speed);
  --transition-color: color ease-in-out var(--base-transition-speed);
  --transition-fill: fill ease-in-out var(--base-transition-speed);
  --transition-height: height ease-in-out var(--base-transition-speed);
  --transition-max-height: max-height ease-in-out var(--base-transition-speed);
  --transition-opacity: opacity ease-in-out var(--base-transition-speed);
  --transition-padding: padding ease-in-out var(--base-transition-speed);
  --transition-transform: transform ease-in-out var(--base-transition-speed);
  --transition-text-decoration: text-decoration ease-in-out var(--base-transition-speed);
  --transition-underline: left ease-out var(--base-transition-speed), right ease-out var(--base-transition-speed);
  --transition-width: width ease-in-out var(--base-transition-speed);
  --font-serif: Titling Gothic FB, serif;
  --font-sans-serif: Archivo, helvetica, arial, sans-serif;
  --font-size-1-xxxs: 38px;
  --font-size-1: 38px;
  --font-size-1-md: 60px;
}

@media (min-width: 768px) {
  :root {
    --font-size-1: 60px;
  }
}
:root {
  --font-size-2-xxxs: 28px;
  --font-size-2: 28px;
  --font-size-2-md: 42px;
}

@media (min-width: 768px) {
  :root {
    --font-size-2: 42px;
  }
}
:root {
  --font-size-3-xxxs: 24px;
  --font-size-3: 24px;
  --font-size-3-md: 32px;
}

@media (min-width: 768px) {
  :root {
    --font-size-3: 32px;
  }
}
:root {
  --font-size-4-xxxs: 18px;
  --font-size-4: 18px;
  --font-size-4-md: 22px;
}

@media (min-width: 768px) {
  :root {
    --font-size-4: 22px;
  }
}
:root {
  --font-size-5: 18px;
  --font-size-6: 18px;
  --font-size-p-l-xxxs: 28px;
  --font-size-p-l: 28px;
  --font-size-p-l-md: 32px;
}

@media (min-width: 768px) {
  :root {
    --font-size-p-l: 32px;
  }
}
:root {
  --font-size-p-m-xxxs: 20px;
  --font-size-p-m: 20px;
  --font-size-p-m-md: 22px;
}

@media (min-width: 768px) {
  :root {
    --font-size-p-m: 22px;
  }
}
:root {
  --font-size-p: 18px;
  --font-size-p-s: 16px;
  --font-size-p-xs: 14px;
  --font-size-label: 18px;
  --font-size-quote-xxxs: 28px;
  --font-size-quote: 28px;
  --font-size-quote-md: 36px;
}

@media (min-width: 768px) {
  :root {
    --font-size-quote: 36px;
  }
}
:root {
  --font-size-button: 16px;
  --font-size-link: 18px;
  --line-height-1: normal;
  --line-height-2: 130%;
  --line-height-3: 130%;
  --line-height-4: 135%;
  --line-height-5: 135%;
  --line-height-6: 135%;
  --line-height-p-l: 118%;
  --line-height-p-m: 140%;
  --line-height-p: 145%;
  --line-height-p-s: 135%;
  --line-height-p-xs: 135%;
  --line-height-label: var(--line-height-p);
  --line-height-quote: 150%;
  --line-height-button: normal;
  --line-height-link: 150%;
  --breakpoint-xxxs: 0;
  --breakpoint-xxs: 320px;
  --breakpoint-xs: 480px;
  --breakpoint-sm: 568px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-xxl: 1380px;
  --breakpoint-xxxl: 1520px;
  --breakpoint-xxxxl: 1640px;
  --spacing-xxxxxl-xxxs: 90px;
  --spacing-xxxxxl: 90px;
  --spacing-xxxxxl-lg: 180px;
}

@media (min-width: 1024px) {
  :root {
    --spacing-xxxxxl: 180px;
  }
}
:root {
  --spacing-xxxxl-xxxs: 60px;
  --spacing-xxxxl: 60px;
  --spacing-xxxxl-lg: 120px;
}

@media (min-width: 1024px) {
  :root {
    --spacing-xxxxl: 120px;
  }
}
:root {
  --spacing-xxxl-xxxs: 46px;
  --spacing-xxxl: 46px;
  --spacing-xxxl-lg: 90px;
}

@media (min-width: 1024px) {
  :root {
    --spacing-xxxl: 90px;
  }
}
:root {
  --spacing-xxl-xxxs: 36px;
  --spacing-xxl: 36px;
  --spacing-xxl-lg: 64px;
}

@media (min-width: 1024px) {
  :root {
    --spacing-xxl: 64px;
  }
}
:root {
  --spacing-xl-xxxs: 32px;
  --spacing-xl: 32px;
  --spacing-xl-lg: 56px;
}

@media (min-width: 1024px) {
  :root {
    --spacing-xl: 56px;
  }
}
:root {
  --spacing-l-xxxs: 32px;
  --spacing-l: 32px;
  --spacing-l-lg: 48px;
}

@media (min-width: 1024px) {
  :root {
    --spacing-l: 48px;
  }
}
:root {
  --spacing-m-xxxs: 26px;
  --spacing-m: 26px;
  --spacing-m-lg: 40px;
}

@media (min-width: 1024px) {
  :root {
    --spacing-m: 40px;
  }
}
:root {
  --spacing-s-xxxs: 22px;
  --spacing-s: 22px;
  --spacing-s-lg: 32px;
}

@media (min-width: 1024px) {
  :root {
    --spacing-s: 32px;
  }
}
:root {
  --spacing-xs-xxxs: 20px;
  --spacing-xs: 20px;
  --spacing-xs-lg: 24px;
}

@media (min-width: 1024px) {
  :root {
    --spacing-xs: 24px;
  }
}
:root {
  --spacing-xxs: 16px;
  --spacing-xxxs: 12px;
  --spacing-xxxxs: 8px;
  --spacing-xxxxxs: 4px;
  --spacing-paragraph: 20px;
  --spacing-body: var(--spacing-s);
  --spacing-body-mobile: var(--spacing-xs);
  --spacing-section-top: var(--spacing-xxl);
  --spacing-section-bottom: var(--spacing-xxl);
  --spacing-section-top-small: var(--spacing-l);
  --spacing-section-bottom-small: var(--spacing-l);
  --spacing-heading-top: var(--spacing-m);
  --spacing-heading-bottom: var(--spacing-xs);
  --spacing-typography: var(--spacing-xxs);
  --width-max-width: 1380px;
  --width-max-width-padded: 1500px;
  --width-max-width-narrow: 1000px;
  --width-max-width-narrowish: 1100px;
  --width-max-width-wide: 1200px;
  --width-max-width-blog: 964px;
  --height-button: auto;
  --logo-height: 3.1rem;
  --logo-width: 14.2rem;
  --logo-mobile-height: 2rem;
  --logo-mobile-width: 9.5rem;
  --border-button: 0.1rem;
  --border-input: 0.1rem;
  --radius-button: 48px;
  --radius-full: 9999px;
  --radius-card: var(--radius-xs);
  --radius-logo-box: 5px;
  --radius-xl-xxxs: 40px;
  --radius-xl: 40px;
  --radius-xl-lg: 80px;
}

@media (min-width: 1024px) {
  :root {
    --radius-xl: 80px;
  }
}
:root {
  --radius-l-xxxs: 35px;
  --radius-l: 35px;
  --radius-l-lg: 60px;
}

@media (min-width: 1024px) {
  :root {
    --radius-l: 60px;
  }
}
:root {
  --radius-m-xxxs: 15px;
  --radius-m: 15px;
  --radius-m-lg: 40px;
}

@media (min-width: 1024px) {
  :root {
    --radius-m: 40px;
  }
}
:root {
  --radius-r-xxxs: 15px;
  --radius-r: 15px;
  --radius-r-lg: 35px;
}

@media (min-width: 1024px) {
  :root {
    --radius-r: 35px;
  }
}
:root {
  --radius-s-xxxs: 15px;
  --radius-s: 15px;
  --radius-s-lg: 20px;
}

@media (min-width: 1024px) {
  :root {
    --radius-s: 20px;
  }
}
:root {
  --radius-xs-xxxs: 10px;
  --radius-xs: 10px;
  --radius-xs-lg: 16px;
}

@media (min-width: 1024px) {
  :root {
    --radius-xs: 16px;
  }
}
:root {
  --radius-xxs-xxxs: 6px;
  --radius-xxs: 6px;
  --radius-xxs-lg: 8px;
}

@media (min-width: 1024px) {
  :root {
    --radius-xxs: 8px;
  }
}
:root {
  --radius-xxxs: 4px;
  --icon-xsm: 1.2rem;
  --icon-sml: 1.6rem;
  --icon-reg: 1.8rem;
  --icon-med: 2.4rem;
  --icon-lrg: 2.8rem;
  --icon-xlg: 3.2rem;
  --icon-motion-reg: 0.4rem;
  --shadow-card: 0 0 0.7rem 0.7rem var(--colour-rgba-black-10);
  --shadow-logo-box: 0 0 0.7rem 0.7rem var(--colour-rgba-black-10);
  --grid-columns-xxxs: 12;
  --grid-columns: 12;
  --grid-columns-lg: 12;
}

@media (min-width: 1024px) {
  :root {
    --grid-columns: 12;
  }
}
:root {
  --grid-row-columns: 6;
  --grid-breakpoint: lg;
  --grid-gap-column-xxxs: 2rem;
  --grid-gap-column: 2rem;
  --grid-gap-column-lg: 5rem;
}

@media (min-width: 1024px) {
  :root {
    --grid-gap-column: 5rem;
  }
}
:root {
  --grid-gap-row-xxxs: var(--spacing-l);
  --grid-gap-row: var(--spacing-l);
  --grid-gap-row-lg: var(--spacing-xl);
}

@media (min-width: 1024px) {
  :root {
    --grid-gap-row: var(--spacing-xl);
  }
}
:root {
  --base-size: 62.5%;
  --base-unit: rem;
  --base-transition-speed: 0.3s;
  --base-transition-speed-slow: 0.6s;
  --base-animation-speed: 3s;
  --base-outline-offset: 0.1rem;
  --base-outline-style: dashed;
  --base-outline-width: 1px;
  --base-outline-colour: var(--colour-brand-2);
  --button-primary-background: var(--colour-blue-2);
  --button-primary-background-hover: var(--colour-blue-2-hover);
  --button-primary-background-active: var(--colour-blue-2-hover);
  --button-primary-border: var(--colour-blue-2);
  --button-primary-border-hover: var(--colour-blue-2-hover);
  --button-primary-border-active: var(--colour-blue-2-hover);
  --button-primary-colour: var(--colour-white);
  --button-primary-colour-hover: var(--colour-white);
  --button-primary-colour-active: var(--colour-white);
  --button-secondary-background: transparent;
  --button-secondary-background-hover: var(--colour-blue-2-hover);
  --button-secondary-background-active: var(--colour-blue-2-hover);
  --button-secondary-border: var(--colour-blue-2);
  --button-secondary-border-hover: var(--colour-blue-2-hover);
  --button-secondary-border-active: var(--colour-blue-2-hover);
  --button-secondary-colour: var(--colour-blue-2);
  --button-secondary-colour-hover: var(--colour-white);
  --button-secondary-colour-active: var(--colour-white);
  --button-tertiary-colour: var(--colour-blue-1);
  --button-tertiary-colour-hover: var(--colour-blue-2);
  --button-tertiary-colour-active: var(--colour-blue-2);
  --header-height-xxxs: 60px;
  --header-height: 60px;
  --header-height-lg: 75px;
}

@media (min-width: 1024px) {
  :root {
    --header-height: 75px;
  }
}
:root {
  --header-height-scrolled-xxxs: 45px;
  --header-height-scrolled: 45px;
  --header-height-scrolled-lg: 60px;
}

@media (min-width: 1024px) {
  :root {
    --header-height-scrolled: 60px;
  }
}
:root {
  --header-top-nav-height: 43px;
  --header-secondary-nav-height: 46px;
  --header-background-colour: var(--colour-white);
  --header-box-shadow: var(--shadow-card);
  --header-menu-gap-xxxs: var(--spacing-xxs);
  --header-menu-gap: var(--spacing-xxs);
  --header-menu-gap-xl: var(--spacing-s);
}

@media (min-width: 1280px) {
  :root {
    --header-menu-gap: var(--spacing-s);
  }
}
:root {
  --header-z-index: 1000;
  --mobile-menu-background-colour: var(--colour-blue-3-20);
  --mobile-menu-step-padding: var(--spacing-xs) var(--spacing-xs) var(--spacing-xl);
  --mobile-menu-cards-gap: var(--spacing-xs);
  --mobile-menu-back-gap: var(--spacing-xxxxxs);
  --mobile-menu-back-padding-bottom: var(--spacing-xxs);
  --mobile-menu-back-border-bottom: 1px solid var(--colour-gray);
  --mobile-menu-back-margin-bottom: var(--spacing-xs);
  --mobile-menu-link-gap: var(--spacing-xxxs);
  --mobile-menu-step-title-colour: var(--colour-black);
  --mobile-menu-step-title-margin-bottom: var(--spacing-xxxs);
  --mega-menu-box-shadow: var(--shadow-card);
  --mega-menu-background-colour: var(--colour-white);
  --mega-menu-max-width: 1276px;
  --mega-menu-sidebar-background-colour: var(--colour-gray);
  --mega-menu-sidebar-width: 230px;
  --mega-menu-sidebar-padding: var(--spacing-m);
  --mega-menu-sidebar-gap: var(--spacing-m);
  --mega-menu-tab-padding: var(--spacing-m);
  --mega-menu-tab-header-spacing: var(--spacing-m);
  --mega-menu-tab-links-gap: var(--spacing-m);
  --mega-menu-cards-padding: var(--spacing-m);
  --mega-menu-cards-card-gap: var(--spacing-m);
  --mega-menu-cards-card-max-width: 300px;
  --mega-menu-simple-max-width: 300px;
  --mega-menu-simple-padding: var(--spacing-s);
  --mega-menu-simple-gap: var(--spacing-xs);
  --gravity-forms-field-spacing: var(--spacing-xs);
  --gravity-forms-label-margin-bottom: var(--spacing-xxxxs);
  --gravity-forms-choices-spacing: var(--spacing-xxxs);
  --gravity-forms-choice-spacing: var(--spacing-xxxs);
  --gravity-forms-field-inner-spacing: var(--spacing-xxs);
  --gravity-forms-time-field-width: 125px;
  --gravity-forms-progress-bar-margin-bottom: var(--spacing-s);
  --gravity-forms-progress-bar-title-margin-bottom: var(--spacing-xxs);
  --gravity-forms-progress-bar-background-colour: var(--colour-white);
  --gravity-forms-progress-bar-percentage-colour: var(--colour-blue-2);
  --gravity-forms-progress-bar-height: 15px;
  --gravity-forms-progress-bar-border-radius: 16px;
  --gravity-forms-error-box-padding: var(--spacing-xxxs);
  --gravity-forms-error-box-margin-bottom: var(--spacing-xs);
  --gravity-forms-error-box-border-colour: var(--colour-error);
  --gravity-forms-error-box-background-colour: var(--colour-error-light);
  --gravity-forms-error-box-colour: var(--colour-black);
  --gravity-forms-error-input-border-colour: var(--colour-error);
  --gravity-forms-error-message-colour: var(--colour-error);
  --gravity-forms-required-colour: var(--colour-error);
  --gravity-forms-required-spacing: var(--spacing-xxxxxs);
  --gravity-forms-footer-spacing: var(--spacing-m);
  --gravity-forms-footer-inner-spacing: var(--spacing-xxs);
  --swiper-space-between: 20px;
  --swiper-space-between-big-xxxs: 20px;
  --swiper-space-between-big: 20px;
  --swiper-space-between-big-lg: 40px;
}

@media (min-width: 1024px) {
  :root {
    --swiper-space-between-big: 40px;
  }
}
:root {
  --swiper-pagination-width: 12px;
  --swiper-pagination-height: 12px;
  --swiper-pagination-color: var(--colour-blue-3-40);
  --swiper-pagination-color-active: var(--colour-blue-2);
  --swiper-pagination-spacing: var(--spacing-xxxs);
  --swiper-pagination-focus-outline-colour: var(--colour-black);
  --swiper-nav-arrow-height: 42px;
  --swiper-nav-arrow-width: 42px;
  --swiper-nav-arrow-background-color: transparent;
  --swiper-nav-arrow-hover-background-color: var(--colour-blue-2);
  --swiper-nav-arrow-border-color: var(--colour-blue-2);
  --swiper-nav-arrow-icon-color: var(--colour-blue-2);
  --swiper-nav-arrow-icon-hover-color: var(--colour-white);
  --swiper-nav-arrow-focus-outline-colour: var(--colour-black);
  --link-underline-width: 0.1rem;
  --link-underline-offset: 0.4rem;
  --link-gap: 0.8rem;
  --link-colour: var(--colour-brand-2);
  --breadcrumb-top-spacing: 20px;
  --box-background-offset-xxxs: calc(var(--spacing-body-mobile) * -1);
  --box-background-offset: calc(var(--spacing-body-mobile) * -1);
  --box-background-offset-lg: calc(var(--spacing-xxl) * -1);
}

@media (min-width: 1024px) {
  :root {
    --box-background-offset: calc(var(--spacing-xxl) * -1);
  }
}
:root {
  --box-background-offset-container-xxxs: calc(var(--spacing-body-mobile) * -1 + var(--spacing-body-mobile));
  --box-background-offset-container: calc(var(--spacing-body-mobile) * -1 + var(--spacing-body-mobile));
  --box-background-offset-container-lg: calc(var(--spacing-xxl) * -1 + var(--spacing-body));
}

@media (min-width: 1024px) {
  :root {
    --box-background-offset-container: calc(var(--spacing-xxl) * -1 + var(--spacing-body));
  }
}
:root {
  --block-accordion-title-margin: 0 0 var(--spacing-xs);
  --block-buttons-gap: var(--spacing-l);
  --block-cards-gap-row: var(--grid-gap-row);
  --block-cards-gap-column: var(--grid-gap-column);
  --block-cards-gap-row-mobile: var(--grid-gap-row);
  --block-cards-gap-column-mobile: var(--grid-gap-column);
  --block-cards-slide-auto-width: 369px;
  --block-form-block-title-margin: 0 0 var(--spacing-xl);
  --block-gallery-title-margin: 0 0 var(--spacing-xs);
  --block-gallery-gallery-gap: var(--spacing-xs);
  --block-gallery-gallery-image-border-radius: var(--radius-card);
  --block-gallery-gallery-image-shadow: var(--shadow-card);
  --block-gallery-gallery-image-background-colour: var(--colour-rgba-white-20);
  --block-gallery-gallery-image-element-border-radius: var(--radius-card);
  --block-gallery-gallery-image-element-max-width: 18rem;
  --block-gallery-image-zoom-background-colour: var(--colour-rgba-black-60);
  --block-tabbed-content-tabs-gap: 5rem;
  --block-tabbed-content-tabs-margin-bottom: var(--spacing-m);
  --block-tabbed-content-tabs-padding-bottom: var(--spacing-xs);
  --block-tabbed-content-tabs-border-top: 0.1rem solid var(--colour-rgba-brand-3-10);
  --block-tabbed-content-tabs-border-shadow: 0 0.3rem 0.6rem 0 var(--colour-rgba-brand-3-30);
  --block-tabbed-content-tabs-bottom: -0.3rem;
  --block-tabbed-content-tabs-height: 0.1rem;
  --block-tabbed-content-select-margin-bottom: var(--spacing-m);
  --block-testimonials-block-gap: var(--spacing-m);
  --block-video-gap: var(--spacing-m);
  --block-logos-gap-row: var(--grid-gap-row);
  --block-logos-gap-column: var(--grid-gap-column);
  --block-logos-logo-max-width: 168px;
  --block-logos-logo-box-max-width: 220px;
  --block-logos-logo-box-padding: var(--spacing-l);
  --block-logos-logo-box-shadow: var(--shadow-logo-box);
  --block-logos-logo-box-border-radius: var(--radius-logo-box);
  --block-logos-logo-box-background-colour: var(--colour-white);
  --block-timeline-row-gap: 80px;
  --block-timeline-bar-thickness: 6px;
  --block-timeline-dot-size: 18px;
  --block-timeline-connector-x: 40px;
  --block-timeline-mobile-bar-top: 30px;
  --block-timeline-slide-width-xxxs: 332px;
  --block-timeline-slide-width: 332px;
  --block-timeline-slide-width-md: 800px;
}

@media (min-width: 768px) {
  :root {
    --block-timeline-slide-width: 800px;
  }
}
:root {
  --component-accordion-colour: var(--colour-blue-1);
  --component-accordion-icon-colour: var(--colour-blue-2);
  --component-accordion-active-icon-colour: var(--colour-blue-1);
  --component-accordion-border-colour: var(--colour-white);
  --component-accordion-active-border-colour: var(--colour-white);
  --component-accordion-padding-top: var(--spacing-s);
  --component-accordion-padding-bottom: var(--spacing-s);
  --component-accordion-icon-width: var(--icon-lrg);
  --component-accordion-border-width: 2px;
  --component-accordion-gap: var(--spacing-xs);
  --component-accordion-plus-minus-height: 2px;
  --component-button-wrapper-gap: 1.2rem 4rem;
  --component-button-icon-height: var(--icon-btn);
  --component-button-icon-width: var(--icon-btn);
  --component-button-icon-only-padding: 1.2rem 1.3rem 1.4rem;
  --component-button-icon-only-small-padding: 0;
  --component-button-icon-only-width: var(--height-button);
  --component-button-icon-only-small-width: var(--height-button-small);
  --component-button-icon-only-small-height: var(--height-button-small);
  --component-card-border-radius: var(--radius-card);
  --component-card-padding: var(--spacing-s);
  --component-card-background: var(--colour-blue-3-20);
  --component-card-content-gap: var(--spacing-xxs);
  --component-form-intro-margin-bottom: var(--spacing-m);
  --component-image-figure-gap: var(--spacing-xxs);
  --component-image-caption-padding-left: var(--spacing-xxxs);
  --component-image-caption-border: 0.2rem solid var(--colour-brand-neutral-1);
  --component-image-caption-mobile-margin: 0 var(--spacing-body-mobile);
  --component-socials-gap: var(--spacing-xs);
  --component-socials-icon-color: var(--colour-white);
  --component-socials-icon-color-hover: var(--colour-blue-3-40);
  --component-testimonials-max-width: 1231px;
  --component-testimonials-nav-spacing: var(--spacing-xxl);
  --component-testimonial-quote-gap: var(--spacing-xxs);
  --component-testimonial-quote-spacing: 0 0 var(--spacing-m);
  --component-testimonial-quote-icon-size: var(--icon-lrg);
  --component-video-max-width: 980px;
  --component-video-aspect-ratio: 16 / 9;
  --component-video-play-icon-background: var(--colour-blue-2);
  --component-video-play-icon-colour: var(--colour-white);
  --component-video-play-icon-height: 52px;
  --component-video-play-icon-width: 84px;
  --component-video-play-icon-border-width: 8px 0 8px 15px;
  --component-video-play-icon-margin: 4px;
  --component-video-play-icon-border-radius: var(--radius-xxs);
}

/* stylelint-disable */
html {
  background-color: var(--colour-brand-neutral-3);
  scroll-behavior: smooth;
}

body.edwp-modal-open {
  overflow: hidden;
  position: static;
}

body.scrolled {
  --header-height: var(--header-height-scrolled);
}

button {
  outline-offset: var(--base-outline-offset);
}

button:hover {
  cursor: pointer;
  transition: var(--transition-all);
}

button:focus-visible {
  outline-style: var(--base-outline-style);
  outline-width: var(--base-outline-width);
}

button:active {
  outline: 0;
}

a {
  outline-offset: var(--base-outline-offset);
}

a:hover {
  cursor: pointer;
  transition: var(--transition-all);
}

a:focus-visible {
  outline-color: var(--base-outline-colour);
  outline-style: var(--base-outline-style);
  outline-width: var(--base-outline-width);
}

a:active {
  outline: 0;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

.skip-link {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p);
  font-weight: 300;
  line-height: var(--line-height-p);
  text-transform: none;
  align-content: center;
  background-color: var(--colour-brand-2);
  color: var(--colour-white);
  display: flex;
  justify-content: center;
  left: 1px;
  outline: none;
  outline-offset: 0;
  padding: 0.5rem 1rem 1rem;
  position: absolute;
  right: 1px;
  text-decoration: none;
  top: -100%;
  width: calc(100% - 2px);
  z-index: 200;
}

.skip-link:focus {
  color: var(--colour-white);
  position: sticky;
  text-decoration: underline;
  top: 1px;
  transition: var(--transition-all);
}

.skip-link:visited {
  color: var(--colour-white);
}

.edwp-link-text {
  border: 0 !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  text-indent: -9999px !important;
  transform: scale(0) !important;
  width: 1px !important;
}

.blue-text {
  color: var(--colour-blue-2);
}

.wp-component-heading--dark .blue-text {
  color: var(--colour-blue-3);
}

/* stylelint-disable */
.gradient-text {
  background: var(--gradient-text);
  display: block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* stylelint-enable */
.wp-block-search-form__fields {
  position: relative;
}

.wp-block-search-form__fields input {
  border: 1px solid var(--colour-blue-2);
  box-sizing: border-box;
  height: 54px;
  padding: 0 var(--spacing-xxxs);
  width: 100%;
}

.wp-block-search-form__fields button {
  color: var(--colour-blue-2);
  position: absolute;
  right: var(--spacing-xxxs);
  top: 50%;
  transform: translateY(-50%);
}

:root:has(body.for-business-page) {
  --colour-blue-1: var(--colour-green-1);
  --colour-blue-2: var(--colour-green-2);
  --colour-blue-2-hover: var(--colour-green-2-50);
  --colour-blue-3: var(--colour-green-3);
  --colour-blue-3-60: var(--colour-green-3-60);
  --colour-blue-3-40: var(--colour-green-3-40);
  --colour-blue-3-20: var(--colour-green-3-20);
  --colour-blue-3-10: var(--colour-green-3-10);
  --gradient-text: var(--gradient-text-green);
}

@media (min-width: 1024px) {
  .page-content:has(.edwp-dark-blue-bg:first-of-type) {
    padding-top: calc(40px + var(--breadcrumb-top-spacing) + var(--header-height) + var(--header-top-nav-height));
  }
  body.search .page-content:has(.edwp-dark-blue-bg:first-of-type) {
    padding-top: calc(var(--header-height) + var(--header-top-nav-height));
  }
}
.edwp-dark-blue-bg {
  background-color: var(--colour-blue-1);
  border-radius: var(--radius-m);
}

.edwp-dark-blue-bg:has(+ .edwp-dark-blue-bg) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.edwp-dark-blue-bg + .edwp-dark-blue-bg {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

@media (min-width: 1024px) {
  .edwp-dark-blue-bg:first-of-type {
    padding-top: var(--layout-top-spacing) !important;
  }
}
html {
  font-size: var(--base-size);
  overflow: auto;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  /* montserrat-latin-wght-italic */
}

@font-face {
  font-family: "Montserrat Variable";
  font-style: italic;
  font-display: swap;
  font-weight: 100 900;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  src: url(../../dist/fonts/vendor/@fontsource-variable/montserrat/files/montserrat-latin-wght-italic.woff2?1f9ebdac83c198fcbc7de975090b1aee) format("woff2-variations");
}
body {
  /* montserrat-latin-wght-normal */
}

@font-face {
  font-family: "Montserrat Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  src: url(../../dist/fonts/vendor/@fontsource-variable/montserrat/files/montserrat-latin-wght-normal.woff2?5f4052846f75256f4d95e5ecac2c8ec3) format("woff2-variations");
}
body {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p);
  font-weight: 300;
  line-height: var(--line-height-p);
  text-transform: none;
  background-color: var(--colour-white);
  color: var(--colour-black);
  overflow-x: clip;
}

.sr-only {
  border: 0 !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  text-indent: -9999px !important;
  transform: scale(0) !important;
  width: 1px !important;
}

.edwp-icon--xsm {
  height: var(--icon-xsm);
  width: var(--icon-xsm);
}

.edwp-icon--sml {
  height: var(--icon-sml);
  width: var(--icon-sml);
}

.edwp-icon--reg {
  height: var(--icon-reg);
  width: var(--icon-reg);
}

.edwp-icon--med {
  height: var(--icon-med);
  width: var(--icon-med);
}

.edwp-icon--lrg {
  height: var(--icon-lrg);
  width: var(--icon-lrg);
}

.edwp-icon--xlg {
  height: var(--icon-xlg);
  width: var(--icon-xlg);
}

.edwp-icon--xxl {
  height: var(--icon-xxl);
  width: var(--icon-xxl);
}

.alignright,
.alignleft,
.aligncenter {
  display: block;
  margin: 1.25rem auto;
  max-width: 100%;
}

.wp-caption {
  color: var(--colour-black);
}

@media (min-width: 1024px) {
  .alignright {
    float: right;
    margin: 0 0 1.25rem 1.25rem;
  }
}
@media (min-width: 1024px) {
  .alignleft {
    float: left;
    margin: 0 1.25rem 1.25rem 0;
  }
}
@media (min-width: 1024px) {
  .aligncenter {
    display: block;
    margin: 0 auto 1.25rem;
  }
}
.cf-complex__inserter-menu {
  left: 110% !important;
  top: -215% !important;
  transform: none !important;
  z-index: 1000 !important;
}

.cf-complex__inserter-menu::before {
  top: 8% !important;
}

.wp-editor p,
.wp-editor .text--p {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p);
  font-weight: 300;
  line-height: var(--line-height-p);
  text-transform: none;
}

.wp-editor .text--p-small {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p-s);
  font-weight: 300;
  line-height: var(--line-height-p-s);
  text-transform: none;
}

.wp-editor .text--p-xsmall {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p-xs);
  font-weight: 300;
  line-height: var(--line-height-p-xs);
  text-transform: none;
}

.wp-editor .text--p-medium {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p-m);
  font-weight: 400;
  line-height: var(--line-height-p-m);
  text-transform: none;
}

.wp-editor .text--p-large {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p-l);
  font-weight: 400;
  line-height: var(--line-height-p-l);
  text-transform: none;
}

.wp-editor .text--p-intro {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p-intro);
  font-weight: 300;
  line-height: var(--line-height-p-intro);
  text-transform: none;
}

.wp-editor h1,
.wp-editor .text--h1 {
  font-family: var(--font-serif);
  font-size: var(--font-size-1);
  font-weight: 500;
  line-height: var(--line-height-1);
  text-transform: none;
}

.wp-editor h2,
.wp-editor .text--h2 {
  font-family: var(--font-serif);
  font-size: var(--font-size-2);
  font-weight: 500;
  line-height: var(--line-height-2);
  text-transform: none;
}

.wp-editor h3,
.wp-editor .text--h3 {
  font-family: var(--font-serif);
  font-size: var(--font-size-3);
  font-weight: 500;
  line-height: var(--line-height-3);
  text-transform: none;
}

.wp-editor h4,
.wp-editor .text--h4 {
  font-family: var(--font-serif);
  font-size: var(--font-size-4);
  font-weight: 500;
  line-height: var(--line-height-4);
  text-transform: none;
}

.wp-editor h5,
.wp-editor .text--h5 {
  font-family: var(--font-serif);
  font-size: var(--font-size-5);
  font-weight: 500;
  line-height: var(--line-height-5);
  text-transform: none;
}

.wp-editor h6,
.wp-editor .text--h6 {
  font-family: var(--font-serif);
  font-size: var(--font-size-6);
  font-weight: 500;
  line-height: var(--line-height-6);
  text-transform: none;
}

.wp-editor .text--hxs {
  font-family: var(--font-serif);
  font-size: var(--font-size-p);
  font-weight: 400;
  line-height: var(--line-height-p);
  text-transform: none;
}

.wp-editor strong,
.wp-editor b {
  font-weight: 700;
}

.wp-editor blockquote {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-quote);
  font-weight: 300;
  line-height: var(--line-height-quote);
  text-transform: none;
  border-left: var(--border-blockquote) solid var(--colour-brand-1);
  padding-left: calc(5rem - var(--border-blockquote));
}

@media (max-width: 767.98px) {
  .wp-editor blockquote {
    padding-left: calc(var(--spacing-body-mobile) - var(--border-blockquote));
    padding-right: var(--spacing-body-mobile);
  }
}
.wp-editor blockquote p {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-quote);
  font-weight: 300;
  line-height: var(--line-height-quote);
  text-transform: none;
}

.wp-editor blockquote {
  position: relative;
}

.wp-editor blockquote::before {
  content: '"';
  display: inline;
  position: relative;
}

.wp-editor blockquote::after {
  content: '"';
  display: inline;
  position: relative;
}

.wp-editor blockquote p {
  display: inline;
}

.wp-editor em {
  font-style: italic;
}

.wp-editor ul {
  list-style: outside;
  margin-left: 2rem;
}

.wp-editor ul li::marker {
  content: "●  ";
}

.wp-editor ol {
  list-style: decimal;
  margin-left: 2rem;
}

.wp-editor li {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p);
  font-weight: 300;
  line-height: var(--line-height-p);
  text-transform: none;
  position: relative;
}

.wp-editor li::marker {
  color: var(--colour-brand-1);
  font-weight: 700;
}

.wp-editor li ul,
.wp-editor li ol {
  margin-top: 1.5rem;
}

@media (hover: hover) and (pointer: fine) {
  .wp-editor a:not(.btn, .wp-component-content__linkedin-link):enabled:hover, .wp-editor a:not(.btn, .wp-component-content__linkedin-link):enabled:focus-visible, .wp-editor a:not(.btn, .wp-component-content__linkedin-link):not([disabled]):hover, .wp-editor a:not(.btn, .wp-component-content__linkedin-link):not([disabled]):focus-visible {
    color: var(--colour-blue-2);
  }
}
.wp-editor a:not(.btn, .wp-component-content__linkedin-link) {
  color: var(--colour-blue-1);
  text-decoration-color: currentcolor;
  text-decoration-line: underline;
  text-decoration-style: initial;
  text-decoration-thickness: 0.2rem;
  text-underline-offset: 0.4rem;
}

.wp-editor table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: var(--spacing-xxxs) 0 var(--spacing-m);
  width: 100%;
}

@media (max-width: 767.98px) {
  .wp-editor table {
    display: block;
    overflow-x: auto;
    width: 100% !important;
  }
  .wp-editor table td {
    min-width: 200px;
  }
}
.wp-editor table tr {
  border-bottom: 1px solid var(--colour-blue-3);
}

.wp-editor table tr td:not(:first-child),
.wp-editor table tr th:not(:first-child) {
  padding-left: var(--spacing-xxxs);
}

.wp-editor table th,
.wp-editor table td {
  padding: var(--spacing-xxxs) 0;
  text-align: left;
}

.wp-editor table thead tr {
  border-color: var(--colour-blue-2);
  border-width: 3px;
}

.wp-editor table thead th,
.wp-editor table thead td {
  font-family: var(--font-serif);
  font-size: var(--font-size-p);
  font-weight: 400;
  line-height: var(--line-height-p);
  text-transform: none;
  color: var(--colour-blue-2);
}

.wp-editor table p:last-child {
  margin: 0;
}

.wp-editor .wp-caption {
  margin: var(--spacing-xs) 0;
  max-width: 100%;
}

.wp-editor .wp-caption-text {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p-s);
  font-weight: 300;
  line-height: var(--line-height-p-s);
  text-transform: none;
  margin: var(--spacing-xxs) 0 0;
}

.wp-editor .aligncenter {
  display: block;
  margin: var(--spacing-xs) auto;
}

.wp-editor .alignleft {
  margin: var(--spacing-xs) 0;
}

@media (min-width: 768px) {
  .wp-editor .alignleft {
    float: left;
    margin: var(--spacing-xxxxxs) var(--spacing-m) var(--spacing-xs) 0;
  }
}
.wp-editor .alignright {
  margin: 20px 0;
}

@media (min-width: 768px) {
  .wp-editor .alignright {
    float: right;
    margin: var(--spacing-xxxxxs) 0 var(--spacing-xs) var(--spacing-m);
  }
}
.wp-editor .ticked-list {
  list-style: none;
  margin-left: 0;
}

.wp-editor .ticked-list li {
  padding-left: 34px;
  position: relative;
}

.wp-editor .ticked-list li::marker {
  content: "";
}

.wp-editor .ticked-list li::before {
  background-color: var(--colour-blue-2);
  content: "";
  flex: 0 0 21px;
  height: 17px;
  left: 0;
  margin-top: 4px;
  -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="17" viewBox="0 0 22 17" fill="none"><path d="M2 10.5L6.5 15L19.5 2" stroke="%23344ABE" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>');
          mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="17" viewBox="0 0 22 17" fill="none"><path d="M2 10.5L6.5 15L19.5 2" stroke="%23344ABE" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  width: 21px;
}

.wp-editor .spaced-list {
  list-style: none;
  margin-left: 0;
}

.wp-editor .spaced-list li {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p);
  font-weight: 300;
  line-height: var(--line-height-p);
  text-transform: none;
}

.wp-editor .spaced-list li::marker {
  content: "";
}

.wp-editor .spaced-list li b,
.wp-editor .spaced-list li strong {
  display: inline-block;
  width: 100px;
}

.wp-editor .spaced-list li:not(:last-child) {
  margin-bottom: var(--spacing-xxxxs);
}

.wp-editor .fancy-ordered-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin-left: 0;
}

.wp-editor .fancy-ordered-list li {
  font-family: var(--font-serif);
  font-size: var(--font-size-4);
  font-weight: 500;
  line-height: var(--line-height-4);
  text-transform: none;
  border-top: 1px solid var(--colour-blue-3);
  counter-increment: fancy-counter;
  margin: 0;
  padding: var(--spacing-xs) 0;
  padding-left: 55px;
  position: relative;
}

.wp-editor .fancy-ordered-list li:last-child {
  border-bottom: 1px solid var(--colour-blue-3);
}

body.for-business-page .wp-editor .fancy-ordered-list li {
  border-color: var(--colour-green-3);
}

.wp-editor .fancy-ordered-list li::before {
  align-items: center;
  background: linear-gradient(50deg, #344ABE 14.16%, #182258 83.7%);
  border-radius: 50%;
  color: var(--colour-white);
  content: counter(fancy-counter);
  display: flex;
  height: 40px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 12px;
  width: 40px;
}

@media (min-width: 768px) {
  .wp-editor .fancy-ordered-list li::before {
    top: 14px;
  }
}
@media (min-width: 1024px) {
  .wp-editor .fancy-ordered-list li::before {
    top: 19px;
  }
}
body.for-business-page .wp-editor .fancy-ordered-list li::before {
  background: var(--colour-green-2-50);
  color: var(--colour-green-1);
}

.wp-block-embed {
  width: 100%;
}

.wp-block-embed .wp-block-embed__wrapper {
  height: 100%;
  width: 100%;
}

.wp-block-embed iframe {
  height: 100%;
  width: 100%;
}

.wp-embed-aspect-16-9 {
  aspect-ratio: 16/9;
}

.wp-embed-aspect-4-3 {
  aspect-ratio: 4/3;
}

/**
 * Swiper 10.3.1 (custom minified version)
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 28, 2023
 */
/* stylelint-disable */
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: var(--slide-width, 100%);
  height: var(--slide-height, 100%);
  position: relative;
  transition-property: transform;
  display: var(--slide-display, block);
}

/* stylelint-enable */
.btn {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-button);
  font-weight: 700;
  line-height: var(--line-height-button);
  text-transform: none;
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: var(--radius-button);
  border-style: solid;
  border-width: var(--border-button);
  display: inline-flex;
  gap: 0.8rem;
  height: calc(var(--height-button) - var(--border-button) * 2);
  justify-content: center;
  line-height: 1.2;
  outline: none;
  overflow: hidden;
  padding: calc(var(--spacing-xxs) - var(--border-button)) calc(var(--spacing-m) - var(--border-button)) calc(var(--spacing-xxs) - var(--border-button)) calc(var(--spacing-m) - var(--border-button));
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: var(--transition-background), var(--transition-color), var(--transition-border-color);
  width: auto;
  z-index: 1;
}

.btn .button-icon {
  flex-shrink: 0;
  position: relative;
  transition: var(--transition-all);
}

@media (hover: hover) and (pointer: fine) {
  .btn:enabled:enabled:hover, .btn:enabled:enabled:focus-visible, .btn:enabled:not([disabled]):hover, .btn:enabled:not([disabled]):focus-visible, .btn:not([disabled]):enabled:hover, .btn:not([disabled]):enabled:focus-visible, .btn:not([disabled]):not([disabled]):hover, .btn:not([disabled]):not([disabled]):focus-visible {
    cursor: pointer;
  }
}
.btn:has(.button-icon) {
  text-align: left;
}

.btn.btn--primary {
  background-color: var(--button-primary-background);
  border-color: var(--button-primary-border);
  color: var(--button-primary-colour);
  opacity: 0.3;
}

.btn.btn--primary .button-icon {
  color: var(--button-primary-colour);
}

.btn.btn--primary:enabled, .btn.btn--primary:not([disabled]) {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .btn.btn--primary:enabled:enabled:hover, .btn.btn--primary:enabled:enabled:focus-visible, .btn.btn--primary:enabled:not([disabled]):hover, .btn.btn--primary:enabled:not([disabled]):focus-visible, .btn.btn--primary:not([disabled]):enabled:hover, .btn.btn--primary:not([disabled]):enabled:focus-visible, .btn.btn--primary:not([disabled]):not([disabled]):hover, .btn.btn--primary:not([disabled]):not([disabled]):focus-visible {
    background-color: var(--button-primary-background-hover);
    border-color: var(--button-primary-border-hover);
    color: var(--button-primary-colour-hover);
  }
  .btn.btn--primary:enabled:enabled:hover .button-icon, .btn.btn--primary:enabled:enabled:focus-visible .button-icon, .btn.btn--primary:enabled:not([disabled]):hover .button-icon, .btn.btn--primary:enabled:not([disabled]):focus-visible .button-icon, .btn.btn--primary:not([disabled]):enabled:hover .button-icon, .btn.btn--primary:not([disabled]):enabled:focus-visible .button-icon, .btn.btn--primary:not([disabled]):not([disabled]):hover .button-icon, .btn.btn--primary:not([disabled]):not([disabled]):focus-visible .button-icon {
    color: var(--button-primary-colour-hover);
  }
  .btn.btn--primary:enabled:enabled:active, .btn.btn--primary:enabled:not([disabled]):active, .btn.btn--primary:not([disabled]):enabled:active, .btn.btn--primary:not([disabled]):not([disabled]):active {
    background-color: var(--button-primary-background-active);
    border-color: var(--button-primary-border-active);
    color: var(--button-primary-colour-active);
  }
  .btn.btn--primary:enabled:enabled:active .button-icon, .btn.btn--primary:enabled:not([disabled]):active .button-icon, .btn.btn--primary:not([disabled]):enabled:active .button-icon, .btn.btn--primary:not([disabled]):not([disabled]):active .button-icon {
    color: var(--button-primary-colour-active);
  }
}
body.for-business-page .btn.btn--primary:not(.btn--dark) {
  --button-primary-background: var(--colour-green-2-50);
  --button-primary-border: var(--colour-green-2-50);
  --button-primary-colour: var(--colour-green-1);
  --button-primary-colour-hover: var(--colour-green-1);
  --button-primary-colour-active: var(--colour-green-1);
}

.btn.btn--secondary {
  background-color: var(--button-secondary-background);
  border-color: var(--button-secondary-border);
  color: var(--button-secondary-colour);
  opacity: 0.3;
}

.btn.btn--secondary .button-icon {
  color: var(--button-secondary-colour);
}

.btn.btn--secondary:enabled, .btn.btn--secondary:not([disabled]) {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .btn.btn--secondary:enabled:enabled:hover, .btn.btn--secondary:enabled:enabled:focus-visible, .btn.btn--secondary:enabled:not([disabled]):hover, .btn.btn--secondary:enabled:not([disabled]):focus-visible, .btn.btn--secondary:not([disabled]):enabled:hover, .btn.btn--secondary:not([disabled]):enabled:focus-visible, .btn.btn--secondary:not([disabled]):not([disabled]):hover, .btn.btn--secondary:not([disabled]):not([disabled]):focus-visible {
    background-color: var(--button-secondary-background-hover);
    border-color: var(--button-secondary-border-hover);
    color: var(--button-secondary-colour-hover);
  }
  .btn.btn--secondary:enabled:enabled:hover .button-icon, .btn.btn--secondary:enabled:enabled:focus-visible .button-icon, .btn.btn--secondary:enabled:not([disabled]):hover .button-icon, .btn.btn--secondary:enabled:not([disabled]):focus-visible .button-icon, .btn.btn--secondary:not([disabled]):enabled:hover .button-icon, .btn.btn--secondary:not([disabled]):enabled:focus-visible .button-icon, .btn.btn--secondary:not([disabled]):not([disabled]):hover .button-icon, .btn.btn--secondary:not([disabled]):not([disabled]):focus-visible .button-icon {
    color: var(--button-secondary-colour-hover);
  }
  .btn.btn--secondary:enabled:enabled:active, .btn.btn--secondary:enabled:not([disabled]):active, .btn.btn--secondary:not([disabled]):enabled:active, .btn.btn--secondary:not([disabled]):not([disabled]):active {
    background-color: var(--button-secondary-background-active);
    border-color: var(--button-secondary-border-active);
    color: var(--button-secondary-colour-active);
  }
  .btn.btn--secondary:enabled:enabled:active .button-icon, .btn.btn--secondary:enabled:not([disabled]):active .button-icon, .btn.btn--secondary:not([disabled]):enabled:active .button-icon, .btn.btn--secondary:not([disabled]):not([disabled]):active .button-icon {
    color: var(--button-secondary-colour-active);
  }
}
body.for-business-page .btn.btn--secondary {
  --button-secondary-colour: var(--colour-green-1);
  --button-secondary-colour-hover: var(--colour-green-1);
  --button-secondary-colour-active: var(--colour-green-1);
}

.btn.btn--tertiary {
  background-color: transparent;
  border-color: transparent;
  color: var(--button-tertiary-colour);
  opacity: 0.3;
}

.btn.btn--tertiary .button-icon {
  color: var(--button-tertiary-colour);
}

.btn.btn--tertiary:enabled, .btn.btn--tertiary:not([disabled]) {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .btn.btn--tertiary:enabled:enabled:hover, .btn.btn--tertiary:enabled:enabled:focus-visible, .btn.btn--tertiary:enabled:not([disabled]):hover, .btn.btn--tertiary:enabled:not([disabled]):focus-visible, .btn.btn--tertiary:not([disabled]):enabled:hover, .btn.btn--tertiary:not([disabled]):enabled:focus-visible, .btn.btn--tertiary:not([disabled]):not([disabled]):hover, .btn.btn--tertiary:not([disabled]):not([disabled]):focus-visible {
    background-color: transparent;
    border-color: transparent;
    color: var(--button-tertiary-colour-hover);
  }
  .btn.btn--tertiary:enabled:enabled:hover .button-icon, .btn.btn--tertiary:enabled:enabled:focus-visible .button-icon, .btn.btn--tertiary:enabled:not([disabled]):hover .button-icon, .btn.btn--tertiary:enabled:not([disabled]):focus-visible .button-icon, .btn.btn--tertiary:not([disabled]):enabled:hover .button-icon, .btn.btn--tertiary:not([disabled]):enabled:focus-visible .button-icon, .btn.btn--tertiary:not([disabled]):not([disabled]):hover .button-icon, .btn.btn--tertiary:not([disabled]):not([disabled]):focus-visible .button-icon {
    color: var(--button-tertiary-colour-hover);
  }
  .btn.btn--tertiary:enabled:enabled:active, .btn.btn--tertiary:enabled:not([disabled]):active, .btn.btn--tertiary:not([disabled]):enabled:active, .btn.btn--tertiary:not([disabled]):not([disabled]):active {
    background-color: transparent;
    border-color: transparent;
    color: var(--button-tertiary-colour-active);
  }
  .btn.btn--tertiary:enabled:enabled:active .button-icon, .btn.btn--tertiary:enabled:not([disabled]):active .button-icon, .btn.btn--tertiary:not([disabled]):enabled:active .button-icon, .btn.btn--tertiary:not([disabled]):not([disabled]):active .button-icon {
    color: var(--button-tertiary-colour-active);
  }
}
.btn.btn--tertiary {
  --radius-button: 0;
  border: 0;
  padding: 0;
}

.btn.btn--dark {
  --button-primary-background: var(--colour-white);
  --button-primary-background-hover: var(--colour-blue-3-40);
  --button-primary-background-active: var(--colour-blue-3-40);
  --button-primary-border: var(--colour-white);
  --button-primary-border-hover: var(--colour-blue-3-40);
  --button-primary-border-active: var(--colour-blue-3-40);
  --button-primary-colour: var(--colour-blue-2);
  --button-primary-colour-hover: var(--colour-blue-2);
  --button-primary-colour-active: var(--colour-blue-2);
  --button-tertiary-colour: var(--colour-white);
  --button-tertiary-colour-hover: var(--colour-blue-3-40);
  --button-tertiary-colour-active: var(--colour-blue-3-40);
}

.btn.btn--small {
  gap: var(--spacing-xxxxxs);
  padding: var(--spacing-xxxs) var(--spacing-xs);
}

.btn.btn--large {
  font-family: var(--font-serif);
  font-size: var(--font-size-4);
  font-weight: 500;
  line-height: var(--line-height-4);
  text-transform: none;
  border-radius: var(--radius-s);
  justify-content: space-between;
  padding: var(--spacing-s) var(--spacing-m);
}

@font-face {
  font-family: Archivo;
  font-style: normal;
  font-weight: 400;
  src: url(../../dist/fonts/Archivo-Regular.eot?5794c3599d2510fe4981c2220598e4be);
  src: local("☺︎"), url(../../dist/fonts/Archivo-Regular.eot?5794c3599d2510fe4981c2220598e4be?#iefix) format("embedded-opentype"), url(../../dist/fonts/Archivo-Regular.woff2?1e89ad2c42d7af23e1f5b012c3fa6f5a) format("woff2"), url(../../dist/fonts/Archivo-Regular.woff?bf9493fe9887ec54bc8d5dde9db1632b) format("woff");
}
@font-face {
  font-family: Archivo;
  font-style: normal;
  font-weight: 300;
  src: url(../../dist/fonts/Archivo-Light.eot?4e2e2c0c7648434961e84fed59901080);
  src: local("☺︎"), url(../../dist/fonts/Archivo-Light.eot?4e2e2c0c7648434961e84fed59901080?#iefix) format("embedded-opentype"), url(../../dist/fonts/Archivo-Light.woff2?5f76a4302b273d49f53d50fb4dd89028) format("woff2"), url(../../dist/fonts/Archivo-Light.woff?f154cc679156513be6fc1f006cb56b7f) format("woff");
}
@font-face {
  font-family: Archivo;
  font-style: normal;
  font-weight: 500;
  src: url(../../dist/fonts/Archivo-Medium.eot?84bb0210141f780126e365e240854645);
  src: local("☺︎"), url(../../dist/fonts/Archivo-Medium.eot?84bb0210141f780126e365e240854645?#iefix) format("embedded-opentype"), url(../../dist/fonts/Archivo-Medium.woff2?67bf72c808b6f509133b725f9e583b6e) format("woff2"), url(../../dist/fonts/Archivo-Medium.woff?3b5cba11c3f619ac62bb478bfc5861d0) format("woff");
}
@font-face {
  font-family: Archivo;
  font-style: normal;
  font-weight: 700;
  src: url(../../dist/fonts/Archivo-Bold.eot?a31d7c1f320dc8e63835ca2235f2227d);
  src: local("☺︎"), url(../../dist/fonts/Archivo-Bold.eot?a31d7c1f320dc8e63835ca2235f2227d?#iefix) format("embedded-opentype"), url(../../dist/fonts/Archivo-Bold.woff2?f510d2d54b42ceae49025ccfd7ff928c) format("woff2"), url(../../dist/fonts/Archivo-Bold.woff?f561a4db20d2bbc1ddf7c302a2f64b56) format("woff");
}
@font-face {
  font-family: Archivo;
  font-style: italic;
  font-weight: 400;
  src: url(../../dist/fonts/Archivo-Italic.eot?d20dfe89928db93999809b19df5b0606);
  src: local("☺︎"), url(../../dist/fonts/Archivo-Italic.eot?d20dfe89928db93999809b19df5b0606?#iefix) format("embedded-opentype"), url(../../dist/fonts/Archivo-Italic.woff2?97a2774493073fca42b0f146a761f4b7) format("woff2"), url(../../dist/fonts/Archivo-Italic.woff?75f2bafdf270dc502d93c7b9246eca96) format("woff");
}
@font-face {
  font-family: "Titling Gothic FB";
  font-style: normal;
  font-weight: 400;
  src: url(../../dist/fonts/TitlingGothicFBRegular.eot?17ec7646750041420548afbd1e6020c7);
  src: local("☺︎"), url(../../dist/fonts/TitlingGothicFBRegular.eot?17ec7646750041420548afbd1e6020c7?#iefix) format("embedded-opentype"), url(../../dist/fonts/TitlingGothicFBRegular.woff2?58ffb24ee5d68681e6c77df14e86222c) format("woff2"), url(../../dist/fonts/TitlingGothicFBRegular.woff?169f71d7bd579dce3f8b9525d71dfed6) format("woff");
}
@font-face {
  font-family: "Titling Gothic FB";
  font-style: normal;
  font-weight: 500;
  src: url(../../dist/fonts/TitlingGothicFBMedium.eot?e57d74b83dd33bb28b27e0a3cf325d02);
  src: local("☺︎"), url(../../dist/fonts/TitlingGothicFBMedium.eot?e57d74b83dd33bb28b27e0a3cf325d02?#iefix) format("embedded-opentype"), url(../../dist/fonts/TitlingGothicFBMedium.woff2?8f573b6b858f58dc980a61e8b3843d4d) format("woff2"), url(../../dist/fonts/TitlingGothicFBMedium.woff?109e36b49bf135c93ee0e62db007f372) format("woff");
}
@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(10px);
}

.fade-in.active {
  animation-duration: var(--base-transition-speed);
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: fade-in;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(80px);
}

.slide-in-left.active {
  animation-duration: var(--base-transition-speed);
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: slide-in-left;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(-80px);
}

.slide-in-right.active {
  animation-duration: var(--base-transition-speed);
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: slide-in-right;
}

.row-load > * {
  opacity: 0;
  transform: translateY(10px);
}

.row-load > *.active {
  animation-duration: var(--base-transition-speed);
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: fade-in;
}

.footer {
  background-color: var(--colour-blue-1);
  background-image: url("/wp-content/themes/withsecure/dist/images/footer-graphic.svg");
  background-position: right bottom;
  background-repeat: no-repeat;
  border-top-left-radius: var(--radius-m);
  border-top-right-radius: var(--radius-m);
  color: var(--colour-white);
  margin-top: var(--spacing-xxxl);
  padding: var(--spacing-xxxl) 0 180px;
}

@media (max-width: 767.98px) {
  .footer {
    background-position: right calc(100% + 25px);
    background-size: 375px;
    padding-bottom: 150px;
  }
}
.footer a:not(.btn):hover {
  color: var(--colour-blue-3);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__container {
  margin: 0 auto;
  max-width: var(--width-max-width-padded);
  padding-left: var(--spacing-body-mobile);
  padding-right: var(--spacing-body-mobile);
  width: 100%;
}

@media (min-width: 1024px) {
  .footer__container {
    padding-left: var(--spacing-body);
    padding-right: var(--spacing-body);
  }
}
.footer__bottom-row,
.footer__second-row,
.footer__top-row {
  display: flex;
  gap: var(--spacing-m);
  justify-content: space-between;
}

@media (max-width: 767.98px) {
  .footer__bottom-row,
  .footer__second-row,
  .footer__top-row {
    flex-direction: column;
  }
}
.footer__top-row {
  margin: 0 0 var(--spacing-xxl);
}

.footer__logo {
  flex: 1;
}

.footer__subtitle {
  font-family: var(--font-serif);
  font-size: var(--font-size-4);
  font-weight: 400;
  line-height: var(--line-height-4);
  text-transform: none;
  margin-top: var(--spacing-xs);
}

.footer__newsletter {
  flex: 1;
  max-width: 505px;
}

@media (min-width: 768px) {
  .footer__newsletter {
    text-align: right;
  }
}
.footer__newsletter-title {
  font-family: var(--font-serif);
  font-size: var(--font-size-4);
  font-weight: 400;
  line-height: var(--line-height-4);
  text-transform: none;
  margin-bottom: var(--spacing-xxs);
}

.footer__newsletter-form {
  display: flex;
  gap: var(--spacing-xxxxs);
}

.footer__newsletter-input {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p);
  font-weight: 300;
  line-height: var(--line-height-p);
  text-transform: none;
  border: 1px solid var(--colour-blue-3);
  border-radius: var(--radius-xxs);
  color: var(--colour-black);
  height: 52px;
  padding: 0 var(--spacing-xxs);
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  border: 0;
}

.footer__newsletter-input::-moz-placeholder {
  color: var(--colour-black);
}

.footer__newsletter-input::placeholder {
  color: var(--colour-black);
}

.footer__newsletter-button {
  --button-primary-background: var(--colour-blue-2-hover);
}

@media (max-width: 767.98px) {
  .footer__newsletter-button {
    flex: 0 0 52px;
    height: 52px;
    padding: 0;
    width: 52px;
  }
}
@media (max-width: 767.98px) {
  .footer__newsletter-button__text {
    border: 0 !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    text-indent: -9999px !important;
    transform: scale(0) !important;
    width: 1px !important;
  }
}
@media (min-width: 768px) {
  .footer__newsletter-button__icon {
    display: none;
  }
}
.footer__newsletter-subtitle {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p-xs);
  font-weight: 300;
  line-height: var(--line-height-p-xs);
  text-transform: none;
  margin-top: var(--spacing-xxs);
}

.footer__second-row {
  border-bottom: 1px solid var(--colour-black-4);
  margin-bottom: var(--spacing-xs);
  padding-bottom: var(--spacing-xs);
}

.footer__menu,
.footer__legal-menu {
  display: flex;
}

@media (max-width: 767.98px) {
  .footer__menu,
  .footer__legal-menu {
    flex-direction: column;
  }
}
.footer__menu a,
.footer__legal-menu a {
  color: var(--colour-white);
  text-decoration: none;
}

.footer__menu {
  font-weight: 500;
  gap: var(--spacing-s);
}

.footer__legal-menu {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p-s);
  font-weight: 300;
  line-height: var(--line-height-p-s);
  text-transform: none;
  gap: var(--spacing-xs);
}

.footer__menus-row {
  border-top: 1px solid var(--colour-black-4);
  display: flex;
  gap: var(--spacing-m);
  margin: 0 0 var(--spacing-xxl);
  padding-top: var(--spacing-xs);
}

@media (max-width: 1023.98px) {
  .footer__menus-row {
    flex-direction: column;
    gap: 0;
    padding-top: 0;
  }
}
@media (max-width: 1023.98px) {
  .footer-accordion {
    border-bottom: 1px solid var(--colour-blue-3);
  }
  .footer-accordion:last-child {
    border-bottom: 0;
  }
}
.footer-accordion__header {
  align-items: center;
  display: flex;
  gap: var(--spacing-xxs);
  justify-content: space-between;
  width: 100%;
}

@media (min-width: 1024px) {
  .footer-accordion__header {
    cursor: default;
    pointer-events: none;
  }
}
@media (max-width: 1023.98px) {
  .footer-accordion__header {
    padding: var(--spacing-s) 0;
  }
}
.footer-accordion__title {
  font-family: var(--font-serif);
  font-size: var(--font-size-5);
  font-weight: 500;
  line-height: var(--line-height-5);
  text-transform: none;
  color: var(--colour-white);
}

.footer-accordion__icon {
  color: var(--colour-white);
  flex-shrink: 0;
  transform: rotate(90deg);
  transition: transform 0.3s ease-out;
}

@media (min-width: 1024px) {
  .footer-accordion__icon {
    display: none;
  }
}
.footer-accordion--open .footer-accordion__icon {
  transform: rotate(-90deg);
}

@media (max-width: 1023.98px) {
  .footer-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-all);
  }
}
@media (min-width: 1024px) {
  .footer-accordion__content {
    margin-top: var(--spacing-xxs);
  }
}
.footer-accordion__menu {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxs);
}

@media (max-width: 1023.98px) {
  .footer-accordion__menu {
    padding-bottom: var(--spacing-xs);
  }
}
.footer-accordion__menu a {
  color: var(--colour-white);
  text-decoration: none;
}

.header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: var(--header-z-index);
}

.header__top-nav {
  background-color: var(--colour-blue-1);
  color: var(--colour-white);
  position: relative;
  text-align: right;
  z-index: 2;
}

.header__top-nav .header__container {
  justify-content: flex-end;
}

@media (max-width: 1023.98px) {
  .header__top-menu {
    display: none;
  }
}
.header__top-menu-list {
  display: flex;
  gap: var(--spacing-xxs);
  list-style: none;
  margin: 0 var(--spacing-xxs) 0 0;
  padding: 0;
}

.header__top-menu-list .header__mm-item {
  --mm-item-border-colour: var(--colour-white);
  --mm-item-text-colour-active: var(--colour-white);
  position: relative;
}

.header__top-menu-list .menu-item,
.header__top-nav__link {
  align-items: center;
  display: flex;
  height: var(--header-top-nav-height);
}

.header__top-nav a {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p-s);
  font-weight: 300;
  line-height: var(--line-height-p-s);
  text-transform: none;
  align-items: center;
  color: inherit;
  display: flex;
  gap: var(--spacing-xxxxs);
  text-decoration: none;
}

.header__top-nav a:hover, .header__top-nav a:focus {
  color: var(--colour-blue-3);
}

.header__main-nav {
  backdrop-filter: blur(12px);
  background: color(srgb 1 1 1 / 0.5);
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}

@media (max-width: 1023.98px) {
  .header__main-nav {
    height: var(--header-height);
  }
}
.header__main-nav .header__container {
  gap: var(--spacing-xs);
}

@media (max-width: 1023.98px) {
  .header__main-nav .header__container {
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  .header__main-nav .header__container {
    gap: var(--spacing-m);
  }
}
.header__container {
  margin: 0 auto;
  max-width: var(--width-max-width-padded);
  padding-left: var(--spacing-body-mobile);
  padding-right: var(--spacing-body-mobile);
  width: 100%;
}

@media (min-width: 1024px) {
  .header__container {
    padding-left: var(--spacing-body);
    padding-right: var(--spacing-body);
  }
}
.header__container {
  align-items: center;
  display: flex;
}

.header__nav {
  display: none;
  flex: 1;
}

@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}
.header__menu {
  align-items: center;
  display: flex;
  gap: var(--header-menu-gap);
}

.header__menu .menu-item {
  align-items: center;
  display: flex;
  height: var(--header-height);
  position: relative;
  transition: var(--transition-all);
}

.header__menu .menu-item a {
  align-items: center;
  color: var(--colour-black);
  display: flex;
  font-weight: 500;
  gap: var(--spacing-xxxxxs);
  text-decoration: none;
}

.header__menu .menu-item a:hover {
  color: var(--colour-blue-2);
}

@media (max-width: 1379.98px) {
  .header__menu .menu-item {
    font-family: var(--font-sans-serif);
    font-size: var(--font-size-p-s);
    font-weight: 300;
    line-height: var(--line-height-p-s);
    text-transform: none;
  }
}
@media (max-width: 1279.98px) {
  .header__menu .menu-item {
    font-family: var(--font-sans-serif);
    font-size: var(--font-size-p-xs);
    font-weight: 300;
    line-height: var(--line-height-p-xs);
    text-transform: none;
  }
}
.header__menu .menu-item.aligner {
  margin-left: auto;
}

@media (min-width: 1024px) {
  .header__menu .menu-item.mobile-only {
    display: none;
  }
}
.header__mm-item::after {
  background-color: var(--mm-item-border-colour, var(--colour-blue-2));
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transition: var(--transition-all);
}

.header__mm-item > .header__mm-anchor {
  align-items: center;
  display: flex;
  gap: 8px;
  transition: var(--transition-all);
}

.header__mm-item > .header__mm-anchor > .header__mm-icon {
  transition: var(--transition-all);
}

@media (min-width: 1024px) {
  .header__mm-item > .header__mm-anchor > .header__mm-icon {
    transform: rotate(90deg);
  }
}
.header__mm-item:has(.mega-menu--simple) {
  position: relative;
}

.header__mm-item:has(.mega-menu.edwp-is-open)::after {
  opacity: 1;
}

.header__mm-item:has(.mega-menu.edwp-is-open) > .header__mm-anchor {
  color: var(--mm-item-text-colour-active, var(--colour-blue-2));
}

.header__mm-item:has(.mega-menu.edwp-is-open) > .header__mm-anchor > .header__mm-icon {
  transform: rotate(-90deg);
}

.header__mm-icon {
  flex-shrink: 0;
}

.header__side-nav {
  align-items: center;
  display: flex;
  gap: var(--header-menu-gap);
}

@media (max-width: 1023.98px) {
  .header__side-nav {
    gap: var(--spacing-l);
  }
}
.header__search,
.header__lang-menu {
  display: flex;
  height: var(--header-height);
  position: relative;
}

@media (max-width: 1023.98px) {
  .header__search,
  .header__lang-menu {
    display: none;
  }
}
body.scrolled .header__search,
body.scrolled .header__lang-menu {
  height: var(--header-height-scrolled);
}

.header__search-button,
.header__lang-menu-button {
  color: var(--colour-black);
}

.header__search-button:hover,
.header__lang-menu-button:hover {
  color: var(--colour-blue-2);
}

@media (max-width: 1279.98px) {
  .header__button {
    padding-left: var(--spacing-xs);
    padding-right: var(--spacing-xs);
  }
}
@media (max-width: 1023.98px) {
  .header__button {
    display: none;
  }
}
.header__button--light {
  font-size: 18px;
  font-weight: 500;
}

.menu-ctrl .menu-ctrl__inner {
  margin-bottom: 6px;
  margin-top: 6px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.menu-ctrl .menu-ctrl__inner, .menu-ctrl .menu-ctrl__inner::before, .menu-ctrl .menu-ctrl__inner::after {
  background-color: var(--colour-blue-1);
  display: block;
  height: 2px;
  transition-duration: 0.3s;
  transition-property: background-color, transform;
  width: 24px;
}

.menu-ctrl .menu-ctrl__inner::before, .menu-ctrl .menu-ctrl__inner::after {
  content: "";
  display: block;
  position: absolute;
}

.menu-ctrl .menu-ctrl__inner::before {
  top: -6px;
}

.menu-ctrl .menu-ctrl__inner::after {
  top: 6px;
}

@media (min-width: 1024px) {
  .menu-ctrl {
    display: none;
  }
}
.menu-ctrl.header__burger--active .menu-ctrl__inner {
  background-color: transparent;
}

.menu-ctrl.header__burger--active .menu-ctrl__inner::before {
  height: 2px;
  transform: translateY(6px) rotate(45deg);
}

.menu-ctrl.header__burger--active .menu-ctrl__inner::after {
  height: 2px;
  transform: translateY(-6px) rotate(-45deg);
}

.header__secondary-nav-wrapper {
  background-color: var(--colour-black-4);
}

@media (max-width: 1023.98px) {
  .header__secondary-nav-wrapper {
    display: none;
  }
}
.header__secondary-nav-wrapper .header__secondary-nav {
  display: flex;
  gap: var(--spacing-s);
  transition: var(--transition-all);
}

body.preload .header__secondary-nav-wrapper .header__secondary-nav {
  transition: none;
}

.header__secondary-nav-wrapper .header__secondary-nav li {
  align-items: center;
  display: flex;
  height: var(--header-secondary-nav-height);
}

.header__logo .edwp-svg {
  display: block;
}

.header__logo__svg {
  color: var(--colour-gray-1);
  height: 28px;
  max-width: 122px;
  overflow: visible;
  transition: var(--transition-all);
}

.header__logo__svg:hover {
  color: var(--colour-blue-2);
}

@media (min-width: 1380px) {
  .header__logo__svg {
    height: 42px;
    max-width: 180px;
  }
}
.logo-path {
  transform-origin: center center;
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1), transform 400ms cubic-bezier(0.4, 0, 0.2, 1), visibility 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-path--w,
.logo-path--i,
.logo-path--t,
.logo-path--h,
.logo-path--secure {
  opacity: 1;
  transform: scale(1) translateX(0);
  visibility: visible;
}

body.scrolled .header__logo__svg {
  height: 27px;
  max-width: 79px;
}

@media (max-width: 1023.98px) {
  body.scrolled .header__logo__svg {
    height: 18px;
    max-width: 52px;
  }
}
body.scrolled .logo-path--t,
body.scrolled .logo-path--h,
body.scrolled .logo-path--secure {
  opacity: 0;
  visibility: hidden;
}

body.scrolled .logo-path--w {
  transform: scale(2.9) translateX(59px) translateY(10px);
}

body.scrolled .logo-path--i {
  transform: scale(2.9) translateX(44px) translateY(10px);
}

body.preload .header__logo__svg,
body.preload .logo-path {
  transition: none !important;
}

.edwp-block.layout--spacing-xxxxxl-top, .edwp-block.layout--spacing-xxxxl-top, .edwp-block.layout--spacing-xxxl-top, .edwp-block.layout--spacing-xxl-top, .edwp-block.layout--spacing-xl-top, .edwp-block.layout--spacing-l-top, .edwp-block.layout--spacing-m-top, .edwp-block.layout--spacing-s-top, .edwp-block.layout--spacing-xs-top, .edwp-block.layout--spacing-xxs-top, .edwp-block.layout--spacing-xxxs-top, .edwp-block.layout--spacing-xxxxs-top, .edwp-block.layout--spacing-xxxxxs-top {
  padding-top: var(--layout-top-spacing);
}

.edwp-block.layout--spacing-xxxxxl-top:first-child, .edwp-block.layout--spacing-xxxxl-top:first-child, .edwp-block.layout--spacing-xxxl-top:first-child, .edwp-block.layout--spacing-xxl-top:first-child, .edwp-block.layout--spacing-xl-top:first-child, .edwp-block.layout--spacing-l-top:first-child, .edwp-block.layout--spacing-m-top:first-child, .edwp-block.layout--spacing-s-top:first-child, .edwp-block.layout--spacing-xs-top:first-child, .edwp-block.layout--spacing-xxs-top:first-child, .edwp-block.layout--spacing-xxxs-top:first-child, .edwp-block.layout--spacing-xxxxs-top:first-child, .edwp-block.layout--spacing-xxxxxs-top:first-child {
  padding-top: calc(var(--layout-top-spacing) + var(--header-height) + var(--header-top-nav-height));
}

body:has(.header__secondary-nav-wrapper) .edwp-block.layout--spacing-xxxxxl-top:first-child, body:has(.header__secondary-nav-wrapper) .edwp-block.layout--spacing-xxxxl-top:first-child, body:has(.header__secondary-nav-wrapper) .edwp-block.layout--spacing-xxxl-top:first-child, body:has(.header__secondary-nav-wrapper) .edwp-block.layout--spacing-xxl-top:first-child, body:has(.header__secondary-nav-wrapper) .edwp-block.layout--spacing-xl-top:first-child, body:has(.header__secondary-nav-wrapper) .edwp-block.layout--spacing-l-top:first-child, body:has(.header__secondary-nav-wrapper) .edwp-block.layout--spacing-m-top:first-child, body:has(.header__secondary-nav-wrapper) .edwp-block.layout--spacing-s-top:first-child, body:has(.header__secondary-nav-wrapper) .edwp-block.layout--spacing-xs-top:first-child, body:has(.header__secondary-nav-wrapper) .edwp-block.layout--spacing-xxs-top:first-child, body:has(.header__secondary-nav-wrapper) .edwp-block.layout--spacing-xxxs-top:first-child, body:has(.header__secondary-nav-wrapper) .edwp-block.layout--spacing-xxxxs-top:first-child, body:has(.header__secondary-nav-wrapper) .edwp-block.layout--spacing-xxxxxs-top:first-child {
  padding-top: calc(var(--layout-top-spacing) + var(--header-height) + var(--header-top-nav-height) + var(--header-secondary-nav-height));
}

.edwp-block.layout--spacing-xxxxxl-bottom, .edwp-block.layout--spacing-xxxxl-bottom, .edwp-block.layout--spacing-xxxl-bottom, .edwp-block.layout--spacing-xxl-bottom, .edwp-block.layout--spacing-xl-bottom, .edwp-block.layout--spacing-l-bottom, .edwp-block.layout--spacing-m-bottom, .edwp-block.layout--spacing-s-bottom, .edwp-block.layout--spacing-xs-bottom, .edwp-block.layout--spacing-xxs-bottom, .edwp-block.layout--spacing-xxxs-bottom, .edwp-block.layout--spacing-xxxxs-bottom, .edwp-block.layout--spacing-xxxxxs-bottom {
  padding-bottom: var(--layout-bottom-spacing);
}

.edwp-block.layout--spacing-xxxxxl-top {
  --layout-top-spacing: var(--spacing-xxxxxl);
}

.edwp-block.layout--spacing-xxxxl-top {
  --layout-top-spacing: var(--spacing-xxxxl);
}

.edwp-block.layout--spacing-xxxl-top {
  --layout-top-spacing: var(--spacing-xxxl);
}

.edwp-block.layout--spacing-xxl-top {
  --layout-top-spacing: var(--spacing-xxl);
}

.edwp-block.layout--spacing-xl-top {
  --layout-top-spacing: var(--spacing-xl);
}

.edwp-block.layout--spacing-l-top {
  --layout-top-spacing: var(--spacing-l);
}

.edwp-block.layout--spacing-m-top {
  --layout-top-spacing: var(--spacing-m);
}

.edwp-block.layout--spacing-s-top {
  --layout-top-spacing: var(--spacing-s);
}

.edwp-block.layout--spacing-xs-top {
  --layout-top-spacing: var(--spacing-xs);
}

.edwp-block.layout--spacing-xxs-top {
  --layout-top-spacing: var(--spacing-xxs);
}

.edwp-block.layout--spacing-xxxs-top {
  --layout-top-spacing: var(--spacing-xxxs);
}

.edwp-block.layout--spacing-xxxl-bottom {
  --layout-bottom-spacing: var(--spacing-xxxl);
}

.edwp-block.layout--spacing-xxl-bottom {
  --layout-bottom-spacing: var(--spacing-xxl);
}

.edwp-block.layout--spacing-xl-bottom {
  --layout-bottom-spacing: var(--spacing-xl);
}

.edwp-block.layout--spacing-l-bottom {
  --layout-bottom-spacing: var(--spacing-l);
}

.edwp-block.layout--spacing-m-bottom {
  --layout-bottom-spacing: var(--spacing-m);
}

.edwp-block.layout--spacing-s-bottom {
  --layout-bottom-spacing: var(--spacing-s);
}

.edwp-block.layout--spacing-xs-bottom {
  --layout-bottom-spacing: var(--spacing-xs);
}

.edwp-block.layout--spacing-xxs-bottom {
  --layout-bottom-spacing: var(--spacing-xxs);
}

.edwp-block.layout--spacing-xxxs-bottom {
  --layout-bottom-spacing: var(--spacing-xxxs);
}

.edwp-block.layout--spacing-xxxxs-top {
  --layout-top-spacing: var(--spacing-xxxxs);
}

.edwp-block.layout--spacing-xxxxs-bottom {
  --layout-bottom-spacing: var(--spacing-xxxxs);
}

.edwp-block.layout--spacing-xxxxxs-top {
  --layout-top-spacing: var(--spacing-xxxxxs);
}

.edwp-block.layout--spacing-xxxxxs-bottom {
  --layout-bottom-spacing: var(--spacing-xxxxxs);
}

.lazyload {
  transition: var(--transition-all);
  transition-duration: 1.2s;
  opacity: 0;
  transform: translateY(12rem);
}

:root {
  --modal-z-index: 9999;
  --modal-overlay-background: rgb(0 0 0 / 70%);
  --modal-content-background: var(--colour-white);
  --modal-padding-outer: var(--spacing-xs);
  --modal-transition-duration: 0.3s;
  --modal-transition-easing: ease-in-out;
  --modal-close-button-size: 2rem;
  --modal-close-button-top: 20px;
  --modal-close-button-right: 20px;
  --modal-close-icon-size: 1.25rem;
  --modal-header-border-bottom: 1px solid var(--colour-black-10);
  --modal-header-padding: var(--spacing-xxs) var(--spacing-xs);
  --modal-body-padding: var(--spacing-xs);
  --modal-body-gap: var(--spacing-m);
  --modal-buttons-gap: var(--spacing-s);
  --radius-modal: var(--radius-m);
}

@media (min-width: 768px) {
  :root {
    --modal-close-button-size: 2.5rem;
    --modal-close-icon-size: 1.5rem;
    --modal-padding-outer: var(--spacing-m);
  }
}
.edwp-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  overflow: hidden;
  padding: var(--modal-padding-outer);
  pointer-events: none;
  position: fixed;
  transition: opacity var(--modal-transition-duration) var(--modal-transition-easing);
  visibility: hidden;
  z-index: var(--modal-z-index);
}

.edwp-modal.edwp-is-active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.edwp-modal.edwp-is-active .edwp-modal__container {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.edwp-modal__overlay {
  background-color: var(--modal-overlay-background);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.edwp-modal__container {
  max-height: 95vh;
  max-width: var(--modal-max-width, 100%);
  opacity: 0;
  overflow: hidden;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--modal-transition-duration) var(--modal-transition-easing), opacity var(--modal-transition-duration) var(--modal-transition-easing);
  width: 100%;
  z-index: 2;
}

@media (min-width: 768px) {
  .edwp-modal__container {
    max-height: 90vh;
  }
}
.edwp-modal__content {
  background-color: var(--modal-content-background);
  border-radius: var(--radius-modal);
  display: flex;
  flex-direction: column;
  max-height: 95vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .edwp-modal__content {
    max-height: 90vh;
  }
}
.edwp-modal__close {
  outline-offset: 0.1rem;
}

.edwp-modal__close:hover {
  cursor: pointer;
  transition: var(--transition-all);
}

.edwp-modal__close:focus-visible {
  outline-color: var(--colour-black);
  outline-style: dashed;
  outline-width: 1px;
}

.bg--secondary .edwp-modal__close:focus-visible {
  outline-color: var(--colour-white);
}

.edwp-modal__close:active {
  outline: 0;
}

.edwp-modal__close {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: var(--colour-blue-2);
  cursor: pointer;
  display: flex;
  height: var(--modal-close-button-size);
  justify-content: center;
  padding: 0;
  position: absolute;
  right: var(--modal-close-button-right);
  top: var(--modal-close-button-top);
  width: var(--modal-close-button-size);
  z-index: 10;
}

.edwp-modal__close:hover {
  opacity: 0.7;
}

.edwp-modal__close svg {
  height: var(--modal-close-icon-size);
  width: var(--modal-close-icon-size);
}

.edwp-modal__header {
  border-bottom: var(--modal-header-border-bottom);
  padding: var(--modal-header-padding);
}

.edwp-modal__title {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-4);
  font-weight: 500;
  line-height: var(--line-height-4);
  text-transform: none;
  margin: 0;
  padding-right: var(--spacing-m);
}

@media (min-width: 768px) {
  .edwp-modal__title {
    font-family: var(--font-sans-serif);
    font-size: var(--font-size-3);
    font-weight: 500;
    line-height: var(--line-height-3);
    text-transform: none;
    padding-right: var(--spacing-l);
  }
}
.edwp-modal__body {
  display: grid;
  flex: 1;
  gap: var(--modal-body-gap);
  overflow-y: auto;
  padding: var(--modal-body-padding);
}

.edwp-modal__body--has-form {
  padding: 0;
}

.edwp-modal__body .wp-block-form-block__container {
  padding: 0;
}

.edwp-modal__body .wp-block-form-block__box {
  padding: var(--spacing-l);
}

@media (min-width: 768px) {
  .edwp-modal__body .wp-block-form-block__box {
    padding: var(--spacing-xl);
  }
}
@media (min-width: 1024px) {
  .edwp-modal__body .wp-block-form-block__box {
    padding: var(--spacing-xxxl);
  }
}
.edwp-modal__iframe iframe {
  border: 0;
  min-height: 300px;
  width: 100%;
}

@media (min-width: 768px) {
  .edwp-modal__iframe iframe {
    min-height: 400px;
  }
}
.edwp-modal__buttons {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: var(--modal-buttons-gap);
}

@media (min-width: 768px) {
  .edwp-modal__buttons {
    flex-direction: row;
  }
}
@media (max-width: 767.98px) {
  .edwp-modal__buttons .edwp-modal__button {
    width: 100%;
  }
}
.edwp-modal--small {
  --modal-max-width: 400px;
}

.edwp-modal--medium {
  --modal-max-width: 600px;
}

.edwp-modal--large {
  --modal-max-width: 900px;
}

.edwp-modal--xlarge {
  --modal-max-width: 1400px;
}

.edwp-modal--fullscreen {
  padding: 0;
}

.edwp-modal--fullscreen .edwp-modal__container {
  max-height: 100%;
}

.edwp-modal--fullscreen .edwp-modal__content {
  border-radius: 0;
  max-height: 100vh;
}

.edwp-modal--right-entry .edwp-modal__body,
.edwp-modal--left-entry .edwp-modal__body {
  align-content: start;
}

.edwp-modal--right-entry {
  justify-content: flex-end;
  padding: 0;
}

.edwp-modal--right-entry .edwp-modal__container {
  max-height: 100vh;
  transform: translateX(100%);
}

.edwp-modal--right-entry .edwp-modal__content {
  border-radius: 0;
  height: 100vh;
  max-height: 100vh;
}

.edwp-modal--right-entry.edwp-is-active .edwp-modal__container {
  transform: translateX(0);
}

.edwp-modal--left-entry {
  justify-content: flex-start;
  padding: 0;
}

.edwp-modal--left-entry .edwp-modal__container {
  max-height: 100vh;
  transform: translateX(-100%);
}

.edwp-modal--left-entry .edwp-modal__content {
  border-radius: 0;
  height: 100vh;
  max-height: 100vh;
}

.edwp-modal--left-entry.edwp-is-active .edwp-modal__container {
  transform: translateX(0);
}

.edwp-modal--fade .edwp-modal__container {
  opacity: 0;
  transform: scale(1);
}

.edwp-modal--fade.edwp-is-active .edwp-modal__container {
  opacity: 1;
  transform: scale(1);
}

.edwp-modal--zoom .edwp-modal__container {
  opacity: 0;
  transform: scale(0.7);
}

.edwp-modal--zoom.edwp-is-active .edwp-modal__container {
  opacity: 1;
  transform: scale(1);
}

.edwp-modal--slide-up .edwp-modal__container {
  opacity: 0;
  transform: translateY(100px);
}

.edwp-modal--slide-up.edwp-is-active .edwp-modal__container {
  opacity: 1;
  transform: translateY(0);
}

.edwp-modal--slide-down .edwp-modal__container {
  opacity: 0;
  transform: translateY(-100px);
}

.edwp-modal--slide-down.edwp-is-active .edwp-modal__container {
  opacity: 1;
  transform: translateY(0);
}

.edwp-modal--slide-left .edwp-modal__container {
  opacity: 0;
  transform: translateX(-100px);
}

.edwp-modal--slide-left.edwp-is-active .edwp-modal__container {
  opacity: 1;
  transform: translateX(0);
}

.edwp-modal--slide-right .edwp-modal__container {
  opacity: 0;
  transform: translateX(100px);
}

.edwp-modal--slide-right.edwp-is-active .edwp-modal__container {
  opacity: 1;
  transform: translateX(0);
}

.edwp-modal--unfold .edwp-modal__container {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: center top;
}

.edwp-modal--unfold.edwp-is-active .edwp-modal__container {
  opacity: 1;
  transform: scaleY(1);
}

.edwp-svg {
  display: inline-block;
}

.edwp-svg svg {
  display: block;
}

.mega-menu {
  background-color: var(--colour-blue-3-20);
  border-bottom-left-radius: var(--spacing-s);
  border-bottom-right-radius: var(--spacing-s);
  display: none;
  left: 0;
  max-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  position: fixed;
  right: 0;
  scrollbar-gutter: stable;
  top: var(--header-height);
  transition: var(--transition-all);
  visibility: hidden;
}

@media (min-width: 1024px) {
  .mega-menu {
    display: block;
  }
}
.mega-menu.edwp-is-open {
  max-height: 1000px;
  visibility: visible;
}

.header__secondary-nav-wrapper .mega-menu {
  top: calc(var(--header-top-nav-height) + var(--header-height) + var(--header-secondary-nav-height));
}

.mega-menu__container {
  margin: 0 auto;
  max-width: var(--width-max-width-padded);
  padding-left: var(--spacing-body-mobile);
  padding-right: var(--spacing-body-mobile);
  width: 100%;
}

@media (min-width: 1024px) {
  .mega-menu__container {
    padding-left: var(--spacing-body);
    padding-right: var(--spacing-body);
  }
}
.mega-menu__inner {
  transition: var(--transition-all);
}

body.preload .mega-menu__inner {
  transition: none;
}

.mega-menu__close {
  position: absolute;
  right: 15px;
  top: 15px;
}

.mega-menu__close-sr {
  border: 0 !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  text-indent: -9999px !important;
  transform: scale(0) !important;
  width: 1px !important;
}

@media (max-width: 1379.98px) {
  .mega-menu--simple .mega-menu__button {
    display: none;
  }
}
.mega-menu--simple .mega-menu__inner {
  display: flex;
  justify-content: space-between;
  padding: var(--mega-menu-simple-padding) 0;
}

.mega-menu--simple .mega-menu__links {
  display: inline-grid;
  gap: var(--mega-menu-simple-gap);
}

.mega-menu--simple .mega-menu__links--two-cols {
  -moz-column-gap: var(--spacing-xl);
       column-gap: var(--spacing-xl);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-menu--simple .mega-menu__link {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p);
  font-weight: 300;
  line-height: var(--line-height-p);
  text-transform: none;
}

.mega-menu__links-title {
  font-family: var(--font-serif);
  font-size: var(--font-size-5);
  font-weight: 500;
  line-height: var(--line-height-5);
  text-transform: none;
  margin-bottom: var(--spacing-s);
}

.mega-menu__additional-links-wrapper {
  margin-right: var(--spacing-m);
  padding-right: var(--spacing-m);
  position: relative;
}

.mega-menu__additional-links-wrapper::after {
  background-color: var(--colour-blue-3);
  bottom: calc(var(--mega-menu-simple-padding) * -1);
  content: "";
  position: absolute;
  right: 0;
  top: calc(var(--mega-menu-simple-padding) * -1);
  width: 1px;
}

.mega-menu__link-groups {
  display: flex;
}

.mega-menu--login-dropdown,
.mega-menu--language-switcher {
  display: block;
  left: unset;
  position: absolute;
  right: unset;
}

@media (min-width: 1024px) {
  .mega-menu--login-dropdown,
  .mega-menu--language-switcher {
    left: 50%;
    transform: translateX(-50%);
  }
}
.mega-menu--login-dropdown .mega-menu__inner,
.mega-menu--language-switcher .mega-menu__inner {
  padding: var(--spacing-xxxxs) var(--spacing-s) var(--spacing-xl);
}

.mega-menu--login-dropdown .mega-menu__close,
.mega-menu--language-switcher .mega-menu__close {
  bottom: 20px;
  left: 50%;
  right: unset;
  top: unset;
  transform: translateX(-50%);
}

@media (max-width: 1023.98px) {
  .mega-menu--login-dropdown .mega-menu__close,
  .mega-menu--language-switcher .mega-menu__close {
    bottom: 7px;
  }
}
.mega-menu--login-dropdown ul,
.mega-menu--language-switcher ul {
  display: flex;
  flex-direction: column;
}

.mega-menu--login-dropdown li,
.mega-menu--language-switcher li {
  border-bottom: 1px solid var(--colour-blue-3-60);
  padding: var(--spacing-xs) 0;
  position: relative;
}

.mega-menu--login-dropdown li::after,
.mega-menu--language-switcher li::after {
  background: linear-gradient(90deg, var(--colour-blue-3-20) 0%, var(--colour-blue-3-40) 50.96%, var(--colour-blue-3-20) 100%);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: var(--transition-all);
}

.mega-menu--login-dropdown li a,
.mega-menu--language-switcher li a {
  align-items: center;
  color: var(--colour-black);
  display: flex;
  font-weight: 500;
  justify-content: space-between;
  position: relative;
  text-decoration: none;
  z-index: 1;
}

html[lang=fi] .mega-menu--login-dropdown li a,
html[lang=fi] .mega-menu--language-switcher li a {
  text-transform: lowercase;
}

.mega-menu--login-dropdown li .wpml-ls-flag,
.mega-menu--language-switcher li .wpml-ls-flag {
  border: 1px solid var(--colour-blue-3-40);
}

.mega-menu--login-dropdown li:hover::after, .mega-menu--login-dropdown li:focus-visible::after,
.mega-menu--language-switcher li:hover::after,
.mega-menu--language-switcher li:focus-visible::after {
  opacity: 1;
}

.mega-menu--login-dropdown li:hover a, .mega-menu--login-dropdown li:focus-visible a,
.mega-menu--language-switcher li:hover a,
.mega-menu--language-switcher li:focus-visible a {
  color: var(--colour-black);
}

.mega-menu--login-dropdown .wpml-ls a,
.mega-menu--language-switcher .wpml-ls a {
  flex-direction: row-reverse;
}

.mega-menu--language-switcher {
  max-width: 435px;
  width: 435px;
}

.mega-menu--language-switcher ul {
  -moz-column-gap: var(--spacing-m);
       column-gap: var(--spacing-m);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-menu--search {
  left: 0;
  overflow: visible;
  right: 0;
}

.mega-menu--search .mega-menu__inner {
  padding: var(--spacing-xxxxs) 0 var(--spacing-xxs);
}

.mega-menu--search .wp-block-search-form {
  margin-left: auto;
  max-width: 669px;
}

.mega-menu--search .wp-block-search-form__fields input {
  background-color: transparent;
  border-color: var(--colour-blue-1);
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

.mega-menu--login-dropdown {
  --custom-mm-scrolled-height: 43px;
  max-width: 265px;
  top: 43px;
  width: 265px;
  z-index: 1;
}

.mobile-menu {
  background-color: var(--mobile-menu-background-colour);
  border-bottom-left-radius: var(--radius-s);
  display: flex;
  filter: drop-shadow(0 0 10px rgba(52, 74, 190, 0.2));
  flex-direction: column;
  max-height: 100%;
  max-width: 335px;
  overflow: hidden;
  padding-top: calc(var(--header-height) + var(--header-top-nav-height));
  position: fixed;
  right: -100%;
  transition: var(--transition-all);
  visibility: hidden;
  width: 100%;
  z-index: 999;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu--active {
  right: 0;
  visibility: visible;
}

.mobile-menu__steps {
  display: grid;
  flex: 1;
  overflow: hidden;
}

.mobile-menu__step {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-m);
  grid-column: 1;
  grid-row: 1;
  overflow: hidden scroll;
  transform: translateX(100%);
  transition: var(--transition-all);
  visibility: hidden;
}

.mobile-menu__step.mobile-menu__step--active {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu__step.mobile-menu__step--parent-open {
  transform: translateX(-100%);
}

.mobile-menu__step-inner {
  padding: var(--mobile-menu-step-padding);
}

.mobile-menu__back {
  align-items: center;
  background-color: var(--colour-blue-3-40);
  color: var(--colour-black);
  display: flex;
  font-weight: 500;
  gap: var(--mobile-menu-back-gap);
  margin: 0 calc(var(--spacing-xs) * -1) var(--spacing-m);
  padding: var(--spacing-xxs) var(--spacing-xs);
  text-decoration: none;
}

.mobile-menu__back-icon {
  color: var(--colour-blue-2);
  transform: rotate(-180deg);
}

.mobile-menu__nav,
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: var(--mobile-menu-links-gap);
}

.mobile-menu__nav li a,
.mobile-menu__link {
  align-items: center;
  border-bottom: 1px solid var(--colour-blue-3-60);
  color: var(--colour-black);
  display: flex;
  font-weight: 500;
  gap: var(--mobile-menu-link-gap);
  justify-content: space-between;
  padding: var(--spacing-xxs) 0;
  text-decoration: none;
}

.mobile-menu__nav li a.mobile-menu__nav-link--active,
.mobile-menu__link.mobile-menu__nav-link--active {
  border-bottom: 0;
  color: var(--colour-blue-2);
  font-weight: 700;
  padding-bottom: var(--spacing-xxxxs);
}

.mobile-menu__link-content {
  align-items: center;
  display: flex;
  gap: var(--spacing-xxxs);
}

.mobile-menu__step:not([data-step="1"]) .mobile-menu__nav li:last-of-type a,
.mobile-menu__step:not([data-step="1"]) .mobile-menu__link:last-of-type {
  border-bottom: 0;
}

.mobile-menu__step-inner > .mobile-menu__nav li:last-of-type > a,
.mobile-menu__lang-link {
  border-bottom: 0;
}

.mobile-menu__nav-title {
  color: var(--mobile-menu-step-title-colour);
  font-weight: 700;
  margin-bottom: var(--mobile-menu-step-title-margin-bottom);
}

.mobile-menu__button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-m);
}

.mobile-menu__secondary-nav {
  margin-left: var(--spacing-xs);
}

.mobile-menu__secondary-section {
  background-color: var(--colour-blue-3-40);
  margin: 0 calc(var(--spacing-xs) * -1) calc(var(--spacing-xl) * -1);
  padding: 0 var(--spacing-xs) var(--spacing-xl);
}

.mobile-menu__link--active {
  color: var(--colour-blue-2);
  font-weight: 700;
}

.mobile-menu__search-form {
  margin-top: var(--spacing-m);
}

.mobile-menu__step--initial .mobile-menu__step-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-menu__step--initial .mobile-menu__secondary-section {
  flex: 1;
}

.header-graphic {
  color: var(--colour-blue-3);
  position: absolute;
  z-index: -1;
}

body.for-business-page .header-graphic {
  color: var(--colour-green-3);
}

.header-graphic--style1 {
  height: 1218px;
  right: -45px;
  top: -535px;
  transform: rotate(-90deg);
  width: 871px;
}

@media (max-width: 1023.98px) {
  .header-graphic--style1 {
    height: 280px;
    right: -6px;
    top: -44px;
    width: 235px;
  }
}
.header-graphic--style2 {
  height: 1128px;
  left: -292px;
  top: -392px;
  transform: rotate(-180deg);
  width: 914px;
}

@media (max-width: 1023.98px) {
  .header-graphic--style2 {
    height: 280px;
    left: unset;
    right: -16px;
    top: -94px;
    transform: rotate(-90deg);
    width: 196px;
  }
}
.header-graphic--style3 {
  height: 1519px;
  left: -408px;
  top: 26px;
  transform: rotate(180deg);
  width: 964px;
}

@media (max-width: 1023.98px) {
  .header-graphic--style3 {
    height: 352px;
    left: -41px;
    top: -140px;
    width: 223px;
  }
}
.header-graphic--style4 {
  height: 1198px;
  right: -92px;
  top: -534px;
  transform: rotate(-45deg) scaleY(-1);
  width: 760px;
}

@media (max-width: 1023.98px) {
  .header-graphic--style4 {
    height: 371px;
    right: -28px;
    top: -138px;
    width: 170.131px;
  }
}
.header-graphic--style5 {
  height: 1198px;
  right: -642px;
  top: -375px;
  transform: rotate(-45deg);
  width: 760px;
}

@media (min-width: 1280px) {
  .header-graphic--style5 {
    right: -400px;
  }
}
@media (min-width: 1640px) {
  .header-graphic--style5 {
    right: -92px;
  }
}
@media (max-width: 1023.98px) {
  .header-graphic--style5 {
    height: 371px;
    right: -28px;
    top: -138px;
    transform: rotate(-45deg) scaleY(-1);
    width: 170.131px;
  }
}
.header-graphic svg {
  display: block;
  height: 100%;
  width: 100%;
}

.header-graphic svg use {
  height: 100%;
  width: 100%;
}

.breadcrumbs {
  left: 0;
  position: absolute;
  right: 0;
  top: calc(var(--header-top-nav-height) + var(--header-height) + var(--breadcrumb-top-spacing));
}

body:has(.header__secondary-nav-wrapper) .breadcrumbs {
  top: calc(var(--header-top-nav-height) + var(--header-height) + var(--header-secondary-nav-height) + var(--breadcrumb-top-spacing));
}

@media (max-width: 1023.98px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs .rank-math-breadcrumb {
  font-family: var(--font-sans-serif);
  font-size: var(--font-size-p-s);
  font-weight: 400;
  line-height: var(--line-height-p-s);
  text-transform: none;
}

.breadcrumbs .rank-math-breadcrumb > p {
  align-items: center;
  display: flex;
  gap: var(--spacing-xxxxs);
}

.breadcrumbs .rank-math-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumbs__container {
  margin: 0 auto;
  max-width: var(--width-max-width-padded);
  padding-left: var(--spacing-body-mobile);
  padding-right: var(--spacing-body-mobile);
  width: 100%;
}

@media (min-width: 1024px) {
  .breadcrumbs__container {
    padding-left: var(--spacing-body);
    padding-right: var(--spacing-body);
  }
}
.breadcrumbs__container {
  align-items: center;
  display: flex;
}

/**
 * Coming Soon mode.
 *
 * Activated by the `.coming-soon-mode` body class added by EDWP\ComingSoon.
 * The header nav, side nav, footer menu rows etc. are not rendered in PHP
 * when this mode is active; the rules below act as a defensive fallback and
 * also re-centre the logo in the main nav bar.
 */
body.coming-soon-mode .header__container--main-nav {
  justify-content: center;
  min-height: var(--header-height);
}

body.coming-soon-mode .header__logo {
  margin: 0 auto;
}
