:root {
  --text: #57586e;
  --headings: #0a083b;
  --light-background: #f1f1f1;
  --light-text: white;
  --buttons-hover: #0047f0;
  --buttons: #175cff;
}

.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;
}

body {
  color: var(--text);
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

p {
  color: var(--text);
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

a {
  text-decoration: none;
}

ul {
  color: var(--text);
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.7;
}

ol {
  color: var(--text);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 20px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

li {
  margin-bottom: 15px;
}

blockquote {
  border-left: 5px solid var(--text);
  color: var(--text);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

.section {
  color: var(--headings);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.section.footer {
  border: 1px solid var(--headings);
  background-color: #0a083b;
}

.section.homepage-hero {
  min-height: auto;
  background-image: url('../images/decor-dots.svg'), url('../images/decor-rows.svg');
  background-position: 100% 35%, 0 55%;
  background-repeat: no-repeat, no-repeat;
  background-size: 160px, 270px;
  padding-top: 171px;
  padding-bottom: 70px;
}

.section.hide-overflow {
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.section.how-it-works-hero {
  padding-top: 100px;
  padding-bottom: 40px;
}

.section.about-hero {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section.about-hero.demo-booking {
  padding-top: 40px;
}

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

.section.style-guide {
  padding-top: 0;
}

.section.contact {
  padding-top: 70px;
}

.section.team {
  display: none;
}

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

.container {
  width: 100%;
  height: auto;
  max-width: 1100px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 108px;
  display: flex;
}

.container.cta {
  background-color: var(--light-background);
  border-radius: 10px;
  flex-direction: row;
  justify-content: space-between;
  padding: 80px 50px;
}

.container.how-it-works-grid {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.container.about-hero {
  min-height: 560px;
  position: relative;
}

.container.our-story {
  grid-column-gap: 80px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 6.5fr 3fr;
  grid-auto-columns: 1fr;
  align-content: stretch;
  justify-content: center;
  display: grid;
}

.container.contact-page {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.container.terms-and-privacy {
  max-width: 750px;
}

.container.home._1 {
  margin-bottom: 0;
}

.social-media-link {
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  display: flex;
}

.footer-links {
  width: 90%;
  max-width: 1100px;
  grid-column-gap: 22px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-left: 0;
  padding-right: 0;
}

.h2 {
  color: #0a083b;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
}

.h2.white {
  max-width: 700px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.h2.centered {
  text-align: center;
  font-weight: 600;
}

.social-media-icon {
  width: 30px;
  border: 1px solid var(--headings);
  background-color: rgba(0, 0, 0, 0);
}

.social-media-icon.insta {
  display: none;
}

.footer-description-text {
  color: #999;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.grid-container.left-alignment {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.footer-link {
  color: rgba(255, 255, 255, .7);
  flex: 0 auto;
  align-self: stretch;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: color .3s cubic-bezier(.23, 1, .32, 1);
  display: block;
}

.footer-link:hover {
  color: #fff;
  text-decoration: none;
}

.footer-link.w--current {
  color: var(--light-text);
}

.footer-link.h {
  display: none;
}

.footer-email-capture {
  width: 90%;
  height: 100%;
  max-width: 1100px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 0 90px;
  display: flex;
}

.social-media-icons-container {
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.footer-title {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

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

.logo {
  width: 200px;
}

.footer-divider {
  width: 90%;
  height: 2px;
  max-width: 1100px;
  background-color: #1d1b4a;
}

.success-text {
  color: #fff;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.5;
}

.email-capture {
  width: 480px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.success-message {
  background-color: rgba(0, 0, 0, 0);
}

.form {
  width: 480px;
}

.footer-form-block {
  margin-top: 30px;
}

.email-field {
  background-color: rgba(0, 0, 0, 0);
  border: 2px #f3f4f4;
  border-bottom-style: solid;
  margin-bottom: 0;
}

.email-capture-button {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/arrow.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 5px;
  margin-left: -30px;
  transition: transform .3s ease-out;
}

.email-capture-button:hover {
  transform: translate(5px);
}

.error-message {
  background-color: rgba(0, 0, 0, 0);
  padding-left: 0;
}

.input-text {
  color: #f3f4f4;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.error-text {
  color: rgba(255, 0, 0, .85);
  font-size: 16px;
  line-height: 1.5;
}

.footer-text {
  max-width: 300px;
  color: rgba(255, 255, 255, .7);
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
}

.navigation-container {
  width: 100%;
  height: 100%;
  max-width: 1300px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.dropdown-link {
  z-index: 30;
  color: var(--headings);
  background-color: #fff;
  border-radius: 10px;
  align-items: center;
  padding: 20px;
  font-size: 16px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  position: relative;
}

.dropdown-link:hover {
  opacity: .91;
  background-color: #fff;
  transform: scale(1.05);
  box-shadow: 7px 15px 45px 2px rgba(123, 136, 168, .2);
}

.dropdown-link.link-03 {
  z-index: 28;
  display: flex;
}

.dropdown-link.link-04 {
  z-index: 27;
  display: flex;
}

.dropdown-link.link-04.contact, .dropdown-link.link-04.contact.w--current {
  display: none;
}

.dropdown-link.link-02 {
  z-index: 29;
  padding-left: 20px;
}

.nav-blog-item {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 4px;
  padding-bottom: 4px;
  text-decoration: none;
  display: flex;
}

.brand {
  width: 180px;
  max-width: 250px;
}

.nav-menu {
  color: #7b88a8;
  align-items: center;
  margin-left: 42px;
  font-size: 15px;
  display: flex;
  position: static;
}

.dropdown-pointer {
  position: relative;
  right: 2px;
}

.dropdown-pointer.login {
  right: 0;
}

.nav-link-details {
  color: var(--text);
  white-space: normal;
  font-size: 14px;
}

.nav-container-mobile {
  width: 100%;
  height: 100%;
  max-width: 1300px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navigation-mobile {
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  align-items: center;
  display: none;
}

.dropdown-title {
  color: var(--headings);
  margin-bottom: 2px;
  font-size: 15px;
}

.dropdown-title:hover {
  color: #283338;
}

.icon-square {
  width: 52px;
  height: 52px;
  background-color: var(--light-background);
  border-radius: 10px;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  padding: 14px;
  display: flex;
}

.link-block {
  color: var(--text);
  padding: 20px 12px;
  font-size: 15px;
  text-decoration: none;
  transition: color .3s ease-out;
  display: block;
}

.link-block:hover {
  color: var(--buttons-hover);
}

.link-block.blog {
  display: none;
}

.link-block.sn {
  border-top: 1px solid rgba(87, 88, 110, .22);
  border-bottom: 1px solid rgba(87, 88, 110, .22);
}

.link-block.sn.w--current {
  color: var(--buttons);
}

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

.dropdown-wrapper {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 4px -19px 35px rgba(32, 53, 90, .08), 11px 11px 30px -10px rgba(32, 53, 90, .15);
}

.dropdown-wrapper.w--open {
  max-height: 100vh;
  min-width: 300px;
  background-color: #fff;
  border-radius: 15px;
  left: -97px;
  box-shadow: 0 50px 25px -50px rgba(32, 53, 90, .15), 8px 18px 60px 4px rgba(0, 0, 0, .13);
}

.dropdown-block {
  z-index: 25;
  width: 100%;
  color: #283338;
  background-color: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, .08);
  align-items: center;
  padding: 20px;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.navigation-right {
  width: 50%;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.navigation-wrap {
  background-color: var(--headings);
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-content-wrap {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.chevron {
  color: var(--light-text);
  margin-right: 5px;
}

.chevron:hover {
  color: var(--buttons);
}

.pointer {
  z-index: 20;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 2px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -2%;
  bottom: auto;
  left: 0%;
  right: 4%;
  transform: rotate(45deg);
}

.dropdown-link-mob {
  z-index: 30;
  color: #283338;
  background-color: #fff;
  border-radius: 10px;
  align-items: center;
  padding: 20px;
  font-size: 16px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: relative;
}

.dropdown-link-mob:hover {
  opacity: .91;
  color: #7839f3;
  background-color: #fff;
  transform: scale(1.05);
  box-shadow: 7px 15px 45px 2px rgba(123, 136, 168, .2);
}

.navigation {
  width: 90%;
  max-width: 1100px;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: static;
}

.button-menu {
  min-height: 52px;
  background-color: var(--buttons);
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .3s ease-out;
  display: flex;
}

.button-menu:hover {
  background-color: var(--buttons-hover);
}

.icon {
  width: 100%;
}

.login-buttons {
  align-items: center;
  margin-left: 30px;
  display: flex;
}

.nav-link-blog {
  color: var(--headings);
  white-space: normal;
  font-size: 14px;
  transition: color .3s ease-out;
}

.nav-link-blog:hover {
  color: var(--buttons-hover);
}

.dropdown-toggle {
  color: var(--text);
  padding-left: 12px;
  padding-right: 24px;
  transition: all .2s;
}

.dropdown-toggle:hover {
  color: var(--buttons-hover);
}

.dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.navigation-dropdown {
  min-width: 140px;
}

.navigation-dropdown.w--open {
  max-height: 100vh;
  min-width: 370px;
  background-color: rgba(0, 0, 0, 0);
  padding-top: 10px;
  left: -120px;
}

.navigation-dropdown.dropdown-small.w--open {
  min-width: 250px;
  left: -85px;
}

.tabs-menu {
  width: 50%;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.tabs-content {
  width: 50%;
}

.tab-title {
  color: var(--headings);
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.tab-title:hover {
  color: #1d1d1f;
}

.tabs-container {
  position: relative;
}

.h3 {
  margin-top: 0;
  margin-bottom: 5px;
  font-weight: 600;
}

.tab-container {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.tab-text {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.tab-text:hover {
  color: #888;
}

.tabs {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.button {
  height: 60px;
  background-color: var(--buttons);
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding-left: 35px;
  padding-right: 35px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  transition: background-color .3s ease-out;
  display: flex;
}

.button:hover {
  background-color: var(--buttons-hover);
  color: #fff;
}

.button.tab {
  font-weight: 700;
  position: absolute;
  bottom: 110px;
}

.button.secondary {
  border: 3px solid var(--buttons);
  color: var(--buttons);
  background-color: rgba(0, 0, 0, 0);
  transition: color .3s ease-out, background-color .3s ease-out;
}

.button.secondary:hover {
  background-color: var(--buttons);
  color: var(--light-text);
}

.button.right-margin {
  margin-right: 30px;
}

.button.top-bottom-margin {
  margin-top: 10px;
  margin-bottom: 25px;
}

.button.white {
  background-color: var(--light-text);
  color: var(--headings);
}

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

.tab-pane {
  width: 100%;
}

.tab-image {
  max-height: 780px;
  opacity: 1;
  mix-blend-mode: normal;
}

.tab-title-container {
  z-index: 1;
  max-width: 480px;
  margin-bottom: 60px;
  position: absolute;
  top: 25px;
}

.tab-link {
  opacity: .6;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border-left: 5px solid #ddd;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 30px 8px 20px;
  transition: opacity .3s ease-out;
  display: flex;
}

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

.tab-link.w--current {
  border-left-color: var(--buttons-hover);
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
}

.subheading {
  max-width: 580px;
  color: var(--text);
  font-weight: 400;
  line-height: 1.5;
}

.text {
  color: #7b88a8;
  font-size: 18px;
  line-height: 1.8;
}

.text.centered {
  color: var(--text);
  text-align: center;
}

.hero-subheading {
  max-width: 700px;
  text-align: left;
  margin-bottom: 40px;
}

.hero-subheading.centered {
  text-align: center;
}

.hero-subheading.centered._2-0 {
  margin-bottom: 99px;
}

.logo-grid {
  width: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 30px;
  display: grid;
}

.buttons-container {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.buttons-container.centered {
  justify-content: center;
}

.clients-logos-container {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 0;
  display: flex;
}

.clients-logos-container.top-margin {
  margin-top: 100px;
}

.clients-logos-container.small-top-margin {
  margin-top: 80px;
}

.client-logo {
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 0;
  margin-right: 0;
  padding-top: 0;
  padding-right: 0;
}

.client-logo._2 {
  margin-top: 0;
  margin-left: 0;
  margin-right: -17px;
  padding-top: 5px;
  padding-left: 0;
}

.client-logo._2._3 {
  margin-right: -8px;
}

.client-logo._4 {
  margin-right: -22px;
  padding-right: 0;
}

.client-logo._1 {
  margin-top: -4px;
}

.client-logo._5 {
  margin-right: -62px;
}

.client-logo._3 {
  margin-right: -30px;
}

.client-logo._11 {
  margin-right: -15px;
  padding-right: 0;
}

.client-logo._10 {
  margin-right: -59px;
}

.client-logo._12 {
  margin-left: -29px;
}

.h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 52px;
}

.h1.centered {
  text-align: center;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 60px;
}

.h1.centered.demopage {
  font-size: 45px;
}

.h1.centered._2-0 {
  margin-top: 80px;
  margin-bottom: 90px;
}

.h1.tko {
  font-size: 45px;
}

.feature-grid-1 {
  width: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 6fr 4fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.feature-image-3 {
  z-index: 5;
  position: absolute;
  top: -42px;
  right: 160px;
}

.testimonial-logo {
  width: 110px;
  display: inline-block;
}

.checkmark {
  width: 14px;
  margin-top: 7px;
  margin-right: 9px;
}

.checkmark.small {
  width: 15px;
  margin-top: 7px;
  margin-right: 8px;
}

.checkmark.x {
  width: 12px;
}

.list {
  margin-top: 15px;
  padding-left: 0;
  list-style-type: none;
}

.feature-grid-column {
  position: relative;
}

.feature-grid-column.list-container {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.testimonial-quote-small {
  color: var(--text);
  margin-left: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.testimonial-quote-wrap {
  border-top: 1px solid rgba(153, 153, 153, .4);
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.testimonial-name-span {
  color: var(--headings);
  font-weight: 600;
}

.feature-image-2 {
  position: absolute;
  top: -276px;
  left: 40px;
}

.feature-image-1 {
  position: absolute;
  top: -548px;
  right: 60px;
}

.list-item {
  align-items: flex-start;
  display: flex;
}

.feature-text {
  color: var(--text);
  font-size: 16px;
}

.feature-grid-2 {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 4fr 6fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.feature-image-6 {
  position: absolute;
  top: -42px;
  left: 160px;
}

.feature-image-4 {
  position: absolute;
  top: -276px;
  right: -40px;
}

.feature-image-5 {
  position: absolute;
  top: -548px;
  right: 60px;
}

.lightbox {
  z-index: 2;
  width: 95px;
  opacity: .9;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.testimonial-name {
  color: var(--headings);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.testimonial-info {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

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

.testimonial-grid {
  width: 90%;
  max-width: 1100px;
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 5.5fr 4.5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.testimonial-quote {
  color: var(--text);
  margin-bottom: 35px;
  font-size: 21px;
  line-height: 1.7;
}

.play-icon {
  opacity: .9;
}

.testimonial-info-container {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.testimonial-position {
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

.testimonial-pic {
  align-self: auto;
}

.testimonial-pic-container {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 4px 4px 18px rgba(10, 27, 43, .1);
}

.cta-left {
  width: 40%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.cta-image {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10px;
}

.cta-title {
  color: var(--headings);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 600;
}

.cta-right {
  width: 55%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta-text {
  color: var(--text);
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.7;
}

.pricing-card-featured {
  width: 100%;
  background-image: url('../images/Lines.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 32px 34px;
  position: static;
  top: -35px;
}

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

.plan-name {
  color: var(--headings);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.plan-name.white-text {
  color: #fff;
}

.pricing-container {
  width: 100%;
  min-height: 250px;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.price {
  color: var(--headings);
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.05;
}

.price.white {
  color: #fff;
  font-weight: 600;
}

.pricing-card-text {
  color: var(--text);
  font-size: 16px;
}

.pricing-card-text.white {
  color: #fff;
}

.title-wrap {
  width: 100%;
  color: #7b88a8;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
  position: relative;
}

.price-card-base {
  background-color: var(--buttons);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.pricing-features {
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr;
  margin-top: 22px;
  margin-bottom: 32px;
}

.pricing-subheading {
  color: var(--text);
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}

.pricing-grid {
  width: 100%;
  grid-column-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.pricing-h1 {
  z-index: 2;
  color: var(--headings);
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 55px;
  font-weight: 600;
  line-height: 1.1;
  position: relative;
}

.price-card {
  border-radius: 10px;
  padding: 32px 34px;
  box-shadow: 4px 4px 15px rgba(10, 8, 59, .06);
}

.feature-title {
  text-align: center;
  margin-bottom: 80px;
}

.feature-grid {
  width: 100%;
  height: auto;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.featured-card {
  width: 100%;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 30px;
  display: flex;
  box-shadow: 4px 4px 15px rgba(10, 8, 59, .06);
}

.feature-icon {
  width: auto;
  height: 28px;
  margin-bottom: 20px;
}

.feature-name {
  color: var(--headings);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.2;
}

.feature-grid-text {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

.faq-answer {
  color: var(--text);
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
}

.faq-number {
  color: var(--text);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.faq-arrow {
  color: var(--headings);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}

.faq-container {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.faq-answer-container {
  overflow: hidden;
}

.faq-question-container {
  flex: 1;
  margin-right: 50px;
}

.faq-button {
  cursor: pointer;
  align-items: flex-start;
  display: flex;
}

.faq-content {
  padding-top: 30px;
}

.faq-divider {
  height: 1px;
  background-color: rgba(29, 29, 31, .1);
}

.faq-question {
  color: var(--headings);
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 600;
}

.faq-background {
  background-color: var(--light-background);
  border-radius: 10px;
  padding: 4% 8%;
}

.link-span {
  color: var(--buttons);
  font-weight: 600;
  transition: color .3s ease-out;
}

.link-span:hover {
  color: var(--buttons-hover);
}

.cards-section {
  width: 100%;
  max-width: 960px;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.cards-container {
  width: 100%;
  height: auto;
  justify-content: space-between;
  align-self: auto;
  align-items: flex-start;
  margin-top: 10%;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.card-title {
  color: var(--headings);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.cards-sticky {
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  top: 10%;
}

.card-image {
  width: 100%;
}

.card {
  width: 100%;
  max-width: 960px;
  min-height: 500px;
  background-color: #f7f7f7;
  border-radius: 10px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 165px;
  padding: 0;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 10%;
}

.card._3 {
  z-index: 2;
  top: 13%;
}

.card._4 {
  z-index: 3;
  top: 14.5%;
}

.card._5 {
  z-index: 4;
  top: 14.5%;
}

.card._2 {
  z-index: 1;
  top: 11.5%;
}

.card-text-container {
  width: 50%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 50px 50px;
  display: flex;
}

.card-image-container {
  width: 50%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.card-text {
  color: var(--text);
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.7;
}

.how-it-works-hero-image {
  max-width: 100%;
  align-self: auto;
}

.team-member-pic {
  width: 280px;
  margin-right: 0;
  position: absolute;
}

.team-member-pic._3 {
  z-index: -2;
  width: 320px;
  margin-bottom: 0;
  margin-left: auto;
  top: 0;
  right: 0;
}

.team-member-pic._4 {
  width: 180px;
  margin-right: 0;
  padding-right: 0;
  bottom: 40px;
  left: 160px;
}

.team-member-pic._5 {
  z-index: -1;
  width: 280px;
  top: 0;
  left: 0;
}

.team-member-pic._2 {
  z-index: -1;
  width: 220px;
  margin-bottom: 0;
  margin-left: 200px;
  top: 30px;
  right: auto;
}

.about-card {
  width: 350px;
  height: 170px;
  border: 1px solid rgba(29, 29, 31, .1);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.about-card-text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}

.about-title {
  color: var(--headings);
  text-align: left;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 600;
}

.about-card-number {
  color: var(--headings);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
}

.our-story-left-column {
  width: 100%;
}

.our-story-text {
  margin-bottom: 40px;
  font-size: 18px;
}

.our-story-right-column {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-container {
  max-width: 660px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.text-container.centered {
  max-width: 750px;
  align-items: center;
}

.social-link {
  margin-left: 12px;
  margin-right: 12px;
}

.team-member-card {
  width: 100%;
  height: 440px;
  text-align: center;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 30px;
  display: flex;
  box-shadow: 4px 4px 15px rgba(10, 8, 59, .06);
}

.team-member-small-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.team-member-name {
  color: var(--headings);
  margin-top: 25px;
  margin-bottom: 5px;
  font-size: 24px;
  line-height: 1.2;
}

.team-member-position {
  opacity: 1;
  color: var(--text);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 12px;
}

.team-member-bio {
  color: var(--text);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
}

.team-member-info-container {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.social-icon {
  width: 35px;
}

.team-grid {
  width: 100%;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  display: grid;
}

.social-icons-container {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header {
  min-height: 490px;
  background-color: var(--buttons);
  background-image: url('../images/blog-left-shape.svg'), url('../images/blog-right-shape.svg');
  background-position: 0 0, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.title-centre {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.blog-heading {
  max-width: 650px;
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.1;
}

.blog-heading.author {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 36px;
}

.big-bar {
  width: 220px;
  height: 5px;
  border-radius: 100px;
  margin-top: 32px;
}

.small-bar {
  width: 180px;
  height: 5px;
  background-image: linear-gradient(to right, rgba(251, 154, 193, 0), var(--headings));
  border-radius: 100px;
}

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

.content-section {
  padding: 132px 0;
}

.empty-text {
  color: var(--text);
  font-size: 18px;
  line-height: 1.5;
}

.text-field {
  height: 60px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  font-size: 15px;
}

.blog-form {
  background-color: #f2f5f8;
  border-radius: 15px;
  display: flex;
}

.submit-button-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.submit-button-icon {
  position: absolute;
}

.categories-block {
  margin-top: 40px;
}

.content-left {
  grid-column-gap: 16px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.email-subscription {
  background-color: #fff;
  background-image: url('../images/plane-icon.svg');
  background-position: 20px 10px;
  background-repeat: no-repeat;
  background-size: 65px;
  border-radius: 15px;
  margin-bottom: 40px;
  padding: 100px 20px 20px;
  box-shadow: 0 12px 14px rgba(0, 0, 0, .06);
}

.stick-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
}

.small-title {
  color: var(--headings);
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 600;
}

.small-title.white {
  color: #fff;
}

.blog-grid {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .4fr;
}

.large-title {
  color: var(--headings);
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.content-right {
  position: -webkit-sticky;
  position: sticky;
}

.submit-button {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0);
}

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

.post-description {
  color: var(--text);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
}

.blog-item {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  background-color: #fff;
  border-radius: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .8fr;
  grid-auto-columns: 1fr;
  margin-bottom: 30px;
  padding: 20px;
  text-decoration: none;
  display: grid;
  box-shadow: 0 22px 34px rgba(0, 0, 0, .06);
}

.blog-content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.post-author-picture {
  border-radius: 100px;
  margin-right: 10px;
}

.blog-thumbnail {
  width: 100%;
  border-radius: 10px;
}

.paragraph-details-small {
  color: #9899ad;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.2;
}

.paragraph-details-small.white {
  color: rgba(255, 255, 255, .8);
  line-height: 1.2;
}

.post-title {
  color: var(--headings);
  margin-top: 0;
  font-size: 24px;
}

.profile-block-header {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.blog-post-header {
  min-height: 745px;
  background-color: var(--buttons);
  background-image: url('../images/blog-right-shape.svg'), url('../images/blog-left-shape.svg');
  background-position: 100% 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 162px 3% 220px;
  display: flex;
}

.heading-h1 {
  max-width: 650px;
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.1;
}

.blog-hero-image {
  border-radius: 15px;
  margin-top: -220px;
  margin-bottom: 80px;
  box-shadow: 0 22px 34px rgba(0, 0, 0, .06);
}

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

.blog-post-text {
  color: #0a011f;
  font-size: 16px;
  line-height: 1.6;
}

.featured-post-image {
  max-width: 90px;
  border-radius: 10px;
  margin-right: 20px;
  box-shadow: 0 22px 34px rgba(0, 0, 0, .16);
}

.featured-block {
  margin-top: 10px;
}

.featured-item {
  align-items: flex-start;
  margin-bottom: 20px;
  text-decoration: none;
  display: flex;
}

.post-content-left {
  grid-column-gap: 16px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: block;
}

.blog-section {
  background-color: #f2f5f8;
  padding-bottom: 132px;
  padding-left: 3%;
  padding-right: 3%;
}

.category-link {
  color: var(--text);
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  display: block;
}

.author-info-container {
  max-width: 500px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.author-short-bio {
  color: var(--light-text);
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
}

.author-pic {
  width: 100px;
  border-radius: 100px;
}

._404-lottie {
  width: 60vh;
}

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

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

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

.protect-page-title {
  margin-bottom: 30px;
  font-size: 48px;
  line-height: 1;
}

.password-input {
  height: 60px;
  border-radius: 50px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.form-field-container {
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  position: relative;
}

.contact-column {
  width: 45%;
}

.contact-column.left {
  padding-top: 45px;
}

.contact-column.right {
  z-index: 50;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  display: flex;
  position: relative;
  box-shadow: 6px 6px 27px rgba(10, 8, 59, .06);
}

.large-paragraph {
  max-width: 700px;
  color: #b5bbbf;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
}

.large-paragraph.top-margin {
  color: var(--text);
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.form-heading-small {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.form-field-label {
  z-index: 10;
  background-color: var(--light-text);
  color: var(--headings);
  margin-top: -9px;
  margin-left: 10px;
  padding: 1px 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 14px;
  display: inline-block;
  position: absolute;
}

.contact-success-text {
  color: #fff;
}

.form-heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
}

.form-component {
  margin-bottom: 0;
}

.form-field {
  z-index: 1;
  height: 50px;
  min-height: 50px;
  color: var(--text);
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #dcdcdd;
  padding-top: 11px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  position: relative;
}

.form-field:focus {
  border-color: #2daf36;
}

.form-field::-ms-input-placeholder {
  color: #a0a0a0;
}

.form-field::placeholder {
  color: #a0a0a0;
}

.form-field.message {
  height: 200px;
}

.terms-and-privacy-text {
  width: 100%;
  white-space: normal;
}

.terms-and-privacy-text h1 {
  margin-top: 0;
}

.terms-and-privacy-text a {
  color: var(--buttons);
  font-weight: 600;
  transition: color .3s ease-out;
}

.terms-and-privacy-text a:hover {
  color: var(--buttons-hover);
}

.styleguide-text {
  color: var(--text);
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.styleguide-color {
  width: 150px;
  height: 150px;
}

.styleguide-color.titles {
  background-color: var(--headings);
}

.styleguide-color.paragraphs {
  background-color: var(--text);
}

.styleguide-color.button-hover {
  background-color: var(--buttons-hover);
}

.styleguide-color.buttons {
  background-color: var(--buttons);
}

.styleguide-color.light-bkg {
  background-color: var(--light-background);
}

.styleguide-color.dark-bkg {
  background-color: var(--headings);
}

.typography-info-grid {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 120px;
  display: grid;
}

.styleguide-container {
  width: 94%;
  max-width: 1100px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 120px;
  display: flex;
}

.colors-info-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  display: grid;
}

.info-text {
  color: var(--text);
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.styleguide-title-container {
  background-color: var(--light-background);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 20px;
  display: flex;
}

.text-style-guide {
  color: var(--text);
  font-family: Inter, sans-serif;
  font-size: 60px;
  line-height: 1.5;
}

.typography-square {
  width: 250px;
  height: 250px;
  background-color: #f3f3f3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.titles-style-guide {
  font-family: Inter, sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.5;
}

.changelog-number {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.changelog-text-container {
  width: 820px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.changelog-top-line {
  width: 100%;
  border-top: 1px solid rgba(29, 29, 31, .1);
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.changelog-number-wrap {
  width: 50px;
  height: 50px;
  background-color: var(--light-background);
  justify-content: center;
  align-items: center;
  display: flex;
}

.changelog-text {
  margin-top: 25px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.5;
}

.changelog-point {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  line-height: 1.1;
}

.changelog-container {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.changelog-heading {
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 45px;
}

.footer-link-span {
  color: var(--light-text);
  text-decoration: none;
}

.licensing-subheading {
  max-width: 550px;
  color: var(--text);
  text-align: center;
  margin-bottom: 45px;
  font-size: 20px;
  line-height: 1.6;
}

.contact-success-message {
  background-color: rgba(0, 128, 0, .7);
}

.div-block {
  justify-content: center;
  align-items: center;
  display: none;
}

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

.text-block:hover {
  color: var(--buttons);
}

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

.text-block-2:hover {
  color: var(--buttons);
}

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

.text-block-3:hover {
  color: var(--buttons);
}

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

.text-block-4:hover {
  color: var(--buttons);
}

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

.text-block-5:hover {
  color: var(--buttons);
}

.container-16 {
  width: 100%;
  height: auto;
  max-width: 1240px;
  flex-direction: row;
  flex: none;
  justify-content: center;
  align-self: auto;
  align-items: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.container-16.space-below {
  margin-bottom: 120px;
  display: none;
}

.dropdown-mobile, .mobile-button-link {
  display: none;
}

.heading-168 {
  color: #1a3066;
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.25;
}

.hero-image-wrap {
  width: 50%;
  min-height: 350px;
  flex-direction: column;
  justify-content: center;
  align-self: auto;
  align-items: center;
  padding: 30px 0;
  display: flex;
  position: relative;
}

.submit-button-20 {
  background-color: #484dff;
  border-radius: 10px;
  padding: 18px 35px;
  font-size: 16px;
}

.contnavnewhome {
  width: 100%;
  max-width: 1240px;
  flex: 1;
  justify-content: space-between;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.heroheadernh {
  width: 100%;
  min-height: 350px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navigation-block-right {
  width: 50%;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.pre-title {
  color: #29a2fe;
  margin-bottom: 0;
  font-weight: 600;
}

.navigation-link-wrap {
  flex-flow: row;
  flex: 0 auto;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.button-wrap-hero {
  justify-content: flex-start;
  align-self: auto;
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 0;
  display: flex;
}

.paragraph-hero {
  color: #546681;
  font-size: 22px;
  font-style: normal;
  line-height: 2;
  position: static;
}

.navigation-block-left {
  width: 25%;
  align-items: center;
  margin-right: 0;
  padding-right: 40px;
  display: flex;
}

.navigation-2 {
  z-index: 9;
  min-height: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  order: -1;
  align-self: stretch;
  margin-top: 0;
  padding: 25px 5%;
  position: absolute;
  top: -5%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.hero-content {
  width: 100%;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.header-2 {
  height: 80vh;
  min-height: auto;
  background-image: url('../images/bg_shade.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 10% 60px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
}

.vsl-2021-reg {
  width: 100%;
}

.content-block-hero {
  width: 100%;
  max-width: none;
  position: relative;
}

.logo-image {
  width: 200px;
}

.bold-text-9 {
  text-decoration: underline;
}

.heading-primary {
  max-width: 600px;
  color: #1a3066;
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.heading-primary.h3-centre {
  max-width: 100%;
  color: #393555;
  text-align: left;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 28px;
}

.heading-primary.h3-centre-white {
  max-width: 800px;
  color: #fff;
  text-align: left;
  flex: 0 auto;
  margin-bottom: 0;
  font-weight: 600;
}

.heading-primary.h3-centre-white._10x {
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 45px;
}

.heading-primary.h3-centre {
  max-width: 700px;
  color: #393555;
  text-align: center;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 28px;
}

.heading-primary.h3-centre.hc1 {
  color: #393555;
  font-family: Montserrat, sans-serif;
  font-size: 28px;
}

.light-logo {
  width: 130px;
  opacity: 1;
}

.light-logo._2 {
  width: 150px;
  opacity: .77;
}

.light-logo._1 {
  width: 80px;
  opacity: .62;
}

.light-logo._1._2 {
  width: 100px;
}

.light-logo._6 {
  width: 110px;
}

.light-logo._4 {
  width: 150px;
}

.light-logo._5 {
  width: 100px;
}

.light-logo._3 {
  width: 150px;
}

.logo-section {
  background-image: url('../images/bg_shade.svg');
  background-position: 50%;
  background-size: cover;
  padding: 67px 5% 0;
  display: block;
}

.section-logo {
  background-color: rgba(255, 255, 255, 0);
  padding: 15px 0%;
}

.full-logo-wrap {
  height: 100%;
  max-width: 1160px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.title-wrap-2 {
  text-align: center;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 10px;
  display: flex;
}

.title-wrap-2._1 {
  flex-direction: column;
  margin-bottom: 40px;
  padding-bottom: 20px;
  padding-left: 0;
}

.title-wrap-2.hc1 {
  align-items: center;
}

.logo-wrap {
  width: 20%;
  justify-content: center;
  align-items: center;
  padding: 36px;
  display: flex;
}

.logo-wrap.bd {
  width: 16.6%;
}

.section-statistics {
  background-color: #f0f7ff;
  flex-direction: column;
  align-items: center;
  padding: 67px 5% 80px;
  display: block;
}

.section-statistics.bd {
  padding-top: 0;
  padding-bottom: 0;
}

.statistic-circle-wrap {
  width: auto;
  justify-content: center;
  align-items: center;
  padding: 10px;
  display: flex;
  position: relative;
}

.title-capped {
  color: #546681;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.title-capped.hc1 {
  font-family: Montserrat, sans-serif;
}

.feature-number-wrap {
  align-content: stretch;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 32px;
  display: flex;
}

.arrow-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.title {
  max-width: 500px;
  color: #484dff;
  text-align: left;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 700;
}

.heading-6 {
  color: #484dff;
  font-size: 52px;
  line-height: 52px;
}

.heading-6.hc1 {
  font-family: Montserrat, sans-serif;
}

.arrow-image-mobile-02 {
  display: none;
}

.circle-div {
  width: 100%;
  height: 100%;
  max-height: 250px;
  max-width: 250px;
  min-height: 250px;
  min-width: 250px;
  background-color: #fff;
  border-radius: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: 7px 7px 150px rgba(84, 102, 129, .08);
}

.circle-div._10x {
  box-shadow: 7px 7px 17px 7px rgba(84, 102, 129, .08);
}

.arrow-image-mobile {
  display: none;
}

.callcta {
  background-image: url('../images/bg_shade.svg');
  background-position: 50%;
  background-repeat: repeat-y;
  background-size: cover;
  padding: 80px 5% 60px;
}

.calendlyembed {
  justify-content: space-around;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 10px;
  display: block;
}

.html-embed-19 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.div-block-129 {
  max-width: 300px;
  min-height: 450px;
  background-color: #2d5391;
  border-radius: 10px;
  margin-bottom: 0;
  margin-right: 10px;
  padding: 10px 20px;
}

.div-block-129.c {
  background-color: #2d5391;
  margin-right: 0;
}

.div-block-129.b {
  background-color: #5e7080;
}

.div-block-149 {
  flex-direction: row;
  justify-content: center;
  display: flex;
}

.text-block-168 {
  color: #fff;
  letter-spacing: 1px;
  font-family: Inter, sans-serif;
}

.headingwrapper-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 50px;
  display: flex;
}

.headingwrapper-2.fiopage {
  align-items: flex-start;
}

.button-25 {
  background-color: #5e7080;
  border-radius: 4px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Inter, sans-serif;
  font-weight: 500;
}

.button-25._2 {
  background-color: #484dff;
}

.heading-170 {
  color: #fff;
  letter-spacing: 1px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 29px;
}

.div-block-128 {
  align-items: flex-end;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.image-126 {
  padding-top: 10px;
  padding-bottom: 4px;
  padding-left: 0;
}

.image-126.b {
  padding-bottom: 0;
}

.image-126.c {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.image-125 {
  border-radius: 90px;
}

.testimonials-2 {
  background-image: url('../images/bg_shade.svg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 5%;
  display: block;
}

.text-block-167 {
  color: #fff;
}

.paragraph-15 {
  max-width: 490px;
  color: #546681;
  font-size: 15px;
  font-style: normal;
  line-height: 1.3;
}

.image-145 {
  align-self: flex-end;
}

.image-block {
  width: 50%;
  min-height: 350px;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
  position: relative;
}

.column-wrap {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: auto;
  margin-bottom: 80px;
  display: flex;
}

.content-wrap {
  max-width: 590px;
  position: relative;
}

.content-block-left {
  width: 50%;
  min-height: 350px;
  align-items: center;
  padding: 25px 55px 25px 10px;
  display: flex;
}

.service-icon-2 {
  width: 70px;
  margin-bottom: 25px;
}

.column-wrap-reversed {
  flex-direction: row-reverse;
  margin-bottom: 80px;
  display: flex;
}

.card-content-wrap {
  color: #6b539a;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 25px;
}

.service-card-wrap {
  object-fit: fill;
  flex-flow: column wrap;
  flex: 0 auto;
  order: 0;
  align-content: stretch;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 32px;
  padding-left: 102px;
  display: flex;
  position: static;
}

.heading-169 {
  color: #2e3642;
  text-align: left;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 38px;
}

.paragraph-14 {
  max-width: 320px;
  color: #546681;
  text-align: left;
  font-size: 17px;
  line-height: 1.4;
}

.content-block-right {
  width: 50%;
  min-height: 350px;
  justify-content: center;
  align-items: center;
  padding: 25px 25px 25px 55px;
  display: flex;
}

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

.column {
  width: 33%;
  padding: 10px;
}

.service-card {
  height: 100%;
  background-color: #fff;
  border-radius: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 25px;
  display: flex;
  box-shadow: 14px 14px 200px rgba(0, 22, 50, .06);
}

.section-content {
  background-color: #fff;
  background-image: url('../images/bg_shade.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 5% 60px;
  display: block;
}

.button-32 {
  background-color: #484dff;
  border-radius: 45px;
  margin-right: 15px;
  padding: 18px 35px;
  font-size: 16px;
}

.button-32.process {
  background-color: #484dff;
  border-radius: 10px;
  margin-right: 0;
}

.button-32.process.features {
  border-radius: 4px;
  margin-right: 0;
}

.text-span {
  color: #484dff;
}

.section-cta {
  background-color: var(--headings);
  justify-content: center;
  align-items: center;
  padding: 100px 5%;
  display: block;
}

.div-block-142 {
  max-width: 920px;
  min-width: auto;
  background-color: #fff;
  border-radius: 2px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  display: flex;
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
}

.div-block-166 {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.text-block-129 {
  padding-left: 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
}

.div-block-144 {
  align-items: center;
  display: flex;
}

.image-130 {
  padding-right: 10px;
}

.tjon {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, .7);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.tjon.mike {
  z-index: 1;
  white-space: normal;
  object-fit: cover;
  font-family: Inter, sans-serif;
  display: none;
  position: fixed;
  overflow: hidden;
}

.tjon.jon, .tjon.jake {
  z-index: 1;
  display: none;
}

.text-block-130 {
  color: #1279fd;
  text-align: center;
  cursor: pointer;
  align-self: center;
  text-decoration: underline;
}

.paragraph-8 {
  text-align: justify;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 22px;
}

.paragraph-8._2 {
  text-align: left;
  font-family: Inter, sans-serif;
}

.div-block-145 {
  padding-bottom: 20px;
}

.div-block-204 {
  justify-content: space-around;
  align-self: stretch;
  padding: 20px;
  font-family: Inter, sans-serif;
  display: flex;
}

.div-block-143 {
  flex-direction: row;
  justify-content: flex-end;
  padding: 0 20px;
  display: flex;
}

.heading-154 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Inter, sans-serif;
  font-weight: 600;
}

.text-field-30 {
  height: 100%;
  min-width: 400px;
  border-radius: 4px;
  margin-bottom: 0;
  margin-right: 20px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.demobookingnl.agpli {
  object-fit: scale-down;
  flex-direction: row;
  display: block;
  position: static;
}

.section-43 {
  padding: 100px 5%;
}

.submit-button-21 {
  background-color: rgba(255, 0, 0, .78);
  border-radius: 4px;
  margin-top: 0;
  padding: 9px 20px;
}

.demobookingformnl {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: .25fr .25fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 20px;
  display: grid;
}

.html-embed-20 {
  border: 3px solid #33acff;
  box-shadow: 4px 4px 14px -2px #33acff;
}

.section-cta-2 {
  background-color: var(--headings);
  justify-content: center;
  align-items: center;
  padding: 100px 5%;
  display: block;
}

.html-embed-21 {
  width: 100%;
}

.navigation-block-right-2 {
  width: 20%;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.navigation-3 {
  z-index: 9;
  min-height: 100px;
  background-color: var(--headings);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 25px 5%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.logo-image-2 {
  width: 200px;
}

.paragraph-hero-2 {
  max-width: 490px;
  color: #546681;
  font-size: 17px;
  font-style: normal;
  line-height: 1.4;
}

.dropdown-column {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.content-block-hero-2 {
  max-width: 590px;
  position: relative;
}

.hero-block {
  width: 50%;
  min-height: 350px;
  align-items: center;
  display: flex;
}

.navigation-link {
  color: #ffffff;
  flex-direction: row;
  align-items: center;
  padding: 12px 14px;
  font-size: 16px;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.navigation-link:hover {
  color: #484dff;
}

.navigation-link.blog {
  display: flex;
}

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

.navigation-link-wrap-2 {
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-navigation {
  background-color: #484dff;
  border-radius: 10px;
  margin-right: 15px;
  padding: 18px 35px;
  font-size: 16px;
}

.heading {
  color: #1a3066;
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 45px;
  line-height: 1.25;
}

.heading.process {
  text-align: center;
  margin-bottom: 100px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 40px;
}

.heading.process._1 {
  align-self: center;
}

.heading.process.why {
  align-self: stretch;
  margin-bottom: 100px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navigation-block-left-2 {
  width: 20%;
  align-items: center;
  display: flex;
}

.headerebook {
  height: 100vh;
  min-height: 72vh;
  background-image: url('../images/bg_shade.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 3%;
  display: flex;
}

.headerebook.process {
  height: 60vh;
  padding-top: 100px;
  padding-bottom: 20px;
}

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

.dropdown-list-wrap {
  z-index: 9;
  background-color: #fff;
  border-radius: 15px;
  padding: 15px 12px;
  display: flex;
  position: relative;
  overflow: visible;
  box-shadow: 1px 1px 9px rgba(44, 62, 80, .1);
}

.paragraph-small {
  max-width: 450px;
  color: #3b4c5b;
  letter-spacing: -.2px;
  margin-bottom: 0;
  font-size: 14px;
}

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

.content {
  width: 100%;
  max-width: 1240px;
  flex-direction: column;
  justify-content: center;
  align-self: auto;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
  display: flex;
}

.content._1.stats {
  display: none;
}

.content.space-below {
  margin-bottom: 120px;
}

.dropdown-list-2 {
  background-color: rgba(0, 0, 0, 0);
}

.dropdown-list-2.w--open {
  z-index: 7;
  min-width: 210px;
  border-radius: 15px;
  padding-top: 15px;
}

.feature-wrap-2 {
  border-radius: 10px;
  align-items: flex-start;
  padding: 15px 12px 15px 10px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.feature-wrap-2:hover {
  background-color: rgba(72, 77, 255, .03);
}

.hero-image-wrap-2 {
  width: 50%;
  min-height: 350px;
  justify-content: flex-start;
  align-items: center;
  padding: 30px;
  display: flex;
  position: relative;
}

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

.arrow-down {
  margin-left: 8px;
  margin-right: 7px;
}

.navigation-text {
  width: 100%;
  color: var(--light-background);
  text-decoration: none;
}

.mobile-button-link-2 {
  display: none;
}

.short-title {
  color: #2e3642;
  margin-bottom: 2px;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
}

.title-wrap-3 {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.title-wrap-3._1 {
  width: 100%;
  max-width: 1240px;
}

.button-wrap-hero-2 {
  margin-top: 35px;
}

.section-cta-3 {
  background-color: var(--headings);
  justify-content: center;
  align-items: center;
  padding: 145px 5%;
  display: flex;
}

.section-cta-3.process {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.paragraph {
  max-width: 490px;
  color: #546681;
  font-size: 15px;
  font-style: normal;
  line-height: 1.3;
}

.paragraph.paragraph-centre-white {
  max-width: 570px;
  color: #fff;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
}

.paragraph.paragraph-centre-white._1 {
  max-width: none;
  color: #1a3066;
}

.paragraph.how {
  line-height: 1.5;
}

.paragraph.how.why {
  text-align: left;
}

.column-wrap-2 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: auto;
  display: flex;
}

.column-wrap-2.cx {
  padding-top: 10px;
  padding-bottom: 20px;
}

.section-content-plain {
  min-height: 500px;
  background-color: #fff;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 5%;
  display: none;
}

.section-content-plain.process._1 {
  flex-direction: column;
  display: flex;
}

.section-content-plain.process.why {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 100px;
  display: flex;
}

.section-content-plain.explore-the-features {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-content-plain.explore-the-features._1 {
  display: flex;
}

.content-wrap-2 {
  max-width: 590px;
  position: relative;
}

.content-wrap-2.features {
  flex-direction: column;
  align-items: center;
  display: flex;
}

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

.feature._1 {
  justify-content: center;
  padding-right: 0;
}

.heading-primary-2 {
  max-width: 600px;
  color: #1a3066;
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.heading-primary-2.why {
  align-self: auto;
  align-items: flex-start;
  font-size: 30px;
  display: block;
}

.heading-primary-2.h3-centre {
  max-width: 700px;
  text-align: center;
  margin-bottom: 0;
  font-size: 38px;
}

.heading-primary-2.h3-centre-white {
  max-width: 700px;
  color: #fff;
  text-align: center;
}

.picturewrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image {
  border-radius: 20px;
  align-self: auto;
}

.text-block-169 {
  color: #fff;
  padding-top: 20px;
  font-size: 18px;
}

.div-block-2 {
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.div-block-3 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.whycolumn {
  grid-column-gap: 80px;
  grid-row-gap: 25px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: stretch;
  display: grid;
}

.section-statistics-2 {
  background-color: #f0f7ff;
  flex-direction: column;
  align-items: center;
  padding: 60px 5%;
  display: none;
}

.light-logo-2 {
  width: 130px;
}

.light-logo-2._2 {
  width: 110px;
}

.counterup {
  color: #484dff;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 52px;
  line-height: 52px;
}

.section-logo-2 {
  background-color: #fff;
  padding: 15px 5%;
}

.section-logo-2._1 {
  background-color: var(--light-text);
}

.logo-section-2 {
  padding-top: 40px;
}

.logo-section-2._1 {
  width: 100%;
  max-width: none;
}

.section-44 {
  z-index: 999;
  height: 100vh;
  background-color: rgba(46, 54, 66, .7);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.html-embed {
  width: 60%;
  height: auto;
  margin-top: 60px;
  display: block;
}

.button-2 {
  background-color: #ec3838;
  border-radius: 3px;
  margin-top: 60px;
  position: fixed;
}

.link {
  color: #546681;
  padding-left: 40px;
  font-size: 16px;
  text-decoration: none;
}

.link:hover {
  color: #484dff;
}

.column-wrap-reversed-2 {
  flex-direction: row-reverse;
  margin-bottom: 140px;
  display: flex;
}

.section-content-2 {
  background-color: #fff;
  background-image: url('../images/bg_shade.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 5%;
  display: block;
}

.service-card-wrap-2 {
  flex-wrap: wrap;
  align-content: stretch;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 32px;
  display: flex;
}

.content-block-left-2 {
  width: 50%;
  min-height: 350px;
  align-items: center;
  padding: 25px 55px 25px 10px;
  display: flex;
}

.link-02 {
  color: #fff;
  padding-left: 40px;
  font-size: 16px;
  text-decoration: none;
  transition: all .2s;
}

.link-02:hover {
  color: rgba(255, 255, 255, .58);
}

.blog-card {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  margin-right: 0;
  padding: 15px 16px 35px;
  transition: all .3s ease-out;
  overflow: hidden;
  box-shadow: 14px 14px 40px rgba(118, 126, 173, .08);
}

.blog-card:hover {
  transform: translate(0, -4px);
  box-shadow: 14px 14px 40px rgba(118, 126, 173, .12);
}

.blog-placeholder-image-03 {
  width: 100%;
  min-height: 220px;
  background-image: url('../images/unsplash_img_02.jpeg');
  background-position: 50%;
  background-size: cover;
  border-radius: 14px;
}

.blog-placeholder-image-02 {
  width: 100%;
  min-height: 220px;
  background-image: url('../images/unsplash_img.jpeg');
  background-position: 50%;
  background-size: cover;
  border-radius: 14px;
}

.category-title {
  color: #38cb89;
  letter-spacing: 1.5px;
  font-size: 13px;
  font-weight: 500;
}

.blog-article-wrap {
  flex-wrap: wrap;
  align-content: stretch;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 32px;
  display: flex;
}

.blog-content-2 {
  margin-bottom: 25px;
}

.blog-placeholder-image {
  width: 100%;
  min-height: 220px;
  background-image: url('../images/unsplash_img_03.jpeg');
  background-position: 50%;
  background-size: cover;
  border-radius: 14px;
}

.button-default {
  background-color: #484dff;
  border-radius: 50px;
  padding: 18px 35px;
  font-size: 16px;
  transition: all .2s;
}

.button-default:hover {
  background-color: #343af0;
}

.blog-content-wrap {
  min-height: 140px;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 15px;
  padding-left: 4px;
  padding-right: 4px;
  display: flex;
}

.category-tag {
  background-color: #e9f9f0;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  padding: 12px 20px;
  display: flex;
}

.section-blog {
  min-height: 500px;
  background-color: #fff;
  background-image: url('../images/bg_shade.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 5%;
  display: none;
}

.content-icon {
  width: 40px;
  margin-right: 15px;
}

.content-title {
  color: #484dff;
  margin-top: 7px;
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
}

.testimonial-slider {
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}

.testimonial-content-wrap {
  width: 50%;
  min-height: 350px;
  align-items: center;
  padding: 25px 25px 25px 55px;
  display: flex;
}

.section-testimoinals {
  background-color: #f0f7ff;
  align-items: center;
  padding: 60px 5%;
  display: none;
}

.icon-3 {
  color: #4c4172;
}

.arrow-disabled {
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  padding: 20px 36px;
  display: flex;
}

.author-name {
  color: #546681;
  margin-top: 0;
  font-size: 17px;
  font-weight: 400;
}

.slider-left {
  min-height: 45px;
  background-color: #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  padding: 15px 36px;
  display: flex;
  box-shadow: 1px 1px 45px rgba(0, 22, 50, .1);
}

.testimonial-content-block {
  max-width: 590px;
  position: relative;
}

.right-arrow {
  display: none;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 35%;
}

.arrow {
  width: 28px;
}

.testimonial-author-wrap {
  margin-top: 45px;
}

.slide-nav {
  display: none;
}

.logo-2 {
  width: 110px;
  margin-bottom: 6px;
}

.testimonial-columns-2 {
  display: flex;
}

.quote-image {
  min-width: 70px;
  position: absolute;
  top: -25px;
  left: -15px;
}

.left-arrow {
  display: none;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 40%;
}

.testimonial-image-block {
  width: 50%;
  min-height: 350px;
  justify-content: center;
  align-items: center;
  padding: 85px;
  display: flex;
  position: relative;
}

.slider-right {
  background-color: #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  padding: 20px 36px;
  display: flex;
  box-shadow: 1px 1px 55px rgba(0, 22, 50, .08);
}

.slider-arrow-wrap {
  margin-top: 45px;
  display: flex;
}

.testimonial-paragraph {
  color: #546681;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

.success-message-6 {
  background-color: #fff;
}

.text-block-146 {
  max-width: 600px;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  padding-top: 20px;
  font-size: 16px;
}

.div-block-159 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-field-24 {
  border-radius: 50px;
}

.form-block-4 {
  min-width: 300px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.submit-button-14 {
  background-color: var(--buttons);
  border-radius: 50px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-weight: 500;
}

.form-7 {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.heading-149 {
  color: #fff;
  text-align: center;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 30px;
}

.body {
  background-color: var(--headings);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-45 {
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

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

.welcomepage-maindiv {
  display: flex;
}

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

.submit-button-19 {
  background-color: var(--buttons);
  color: #fff;
  letter-spacing: 1px;
  border-radius: 50px;
  align-self: flex-start;
  padding: 15px 40px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-weight: 500;
}

.imagediv-welcome {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.formdivblock {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.text-div {
  padding-top: 0;
  padding-bottom: 0;
}

.heading-163 {
  color: var(--light-text);
  text-align: left;
  font-family: Inter, sans-serif;
  font-weight: 500;
}

.text-block-162 {
  color: var(--light-text);
  text-align: left;
  font-size: 16px;
}

.body-2 {
  background-color: var(--headings);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-205, .div-block-206 {
  width: 50%;
}

.overlaydiv {
  z-index: 9999;
  width: 420px;
  height: 550px;
  background-color: var(--text);
  opacity: 1;
  border-radius: 10px;
  margin-top: 20px;
  margin-right: 20px;
  padding: 20px 30px;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.div-block-238 {
  padding: 10px 10px 10px 0;
}

.textdivhowto {
  padding-top: 10px;
  padding-bottom: 20px;
  font-family: Ubuntu, Helvetica, sans-serif;
}

.text-block-165 {
  color: #fff;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 25px;
}

.text-span-13 {
  color: rgba(255, 255, 255, 0);
  background-image: url('../images/Untitled-1_1Untitled-1.png');
  background-position: 50%;
  background-repeat: repeat-x;
  background-size: contain;
}

.image-150 {
  padding-top: 10px;
  padding-bottom: 20px;
}

.button-31 {
  letter-spacing: 1px;
  background-color: rgba(0, 0, 0, 0);
  padding: 10px 20px 10px 0;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 16px;
}

.howto-page-hero {
  height: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  display: flex;
}

.text-div-2 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.heading-171 {
  color: #5de2b1;
  text-align: center;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-weight: 500;
}

.faqhowto {
  padding-top: 20px;
  padding-bottom: 20px;
}

.answer {
  color: #9096a4;
  padding-left: 64px;
  padding-right: 8px;
  display: block;
  overflow: hidden;
}

.question-arrow-icon {
  margin-top: 26px;
  margin-left: 24px;
  margin-right: 8px;
}

.button-30 {
  letter-spacing: 1px;
  background-color: #5de2b1;
  font-family: Ubuntu, Helvetica, sans-serif;
}

.section-header {
  color: #5de2b1;
  text-align: left;
  justify-content: center;
  margin: 0 auto 40px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 700;
  display: block;
}

.answer-text {
  color: #1a1933;
  margin-top: 8px;
}

.row {
  flex-flow: wrap;
  align-content: stretch;
  justify-content: flex-end;
  align-items: stretch;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.row._2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.div-block-237 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.service-icon {
  width: 40px;
  height: 40px;
  float: left;
  color: #5de2b1;
  text-align: center;
  border: 1px solid #5de2b1;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-top: 11px;
  margin-bottom: 0;
  padding: 0;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  display: flex;
}

.service-icon._2 {
  width: 40px;
  height: 40px;
  color: #5de2b1;
  border-color: #5de2b1;
  margin-top: 11px;
  margin-bottom: 0;
}

.heading-166 {
  margin-bottom: 20px;
  font-family: Ubuntu, Helvetica, sans-serif;
}

.question-text {
  color: #333;
  flex: 1;
  margin-top: 15px;
  margin-left: 24px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 14px;
}

.full-width {
  width: 100%;
}

.question {
  align-items: flex-start;
  display: flex;
}

.col {
  background-color: rgba(0, 0, 0, 0);
  flex-flow: column;
  flex: 0 auto;
  align-items: flex-start;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.col.lg-8 {
  width: 66.66%;
}

.col.lg-8.md-4 {
  width: 100%;
}

.text-block-163 {
  padding-bottom: 10px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 18px;
}

.question-container {
  width: 100%;
  text-align: left;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid rgba(93, 226, 177, .47);
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 20px 32px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.body-3 {
  background-color: var(--headings);
}

.navigation-4 {
  z-index: 9;
  min-height: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  order: -1;
  align-self: stretch;
  margin-top: 25px;
  padding: 25px 5%;
  position: static;
  top: -5%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.contnavnewhome-2 {
  width: 100%;
  max-width: 1240px;
  flex: 1;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.section-46 {
  padding-top: 67px;
}

.section-46.bd {
  height: 100vh;
  padding-top: 100px;
}

.text-field-31 {
  height: 100%;
  min-width: 400px;
  border-radius: 4px;
  margin-bottom: 0;
  margin-right: 20px;
}

.logo-section-3 {
  background-image: url('../images/bg_shade.svg');
  background-position: 50%;
  background-size: cover;
  padding-top: 67px;
  padding-bottom: 0;
  display: block;
}

.section-logo-3 {
  background-color: rgba(255, 255, 255, 0);
  padding: 15px 5%;
}

.callcta-2 {
  background-image: url('../images/bg_shade.svg');
  background-position: 50%;
  background-repeat: repeat-y;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 60px;
}

.callcta-2.demo {
  height: 100vh;
}

.callcta-2.demo.bd {
  height: auto;
  padding-top: 67px;
  padding-bottom: 0;
}

.columns-39 {
  width: 1120px;
  height: auto;
  padding: 40px;
}

.div-block-252 {
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 0;
  display: flex;
}

.div-block-252._2 {
  width: 1120px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
  display: grid;
}

.column-54 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-251 {
  font-size: 24px;
}

.text-block-171 {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 25px;
}

.heading-175 {
  font-family: Montserrat, sans-serif;
  font-size: 23px;
  font-weight: 600;
}

.heading-175.a {
  margin-top: 0;
}

.our-process {
  padding-top: 67px;
}

.heading-174 {
  color: #393555;
  text-align: center;
  margin-top: 0;
  margin-bottom: 12px;
  font-family: Montserrat, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
}

.div-block-254 {
  width: 271px;
  height: 144px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 0;
  display: flex;
}

.text-block-172 {
  width: 271px;
  height: 50px;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 25.28px;
}

.div-block-253 {
  width: 351px;
  height: 383px;
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 -12px 25px rgba(115, 255, 0, 0);
}

.benefits {
  padding-top: 67px;
}

.heading-176 {
  width: 271px;
  height: 27px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  line-height: 27.2px;
}

.featuredinwrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0%;
  display: flex;
}

.featuredinwrapper._10x {
  background-color: rgba(0, 0, 0, 0);
  align-items: stretch;
  padding-top: 67px;
  padding-bottom: 67px;
}

.heading-2 {
  color: #fff;
  margin-top: 0;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 500;
}

.heading-2._3 {
  color: #333;
}

.heading-2._3._10x {
  color: #393555;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.featuredlogo {
  padding: 25px;
}

.asseenin {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 0%;
  padding-right: 0%;
  display: flex;
}

.asseenin._2 {
  background-color: rgba(0, 0, 0, 0);
}

.headingwrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
  display: flex;
}

.headingwrapper._10x {
  align-items: center;
  padding-bottom: 0;
  display: flex;
}

.featuredlogos {
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.section-cta-4 {
  background-color: var(--headings);
  justify-content: center;
  align-items: center;
  padding: 100px 5%;
  display: block;
}

.text-block-173 {
  color: #fff;
  text-align: left;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  line-height: 25px;
}

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

.footer-title-2 {
  color: #0a1f44;
  margin-bottom: 15px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
}

.footer-column {
  width: 17%;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 20px;
  display: none;
}

.footer-text-02 {
  text-align: left;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}

.footer-icon {
  margin-right: 10px;
}

.social-link-2 {
  width: 35px;
  height: 35px;
  background-color: #fbdee3;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  padding: 8px;
  display: flex;
  transform: rotate(0);
}

.social-link-wrap {
  display: none;
}

.footer-column-large {
  width: 50%;
}

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

.footer-3 {
  background-color: #fff;
  padding: 140px 5% 20px;
}

.footer-link-wrap {
  align-items: center;
  margin-bottom: 15px;
  text-decoration: none;
  display: flex;
}

.footer-link-2 {
  color: #4e5d78;
  margin-bottom: 15px;
  margin-left: 1px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all .25s;
}

.footer-link-2:hover {
  color: #484dff;
}

.legal-text {
  color: rgba(107, 111, 154, .61);
  font-size: 16px;
}

.footer-text-3 {
  max-width: 320px;
  color: #546681;
  text-align: left;
  margin-bottom: 25px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

.legal-wrap {
  max-width: 1240px;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
}

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

.heading-167._1 {
  color: var(--headings);
}

.text-16 {
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 26px;
  display: inline-block;
}

.text-16.sop {
  color: #fff;
}

.text-16.text-16-60 {
  width: 800px;
  opacity: .6;
  color: var(--headings);
  font-family: Lato, sans-serif;
  font-size: 20px;
}

.text-16.text-16-60.sop {
  width: auto;
  color: var(--light-text);
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
}

.cta3-icon {
  margin-top: 9px;
  margin-right: 12px;
}

.text-span-14 {
  color: var(--light-text);
  font-size: 35px;
}

.text-20 {
  opacity: .6;
  color: #fff;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.text-20.sop {
  color: #fff;
  text-align: center;
}

.text-20.sop._2 {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.text-20.pricing {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.cta3-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta3-wrapper.sop {
  padding-top: 40px;
  padding-bottom: 60px;
}

.h2-jumbo {
  font-size: 40px;
  font-weight: 300;
  line-height: 56px;
}

.h2-jumbo.sop {
  color: #fff;
  text-align: center;
}

.html-embed-22 {
  padding: 20px 0;
}

.imagecolumn {
  width: 33.3%;
  margin-left: 20px;
  margin-right: 20px;
  display: inline-block;
}

.imagecolumn.specialofferpage {
  width: 70%;
}

.heading-125 {
  text-align: center;
  font-size: 30px;
}

.cta3-options-wrapper {
  width: 95%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta3-wide-button-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.headline-8-col {
  width: 620px;
  margin-bottom: 50px;
}

.headline-8-col.sop {
  width: auto;
  margin-top: 50px;
}

.decoline {
  width: 30px;
  height: 2px;
  background-color: #d2d2d2;
  margin-top: 20px;
  margin-bottom: 20px;
}

.decoline.decoline-dark {
  background-color: rgba(210, 210, 210, .2);
}

.cta3-item-wrap {
  text-align: left;
  border: 1px solid rgba(17, 18, 18, .06);
  border-radius: 8px;
  padding: 20px 30px;
}

.cta3-item-wrap.cta3-item-wrap-dark {
  background-color: #1a1a1a;
  border-color: rgba(255, 255, 255, .06);
}

.cta3-item-wrap.cta3-item-wrap-dark.cta3-recommended-option-dark {
  border-width: 2px;
  border-color: #1991eb;
  padding-top: 30px;
}

.cta3-item-points-wrapper {
  margin-top: 25px;
  margin-bottom: 10px;
}

.cta3-item-point {
  align-items: flex-start;
  display: flex;
}

.cta3-item-point.sop {
  padding-left: 40px;
}

.pricing-v3-row-2 {
  width: 100%;
  color: #111212;
  border-top: 1px solid #e3e3e3;
  font-family: Lato, sans-serif;
  font-size: 15px;
  line-height: 24px;
  display: flex;
}

.pricing-v3-currency {
  color: rgba(17, 18, 18, .57);
  font-size: 32px;
}

.ffbreakdown-v3-2 {
  width: 80%;
  min-height: 400px;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
  display: block;
  overflow: hidden;
}

.pricing-v3-row-header {
  width: 25%;
  min-height: 56px;
  align-items: center;
  padding: 9px 24px 9px 32px;
  display: flex;
}

.div-block-255 {
  width: 24px;
  height: 24px;
  background-image: url('../images/yes2x_1yes@2x.png');
  background-position: 0 0;
  background-size: contain;
}

.div-block-255.empt {
  background-image: none;
}

.pricing-plan-cell-2 {
  width: 33.3%;
  margin-right: 36px;
  padding: 36px 0 36px 24px;
  box-shadow: -1px 0 #e3e3e3;
}

.pricing-plan-cell-2.no-div {
  margin-right: -63px;
  padding-right: 0;
}

.pricing-v3-plan-name {
  text-align: center;
  font-size: 21px;
  font-weight: 500;
}

.pricing-v3-category-header-2 {
  width: 100%;
  color: #111212;
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: #f3f3f7;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: -1px;
  margin-bottom: -1px;
  padding: 8px 32px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.pricing-v3-category-header-2._1 {
  justify-content: center;
}

.pricing-v3-plans {
  width: 100%;
  color: #333;
  background-color: #fff;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  font-family: Lato, sans-serif;
  font-size: 15px;
  display: flex;
}

.pricing-v3-plans.mobile-sticky {
  display: none;
}

.pricing-v3-plans.bottom {
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

.f360-pricing-2 {
  color: #fff;
  background-color: #111212;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.pricing-v3-tag {
  justify-content: center;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
}

.wrap {
  width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.wrap.w80 {
  width: auto;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  padding-bottom: 80px;
  display: flex;
}

.pricing-v3-cell-2 {
  height: 100%;
  min-height: 56px;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  display: flex;
  box-shadow: -1px 0 #e3e3e3;
}

.pricing-v3-cells-2 {
  flex: 1;
}

.pricing-v3-billing {
  text-align: center;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 11px;
  line-height: 16px;
}

.pricing-v3-billing.sop {
  font-size: 18px;
}

.text-block-174 {
  display: block;
}

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

.pricing-v3-dollar {
  font-size: 32px;
}

.pricing-v3-dollar._2 {
  font-size: 25px;
}

.pricing-v3-category {
  width: 100%;
}

.text-block-161 {
  line-height: 24px;
}

.section-3 {
  height: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 40px;
  display: flex;
}

.btn-big-2 {
  float: none;
  color: #fff;
  text-align: center;
  background-color: #5de2b1;
  border-radius: 4px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  transition: color .2s, box-shadow .2s, background-color .2s, transform .4s;
  display: inline-block;
}

.btn-big-2:hover {
  color: #fff;
  background-color: #3eb5ff;
  border: 1px solid #3eb5ff;
  font-size: 16px;
  transform: translate(0, -2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}

.btn-big-2:active {
  transform: translate(0, -1px);
  box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
}

.text-span-15 {
  font-style: italic;
}

.html-embed-23 {
  width: 800px;
  min-height: 800px;
}

.f360-pricing-3 {
  color: #fff;
  background-color: #111212;
}

.text-block-176 {
  font-size: 11px;
}

.bold-text-10 {
  margin-left: 0;
}

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

.text-span-16 {
  opacity: 1;
  color: var(--light-text);
}

.text-span-16:hover {
  color: var(--buttons);
}

@media screen and (min-width: 1280px) {
  .container.how-it-works-grid {
    grid-column-gap: 50px;
  }

  .footer-links, .footer-email-capture {
    padding-left: 0;
    padding-right: 0;
  }

  .tabs-menu {
    width: 44%;
  }

  .tabs-content {
    width: 56%;
  }

  .h3 {
    margin-bottom: 10px;
  }

  .tab-container {
    justify-content: center;
    align-items: center;
  }

  .button {
    font-size: 15px;
  }

  .tab-pane {
    width: 100%;
  }

  .h1.centered {
    font-size: 68px;
  }

  .feature-image-3 {
    top: 0;
  }

  .testimonial-logo {
    margin-top: 5px;
  }

  .list {
    margin-top: 15px;
  }

  .feature-image-6 {
    top: 0;
  }

  .testimonial-name {
    font-size: 18px;
  }

  .testimonial-quote {
    font-size: 24px;
  }

  .testimonial-position {
    font-size: 17px;
  }

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

  .plan-name {
    font-size: 36px;
  }

  .price {
    font-size: 40px;
  }

  .cards-section, .card {
    max-width: 1000px;
  }

  .how-it-works-hero-image {
    max-width: 480px;
  }

  .heroheadernh {
    width: 100%;
  }

  .imagecolumn {
    width: 33.33%;
  }
}

@media screen and (min-width: 1440px) {
  .container, .footer-links, .footer-email-capture, .footer-divider, .navigation {
    max-width: 1200px;
  }

  .button {
    height: 60px;
  }

  .hero-subheading {
    font-size: 20px;
  }

  .client-logo {
    max-width: 100%;
  }

  .h1.centered {
    font-size: 72px;
  }

  .testimonial-quote-wrap {
    margin-bottom: 22px;
  }

  .testimonial-grid {
    max-width: 1200px;
  }

  .testimonial-quote {
    font-size: 26px;
  }

  .faq-number {
    font-size: 16px;
    line-height: 1.5;
  }

  .large-paragraph {
    max-width: 720px;
    font-size: 24px;
  }

  .styleguide-container {
    max-width: 1200px;
  }

  .heroheadernh {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (min-width: 1920px) {
  .feature-name {
    line-height: 1;
  }

  .contnavnewhome {
    max-width: 1800px;
  }

  .navigation-block-left {
    width: 25%;
  }

  .logo-image {
    width: 250px;
  }

  .contnavnewhome-2 {
    max-width: 1800px;
  }

  .asseenin._2 {
    background-color: rgba(0, 0, 0, 0);
  }

  .imagecolumn {
    width: 50%;
    justify-content: flex-end;
    margin-bottom: 86px;
    display: flex;
  }
}

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

  h2 {
    font-size: 46px;
  }

  h3 {
    font-size: 36px;
  }

  p {
    font-size: 18px;
  }

  ul {
    font-size: 16px;
  }

  blockquote {
    font-size: 18px;
  }

  .section {
    padding: 90px 30px;
  }

  .section.footer {
    background-color: var(--headings);
  }

  .section.homepage-hero {
    min-height: 60vh;
    background-position: 100% 25%, 0 53%;
    background-size: 130px, 220px;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section.hide-overflow {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .section.how-it-works-hero, .section.about-hero {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .container {
    width: 100%;
    height: auto;
  }

  .container.cta {
    padding: 90px 0 90px 35px;
  }

  .container.how-it-works-grid {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .container.our-story {
    grid-column-gap: 30px;
    align-items: start;
  }

  .footer-links {
    width: 100%;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .h2 {
    font-size: 46px;
  }

  .h2.white {
    font-size: 36px;
  }

  .footer-description-text {
    text-align: left;
    margin-bottom: 15px;
  }

  .grid-container.left-alignment {
    position: static;
  }

  .footer-email-capture {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 0 0 20px;
  }

  .footer-container {
    padding-right: 0;
  }

  .footer-divider {
    width: 100%;
  }

  .success-text {
    text-align: center;
    font-size: 18px;
  }

  .footer-form-block {
    margin-bottom: 25px;
  }

  .mobile-nav-link {
    width: 100%;
    font-size: 15px;
  }

  .mobile-nav-link.w--current {
    color: var(--buttons-hover);
  }

  .mobile-nav-link._4, .mobile-nav-link._5 {
    display: inline-block;
  }

  .nav-menu {
    display: none;
  }

  .nav-container-mobile {
    justify-content: space-between;
  }

  .navigation-mobile {
    width: 100%;
    height: 85px;
    flex-direction: row;
    justify-content: center;
    display: flex;
  }

  .menu-mobile {
    background-color: var(--light-text);
    color: #000;
    border-radius: 100px;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 18px;
    font-size: 22px;
  }

  .menu-mobile.w--open {
    background-color: var(--light-text);
  }

  .navigation-left {
    display: flex;
  }

  .mobile-dropdown {
    width: 100%;
    display: inline-block;
  }

  .mobile-dropdown._3 {
    display: inline-block;
  }

  .navigation-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }

  .mobile-nav {
    background-color: #fff;
    padding-top: 15px;
    box-shadow: 42px 42px 55px rgba(32, 53, 90, .09);
  }

  .template-logo {
    max-width: 50px;
  }

  .dropdown-list {
    background-color: #fff;
  }

  .dropdown-list.w--open {
    z-index: 1000;
  }

  .dropdown-link-mob {
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .dropdown-link-mob:hover {
    box-shadow: none;
    transform: none;
  }

  .navigation {
    display: none;
  }

  .mobile-toggle {
    width: 100%;
    font-size: 15px;
  }

  .mobile-toggle._2, .mobile-toggle._3 {
    display: inline-block;
  }

  .menu-lottie {
    width: 46px;
    margin-bottom: -10px;
  }

  .tabs-menu {
    width: 80%;
  }

  .tabs-content {
    width: 100%;
    margin-top: 60px;
  }

  .tab-title {
    font-size: 18px;
  }

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

  .tab-container {
    justify-content: center;
  }

  .tabs {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
  }

  .button {
    font-size: 14px;
  }

  .button.tab {
    display: none;
    position: static;
  }

  .tab-title-container {
    margin-bottom: 45px;
    position: static;
  }

  .subheading {
    font-size: 18px;
  }

  .text {
    font-size: 17px;
  }

  .hero-subheading {
    max-width: 650px;
    text-align: center;
    font-size: 20px;
  }

  .hero-subheading.centered {
    font-size: 18px;
  }

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

  .clients-logos-container.top-margin, .clients-logos-container.small-top-margin {
    margin-top: 75px;
  }

  .client-logo._5, .client-logo._3, .client-logo._10 {
    margin-right: 0;
  }

  .client-logo._12 {
    margin-left: 0;
  }

  .h1 {
    text-align: center;
    font-size: 52px;
  }

  .h1.centered {
    font-size: 52px;
  }

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

  .feature-image-3 {
    max-width: 260px;
    top: 27px;
    left: auto;
    right: 50px;
  }

  .testimonial-logo {
    width: 100px;
  }

  .checkmark.small {
    width: 15px;
  }

  .list {
    text-align: left;
  }

  .grid-title {
    font-size: 32px;
  }

  .testimonial-quote-small {
    margin-top: 20px;
    margin-left: 0;
  }

  .testimonial-quote-wrap {
    flex-direction: column;
  }

  .feature-image-2 {
    max-width: 260px;
    top: -90px;
    left: -87px;
  }

  .feature-image-1 {
    max-width: 260px;
    top: -294px;
  }

  .feature-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .feature-image-6 {
    z-index: 1;
    max-width: 260px;
    top: 27px;
    left: 50px;
  }

  .feature-image-4 {
    max-width: 260px;
    top: -90px;
    right: -87px;
  }

  .feature-image-5 {
    max-width: 260px;
    top: -294px;
  }

  .lightbox {
    width: 75px;
  }

  .testimonial-name {
    font-size: 15px;
  }

  .testimonial-column {
    justify-content: flex-start;
    position: static;
  }

  .testimonial-grid {
    width: 100%;
    grid-column-gap: 40px;
  }

  .testimonial-quote {
    margin-bottom: 30px;
    font-size: 18px;
  }

  .cta-title {
    font-size: 40px;
  }

  .cta-text {
    font-size: 18px;
  }

  .pricing-card-featured {
    top: 0;
  }

  .plan-name {
    font-size: 36px;
  }

  .price {
    font-size: 40px;
  }

  .price-card-base {
    width: 100%;
    max-width: 375px;
  }

  .pricing-subheading {
    font-size: 20px;
  }

  .pricing-grid {
    width: 100%;
    grid-row-gap: 40px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .pricing-h1 {
    font-size: 52px;
  }

  .price-card {
    width: 100%;
    max-width: 375px;
    position: relative;
  }

  .feature-title {
    margin-bottom: 60px;
    font-size: 42px;
  }

  .feature-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

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

  .faq-number {
    font-size: 14px;
  }

  .faq-question {
    font-size: 24px;
  }

  .card-title {
    font-size: 28px;
  }

  .card {
    min-height: 420px;
  }

  .card-text-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .card-text {
    font-size: 18px;
  }

  .how-it-works-grid-column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .about-card {
    width: 250px;
    height: 180px;
    padding: 10px;
  }

  .about-card-text {
    text-align: center;
    font-size: 14px;
  }

  .about-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 36px;
  }

  .about-card-number {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 42px;
  }

  .our-story-text {
    margin-bottom: 30px;
    font-size: 16px;
  }

  .text-container {
    max-width: 550px;
  }

  .team-member-card {
    height: 460px;
    padding: 40px 40px 30px;
  }

  .team-member-name {
    font-size: 24px;
  }

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

  .blog-heading {
    font-size: 52px;
  }

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

  .stick-wrapper {
    top: 30px;
  }

  .blog-grid {
    grid-column-gap: 22px;
    grid-template-columns: 1fr .6fr;
  }

  .blog-item {
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .blog-content {
    padding: 10px;
  }

  .blog-thumbnail {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .blog-post-header {
    padding-left: 35px;
    padding-right: 35px;
  }

  .heading-h1 {
    font-size: 52px;
  }

  .featured-post-image {
    margin-bottom: 10px;
  }

  .featured-item {
    flex-wrap: wrap;
  }

  .blog-section {
    padding-left: 35px;
    padding-right: 35px;
  }

  .contact-column.left {
    width: 100%;
    background-image: none;
    padding-top: 35px;
  }

  .contact-column.right {
    width: 100%;
    justify-content: flex-start;
    padding: 40px;
  }

  .large-paragraph {
    max-width: none;
    font-size: 21px;
  }

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

  .form-heading-small {
    margin-top: 0;
    font-size: 24px;
  }

  .form-heading {
    font-size: 36px;
  }

  .colors-info-container {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .changelog-text-container {
    width: 635px;
  }

  .changelog-number-wrap {
    align-self: flex-start;
  }

  .changelog-text {
    margin-top: 15px;
    font-size: 18px;
  }

  .changelog-point {
    font-size: 27px;
  }

  .licensing-subheading {
    font-size: 18px;
  }

  .container-16 {
    flex-direction: column;
    padding-top: 0;
    display: flex;
  }

  .container-16._1 {
    flex-direction: column;
  }

  .container-16.space-below {
    margin-bottom: 80px;
  }

  .dropdown-mobile {
    margin-left: 15px;
    margin-right: 0;
    display: flex;
  }

  .mobile-button-link {
    width: 55px;
    height: 55px;
    background-color: rgba(84, 102, 129, .08);
    border-radius: 50px;
    padding: 17px;
    display: flex;
  }

  .heading-168 {
    text-align: left;
  }

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

  .contnavnewhome {
    z-index: 99;
    position: relative;
  }

  .heroheadernh {
    width: 100%;
    justify-content: center;
  }

  .navigation-block-right {
    width: 100%;
    display: none;
  }

  .mobiel-dropdown {
    right: 10%;
  }

  .mobiel-dropdown.w--open {
    min-width: 270px;
    background-color: #fff;
    border-radius: 15px;
    margin-top: 74px;
    padding: 20px;
    box-shadow: 1px 1px 3px rgba(84, 102, 129, .13);
  }

  .navigation-link-wrap {
    display: none;
  }

  .paragraph-hero {
    text-align: left;
  }

  .hero-content {
    flex-wrap: wrap;
  }

  .header-2 {
    height: auto;
    padding-top: 160px;
  }

  .dropdown-toggle-3 {
    padding: 0;
  }

  .content-block-hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    display: flex;
  }

  .dropdown-link-2 {
    width: 100%;
    min-width: 170px;
    color: #3b4c5b;
    border-radius: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
  }

  .dropdown-link-2:hover {
    background-color: rgba(115, 167, 212, .09);
  }

  .dropdown-link-2.w--current {
    color: #ff6f20;
  }

  .heading-primary {
    width: auto;
    height: auto;
    max-width: none;
    text-align: center;
  }

  .heading-primary.h3-centre-white {
    text-align: center;
    margin-bottom: 20px;
  }

  .section-logo {
    flex-direction: row;
    display: block;
  }

  .full-logo-wrap.bd {
    height: auto;
    max-width: none;
    flex-direction: column;
  }

  .title-wrap-2 {
    flex-direction: column;
  }

  .logo-wrap.bd {
    width: 100%;
    padding: 20px 0;
  }

  .statistic-circle-wrap {
    width: 100%;
  }

  .feature-number-wrap {
    flex-direction: column;
  }

  .arrow-wrap {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .arrow-image {
    display: none;
  }

  .arrow-image-mobile-02 {
    display: block;
    position: relative;
    left: -55px;
  }

  .arrow-image-mobile {
    display: block;
    position: relative;
    left: 55px;
  }

  .callcta {
    padding-bottom: 80px;
  }

  .html-embed-19 {
    max-width: none;
  }

  .testimonials-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .paragraph-15 {
    max-width: 500px;
    text-align: left;
  }

  .image-block {
    width: 100%;
    min-height: auto;
    margin-bottom: 35px;
  }

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

  .content-wrap {
    max-width: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    display: flex;
  }

  .content-block-left {
    width: 100%;
    text-align: left;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .column-wrap-reversed {
    flex-wrap: wrap;
    margin-bottom: 80px;
  }

  .content-block-right {
    width: 100%;
    padding-left: 25px;
  }

  .column {
    width: 100%;
  }

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

  .section-cta {
    flex-direction: row;
  }

  .html-embed-20 {
    width: 100%;
  }

  .section-cta-2 {
    flex-direction: row;
  }

  .navigation-block-right-2 {
    width: 100%;
  }

  .paragraph-hero-2 {
    text-align: center;
  }

  .content-block-hero-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    display: flex;
  }

  .hero-block {
    width: 100%;
    justify-content: center;
  }

  .navigation-link-wrap-2 {
    display: none;
  }

  .heading {
    text-align: center;
  }

  .headerebook {
    padding-top: 160px;
  }

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

  .container-navigation {
    z-index: 99;
    position: relative;
  }

  .content.space-below {
    margin-bottom: 80px;
  }

  .feature-wrap-2 {
    flex-direction: column;
  }

  .hero-image-wrap-2 {
    width: 100%;
    min-height: auto;
  }

  .calcpagehero {
    flex-wrap: wrap;
  }

  .mobile-button-link-2 {
    width: 55px;
    height: 55px;
    background-color: rgba(84, 102, 129, .08);
    border-radius: 50px;
    padding: 17px;
    display: flex;
  }

  .column-wrap-2 {
    flex-wrap: wrap;
  }

  .content-wrap-2 {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 35px;
    display: flex;
  }

  .feature {
    flex-direction: column;
  }

  .column-wrap-reversed-2 {
    flex-wrap: wrap;
    margin-bottom: 80px;
  }

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

  .content-block-left-2 {
    width: 100%;
    padding-right: 25px;
  }

  .blog-card {
    padding: 20px 20px 35px;
  }

  .section-blog {
    padding-top: 100px;
    padding-bottom: 100px;
  }

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

  .testimonial-image-block {
    padding: 30px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .row {
    flex-flow: wrap;
    justify-content: flex-start;
  }

  .service-icon {
    margin-right: 0;
    display: flex;
  }

  .service-icon._2 {
    display: flex;
  }

  .col {
    width: 50%;
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .col.lg-8.md-4 {
    width: 100%;
  }

  .contnavnewhome-2 {
    z-index: 99;
    position: relative;
  }

  .section-logo-3 {
    flex-direction: row;
    display: block;
  }

  .callcta-2 {
    padding-bottom: 80px;
  }

  .columns-39 {
    width: auto;
  }

  .div-block-252._2 {
    width: auto;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    display: grid;
  }

  .column-54 {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
    display: flex;
  }

  .image-153 {
    max-width: none;
    flex: 0 auto;
    align-self: center;
    margin-top: 0;
  }

  .featuredinwrapper._10x {
    background-color: rgba(245, 248, 251, 0);
  }

  .featuredlogos {
    flex-direction: column;
  }

  .section-cta-4 {
    flex-direction: row;
  }

  .footer-column {
    width: 20%;
  }

  .footer-column-large {
    width: 40%;
  }

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

  .text-16.text-16-60 {
    width: 645px;
    text-align: center;
  }

  .text-20, .h2-jumbo {
    text-align: center;
  }

  .imagecolumn {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .cta3-options-wrapper {
    width: 100%;
    flex-direction: column;
  }

  .headline-8-col {
    width: auto;
    text-align: center;
  }

  .decoline {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .decoline.decoline-dark.left-align-decoline-dark {
    margin-left: 0;
    margin-right: 0;
  }

  .pricing-v3-currency {
    font-size: 25px;
  }

  .f360-pricing-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .pricing-v3-tag {
    text-align: left;
  }

  .wrap {
    width: 645px;
  }

  .pricing-v3-dollar._2 {
    text-align: center;
    font-size: 22px;
  }

  .f360-pricing-3 {
    padding-left: 0;
    padding-right: 0;
  }
}

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

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 30px;
  }

  p {
    font-size: 16px;
  }

  ul {
    font-size: 15px;
  }

  li {
    margin-bottom: 12px;
    font-size: 16px;
  }

  blockquote {
    padding-left: 15px;
    font-size: 16px;
  }

  .section {
    padding: 60px 25px;
  }

  .section.homepage-hero {
    background-image: none;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.hide-overflow, .section.how-it-works-hero, .section.about-hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container.cta {
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 35px;
  }

  .container.our-story {
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .container.contact-page {
    flex-direction: column;
  }

  .footer-links {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    padding-top: 0;
  }

  .h2 {
    font-size: 38px;
  }

  .h2.white {
    margin-bottom: 35px;
  }

  .h2.centered {
    font-size: 36px;
  }

  .footer-email-capture {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    justify-content: space-around;
    margin-bottom: 50px;
    padding-bottom: 0;
  }

  .footer-container {
    margin-bottom: 24px;
  }

  .footer-divider {
    display: none;
  }

  .success-text {
    align-self: flex-start;
    margin-bottom: 5px;
    font-size: 16px;
  }

  .form {
    width: 450px;
  }

  .footer-text {
    max-width: 280px;
  }

  .menu-mobile {
    background-color: var(--light-text);
    padding: 0 20px;
  }

  .navigation-wrap {
    padding-left: 25px;
    padding-right: 25px;
  }

  .menu-lottie {
    width: 42px;
    background-color: rgba(255, 255, 255, 0);
    margin-bottom: -10px;
  }

  .tabs-content {
    margin-top: 50px;
  }

  .h3 {
    font-size: 36px;
  }

  .tab-container {
    justify-content: flex-start;
  }

  .tab-text {
    font-size: 16px;
  }

  .tabs {
    align-items: center;
  }

  .button, .button.top-bottom-margin {
    font-size: 14px;
  }

  .tab-title-container {
    margin-bottom: 40px;
  }

  .subheading {
    font-size: 18px;
  }

  .text {
    font-size: 16px;
  }

  .hero-subheading {
    font-size: 18px;
  }

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

  .clients-logos-container.top-margin, .clients-logos-container.small-top-margin {
    margin-top: 60px;
  }

  .h1, .h1.centered {
    font-size: 48px;
  }

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

  .feature-image-3 {
    width: 100%;
    max-width: 100%;
    position: static;
    top: -41px;
  }

  .checkmark {
    margin-right: 8px;
  }

  .checkmark.small {
    margin-top: 7px;
    margin-right: 8px;
  }

  .grid-title {
    font-size: 36px;
  }

  .feature-image-2 {
    display: none;
    overflow: visible;
  }

  .feature-image-1 {
    display: none;
  }

  .list-item {
    margin-bottom: 12px;
  }

  .feature-text {
    font-size: 16px;
  }

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

  .feature-image-6 {
    width: 100%;
    max-width: 100%;
    position: static;
  }

  .feature-image-4, .feature-image-5 {
    display: none;
  }

  .lightbox {
    width: 80px;
  }

  .testimonial-name {
    font-size: 16px;
  }

  .testimonial-grid {
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .testimonial-quote {
    margin-bottom: 25px;
    font-size: 20px;
  }

  .cta-left {
    width: 100%;
    margin-bottom: 50px;
    padding-left: 0;
  }

  .cta-title {
    margin-bottom: 15px;
    font-size: 36px;
  }

  .cta-right {
    width: 100%;
    padding-right: 0;
  }

  .cta-text {
    font-size: 16px;
  }

  .plan-name {
    font-size: 30px;
  }

  .price {
    font-size: 38px;
  }

  .price-card-base {
    max-width: 360px;
  }

  .pricing-subheading {
    font-size: 18px;
  }

  .pricing-h1 {
    font-size: 42px;
  }

  .price-card {
    max-width: 360px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .feature-title {
    margin-bottom: 40px;
    font-size: 36px;
  }

  .featured-card {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .feature-icon {
    height: 32px;
  }

  .feature-name {
    margin-bottom: 13px;
    font-size: 16px;
  }

  .feature-grid-text, .faq-answer {
    font-size: 16px;
  }

  .faq-number {
    font-size: 13px;
    line-height: 22px;
  }

  .faq-arrow {
    font-size: 18px;
    line-height: 22px;
  }

  .faq-container {
    flex-direction: column-reverse;
    margin-top: 50px;
  }

  .faq-question-container {
    margin-right: 20px;
  }

  .faq-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .faq-question {
    margin-bottom: 20px;
    font-size: 21px;
  }

  .faq-background {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .card-title {
    font-size: 21px;
  }

  .card-text {
    font-size: 16px;
  }

  .team-member-pic._3 {
    width: 240px;
  }

  .team-member-pic._5, .team-member-pic._1 {
    width: 200px;
  }

  .team-member-pic._2 {
    width: 160px;
    margin-left: 125px;
  }

  .about-card {
    width: 100%;
  }

  .about-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 30px;
  }

  .about-card-number {
    font-size: 36px;
  }

  .our-story-text {
    font-size: 16px;
  }

  .our-story-right-column {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .team-member-card {
    padding: 30px;
  }

  .team-member-name {
    font-size: 21px;
  }

  .header {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .blog-heading {
    font-size: 42px;
  }

  .content-section {
    padding: 92px 30px;
  }

  .blog-grid {
    grid-row-gap: 62px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .blog-item {
    padding-right: 0;
  }

  .blog-post-header {
    min-height: 450px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .heading-h1 {
    font-size: 42px;
  }

  .blog-hero-image {
    margin-top: -150px;
  }

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

  ._404-lottie {
    width: 60vh;
  }

  .protect-page-title {
    margin-bottom: 25px;
    font-size: 42px;
  }

  .contact-column.left {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
    padding-left: 50px;
    padding-right: 50px;
    position: static;
  }

  .contact-column.right {
    width: 100%;
    padding: 50px;
  }

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

  .large-paragraph.top-margin {
    font-size: 16px;
  }

  .form-heading-small {
    font-size: 27px;
  }

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

  .styleguide-text, .info-text {
    font-size: 16px;
  }

  .text-style-guide {
    font-size: 50px;
  }

  .typography-square {
    width: 200px;
    height: 200px;
  }

  .titles-style-guide {
    font-size: 50px;
  }

  .changelog-number {
    font-size: 24px;
  }

  .changelog-text-container {
    width: 100%;
  }

  .changelog-top-line {
    flex-direction: column;
  }

  .changelog-number-wrap {
    width: 45px;
    height: 45px;
    order: -1;
    margin-bottom: 30px;
  }

  .changelog-text {
    font-size: 16px;
  }

  .changelog-point {
    font-size: 24px;
  }

  .licensing-subheading {
    font-size: 16px;
  }

  .container-16._1 {
    padding-bottom: 20px;
  }

  .mobile-button-link {
    background-color: #fff;
  }

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

  .mobile-icon-animation {
    color: #fff;
  }

  .navigation-link-wrap {
    display: none;
  }

  .paragraph-hero.padded {
    padding-left: 1em;
    padding-right: 1em;
  }

  .navigation-block-left {
    width: 100%;
  }

  .section-logo {
    padding-top: 20px;
  }

  .full-logo-wrap {
    flex-direction: column;
    justify-content: flex-start;
  }

  .logo-wrap {
    width: 100%;
    margin-bottom: 15px;
  }

  .section-statistics.bd {
    padding-top: 20px;
  }

  .div-block-129 {
    margin-bottom: 10px;
  }

  .div-block-149 {
    flex-direction: column;
    align-items: center;
  }

  .headingwrapper-2 {
    padding-left: 25px;
    padding-right: 25px;
  }

  .headingwrapper-2.fiopage {
    padding-bottom: 0;
  }

  .testimonials-2 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .image-145 {
    align-self: center;
  }

  .content-block-right {
    padding: 10px;
  }

  .section-content {
    padding-left: 3%;
    padding-right: 3%;
  }

  .text-field-30 {
    min-width: 0;
    text-align: center;
    margin-right: 0;
  }

  .demobookingnl.agpli {
    padding-left: 40px;
    padding-right: 40px;
  }

  .demobookingformnl {
    grid-template-rows: auto auto;
    grid-template-columns: .75fr;
    justify-content: center;
    align-items: center;
    justify-items: stretch;
  }

  .navigation-link-wrap-2, .button-navigation {
    display: none;
  }

  .section-logo-2 {
    padding-top: 20px;
  }

  .section-content-2 {
    padding-left: 3%;
    padding-right: 3%;
  }

  .blog-card {
    width: 100%;
    margin-bottom: 35px;
  }

  .section-blog {
    padding-left: 3%;
    padding-right: 3%;
  }

  .testimonial-content-wrap {
    width: 100%;
    padding-left: 25px;
  }

  .logo-2 {
    width: 130px;
  }

  .testimonial-columns-2 {
    flex-direction: column;
  }

  .testimonial-image-block {
    width: 100%;
  }

  .row {
    flex-wrap: wrap;
  }

  .question-text {
    margin-top: 8px;
  }

  .question-container {
    margin-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .text-field-31 {
    min-width: 0;
    text-align: center;
    margin-right: 0;
  }

  .section-logo-3 {
    padding-top: 20px;
  }

  .div-block-252._2 {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .column-54 {
    margin-top: 0;
    margin-bottom: 60px;
  }

  .featuredinwrapper {
    width: 100%;
    flex-wrap: wrap;
    padding: 16px 10px 35px;
  }

  .headingwrapper {
    padding-left: 25px;
    padding-right: 25px;
  }

  .featuredlogos {
    width: 100%;
    flex-wrap: wrap;
    align-content: stretch;
  }

  .footer-column {
    width: 50%;
  }

  .footer-column-large {
    width: 50%;
    margin-bottom: 25px;
  }

  .text-16.text-16-60 {
    width: 100%;
  }

  .pricing-v3-row-2 {
    flex-wrap: wrap;
    align-content: stretch;
  }

  .pricing-v3-row-header {
    width: 100%;
    min-height: 32px;
    padding: 4px 16px;
    font-size: 12px;
    line-height: 16px;
  }

  .div-block-255.empt {
    background-image: none;
  }

  .pricing-plan-cell-2 {
    width: 33.33%;
    text-align: left;
    border-bottom: 1px solid #e3e3e3;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .pricing-plan-cell-2.no-div, .pricing-plan-cell-2.no-dic {
    display: none;
  }

  .pricing-v3-plan-name {
    display: flex;
  }

  .pricing-v3-plan-name.no-div {
    display: none;
  }

  .pricing-v3-category-header-2 {
    padding-left: 14px;
    padding-right: 16px;
  }

  .pricing-v3-plans.mobile-sticky {
    z-index: 3;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }

  .wrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-v3-cell-2 {
    min-height: 48px;
  }

  .pricing-v3-cells-2 {
    border-top: 1px solid #e3e3e3;
    flex: 1;
    display: flex;
  }

  .text-block-175 {
    font-size: 13px;
  }
}

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

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 26px;
  }

  p {
    font-size: 15px;
  }

  li {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .section {
    padding: 45px 20px;
  }

  .section.homepage-hero, .section.hide-overflow, .section.how-it-works-hero, .section.about-hero {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .section.contact {
    padding-top: 50px;
  }

  .container {
    height: auto;
  }

  .container.cta {
    padding: 35px 30px;
  }

  .container.home {
    margin-left: 7px;
    padding-left: 0;
  }

  .footer-links {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .h2 {
    font-size: 32px;
  }

  .h2.white {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .h2.centered {
    font-size: 26px;
  }

  .footer-email-capture {
    padding-left: 0;
    padding-right: 0;
  }

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

  .success-text {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .email-capture {
    width: 100%;
  }

  .form {
    width: 92%;
  }

  .footer-form-block {
    width: 100%;
  }

  .email-capture-button {
    margin-top: -2px;
  }

  .navigation-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-lottie {
    width: 40px;
  }

  .tabs-menu {
    width: 100%;
  }

  .tabs-content {
    margin-top: 40px;
    display: none;
  }

  .tab-title {
    font-size: 16px;
  }

  .h3 {
    font-size: 26px;
  }

  .tab-text {
    font-size: 15px;
  }

  .button.secondary {
    width: 100%;
  }

  .button.right-margin {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .tab-image {
    height: auto;
  }

  .tab-link {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .subheading {
    font-size: 16px;
  }

  .text {
    font-size: 15px;
  }

  .hero-subheading {
    font-size: 18px;
  }

  .hero-subheading.centered {
    font-size: 16px;
  }

  .logo-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    justify-items: stretch;
    padding-left: 25px;
  }

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

  .clients-logos-container {
    align-items: center;
  }

  .clients-logos-container.top-margin, .clients-logos-container.small-top-margin {
    margin-top: 45px;
  }

  .client-logo {
    border-radius: 5px;
  }

  .client-logo._1 {
    margin-bottom: 0;
    padding-bottom: 10px;
  }

  .client-logo._3 {
    padding-bottom: 10px;
  }

  .h1 {
    font-size: 32px;
  }

  .h1.centered {
    margin-bottom: 20px;
    font-size: 32px;
  }

  .h1.centered.demopage {
    font-size: 25px;
  }

  .feature-image-3 {
    left: -19px;
  }

  .testimonial-logo {
    width: 90px;
    height: auto;
  }

  .grid-title {
    font-size: 26px;
  }

  .list-item {
    margin-bottom: 10px;
  }

  .lightbox {
    width: 65px;
  }

  .testimonial-info {
    margin-bottom: 20px;
  }

  .testimonial-quote {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .testimonial-info-container {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 15px;
  }

  .cta-left {
    align-items: center;
  }

  .cta-image {
    border-radius: 5px;
  }

  .cta-title {
    text-align: center;
    font-size: 30px;
  }

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

  .pricing-card-featured {
    width: 100%;
  }

  .plan-name {
    font-size: 26px;
  }

  .price {
    font-size: 30px;
  }

  .pricing-card-text {
    font-size: 15px;
  }

  .price-card-base {
    max-width: 320px;
  }

  .pricing-subheading {
    font-size: 16px;
  }

  .pricing-grid {
    grid-row-gap: 30px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .pricing-h1 {
    text-align: center;
    font-size: 32px;
  }

  .price-card {
    max-width: 320px;
  }

  .feature-title {
    text-align: center;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 26px;
  }

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

  .feature-icon {
    height: 28px;
  }

  .feature-name {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .feature-grid-text {
    font-size: 15px;
  }

  .faq-answer {
    text-align: center;
    font-size: 15px;
  }

  .faq-number {
    text-align: center;
  }

  .faq-container {
    align-items: center;
    margin-top: 40px;
  }

  .faq-content {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .faq-question {
    text-align: center;
    margin-bottom: 2vh;
    font-size: 18px;
  }

  .faq-background {
    margin-left: -3vh;
    margin-right: -3vh;
    padding: 12px 20px;
  }

  .card-title {
    font-size: 18px;
  }

  .card {
    height: auto;
    flex-direction: column;
  }

  .card._2 {
    height: 530px;
  }

  .card-text-container, .card-image-container {
    width: 100%;
  }

  .card-text {
    font-size: 15px;
  }

  .team-member-pic._3 {
    width: 180px;
    top: 0;
    left: 0;
    right: auto;
  }

  .team-member-pic._4, .team-member-pic._5 {
    display: none;
  }

  .team-member-pic._1 {
    width: 140px;
  }

  .team-member-pic._2 {
    width: 120px;
    right: 0;
  }

  .about-card {
    width: 100%;
    height: 175px;
  }

  .about-title {
    text-align: left;
    margin-bottom: 20px;
    font-size: 26px;
  }

  .our-story-text {
    font-size: 15px;
  }

  .our-story-right-column {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .text-container.centered {
    width: 100%;
    align-items: flex-start;
  }

  .team-member-card {
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .blog-heading {
    font-size: 36px;
  }

  .content-section {
    padding-left: 25px;
    padding-right: 25px;
  }

  .small-title {
    font-size: 14px;
  }

  .large-title {
    font-size: 21px;
  }

  .blog-item {
    grid-row-gap: 0px;
  }

  .post-title {
    font-size: 21px;
  }

  .blog-post-header {
    min-height: 380px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .heading-h1 {
    font-size: 36px;
  }

  .blog-hero-image {
    margin-top: -60px;
  }

  .blog-section {
    padding-left: 25px;
    padding-right: 25px;
  }

  .category-link {
    font-size: 15px;
  }

  ._404-lottie {
    width: 35vh;
  }

  .utility-page-content {
    width: 320px;
  }

  .protect-page-title {
    margin-bottom: 20px;
    font-size: 36px;
  }

  .password-input {
    margin-bottom: 15px;
  }

  .contact-column.left {
    width: 100%;
    height: 320px;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-column.right {
    width: 100%;
    margin-top: 0;
    padding: 25px;
  }

  .large-paragraph.top-margin {
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 16px;
  }

  .form-heading-small, .form-heading {
    font-size: 26px;
  }

  .styleguide-color {
    width: 120px;
    height: 120px;
  }

  .typography-info-grid {
    width: 100%;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .colors-info-container {
    grid-column-gap: 20px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .typography-square {
    width: 250px;
    height: 250px;
  }

  .changelog-text-container {
    width: 100%;
  }

  .changelog-number-wrap {
    order: -1;
    margin-bottom: 25px;
  }

  .changelog-text {
    margin-top: 10px;
    font-size: 14px;
  }

  .changelog-point {
    font-size: 21px;
  }

  .licensing-subheading {
    font-size: 15px;
  }

  .container-16 {
    min-width: 300px;
  }

  .heading-168 {
    object-fit: fill;
  }

  .hero-image-wrap {
    padding: 10px 0;
  }

  .contnavnewhome {
    max-width: none;
    flex-direction: row;
    justify-content: center;
  }

  .pre-title {
    align-self: flex-start;
  }

  .button-wrap-hero {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .paragraph-hero {
    position: static;
  }

  .paragraph-hero.padded {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 16px;
  }

  .navigation-block-left {
    width: auto;
    padding-right: 0;
  }

  .navigation-2 {
    padding-left: 20px;
    padding-right: 20px;
    top: 0%;
  }

  .header-2 {
    padding-left: 3%;
    padding-right: 3%;
  }

  .dropdown-link-2.blog {
    display: none;
  }

  .title-wrap-2 {
    padding-bottom: 40px;
  }

  .arrow-wrap {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .headingwrapper-2 {
    padding-bottom: 0;
  }

  .headingwrapper-2.fiopage {
    padding-bottom: 40px;
  }

  .image-block {
    padding: 8px;
  }

  .column-wrap-reversed {
    margin-bottom: 0;
  }

  .image-151 {
    box-shadow: 11px 9px 14px #b1b8bd;
  }

  .button-32 {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .text-field-30 {
    min-width: 0;
    margin-right: 0;
  }

  .demobookingnl.agpli {
    flex-direction: row;
  }

  .demobookingformnl {
    grid-template-columns: 1fr 1fr;
    align-content: stretch;
    justify-content: stretch;
    align-items: center;
    justify-items: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .html-embed-20 {
    min-width: 300px;
  }

  .navigation-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-image-wrap-2 {
    padding: 10px;
  }

  .button-wrap-hero-2 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .link {
    padding-left: 0;
  }

  .column-wrap-reversed-2 {
    margin-bottom: 0;
  }

  .blog-card {
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .testimonial-content-wrap, .testimonial-image-block {
    padding: 15px;
  }

  .answer {
    padding-left: 0;
  }

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

  .question-text {
    margin-bottom: 8px;
    margin-left: 0;
  }

  .col {
    margin-bottom: 0;
  }

  .navigation-4 {
    padding-left: 20px;
    padding-right: 20px;
    top: 0%;
  }

  .contnavnewhome-2 {
    max-width: none;
    flex-direction: row;
    justify-content: center;
  }

  .text-field-31 {
    min-width: 0;
    margin-right: 0;
  }

  .column-55 {
    padding-left: 19px;
    padding-right: 19px;
    display: block;
  }

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

  .footer-column, .footer-column-large {
    width: 100%;
  }

  .pricing-v3-currency {
    font-size: 14px;
  }

  .ffbreakdown-v3-2 {
    border-radius: 0;
    margin-left: -8px;
    margin-right: -8px;
  }

  .pricing-v3-row-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .div-block-255 {
    width: 15px;
    height: 15px;
  }

  .pricing-plan-cell-2 {
    text-align: center;
    justify-content: center;
    align-items: stretch;
    padding: 16px 8px;
    display: flex;
  }

  .pricing-v3-plan-name {
    align-self: center;
    font-size: 13px;
    font-weight: 700;
  }

  .pricing-v3-cell-2 {
    flex-wrap: wrap;
    align-content: stretch;
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-v3-cells-2 {
    flex: 1;
    justify-content: center;
    display: flex;
  }

  .text-block-174 {
    font-size: 13px;
  }

  .text-block-175 {
    font-size: 11px;
  }

  .pricing-v3-dollar {
    font-size: 24px;
  }

  .pricing-v3-dollar._2 {
    font-size: 14px;
    font-weight: 700;
  }

  .btn-big-2 {
    text-align: center;
    padding: 14px 25px;
    display: block;
  }
}

#w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e390-6c27e38b {
  align-self: center;
  justify-self: center;
}

#w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e391-6c27e38b, #w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e392-6c27e38b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e393-6c27e38b, #w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e394-6c27e38b {
  align-self: center;
  justify-self: center;
}

#w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e395-6c27e38b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e398-6c27e38b {
  align-self: center;
  justify-self: center;
}

#w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e399-6c27e38b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e39a-6c27e38b, #w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e39b-6c27e38b, #w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e39c-6c27e38b {
  align-self: center;
  justify-self: center;
}

#w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e39d-6c27e38b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-f079e991-60e5-fe04-a5cf-780a3563bcc2-3563bcbd {
  justify-self: start;
}

#w-node-f079e991-60e5-fe04-a5cf-780a3563bcc8-3563bcbd {
  justify-self: center;
}

#w-node-f079e991-60e5-fe04-a5cf-780a3563bcce-3563bcbd {
  justify-self: end;
}

#w-node-f079e991-60e5-fe04-a5cf-780a3563bcd4-3563bcbd {
  justify-self: start;
}

#w-node-f079e991-60e5-fe04-a5cf-780a3563bcda-3563bcbd {
  justify-self: center;
}

#w-node-f079e991-60e5-fe04-a5cf-780a3563bce0-3563bcbd {
  justify-self: end;
}

#email-3.w-node-_6004d3d3-3660-5f1a-0ed9-f01cb3d1424e-7f9d068f {
  align-self: center;
}

#w-node-f63cbbec-cb11-9f69-da01-fac71df87af4-dddb646d {
  align-self: auto;
  justify-self: auto;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbd-5b6c5dcf {
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbe-5b6c5dcf, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbf-5b6c5dcf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc0-5b6c5dcf, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc1-5b6c5dcf {
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc2-5b6c5dcf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc5-5b6c5dcf {
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc6-5b6c5dcf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc7-5b6c5dcf, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc8-5b6c5dcf, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc9-5b6c5dcf {
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcca-5b6c5dcf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-ede6685d-9bc8-efae-0347-6753177695ed-5b6c5dcf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbd-6ab21e24 {
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbe-6ab21e24, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbf-6ab21e24 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc0-6ab21e24, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc1-6ab21e24 {
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc2-6ab21e24 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc5-6ab21e24 {
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc6-6ab21e24 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc7-6ab21e24, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc8-6ab21e24, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc9-6ab21e24 {
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcca-6ab21e24 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-e57c32e3-bc57-5ede-4e0f-ed8996bfe8a0-6ab21e24 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbd-d55560f7 {
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbe-d55560f7, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbf-d55560f7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc0-d55560f7, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc1-d55560f7 {
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc2-d55560f7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc5-d55560f7 {
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc6-d55560f7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc7-d55560f7, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc8-d55560f7, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc9-d55560f7 {
  align-self: center;
  justify-self: center;
}

#w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcca-d55560f7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-ede6685d-9bc8-efae-0347-6753177695ed-d55560f7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-fa33579f-2d83-375e-6e51-e4b46d34ddf6-deff202d {
    order: -9999;
    grid-area: 1 / 1 / 1 / 1;
  }

  #w-node-b93ff8fd-22c9-aa60-894e-00fa76dbfe9d-76dbfe96 {
    justify-self: center;
  }

  #w-node-d62d9221-33f0-4444-f6ba-8be730ba7f18-bfff2038 {
    order: -9999;
    grid-area: 1 / 1 / 1 / 1;
  }

  #w-node-b45881df-0e6e-0f94-b407-fdbfbb3c5df3-58ff203c {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-b45881df-0e6e-0f94-b407-fdbfbb3c5df5-58ff203c {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-b45881df-0e6e-0f94-b407-fdbfbb3c5df7-58ff203c {
    grid-area: 2 / 3 / 3 / 4;
  }

  #w-node-_6b46447c-b1cd-98e0-885a-a6811f222ff9-b7c6f7eb, #w-node-d62d9221-33f0-4444-f6ba-8be730ba7f18-213ac31e, #w-node-fa33579f-2d83-375e-6e51-e4b46d34ddf6-5b6c5dcf, #w-node-fa33579f-2d83-375e-6e51-e4b46d34ddf6-6ab21e24, #w-node-fa33579f-2d83-375e-6e51-e4b46d34ddf6-d55560f7 {
    order: -9999;
    grid-area: 1 / 1 / 1 / 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_7c8047da-0b2f-8af0-c336-74ab33fe3a97-deff202d {
    justify-self: auto;
  }

  #w-node-_7c8047da-0b2f-8af0-c336-74ab33fe3a9b-deff202d {
    order: -9999;
  }

  #w-node-_8d798258-0ce9-d512-493d-c2367a8c58df-7a8c58c7 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_8d798258-0ce9-d512-493d-c2367a8c58ea-7a8c58c7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b93ff8fd-22c9-aa60-894e-00fa76dbfe9d-76dbfe96 {
    order: -9999;
  }

  #w-node-de4b7dc6-a82c-3e7b-75cb-549cf5e1a4ff-bfff2038 {
    justify-self: auto;
  }

  #w-node-de4b7dc6-a82c-3e7b-75cb-549cf5e1a503-bfff2038 {
    order: -9999;
  }

  #w-node-de4b7dc6-a82c-3e7b-75cb-549cf5e1a4ff-b7c6f7eb {
    justify-self: auto;
  }

  #w-node-de4b7dc6-a82c-3e7b-75cb-549cf5e1a503-b7c6f7eb {
    order: -9999;
  }

  #w-node-de4b7dc6-a82c-3e7b-75cb-549cf5e1a4ff-213ac31e {
    justify-self: auto;
  }

  #w-node-de4b7dc6-a82c-3e7b-75cb-549cf5e1a503-213ac31e {
    order: -9999;
  }

  #w-node-_30289ff4-330b-052b-97bc-9c22d8645456-d8645440 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_30289ff4-330b-052b-97bc-9c22d8645461-d8645440 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #email-3.w-node-_6004d3d3-3660-5f1a-0ed9-f01cb3d1424e-7f9d068f, #guam-learnmore-button.w-node-_6004d3d3-3660-5f1a-0ed9-f01cb3d1424f-7f9d068f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #email.w-node-e2ffa650-678d-ab7d-d3d8-e877317b309a-f9a281e2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: stretch;
  }

  #w-node-e2ffa650-678d-ab7d-d3d8-e877317b309b-f9a281e2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_7c8047da-0b2f-8af0-c336-74ab33fe3a97-5b6c5dcf {
    justify-self: auto;
  }

  #w-node-_7c8047da-0b2f-8af0-c336-74ab33fe3a9b-5b6c5dcf {
    order: -9999;
  }

  #w-node-_6fe9edfa-efd6-9081-a75b-f9d308d9fe65-5b6c5dcf {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_7c8047da-0b2f-8af0-c336-74ab33fe3a97-6ab21e24 {
    justify-self: auto;
  }

  #w-node-_7c8047da-0b2f-8af0-c336-74ab33fe3a9b-6ab21e24 {
    order: -9999;
  }

  #w-node-e57c32e3-bc57-5ede-4e0f-ed8996bfe89c-6ab21e24 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_7c8047da-0b2f-8af0-c336-74ab33fe3a97-d55560f7 {
    justify-self: auto;
  }

  #w-node-_7c8047da-0b2f-8af0-c336-74ab33fe3a9b-d55560f7 {
    order: -9999;
  }

  #w-node-_6fe9edfa-efd6-9081-a75b-f9d308d9fe65-d55560f7 {
    grid-area: 2 / 1 / 3 / 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_7c8047da-0b2f-8af0-c336-74ab33fe3a9b-deff202d {
    order: -9999;
  }

  #w-node-fa33579f-2d83-375e-6e51-e4b46d34ddf6-deff202d {
    order: -9999;
    grid-area: 1 / 1 / 1 / 1;
  }

  #w-node-_8d798258-0ce9-d512-493d-c2367a8c58df-7a8c58c7 {
    grid-column: 2 / 3;
  }

  #w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e390-6c27e38b, #w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e391-6c27e38b, #w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e392-6c27e38b {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: start;
  }

  #w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e393-6c27e38b, #w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e394-6c27e38b {
    justify-self: start;
  }

  #w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e395-6c27e38b, #w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e398-6c27e38b {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: start;
  }

  #w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e399-6c27e38b, #w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e39a-6c27e38b, #w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e39b-6c27e38b, #w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e39c-6c27e38b, #w-node-_20ae1400-1af7-dc4e-aa89-54a46c27e39d-6c27e38b {
    justify-self: start;
  }

  #w-node-de4b7dc6-a82c-3e7b-75cb-549cf5e1a503-bfff2038 {
    order: -9999;
  }

  #w-node-d62d9221-33f0-4444-f6ba-8be730ba7f18-bfff2038 {
    order: -9999;
    grid-area: 1 / 1 / 1 / 1;
  }

  #w-node-b45881df-0e6e-0f94-b407-fdbfbb3c5df7-58ff203c {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-b45881df-0e6e-0f94-b407-fdbfbb3c5df9-58ff203c {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-de4b7dc6-a82c-3e7b-75cb-549cf5e1a503-b7c6f7eb {
    order: -9999;
  }

  #w-node-_6b46447c-b1cd-98e0-885a-a6811f222ff9-b7c6f7eb {
    order: -9999;
    grid-area: 1 / 1 / 1 / 1;
  }

  #w-node-de4b7dc6-a82c-3e7b-75cb-549cf5e1a503-213ac31e {
    order: -9999;
  }

  #w-node-d62d9221-33f0-4444-f6ba-8be730ba7f18-213ac31e {
    order: -9999;
    grid-area: 1 / 1 / 1 / 1;
  }

  #w-node-_30289ff4-330b-052b-97bc-9c22d8645456-d8645440 {
    grid-column: 2 / 3;
  }

  #email-3.w-node-_6004d3d3-3660-5f1a-0ed9-f01cb3d1424e-7f9d068f, #email.w-node-e2ffa650-678d-ab7d-d3d8-e877317b309a-f9a281e2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbd-5b6c5dcf, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbe-5b6c5dcf, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbf-5b6c5dcf {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: start;
  }

  #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc0-5b6c5dcf, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc1-5b6c5dcf {
    justify-self: start;
  }

  #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc2-5b6c5dcf, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc5-5b6c5dcf {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: start;
  }

  #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc6-5b6c5dcf, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc7-5b6c5dcf, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc8-5b6c5dcf, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc9-5b6c5dcf, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcca-5b6c5dcf {
    justify-self: start;
  }

  #w-node-_7c8047da-0b2f-8af0-c336-74ab33fe3a9b-5b6c5dcf {
    order: -9999;
  }

  #w-node-fa33579f-2d83-375e-6e51-e4b46d34ddf6-5b6c5dcf {
    order: -9999;
    grid-area: 1 / 1 / 1 / 1;
  }

  #w-node-_6fe9edfa-efd6-9081-a75b-f9d308d9fe65-5b6c5dcf {
    grid-column: 2 / 3;
  }

  #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbd-6ab21e24, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbe-6ab21e24, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbf-6ab21e24 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: start;
  }

  #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc0-6ab21e24, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc1-6ab21e24 {
    justify-self: start;
  }

  #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc2-6ab21e24, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc5-6ab21e24 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: start;
  }

  #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc6-6ab21e24, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc7-6ab21e24, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc8-6ab21e24, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc9-6ab21e24, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcca-6ab21e24 {
    justify-self: start;
  }

  #w-node-_7c8047da-0b2f-8af0-c336-74ab33fe3a9b-6ab21e24 {
    order: -9999;
  }

  #w-node-fa33579f-2d83-375e-6e51-e4b46d34ddf6-6ab21e24 {
    order: -9999;
    grid-area: 1 / 1 / 1 / 1;
  }

  #w-node-e57c32e3-bc57-5ede-4e0f-ed8996bfe89c-6ab21e24 {
    grid-column: 2 / 3;
  }

  #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbd-d55560f7, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbe-d55560f7, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcbf-d55560f7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: start;
  }

  #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc0-d55560f7, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc1-d55560f7 {
    justify-self: start;
  }

  #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc2-d55560f7, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc5-d55560f7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: start;
  }

  #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc6-d55560f7, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc7-d55560f7, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc8-d55560f7, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcc9-d55560f7, #w-node-b1ad3b33-e60d-2133-6525-1cd32f98bcca-d55560f7 {
    justify-self: start;
  }

  #w-node-_7c8047da-0b2f-8af0-c336-74ab33fe3a9b-d55560f7 {
    order: -9999;
  }

  #w-node-fa33579f-2d83-375e-6e51-e4b46d34ddf6-d55560f7 {
    order: -9999;
    grid-area: 1 / 1 / 1 / 1;
  }

  #w-node-_6fe9edfa-efd6-9081-a75b-f9d308d9fe65-d55560f7 {
    grid-column: 2 / 3;
  }
}