@font-face {
  font-family: Generalsans Variable;
  src: url('../fonts/GeneralSans-Variable.ttf') format("truetype");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-ExtraLight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-ExtraBold.ttf') format("truetype"), url('../fonts/Inter-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-Thin.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Beatrice;
  src: url('../fonts/Beatrice-Bold.otf') format("opentype"), url('../fonts/Beatrice-ExtraBold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Beatrice;
  src: url('../fonts/Beatrice-ExtraBold-Italic.otf') format("opentype"), url('../fonts/Beatrice-Bold-Italic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Beatrice;
  src: url('../fonts/Beatrice-Regular-Italic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Beatrice;
  src: url('../fonts/Beatrice-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Beatrice;
  src: url('../fonts/Beatrice-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Beatrice;
  src: url('../fonts/Beatrice-Medium-Italic.otf') format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Beatrice;
  src: url('../fonts/Beatrice-SemiBold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Beatrice;
  src: url('../fonts/Beatrice-SemiBold-Italic.otf') format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Beatrice;
  src: url('../fonts/Beatrice-Thin.otf') format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Beatrice;
  src: url('../fonts/Beatrice-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Beatrice;
  src: url('../fonts/Beatrice-Thin-Italic.otf') format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Beatrice;
  src: url('../fonts/Beatrice-Light-Italic.otf') format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

:root {
  --font--body: var(--font-family--general-sans);
  --font-color--body: var(--color--slate-blue);
  --font--heading: var(--font-family--figtree);
  --font-color--heading: var(--color--midnight-blue);
  --color--black: black;
  --color--white: white;
  --color--green: #347774;
  --color--light-blue: #eff9f8;
  --color--yellow: #f2c94c;
  --color--light-green: #e6f7f1;
  --radius--radius-1: 20px;
  --radius--radius-2: 10px;
  --font-color--text-highlight: var(--color--green);
  --color--pink: #4acbbc;
  --font-family--figtree: Figtree, sans-serif;
  --font-family--general-sans: "Generalsans Variable", sans-serif;
  --color--midnight-blue: #2b2e45;
  --color--slate-blue: #353642;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  font-family: var(--font--body);
  color: var(--font-color--body);
  font-size: 14px;
  line-height: 20px;
}

h1 {
  font-family: var(--font--heading);
  color: var(--font-color--heading);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  font-family: var(--font--heading);
  color: var(--font-color--heading);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  font-family: var(--font--heading);
  color: var(--font-color--heading);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  font-family: var(--font--heading);
  color: var(--font-color--heading);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  font-family: var(--font--heading);
  color: var(--font-color--heading);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  font-family: var(--font--heading);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  font-family: var(--font--body);
  color: var(--font-color--body);
  margin-top: 0;
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

figure {
  margin-bottom: 0;
}

.upper-heading {
  font-family: var(--font--heading);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.upper-heading.highlighting-text {
  color: #18c9b4;
}

.display-and-page-title {
  color: var(--font-color--heading);
  letter-spacing: -.01em;
  font-family: Beatrice, Arial, sans-serif;
  font-size: 51px;
  font-weight: 500;
  line-height: 70px;
}

.cta-heading {
  font-family: var(--font--heading);
  color: var(--font-color--heading);
  letter-spacing: -.01em;
  font-size: 52px;
  font-weight: 600;
  line-height: 70px;
}

.cta-heading.white-font-color {
  font-family: Beatrice, Arial, sans-serif;
  font-weight: 500;
}

.h1 {
  font-family: var(--font--heading);
  color: var(--font-color--heading);
  font-size: 60px;
  font-weight: 600;
  line-height: 78px;
}

.h2 {
  color: var(--font-color--heading);
  letter-spacing: -.01em;
  font-family: Beatrice, Arial, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 64px;
}

.h2.white-font-color {
  font-family: Beatrice, Arial, sans-serif;
  font-size: 40px;
  line-height: 54px;
}

.h3 {
  color: var(--font-color--heading);
  font-family: Beatrice, Arial, sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 54px;
}

.h3.white-font-color {
  color: #005451;
  font-weight: 300;
}

.h4 {
  font-family: var(--font--heading);
  color: var(--font-color--heading);
  letter-spacing: 0;
  font-size: 26px;
  font-weight: 600;
  line-height: 38px;
}

.h5 {
  color: var(--font-color--heading);
  font-family: Beatrice, Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
}

.h6 {
  font-family: var(--font--heading);
  color: var(--font-color--heading);
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.body {
  letter-spacing: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.body---variant-1 {
  color: var(--font-color--body);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.body---variant-2 {
  letter-spacing: -.01em;
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
}

.body---variant-3 {
  color: var(--color--black);
  letter-spacing: -.005em;
  order: 0;
  align-self: center;
  font-family: Inter, Arial, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
  display: flex;
}

.body---variant-3.white-font-color {
  text-align: center;
  justify-content: center;
  align-self: center;
  align-items: center;
}

.menu {
  letter-spacing: 0;
  color: #0e5e56;
  padding: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease;
  position: relative;
}

.menu:hover, .menu.w--current {
  color: #18c9b4;
}

.inforbar-text {
  letter-spacing: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.small-title {
  font-family: var(--font--heading);
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
}

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

.color-green {
  background-color: var(--color--green);
}

.color-pink-light {
  background-color: var(--color--light-blue);
}

.color-heading {
  background-color: var(--font-color--heading);
}

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

.color-yellow {
  background-color: var(--color--yellow);
}

.template-utility-info-container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  background-color: var(--color--light-green);
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.hero-section {
  z-index: 2;
  background-color: var(--color--light-green);
  background-image: url('../images/Hero-Bg.svg');
  background-position: 50% 10%;
  background-repeat: no-repeat;
  background-size: 98%;
  padding-top: 190px;
  position: relative;
  overflow: hidden;
}

.main-container {
  width: 100%;
  max-width: 1290px;
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;
}

.hero-row-1 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.hero-text-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 515px;
  padding-top: 50px;
  padding-bottom: 185px;
  text-decoration: none;
  display: flex;
}

.tag-wrapper {
  grid-column-gap: 10px;
  background-color: #fff;
  border-radius: 100px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 9px 20px;
  text-decoration: none;
  display: flex;
}

.primary-btn {
  grid-column-gap: 8px;
  font-family: var(--font--heading);
  color: var(--color--white);
  text-align: center;
  background-color: #18c9b4;
  border-radius: 100px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 14px 30px;
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
  text-decoration: none;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease;
  display: flex;
}

.primary-btn:hover {
  background-color: #0e5e56;
}

.primary-btn.with-white-hover-effect {
  font-family: Beatrice, Arial, sans-serif;
  font-weight: 400;
}

.primary-btn.with-white-hover-effect:hover {
  background-color: var(--color--white);
  color: #18c9b4;
}

.point-blocks-wrapper {
  grid-column-gap: 27px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.point-block {
  grid-column-gap: 8px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.check-icon {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 14.4288px;
  height: 11px;
  text-decoration: none;
  display: flex;
}

.hero-image-wrapper {
  z-index: 10;
  width: 100%;
  max-width: 551px;
  max-height: 1042px;
  position: relative;
}

.hero-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.hero-overview {
  z-index: 2;
  background-image: linear-gradient(135deg, #108d88, #015451);
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  width: 100vw;
  margin-top: -300px;
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
}

.hero-container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-rating-wrapper {
  z-index: 10;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-radius: var(--radius--radius-1);
  background-color: var(--color--white);
  margin-top: auto;
  padding: 30px;
  display: flex;
  position: relative;
}

.capterra-review-wrapper {
  grid-row-gap: 11px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.reveiwo {
  object-fit: contain;
  justify-content: center;
  align-items: center;
  width: 138px;
  height: 37px;
  text-decoration: none;
  display: flex;
}

.yellow-rating-stars {
  object-fit: contain;
  justify-content: center;
  align-items: center;
  width: 111.699px;
  height: 16px;
  text-decoration: none;
  display: flex;
}

.shadow-1 {
  box-shadow: 0 10px 50px #352d6c1a;
}

.hero-upper-text {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.hero-spacer {
  flex: none;
  height: 128px;
}

.trust-pilot-score-wrapper {
  color: #242635;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.rating-stars {
  width: 8.125rem;
  margin-top: 10px;
  margin-bottom: 10px;
}

.divider-line {
  background-color: var(--font-color--body);
  opacity: .1;
  width: 1px;
  height: 100%;
  margin: 0;
}

.heading-font-color {
  color: var(--font-color--heading);
}

.body-font-color {
  color: var(--font-color--body);
}

.white-font-color {
  color: var(--color--white);
}

.hero-overview-title-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-flow: column;
  max-width: 690px;
  display: flex;
}

.highlighting-text {
  color: var(--color--green);
}

.hero-overview-container {
  grid-column-gap: 95px;
  grid-row-gap: 95px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  display: flex;
  position: relative;
}

.hero-lighbox {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  display: flex;
  position: relative;
}

.hero-lightbox-image {
  border-radius: var(--radius--radius-1);
  object-fit: cover;
}

.play-icon {
  color: var(--color--white);
  background-color: #fff;
  border-radius: 50%;
  width: 95px;
  height: 95px;
  position: absolute;
  inset: auto;
}

.play-icon:hover {
  background-color: var(--color--white);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  box-shadow: 0 2px 5px #18181833;
}

.hero-features-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.hero-features-text-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 435px;
  display: flex;
}

.hero-features-btn-wrapper {
  margin-top: 10px;
  font-family: Beatrice, Arial, sans-serif;
  font-weight: 300;
}

.hero-features-blocks-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  width: 100%;
  max-width: 390px;
  display: flex;
}

.hero-feature-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-radius: var(--radius--radius-1);
  background-color: var(--color--white);
  justify-content: flex-start;
  align-items: center;
  padding: 30px;
  transition: transform .3s;
  display: flex;
}

.hero-feature-block:hover {
  transform: scale(1.05);
}

.hero-feature-block-icon {
  object-fit: contain;
  flex: none;
}

.hero-feature-block-text-wrapper {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  flex-flow: column;
  display: flex;
}

.overview-section {
  z-index: 1;
  padding-top: 130px;
  padding-bottom: 80px;
  position: relative;
}

.overview-container {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  display: flex;
}

.overview-block {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: center;
  align-items: center;
  margin-top: -75px;
  margin-bottom: -75px;
  display: flex;
  overflow: hidden;
}

.overview-block-image-wrapper {
  width: 608px;
  height: 715px;
}

.overview-block-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.overview-block-text-wrapper {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  flex-flow: column;
  max-width: 485px;
  display: flex;
}

.overview-block-para-wrapper {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  flex-flow: column;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  margin-top: 12px;
  padding-left: 0;
  display: flex;
}

.ternary-link {
  font-family: var(--font--heading);
  color: var(--font-color--heading);
  justify-content: flex-start;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  display: flex;
}

.ternary-link-text-1 {
  flex: none;
}

.ternary-link-divider {
  border: 1px solid;
  flex: none;
  width: 15px;
  margin-left: 5px;
  margin-right: 5px;
}

.tenary-link-arrow {
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  display: flex;
}

.tenary-link-arrow.small-version {
  margin-top: 1px;
}

.tenary-link-arrow.small-version-2 {
  margin-top: 1px;
  margin-left: 0;
}

.ternary-link-text-2 {
  flex: none;
}

.cta-section {
  background-image: radial-gradient(circle at 0%, #005451, #18c9b4);
  padding-top: 150px;
  padding-bottom: 150px;
}

.cta-container {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 555px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  display: flex;
}

.category-section {
  background-color: var(--color--white);
  padding-top: 135px;
  padding-bottom: 135px;
  position: relative;
}

.category-container {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  flex-flow: column;
  display: flex;
}

.category-row-1 {
  grid-column-gap: 65px;
  grid-row-gap: 65px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.category-heading-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  text-align: center;
  flex-flow: column;
  align-self: auto;
  max-width: 575px;
  display: flex;
}

.category-blocks-wrapper {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.category-block {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  border-radius: var(--radius--radius-2);
  background-color: var(--color--white);
  flex-flow: column;
  padding: 45px 30px 35px;
  display: flex;
}

.category-block-icon {
  border-radius: 50%;
  width: 64px;
  height: 64px;
  margin-bottom: 27px;
  box-shadow: 0 10px 20px #2b2e4512;
}

.category-block-btn-wrapper {
  margin-top: 18px;
}

.ternary-small-text {
  font-family: Beatrice, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.shadow-2 {
  box-shadow: 0 5px 50px 10px #1b1a2d12;
}

.category-accordion-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.accordion-blocks-container {
  color: var(--color--white);
  text-align: left;
  width: 100%;
  display: flex;
}

.accordion-para-wrapper {
  overflow: hidden;
}

.accordion-content-wrapper {
  flex-direction: column;
  width: 100%;
  max-width: 674px;
  display: flex;
}

.accordion-row-wrapper {
  justify-content: space-between;
  width: 100%;
  padding-bottom: 0;
  display: flex;
}

.accordion-block {
  border-radius: var(--radius--radius-2);
  background-color: #fff;
  border: 1px solid #2b2e451a;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
  padding: 20px 30px;
  display: inline-block;
}

.accordion-block.w--current {
  background-color: #ddd0;
}

.accordion-block.v2 {
  box-shadow: none;
  background-color: #fff0;
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: #2b2e451a;
  border-radius: 0;
  margin-bottom: 0;
  padding: 25px 12px;
}

.accordion-block.v1 {
  background-color: var(--color--light-blue);
  color: var(--color--green);
  -webkit-text-stroke-color: var(--color--black);
  mix-blend-mode: normal;
  border-color: #eff9f8;
  border-radius: 10px;
}

.accordion-block.v1:hover {
  background-color: var(--color--light-blue);
  background-image: linear-gradient(to bottom, var(--color--light-blue), var(--color--light-blue));
  pointer-events: auto;
  color: var(--color--light-blue);
  overflow-wrap: normal;
  -webkit-text-fill-color: inherit;
  vertical-align: baseline;
  object-fit: fill;
  background-clip: border-box;
  border-radius: 10px;
}

.accordion-para {
  padding-top: 10px;
}

.accordion-blocks-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  column-count: 2;
  column-rule-style: none;
  flex-flow: column wrap;
  column-gap: 20px;
  display: block;
}

.accordion-blocks-wrapper.display-flex {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -webkit-text-stroke-color: var(--color--light-blue);
  display: flex;
}

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

.category-accordion-text-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  max-width: 415px;
  display: flex;
}

.category-accordion-link-wrapper {
  margin-top: 20px;
}

.accordion-lottie {
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  display: flex;
}

.review-section {
  padding-top: 150px;
  padding-bottom: 150px;
  overflow: hidden;
}

.review-section.bg-gradient {
  background-image: linear-gradient(135deg, #00beb2, #1c6d64);
}

.bg-gradient {
  background-image: linear-gradient(135deg, #3a2d98, #4638b2);
}

.review-container {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: center;
  flex-flow: column;
  display: flex;
}

.review-loop-container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  margin-top: 40px;
  display: flex;
}

.review-block {
  grid-row-gap: 10px;
  background-color: #fff;
  border-radius: 20px;
  flex-direction: column;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 395px;
  padding: 35px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 6px 20px #1a1c4d14;
}

.review-rating-wrapper {
  grid-column-gap: 20px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
  text-decoration: none;
  display: flex;
}

.review-stars {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 109px;
  height: 16.2619px;
  text-decoration: none;
  display: flex;
}

.review-rating {
  grid-row-gap: 10px;
  background-color: #efeafa;
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
  display: flex;
}

.review-rating.green {
  background-color: #e6f7f1;
}

.review-rating.yellow {
  background-color: #faf8ea;
}

.reviewer-details-wrapper {
  grid-column-gap: 10px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  text-decoration: none;
  display: flex;
}

.reviewer-image {
  object-fit: cover;
}

.reviewer-details {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.review-loop-blocks-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  text-align: left;
  flex: none;
  display: flex;
}

.pricing-section {
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
}

.prcing-container {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: center;
  flex-flow: column;
  display: flex;
}

.pricing-blocks-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: center;
  align-items: stretch;
  margin-top: 45px;
  display: flex;
}

.pricing-block {
  grid-row-gap: 8px;
  background-color: #fff;
  border-top: 5px solid #000;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 350px;
  padding: 40px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 5px 50px #00000012;
}

.pricing-block.starter {
  color: #1e978a;
  border-top-color: #47c8c1;
}

.pricing-block.premium {
  color: var(--color--green);
  border-top-color: #005451;
  width: 100%;
}

.pricing-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #00beb2;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-end;
  margin-top: 22px;
  margin-bottom: 38px;
  text-decoration: none;
  display: flex;
}

._19-mo-0 {
  text-align: center;
  letter-spacing: undefinedundefined;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 37px;
  font-weight: 500;
  line-height: 56px;
  text-decoration: none;
}

.price {
  text-align: center;
  letter-spacing: undefinedundefined;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 80px;
  font-weight: 500;
  line-height: 80px;
  text-decoration: none;
}

._19-mo-2 {
  text-align: center;
  letter-spacing: undefinedundefined;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 56px;
  text-decoration: none;
}

.trusted-by-section {
  background-color: var(--color--light-green);
  padding-top: 100px;
  padding-bottom: 100px;
}

.trusted-by-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.trusted-by-blocks-container {
  grid-column-gap: 6.25rem;
  grid-row-gap: 6.25rem;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 61.875rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.trusted-by-block {
  flex: none;
}

.trusted-by-blocks-wrapper {
  grid-column-gap: 6.25rem;
  grid-row-gap: 6.25rem;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.trusted-by-loop-gradient-right {
  z-index: 1;
  background-image: linear-gradient(270deg, #e4f8f1 15%, #8e269000);
  width: 10%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.trusted-by-loop-gradient-left {
  z-index: 1;
  background-image: linear-gradient(90deg, #e4f8f1 15%, #8e269000);
  width: 10%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.trusted-by-block-image {
  object-fit: contain;
  width: 7.375rem;
  height: 2.5rem;
}

.trusted-by-rows-wrapper {
  grid-column-gap: 6.25rem;
  grid-row-gap: 6.25rem;
  display: flex;
}

.trusted-by-wrapper {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.ternary-link-v2 {
  font-family: var(--font--heading);
  color: var(--color--white);
  justify-content: flex-start;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  display: flex;
}

.faqs-section {
  color: var(--color--white);
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
}

.faqs-container {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: center;
  -webkit-text-stroke-color: var(--color--white);
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.faqs-container.fade-in-200 {
  color: var(--color--white);
  background-color: #fff;
}

.faqs-accordion-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: #fff;
  justify-content: center;
  align-items: flex-start;
  margin-top: 65px;
  display: flex;
}

.accordion-arrow {
  width: 18px;
  height: 11px;
}

.hidden {
  display: none;
}

.app-links-section {
  background-image: url('../images/App-Links-Bg.svg');
  background-position: 100% 0;
  background-size: cover;
  padding-top: 105px;
}

.app-links-container {
  grid-column-gap: 155px;
  grid-row-gap: 155px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.category-accordion-spacer {
  width: 100%;
  max-width: 220px;
}

.category-accordion-wrapper {
  width: 100%;
  max-width: 430px;
}

.app-link-text-wrapper {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: column;
  width: 100%;
  max-width: 420px;
  padding-top: 75px;
  display: flex;
}

.app-links-btns-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 17px;
  display: flex;
}

.btn-svg {
  justify-content: center;
  align-items: center;
  width: 21px;
  height: 21px;
  display: flex;
}

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

.secondary-btn {
  grid-column-gap: 8px;
  border: 2px solid var(--color--white);
  font-family: var(--font--heading);
  color: var(--color--white);
  text-align: center;
  background-color: #fff0;
  border-radius: 100px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 14px 30px;
  font-size: 17px;
  font-weight: 600;
  line-height: 26px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.secondary-btn:hover {
  background-color: var(--color--white);
  color: var(--font-color--heading);
}

.app-link-image-wrapper {
  width: 100%;
  max-width: 450px;
}

.app-link-image {
  width: 100%;
  height: 100%;
}

.footer-social-link {
  color: var(--font-color--body);
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.footer-social-link:hover {
  color: var(--font-color--text-highlight);
}

.footer-container {
  grid-column-gap: 22.5rem;
  grid-row-gap: 22.5rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-block {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
  line-height: 28px;
  display: flex;
}

.footer-block.with-fixed-width {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  width: 13.438rem;
  font-weight: 500;
}

.footer-section {
  border-bottom: 1px solid #e4ebf3;
  padding-top: 4.063rem;
  padding-bottom: 4.063rem;
  position: relative;
}

.footer-title {
  font-family: var(--font--heading);
  color: var(--font-color--heading);
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

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

.footer-social-block {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.main-container-2 {
  width: 100%;
  max-width: 77.188rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.footer-link {
  color: var(--font-color--body);
  letter-spacing: .3px;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  transition: all .3s;
  display: flex;
}

.footer-link:hover {
  color: var(--font-color--text-highlight);
  transform: translate(.313rem);
}

.footer-link.new-tag {
  background-image: url('../images/New-Tag.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 47px 22px;
  padding-right: 55px;
}

.footer-link.hiring-tag {
  background-image: url('../images/Hiring-Tag.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 47px 22px;
  padding-right: 55px;
}

.footer-content {
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  max-width: 780px;
  display: flex;
}

.announcement-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--color--white);
  text-align: center;
  background-color: #18c9b4;
  justify-content: center;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 11px;
  display: flex;
}

.announcment-link {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  font-family: var(--font--heading);
  color: var(--color--white);
  justify-content: flex-start;
  align-items: center;
  width: 70px;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  transition: all .3s;
  display: flex;
}

.announcment-link:hover {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.nav-container {
  z-index: 10;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1290px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  display: flex;
  position: relative;
}

.navbar-wrapper {
  z-index: 100;
  width: 100%;
  height: 105px;
  position: absolute;
  inset: 0% 0% auto;
}

.overlay {
  display: none;
}

.nav-menu-wrapper {
  grid-column-gap: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.navbar {
  z-index: 100;
  background-color: #fff0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: static;
}

.mobile-nav-logo {
  display: none;
}

.nav-buttons {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-menu {
  width: 100%;
  height: 100%;
}

.nav-links {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.sticky-navbar-wrapper {
  z-index: 105;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 82px;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
  transform: translate(0, -100vh);
  box-shadow: 0 3px 10px #5557771a;
}

.secondary-btn-v2 {
  grid-column-gap: 8px;
  border: 2px solid var(--font-color--heading);
  font-family: var(--font--heading);
  color: var(--font-color--heading);
  text-align: center;
  background-color: #fff0;
  border-radius: 100px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 7px 26px;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.secondary-btn-v2:hover {
  color: var(--color--white);
  background-color: #18c9b4;
  border-color: #017975;
}

.anchor-div {
  z-index: -1;
  width: 100%;
  height: calc(100% + 80px);
  position: absolute;
  inset: 0%;
  transform: translate(0, -80px);
}

.anchor-div.with-100-vh {
  background-color: #fff;
  height: calc(100vh + 80px);
}

.utility-section {
  z-index: 2;
  background-color: var(--color--light-green);
  background-image: url('../images/Hero-Bg.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 1735px;
  height: 100vh;
  padding-top: 8%;
  position: relative;
  overflow: hidden;
}

.utility-container {
  flex-flow: column;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  display: flex;
}

.utility-text-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  width: 100%;
  max-width: 480px;
  display: flex;
}

.points-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: #242635;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 5px;
  display: flex;
}

.point {
  grid-column-gap: .75rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.point-check-mark {
  width: 22px;
  height: 22px;
}

.list {
  font-family: var(--font--body);
  color: var(--font-color--body);
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
}

.button-animate-line-wrapper {
  background-color: #242635;
  width: 100%;
  height: 2px;
  overflow: hidden;
}

.button-animate-line-wrapper.v2 {
  margin-top: -.25rem;
}

.input-field {
  font-family: var(--font--body);
  color: var(--font-color--heading);
  border: 2px solid #2225471a;
  border-radius: 5px;
  height: 52px;
  margin-bottom: 0;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
}

.input-field:focus {
  border-width: 2px;
  border-color: var(--color--green);
}

.input-field::placeholder {
  color: #797b8e;
}

.button-animate-line {
  background-color: #00b172;
  width: 100%;
  height: 100%;
}

.utility-form-wrapper {
  border-radius: var(--radius--radius-1);
  text-align: center;
  background-color: #fff;
  width: 100%;
  margin-bottom: 0;
  padding: 45px;
  box-shadow: 0 10px 50px #352d6c1a;
}

.utility-form-title {
  margin-bottom: 20px;
}

.ternary-button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #242635;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  transition: opacity .3s ease-in-out;
  display: flex;
}

.ternary-button:hover {
  color: #00b172;
}

.ternary-button.small-variant {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
}

.utility-form-container {
  flex-flow: column;
  width: 100%;
  max-width: 535px;
  display: flex;
}

.utility-form-link-wrapper {
  grid-column-gap: .3rem;
  grid-row-gap: .3rem;
  color: #2b2b46;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
}

.utility-form {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.utility-row {
  grid-column-gap: 90px;
  grid-row-gap: 90px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.checkbox-field {
  color: var(--font-color--heading);
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.checkbox {
  border-color: #101010;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 12px;
}

.checkbox.w--redirected-checked {
  border-color: var(--font-color--text-highlight);
  background-color: var(--font-color--text-highlight);
  background-image: url('../images/checkmark.svg');
  background-size: 22px 22px;
}

.checkbox.w--redirected-focus {
  box-shadow: none;
}

.utility-link {
  color: var(--color--green);
}

.with-body-color {
  background-color: var(--color--light-green);
}

.template-utility-section {
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}

.template-utility-container {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  text-align: center;
  flex-flow: column;
  justify-content: space-around;
  align-items: center;
  max-width: 710px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.utility-block-links-wrapper {
  grid-column-gap: 25px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.style-guide-block {
  background-color: var(--color--white);
  border-radius: 7px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  display: flex;
  position: relative;
  box-shadow: 0 10px 30px #00000008;
}

.style-guide-block.vertical {
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 45%;
}

.utility-block-link {
  color: #242635;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.utility-block-link:hover {
  border-bottom-color: #00a0aa;
}

.color-wrapper {
  border: 1px solid var(--font-color--heading);
  border-radius: 50%;
  justify-content: center;
  align-items: stretch;
  width: 100px;
  height: 100px;
  display: flex;
  overflow: hidden;
}

.style-tag {
  background-color: var(--font-color--heading);
  padding: 10px 20px;
}

.effect-block-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.template-utility-divs-container {
  grid-column-gap: 150px;
  grid-row-gap: 150px;
  flex-flow: column;
  display: flex;
}

.special-class-block-title {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.inherit {
  width: inherit;
  height: inherit;
}

.effects-wrapper {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  color: #242635;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
  display: grid;
}

.style-tag-wrapper {
  width: 100%;
  display: flex;
}

.effect-title {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.special-class-wrapper {
  border: 5px solid var(--color--yellow);
  background-color: var(--color--yellow);
  outline-offset: 2px;
  color: var(--font-color--heading);
  outline: 2px dashed #242635;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.color-pink {
  background-color: var(--color--pink);
}

.template-utility-divs-wrapper {
  grid-column-gap: 150px;
  grid-row-gap: 150px;
  background-color: #fff;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 100px;
  display: flex;
}

.color-style-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.color-style-block-text {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.divider {
  border: 1px solid var(--font-color--heading);
  opacity: .1;
  flex: none;
  width: 100%;
}

.style-table-row {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  color: var(--font-color--heading);
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr .25fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.styles-container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  border-width: 1px 0 0;
  border-color: #dcdcdc;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
}

.styles-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  width: 100%;
  padding: 0;
  display: flex;
}

.color-black {
  background-color: var(--color--black);
}

.style-block {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-flow: column;
  width: 100%;
  max-width: 1075px;
  display: flex;
}

.template-utility-divs-section {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: var(--color--light-green);
  flex-direction: column;
  padding: 100px;
  display: flex;
}

.special-classes-container {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
  display: grid;
}

.style-table {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.color-styles-wrapper {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
  display: grid;
}

.buttons-wrapper {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  color: #fff;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
  display: grid;
}

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

.text-block {
  font-family: Beatrice, Arial, sans-serif;
  font-weight: 300;
}

.button {
  text-align: center;
  background-color: #18c9b4;
  border-radius: 20px;
  align-self: center;
  width: 400px;
  font-family: Beatrice, Arial, sans-serif;
  font-weight: 400;
}

.bold-text {
  font-weight: 700;
}

.link-2, .link-3, .bold-text-2 {
  color: #18c9b4;
}

.bold-text-3, .bold-text-4, .bold-text-5 {
  color: #00f;
  font-weight: 500;
}

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

@media screen and (max-width: 991px) {
  .menu {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-section {
    padding-top: 160px;
  }

  .main-container {
    max-width: 650px;
  }

  .hero-row-1 {
    flex-flow: column;
  }

  .hero-text-wrapper {
    grid-column-gap: 90px;
    grid-row-gap: 90px;
    max-width: none;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-image-wrapper {
    max-width: none;
    height: 100%;
    max-height: none;
  }

  .hero-overview {
    margin-top: -340px;
    padding-top: 165px;
    padding-bottom: 100px;
  }

  .hero-rating-wrapper {
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-top: 0;
  }

  .hero-spacer {
    display: none;
  }

  .trust-pilot-score-wrapper {
    grid-column-gap: 1.25rem;
    justify-content: center;
    align-items: center;
    max-width: 15rem;
  }

  .divider-line {
    height: 160px;
  }

  .hero-overview-container {
    grid-column-gap: 90px;
    grid-row-gap: 90px;
    padding-top: 70px;
  }

  .hero-features-wrapper {
    flex-flow: column;
  }

  .hero-features-text-wrapper {
    max-width: none;
  }

  .hero-features-blocks-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    max-width: none;
  }

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

  .overview-container {
    grid-column-gap: 140px;
    grid-row-gap: 140px;
  }

  .overview-block {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
  }

  .overview-block-image-wrapper {
    width: 100%;
    height: auto;
  }

  .overview-block-text-wrapper {
    order: -1;
    width: 100%;
    max-width: none;
  }

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

  .cta-container {
    max-width: none;
  }

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

  .category-row-1 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .category-heading-wrapper {
    max-width: none;
  }

  .category-blocks-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .category-accordion-container {
    grid-column-gap: 45px;
    grid-row-gap: 45px;
    flex-flow: column;
  }

  .accordion-block {
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
    flex-direction: column;
    margin-bottom: 0;
  }

  .accordion-block.v2 {
    padding-left: 0;
    padding-right: 0;
  }

  .accordion-block.v1 {
    margin-bottom: 30px;
  }

  .accordion-blocks-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    column-count: 1;
    display: flex;
  }

  .category-accordion-text-wrapper {
    width: 100%;
    max-width: none;
  }

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

  .review-container {
    width: 100%;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .review-loop-container {
    justify-content: center;
    align-items: stretch;
  }

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

  .pricing-blocks-wrapper {
    grid-column-gap: 45px;
    grid-row-gap: 45px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
  }

  .trusted-by-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .faqs-section {
    padding-top: 100px;
    padding-bottom: 70px;
  }

  .faqs-accordion-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .app-links-section {
    padding-top: 100px;
  }

  .app-links-container {
    grid-column-gap: 90px;
    grid-row-gap: 90px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .category-accordion-wrapper {
    max-width: none;
  }

  .app-link-text-wrapper {
    max-width: none;
    padding-top: 0;
  }

  .app-link-image-wrapper {
    max-width: none;
  }

  .footer-container {
    grid-column-gap: 3.75rem;
    grid-row-gap: 3.75rem;
    flex-wrap: wrap;
  }

  .footer-block.with-fixed-width {
    flex-flow: row;
    order: 1;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .main-container-2 {
    max-width: 43.75rem;
  }

  .footer-content {
    grid-column-gap: 60px;
    flex-wrap: wrap;
  }

  .nav-container {
    z-index: auto;
    border-radius: 10px;
    justify-content: space-between;
    padding: 30px;
  }

  .navbar-wrapper {
    height: auto;
  }

  .overlay {
    z-index: 1;
    background-color: #101010cc;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    padding: 0;
    display: none;
    position: fixed;
    inset: 0%;
  }

  .nav-menu-wrapper {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    max-height: 100vh;
    padding: 2.5rem;
  }

  .navbar {
    margin-top: 0;
  }

  .menu-button {
    background-color: #0000;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
  }

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

  .menu-button-elements {
    grid-row-gap: 7px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
  }

  .brand {
    padding-left: 0;
  }

  .mobile-nav-logo {
    margin-top: -1px;
    display: block;
  }

  .nav-buttons {
    grid-row-gap: 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    z-index: 100;
    background-color: #fff;
    width: 50%;
    position: fixed;
    inset: 0% 0% 0% auto;
  }

  .nav-links {
    grid-row-gap: 25px;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-button-line {
    background-color: var(--font-color--heading);
    width: 100%;
    height: 2px;
    padding: 0;
  }

  .sticky-navbar-wrapper {
    height: 72px;
  }

  .anchor-div {
    height: calc(100% + 70px);
    transform: translate(0, -70px);
  }

  .utility-section {
    background-size: cover;
    height: auto;
    padding-top: 180px;
    padding-bottom: 100px;
  }

  .utility-container {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .utility-text-wrapper {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    max-width: none;
  }

  .utility-form-wrapper, .utility-form-container {
    max-width: none;
  }

  .utility-row {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
  }

  .template-utility-section {
    background-size: cover;
    height: auto;
    padding-top: 180px;
    padding-bottom: 100px;
  }

  .template-utility-container {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .style-guide-block {
    grid-column-gap: 20px;
    color: #191148;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 40px;
  }

  .style-guide-block.vertical {
    max-width: 80%;
  }

  .styles-container {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .display-and-page-title {
    font-size: 48px;
    line-height: 60px;
  }

  .cta-heading {
    font-size: 34px;
    line-height: 46px;
  }

  .h1 {
    font-size: 42px;
    line-height: 54px;
  }

  .h2 {
    font-size: 36px;
    line-height: 50px;
  }

  .h3 {
    font-size: 28px;
    line-height: 40px;
  }

  .h4 {
    font-size: 24px;
    line-height: 34px;
  }

  .hero-section {
    padding-top: 120px;
  }

  .hero-row-1, .hero-text-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .point-blocks-wrapper {
    grid-row-gap: 6px;
    flex-flow: wrap;
  }

  .hero-overview {
    margin-top: -220px;
    padding-top: 10vh;
    padding-bottom: 90px;
  }

  .hero-upper-text {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .trust-pilot-score-wrapper {
    flex-flow: column;
  }

  .hero-overview-container {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    padding-top: 60px;
  }

  .play-icon {
    width: 4.688rem;
    height: 4.688rem;
  }

  .hero-features-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .hero-features-text-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .overview-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .overview-container {
    grid-column-gap: 160px;
    grid-row-gap: 160px;
  }

  .overview-block {
    grid-column-gap: 45px;
    grid-row-gap: 45px;
  }

  .overview-block-text-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .overview-block-para-wrapper {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-top: 10px;
    padding-left: 0;
  }

  .cta-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .cta-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .category-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .category-container {
    grid-column-gap: 90px;
    grid-row-gap: 90px;
  }

  .category-heading-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .category-blocks-wrapper {
    grid-template-columns: 1fr;
  }

  .category-block {
    padding: 30px;
  }

  .category-block-icon {
    margin-bottom: 15px;
  }

  .category-accordion-container {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .accordion-block {
    padding: 25px;
  }

  .accordion-arrow-wrapper {
    flex: none;
  }

  .category-accordion-text-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .review-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .review-loop-container {
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 30px;
    margin-left: -30px;
  }

  .pricing-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .pricing-blocks-wrapper {
    margin-top: 45px;
  }

  .pricing-block {
    grid-row-gap: 6px;
  }

  .pricing-wrapper {
    grid-column-gap: 1px;
    grid-row-gap: 1px;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  ._19-mo-0 {
    font-size: 30px;
    line-height: 46px;
  }

  .price {
    font-size: 65px;
    line-height: 65px;
  }

  ._19-mo-2 {
    font-size: 26px;
    line-height: 44px;
  }

  .trusted-by-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .trusted-by-blocks-container {
    grid-column-gap: 45px;
    grid-row-gap: 45px;
  }

  .trusted-by-blocks-wrapper {
    grid-column-gap: 45px;
    grid-row-gap: 45px;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .trusted-by-block-image {
    width: 5.625rem;
    height: auto;
  }

  .trusted-by-rows-wrapper {
    grid-column-gap: 45px;
    grid-row-gap: 45px;
    flex: none;
  }

  .faqs-section {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .faqs-accordion-wrapper {
    margin-top: 45px;
  }

  .app-links-section {
    padding-top: 90px;
  }

  .app-links-container {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .app-link-text-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .app-links-btns-wrapper {
    margin-top: 15px;
  }

  .footer-container {
    grid-row-gap: 35px;
  }

  .footer-block {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .footer-block.with-fixed-width {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: .938rem;
  }

  .footer-social-block {
    margin-left: 0;
  }

  .footer-content {
    grid-column-gap: 0px;
    grid-row-gap: 2.188rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: space-between;
  }

  .announcement-wrapper {
    display: none;
  }

  .nav-container {
    border-radius: 0;
    padding: 20px;
  }

  .logo {
    margin-top: 0;
  }

  .overlay {
    height: 100vh;
    inset: -20px 0% 0%;
  }

  .navbar {
    border-radius: 0;
    width: 100%;
    transform: none;
  }

  .menu-button {
    width: 28px;
    height: 28px;
  }

  .mobile-nav-logo {
    margin-top: 0;
  }

  .nav-menu {
    width: 80%;
  }

  .sticky-navbar-wrapper {
    height: 62px;
  }

  .anchor-div {
    height: calc(100% + 60px);
    transform: translate(0, -60px);
  }

  .utility-section {
    padding-top: 150px;
    padding-bottom: 90px;
  }

  .utility-container {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .utility-text-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .points-wrapper {
    margin-top: 10px;
  }

  .list {
    line-height: 24px;
  }

  .utility-form-wrapper {
    padding: 1.875rem;
  }

  .utility-form-title {
    margin-bottom: 10px;
  }

  .utility-form {
    grid-row-gap: 20px;
  }

  .template-utility-section {
    padding-top: 150px;
    padding-bottom: 90px;
  }

  .template-utility-container {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .style-guide-block {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 20px;
  }

  .style-guide-block.vertical {
    max-width: 100%;
  }

  .effects-wrapper, .special-classes-container, .color-styles-wrapper, .buttons-wrapper {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .display-and-page-title {
    font-size: 30px;
    line-height: 44px;
  }

  .h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .h2.white-font-color {
    text-align: center;
    font-size: 36px;
    line-height: 48px;
  }

  .h3 {
    line-height: 34px;
  }

  .body---variant-2 {
    line-height: 28px;
  }

  .body---variant-3 {
    font-size: 16px;
    line-height: 24px;
  }

  .body---variant-3.white-font-color {
    text-align: center;
    font-size: 14px;
  }

  .small-title.heading-font-color {
    font-size: 12px;
  }

  .hero-text-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .hero-overview {
    margin-top: -52%;
  }

  .hero-rating-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    max-width: 72%;
    padding: 20px;
  }

  .divider-line {
    width: 100%;
    height: 1px;
  }

  .hero-features-text-wrapper {
    justify-content: center;
    align-self: center;
    align-items: center;
  }

  .hero-feature-block {
    flex-flow: wrap;
  }

  .category-block {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .category-block-btn-wrapper {
    margin-top: 15px;
  }

  .accordion-lottie {
    flex: none;
  }

  .trusted-by-wrapper {
    grid-column-gap: 45px;
    grid-row-gap: 45px;
  }

  .accordion-arrow {
    width: 15px;
    height: 10px;
  }

  .app-links-btns-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
  }

  .footer-social-block {
    flex-flow: wrap;
  }

  .nav-menu-wrapper {
    padding: 1.875rem;
  }

  .menu-button {
    width: 27px;
    height: 27px;
  }

  .menu-button-elements {
    grid-row-gap: 6px;
  }

  .points-wrapper {
    margin-top: .625px;
  }

  .utility-form-link-wrapper {
    flex-flow: wrap;
  }

  .utility-block-links-wrapper {
    grid-row-gap: 10px;
    flex-direction: column;
  }

  .text-block {
    font-size: 12px;
  }

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

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

  .button {
    width: 200px;
  }
}

#w-node-d3b0fe86-fc73-bf0b-ced0-8e18fba1cd9b-fdb78d7d, #w-node-d3b0fe86-fc73-bf0b-ced0-8e18fba1cdd8-fdb78d7d, #w-node-d3b0fe86-fc73-bf0b-ced0-8e18fba1ce05-fdb78d7d, #w-node-_07cf5a8f-c4c6-e8e8-7c1c-60034d1d303d-4d1d3029 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Generalsans Variable';
  src: url('../fonts/GeneralSans-Variable.ttf') format('truetype');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-ExtraBold.ttf') format('truetype'), url('../fonts/Inter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Beatrice';
  src: url('../fonts/Beatrice-Bold.otf') format('opentype'), url('../fonts/Beatrice-ExtraBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Beatrice';
  src: url('../fonts/Beatrice-ExtraBold-Italic.otf') format('opentype'), url('../fonts/Beatrice-Bold-Italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Beatrice';
  src: url('../fonts/Beatrice-Regular-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Beatrice';
  src: url('../fonts/Beatrice-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Beatrice';
  src: url('../fonts/Beatrice-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Beatrice';
  src: url('../fonts/Beatrice-Medium-Italic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Beatrice';
  src: url('../fonts/Beatrice-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Beatrice';
  src: url('../fonts/Beatrice-SemiBold-Italic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Beatrice';
  src: url('../fonts/Beatrice-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Beatrice';
  src: url('../fonts/Beatrice-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Beatrice';
  src: url('../fonts/Beatrice-Thin-Italic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Beatrice';
  src: url('../fonts/Beatrice-Light-Italic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}