:root {
  --text: #888;
  --titles: #1d1d1f;
  --button: #0071e3;
  --button-hover: #007ffe;
}

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

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

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

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

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

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

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

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

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

h1 {
  color: var(--titles);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
}

h2 {
  color: var(--titles);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

h3 {
  color: var(--titles);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

h4 {
  color: var(--titles);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

h5 {
  color: var(--titles);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}

h6 {
  color: var(--titles);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

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

a {
  color: var(--button);
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
}

a:hover {
  color: var(--button-hover);
}

ul {
  color: var(--text);
  margin-top: 0;
  margin-bottom: 10px;
  list-style-type: disc;
}

ol {
  color: var(--text);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.5;
}

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

blockquote {
  color: var(--text);
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 1.5;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 75px;
  padding-bottom: 75px;
  display: flex;
}

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

.container.contact-form {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-top: 100px;
  display: grid;
}

.left-sided-grid {
  grid-column-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 5fr 7fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

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

.h1 {
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.25;
}

.h1.centered {
  text-align: center;
}

.subheading {
  color: var(--text);
  font-family: Inter, sans-serif;
  font-size: 20px;
  line-height: 1.65;
}

.subheading.centered {
  text-align: center;
  max-width: 550px;
}

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

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

.tab-pane {
  width: 100%;
}

.tab-title {
  color: var(--titles);
  margin-bottom: 5px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

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

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

.tabs {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 6fr 4fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

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

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

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

.tab-link.w--current {
  border-left-color: var(--button);
  opacity: 1;
  background-color: #0000;
}

.button {
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #0071e3;
  justify-content: center;
  align-items: center;
  height: 55px;
  padding-left: 35px;
  padding-right: 35px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  transition: background-color .3s ease-out;
  display: flex;
}

.button:hover {
  color: #fff;
  background-color: #007ffe;
}

.button.top-margin {
  background-color: var(--button);
  margin-top: 40px;
}

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

.button.top-margin.monthly {
  margin-top: 20px;
  display: none;
}

.button.secondary {
  color: var(--titles);
  background-color: #fff;
  margin-top: 20px;
  box-shadow: 2px 2px 9px 3px #1d1d1f14;
}

.button.secondary:hover {
  background-color: #f5f5f7;
}

.button.secondary.annually {
  box-shadow: 2px 2px 9px 3px #1d1d1f0f;
}

.button.secondary.monthly {
  display: none;
}

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

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

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

.h2 {
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 46px;
  line-height: 1.25;
}

.right-sided-grid {
  grid-column-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 7fr 5fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.feature-list-grid {
  grid-column-gap: 100px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.feature-text {
  color: var(--titles);
  font-size: 14px;
  line-height: 1.6;
}

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

.check-icon {
  width: 13px;
  margin-right: 8px;
}

.integrations-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.testimonial-quote-title {
  color: var(--titles);
  letter-spacing: -.5px;
  white-space: normal;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.testimonial-name {
  font-weight: 700;
}

.testimonial-logo {
  height: 30px;
  display: inline-block;
}

.testimonial-logo.bottom-margin {
  height: 35px;
  margin-bottom: 20px;
}

.testimonial-quote-text {
  color: var(--text);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.column {
  display: flex;
}

.column.left-alignment {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 0;
  display: flex;
}

.testimonial-grid {
  grid-column-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.plan-name {
  color: var(--titles);
  letter-spacing: -.5px;
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

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

.faq-title {
  letter-spacing: -1px;
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 45px;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.25;
}

.link-span {
  color: var(--button);
  font-weight: 600;
  text-decoration: none;
}

.link-span:hover {
  color: var(--button-hover);
  text-decoration: none;
}

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

.faq-top-line {
  border-top: 1px solid #1d1d1f1a;
  justify-content: space-between;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.faq-question {
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}

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

.faq-number-container {
  background-color: #1d1d1f1a;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.faq-number {
  color: var(--titles);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.footer-bottom {
  border-bottom: 1px solid #ffffff1a;
  justify-content: space-between;
  width: 100%;
  margin-top: 92px;
  display: flex;
}

.text-rights {
  color: var(--text);
  margin-right: 32px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
  display: block;
}

.social-square {
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-right: 4px;
  display: flex;
}

.footer-link {
  color: var(--text);
  margin-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
  display: block;
}

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

.footer-wrapper {
  align-items: center;
  display: flex;
}

.terms-and-privacy-link {
  color: var(--text);
  margin-right: 32px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25px;
  text-decoration: none;
  display: block;
}

.terms-and-privacy-link:hover {
  color: var(--button-hover);
}

.footer-title {
  color: var(--titles);
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

.footer-text {
  color: var(--text);
  max-width: 260px;
  font-size: 15px;
}

.footer {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 40px;
  display: flex;
}

.social-link-container {
  color: #1e2833;
  justify-content: center;
  align-items: center;
  height: 55px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  font-size: 15px;
  text-decoration: none;
  display: flex;
}

.footer-grid {
  grid-template-rows: auto;
  grid-template-columns: 2fr 1.25fr 2fr 1fr;
  width: 100%;
}

.footer-logo {
  width: 200px;
  margin-bottom: 10px;
}

.footer-column {
  flex-direction: column;
  align-items: flex-start;
  padding-right: 40px;
  display: flex;
}

.nav-menu {
  color: #3f0a3d;
  align-items: center;
  width: auto;
  height: 100%;
  display: flex;
}

.nav-link {
  color: #888;
  margin-left: 0;
  margin-right: 0;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 15px;
  font-weight: 400;
  transition: color .3s;
}

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

.nav-link.w--current {
  color: #007ffe;
  font-weight: 500;
}

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

.brand {
  justify-content: space-between;
  align-items: center;
  margin-right: 20px;
  padding-left: 0;
  padding-right: 12px;
  display: flex;
}

.brand.w--current {
  justify-content: space-between;
  align-items: center;
}

.navigation-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
  display: flex;
}

.nav-button {
  color: #fff;
  text-transform: uppercase;
  background-color: #0071e3;
  margin-top: 0;
  padding: 13px 32px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  transition: background-color .3s ease-out;
}

.nav-button:hover {
  color: #fff;
  background-color: #007ffe;
}

.nav-button.hide-on-desktop {
  display: none;
}

.navigation {
  background-color: #fff;
  align-items: center;
  width: 94%;
  max-width: 1100px;
  height: 90px;
  display: flex;
}

.navbar-container {
  z-index: 100;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.logo {
  width: 160px;
  margin-right: 3px;
}

.client-logo {
  padding-left: 20px;
  padding-right: 20px;
}

.tab-image {
  width: 100%;
}

.pricing-title {
  text-align: center;
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.25;
}

.page-404 {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 0 35px;
  display: flex;
}

._404-lottie {
  width: 80vh;
}

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

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

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

.password-button {
  background-color: var(--button);
  text-transform: uppercase;
  height: 50px;
  font-weight: 700;
}

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

.password-input {
  color: var(--titles);
  height: 55px;
  padding-left: 15px;
  font-size: 16px;
  line-height: 1.5;
}

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

.error-message {
  background-color: #0000;
}

.error-text {
  color: #ff0000e6;
  font-size: 16px;
  line-height: 1.5;
}

.contact-subtitle {
  color: var(--text);
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.message-field {
  border: 1px solid var(--text);
  color: var(--titles);
  background-color: #0000;
  height: auto;
  min-height: 200px;
  margin-top: 0;
  margin-bottom: 40px;
  padding: 10px;
  font-size: 18px;
  font-weight: 400;
}

.success-message {
  background-color: #0000;
}

.field-label {
  float: none;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  position: static;
}

.error-text-2 {
  color: red;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.input-field {
  float: none;
  clear: none;
  border: 1px solid var(--text);
  color: var(--titles);
  background-color: #0000;
  height: 50px;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 18px;
  font-weight: 400;
}

.form-block {
  width: 560px;
  max-width: none;
}

.text-block {
  color: #fdb515;
}

.contact-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

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

.blog-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 100px;
  margin-bottom: 100px;
  display: grid;
  position: relative;
}

.blog-grid.first {
  margin-top: 205px;
}

.author-name {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.date-text {
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
}

.small-blog-title {
  color: var(--titles);
  text-transform: none;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.read-time-text {
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
}

.blog-hero-container {
  margin-top: 30px;
  position: relative;
}

.blog-info-container {
  align-items: flex-start;
  display: flex;
}

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

.featured-post-title {
  color: var(--titles);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}

.author-pic {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}

.blog-title-container {
  background-color: #fff;
  max-width: 920px;
  padding: 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  box-shadow: 2px 2px 9px 3px #1d1d1f0f;
}

.small-dot {
  color: var(--text);
  margin-left: 5px;
  margin-right: 5px;
  font-size: 15px;
  line-height: 21px;
}

.blog-page {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.category-text {
  color: var(--titles);
  text-transform: uppercase;
  font-size: 60px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  transition-property: none;
  position: absolute;
  top: -60px;
  left: 0;
}

.category-text:hover {
  color: var(--titles);
}

.small-blog-info {
  align-items: flex-start;
  display: flex;
}

.blog-post-info-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 675px;
  margin-top: 60px;
  margin-bottom: 100px;
  display: flex;
}

.post-category-link {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.blog-post-title {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
}

.post-author-container {
  margin-bottom: 20px;
}

.post-author {
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}

.post-author.spacing {
  margin-right: 10px;
  font-style: italic;
}

.post-read-time {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.rich-text {
  text-align: left;
  width: 100%;
  max-width: 675px;
}

.rich-text h2 {
  margin-top: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
}

.rich-text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}

.rich-text h3 {
  font-size: 40px;
  line-height: 1.25;
}

.rich-text h4 {
  font-size: 24px;
  line-height: 1.3;
}

.rich-text h1 {
  margin-top: 0;
  font-size: 60px;
}

.changelog-title {
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 45px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
}

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

.changelog-top-line {
  border-top: 1px solid #1d1d1f1a;
  justify-content: space-between;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

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

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

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

.changelog-number-wrap {
  background-color: #1d1d1f1a;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.changelog-number {
  color: var(--titles);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

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

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

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

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

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

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

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

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

.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-bottom: 40px;
  display: grid;
}

.titles-style-guide {
  color: var(--titles);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.5;
}

.text-style-guide {
  font-size: 60px;
  line-height: 1.5;
}

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

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

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

.h3 {
  font-size: 30px;
  line-height: 1.25;
}

.licensing-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
}

.licensing-subheading {
  color: var(--text);
  text-align: center;
  max-width: 550px;
  margin-bottom: 45px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  line-height: 1.65;
}

.pricing-icon {
  width: 15px;
  margin-right: 10px;
}

.plan-features {
  color: var(--titles);
  font-size: 16px;
  line-height: 1.5;
}

.plan-features-info {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.plan-features-info.last {
  margin-bottom: 30px;
}

.plan-features-container {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.radio-button {
  border: 1px solid var(--button);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 23px;
  height: 23px;
  display: flex;
}

.plan-description {
  color: var(--text);
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
}

.radio-dot {
  background-color: #07c;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}

.radio-dot.monthly {
  background-color: var(--button);
  width: 13px;
  height: 13px;
  display: none;
}

.radio-dot.annually {
  background-color: var(--button);
  width: 13px;
  height: 13px;
}

.feature-info-text {
  color: #f0f3f4;
  text-transform: uppercase;
  background-color: #ccc;
  border-radius: 3px;
  margin-left: 10px;
  padding: 3px 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.radio-button-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.radio-buttons {
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  display: flex;
}

.pricing-wrap {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.pricing-wrap.grid {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 94%;
  max-width: 1170px;
  padding-left: 0;
  padding-right: 0;
  display: grid;
}

.plan-price {
  color: var(--titles);
  margin-bottom: 10px;
  font-size: 56px;
  line-height: .8;
}

.plan-price.monthly {
  display: none;
}

.radio-button-text {
  color: var(--text);
  margin-left: 8px;
  font-size: 18px;
  line-height: 1;
}

.plan-price-details {
  color: #556575;
  margin-bottom: 25px;
  line-height: 1.8;
}

.pricing-card {
  color: #1d2b36;
  border: 1px solid #1d1d1f0f;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.green-span {
  color: #39ac6e;
  margin-right: 25px;
  font-weight: 700;
}

.manifest p, .manifest li {
  font-size: 14px;
}

.section-2 {
  background-color: var(--titles);
}

@media screen and (min-width: 1280px) {
  .tab-pane {
    width: 100%;
  }

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

  .button {
    font-size: 15px;
  }

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

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

  .navigation {
    max-width: 1100px;
  }

  .grid-image, .tab-image {
    width: 860px;
  }

  .field-label {
    line-height: 1.2;
  }

  .rich-text p {
    font-size: 22px;
  }

  .pricing-wrap {
    max-width: 1180px;
    padding-left: 0;
    padding-right: 0;
  }

  .pricing-wrap.grid {
    max-width: 1170px;
  }
}

@media screen and (min-width: 1440px) {
  li {
    font-size: 21px;
  }

  .container {
    max-width: 1200px;
  }

  .tab-title {
    font-size: 20px;
  }

  .button {
    height: 60px;
  }

  .navigation {
    max-width: 1200px;
  }

  .rich-text p {
    font-size: 21px;
  }

  .styleguide-container {
    max-width: 1200px;
  }

  .pricing-wrap {
    justify-content: center;
    align-items: center;
    max-width: 1250px;
    display: flex;
  }
}

@media screen and (max-width: 991px) {
  .section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .container {
    width: 100%;
  }

  .container.contact-form {
    margin-top: 45px;
  }

  .left-sided-grid {
    grid-row-gap: 60px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .text-column {
    align-items: center;
  }

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

  .h1 {
    text-align: center;
    line-height: 1.1;
  }

  .subheading {
    text-align: center;
    max-width: 600px;
    font-size: 19px;
  }

  .text.mobile-centered {
    text-align: center;
    max-width: 550px;
  }

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

  .tabs {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: flex-start;
    width: 100%;
  }

  .tabs-menu {
    width: 80%;
  }

  .tabs-content {
    width: 100%;
    margin-top: 60px;
  }

  .button.top-margin, .button.secondary {
    margin-top: 20px;
  }

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

  .logo-grid {
    grid-column-gap: 60px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 20px;
  }

  .h2 {
    text-align: center;
    font-size: 40px;
  }

  .right-sided-grid {
    grid-row-gap: 60px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .testimonial-quote-title {
    margin-bottom: 30px;
    font-size: 21px;
    line-height: 1.4;
  }

  .testimonial-logo.bottom-margin {
    height: 26px;
    margin-bottom: 15px;
  }

  .testimonial-quote-text {
    font-size: 15px;
  }

  .plan-name {
    margin-bottom: 25px;
    font-size: 24px;
  }

  .faq-text-container {
    width: 620px;
  }

  .faq-title {
    font-size: 40px;
  }

  .faq-question {
    font-size: 21px;
  }

  .faq-number-container {
    align-self: flex-start;
  }

  .faq-number {
    font-size: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .text-rights, .footer-link {
    font-size: 14px;
  }

  .footer-wrapper {
    justify-content: flex-end;
  }

  .footer-wrapper.terms {
    order: -1;
  }

  .terms-and-privacy-link {
    font-size: 14px;
  }

  .footer-title {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .footer-text {
    font-size: 14px;
  }

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

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

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

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

  .nav-menu {
    background-color: #fff;
    height: auto;
  }

  .nav-link {
    width: 100%;
  }

  .menu-lottie {
    width: 46px;
  }

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

  .brand {
    margin-right: 10px;
    padding: 0;
  }

  .navigation-container {
    min-height: auto;
    padding-left: 35px;
    padding-right: 35px;
    position: relative;
  }

  .nav-button.hide-on-desktop {
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
  }

  .navigation {
    width: 100%;
  }

  .menu-button {
    color: #02676b;
    padding-right: 0;
  }

  .menu-button.w--open {
    background-color: #0000;
    border-color: #02676b;
  }

  .navigation-button-wrap {
    display: none;
  }

  .grid-image, .tab-image {
    width: 590px;
  }

  .pricing-title {
    font-size: 40px;
  }

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

  .form-block {
    width: 100%;
  }

  .contact-title {
    font-size: 18px;
  }

  .blog-grid {
    width: 100%;
    margin-top: 80px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .blog-grid.first {
    margin-top: 160px;
  }

  .author-name {
    font-size: 15px;
    line-height: 1.5;
  }

  .date-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .small-blog-title {
    margin-top: 18px;
    margin-bottom: 18px;
    font-size: 28px;
  }

  .read-time-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .blog-hero-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
  }

  .featured-post-title {
    font-size: 36px;
  }

  .blog-title-container {
    width: 50%;
    max-width: 100%;
    padding: 20px;
    position: absolute;
    bottom: 0;
    right: 30px;
  }

  .category-text {
    font-size: 42px;
    top: -49px;
    left: 30px;
  }

  .blog-post-title {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 60px;
  }

  .post-author {
    font-size: 20px;
  }

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

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

  .rich-text h3 {
    font-size: 36px;
  }

  .rich-text h1 {
    font-size: 52px;
  }

  .changelog-text-container {
    width: 635px;
  }

  .changelog-point {
    font-size: 27px;
  }

  .licensing-text {
    margin-top: 20px;
    font-size: 18px;
  }

  .changelog-number-wrap {
    align-self: flex-start;
  }

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

  .licensing-subheading {
    font-size: 18px;
  }

  .pricing-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }

  .pricing-wrap.grid {
    flex-direction: column;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .plan-price {
    font-size: 48px;
  }

  .pricing-card {
    margin-bottom: 30px;
  }
}

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

  .section {
    padding: 60px 30px;
  }

  .container.contact-form {
    grid-column-gap: 40px;
  }

  .left-sided-grid {
    grid-row-gap: 45px;
  }

  .h1 {
    font-size: 42px;
  }

  .subheading {
    max-width: 500px;
    font-size: 18px;
  }

  .text {
    font-size: 16px;
  }

  .text.mobile-centered {
    max-width: 450px;
  }

  .tab-title {
    font-size: 18px;
  }

  .tabs-content {
    margin-top: 50px;
  }

  .button {
    font-size: 13px;
  }

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

  .logo-grid {
    grid-column-gap: 45px;
    grid-template-rows: auto auto;
    margin-top: 10px;
  }

  .h2 {
    font-size: 34px;
  }

  .testimonial-quote-title {
    margin-bottom: 15px;
    font-size: 20px;
  }

  .testimonial-logo.bottom-margin {
    height: 24px;
  }

  .column {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-grid {
    grid-column-gap: 40px;
  }

  .plan-name {
    margin-bottom: 20px;
  }

  .faq-text-container {
    width: 100%;
  }

  .faq-title {
    font-size: 34px;
  }

  .faq-answer {
    margin-top: 15px;
    font-size: 16px;
  }

  .faq-top-line {
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .faq-number-container {
    order: -1;
    width: 45px;
    height: 45px;
    margin-bottom: 25px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .social-square {
    margin-right: 4px;
  }

  .footer-wrapper.terms {
    justify-content: flex-start;
  }

  .footer-title {
    font-size: 14px;
  }

  .footer-title.hide-phone, .footer-text {
    display: none;
  }

  .footer {
    padding-top: 75px;
    padding-bottom: 25px;
  }

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

  .footer-logo {
    display: none;
  }

  .footer-column {
    padding-right: 0;
  }

  .footer-column.social-links {
    flex-direction: row;
  }

  .menu-lottie {
    width: 42px;
  }

  .nav-links-container {
    width: 100%;
  }

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

  .nav-button.hide-on-desktop {
    font-size: 13px;
  }

  .navigation-button-wrap {
    display: none;
  }

  .grid-image, .tab-image {
    width: 440px;
    right: 40px;
  }

  .pricing-title {
    margin-bottom: 25px;
    font-size: 34px;
  }

  .page-404 {
    padding-left: 30px;
    padding-right: 30px;
  }

  ._404-lottie {
    width: 60vh;
  }

  .contact-subtitle, .message-field, .field-label, .error-text-2, .input-field {
    font-size: 16px;
  }

  .blog-grid {
    grid-row-gap: 30px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .blog-grid.first {
    grid-template-rows: auto auto;
    margin-top: 130px;
  }

  .small-blog-title {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .featured-post-title {
    padding: 15px;
    font-size: 32px;
  }

  .blog-title-container {
    width: 65%;
    padding: 15px;
    bottom: 0;
  }

  .category-text {
    left: 25px;
  }

  .blog-post-info-wrap {
    margin-top: 22px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .blog-post-title {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 48px;
  }

  .post-author {
    font-size: 18px;
  }

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

  .rich-text p {
    font-size: 16px;
  }

  .rich-text h3 {
    font-size: 28px;
  }

  .rich-text.blog-post {
    padding-left: 30px;
    padding-right: 30px;
  }

  .rich-text h1 {
    font-size: 48px;
  }

  .changelog-title {
    font-size: 36px;
  }

  .changelog-top-line {
    flex-direction: column;
  }

  .changelog-text-container {
    width: 100%;
  }

  .changelog-point {
    font-size: 24px;
  }

  .licensing-text {
    margin-top: 20px;
    font-size: 16px;
  }

  .changelog-number-wrap {
    order: -1;
    width: 45px;
    height: 45px;
    margin-bottom: 30px;
  }

  .changelog-number {
    font-size: 24px;
  }

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

  .info-text {
    font-size: 16px;
  }

  .licensing-title {
    font-size: 36px;
  }

  .pricing-icon {
    width: 14px;
    margin-right: 8px;
  }

  .plan-features, .plan-description {
    font-size: 15px;
  }

  .radio-button-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding: 45px 20px;
  }

  .container.contact-form {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .h1 {
    font-size: 36px;
  }

  .subheading {
    font-size: 16px;
  }

  .text {
    font-size: 15px;
  }

  .tab-title {
    margin-bottom: 3px;
    font-size: 16px;
  }

  .tabs-menu {
    width: 100%;
  }

  .tabs-content {
    margin-top: 40px;
  }

  .button.top-margin, .button.top-margin.annually, .button.top-margin.monthly, .button.secondary {
    margin-top: 15px;
  }

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

  .logo-grid {
    grid-column-gap: 15px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .h2 {
    font-size: 30px;
  }

  .feature-list-grid {
    grid-column-gap: 40px;
    margin-top: 20px;
  }

  .feature-text {
    font-size: 13px;
  }

  .check-icon {
    width: 12px;
    margin-right: 7px;
  }

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

  .testimonial-quote-title {
    font-size: 18px;
  }

  .testimonial-pic {
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }

  .testimonial-logo {
    height: 20px;
  }

  .column {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .testimonial-grid {
    grid-row-gap: 45px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .plan-name {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .faq-text-container {
    width: 100%;
  }

  .faq-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .faq-answer {
    font-size: 15px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-number-container {
    order: -1;
    margin-bottom: 25px;
  }

  .faq-number {
    font-size: 21px;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
  }

  .text-rights {
    text-align: left;
    margin-right: 0;
  }

  .footer-wrapper {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .terms-and-privacy-link {
    margin-right: 20px;
  }

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

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

  .footer-column.social-links {
    flex-direction: row;
    justify-content: flex-start;
  }

  .menu-lottie {
    width: 40px;
  }

  .navigation-container {
    padding-left: 25px;
    padding-right: 25px;
  }

  .client-logo.hide-phone-portrait {
    display: none;
  }

  .pricing-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .page-404 {
    padding-left: 25px;
    padding-right: 25px;
  }

  ._404-lottie {
    width: 35vh;
  }

  .contact-subtitle {
    width: auto;
    font-size: 15px;
  }

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

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

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

  .blog-grid {
    grid-row-gap: 30px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-grid.first {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    margin-top: 80px;
  }

  .small-blog-title {
    font-size: 24px;
  }

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

  .featured-post-title {
    padding: 15px 0 0;
    font-size: 24px;
    line-height: 1.2;
  }

  .blog-title-container {
    width: 100%;
    padding: 10px 0;
    position: static;
    bottom: -11px;
    right: 25px;
  }

  .category-text {
    font-size: 32px;
    top: -40px;
    left: 20px;
  }

  .blog-post-info-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .post-category-link {
    font-size: 14px;
  }

  .blog-post-title {
    font-size: 32px;
  }

  .post-author {
    font-size: 16px;
  }

  .post-read-time {
    font-size: 14px;
  }

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

  .rich-text h3 {
    font-size: 24px;
  }

  .rich-text.blog-post {
    padding-left: 20px;
    padding-right: 20px;
  }

  .rich-text h1 {
    font-size: 36px;
  }

  .changelog-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .changelog-text-container {
    width: 100%;
  }

  .changelog-point {
    font-size: 21px;
  }

  .licensing-text {
    font-size: 15px;
  }

  .changelog-number-wrap {
    order: -1;
    margin-bottom: 25px;
  }

  .colors-info-container {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

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

  .licensing-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .radio-button-container {
    flex-direction: row;
    margin-bottom: 15px;
  }

  .radio-buttons {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 320px;
    margin-bottom: 40px;
  }

  .pricing-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .plan-price {
    font-size: 42px;
  }

  .radio-button-text {
    font-size: 15px;
  }

  .pricing-card {
    width: 100%;
    max-width: 320px;
    padding: 40px 15px;
  }
}

#w-node-_85458a2d-52c8-2170-3194-593f0bffe838-761d1d19 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_6d141602-5f61-2fbd-f4d8-542a94cf8ad1-94cf8ad0 {
  align-self: start;
}

#w-node-_85458a2d-52c8-2170-3194-593f0bffe838-0caae47d, #w-node-_85458a2d-52c8-2170-3194-593f0bffe838-15fb6d08 {
  grid-area: 1 / 1 / 2 / 2;
}

@media screen and (max-width: 991px) {
  #w-node-_85458a2d-52c8-2170-3194-593f0bffe838-761d1d19 {
    order: 9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_8f7cebcc-ea36-6fac-be47-413bc9d30ca9-761d1d19 {
    order: -9999;
  }

  #w-node-_85458a2d-52c8-2170-3194-593f0bffe838-0caae47d, #w-node-_85458a2d-52c8-2170-3194-593f0bffe838-15fb6d08 {
    order: 9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_50e2c264-29b8-8a3d-5668-bec7b814ac0e-b814ac0b {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_50e2c264-29b8-8a3d-5668-bec7b814ac0e-b814ac0b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4c419f7f-d322-5316-9fc7-fe57e9e66769-e9e6675a {
    order: -9999;
  }

  #w-node-_19ccfb22-cc20-066f-3237-b5cd6b901d6a-791d1d25 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-be3c52ba-9221-0091-8770-7b28e534a602-791d1d25 {
    grid-area: 2 / 2 / 3 / 3;
  }
}


