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

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

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

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

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

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

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

a {
  text-decoration: underline;
}

li {
  margin-bottom: 20px;
}

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

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

.container-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.hero-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 45%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.button-1 {
  padding: 20px 30px;
  border-radius: 4px;
  background-color: #f9e47d;
  opacity: 1;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
  color: #000;
  text-align: center;
}

.button-1:hover {
  background-color: #ffd923;
}

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

.button-1.button-full {
  width: 100%;
}

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

.paragraph {
  color: #7e828f;
  font-size: 16px;
}

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

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

.small-title {
  margin-bottom: 20px;
  color: #353448;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}

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

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

.pricing-table {
  padding: 19px 3% 20px;
}

.pricing-table.bg-gradient {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f7ff), to(#fff));
  background-image: linear-gradient(180deg, #f5f7ff, #fff);
}

.pricing-table.bg-gradient-reversed {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f5f7ff));
  background-image: linear-gradient(180deg, #fff, #f5f7ff);
}

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

.content-image {
  width: 100%;
}

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

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

.feature-content-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

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

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

.highlight-default {
  background-color: rgba(255, 171, 0, 0.23);
}

.q2 {
  border-left-color: #19ceaf;
  font-style: italic;
  font-weight: 500;
}

.block-detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
  padding-bottom: 25px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.11);
}

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

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

.menu-title {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 25px;
  border-bottom: 1px solid rgba(35, 42, 49, 0.13);
}

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

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

.menu-link:hover {
  border-left-color: #19ceaf;
  background-color: #f5fafd;
}

.menu-link.w--current {
  border-left: 4px solid #19ceaf;
  background-color: #f5fafc;
}

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

.menu-bottom {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 110px;
  padding-right: 25px;
  padding-left: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

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

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

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

.underline {
  text-decoration: underline;
}

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

.block {
  margin-bottom: 45px;
}

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

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

.mobile-navigation {
  display: none;
}

.colour {
  display: block;
  overflow: hidden;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 6px 6px 17px 0 rgba(82, 76, 76, 0.06);
}

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

.style-guide-navigation {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  width: 15%;
  height: 100%;
  min-height: 100vh;
  min-width: 250px;
  border-right: 1px solid rgba(35, 42, 49, 0.13);
  background-color: #fff;
}

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

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

.menu-top {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 25px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(35, 42, 49, 0.13);
}

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

.size-detail {
  margin-left: 8px;
  color: #19ceaf;
}

.colour-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  padding-left: 14px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

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

.style-guide-content {
  width: 85%;
  border-right: 1px solid rgba(23, 48, 73, 0.05);
  background-color: #fff;
}

.active-bar {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  width: 0%;
  background-color: #f5f7fd;
}

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

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

.button-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.menu {
  overflow: auto;
  border-bottom: 1px solid rgba(23, 48, 73, 0.09);
}

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

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

.style-guide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.paragraph-light {
  max-width: 500px;
  margin-bottom: 25px;
  color: rgba(245, 247, 253, 0.65);
  font-size: 16px;
  line-height: 24px;
}

.title-wrap-left {
  margin-bottom: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}

.span-opacity {
  color: rgba(255, 255, 255, 0.61);
  font-weight: 500;
}

.menu-text {
  color: rgba(23, 48, 73, 0.39);
  font-weight: 500;
  letter-spacing: 2px;
}

.colour-block {
  height: 120px;
  background-color: #757ae9;
}

.colour-block.c2 {
  background-color: #19ceaf;
}

.colour-block.c6 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e3ebff), to(#fff));
  background-image: linear-gradient(180deg, #e3ebff, #fff);
}

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

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

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

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

.content-section-02 {
  overflow: hidden;
  padding: 100px 3%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f7ff), to(#fff));
  background-image: linear-gradient(180deg, #f5f7ff, #fff);
}

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

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

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

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

.title-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

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

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

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

.navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 3%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #f8f9fd;
  background-color: #fff;
  box-shadow: none;
}

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

.banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 50px;
  padding-right: 3%;
  padding-left: 3%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #757ae9;
  color: #fff;
}

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

