:root {
  --secondary: #4792dd;
  --_apps---charts--chart-1: var(--secondary);
  --_apps---colors--background-dark: #060606;
  --white: white;
  --dark-slate-blue: #353448;
  --brand: #4792dd;
  --ghost-white: #f5f7ff;
  --headings: #28224b;
  --black: black;
  --slate-grey: #7e828f;
  --_apps---colors--accent: #ddd;
  --_apps---typography--heading-font: "DM Sans", sans-serif;
  --_apps---typography--body-font: "DM Sans", sans-serif;
  --_apps---typography--button-font: "DM Sans", sans-serif;
  --_apps---sizes--radius: 4px;
  --_apps---colors--background: var(--ghost-white);
  --_apps---colors--foreground: var(--headings);
  --_apps---colors--card: var(--white);
  --_apps---colors--card-foreground: #060606;
  --_apps---colors--popover: #eaeaeb;
  --_apps---colors--popover-foreground: #060606;
  --_apps---colors--primary: var(--secondary);
  --_apps---colors--primary-foreground: #070e16;
  --_apps---colors--secondary: #d3f1ff;
  --_apps---colors--secondary-foreground: #0a0e12;
  --_apps---colors--muted: #f0f1f1;
  --_apps---colors--muted-foreground: #727377;
  --_apps---colors--accent-foreground: #0d0d0d;
  --_apps---colors--destructive: #d74843;
  --_apps---colors--border: #757ae9;
  --_apps---colors--input: #787dec;
  --_apps---colors--ring: #5d92ca;
  --_apps---charts--chart-2: #7fb1e7;
  --_apps---charts--chart-3: #2a82d4;
  --_apps---charts--chart-4: #3674b1;
  --_apps---charts--chart-5: #0d5694;
  --_apps---sidebar--sidebar: #f0f1f1;
  --_apps---sidebar--sidebar-foreground: #060606;
  --_apps---sidebar--sidebar-primary: var(--secondary);
  --_apps---sidebar--sidebar-primary-foreground: #070e16;
  --_apps---sidebar--sidebar-accent: #ddd;
  --_apps---sidebar--sidebar-accent-foreground: #0d0d0d;
  --_apps---sidebar--sidebar-border: #757ae9;
  --_apps---sidebar--sidebar-ring: #5d92ca;
  --_apps---colors--foreground-dark: #f8f8f8;
  --_apps---colors--card-dark: #191818;
  --_apps---colors--card-foreground-dark: #f8f8f8;
  --_apps---colors--popover-dark: #191818;
  --_apps---colors--popover-foreground-dark: #f8f8f8;
  --_apps---colors--primary-dark: var(--secondary);
  --_apps---colors--primary-foreground-dark: #070e16;
  --_apps---colors--secondary-dark: #001b39;
  --_apps---colors--secondary-foreground-dark: #f4f9ff;
  --_apps---colors--muted-dark: #020202;
  --_apps---colors--muted-foreground-dark: #8d8c8c;
  --_apps---colors--accent-dark: #2e2e2e;
  --_apps---colors--accent-foreground-dark: #f8f8f8;
  --_apps---colors--destructive-dark: #dd4d48;
  --_apps---colors--border-dark: #757ae91a;
  --_apps---colors--input-dark: #ffffff26;
  --_apps---colors--ring-dark: #679dd5;
  --_apps---charts--chart-1-dark: var(--secondary);
  --_apps---charts--chart-2-dark: #8ec1f8;
  --_apps---charts--chart-3-dark: #1573c3;
  --_apps---charts--chart-4-dark: #77b2ef;
  --_apps---charts--chart-5-dark: #2165a4;
  --_apps---sidebar--sidebar-dark: #0c0b0b;
  --_apps---sidebar--sidebar-foreground-dark: #f8f8f8;
  --_apps---sidebar--sidebar-primary-dark: var(--secondary);
  --_apps---sidebar--sidebar-primary-foreground-dark: #070e16;
  --_apps---sidebar--sidebar-accent-dark: #2e2e2e;
  --_apps---sidebar--sidebar-accent-foreground-dark: #f8f8f8;
  --_apps---sidebar--sidebar-border-dark: #ffffff1a;
  --_apps---sidebar--sidebar-ring-dark: #679dd5;
}

