:root {
  --white: white;
  --black: #24282a;
  --grey: #4c5458;
  --orange-lighter: #f8a600;
  --light-blue: #5da1fa;
  --back-yellow: #f6f5ed;
  --hard-blue: #1c4881;
  --orange-light: #f3ead1;
  --back-white: #fcf9f2;
  --orange: #fcb900;
  --dark-grey: #343a3d;
  --faint-grey: #edf0f3;
  --faint-blue: #cbe5ff;
  --soft-blue: #94c1ff;
  --soft-grey: #cac7ba;
  --light-grey: #808c91;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--white);
  color: var(--black);
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25em;
}

h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3em;
}

h3 {
  margin-top: 60px;
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4em;
}

h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4em;
}

h5 {
  color: var(--grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
}

h6 {
  color: #868c92;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
}

p {
  margin-bottom: 16px;
  font-weight: 400;
  line-height: 1.6em;
}

a {
  color: var(--orange-lighter);
  text-decoration: none;
}

ul {
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 12px;
  padding-left: 20px;
  display: flex;
}

li {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.4em;
}

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

label {
  color: var(--grey);
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  display: block;
}

strong {
  font-weight: bold;
}

blockquote {
  border-left: 5px solid var(--light-blue);
  color: #535d66;
  margin-bottom: 16px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 1.4em;
}

.wrapper {
  width: 100%;
  position: relative;
}

.wrapper.symbols {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  background-color: #e1e5e8;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  align-items: start;
  min-height: 100vh;
  padding-bottom: 32px;
  display: grid;
}

.wrapper.symbols.large {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  padding-bottom: 64px;
}

.section {
  z-index: 0;
  background-color: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section.light-gray {
  background-color: var(--back-yellow);
  position: relative;
}

.section.small {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.small.dark-blue {
  background-color: var(--hard-blue);
}

.section.small.light-grey {
  background-color: var(--back-yellow);
  position: relative;
  bottom: 0;
}

.section.blue {
  background-color: var(--orange-light);
  color: #fff;
  overflow: hidden;
}

.section.dark-blue {
  color: var(--white);
  background-color: #191919;
  position: relative;
}

.section.light-grey {
  background-color: var(--back-white);
  position: relative;
}

.section.white {
  background-color: var(--white);
  color: var(--black);
}

.section.light-blue {
  background-color: var(--back-yellow);
}

.section.large {
  height: 81%;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 140px;
  padding-bottom: 110px;
}

.section.medium {
  padding-top: 60px;
  padding-bottom: 60px;
}

.button {
  background-color: var(--orange);
  color: var(--white);
  text-align: center;
  border-style: none;
  border-radius: 25px;
  flex: none;
  margin-bottom: 16px;
  padding: 7px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  transition: color .2s, box-shadow .2s, background-color .2s;
  box-shadow: 0 4px 8px #00000014;
}

.button:hover {
  background-color: var(--orange-lighter);
  box-shadow: 0 7px 20px -10px #0003;
}

.button:active {
  background-color: var(--orange-lighter);
  box-shadow: none;
}

.button.no-margin {
  margin-left: 0;
  margin-right: 0;
}

.button.minimal {
  max-width: 300px;
  box-shadow: none;
  color: var(--orange);
  background-color: #0000;
  padding-left: 22px;
  padding-right: 22px;
}

.button.minimal:hover {
  color: var(--orange-lighter);
}

.button.minimal:active {
  color: var(--hard-blue);
}

.button.dark {
  background-color: var(--orange);
}

.button.dark:hover {
  background-color: var(--orange-lighter);
}

.button.dark:active {
  background-color: var(--hard-blue);
}

.button.light {
  background-color: var(--back-yellow);
  box-shadow: none;
  color: var(--dark-grey);
}

.button.light:hover, .button.light:active {
  background-color: var(--orange-lighter);
  color: var(--white);
}

.button.outline {
  box-shadow: inset 0 0 0 1px var(--light-blue);
  color: var(--orange-light);
  background-color: #0000;
}

.button.outline:hover {
  background-color: var(--light-blue);
  color: var(--back-yellow);
}

.button.outline:active {
  background-color: var(--orange-light);
  box-shadow: inset 0 0 0 1px var(--orange-light);
}

.button.arrow {
  box-shadow: none;
  color: var(--orange);
  background-color: #0000;
  background-image: url('../images/Blue-Right-Arrow.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 7px;
  padding: 4px 15px 4px 0;
  transition: padding-right .2s, color .2s;
}

.button.arrow:hover {
  color: var(--orange-lighter);
  padding-right: 22px;
}

.spacer {
  background-color: #0000;
  width: 48px;
  height: 48px;
}

.spacer._54 {
  background-color: #0000;
  border-radius: 6px;
  width: 54px;
  height: 54px;
}

.spacer._36 {
  background-color: #0000;
  width: 36px;
  height: 36px;
}

.spacer._72 {
  background-color: #0000;
  border-radius: 6px;
  width: 72px;
  height: 72px;
}

.spacer._128 {
  background-color: #0000;
  width: 128px;
  height: 128px;
}

.spacer._32 {
  background-color: #0000;
  height: 32px;
}

.spacer._16 {
  background-color: #0000;
  width: 16px;
  height: 16px;
}

.spacer._24 {
  background-color: #0000;
  width: 24px;
  height: 24px;
}

.spacer._32 {
  background-color: #0000;
  border-radius: 6px;
  width: 32px;
  height: 32px;
}

.spacer._48 {
  background-color: #0000;
  width: 48px;
}

.spacer._80 {
  width: 80px;
  height: 80px;
}

.spacer._96 {
  width: 96px;
  height: 96px;
}

.spacer._64 {
  width: 64px;
  height: 64px;
}

.text-box {
  z-index: 1;
  width: 100%;
  position: relative;
}

.text-box.center-align {
  text-align: center;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}

.text-box._600px {
  max-width: 600px;
}

.text-box._700px {
  max-width: 700px;
}

.text-box._650px {
  max-width: 650px;
}

.text-box.centered {
  margin-left: auto;
  margin-right: auto;
}

.text-box._400px {
  max-width: 400px;
}

.text-box._1000px {
  max-width: 1000px;
}

._12-columns {
  flex-flow: wrap;
  place-content: stretch center;
  align-items: center;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
  position: relative;
}

._12-columns.align-top {
  align-items: flex-start;
}

._12-columns.align-top.align-left {
  justify-content: flex-start;
}

._12-columns.align-stretch {
  align-items: stretch;
}

._12-columns.justified-ends {
  justify-content: space-between;
}

._12-columns.align-left {
  justify-content: flex-start;
}

.error-1 {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  min-height: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: relative;
}

.white {
  color: #fff;
}

.column {
  flex-flow: column;
  flex: 0 auto;
  align-items: stretch;
  width: 120px;
  min-height: 24px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column.desk-10 {
  background-color: #0000;
  width: 83.33%;
}

.column.desk-1 {
  background-color: #0000;
  flex: 0 auto;
  width: 8.33%;
}

.column.desk-4 {
  background-color: #0000;
  width: 33.33%;
  position: static;
}

.column.desk-9 {
  background-color: #0000;
  width: 75%;
}

.column.desk-3 {
  background-color: #0000;
  flex: none;
  width: 25%;
}

.column.desk-2 {
  background-color: #0000;
  width: 16.66%;
}

.column.desk-7 {
  background-color: #0000;
  width: 58.3333%;
}

.column.desk-8 {
  background-color: #0000;
  width: 66.6667%;
}

.column.desk-6 {
  background-color: #0000;
  flex: none;
  width: 50%;
}

.column.desk-5 {
  background-color: #0000;
  width: 41.6667%;
}

.column.desk-11 {
  width: 91.6667%;
}

.terms-rich-text {
  text-align: left;
}

.terms-rich-text h2 {
  font-size: 30px;
}

.terms-rich-text h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.nav-content {
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  margin-top: 9px;
  padding-left: 16px;
  display: flex;
  position: relative;
}

.nav-content.center-align {
  justify-content: center;
}

.nav-content.right-align, .nav-content.symbols {
  justify-content: flex-end;
}

.nav-cta-button-container {
  align-items: center;
  margin-top: 9px;
  display: flex;
}

.menu-button.w--open {
  color: #096ad033;
  background-color: #fff;
}

.navigation {
  z-index: 200;
  background-color: var(--white);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  line-height: 20px;
  display: flex;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

.logo-link {
  margin-top: -2px;
  transition: opacity .2s;
}

.logo-link:hover {
  opacity: .9;
}

.footer-link {
  color: var(--dark-grey);
  cursor: pointer;
  margin-right: 24px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4em;
  text-decoration: none;
  transition: opacity .2s ease-in-out;
  display: block;
}

.footer-link:hover {
  opacity: 1;
}

.footer-link.w--current {
  opacity: 1;
  font-weight: 500;
}

.footer-links-container {
  flex-direction: column;
  display: flex;
}

.footer-section {
  z-index: 0;
  background-color: var(--white);
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
}

.icon {
  color: #fff;
  width: 55px;
  height: 55px;
  margin-bottom: 20px;
  font-size: 24px;
}

.icon.tab {
  width: 35px;
  height: 35px;
  margin-bottom: 12px;
  margin-right: 12px;
}

.icon.small {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

.icon.side {
  width: 42px;
  height: 42px;
  margin-right: 20px;
}

.icon.centered {
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
}

.icon.sepia {
  filter: grayscale();
}

.logos-div {
  flex-flow: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
}

.banner-section {
  background-color: var(--back-yellow);
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}

.banner-container {
  flex: 1;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.banner {
  color: var(--dark-grey);
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4em;
  display: flex;
}

.tab-text-boxes {
  opacity: .7;
  background-color: #fff0;
  border: 1px solid #0000;
  border-radius: 5px;
  height: 78px;
  margin-bottom: 8px;
  padding: 22px 22px 9px;
  font-style: normal;
  transition: all .2s;
  overflow: hidden;
}

.tab-text-boxes:hover {
  background-color: var(--back-white);
  opacity: .85;
  box-shadow: 0 0 20px #00000003;
}

.tab-text-boxes.w--current {
  border: 1px solid var(--faint-grey);
  opacity: 1;
  background-color: #fff;
  height: auto;
  box-shadow: 0 4px 20px #2c323a0f;
}

.tabs-text-boxes {
  flex: none;
  width: 41.6667%;
  padding-left: 18px;
  padding-right: 18px;
}

.tabs-images {
  flex-direction: column;
  justify-content: flex-start;
  width: 58.3333%;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  position: relative;
}

.horizontal-tabs {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-left: -18px;
  margin-right: -18px;
  display: flex;
}

.horizontal-tabs.switch {
  flex-direction: row-reverse;
}

.nav-dropdown {
  cursor: pointer;
  border-radius: 5px;
  padding: 0 18px 0 0;
  line-height: 24px;
  transition: color .15s;
  position: relative;
}

.nav-dropdown:hover {
  opacity: 1;
}

.nav-dropdown.w--current {
  color: #096ad0;
  font-weight: 700;
  transition-property: none;
}

.dropdown-icon {
  opacity: .3;
  margin-top: 11px;
  margin-bottom: 8px;
  margin-right: 12px;
  font-size: 14px;
}

.dropdown-list.w--open {
  background-color: #fff;
  border: 1px solid #0000001a;
  border-radius: 4px;
  width: 200px;
  padding: 10px;
  box-shadow: 0 0 12px #0000000d;
}

.dropdown-list.dark {
  border-color: var(--orange-lighter);
  background-color: var(--hard-blue);
  color: var(--white);
}

.logo-container {
  padding-left: 24px;
  padding-right: 24px;
}

.paragraph {
  margin-bottom: 0;
  line-height: 1.6em;
}

.paragraph.large {
  font-size: 16px;
  line-height: 1.5em;
}

.paragraph.small {
  opacity: .75;
  margin-top: 20px;
  font-size: 14px;
}

.paragraph.s {
  opacity: .75;
  font-size: 14px;
  line-height: 1.4em;
}

.paragraph.l {
  font-size: 18px;
}

.paragraph.medium {
  font-size: 18px;
  line-height: 1.5em;
}

.no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.nav-menu {
  align-items: center;
  display: flex;
}

.form {
  margin-bottom: 0;
}

.form-success {
  background-color: var(--faint-blue);
  color: var(--black);
  border-radius: 4px;
  padding: 32px;
  line-height: 1.4em;
}

.float-card {
  border: 1px solid var(--faint-grey);
  width: 100%;
  min-width: 50px;
  height: 100%;
  min-height: 50px;
  color: var(--dark-grey);
  background-color: #fff;
  border-radius: 8px;
  flex-direction: column;
  transition: transform .2s;
  overflow: hidden;
  box-shadow: 0 0 20px #69737c1a;
}

.float-card:hover {
  transform: translate(0, -5px);
}

.card-thumbnail {
  border-radius: 5px 5px 0 0;
  height: 22vw;
  max-height: 250px;
  position: relative;
}

.card-thumbnail.large {
  height: 24vw;
  max-height: 360px;
}

.card-text-container {
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 28px 22px;
}

.text-area {
  border: 1px solid var(--faint-grey);
  background-color: #0000;
  border-radius: 6px;
  min-height: 120px;
  margin-bottom: 16px;
  padding: 16px;
  font-size: 15px;
  box-shadow: 0 0 10px #00000003;
}

.text-area:focus {
  border-color: var(--soft-blue);
}

.text-area::placeholder {
  color: var(--soft-grey);
}

.tabs-menu {
  justify-content: center;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 48px;
  display: flex;
}

.vertical-tab {
  width: 100%;
}

.tab-link {
  border-bottom: 2px solid var(--faint-grey);
  color: var(--soft-grey);
  text-align: center;
  background-color: #0000;
  flex: 0 auto;
  margin-left: 0;
  margin-right: 0;
  padding: 15px 20px;
  font-size: 18px;
  transition: border-color .2s, color .2s, background-color .2s;
}

.tab-link:hover {
  border-bottom-color: var(--light-grey);
  color: var(--light-grey);
}

.tab-link.w--current {
  border-bottom-color: var(--orange);
  opacity: 1;
  color: var(--orange);
  background-color: #0000;
  font-weight: 600;
}

.question {
  color: var(--dark-grey);
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.answer {
  color: var(--grey);
  padding-right: 50px;
  display: block;
  overflow: hidden;
}

.question-container {
  border-bottom: 1px solid var(--faint-grey);
  text-align: left;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
  padding-bottom: 15px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.question-arrow-icon {
  margin-top: 8px;
}

.tab-header {
  align-items: center;
  margin-bottom: 4px;
  display: flex;
}

.tick-list li {
  color: var(--dark-grey);
  background-image: url('../images/Blue-Tick.svg');
  background-position: 0 6px;
  background-repeat: no-repeat;
  background-size: 16px;
  margin-bottom: 8px;
  padding-left: 28px;
  font-weight: 500;
}

.tick-list ul {
  margin-top: 8px;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.tick-list.luminosity {
  mix-blend-mode: luminosity;
}

.pricing-grid {
  margin-left: auto;
  margin-right: auto;
}

.center-image {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 180px;
  margin: 16px auto 0;
  display: block;
}

.center-image.no-margin {
  margin-bottom: 0;
}

.center-image.small-square {
  width: 100px;
  height: 100px;
}

.center-image.hue200 {
  filter: hue-rotate(200deg);
  mix-blend-mode: normal;
}

.error-2 {
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.dropdown-link {
  color: var(--grey);
  margin: 4px 0;
  padding: 6px 9px;
  font-size: 16px;
  display: block;
}

.dropdown-link:hover {
  color: #819cab;
}

.dropdown-link.w--current {
  color: var(--dark-grey);
}

.dropdown-link.white {
  color: var(--white);
}

.logo {
  margin-right: 10px;
}

.nav-link {
  color: var(--grey);
  cursor: pointer;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 24px;
  transition: opacity .2s, color .2s;
  display: inline-block;
}

.nav-link:hover {
  opacity: .8;
}

.nav-link.w--current {
  color: var(--grey);
}

.nav-link.secondary {
  color: var(--orange);
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 500;
}

.nav-link.primary {
  background-color: var(--orange);
  color: var(--white);
  border-radius: 25px;
  margin-left: 8px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 500;
  line-height: 30px;
  transition: background-color .2s, color .2s;
  box-shadow: 0 1px 12px #0000000f;
}

.nav-link.primary:hover {
  background-color: var(--orange-lighter);
  opacity: 100;
}

.nav-link.primary:active {
  background-color: var(--orange-lighter);
  box-shadow: 0 0 #0000001a;
}

.nav-link.primary.w--current:hover {
  background-color: var(--orange-lighter);
}

.nav-link.dropdown {
  display: none;
}

.nav-link.outline {
  box-shadow: inset 0 0 0 1px var(--orange-light);
  color: var(--orange-light);
  background-color: #0000;
  border-radius: 6px;
  margin-left: 8px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 500;
  transition: background-color .2s, color .2s;
}

.nav-link.outline:hover {
  background-color: var(--orange-lighter);
  color: var(--white);
}

.nav-link.outline:active {
  background-color: var(--hard-blue);
  box-shadow: 0 0 #0000001a;
}

.nav-link.white {
  color: var(--back-yellow);
}

.image-cover {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
}

.error {
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.footer-header {
  color: var(--dark-grey);
  letter-spacing: 0;
  text-transform: capitalize;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

.card {
  border: 1px solid var(--faint-grey);
  color: var(--dark-grey);
  background-color: #fff;
  border-radius: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 32px;
  display: flex;
  position: relative;
  box-shadow: 0 4px 16px #0000000d;
}

.card.soft-blue {
  background-color: var(--back-yellow);
  box-shadow: none;
}

.card.light-grey {
  background-color: var(--back-white);
  box-shadow: none;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 90vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.intro-buttons {
  align-items: center;
  display: flex;
}

.container-footer {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.feature-left {
  grid-column-gap: 72px;
  grid-row-gap: 54px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .8fr;
  align-items: center;
}

.feature-right {
  grid-column-gap: 72px;
  grid-row-gap: 54px;
  grid-template-rows: auto;
  grid-template-columns: .8fr 1fr;
  align-items: center;
}

._3-grid {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

._2-grid {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.nav-container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  min-height: 80px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.wave-image {
  width: 100%;
  max-width: none;
  position: absolute;
  top: 0;
  left: 0%;
  right: 0%;
}

.wave-image.bottom {
  z-index: 0;
  top: auto;
  bottom: 0;
}

.wave-div {
  width: 100%;
  margin-bottom: 128px;
}

.wave-div.half-way-up {
  margin-bottom: 50px;
}

.field-label {
  font-size: 16px;
}

.text-field-div {
  margin-bottom: 24px;
  position: relative;
}

.social-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 24px 24px 24px 24px;
  grid-auto-columns: 24px;
  justify-content: end;
  place-items: start end;
  width: auto;
  display: grid;
}

.footer-social-section {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.social-link {
  opacity: .5;
  cursor: pointer;
  width: 24px;
  height: 24px;
  transition: opacity .2s;
}

.social-link:hover {
  opacity: .8;
}

.section-top {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.text-link {
  color: var(--orange-light);
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4em;
  display: block;
}

.text-link.contactlink {
  color: var(--orange);
  margin-bottom: 3px;
}

.text-link.contactlink:hover {
  color: var(--orange-lighter);
}

.hero-image-div {
  position: relative;
}

.nav-cta-container-mobile {
  align-items: center;
  display: none;
}

.blue {
  color: var(--orange-lighter);
}

.heading {
  letter-spacing: -.5px;
  font-weight: 700;
  line-height: 1.4em;
}

.heading.s {
  font-size: 28px;
  font-weight: 600;
}

.heading._2xl {
  font-size: 48px;
  line-height: 1.3em;
}

.heading._3xl {
  margin-bottom: 20px;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2em;
}

.heading._3xs {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.heading.xl {
  margin-bottom: 12px;
  font-size: 40px;
  line-height: 1.4em;
}

.heading.xl.no-margin {
  margin-bottom: 0;
}

.heading.xs {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
}

.heading.l {
  font-size: 34px;
  line-height: 1.3em;
}

.heading.l.no-margin {
  margin-bottom: 0;
}

.heading._2xs {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
}

.heading._2xs.no-margin {
  margin-bottom: 0;
}

.heading.m {
  font-size: 30px;
}

.tagline {
  color: var(--light-grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.tagline.s {
  margin-bottom: 8px;
  font-size: 14px;
}

.tagline.m {
  color: var(--light-grey);
}

.tagline.m.grey {
  color: #446b7a;
}

.tagline.light-blue {
  color: var(--light-blue);
}

.display {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.4em;
}

.display.l {
  margin-bottom: 24px;
  font-size: 64px;
  line-height: 1.2em;
}

.featured-card {
  border: 1px solid var(--faint-grey);
  background-color: #fff;
  border-radius: 12px;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  transition: transform .2s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 32px #0000001a;
}

.featured-card:hover {
  transform: translate(0, -4px);
}

.featured-card-image-div {
  width: 40%;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.featured-card-text-div {
  color: var(--black);
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding: 55px;
  display: flex;
}

.progress-bar {
  z-index: 40;
  background-color: var(--back-white);
  width: 100%;
  height: 6px;
  position: fixed;
  top: 80px;
}

.progress-line {
  z-index: 30;
  background-color: var(--orange-light);
  width: 100%;
  height: 6px;
  position: relative;
}

.sticky-sidebar {
  position: sticky;
  top: 140px;
}

.sidebar {
  position: sticky;
  top: 120px;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.footer-container {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 39px;
  padding-right: 39px;
  display: block;
  position: relative;
}

.questions-section {
  text-align: left;
  margin-bottom: 36px;
}

.blog-rich-text blockquote {
  background-color: var(--back-white);
  border-left-style: none;
  border-radius: 6px;
  padding: 35px;
}

.blog-rich-text p {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.8em;
}

.blog-rich-text h2 {
  margin-top: 64px;
  font-size: 25px;
}

.blog-rich-text h4 {
  font-size: 20px;
}

.blog-post-main-image {
  object-fit: cover;
  border-top-right-radius: 18px;
  border-bottom-left-radius: 18px;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 20px #0000001a;
}

.error-3 {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.desktop-hidden {
  display: none;
}

.tabs-content {
  background-color: var(--back-white);
  border-radius: 8px;
  height: auto;
  padding: 32px 24px 24px;
}

.rich-text p {
  margin-bottom: 24px;
  font-size: 18px;
}

.rich-text h4 {
  margin-top: 32px;
}

.regular {
  font-weight: 400;
}

.error-4 {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1230px;
  min-height: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.small-button {
  background-color: var(--orange);
  text-align: center;
  border-radius: 5px;
  flex: none;
  margin-bottom: 16px;
  padding: 6px 23px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  transition: border-color .2s, color .2s, box-shadow .2s, background-color .2s;
  box-shadow: 0 2px 8px #00000008;
}

.small-button:hover {
  background-color: var(--orange-lighter);
  box-shadow: 0 7px 20px -10px #0003;
}

.small-button:active {
  background-color: var(--hard-blue);
}

.small-button.no-margin {
  margin-right: 0;
}

.small-button.light {
  background-color: var(--faint-blue);
  box-shadow: none;
  color: var(--orange-light);
}

.small-button.light:hover {
  background-color: var(--soft-blue);
  color: var(--orange-lighter);
}

.small-button.light:active {
  background-color: var(--light-blue);
  color: var(--hard-blue);
}

.small-button.outline {
  box-shadow: inset 0 0 0 1px var(--light-blue);
  color: var(--orange-light);
  background-color: #0000;
}

.small-button.outline:hover {
  background-color: var(--light-blue);
  color: var(--white);
}

.small-button.outline:active {
  background-color: var(--orange-light);
  box-shadow: inset 0 0 0 1px var(--orange-light);
}

.small-button.outline.no-margin {
  margin-bottom: 0;
}

.partner-logo {
  max-width: 170px;
  min-height: 38px;
  max-height: 38px;
}

.field-block {
  z-index: 1;
  border: 1px solid #0000;
  flex-direction: column;
  align-items: stretch;
  min-width: 50px;
  min-height: 20px;
  margin-bottom: 8px;
  display: flex;
}

.error-5 {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1500px;
  min-height: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.form-error {
  color: #101113;
  background-color: #ffd4d4;
  border-radius: 4px;
  padding: 14px;
  font-size: 14px;
  line-height: 1.4em;
}

.form-dropdown {
  border: 1px solid var(--faint-grey);
  width: 100%;
  height: 48px;
  color: var(--grey);
  background-color: #fff;
  border-radius: 6px;
  margin-bottom: 16px;
  padding: 8px 12px;
  font-size: 15px;
  position: relative;
}

.form-dropdown:hover, .form-dropdown:focus {
  color: #37474e;
}

.form-dropdown::placeholder {
  color: #999;
  font-size: 15px;
}

.text-field {
  border: 1px solid #dde2e7;
  border-radius: 5px;
  height: 44px;
  margin-bottom: 16px;
  font-size: 16px;
}

.text-field::placeholder {
  color: #a6afb6;
}

.ds-nav {
  background-color: #fff;
  border-right: 1px solid #ced5db;
  width: 240px;
  padding-top: 40px;
  position: fixed;
  inset: 0% auto 0% 0%;
  overflow: auto;
}

.ds-menu-brand {
  width: 160px;
  margin-bottom: 50px;
  margin-left: 30px;
}

.ds-menu {
  width: 100%;
}

.ds-menu-link {
  color: #333b4a;
  border-left: 4px solid #0000;
  width: 100%;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 27px;
}

.ds-menu-link:hover {
  color: var(--orange-light);
}

.ds-menu-link.w--current {
  background-color: var(--back-yellow);
  color: var(--orange-light);
  padding-right: 0;
  font-weight: 500;
}

.horizontal-line {
  opacity: .2;
  background-color: #1d1916;
  width: 100%;
  height: 1px;
  margin-bottom: 36px;
}

.horizontal-line.design-system {
  position: relative;
  bottom: -80px;
}

.ds-block {
  margin-bottom: 28px;
  font-size: 18px;
}

.ds-description {
  color: #929aa1;
  max-width: 400px;
}

.ds-wrapper {
  width: 100%;
  min-height: 100vh;
}

._1-2-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.form-radio-button, .form-checkbox {
  margin-bottom: 16px;
  padding-left: 24px;
}

._2-1-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.text-input {
  border: 1px solid var(--faint-grey);
  border-radius: 6px;
  margin-bottom: 16px;
  padding: 21px 16px;
  font-size: 15px;
  line-height: 1.4px;
  box-shadow: 0 0 10px #00000003;
}

.text-input:focus {
  border-color: var(--soft-blue);
}

.text-input::placeholder {
  color: var(--soft-grey);
}

.radio-button {
  border-color: var(--soft-grey);
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: -24px;
  margin-right: 10px;
}

.radio-button.w--redirected-checked {
  border-width: 6px;
  border-color: #2b95ff;
}

.visible-spacer {
  background-color: var(--faint-blue);
  border-radius: 5px;
  margin-bottom: 24px;
  display: inline-block;
}

.ds-module {
  background-color: var(--faint-blue);
  border-radius: 5px;
  flex-direction: column;
  min-width: 100px;
  min-height: 100px;
  display: flex;
  position: relative;
}

.icon-grid {
  margin-top: 24px;
}

.ds-colour-block {
  width: 12.5%;
  padding-right: 16px;
  display: inline-block;
}

.check-box {
  border-color: var(--soft-grey);
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: -24px;
  margin-right: 10px;
}

.check-box.w--redirected-checked {
  background-color: #2b95ff;
  background-position: 50%;
  background-size: 16px;
  border-color: #2b95ff;
}

.visible-block-styleguide {
  background-color: var(--faint-blue);
  border-radius: 6px;
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
}

.color-block {
  background-color: var(--black);
  border-radius: 5px;
  width: 100%;
  height: 60px;
  margin-bottom: 40px;
  margin-left: 0;
  margin-right: 0;
}

.color-block.back-blue {
  background-color: var(--back-yellow);
}

.color-block.soft-grey {
  background-color: var(--soft-grey);
}

.color-block.back-grey {
  border: 1px solid var(--faint-grey);
  background-color: var(--back-white);
}

.color-block.light-grey {
  background-color: var(--light-grey);
}

.color-block.grey {
  background-color: var(--grey);
}

.color-block.hard-blue {
  background-color: var(--hard-blue);
}

.color-block.blue {
  background-color: var(--orange-light);
}

.color-block.silver {
  background-color: var(--faint-grey);
}

.color-block.dark-grey {
  background-color: var(--dark-grey);
}

.color-block.white {
  border: 1px solid var(--back-white);
  background-color: #fff;
}

.color-block.light-blue {
  background-color: var(--light-blue);
  border-style: none;
}

.color-block.soft-blue {
  background-color: var(--soft-blue);
}

.color-block.dark-blue {
  background-color: var(--orange-lighter);
}

.color-block.pale-blue {
  background-color: var(--faint-blue);
}

.ds-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-left: 240px;
  display: flex;
  position: relative;
}

.ds-section {
  z-index: 0;
  text-align: left;
  padding: 60px 80px 48px 60px;
  position: relative;
}

.ds-section.header {
  color: #fff;
  background-color: #1283c1;
}

.ds-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 20px;
  margin-right: 24px;
  display: inline-block;
}

.ds-colour-grid {
  flex-wrap: wrap;
  margin-top: 24px;
  display: flex;
}

.ds-title {
  color: #3f3b35;
  margin-bottom: 8px;
}

.ds-section-header {
  margin-bottom: 50px;
}

.left-nav-content {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: auto;
  display: flex;
  position: relative;
}

.left-nav-content.right-align {
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 36px;
}

.right-nav-content {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  display: flex;
}

.right-nav-content.left-aligned {
  text-align: left;
  justify-content: flex-start;
  margin-left: 32px;
  margin-right: auto;
}

.simple-footer-links {
  text-align: right;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto auto auto auto;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: flex-end;
  place-items: flex-start end;
  margin-top: 20px;
  margin-right: -24px;
  display: flex;
}

.simple-footer-links.center-align {
  justify-content: center;
}

.symbols-navigation {
  z-index: 201;
  border-bottom: 1px solid var(--orange-lighter);
  background-color: var(--hard-blue);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  display: flex;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

.grey-text {
  color: var(--light-grey);
}

.mobile-visible {
  display: none;
}

.email-subscribe {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.email-form {
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.subscribe-button {
  background-color: var(--back-yellow);
  color: var(--orange-light);
  text-align: center;
  border-style: none;
  border-radius: 6px;
  flex: none;
  margin-bottom: 16px;
  margin-left: -10px;
  padding: 7px 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  transition: color .2s, box-shadow .2s, background-color .2s;
}

.subscribe-button:hover {
  background-color: var(--faint-blue);
  color: var(--orange-lighter);
}

.subscribe-button:active {
  background-color: var(--soft-blue);
  box-shadow: none;
  color: var(--hard-blue);
}

.subscribe-button.dark {
  background-color: var(--hard-blue);
  color: var(--white);
}

.subscribe-button.dark:hover {
  background-color: var(--orange-lighter);
}

.subscribe-button.dark:active {
  background-color: var(--hard-blue);
}

.subscribe-button.blue {
  background-color: var(--orange-light);
  color: var(--white);
}

.subscribe-button.blue:hover {
  background-color: var(--orange-lighter);
}

.subscribe-button.blue:active {
  background-color: var(--hard-blue);
}

.lightbox-link {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
}

.play-button {
  transition: transform .2s;
  position: absolute;
}

.play-button:hover {
  transform: scale(1.05);
}

.lightbox-image {
  filter: brightness(85%);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  transition: filter .2s;
}

.lightbox-image:hover {
  filter: brightness(95%);
}

.lightbox-image.hue180 {
  filter: grayscale() brightness(85%);
}

.container {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  min-height: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: relative;
}

.container.center-align {
  text-align: center;
  align-items: center;
  display: flex;
}

.container.animated {
  margin: auto;
}

._4-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.email-subscribe-banner {
  align-items: flex-start;
  width: 100%;
  margin-bottom: -16px;
  display: flex;
  position: relative;
}

.sign-in-div {
  text-align: right;
  align-items: center;
  display: flex;
}

.center-card {
  text-align: center;
  background-color: #fff;
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  max-width: 450px;
  padding: 36px;
  display: flex;
  position: relative;
  box-shadow: 0 4px 32px #0000000f;
}

.center-card-section {
  background-color: var(--back-yellow);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 140px 64px 120px;
  display: flex;
  position: relative;
}

.sign-up-form {
  text-align: left;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.sign-up-nav {
  justify-content: space-between;
  width: 100%;
  height: auto;
  padding-top: 30px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: absolute;
  top: 0;
}

.feature-horizontal {
  align-items: flex-start;
  margin-bottom: 12px;
  display: flex;
}

.feature-horizontal.no-margin {
  margin-bottom: 0;
}

.icon-side {
  width: 30px;
  height: 30px;
  margin-right: 16px;
}

.feature-equal {
  grid-column-gap: 72px;
  grid-row-gap: 54px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.questions-box {
  border: 1px solid #dee5eb;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 48px;
}

.question-box {
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid #dee5eb;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-bottom: -1px;
  padding: 28px 28px 16px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.pricing-grid-block {
  justify-content: flex-start;
  align-items: center;
  min-height: 64px;
  padding: 16px;
  display: flex;
}

.pricing-grid-block.title {
  text-align: left;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  min-height: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.pricing-grid-tick {
  width: 18px;
}

.plan-header {
  border-right: 1px solid var(--faint-grey);
  border-bottom: 3px solid var(--faint-grey);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 12px 16px 8px;
  display: flex;
}

.plan-header.last {
  border-right-style: none;
}

.pricing-grid-row {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid var(--faint-grey);
  border-bottom: 1px solid var(--faint-grey);
  grid-template: "."
  / 2.5fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: -1px;
  display: grid;
}

.pricing-grid-row.top {
  border-top-style: none;
}

.pricing-grid-main {
  margin-bottom: 48px;
}

._2-column-dropdown-list.w--open {
  background-color: #fff;
  border: 1px solid #0000001a;
  border-radius: 4px;
  flex-direction: row;
  padding: 10px;
  display: flex;
  box-shadow: 0 0 12px #0000000d;
}

.dropdown-column {
  margin-right: 24px;
}

.block-quote {
  border-left-color: var(--orange);
}

.link, .link-2 {
  color: var(--orange);
}

.body, .body-2, .body-3, .body-4, .body-5, .body-6 {
  font-family: Quicksand, sans-serif;
}

@media screen and (min-width: 1280px) {
  .banner-container {
    max-width: 1140px;
  }
}

@media screen and (max-width: 991px) {
  ul {
    align-items: center;
  }

  .button {
    box-shadow: none;
    position: relative;
  }

  ._12-columns {
    flex-flow: wrap;
  }

  ._12-columns.tab-swap {
    flex-direction: column-reverse;
  }

  ._12-columns.justified-ends.tab-center {
    text-align: center;
    justify-content: center;
  }

  .error-1 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .column {
    width: 50%;
  }

  .column.desk-1.tab-0 {
    display: none;
  }

  .column.desk-4.tab-6 {
    width: 50%;
  }

  .column.desk-4.tab-12 {
    width: 100%;
  }

  .column.desk-4.tab-5 {
    width: 41.6667%;
  }

  .column.desk-3 {
    flex-wrap: nowrap;
  }

  .column.desk-3.tab-4 {
    width: 33.3333%;
  }

  .column.desk-2.tab-0 {
    display: none;
  }

  .column.desk-2.tab-1 {
    width: 8.33333%;
  }

  .column.desk-2.tab-4 {
    width: 33.3333%;
  }

  .column.desk-2.tab-3 {
    width: 25%;
  }

  .column.desk-7.tab-12, .column.desk-8.tab-12 {
    width: 100%;
  }

  .column.desk-8.tab-7 {
    width: 58.3333%;
  }

  .column.desk-6 {
    flex-wrap: nowrap;
  }

  .column.desk-6.tab-6 {
    width: 50%;
  }

  .column.desk-6.tab-12 {
    width: 100%;
  }

  .column.desk-6.tab-7 {
    width: 58.3333%;
  }

  .column.desk-5.tab-6 {
    width: 50%;
  }

  .column.desk-5.tab-12 {
    width: 100%;
  }

  .menu-icon {
    color: #096ad0;
  }

  .nav-content {
    background-color: #f7fcfd;
    padding-top: 20px;
    padding-bottom: 20px;
    position: absolute;
    box-shadow: 0 3px 3px #01080b1a;
  }

  .nav-content.symbols {
    border-top-style: none;
    border-top-color: var(--orange-lighter);
    border-bottom-color: var(--orange-lighter);
    background-color: var(--hard-blue);
  }

  .menu-button {
    color: #2e323c;
    margin-right: -12px;
  }

  .menu-button.w--open {
    color: #096ad0;
    background-color: #0000;
  }

  .navigation {
    background-color: #fff;
  }

  .logo-link {
    flex: 1;
    width: 150px;
  }

  .footer-links-container {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .logos-div {
    flex-wrap: wrap;
    padding-left: 30px;
    padding-right: 30px;
  }

  .banner-section {
    padding-left: 60px;
    padding-right: 60px;
  }

  .banner-container {
    text-align: center;
  }

  .tab-text-boxes {
    width: 100%;
  }

  .nav-dropdown {
    text-align: center;
    flex: 1;
    margin-left: 0;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .dropdown-icon {
    margin-top: 16px;
    margin-right: 40px;
  }

  .dropdown-list {
    background-color: var(--faint-blue);
    padding: 10px;
    position: relative;
  }

  .dropdown-list.w--open {
    background-color: var(--faint-blue);
    box-shadow: none;
    border-style: none;
    border-radius: 0;
    display: none;
    position: relative;
  }

  .logo-container {
    justify-content: center;
    width: 33%;
    margin-top: 25px;
    margin-bottom: 25px;
    display: flex;
  }

  .nav-menu {
    text-align: center;
    flex-direction: column;
  }

  .tick-list ul {
    align-items: flex-start;
  }

  .dropdown-link {
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .nav-link {
    text-align: center;
    margin-top: 3px;
    margin-bottom: 3px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .nav-link.secondary {
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-link.primary {
    margin-right: 12px;
  }

  .nav-link.dropdown {
    margin-top: 6px;
    margin-bottom: 6px;
    padding-top: 0;
    padding-bottom: 0;
    display: inline-block;
  }

  .nav-link.dropdown.w--current {
    color: #446b7a;
  }

  .nav-link.outline {
    margin-right: 12px;
  }

  .dropdown {
    width: 100%;
  }

  .intro-buttons {
    justify-content: center;
  }

  .intro-buttons.left-align {
    justify-content: flex-start;
  }

  .container-footer {
    padding-left: 30px;
    padding-right: 30px;
  }

  .feature-left, .feature-right {
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  ._3-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .featured-card {
    flex-direction: column;
  }

  .featured-card-image-div {
    width: 100%;
    height: 400px;
    min-height: auto;
  }

  .footer-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .error-3 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .desktop-hidden {
    display: block;
  }

  .error-4 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .small-button {
    margin-left: 6px;
    margin-right: 6px;
    position: relative;
  }

  .partner-logo {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .error-5 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .ds-nav {
    z-index: 10;
    width: 100%;
    padding-top: 20px;
    position: sticky;
    bottom: auto;
    left: auto;
    overflow: visible;
  }

  .ds-menu-brand {
    margin-bottom: 20px;
  }

  .ds-menu {
    z-index: 500;
    background-color: #fff;
    border-bottom: 1px solid #ece7e0;
    padding-top: 17px;
    padding-bottom: 17px;
    display: block;
    position: absolute;
    inset: 80px auto auto 0%;
  }

  .ds-menu-button {
    margin-right: 12px;
    top: -10px;
  }

  .ds-menu-button.w--open {
    background-color: #2b95ff;
    border-radius: 40px;
  }

  .ds-block {
    margin-bottom: 40px;
  }

  ._1-2-grid, ._2-1-grid {
    margin-left: 0;
  }

  .ds-content {
    margin-left: 0;
    position: static;
  }

  .left-nav-content {
    border-top: 1px solid var(--faint-blue);
    border-bottom: 1px solid var(--faint-blue);
    background-color: #f7fcfd;
    padding-top: 20px;
    padding-bottom: 20px;
    position: absolute;
    box-shadow: 0 3px 3px #01080b1a;
  }

  .left-nav-content.right-align {
    margin-right: 0;
  }

  .right-nav-content {
    display: none;
  }

  .subscribe-button {
    box-shadow: none;
    position: relative;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  ._4-grid {
    grid-template-columns: 1fr 1fr;
  }

  .email-subscribe-banner {
    width: auto;
  }

  .feature-equal {
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .pricing-grid-row {
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
  }

  ._2-column-dropdown-list {
    background-color: var(--faint-blue);
    padding: 10px;
    position: relative;
  }

  ._2-column-dropdown-list.w--open {
    background-color: var(--faint-blue);
    box-shadow: none;
    border-style: none;
    border-radius: 0;
    display: none;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .button {
    box-shadow: none;
  }

  .button.minimal {
    margin-right: 20px;
  }

  .spacer {
    height: 32px;
  }

  .spacer._54 {
    width: 32px;
    height: 32px;
  }

  .spacer._36 {
    width: 24px;
    height: 24px;
  }

  .spacer._128 {
    width: 80px;
    height: 80px;
  }

  .spacer._48 {
    width: 32px;
  }

  .spacer._80 {
    width: 64px;
    height: 64px;
  }

  ._12-columns {
    flex-wrap: wrap;
  }

  ._12-columns.mob-swap {
    flex-direction: column-reverse;
  }

  ._12-columns.mob-swap.mob-center {
    text-align: center;
  }

  .error-1 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .column.desk-10.mob-12, .column.desk-1.tab-1.mob-12, .column.desk-4.tab-6.mob-12, .column.desk-4.mob-12, .column.desk-4.tab-5 {
    width: 100%;
  }

  .column.desk-4.tab-4.mob-6 {
    width: 50%;
  }

  .column.desk-3 {
    width: 100%;
  }

  .column.desk-3.tab-4.mob-6 {
    width: 50%;
  }

  .column.desk-3.tab-4.mob-8 {
    width: 66.6667%;
  }

  .column.desk-2.tab-2.mob-6 {
    width: 50%;
  }

  .column.desk-2.tab-2.mob-12 {
    width: 100%;
  }

  .column.desk-2.tab-4.mob-6, .column.desk-2.tab-3.mob-6 {
    width: 50%;
  }

  .column.desk-7.mob-12, .column.desk-8, .column.desk-8.tab-7, .column.desk-6.tab-6, .column.desk-6.tab-7, .column.desk-5 {
    width: 100%;
  }

  .nav-cta-button-container {
    display: none;
  }

  .menu-button {
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    padding: 16px;
  }

  .logo-link.mobile-center {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-links-container {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
    display: flex;
  }

  .footer-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .icon {
    width: 45px;
    height: 45px;
    margin-bottom: 16px;
  }

  .logos-div {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .banner-container {
    text-align: left;
  }

  .tabs-text-boxes {
    width: 100%;
  }

  .tabs-images {
    width: 100%;
    margin-top: 40px;
  }

  .horizontal-tabs, .horizontal-tabs.switch {
    flex-direction: column;
  }

  .dropdown-icon {
    display: block;
  }

  .logo-container {
    width: 50%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .paragraph {
    font-size: 15px;
  }

  .paragraph.large {
    font-size: 18px;
  }

  .paragraph.small {
    text-align: center;
  }

  .card-thumbnail {
    height: 30vw;
  }

  .card-thumbnail.large {
    height: 50vw;
  }

  .tabs-menu {
    flex-wrap: wrap;
    margin-bottom: 24px;
  }

  .tab-link {
    border-bottom-width: 0;
    border-radius: 6px;
    width: auto;
    margin-bottom: 8px;
    margin-left: 4px;
    margin-right: 4px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .tab-link.w--current {
    background-color: var(--faint-blue);
  }

  .dropdown-link {
    text-align: center;
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 16px;
  }

  .nav-link.secondary {
    background-color: var(--soft-grey);
    color: var(--black);
    border-radius: 25px;
    margin: 12px 16px 8px;
    padding: 10px 0;
    font-weight: 600;
    line-height: 28px;
    display: block;
  }

  .nav-link.primary {
    margin-left: 16px;
    margin-right: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
  }

  .nav-link.outline {
    margin-left: 16px;
    margin-right: 16px;
    display: block;
  }

  .dropdown {
    display: block;
  }

  .intro-buttons.left-align {
    align-items: flex-start;
  }

  ._3-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  ._2-grid {
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  .wave-div {
    margin-bottom: 80px;
  }

  .social-grid {
    justify-content: center;
    justify-items: center;
  }

  .footer-social-section {
    margin-top: 16px;
  }

  .section-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image-div {
    margin-top: -40px;
    margin-bottom: -80px;
  }

  .nav-cta-container-mobile {
    display: block;
  }

  .heading.s {
    font-size: 22px;
  }

  .heading._2xl, .heading._3xl {
    font-size: 38px;
  }

  .heading.xl {
    font-size: 32px;
  }

  .heading.l, .heading.m {
    font-size: 28px;
  }

  .display.l {
    font-size: 45px;
  }

  .featured-card {
    flex-direction: column;
  }

  .featured-card-text-div {
    padding: 24px;
  }

  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tabs-content {
    background-color: #0000;
  }

  .partner-logo {
    flex: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .field-block {
    min-height: auto;
  }

  .text-field {
    width: 100%;
  }

  .ds-menu-brand.w--current {
    margin-top: 14px;
  }

  .ds-menu {
    background-color: #fff;
    padding: 16px 24px 24px;
  }

  ._1-2-grid, ._2-1-grid {
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  .ds-colour-block {
    width: 25%;
  }

  .ds-content {
    margin-left: 0;
  }

  .ds-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .right-nav-content {
    display: none;
  }

  .simple-footer-links {
    justify-content: center;
    display: flex;
  }

  .mobile-visible {
    display: block;
  }

  .subscribe-button {
    box-shadow: none;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.mobile-center {
    text-align: center;
  }

  .email-subscribe-banner {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .sign-up-form {
    flex-direction: column;
  }

  .feature-equal {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .mobile-hidden {
    display: none;
  }

  .pricing-grid-block {
    padding-left: 0;
  }

  .pricing-grid-block.title {
    padding-top: 24px;
    padding-bottom: 0;
  }

  .plan-header {
    border-right-style: none;
    padding-left: 0;
  }

  .pricing-grid-row {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    padding-bottom: 8px;
  }
}

@media screen and (max-width: 479px) {
  .error-1 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .column {
    margin-bottom: 0;
  }

  .column.desk-3.tab-4.mob-8 {
    width: 83.3333%;
  }

  .column.desk-5.tab-6 {
    width: 100%;
  }

  .nav-cta-button-container {
    display: none;
  }

  .menu-button {
    flex: 0 auto;
  }

  .footer-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .banner-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .tab-text-boxes {
    height: 70px;
    padding-top: 18px;
    padding-left: 17px;
    padding-right: 17px;
  }

  .tabs-text-boxes {
    text-align: center;
    max-width: 100%;
  }

  .logo-container {
    margin-top: 0;
    margin-bottom: 0;
  }

  .card-thumbnail {
    height: 50vw;
  }

  .text-area {
    width: 100%;
  }

  .answer {
    padding-left: 0;
  }

  .question-arrow-icon {
    margin-left: 16px;
  }

  .tab-header {
    margin-bottom: 0;
  }

  .card {
    box-shadow: none;
    padding: 24px;
  }

  .intro-buttons {
    flex-direction: column;
  }

  .container-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  ._3-grid {
    grid-template-columns: 1fr;
  }

  .nav-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-cta-container-mobile {
    margin-top: 20px;
  }

  .heading._3xl {
    font-size: 34px;
  }

  .heading.xl {
    font-size: 28px;
  }

  .featured-card {
    box-shadow: none;
    padding: 0;
  }

  .featured-card-image-div {
    height: 240px;
  }

  .footer-container, .error-3, .error-4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .partner-logo {
    width: 90px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .error-5 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-field, .text-input {
    width: 100%;
  }

  .color-block {
    margin-bottom: 20px;
  }

  .ds-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .right-nav-content {
    display: none;
  }

  .email-subscribe, .email-form {
    flex-direction: column;
    width: 100%;
  }

  .subscribe-button {
    width: 100%;
    margin-left: 0;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  ._4-grid {
    grid-template-columns: 1fr;
  }

  .email-subscribe-banner {
    flex-direction: column;
    width: 100%;
  }

  .sign-in-div {
    display: none;
  }

  .center-card {
    box-shadow: none;
    background-color: #0000;
    padding: 0;
  }

  .center-card-section {
    background-image: none;
    align-items: flex-start;
    padding: 120px 24px 64px;
  }

  .sign-up-nav {
    flex-direction: column;
    align-items: center;
  }

  .feature-horizontal {
    flex-direction: column;
    width: 100%;
  }

  .pricing-grid-row {
    grid-column-gap: 0px;
  }
}

@media screen and (max-width: 991px) {
  #w-node-c4c73016-242f-6596-de2f-0e1c26b0defc-3a31c03e, #w-node-a4355792-fc57-816c-771f-057160b71395-d351a390, #w-node-bbf70247-03b2-64fe-67da-515fb85fc0af-b85fc09d, #w-node-_549b2577-face-ea10-1b0a-8735e953e1ee-e953e1de, #w-node-_30a14d9b-37d4-3cdb-a52f-e5752ff8f51d-2075a028, #w-node-_1ed3fe4a-fa89-d196-8480-c205190a91d8-a9d047d4, #w-node-f4695e0d-277d-dd12-5fa7-f33139ce54de-39ce54d4, #w-node-a599452a-95d2-c95e-d399-a2d4a7f963b4-a7f963a8 {
    order: -9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_8186557e-5e2f-56bd-20d2-3fb974e5e38c-ceb76a44, #w-node-_8186557e-5e2f-56bd-20d2-3fb974e5e39a-ceb76a44, #w-node-_8186557e-5e2f-56bd-20d2-3fb974e5e3a7-ceb76a44, #w-node-_8186557e-5e2f-56bd-20d2-3fb974e5e3b4-ceb76a44, #w-node-_64befae3-9143-82d3-dfea-e04071cfa45e-ceb76a44, #w-node-c6a2da8b-8360-1b28-22c9-ff38c81efe02-ceb76a44, #w-node-_1ec58694-7a9a-0792-bb9d-b7fd8831b0e4-ceb76a44 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}