.content-wrap-01 {
  margin-right: 10px;
  padding: 8px 15px;
  border-radius: 50px;
  background-color: hsla(0, 0%, 100%, 0.1);
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
}

.navigation-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navigation-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.brand {
  margin-right: 40px;
}

.button-blue {
  padding: 16px 25px;
  border-radius: 4px;
  background-color: #f9e47d;
  -webkit-transform: translate(-33px, 0px);
  -ms-transform: translate(-33px, 0px);
  transform: translate(-33px, 0px);
  color: #000;
  text-align: center;
}

.button-blue:hover {
  background-color: #ffd923;
}

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

.legal {
  color: #353448;
}

.footer-grid {
  -ms-grid-columns: 2fr 2fr 2.25fr;
  grid-template-columns: 2fr 2fr 2.25fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -webkit-transform: translate(0px, 76px);
  -ms-transform: translate(0px, 76px);
  transform: translate(0px, 76px);
}

.footer-legal-dark {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
  padding-top: 55px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  color: #fff;
  font-size: 15px;
}

.logo-social {
  width: 18px;
}

.social-link-circle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 12px;
  padding: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  background-color: #757ae9;
}

.footer-link {
  margin-bottom: 12px;
  padding-top: 8px;
  padding-right: 6px;
  padding-bottom: 8px;
  color: #353448;
  font-size: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: #28224b;
}

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

.title {
  margin-bottom: 20px;
  color: #28224b;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0px 3%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  opacity: 1;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  text-decoration: none;
}

.cta-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 640px;
  padding: 60px 3%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #4c50b1;
  background-image: url('../images/CTA.svg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.title-wrap-centre {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

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

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

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

.faq-question-wrap {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.faq-question-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 12px;
  padding-right: 15px;
  padding-bottom: 12px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  text-decoration: none;
}

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

.faq-content {
  overflow: hidden;
}

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

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

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

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

.hero-h1 {
  max-width: 580px;
  margin-bottom: 20px;
  color: #28224b;
  font-size: 50px;
  letter-spacing: -0.4px;
}

.hero-paragraph {
  max-width: 420px;
  color: #7e828f;
}

.nav-link {
  padding-right: 16px;
  padding-left: 16px;
  opacity: 0.8;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  color: #353448;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
}

.nav-link:hover {
  opacity: 1;
  color: #28224b;
}

.nav-link.w--current {
  color: #353448;
}

.feature-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 16px;
  padding-left: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0px;
  opacity: 1;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  text-align: center;
}

.feature-block.mobile {
  display: none;
}

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

.image-wrapper-right,
.video-wrapper-right {
  padding: 15px 15px 0px;
  opacity: 1;
  text-align: left;
}

.content-h2 {
  margin-bottom: 24px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
}

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

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

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

.image-wrapper,
.video-wrapper {
  padding: 15px;
}

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

.pricing-card {
  min-height: 500px;
  padding: 34px;
  border-radius: 15px;
  background-color: #fff;
}

.pricing-card.pricing-shadow {
  box-shadow: 3px 50px 50px -30px rgba(53, 52, 72, 0.21);
}

.type-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.pricing-strike {
  color: #7e828f;
  text-decoration: line-through;
}

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

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

.check {
  margin-right: 20px;
}

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

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  padding-right: 3%;
  padding-left: 3%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f7ff;
  color: #fff;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.container-404 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.link {
  color: #19ceaf;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 420px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

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

.utility-h2 {
  margin-bottom: 35px;
  color: #28224b;
  text-align: center;
}

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

.change-log-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-bottom: 45px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

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

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

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

.icon-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90px;
  height: 90px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  background-color: #f7f8ff;
  box-shadow: inset 4px 4px 3px 0 #fff, 0 12px 50px 12px rgba(156, 181, 247, 0.19);
}

.icon-block.icon-block-space {
  margin-bottom: 20px;
  opacity: 1;
}

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

.month-span {
  color: #7e828f;
  font-size: 18px;
}

