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

body {
  font-family: Averta, Arial, sans-serif;
  color: #1b354b;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

h1 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 51px;
  line-height: 1.2;
  font-weight: 600;
}

h2 {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
}

h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.5;
  font-weight: 400;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

p {
  padding-top: 0px;
  padding-bottom: 10px;
  color: #9498af;
  line-height: 1.6;
}

a {
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  color: #614fe8;
  text-decoration: underline;
}

a:hover {
  color: #1aaea5;
}

a:active {
  color: #1b354b;
}

ul {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 40px;
  list-style-type: disc;
}

li {
  margin-bottom: 10px;
}

img {
  display: block;
}

label {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

blockquote {
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 15px 30px;
  border-left: 5px solid #e2e2e2;
  font-size: 20px;
  line-height: 34px;
}

figure {
  margin-top: 25px;
  padding-bottom: 20px;
}

figcaption {
  margin-top: 5px;
  opacity: 0.6;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
}

.divider {
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
  /* background-color: #eee; */
}

.section {
  position: relative;
  padding: 60px 40px 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.section.hero {
  padding: 10px 40px 0px;
  background-image: url('../img/surefooted-logo.svg');
  background-position: 0% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.section.no-pad {
  padding: 0px;
}

.section.bg-light-grey {
  background-image: url('../img/wavy-bottom-topo.svg');
  background-position: 50% 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.section.testimonial {
  padding-top: 80px;
}

.style-guide-block {
  display: block;
  margin-top: 80px;
  margin-bottom: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.container.skinny {
  max-width: 767px;
}

.container.slim {
  max-width: 1020px;
}

.container.super-skinny {
  max-width: 500px;
}

.container.conclusive-cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../img/cta-bg.svg');
  background-position: 0% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.para-big {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 34px;
}

.button {
  position: relative;
  z-index: 10;
  padding: 15px 22px;
  border-radius: 10px;
  background-color: #614fe8;
  -webkit-transition: background-color 200ms ease, opacity 200ms ease, color 200ms ease;
  transition: background-color 200ms ease, opacity 200ms ease, color 200ms ease;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

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

.button:active {
  background-color: #1b354b;
}

.button.form-submit {
  padding-right: 25px;
  padding-left: 25px;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.button.transparent {
  background-color: hsla(0, 0%, 100%, 0.25);
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.05);
}

.button.transparent:hover {
  background-color: #f4b82a;
  box-shadow: none;
}

.button.transparent.header-button:hover {
  background-color: #fff;
  color: #614fe8;
}

.button.white {
  background-color: #fff;
  color: #614fe8;
}

.button.white.cta-button {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-right: 25px;
  padding-left: 25px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
}

.button.white.cta-button:hover {
  background-color: #f4b82a;
  color: #fff;
}

.button.pricing-switch {
  padding: 8px 12px;
  border-style: solid;
  border-width: 2px;
  border-color: #614fe8;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  font-size: 15px;
}

.button.pricing-switch.monthly {
  border-radius: 0px 10px 10px 0px;
  background-color: transparent;
  color: #614fe8;
}

.rich-text {
  width: 70%;
  margin-right: auto;
  margin-bottom: 100px;
  margin-left: auto;
}

.rich-text p {
  margin-top: 15px;
  margin-bottom: 25px;
}

.rich-text blockquote {
  border-left-color: #f4b82a;
}

.rich-text img {
  border-radius: 10px;
}

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

.heading-jumbo {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 64px;
  line-height: 80px;
  text-transform: none;
}

.button-wrap {
  margin-top: 20px;
  margin-bottom: 20px;
}

.para-small {
  font-size: 14px;
  line-height: 1.6;
}

.logo {
  z-index: 1;
  max-width: 200px;
  min-width: 200px;
}

.menu {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 10px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.header {
  z-index: 999;
  display: block;
  margin-top: 0px;
  margin-right: 0px;
  margin-left: 0px;
  padding: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  color: #fff;
}

.navigation-item {
  color: #614fe8;
  font-size: 17px;
  font-weight: 600;
}

.navigation-item:hover {
  opacity: 0.75;
  color: #614fe8;
}

.navigation-item.w--current {
  color: #614fe8;
}

.navigation-item.w--current:hover {
  color: #1aaea5;
}

.navigation-item.w--current:active {
  color: #1aaea5;
}

.navigation-item.white {
  color: #fff;
}

.navigation-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  grid-column-gap: 20px;
}

.status-message {
  padding: 40px 30px;
  border-radius: 10px;
  background-color: #202020;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.status-message.form-success {
  margin-top: 40px;
  margin-bottom: 220px;
  background-color: #1aaea5;
}

.status-message.form-error-message {
  background-color: #614fe8;
}

.form-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: left;
}

.text-field {
  margin-bottom: 25px;
  padding: 25px 15px;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  -webkit-transition: border-color 400ms ease;
  transition: border-color 400ms ease;
  font-size: 14px;
  line-height: 26px;
}

.text-field:hover {
  border-color: #e3e6eb;
}

.text-field:active {
  border-color: #1b354b;
}

.text-field:focus {
  border-color: #1aaea5;
}

.text-field::-webkit-input-placeholder {
  color: rgba(50, 52, 58, 0.4);
}

.text-field:-ms-input-placeholder {
  color: rgba(50, 52, 58, 0.4);
}

.text-field::-ms-input-placeholder {
  color: rgba(50, 52, 58, 0.4);
}

.text-field::placeholder {
  color: rgba(50, 52, 58, 0.4);
}

.text-field.textarea {
  height: 200px;
  padding-top: 12px;
}

.contact-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.protected-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.protected-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 90px;
  padding-bottom: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.protected-heading {
  margin-bottom: 30px;
}

._404-content-wrap {
  margin-bottom: 20px;
}

.button-secondary {
  padding: 15px 22px;
  border-style: solid;
  border-width: 2px;
  border-color: #1aaea5;
  border-radius: 10px;
  background-color: transparent;
  -webkit-transition: background-color 200ms ease, opacity 200ms ease, color 200ms ease;
  transition: background-color 200ms ease, opacity 200ms ease, color 200ms ease;
  color: #1aaea5;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.button-secondary:hover {
  background-color: #614fe8;
  color: #fff;
}

.button-secondary:active {
  border-color: #1b354b;
  background-color: #1b354b;
}

.button-text-only {
  position: relative;
  display: inline-block;
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  -webkit-transition: opacity 200ms ease, color 200ms ease;
  transition: opacity 200ms ease, color 200ms ease;
  color: #614fe8;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

.button-text-only:hover {
  color: #1aaea5;
}

.button-text-only:active {
  color: #1b354b;
}

.button-text-only.pad-lr-30.white:hover {
  opacity: 0.75;
  color: #fff;
}

.button-icon {
  position: relative;
  top: 5px;
  display: inline-block;
  min-width: 16px;
  margin-right: -4px;
  margin-left: 8px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.text-highlight {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #614fe8;
  font-size: 17px;
  font-weight: 700;
}

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

.text-align-right {
  text-align: right;
}

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

.pad-tb-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.pad-tb-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pad-tb-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pad-lr-10 {
  padding-right: 10px;
  padding-left: 10px;
}

.pad-lr-20 {
  padding-right: 20px;
  padding-left: 20px;
}

.pad-lr-30 {
  padding-right: 30px;
  padding-left: 30px;
}

.bg-navy {
  background-color: #1b354b;
}

.white {
  opacity: 1;
  color: #fff;
}

.margin-lr-auto {
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

.margin-lr-20 {
  margin-right: 20px;
  margin-left: 20px;
}

.margin-tb-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.bg-light-grey {
  background-color: #f9fafc;
}

.bg-medium-grey {
  background-color: #eff2f7;
}

.icon {
  position: relative;
  max-width: 20px;
  min-width: 20px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.bg-turquoise {
  background-color: #1aaea5;
}

.button-text {
  display: inline-block;
}

.cta-wrapper {
  max-width: 600px;
  text-align: center;
}

.footer-link {
  padding-right: 60px;
  color: #1b354b;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
}

.footer-link.last {
  padding-right: 0px;
  color: #614fe8;
  font-weight: 600;
}

.footer-link.small {
  color: #9498af;
  font-size: 13px;
  line-height: 22px;
  font-weight: 300;
}

.flex-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.curve-top {
  position: relative;
  top: -4px;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  margin-bottom: -50px;
  color: #fff;
  -o-object-fit: cover;
  object-fit: cover;
}

.curve-bottom {
  position: relative;
  bottom: -4px;
  overflow: hidden;
  width: 100%;
  margin-top: -50px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  color: #fff;
  -o-object-fit: cover;
  object-fit: cover;
}

.fields-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.name-field-wrapper {
  width: 100%;
  margin-right: 27px;
}

.field-wrapper {
  width: 100%;
  padding-bottom: 20px;
}

.pad-tb-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.select-field {
  width: 200px;
  min-height: 50px;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  background-color: #fff;
}

.status-link {
  display: inline-block;
  color: #f4b82a;
}

.margin-tb-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.testimonial {
  color: #1b354b;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
}

.testimonial-creds {
  color: #1b354b;
  font-size: 16px;
}

.link {
  color: #614fe8;
}

.tabs-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 63px;
  margin-right: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(219, 219, 219, 0.85);
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px 4px rgba(236, 235, 235, 0.49);
  text-align: center;
}

.tab:hover {
  color: #614fe8;
}

.tab.w--current {
  border-width: 2px;
  border-color: #614fe8;
  background-color: transparent;
  color: #614fe8;
}

.tab.last {
  margin-right: 0px;
}

.tab.hidden {
  display: none;
}

.flex-horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-horizontal.wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.border-grey {
  border-style: solid;
  border-width: 1px;
  border-color: #f1f1f1;
}

.border-white {
  border: 1px solid #fff;
}

.image-circle {
  border-radius: 500px;
}

.image-circle.testimonial-photo {
  max-width: 90%;
}

.pad-lr-60 {
  padding-right: 60px;
  padding-left: 60px;
}

.pad-all-10 {
  padding: 10px;
}

.pad-all-20 {
  padding: 20px;
}

.pad-all-30 {
  padding: 30px;
}

.pad-all-60 {
  padding: 60px;
}

.flex-vertical {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-vertical.left {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.grid-2-col {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.grid-2-col.hero {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 30px;
}

.flex-align-centre {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.flex-justify-space {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.grid-3-col {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.grid-2x2 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.spacing-grid {
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 15px;
  grid-row-gap: 30px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto auto auto auto auto;
  grid-template-rows: auto auto auto auto auto;
}

.home-hero-image {
  position: absolute;
  overflow: hidden;
  margin-left: 40px;
  border-radius: 12px;
  box-shadow: 1px 0 30px 0 rgba(0, 0, 0, 0.2);
}

.hero-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-topo {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 0;
  width: 100%;
  background-image: url('../img/hero-topo.svg');
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.curve-bottom-hero-wrap {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: -5px;
  overflow: hidden;
  width: 110%;
  margin-left: -5%;
  color: #fff;
}

.text-block {
  font-size: 17px;
  letter-spacing: 0em;
}

.grid-2-col-2fr-x-3fr {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -ms-grid-columns: 2fr 3fr;
  grid-template-columns: 2fr 3fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.bg-purple {
  background-color: #614fe8;
}

.radius-6 {
  border-radius: 6px;
}

.margin-all-10 {
  margin: 10px;
}

.margin-all-20 {
  margin: 20px;
}

.margin-all-30 {
  margin: 30px;
}

.margin-all-60 {
  margin: 60px;
}

.radius-8 {
  border-radius: 8px;
}

.radius-10 {
  border-radius: 10px;
}

.spacer._30 {
  height: 30px;
}

.spacer._60 {
  height: 60px;
}

.spacer._120 {
  height: 120px;
}

.flex-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-right.rotate-interaction {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.grid-2-col-3fr-x-2fr {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -ms-grid-columns: 3fr 2fr;
  grid-template-columns: 3fr 2fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.grid-2-col-1fr-x-2fr {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.grid-2-col-2fr-x-1fr {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

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

.grid-home-about {
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 60px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.grid-home-about-left {
  position: relative;
  width: 100%;
  min-height: 900px;
  background-image: url('../img/home-about-left.webp');
  background-position: 100% 50%;
  background-size: 900px;
  background-repeat: no-repeat;
}

.grid-home-about-right {
  position: relative;
  width: 100%;
  min-height: 900px;
  background-image: url('../img/home-about-right.webp');
  background-position: 0% 50%;
  background-size: 900px;
  background-repeat: no-repeat;
}

.card {
  padding: 20px;
  border-radius: 6px;
  background-color: #fff;
}

.emoji-icon {
  font-size: 30px;
}

.flex-vertical-centre {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.feature-card-heading {
  padding-right: 20px;
  text-align: left;
}

.header-overlap {
  position: relative;
  z-index: 10;
  height: 75px;
  margin-bottom: -75px;
}

.logo-embed {
  height: 33px;
  color: #614fe8;
}

.logo-embed.white {
  color: #fff;
}

.curve-bottom-hero {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mobile-menu-overlay {
  display: none;
  opacity: 0;
}

.grid-2-col-1fr-x-3fr {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -ms-grid-columns: 1fr 3fr;
  grid-template-columns: 1fr 3fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.flex-top {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.flex-top.text-align-centre-mobile {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.flex-bottom {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.footer-copyright {
  display: inline;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 300;
}

.footer-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.purple {
  color: #614fe8;
}

.pricing-grid {
  padding-right: 40px;
  padding-left: 40px;
  grid-column-gap: 10px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr;
}

.pricing-col-title {
  font-size: 18px;
  line-height: 23px;
  font-weight: 600;
  text-align: center;
}

.pricing-price-cell {
  padding: 10px;
  color: #1aaea5;
  font-size: 30px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.pricing-price-cell.free {
  font-size: 24px;
}

.pricing-price-cell-recur-type {
  display: block;
  padding-top: 2px;
  color: #9498af;
  font-size: 11px;
  line-height: 16px;
  font-weight: 400;
  text-transform: none;
}

.pricing-row-descriptor {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}

.pricing-tick {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 14px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  color: #614fe8;
}

.pricing-cell-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-style: dashed none none;
  border-color: rgba(148, 152, 175, 0.25);
  border-top-width: 1px;
}

.pricing-cell-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #614fe8;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  text-align: center;
}

.pricing-tick-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 14px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  color: #614fe8;
}

.pricing-price-wrap.paying-monthly {
  display: none;
}

.pricing-accordion-feature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.pricing-accordion-feature-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.pricing-accordion-recur-type {
  display: block;
  color: #9498af;
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
}

.pricing-accordion-description {
  margin-bottom: 40px;
  font-style: italic;
}

.pricing-accordion-price {
  padding-right: 10px;
  padding-left: 10px;
  font-size: 30px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.pricing-accordion-price.contact-sales {
  color: #1aaea5;
  font-size: 14px;
  text-decoration: none;
  text-transform: none;
}

.pricing-accordion-plan-name {
  margin-bottom: 40px;
  font-style: italic;
}

.pricing-recur-switcher {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.pricing-switch-span {
  font-weight: 300;
}

.pricing-accordion {
  display: none;
}

.pricing-button {
  padding: 8px 12px;
  border-color: #614fe8;
  color: #614fe8;
  font-size: 14px;
  line-height: 20px;
}

.section-2 {
  display: none;
}

@media screen and (min-width: 1920px) {
  .curve-bottom-hero-wrap {
    bottom: -5px;
  }

  .flex-right {
    max-width: 100%;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 50px;
    line-height: 1.2;
  }

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

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

  .para-big {
    font-size: 18px;
    line-height: 1.6;
  }

  .button {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .button.transparent.header-button {
    background-color: #614fe8;
    box-shadow: none;
  }

  .heading-jumbo {
    font-size: 56px;
    line-height: 70px;
  }

  .menu {
    position: static;
    margin-right: 0px;
    margin-left: 0px;
    border-radius: 12px;
  }

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

  .navigation-item {
    padding-right: 30px;
    padding-bottom: 15px;
    padding-left: 30px;
    -webkit-transition: background-color 400ms ease, opacity 400ms ease, color 400ms ease;
    transition: background-color 400ms ease, opacity 400ms ease, color 400ms ease;
    color: #614fe8;
    text-align: center;
  }

  .navigation-item:active {
    background-color: #1b354b;
  }

  .navigation-item.white.purple {
    color: #614fe8;
  }

  .menu-button {
    padding: 10px 5px 10px 10px;
    color: #614fe8;
  }

  .menu-button.w--open {
    background-color: transparent;
  }

  .menu-button.white {
    color: #fff;
  }

  .navigation-items {
    margin-right: -10px;
    margin-left: -10px;
    padding-top: 20px;
    padding-bottom: 500px;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    background-color: #fff;
  }

  .form-wrapper {
    text-align: left;
  }

  .button-secondary {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .button-text-only {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .curve-top {
    min-height: 30px;
    margin-bottom: -30px;
  }

  .curve-bottom {
    height: 30px;
    margin-top: -30px;
  }

  .tab {
    margin-right: 10px;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 16px;
  }

  .grid-2-col.hero {
    grid-column-gap: 15px;
  }

  .home-hero-image {
    max-width: 500px;
    margin-top: -20px;
  }

  .curve-bottom-hero-wrap {
    min-height: 30px;
  }

  .grid-home-about {
    margin-right: -30px;
    margin-left: -30px;
    -ms-grid-columns: 1fr 2fr 1fr;
    grid-template-columns: 1fr 2fr 1fr;
  }

  .pricing-grid {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    grid-column-gap: 0px;
  }

  .pricing-col-title {
    font-size: 17px;
    line-height: 21px;
  }

  .pricing-price-cell {
    font-size: 26px;
  }

  .pricing-cell-wrap {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  ul {
    padding-left: 0px;
    list-style-type: none;
  }

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

  .section.hero {
    z-index: 1;
    overflow: visible;
  }

  .para-big {
    font-size: 18px;
    line-height: 1.5;
  }

  .button {
    padding: 12px 20px;
    font-size: 16px;
  }

  .rich-text {
    width: 90%;
    max-width: 470px;
    text-align: left;
  }

  .heading-jumbo {
    font-size: 50px;
    line-height: 64px;
  }

  .logo {
    padding-left: 0px;
  }

  .navigation-item {
    padding-right: 10px;
    padding-left: 10px;
  }

  .navigation-items {
    padding-bottom: 60px;
  }

  .text-field.textarea {
    text-align: left;
  }

  .button-secondary {
    padding: 12px 20px;
    border-color: #614fe8;
    color: #614fe8;
  }

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

  .footer-link {
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0px;
    padding-bottom: 15px;
  }

  .footer-link.last {
    padding-bottom: 40px;
  }

  .flex-left {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .fields-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .pad-tb-60 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .testimonial {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 18px;
    line-height: 1.6;
  }

  .testimonial-creds {
    font-size: 14px;
  }

  .tabs-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .tab {
    margin-right: 0px;
    margin-bottom: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .image-circle.testimonial-photo {
    max-width: 100px;
    margin-top: 60px;
  }

  .pad-all-60 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .flex-vertical.left.text-align-centre-mobile {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .grid-2-col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-2-col.hero {
    grid-row-gap: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .grid-3-col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

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

  .home-hero-image {
    position: relative;
    z-index: 1;
    overflow: visible;
    max-width: 100%;
    margin-top: 0px;
    margin-bottom: -100px;
  }

  .hero-wrapper {
    padding-top: 100px;
  }

  .curve-bottom-hero-wrap {
    bottom: 0px;
  }

  .grid-2-col-2fr-x-3fr {
    grid-row-gap: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .spacer._60 {
    height: 30px;
  }

  .spacer._120 {
    height: 60px;
  }

  .flex-right {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .grid-2-col-3fr-x-2fr {
    grid-row-gap: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-2-col-1fr-x-2fr {
    grid-row-gap: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-2-col-2fr-x-1fr {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-home-about {
    margin-right: 0px;
    margin-left: 0px;
    padding: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-home-about-left {
    display: none;
  }

  .grid-home-about-right {
    display: none;
  }

  .card {
    padding: 10px 20px;
  }

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

  .header-overlap {
    z-index: 999;
  }

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

  .mobile-menu-overlay {
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 1;
    display: none;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    padding-right: 0px;
    padding-bottom: 0px;
    background-color: #fff;
    opacity: 0;
  }

  .grid-2-col-1fr-x-3fr {
    grid-row-gap: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .flex-top.text-align-centre-mobile {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .pricing-grid {
    display: none;
  }

  .pricing-price-cell {
    margin-bottom: 10px;
    padding-left: 0px;
    color: #1aaea5;
    font-size: 18px;
    text-transform: uppercase;
  }

  .pricing-tick {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .pricing-cell-text {
    min-width: 14px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .pricing-tick-wrap {
    position: relative;
    top: 2.5px;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .pricing-tick-2 {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .pricing-price-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .pricing-price-wrap.paying-monthly {
    display: none;
  }

  .pricing-accordion-feature {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .pricing-accordion-feature-text {
    padding-left: 5px;
    line-height: 18px;
    text-align: left;
  }

  .pricing-accordion-description {
    margin-bottom: 0px;
    color: #9498af;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
  }

  .pricing-accordion-price {
    padding-left: 0px;
    color: #1aaea5;
    font-size: 26px;
    line-height: 32px;
    text-transform: uppercase;
  }

  .pricing-accordion-price.free {
    font-size: 22px;
    line-height: 30px;
  }

  .pricing-accordion-price.contact-sales {
    color: #614fe8;
    font-size: 20px;
    text-decoration: none;
    text-transform: none;
  }

  .pricing-accordion-wrap {
    margin-bottom: 10px;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
  }

  .pricing-accordion-header {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .pricing-accordion-features-wrap {
    display: none;
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .pricing-accordion-plan-name {
    margin-bottom: 5px;
    font-size: 26px;
    line-height: 32px;
    font-style: normal;
    font-weight: 600;
  }

  .pricing-accordion-toggle-arrow {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #9498af;
  }

  .pricing-accordion-header-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .pricing-accordion-toggle-arrow-icon {
    position: absolute;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    width: 10px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .pricing-accordion {
    display: block;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 27px;
    line-height: 38px;
  }

  h2 {
    font-size: 26px;
    line-height: 1.4;
  }

  h3 {
    font-size: 25px;
    line-height: 35px;
  }

  h4 {
    font-size: 22px;
  }

  img {
    border-radius: 0px;
  }

  .section {
    padding: 20px;
  }

  .button.pricing-switch {
    padding: 5px 10px;
    font-size: 13px;
    line-height: 18px;
  }

  .rich-text {
    width: 100%;
    max-width: none;
  }

  .heading-jumbo {
    font-size: 30px;
    line-height: 48px;
    font-weight: 600;
  }

  .menu {
    margin-left: 15px;
  }

  .header {
    margin: 5px;
    padding: 8px;
  }

  .navigation-item.w--current {
    color: #fff;
  }

  .navigation-item.w--current:hover {
    color: #1aaea5;
  }

  .menu-button.w--open {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .button-text-only.pad-lr-30.white {
    display: none;
  }

  .pad-lr-30 {
    padding-right: 0px;
    padding-left: 0px;
  }

  .pad-lr-60 {
    padding-right: 0px;
    padding-left: 0px;
  }

  .feature-card-heading {
    padding-right: 10px;
    text-align: left;
  }

  .header-overlap {
    margin-bottom: -85px;
  }

  .curve-bottom-hero {
    overflow: hidden;
  }

  .pricing-price-cell {
    padding-left: 0px;
  }

  .pricing-tick {
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
  }

  .pricing-tick-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .pricing-tick-2 {
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
  }

  .pricing-accordion-recur-type {
    font-size: 10px;
    line-height: 18px;
  }

  .pricing-accordion-description {
    font-size: 14px;
    line-height: 20px;
  }

  .pricing-accordion-price {
    padding-right: 5px;
    padding-left: 0px;
    font-size: 22px;
    line-height: 30px;
  }

  .pricing-accordion-price.free {
    font-size: 18px;
    line-height: 26px;
  }

  .pricing-accordion-plan-name {
    font-size: 20px;
    line-height: 28px;
  }
}

#w-node-_7959e821-cc2c-7dbf-058d-c7821988e98e-7a2221ec {
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-_91399895-abd5-b8dd-4158-be616a1f9d99-7a2221ec {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-_91399895-abd5-b8dd-4158-be616a1f9d9a-7a2221ec {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-d2cf8a1e-6987-83bd-7b38-9c9851f131d4-7a2221ec {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_44cd175c-7509-3b60-5a1c-08a099564359-7a2221ec {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-a8fe1936-a965-ba6a-86ea-c1c2a6198f53-7a2221ec {
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

#w-node-da33a47a-682c-2ae2-d0c1-e23a95b5f559-7a2221ec {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_8c79606d-de7f-b9d5-20e4-48199258301e-9258301b {
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-_8c79606d-de7f-b9d5-20e4-481992583023-9258301b {
  -ms-grid-column-align: end;
  justify-self: end;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-e0606c4f-ee52-2447-9e50-272c753e4da5-753e4da5 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_901d856b-9939-7c30-b7c3-489975c5947c-75c59479 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_7775e1f6-fada-b7af-c834-ceb0c20e60bc-c20e60b7 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_8bdedb50-0786-2913-d91d-fa8a885b3143-f5222208 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_12d7940c-8f35-5301-9dd7-d28ffa989fa2-f5222208 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_86241fb8-14fe-0499-3ffc-a7977a08dd59-f5222208 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-e238a8ab-84b0-647f-0489-d8b6ee37fc29-f5222208 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-fb1ab63a-e481-2ed5-5fd1-653a0af57df8-f5222208 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-eebde9f9-e166-c293-a412-642bc18b8e05-f5222208 {
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
}

#w-node-_71546a78-08ac-ba59-0806-36d78fde4c12-f5222208 {
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
}

#w-node-_99154e7f-45f7-b0c1-5134-a2689c90c114-f5222208 {
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
}

#w-node-def53572-ba6b-53c0-e200-6a45fd004b59-f5222208 {
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
}

#w-node-_3e141ab6-216b-e8b2-57ac-8658c231b9c7-f5222208 {
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
}

#w-node-_3e23e638-426b-f3c0-b600-c7b371d0a738-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-d65229e7-a183-1647-1605-1856e62f1d92-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_93cedfd4-4b28-4167-4c07-227e085b9f17-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-e59a1bc9-d1a1-3b87-af0a-f47539ba7d71-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_80bd6101-29b0-dec0-4989-5671e43cb87e-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_303ec639-68ee-d0b4-86a6-9b2a95ec10d5-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_6653ad0b-d26a-5f1a-ef17-0e209274f371-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_02817fe1-7e82-eb64-4058-350aaab21538-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-ec52a2f8-76f3-c5d1-77d0-f4a3da93635f-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_425206f9-c31d-d53b-bbd5-65d75031b8f7-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_7c50f8ef-4dfe-c5aa-d280-f506714f7058-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-a65c5bf7-c086-2be8-03a6-b141ded43c61-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-c0661d4f-a11e-5691-f064-ad9aed9722d9-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_553001ae-f52f-b7a7-2d3a-96c28cf88c2a-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-a4a42ef0-234a-555c-e347-d7c433b5f1dc-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_3e06aa23-2e38-e9f6-96ea-e5a4506028ae-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-f4834cde-7a7e-bf88-7ee6-554a01238928-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_8e3635b5-d78f-be7e-e38c-8e1e896c6371-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-dc200c23-d6a4-b68d-8ae1-ca34abd46041-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-b0bcfdc4-dca0-f416-5ba4-387338b198fd-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_59885d2c-5bfe-65bd-ee91-d0bbc9c638bf-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_9a66479c-555a-65fb-f744-fc9760e0f974-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-a5961954-fac9-075b-65e1-593449f6d0f5-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-ec369a67-0eba-2f29-538f-41a57aa484ba-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-ef844fae-edc6-cdfb-ccc8-de3010e3c525-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_664470ae-0e64-630b-870e-a4e7b4461d46-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_9965e751-6268-ead3-0bf4-fe818a74cb8a-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_379155ad-a1c2-349a-4a6a-32662a49af33-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_38e2b07c-d3c6-52ef-cfdf-e02f1aa2a24b-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_3bde5b1d-09d4-e69c-33f0-ac63f668a18d-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_1b3a13b8-2e3f-4a5c-8289-90dd05972e07-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-b9fc54ed-9b61-cc1c-463a-c864cdae8649-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-d8f32de6-67ca-2dde-3666-c3593ab4b6eb-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_8075c06d-cf22-f57c-bfb6-218cb192a202-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_6798b60c-1aae-694b-f25b-25f770f4c0c8-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_9455ad6e-27cc-ad15-9013-dac295322591-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-a465e9f8-d1b2-10a7-6aaa-cf1e2cedc5ac-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_6bc6054c-0e9e-dd32-0628-67b4709cdada-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-d1951c23-6203-ec7d-0a2e-f8b9566973ff-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_7d1f1efc-61a8-426d-14a6-0cf641f270bd-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-e1eb30f3-4c00-833a-edda-b625ce51b3fd-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-d1823458-4038-6458-1a0b-18d8ce7b929d-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_818032ab-0c8b-7496-4c92-234e628f54f8-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-c6dd5fdf-5d12-8579-6dc0-20fba88367a5-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_234c55dc-365a-7638-1dca-b8feaa0f7bf1-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_193ae870-4830-398a-4332-0d77831f7356-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_955135a9-b507-1ec7-6c47-7ddb4f77e4fc-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_1dd70615-2485-30c4-e63d-2c3e52f2165f-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_737df579-5eda-b861-36a6-7d35884f135b-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-b2e9b725-b1b3-80fe-9aca-00aa437d18ea-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-e4e3dcb0-c9ea-a6c8-1a5d-c69fd05a1071-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_87a1ccdb-50de-d1fa-4779-44f7328414e7-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-dd311388-c3dc-c68e-9ccc-7128b2bc8b48-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-aa99b0a8-1731-c3ad-f8f7-b9886c15d8a4-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_84a19ecf-7c22-4999-0d88-3adbf1ae1e98-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-cb50fb7a-2a0b-9d8c-45a9-b7f99f032221-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_2bb13c61-7a0d-1338-9c74-2a4cc984575e-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_955db501-a534-9509-d254-e844cb168b6b-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-db95c2c0-81f0-b4c6-d6fb-718be726fcee-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_8bea063b-476e-93e0-9f2a-97d4e828a3da-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_84b680d8-6eb8-52fe-fa3f-5cdb1d9ec5d5-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_4bed91db-1478-187d-dbfa-abf2178189c3-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_418f9d6c-aa0e-adc4-affc-42b1a2545c86-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_77670893-7f3c-8718-ca0e-d328ccdfaf50-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_7dd2ca1c-2b83-06b8-4819-bde2ecc4ab63-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-f1ac5b8a-56e6-94bb-b566-eccde041bd10-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_0f10593d-e249-b5cd-28dd-61a02045a575-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-ad7ddc54-03d0-6705-b7de-10edc189e6d8-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_9916aaab-236b-ad3c-6763-47c74a4da263-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_73f7092e-b148-3031-cbe1-882959a3bf80-f5222208 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

#w-node-_6f3cbbbc-0354-f3d9-7dd7-a8327d0be0b1-f5222208 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-_3b5af048-4072-a990-f381-9d945905be28-f5222208 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-_8cc489db-f00b-bbf2-1b4c-86d1f5f0d102-f5222208 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-_8cc489db-f00b-bbf2-1b4c-86d1f5f0d102-f5222208:hover {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-_250b45e4-b4f0-ad62-915b-3770f9c2297f-f5222208 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-_250b45e4-b4f0-ad62-915b-3770f9c2297f-f5222208:hover {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-_21b8a332-a3b4-d6e4-049c-e4862c71558e-f5222208 {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-_21b8a332-a3b4-d6e4-049c-e4862c71558e-f5222208:hover {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

@media screen and (max-width: 767px) {
  #w-node-_7959e821-cc2c-7dbf-058d-c7821988e98e-7a2221ec {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -ms-grid-column-align: stretch;
    justify-self: stretch;
  }

  #w-node-d2cf8a1e-6987-83bd-7b38-9c9851f131d4-7a2221ec {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }

  #w-node-a8fe1936-a965-ba6a-86ea-c1c2a6198f53-7a2221ec {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }

  #w-node-da33a47a-682c-2ae2-d0c1-e23a95b5f559-7a2221ec {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }

  #w-node-_8c79606d-de7f-b9d5-20e4-481992583023-9258301b {
    -ms-grid-column-align: center;
    justify-self: center;
  }

  #w-node-_901d856b-9939-7c30-b7c3-489975c5947c-75c59479 {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
}

@font-face {
  font-family: 'Averta';
  src: url('../fonts/AvertaStd-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('../fonts/AvertaStd-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('../fonts/AvertaStd-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('../fonts/AvertaStd-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('../fonts/AvertaStd-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('../fonts/AvertaStd-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('../fonts/AvertaStd-SemiboldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Averta';
  src: url('../fonts/AvertaStd-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}