.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-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

body {
  color: #28224b;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  line-height: 1;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

h2 {
  letter-spacing: -.4px;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 49px;
  font-weight: 700;
  line-height: 1;
}

h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.5;
}

a {
  text-decoration: underline;
}

li {
  margin-bottom: 20px;
}

.header {
  justify-content: center;
  align-items: center;
  padding: 100px 3%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.container-flex {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  display: flex;
}

.hero-image-wrap {
  width: 55%;
}

.hero-content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 45%;
  display: flex;
}

.button {
  background-color: var(--secondary);
  text-align: center;
  border-radius: 4px;
  padding: 20px 30px;
  transition: background-color .25s;
}

.button:hover {
  background-color: #6db6ff;
}

.button.button-space-top {
  margin-top: 20px;
}

.button.button-full {
  background-color: var(--_apps---charts--chart-1);
  border-radius: 3px;
  width: 100%;
  margin-bottom: 16px;
}

.button.button-full.downloadbutton {
  background-color: var(--_apps---colors--background-dark);
  border-radius: 8px;
  font-size: 18px;
}

.button.white {
  background-color: var(--white);
  color: var(--secondary);
  font-weight: 700;
  box-shadow: 1px 1px 3px #505050;
}

.button-outline {
  color: #757ae9;
  text-align: center;
  background-color: #0000;
  border: 1px solid #757ae9;
  border-radius: 4px;
  margin-left: 20px;
  padding: 20px 30px;
}

.paragraph {
  color: #7e828f;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  font-weight: 400;
}

.button-wrapper {
  align-items: center;
  margin-top: 25px;
  display: flex;
}

.logo-section {
  padding: 60px 3%;
  display: none;
}

.small-title {
  color: var(--dark-slate-blue);
  text-align: center;
  margin-bottom: 20px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
}

.logo-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  display: none;
}

.logo-wrap {
  justify-content: center;
  align-items: center;
  min-height: 100px;
  padding: 20px;
  display: flex;
}

.content-section {
  padding: 100px 3%;
}