.webflow-link {
  color: #757ae9;
}

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

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

.utility-paragraph {
  color: #7e828f;
  text-align: center;
}

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

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

.bold-text {
  position: static;
  border-radius: 0px;
  opacity: 1;
  -webkit-transform: translate(18px, 0px) skew(0deg, 0deg);
  -ms-transform: translate(18px, 0px) skew(0deg, 0deg);
  transform: translate(18px, 0px) skew(0deg, 0deg);
  -o-object-fit: fill;
  object-fit: fill;
}

.lottie-animation-2 {
  font-size: 12px;
}

.lottie-animation-3 {
  position: static;
  overflow: scroll;
  width: 10%;
  -webkit-transform: scale3d(1none, 1none, 1none) scale(0.7);
  transform: scale3d(1none, 1none, 1none) scale(0.7);
  text-align: center;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.toggle-plan {
  display: block;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  -webkit-transform: translate(45%, 0px) translate(0px, 0px);
  -ms-transform: translate(45%, 0px) translate(0px, 0px);
  transform: translate(45%, 0px) translate(0px, 0px);
}

.toggle-text {
  width: 30%;
  color: rgba(0, 0, 0, 0.8);
}

.toggle-text.monthly-toggle {
  display: block;
  color: rgba(0, 0, 0, 0.8);
  text-align: right;
}

.toggle-contain {
  position: relative;
  width: 70px;
  height: 34px;
  margin-right: 25px;
  margin-left: 25px;
  padding-top: 5px;
  padding-right: 5px;
  padding-left: 5px;
  border-radius: 50px;
  background-color: #000;
  text-align: center;
}

.pricing-box {
  width: 31.3%;
  min-height: 420px;
  margin-right: 1%;
  margin-left: 1%;
  padding-top: 30px;
  padding-right: 40px;
  padding-left: 40px;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 10px 25px 3px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  line-height: 2em;
  font-weight: 300;
  text-align: center;
}

.button-2 {
  padding: 15px 25px 11px;
  border-radius: 3px;
  background-color: #378ae8;
  -webkit-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
  color: #fff;
  font-size: 12.5px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.button-2:hover {
  background-color: #2566b0;
}

.button-2.pricing-button {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 25px;
  padding-top: 20px;
  padding-bottom: 15px;
  font-size: 16.5px;
  letter-spacing: 1.5px;
}

.button-2.pricing-button.outline-button {
  margin-top: 14px;
  margin-bottom: 24px;
  border: 1px solid #000;
  background-color: transparent;
  color: #000;
  font-weight: 400;
}

.container-405 {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 50px;
  padding-left: 50px;
}

.pricing-box-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.price {
  position: relative;
  margin-top: -10px;
  margin-bottom: 3px;
  font-size: 55px;
  line-height: 70px;
  font-weight: 700;
}

.toggle-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}

.yearly-discount {
  position: relative;
  top: 3px;
  display: inline-block;
  width: 100%;
  height: 21px;
  color: #378ae8;
  font-size: 17px;
  line-height: 21px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.toggle-dot {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #f7e27b;
}

.image {
  opacity: 0.4;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.image-2 {
  max-width: 60%;
  opacity: 0.4;
}

.image-3 {
  opacity: 0.4;
}

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

.text-block {
  text-align: center;
}

.image-4 {
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.image-5 {
  overflow: visible;
  border-radius: 0px;
  opacity: 1;
}

.image-6 {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
}

.person {
  width: 70px;
  margin-bottom: 13px;
  border-radius: 100%;
}

.name {
  font-weight: 500;
}

.testimony-text {
  margin-bottom: 21px;
  font-size: 25px;
  line-height: 31px;
  font-weight: 300;
}

.review {
  padding-top: 51px;
  padding-bottom: 70px;
}

.slider-arrow {
  width: 50px;
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
  color: #bdbdbd;
  font-size: 32px;
}

.slider-arrow:hover {
  color: #000;
}

.testimony-slide {
  padding-top: 0px;
  padding-right: 10%;
  padding-left: 10%;
  text-align: center;
}

.slide-nav {
  display: none;
  font-size: 10px;
}

.testimonial-slider {
  height: auto;
  margin-top: 45px;
  background-color: transparent;
}

.heading {
  padding-bottom: 19px;
  text-align: center;
}

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

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

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

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

.content-section.bg-gradient {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f7ff), to(#fff));
  background-image: linear-gradient(180deg, #f5f7ff, #fff);
}

.content-section.bg-gradient-reversed {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f5f7ff));
  background-image: linear-gradient(180deg, #fff, #f5f7ff);
}

.button-3 {
  padding: 20px 30px;
  border-radius: 4px;
  background-color: #19ceaf;
  -webkit-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
  text-align: center;
}

.button-3:hover {
  background-color: #ffd923;
}

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

.text-block-2 {
  font-size: 16px;
}

.bold-text-2 {
  width: auto;
  font-size: 17px;
}

.faq-question-bar-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 12px;
  padding-right: 15px;
  padding-bottom: 12px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  text-decoration: none;
}

.heading-2 {
  text-align: center;
}

.button-4 {
  padding: 20px 30px;
  border-radius: 4px;
  background-color: #f9e47d;
  opacity: 1;
  -webkit-transform: translate(300px, 48px);
  -ms-transform: translate(300px, 48px);
  transform: translate(300px, 48px);
  -webkit-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
  text-align: center;
}

.button-4:hover {
  background-color: #ffd923;
}

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

.button-4.button-full {
  width: 100%;
}

.heading-3 {
  padding-top: 52px;
}

.social-link-circle-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 12px;
  padding: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  background-color: #757ae9;
}

.footer-link-2 {
  margin-bottom: 12px;
  padding-top: 8px;
  padding-right: 6px;
  padding-bottom: 8px;
  color: #353448;
  font-size: 16px;
  text-decoration: none;
}

.footer-link-2:hover {
  color: #28224b;
}

.title-3 {
  margin-bottom: 20px;
  color: #28224b;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.button-blue-2 {
  padding: 16px 25px;
  border-radius: 4px;
  background-color: #f9e47d;
  color: #000;
  text-align: center;
}

.button-blue-2:hover {
  background-color: #ffd923;
}

.show-login{
  color: #000000;
    background-color: transparent;
}

.show-login:hover{
  background-color: transparent;
}

.footer-column-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 1;
  -webkit-transform: translate(0px, 0px) translate(0px, 0px);
  -ms-transform: translate(0px, 0px) translate(0px, 0px);
  transform: translate(0px, 0px) translate(0px, 0px);
  font-size: 12px;
}

.footer-link-3 {
  margin-bottom: 12px;
  padding-top: 8px;
  padding-right: 6px;
  padding-bottom: 8px;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  color: #353448;
  font-size: 16px;
  text-decoration: none;
}

.footer-link-3:hover {
  color: #28224b;
}

@media screen and (min-width: 1920px) {
  .section-2 {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .header {
    padding-top: 80px;
  }
  .container-flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .hero-image-wrap {
    width: 100%;
  }
  .hero-content {
    width: 100%;
    margin-bottom: 40px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .logo-grid {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .pricing-table {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .content-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .content-image {
    max-width: 500px;
  }
  .feature-icon {
    margin-bottom: 15px;
  }
  .style-guide-header {
    min-height: 420px;
  }
  .button-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .colour-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .style-guide-navigation {
    z-index: 99;
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  .style-guide-content {
    width: 100%;
  }
  .title-wrap-left {
    text-align: left;
  }
  .licence-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid {
    grid-row-gap: 41px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .navbar {
    position: relative;
  }
  .navigation-right {
    display: none;
  }
  .footer-grid {
    grid-column-gap: 24px;
    grid-row-gap: 50px;
    -ms-grid-columns: 1fr 1fr 2fr;
    grid-template-columns: 1fr 1fr 2fr;
  }
  .faq-grid {
    grid-row-gap: 0px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .nav-link {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .nav-menu {
    background-color: #fff;
    box-shadow: 0 50px 80px -30px rgba(53, 52, 72, 0.2);
  }
  .menu-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 16px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 4px;
    background-color: rgba(126, 130, 143, 0.1);
  }
  .menu-button.w--open {
    background-color: #19ceaf;
  }
  .pattern-left {
    left: 0%;
    top: 0%;
    right: auto;
    bottom: auto;
    display: none;
  }
  .image-wrapper,
  .video-wrapper {
    margin-bottom: 20px;
  }
  .pricing {
    grid-row-gap: 41px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .pricing-card {
    min-height: auto;
  }
  .type-wrap {
    margin-bottom: 20px;
  }
  .check-holder {
    margin-top: 20px;
  }
  .icon {
    display: block;
  }
  .container-404 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .licence-grid-4x {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .pricing-box {
    width: 48%;
    max-width: 310px;
    margin-bottom: 2%;
  }
  .content-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding-bottom: 60px;
  }
  .button-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .logo-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .pricing-table {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .button-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .style-guide-hero {
    padding-bottom: 160px;
  }
  .mobile-navigation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 80px;
    padding-right: 3%;
    padding-left: 3%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .colour {
    margin-bottom: 25px;
  }
  .style-guide-navigation {
    display: none;
  }
  .footer-grid {
    -ms-grid-columns: 1fr 1fr 2fr;
    grid-template-columns: 1fr 1fr 2fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .faq-column-wrapper {
    padding-right: 0px;
  }
  .content-block {
    padding-right: 0px;
    padding-left: 0px;
  }
  .detail-text {
    margin-top: 20px;
    margin-left: 0px;
  }
  .pricing-box {
    width: 100%;
    min-height: auto;
    padding-right: 5%;
    padding-bottom: 40px;
    padding-left: 5%;
    font-size: 14px;
  }
  .container-405 {
    padding-right: 3%;
    padding-left: 3%;
  }
  .toggle-row {
    margin-bottom: 30px;
  }
  .review {
    padding-top: 43px;
    padding-bottom: 43px;
    text-align: center;
  }
  .content-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 479px) {
  .header {
    padding-top: 60px;
  }
  .button-1 {
    width: 100%;
    max-width: 250px;
  }
  .button-1.button-full {
    max-width: none;
  }
  .button-outline {
    width: 100%;
    max-width: 250px;
    margin-left: 0px;
  }
  .paragraph {
    display: block;
  }
  .logo-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .feature-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .button-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .feature-grid {
    display: none;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .banner {
    display: none;
  }
  .legal {
    margin-right: 0px;
  }
  .footer-grid {
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
  }
  .question-title {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .faq-wrap {
    margin-right: 15px;
  }
  .hero-h1 {
    font-size: 50px;
  }
  .feature-block.mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .pricing {
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding-right: 20px;
    padding-left: 20px;
  }
  .pricing-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .button-buy {
    white-space: nowrap;
  }
  .toggle-text {
    display: none;
  }
  .toggle-text.monthly-toggle {
    display: none;
  }
  .toggle-contain {
    margin-right: 15px;
    margin-left: 15px;
  }
  .button-3 {
    width: 100%;
    max-width: 250px;
  }
  .button-4 {
    width: 100%;
    max-width: 250px;
  }
  .button-4.button-full {
    max-width: none;
  }
  .grid {
    -ms-grid-columns: 1fr 0.25fr;
    grid-template-columns: 1fr 0.25fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }
  .text-block-3 {
    background-color: hsla(0, 0%, 100%, 0);
    color: rgba(0, 0, 0, 0.8);
  }
}

#w-node-06a8dd2461bf-f36efbd3 {
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
}

#w-node-d239de33a032-f36efbd3 {
  -ms-grid-row-align: start;
  align-self: start;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-f5c4d460300a-f36efbd3 {
  -ms-grid-row-align: start;
  align-self: start;
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-fd89a67c823f-f36efbd3 {
  -ms-grid-row-align: start;
  align-self: start;
  -ms-grid-column: 4;
  grid-column-start: 4;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 5;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-4d263bbede6d-f36efbd3 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-dad0ecdecdf4-f36efbd3 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-629108e3c3c0-f36efbd3 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-eb761538520b-f36efbd3 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-eb761538521d-f36efbd3 {
  -ms-grid-column-span: 2;
  grid-column-end: 6;
  -ms-grid-column: 4;
  grid-column-start: 4;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

#w-node-23bc7091705e-f36efbd3 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 2;
  grid-column-start: span 2;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
}

#w-node-bd98ad7da15b-5c6efbd8 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-bd98ad7da15d-5c6efbd8 {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-bd98ad7da15f-5c6efbd8 {
  -ms-grid-column-align: start;
  justify-self: start;
}

@media screen and (min-width: 1920px) {
  #w-node-eb761538521d-f36efbd3 {
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-column-span: 2;
    grid-column-end: 4;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
  }
}

@media screen and (max-width: 991px) {
  #w-node-dad0ecdecdf4-f36efbd3 {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-eb761538520b-f36efbd3 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ec8dd939cff9-f36efbd3 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }
  #radisson.w-node-2bd1d211cd5f-f36efbd3 {
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
    -ms-grid-row: 2;
    grid-row-start: 2;
  }
  #w-node-eb761538520b-f36efbd3 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 3;
    grid-column-start: span 3;
    -ms-grid-column-span: 3;
    grid-column-end: span 3;
  }
  #w-node-eb761538521d-f36efbd3 {
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ec8dd939cff9-f36efbd3 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
  }
  #radisson.w-node-2bd1d211cd5f-f36efbd3 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
  }
  #w-node-eb761538520b-f36efbd3 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 3;
    grid-column-start: span 3;
    -ms-grid-column-span: 3;
    grid-column-end: span 3;
  }
  #w-node-eb761538521d-f36efbd3 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 3;
    grid-column-end: 4;
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
  }
  #w-node-23bc7091705e-f36efbd3 {
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column: span 3;
    grid-column-start: span 3;
    -ms-grid-column-span: 3;
    grid-column-end: span 3;
  }
}

.hero-video,
.feature-video {
  width: 100%;
}

.rewards{
  text-align: center;
}

@media(max-width : 460px){
  .rewards p> span{
          display: block;
      }
  }

@media (max-width: 922px) {

  .rewards {
      margin-bottom: 30px;
  }
      .rewards .stars {
          margin: 0 10px 20px 10px;
          height: 71px;
          width: auto;
      }

      .rewards .high-badge {
          margin: 10px;
          width: 70px;
      }
  
}
@media (min-width: 923px) {

  .rewards {
      margin-bottom: 50px;
  }
  .rewards .stars {
          margin: 0 10px 30px 20px;
          height: 90px;
          width: auto;
      }

      .rewards .high-badge {
          margin: 10px;
          width: 100px;
      }
  }

  .rewards a{
    display: inline-block;
  }


@media (max-width: 991px) {
  .heap-badge {
      margin-top: 0;
  }
}

@media(min-width: 992px) {
  .heap-badge {
      margin-top: 60px;
      padding: 0;
  }
}

#footer {
  padding: 0px;
  color: white;
  background-color: #424242;
}
#footer .footer-desc {
  text-align: left;
  padding-left: 35px;
  padding-top: 50px;
}

#footer .footer-desc h4{
  font-weight: 300;
  line-height: 1.1;
}
#footer .footer-desc .footer-logo {
  width: 180px;
  margin-bottom: 5px;
}
@media (max-width: 390px) {
  #footer .footer-desc .footer-logo {
    width: 130px;
 }
}
#footer .gdpr-icon img{
  width: 130px;
  margin: 10px 0px;
}
#footer .links-container ul{
  display: inline-block;
  vertical-align: top;
  padding-left: 0;
}
#footer .links-container {
  text-align: left;
  padding-top: 50px;
}
#footer .links-container .row:first-child {
  margin-bottom: 14px;
}
#footer .links-container li {
  list-style: none;
}
#footer .links-container li a {
  color: #fff;
  font-size: 14px;
  line-height: 30px;
  min-width: 100px;
  white-space: nowrap;
  text-decoration: none;
  opacity: 0.9;
}
#footer .links-container li a:hover{
  color : #ffd923;
}
li.list-header {
  font-weight: 800;
  padding-bottom: 10px;
  font-size: 20px;
}
#footer .footer-copyright {
  text-align: center;
  opacity: 0.4;
  padding: 0px;
  margin-bottom: 5px;
  margin-top: 20px;
  font-size: 14px;
}
@media (max-width: 992px) {
  .footer-desc h4 {
      line-height: 26px;
    }
  }


/* CONTAINER FLUID*/
.container-fluid {
  margin-left: auto;
  margin-right: auto;
}

/* ROW */
.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.col-xs-12 {
  grid-column: span 12
}

.col-xs-11 {
  grid-column: span 11;
}

.col-xs-10 {
  grid-column: span 10
}

.col-xs-9 {
  grid-column: span 9
}

.col-xs-8 {
  grid-column: span 8
}

.col-xs-7 {
  grid-column: span 7
}

.col-xs-6 {
  grid-column: span 6
}

.col-xs-5 {
  grid-column: span 5
}

.col-xs-4 {
  grid-column: span 4
}

.col-xs-3 {
  grid-column: span 3
}

.col-xs-2 {
  grid-column: span 2
}

.col-xs-1 {
  grid-column: span 1
}

@media (min-width: 768px) {
  .col-sm-12 {
    grid-column: span 12
  }

  .col-sm-11 {
    grid-column: span 11;
  }

  .col-sm-10 {
    grid-column: span 10
  }

  .col-sm-9 {
    grid-column: span 9
  }

  .col-sm-8 {
    grid-column: span 8
  }

  .col-sm-7 {
    grid-column: span 7
  }

  .col-sm-6 {
    grid-column: span 6
  }

  .col-sm-5 {
    grid-column: span 5
  }

  .col-sm-4 {
    grid-column: span 4
  }

  .col-sm-3 {
    grid-column: span 3
  }

  .col-sm-2 {
    grid-column: span 2
  }

  .col-sm-1 {
    grid-column: span 1
  }
}