.content-section.bg-gradient {
  background-image: linear-gradient(#f5f7ff, #fff);
}

.content-section.bg-gradient-reversed {
  background-image: linear-gradient(to bottom, var(--white), #f5f7ff);
}

.content-section.bg-gradient-reversed.last-hero, .content-section.faq, .content-section.quote-section {
  display: none;
}

.content-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.content-image {
  width: 100%;
}

.feature-wrap {
  align-items: center;
  margin-top: 25px;
  padding-right: 60px;
  display: flex;
}

.feature-icon {
  width: 18px;
  margin-right: 16px;
}

.feature-content-wrap {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.paragraph-small {
  color: #7e828f;
}

.style-guide-heading {
  color: #fff;
  margin-top: 0;
  font-size: 54px;
  line-height: 60px;
}

.highlight-default {
  background-color: #ffab003b;
}

.q2 {
  border-left-color: var(--secondary);
  font-style: italic;
  font-weight: 500;
}

.block-detail {
  border-bottom: 1px solid #0000001c;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 25px;
  display: flex;
}

.style-guide-header {
  background-color: var(--brand);
  background-image: url('../images/CTA.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  padding: 140px 5%;
  display: flex;
}

.title-grey {
  color: #758ca5;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.menu-title {
  border-bottom: 1px solid #232a3121;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 25px;
}

.l2 {
  padding-bottom: 10px;
  list-style-type: decimal;
}

.menu-link {
  color: #4e5d78;
  border-left: 4px solid #f5fafd;
  align-items: center;
  min-height: 40px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 25px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: relative;
}

.menu-link:hover {
  border-left-color: var(--secondary);
  background-color: #f5fafd;
}

.menu-link.w--current {
  border-left: 4px solid var(--secondary);
  background-color: #f5fafc;
}

.button-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
}

.menu-bottom {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 110px;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.style-guide-hero {
  background-color: #757ae9;
  background-image: url('../images/CTA.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  min-height: 640px;
  padding: 100px 5%;
  display: flex;
}

.strikethrough {
  text-decoration: line-through;
}

.content-container {
  width: 100%;
  max-width: 900px;
  margin: 45px auto 80px;
}

.underline {
  text-decoration: underline;
}

.colour-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-bottom: 100px;
}

.block {
  margin-bottom: 45px;
}

.p4 {
  max-width: 600px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.style-guide-section {
  padding: 100px 3%;
}

.mobile-navigation {
  display: none;
}

.colour {
  background-color: #fff;
  border-radius: 4px;
  align-items: center;
  width: 100%;
  display: block;
  overflow: hidden;
  box-shadow: 6px 6px 17px #524c4c0f;
}

.l3 {
  padding-bottom: 10px;
  list-style-type: lower-alpha;
}

.style-guide-navigation {
  background-color: #fff;
  border-right: 1px solid #232a3121;
  width: 15%;
  min-width: 250px;
  height: 100%;
  min-height: 100vh;
  position: sticky;
  top: 0;
}

.p1 {
  color: #617283;
  max-width: 600px;
  font-size: 18px;
  font-weight: 400;
}

.header-h3 {
  color: #232936;
  font-size: 30px;
}

.menu-top {
  border-bottom: 1px solid #232a3121;
  justify-content: flex-start;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 25px;
  display: flex;
  position: relative;
}

.container-tight {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.size-detail {
  color: var(--secondary);
  margin-left: 8px;
}

.colour-text {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 80px;
  padding-left: 14px;
  display: flex;
}

.colour-hex {
  color: #9b9eb8;
  text-transform: uppercase;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
}

.style-guide-content {
  background-color: #fff;
  border-right: 1px solid #1730490d;
  width: 85%;
}

.active-bar {
  background-color: #f5f7fd;
  width: 0%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.p2 {
  max-width: 600px;
  font-size: 16px;
}

.logo-style-guide {
  margin-right: 25px;
  position: static;
  inset: 0% auto 0% 0%;
}

.button-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 20px;
  display: flex;
}

.menu {
  border-bottom: 1px solid #17304917;
  overflow: auto;
}

.p3 {
  max-width: 600px;
  font-size: 14px;
  line-height: 23px;
}

.colour-title {
  float: left;
  color: #4e5d78;
  font-size: 16px;
  font-weight: 700;
}

.style-guide {
  align-items: flex-start;
  display: flex;
}

.paragraph-light {
  color: #f5f7fda6;
  max-width: 500px;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 24px;
}

.title-wrap-left {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 60px;
}

.span-opacity {
  color: #ffffff9c;
  font-weight: 500;
}

.menu-text {
  color: #17304963;
  letter-spacing: 2px;
  font-weight: 500;
}

.colour-block {
  background-color: var(--brand);
  height: 120px;
}

.colour-block.c2 {
  background-color: var(--secondary);
}

.colour-block.c6 {
  background-image: linear-gradient(#e3ebff, #fff);
}

.colour-block.c8 {
  background-color: #28224b;
}

.colour-block.c3 {
  background-color: #f8f9fd;
}

.colour-block.c9 {
  background-color: #617283;
}

.heading-white {
  color: #fff;
  margin-top: 0;
  font-size: 54px;
  line-height: 60px;
}

.content-section-02 {
  background-image: linear-gradient(to bottom, var(--ghost-white), white);
  padding: 100px 3%;
  overflow: hidden;
}

.licence-grid {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 100px;
}

.licence-image {
  object-fit: contain;
  width: 100%;
  max-width: 500px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.licence-wrap {
  justify-content: center;
  align-items: center;
  min-width: 80px;
  min-height: 170px;
  display: flex;
}

.licence-image-pattern {
  object-fit: cover;
}

.title-wrap {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.title-wrap.title-padding {
  margin-bottom: 80px;
}

.feature-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-left: 5%;
  margin-right: 5%;
}

.legal-text {
  margin-top: 25px;
}

.navbar {
  background-color: var(--white);
  border-bottom: 1px solid #f8f9fd;
  align-items: center;
  padding: 15px 3%;
  display: flex;
  position: sticky;
  top: 0;
  box-shadow: 0 0 22px -4px #35344840;
}

.navigation-container {
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.banner {
  background-color: var(--brand);
  min-height: 50px;
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
}

.banner-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  display: flex;
}

.content-wrap-01 {
  color: #fff;
  letter-spacing: 1px;
  background-color: #ffffff1a;
  border-radius: 50px;
  margin-right: 10px;
  padding: 8px 15px;
  font-size: 12px;
}

.navigation-left {
  align-items: center;
  min-width: 40%;
  display: flex;
}

.navigation-right {
  align-items: center;
  display: flex;
}

.brand {
  margin-right: 40px;
}

.button-blue {
  background-color: var(--brand);
  text-align: center;
  border-radius: 4px;
  padding: 16px 25px;
  display: none;
}

.pricing-section {
  background-color: #4792dd0a;
  padding: 100px 3% 140px;
}

.legal {
  color: var(--dark-slate-blue);
}

.footer-grid {
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}

.footer-legal-dark {
  color: #fff;
  border-top: 1px solid #00000012;
  justify-content: space-between;
  margin-top: 100px;
  padding-top: 55px;
  font-size: 15px;
  display: flex;
}

.logo-social {
  width: 18px;
}

.social-link-circle {
  background-color: var(--brand);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  padding: 8px;
  display: flex;
}

.social-link-circle.slack {
  display: none;
}

.footer-link {
  color: var(--dark-slate-blue);
  margin-bottom: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 6px;
  font-size: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--headings);
}

.social-icon-wrap-circles {
  margin-top: 20px;
  display: flex;
}

.title {
  color: var(--headings);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
}

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

.footer {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 3% 60px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta-section {
  color: #4792dd;
  background-color: #4792dd;
  background-image: url('../images/5ebaf2acaa99197f28f0aec6_CTA.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  min-height: 640px;
  padding: 60px 3%;
  display: flex;
}

.title-wrap-centre {
  max-width: 720px;
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-plain {
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.3;
}

.header-secondary {
  background-color: var(--brand);
  background-image: url('../images/CTA.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  padding: 100px 3%;
  display: flex;
}

.faq-grid {
  grid-template-rows: auto;
}

.faq-question-wrap {
  border-bottom: 1px solid #00000012;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 20px;
}

.faq-question-bar {
  color: var(--black);
  justify-content: flex-start;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 15px;
  text-decoration: none;
  display: flex;
}

.question-title {
  color: #2e2e3d;
  font-size: 18px;
  font-weight: 500;
}

.faq-content {
  overflow: hidden;
}

.faq-paragraph {
  color: #7e828f;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.faq-wrap {
  background-color: #e8faf7;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-right: 20px;
  padding: 8px;
  display: flex;
}

.faq-column-wrapper {
  padding-right: 30px;
}

.content-block {
  padding-left: 35px;
  padding-right: 35px;
}

.hero-h1 {
  max-width: 580px;
  color: var(--headings);
  letter-spacing: -.4px;
  margin-bottom: 20px;
}

.hero-paragraph {
  max-width: 420px;
  color: var(--slate-grey);
}

.return-top {
  background-color: var(--secondary);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  position: fixed;
  inset: auto 25px 40px auto;
}

.nav-link {
  opacity: .8;
  color: var(--dark-slate-blue);
  text-transform: none;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 15px;
  font-weight: 500;
  transition: opacity .2s;
}

.nav-link:hover {
  opacity: 1;
  color: var(--headings);
}

.nav-link.w--current {
  color: var(--dark-slate-blue);
}

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

.feature-block {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.feature-section {
  background-color: #4792dd0a;
  padding: 100px 3%;
  position: relative;
  overflow: hidden;
}

.image-wrapper-right {
  padding: 15px;
}

.content-h2 {
  margin-bottom: 24px;
  line-height: 1.1;
}

.pattern-left {
  z-index: -1;
  position: absolute;
  inset: auto auto -25px 0%;
}

.footer-logo {
  margin-bottom: 25px;
}

.detail-text {
  margin-left: 12px;
}

.image-wrapper {
  padding: 15px;
}

.pricing {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.pricing-card {
  background-color: var(--white);
  border-radius: 15px;
  min-height: 500px;
  padding: 34px;
}

.pricing-card.pricing-shadow {
  box-shadow: 3px 50px 50px -30px #35344836;
}

.type-wrap {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.pricing-wrap {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.pricing-strike {
  color: var(--slate-grey);
  text-decoration: line-through;
}

.check-holder {
  height: 120px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.check-wrap {
  align-items: center;
  margin-bottom: 16px;
  font-weight: 500;
  display: flex;
}

.check {
  width: 16px;
  height: 16px;
  margin-right: 20px;
}

.pricing-h3 {
  margin-bottom: 0;
  font-size: 28px;
}

.utility-page-wrap {
  background-color: var(--ghost-white);
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
}

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

.container-404 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  display: flex;
}

.link {
  color: var(--secondary);
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 420px;
  display: flex;
}

.text-field {
  border: 1px #000;
  border-radius: 4px;
  min-height: 55px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.utility-h2 {
  color: var(--headings);
  text-align: center;
  margin-bottom: 35px;
}

.licence-grid-4x {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 100px;
}

.change-log-wrap {
  border-bottom: 1px solid #00000014;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 45px;
  display: flex;
}

.title-large {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.4;
}

.new-tag {
  background-color: var(--secondary);
  color: #fff;
  text-transform: uppercase;
  border-radius: 50px;
  margin-left: 4px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}

.list {
  margin-top: 15px;
  margin-bottom: 15px;
}

.testimonial-photo {
  width: 100%;
  max-width: 540px;
}

.icon-block {
  width: 90px;
  height: 90px;
  box-shadow: inset 4px 4px 3px 0 var(--white), 0 12px 50px 12px #4792dd26;
  background-color: #f7f8ff;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  display: none;
}

.icon-block.icon-block-space {
  box-shadow: inset 4px 4px 3px 0 var(--white), 0 12px 50px 12px #4792dd26;
  margin-bottom: 20px;
  display: flex;
}

.lottie-animation {
  max-width: 400px;
  margin-bottom: 100px;
}

.month-span {
  color: var(--slate-grey);
  font-size: 18px;
}

.webflow-link {
  color: var(--brand);
}

.button-buy {
  text-align: center;
  background-color: #19ceaf;
  border-radius: 4px;
  padding: 20px 30px;
  transition: background-color .25s;
}

.button-buy:hover {
  background-color: #16c2a4;
}

.utility-paragraph {
  color: var(--slate-grey);
  text-align: center;
}

.utility-image {
  margin-bottom: 30px;
}

.update-tag {
  background-color: var(--brand);
  color: #fff;
  text-transform: uppercase;
  border-radius: 50px;
  margin-left: 4px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}

.heading {
  font-size: 24px;
  font-weight: 500;
}

.heading.nav-link {
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}

.heading.nav-link.footer {
  padding-left: 0;
}

.image {
  height: 50px;
}

.image-2 {
  width: auto;
  height: 50px;
}

.image-3, .image-4 {
  width: auto;
  height: 50%;
}

.submit-button {
  float: right;
  clear: both;
  border: 0px solid var(--brand);
  background-color: var(--white);
  width: auto;
  color: var(--secondary);
  text-align: center;
  border-radius: 0;
  margin-top: 0;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  position: relative;
  left: auto;
  right: 0;
}

.submit-button.launch-top {
  background-color: var(--secondary);
  color: var(--white);
}

.text-field-2 {
  float: none;
  border-right: 0 solid #000;
  width: 74%;
  height: 48px;
}

.text-field-2.lower-half {
  width: 72%;
}

.form {
  width: auto;
  min-width: 400px;
}

.success-message {
  background-color: var(--secondary);
}

.text-block {
  color: #fff;
}

.form-block {
  float: none;
  clear: both;
  margin-bottom: 7px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
}

.button-2 {
  border-radius: 5px;
  font-size: 16px;
}

.image-5 {
  margin-top: 45px;
  padding-top: 0;
}

.heading-3 {
  margin-bottom: 41px;
}

.text-block-2 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.flex-block {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex: 0 auto;
  align-self: auto;
}

.flex-block-2 {
  display: block;
}

.flex-block-3 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-block-3.downloadblock {
  background-color: #68adf373;
  border-radius: 10px;
  padding: 16px;
}

.flex-block-4 {
  align-items: center;
}

.flex-block-4.downloadblock {
  background-color: #68adf373;
  border-radius: 10px;
  padding: 16px;
}

.div-block {
  background-color: #000;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  min-width: 250px;
  padding: 8px;
  display: flex;
}

.text-block-3 {
  outline-offset: 0px;
  color: var(--_apps---colors--accent);
  mix-blend-mode: normal;
  outline: 3px #00e;
  -webkit-text-decoration: none;
  text-decoration: none;
  overflow: visible;
}

.link-block-2 {
  margin-bottom: 16px;
  text-decoration: none;
}

.link-block-3 {
  text-decoration: none;
}

@media screen and (min-width: 1920px) {
  .link-block {
    box-sizing: border-box;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    cursor: pointer;
    flex: 0 auto;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    height: auto;
    max-height: none;
    display: block;
    position: static;
  }

  .heading-2 {
    margin-top: 32px;
    position: relative;
  }

  .heading-3 {
    margin-bottom: 15px;
    padding-bottom: 0;
  }

  .heading-4 {
    margin-top: 16px;
  }

  .text-block-2 {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .image-6 {
    margin-top: 9px;
  }
}

@media screen and (max-width: 991px) {
  .header {
    padding-top: 80px;
  }

  .container-flex {
    flex-wrap: wrap;
  }

  .hero-image-wrap {
    width: 100%;
  }

  .hero-content {
    text-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
  }

  .logo-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .content-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

  .content-image {
    max-width: 500px;
  }

  .feature-icon {
    margin-bottom: 15px;
  }

  .style-guide-header {
    min-height: 420px;
  }

  .button-grid, .colour-grid {
    grid-template-columns: 1fr 1fr;
  }

  .style-guide-navigation {
    z-index: 99;
    transform: translate(0);
  }

  .style-guide-content {
    width: 100%;
  }

  .title-wrap-left {
    text-align: left;
  }

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

  .feature-grid {
    grid-row-gap: 41px;
    grid-template-columns: 1fr 1fr;
  }

  .navbar {
    position: relative;
  }

  .navigation-right {
    display: none;
  }

  .pricing-section {
    padding-top: 100px;
  }

  .footer-grid {
    grid-column-gap: 24px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .faq-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .nav-link {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .nav-menu {
    background-color: var(--white);
    box-shadow: 0 50px 80px -30px #35344833;
  }

  .menu-button {
    background-color: #7e828f1a;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    padding: 16px;
    display: flex;
  }

  .menu-button.w--open {
    background-color: var(--secondary);
  }

  .pattern-left {
    display: none;
    inset: 0% auto auto 0%;
  }

  .image-wrapper {
    margin-bottom: 20px;
  }

  .pricing {
    grid-row-gap: 41px;
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }

  .type-wrap {
    margin-bottom: 20px;
  }

  .check-holder {
    margin-top: 20px;
  }

  .icon {
    display: block;
  }

  .container-404 {
    flex-wrap: wrap;
  }

  .licence-grid-4x {
    grid-template-columns: 1fr 1fr;
  }

  .image-5 {
    vertical-align: baseline;
    background-image: url('../images/badge-example-preferred.svg');
    background-position: 0 0;
    background-size: auto;
  }

  .link-block {
    height: auto;
  }

  .button-3 {
    background-image: url('../images/badge-example-preferred.svg');
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
    width: 120px;
    height: 40px;
  }

  .text-block-2 {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .flex-block {
    justify-content: center;
    align-items: flex-start;
  }

  .flex-block-3.downloadblock {
    background-color: #68adf373;
    border-radius: 10px;
    padding: 16px;
  }

  .flex-block-4.downloadblock {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #68adf373;
    border-radius: 10px;
    margin-left: 0;
    padding: 16px;
  }

  .div-block {
    text-decoration: none;
  }

  .text-block-3 {
    outline-offset: 0px;
    outline: 3px #00e;
    text-decoration: none;
  }

  .link-block-2, .link-block-3 {
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding-bottom: 60px;
  }

  .button-wrapper {
    flex-direction: column;
  }

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

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

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

  .style-guide-hero {
    padding-bottom: 160px;
  }

  .mobile-navigation {
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    padding-left: 3%;
    padding-right: 3%;
    display: flex;
  }

  .colour {
    margin-bottom: 25px;
  }

  .style-guide-navigation {
    display: none;
  }

  .footer-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .faq-column-wrapper {
    padding-right: 0;
  }

  .content-block {
    padding-left: 0;
    padding-right: 0;
  }

  .detail-text {
    margin-top: 20px;
    margin-left: 0;
  }
}

@media screen and (max-width: 479px) {
  .header {
    padding-top: 60px;
  }

  .button {
    width: 100%;
    max-width: 250px;
  }

  .button.button-full {
    max-width: none;
  }

  .button-outline {
    width: 100%;
    max-width: 250px;
    margin-left: 0;
  }

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

  .feature-wrap {
    flex-wrap: wrap;
  }

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

  .feature-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .banner {
    display: none;
  }

  .legal {
    margin-right: 0;
  }

  .footer-grid {
    grid-template-rows: auto auto auto auto;
  }

  .question-title {
    flex: 1;
  }

  .faq-wrap {
    margin-right: 15px;
  }

  .hero-h1 {
    font-size: 50px;
  }

  .pricing {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-wrap {
    flex-wrap: wrap;
  }

  .button-buy {
    white-space: nowrap;
  }

  .flex-block {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .flex-block-3.downloadblock {
    justify-content: flex-start;
    align-items: center;
  }
}

#w-node-_6b84f971-812a-2333-77fa-3ad6ad53e8b2-55f0ae67, #w-node-_45f748af-3c16-92be-1d07-06a8dd2461bf-55f0ae67, #w-node-d5681067-429c-01eb-7be4-42e8c59ae531-55f0ae67 {
  align-self: start;
}

#w-node-e77db9e4-a853-fb21-d2a7-ef2746af3fcd-55f0ae67, #w-node-_290e647b-b0f7-b34d-8252-95d7d6426eb9-55f0ae67, #w-node-befe4689-9309-4cf3-f13f-89963b5d9ef8-55f0ae67, #w-node-_04f2773a-6f3b-c477-4c19-846fcdca244c-55f0ae67 {
  align-self: center;
}

#w-node-fb07e557-7789-d040-aadb-a4feec956a05-ec956a02 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-fb07e557-7789-d040-aadb-a4feec956a10-ec956a02 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-fb07e557-7789-d040-aadb-a4feec956a2f-ec956a02 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_4a7feb6c-af65-c021-0478-a3e637d5ce8a-ec956a02 {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-e31cd1eb-60ad-5ce5-1dc7-bd98ad7da15b-cdf0ae6c, #w-node-e31cd1eb-60ad-5ce5-1dc7-bd98ad7da15d-cdf0ae6c, #w-node-e31cd1eb-60ad-5ce5-1dc7-bd98ad7da15f-cdf0ae6c {
  justify-self: start;
}

#w-node-_45f748af-3c16-92be-1d07-06a8dd2461bf-f6408b13 {
  align-self: start;
}

#w-node-e77db9e4-a853-fb21-d2a7-ef2746af3fcd-f6408b13, #w-node-_290e647b-b0f7-b34d-8252-95d7d6426eb9-f6408b13, #w-node-befe4689-9309-4cf3-f13f-89963b5d9ef8-f6408b13, #w-node-_04f2773a-6f3b-c477-4c19-846fcdca244c-f6408b13 {
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-e77db9e4-a853-fb21-d2a7-ef2746af3fcd-55f0ae67 {
    order: 9999;
  }

  #w-node-_78adad6f-95eb-5ea8-5ad9-551c0d32c904-55f0ae67 {
    order: 9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_04f2773a-6f3b-c477-4c19-846fcdca244a-55f0ae67 {
    justify-self: center;
  }

  #w-node-fb07e557-7789-d040-aadb-a4feec956a05-ec956a02 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4a7feb6c-af65-c021-0478-a3e637d5ce8a-ec956a02 {
    grid-area: 1 / 5 / 2 / 6;
  }

  #w-node-e77db9e4-a853-fb21-d2a7-ef2746af3fcd-f6408b13 {
    order: 9999;
  }

  #w-node-_78adad6f-95eb-5ea8-5ad9-551c0d32c904-f6408b13 {
    order: 9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_04f2773a-6f3b-c477-4c19-846fcdca244a-f6408b13 {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_8a2f180f-36a5-95af-12be-ec8dd939cff9-55f0ae67 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_92963262-a3f4-8a2c-a5e8-2bd1d211cd5f-55f0ae67 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-fb07e557-7789-d040-aadb-a4feec956a05-ec956a02 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-fb07e557-7789-d040-aadb-a4feec956a10-ec956a02 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-fb07e557-7789-d040-aadb-a4feec956a2f-ec956a02 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_4a7feb6c-af65-c021-0478-a3e637d5ce8a-ec956a02 {
    grid-area: 2 / 3 / 3 / 4;
  }

  #w-node-_8a2f180f-36a5-95af-12be-ec8dd939cff9-f6408b13 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_92963262-a3f4-8a2c-a5e8-2bd1d211cd5f-f6408b13 {
    grid-area: 2 / 2 / 3 / 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_8a2f180f-36a5-95af-12be-ec8dd939cff9-55f0ae67 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_92963262-a3f4-8a2c-a5e8-2bd1d211cd5f-55f0ae67 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-fb07e557-7789-d040-aadb-a4feec956a05-ec956a02 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-fb07e557-7789-d040-aadb-a4feec956a10-ec956a02 {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-fb07e557-7789-d040-aadb-a4feec956a2f-ec956a02 {
    grid-area: 3 / 1 / 4 / 4;
  }

  #w-node-_4a7feb6c-af65-c021-0478-a3e637d5ce8a-ec956a02 {
    grid-area: 4 / 1 / 5 / 4;
  }

  #w-node-_8a2f180f-36a5-95af-12be-ec8dd939cff9-f6408b13 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_92963262-a3f4-8a2c-a5e8-2bd1d211cd5f-f6408b13 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