@media (min-width: 992px) {
  .col-md-12 {
    grid-column: span 12
  }

  .col-md-11 {
    grid-column: span 11;
  }

  .col-md-10 {
    grid-column: span 10
  }

  .col-md-9 {
    grid-column: span 9
  }

  .col-md-8 {
    grid-column: span 8
  }

  .col-md-7 {
    grid-column: span 7
  }

  .col-md-6 {
    grid-column: span 6
  }

  .col-md-5 {
    grid-column: span 5
  }

  .col-md-4 {
    grid-column: span 4
  }

  .col-md-3 {
    grid-column: span 3
  }

  .col-md-2 {
    grid-column: span 2
  }

  .col-md-1 {
    grid-column: span 1
  }
}

@media (min-width: 1200px) {
  .col-lg-12 {
    grid-column: span 12
  }

  .col-lg-11 {
    grid-column: span 11;
  }

  .col-lg-10 {
    grid-column: span 10
  }

  .col-lg-9 {
    grid-column: span 9
  }

  .col-lg-8 {
    grid-column: span 8
  }

  .col-lg-7 {
    grid-column: span 7
  }

  .col-lg-6 {
    grid-column: span 6
  }

  .col-lg-5 {
    grid-column: span 5
  }

  .col-lg-4 {
    grid-column: span 4
  }

  .col-lg-3 {
    grid-column: span 3
  }

  .col-lg-2 {
    grid-column: span 2
  }

  .col-lg-1 {
    grid-column: span 1
  }
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.links-container ul{
  display: contents;
}

.links-container ul>li{
  margin-bottom: 0px;
}

.fa{
  color: white;
  text-decoration: none;
}

a.fa{
  padding: 5px;
  font-size: 26px;
}