@font-face {
  font-family: Manrope Variablefont Wght;
  src: url('../fonts/Manrope-VariableFont_wght.ttf') format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #151515;
  --white: white;
  --orange-red: #ff5c00;
  --cleardunecolor: #1bb2b1;
  --orange-2: #f36364;
  --grey: #ccc;
  --cleardune: var(--cleardunecolor);
  --orange: #fec166;
  --conversion-flow-library-medium-purple: #b16cea;
  --conversion-flow-library-light-coral: #ff5e69;
  --conversion-flow-library-sandy-brown: #ffa84b;
}

.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 {
  color: var(--black);
  font-family: Manrope, sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5.625rem;
  font-weight: 700;
  line-height: 1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.25rem;
  font-weight: 600;
  line-height: 1;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.1;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.1;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--black);
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.25rem;
}

li {
  margin-bottom: .25rem;
}

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

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.z-2 {
  z-index: 2;
  position: relative;
}

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

.styleguide-row {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: start;
  display: grid;
}

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

.text-weight-semibold {
  font-weight: 600;
}

.text-weight-light {
  font-weight: 300;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.show {
  display: block;
}

.overflow-hidden {
  overflow: hidden;
}

.icon-1-1-small {
  width: 2rem;
  height: 2rem;
}

.button {
  color: var(--white);
  text-align: center;
  background-color: #1bb2b1;
  background-image: linear-gradient(75deg, #9ddddd, #1bb2b1);
  border-radius: 200px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}

.button:hover {
  box-shadow: -6px 0 4px 0 var(--white), 6px 0 6px 0 var(--white);
  background-color: #1bb2b1;
  transform: scale(1.03);
}

.button._100 {
  width: 100%;
}

.heading-medium {
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.2;
}

.heading-large {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.2;
}

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

.text-size-large {
  font-size: 2.5rem;
  line-height: 1.2;
}

.icon-medium {
  height: 3rem;
}

.text-size-regular {
  font-size: 1.25rem;
}

.text-weight-normal {
  font-weight: 400;
}

.styleguide-section {
  grid-column-gap: 4rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: grid;
}

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

.z-1 {
  z-index: 1;
  position: relative;
}

.icon-small {
  height: 2rem;
}

.show-mobile-portrait {
  display: none;
}

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

.hide {
  display: none;
}

.styleguide-section-type {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #000;
  padding: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.text-size-medium {
  font-size: 1.7rem;
}

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

.text-weight-xbold {
  font-weight: 800;
}

.text-style-link {
  text-decoration: underline;
}

.text-style-muted {
  opacity: .7;
}

.text-size-small {
  font-size: 1.1rem;
}

.rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.rich-text h2, .rich-text h3, .rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.rich-text h5, .rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: .75rem;
}

.rich-text p {
  margin-bottom: 1rem;
}

.rich-text blockquote {
  border-left-color: var(--orange-red);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.rich-text ul {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem 2.5rem;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.icon-large {
  height: 4rem;
}

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.heading-xlarge {
  font-size: 5.625rem;
  font-weight: 700;
  line-height: 1.1;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.form-text-field {
  background-color: #0000;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.text-size-tiny {
  font-size: .875rem;
}

.icon-1-1-medium {
  width: 3rem;
  height: 3rem;
}

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

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.styleguide-classes {
  display: none;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.styleguide-column {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.styleguide-column._2-column {
  grid-template-columns: 1fr 1fr;
}

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

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

.show-tablet {
  display: none;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

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

.show-mobile-landscape {
  display: none;
}

.max-width-small {
  width: 100%;
  max-width: 20rem;
}

.icon-1-1-large {
  width: 4rem;
  height: 4rem;
}

.error-message {
  margin-top: .75rem;
  padding: .75rem;
}

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

.utility-page-content {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

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

.main-wrapper {
  overflow: hidden;
}

.main-wrapper.overflow-visible {
  overflow: visible;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.margin-tiny {
  margin: .125rem;
}

.margin-xxsmall {
  margin: .25rem;
}

.margin-xsmall {
  margin: .5rem;
}

.margin-small {
  margin: 1rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 8rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

.padding-tiny {
  padding: .125rem;
}

.padding-xxsmall {
  padding: .25rem;
}

.padding-xsmall {
  padding: .5rem;
}

.padding-small {
  padding: 1rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 8rem;
}

.padding-xxhuge {
  padding: 12rem;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-left {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-right {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

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

.padding-vertical.padding-xhuge {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.padding-vertical.padding-huge {
  background-color: #0000;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

.text-style-nowrap {
  white-space: nowrap;
}

.heading-small {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.heading-xsmall {
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.5;
}

.text-weight-medium {
  font-weight: 500;
}

.styleguide-header {
  border-bottom: 2px solid #e6e6e6;
  margin-bottom: 2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.license-heading-text {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  display: flex;
}

.license-image {
  object-fit: cover;
  width: 100%;
  height: 250px;
}

.license-images-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.inline-link {
  color: var(--white);
  border-bottom: 1px solid #fff3;
  transition: border-color .2s;
}

.inline-link:hover {
  color: var(--white);
  border-bottom-color: #ffffffb3;
}

.inline-link.black {
  color: var(--black);
  border-bottom-color: #0003;
}

.inline-link.black:hover {
  border-bottom-color: var(--black);
}

.license-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5rem;
  display: grid;
}

.license-item.last {
  margin-bottom: 0;
}

.changelog-component {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.instructions-list {
  max-width: 650px;
}

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

.instructions-list-item {
  margin-bottom: 2rem;
}

.utility-image {
  width: 100%;
}

.home-hero-section {
  position: relative;
  overflow: hidden;
}

.home-hero-component {
  z-index: 2;
  color: var(--black);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.text-span {
  color: var(--cleardunecolor);
  text-align: center;
  text-transform: none;
  -webkit-text-fill-color: transparent;
  object-fit: fill;
  background-color: #1bb2b1;
  background-image: none;
  -webkit-background-clip: text;
  background-clip: text;
  margin-left: .5rem;
  margin-right: .5rem;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  display: inline;
  overflow: visible;
}

.home-hero-button-wrap {
  grid-column-gap: 1.75rem;
  align-items: center;
  display: flex;
}

.home-hero-images-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  display: flex;
}

.home-hero-images-flex {
  align-items: center;
  margin-bottom: .4rem;
  display: flex;
}

.home-hero-image {
  outline-color: var(--white);
  outline-offset: 0px;
  object-fit: cover;
  border-radius: 50%;
  outline-width: 1px;
  outline-style: solid;
  width: 4rem;
  height: 4rem;
  margin-left: -.75rem;
  margin-right: -.75rem;
}

.home-hero-image.middle {
  margin-top: -2rem;
}

.logos-section {
  background-color: #1bb2b1;
  overflow: hidden;
}

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

.logos-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: #0000;
  flex-flow: wrap;
  flex: 0 auto;
  grid-template-rows: 6rem 6rem 6rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row dense;
  place-content: center;
  align-items: center;
  width: 100%;
  display: grid;
}

.logos-grid-item {
  text-align: left;
  object-fit: fill;
  background-color: #0000;
  flex: 1;
  order: 0;
  align-self: auto;
  width: 14rem;
  height: auto;
  max-height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  padding-left: 0;
  font-size: 1.25rem;
  position: static;
  overflow: visible;
}

.home-hero-bg-circle-wrap {
  z-index: 1;
  border-radius: 50%;
  width: 40vw;
  max-width: 40rem;
  height: 40vw;
  max-height: 40rem;
  position: absolute;
  inset: auto 1rem 0% -25%;
}

.bg-circle {
  background-color: var(--orange-2);
  background-image: linear-gradient(110deg, #1bb2b1, #9ddddd);
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.bg-circle.home-hero, .bg-circle.about {
  background-color: #1bb2b1;
  background-image: linear-gradient(110deg, #1bb2b1, #9ddddd);
}

.bg-border-circle {
  outline-offset: 0px;
  background-color: #0000;
  background-image: none;
  border-radius: 50%;
  outline: 1px solid #000;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: -10% 0% 0% 1%;
}

.bg-border-circle.about {
  outline-color: var(--white);
  background-image: none;
}

.bg-border-circle.home-hero {
  outline-offset: 0px;
  border: 1px solid #000;
  outline: 1px #000;
  margin-right: .5rem;
}

.services-section {
  background-color: #1bb2b1;
  overflow: hidden;
}

.services-component {
  flex-direction: column;
  align-items: flex-start;
  margin-left: 1rem;
  margin-right: 1rem;
  display: flex;
}

.tag {
  border: 1px solid var(--grey);
  color: var(--grey);
  text-align: center;
  text-transform: uppercase;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  padding: .438rem 1.625rem;
  display: flex;
}

.tag.pricing {
  background-color: var(--white);
  outline-color: var(--grey);
  outline-offset: 0px;
  outline-width: 1px;
  outline-style: solid;
  max-width: 14rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: .25rem;
  padding-bottom: .25rem;
  position: absolute;
  inset: -3% 0% auto;
}

.services-items-wrap {
  grid-row-gap: 5.8rem;
  flex-direction: column;
  width: 100%;
  margin-top: 3rem;
  display: flex;
}

.services-item {
  color: var(--white);
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  font-size: 5.625rem;
  line-height: 1;
  display: flex;
}

.services-icon {
  flex: none;
}

.services-line {
  background-color: var(--white);
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.services-item-up {
  cursor: pointer;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 2rem;
  display: flex;
  position: relative;
}

.services-item-down {
  padding-top: 2rem;
  overflow: hidden;
}

.services-item-down-content-wrap {
  max-width: 35rem;
  margin-left: auto;
  font-size: 1.25rem;
  line-height: 1.4;
}

.services-item-pointer {
  grid-column-gap: .625rem;
  align-items: center;
  display: flex;
}

.services-item-pointer-circle {
  background-color: var(--white);
  border-radius: 50%;
  flex: none;
  width: 6px;
  height: 6px;
  overflow: hidden;
}

.services-item-down-pointers-wrap {
  grid-row-gap: .5rem;
  flex-direction: column;
  display: flex;
}

.about-section {
  min-height: 400vh;
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.about-heading {
  z-index: 2;
  max-width: 40rem;
  position: relative;
}

.about-sticky-div {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.about-bg-circle {
  z-index: 1;
  background-color: var(--black);
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  position: absolute;
}

.about-main {
  z-index: 3;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--grey);
  background-color: #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  position: relative;
  overflow: hidden;
}

.about-main-inside {
  z-index: 2;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr .5fr;
  grid-auto-columns: .75fr;
  align-items: start;
  margin-left: 1rem;
  display: grid;
  position: relative;
}

.about-main-content {
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0;
  margin-right: .25rem;
  display: flex;
}

.home-about-image {
  object-fit: cover;
  width: 378px;
  max-width: 33rem;
  height: 40rem;
  margin-top: 11rem;
}

.work-section {
  background-color: var(--black);
  color: var(--white);
  padding-bottom: 1rem;
  display: none;
}

.work-component {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.work-list {
  grid-row-gap: 9rem;
  flex-direction: column;
  display: flex;
}

.work-list-item {
  display: flex;
}

.work-item-link {
  width: 100%;
  color: var(--white);
}

.work-item-link.black-text {
  color: var(--black);
}

.work-item-image-wrapper {
  background-color: #f0f0f0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 3rem;
  padding-top: 4rem;
  display: flex;
  overflow: hidden;
}

.work-item-image {
  width: 80%;
}

.work-item-details-wrap {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.work-item-details-up {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  display: flex;
}

.work-tags-wrap {
  grid-column-gap: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-items: center;
  font-size: 1.125rem;
  display: flex;
}

.work-tag-circle {
  background-color: var(--white);
  border-radius: 50%;
  flex: none;
  width: .438rem;
  height: .438rem;
}

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

.home-about-bg-circle-wrap {
  z-index: 1;
  border-radius: 50%;
  width: 40vw;
  max-width: 40rem;
  height: 60vh;
  max-height: 40rem;
  position: absolute;
  inset: auto -31% 0% auto;
}

.testimonial-section {
  margin-top: 6rem;
}

.testimonial-component {
  color: var(--white);
  background-color: #1bb2b1;
  padding: 4.8rem 3rem;
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  z-index: 2;
  background-color: #0000;
  height: auto;
}

.testimonial-slider-mask, .testimonial-slide {
  height: auto;
}

.testimonial-slider-left-arrow {
  background-color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3.375rem;
  height: 3.375rem;
  display: flex;
  inset: auto 7% 0% auto;
}

.testimonial-slider-right-arrow {
  background-color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3.375rem;
  height: 3.375rem;
  display: flex;
  inset: auto 0% 0% auto;
}

.testimonial-slide-inside {
  z-index: 2;
  grid-column-gap: 5rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: grid;
}

.testimonial-slide-image {
  object-fit: cover;
  height: 36rem;
}

.testimonial-bg-circle-wrap {
  z-index: 1;
  border-radius: 50%;
  width: 30vw;
  height: 30vw;
  position: absolute;
  inset: -14% auto auto -22%;
}

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

.process-steps-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 8rem;
  margin-left: 2rem;
  margin-right: 2rem;
  display: grid;
  position: relative;
}

.process-item {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.process-number-circle {
  z-index: 2;
  width: 7rem;
  height: 7rem;
  color: var(--white);
  background-image: linear-gradient(50deg, #9ddddd, #1bb2b1);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-bottom: 7.5rem;
  font-size: 3.25rem;
  line-height: 1;
  display: flex;
  position: relative;
}

.process-floating-img-1 {
  z-index: 1;
  width: 23vw;
  max-width: 19.875rem;
  position: absolute;
  inset: 24% auto auto 21%;
}

.process-floating-img-2 {
  z-index: 1;
  width: 25vw;
  max-width: 21rem;
  position: absolute;
  inset: -8% 20% auto auto;
}

.pricing-tables-wrap {
  grid-column-gap: 2.5rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-top: 11rem;
  display: grid;
}

.pricing-table {
  outline-offset: 0px;
  border-radius: 6px;
  outline: 1px solid #1515154d;
  flex-direction: column;
  padding: 5rem 1.5rem 6rem;
  display: flex;
}

.pricing-table.popular {
  background-color: var(--black);
  color: var(--white);
  margin-top: -5rem;
  position: relative;
}

.text-size-xlarge {
  letter-spacing: -2px;
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 1.2;
}

.pricing-pointers-wrap {
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.pricing-pointer {
  grid-column-gap: 1rem;
  align-items: center;
  font-size: 1.125rem;
  display: flex;
}

.pricing-pointer-icon {
  flex: none;
}

.footer {
  background-color: var(--black);
  color: var(--white);
  margin-top: 6rem;
}

.footer-up {
  justify-content: space-between;
  align-items: center;
  margin-left: 1rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.social-links-container {
  grid-column-gap: 1rem;
  align-items: center;
  display: flex;
}

.social-link-item {
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  transition: opacity .2s;
  display: flex;
}

.social-link-item:hover {
  opacity: .6;
}

.footer-main {
  border-top: 1px solid #fff3;
  border-bottom: 1px solid #fff3;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 1rem;
  margin-right: 1rem;
  padding-top: 4rem;
  padding-bottom: 10rem;
  display: flex;
}

.footer-cta-text {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.footer-links-wrap {
  grid-column-gap: 6rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  place-items: stretch end;
  display: grid;
}

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

.footer-link {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-down {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-size: 1.125rem;
}

.work-cms-hero-content {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 6rem;
  display: flex;
}

.link {
  grid-column-gap: .625rem;
  align-items: center;
  padding-bottom: 4px;
  display: flex;
  position: relative;
}

.link-arrow-icon {
  width: 1rem;
}

.link-line {
  background-color: #15151533;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.link-line-hover {
  background-color: #151515;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.work-cms-image {
  width: 100%;
}

.work-cms-images-list {
  grid-row-gap: 3.5rem;
  flex-direction: column;
  display: flex;
}

.more-work-component {
  padding-top: 3rem;
}

.navbar {
  object-fit: contain;
  background-color: #0000;
  padding-top: .5rem;
}

.navbar-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.navbar-logo {
  padding-left: 0;
}

.navbar-inside {
  background-color: var(--black);
  color: var(--white);
  border-radius: 100rem;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  display: flex;
}

.navbar-link {
  color: var(--white);
  padding: 5px;
  font-size: 1.125rem;
}

.navbar-menu {
  grid-column-gap: 2rem;
  justify-content: flex-start;
  align-items: center;
}

.navbar-menu-inside {
  grid-column-gap: 2rem;
  align-items: center;
  display: flex;
}

.image {
  object-fit: fill;
  max-width: 50%;
}

.heading {
  color: var(--black);
  text-align: center;
  margin-left: 0;
  font-size: 4.5rem;
  display: block;
  overflow: visible;
}

.clients-wrapper-three {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #1bb2b1;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: .25fr .25fr .25fr .25fr;
  grid-auto-columns: 1fr;
  place-content: space-around space-between;
  place-items: center;
  margin-bottom: -10px;
  display: grid;
}

.clients-image-three {
  object-fit: fill;
  background-color: #1bb2b1;
  margin: auto;
}

.grid {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.text-block, .text-block-2, .text-block-3, .text-block-4, .text-block-5, .text-block-6, .text-block-7, .text-block-8, .text-block-9, .text-block-10 {
  font-size: 5rem;
}

.text-span-2, .text-span-3, .text-span-4, .text-span-5 {
  color: #1bb2b1;
}

.div-block {
  width: 12rem;
}

.div-block-2 {
  width: 5rem;
}

.div-block-3 {
  width: 8rem;
}

.div-block-4 {
  width: 7rem;
}

.div-block-5, .div-block-6 {
  width: 9rem;
}

.div-block-7 {
  width: 10rem;
}

.div-block-8, .div-block-9 {
  width: 5.5rem;
}

.div-block-10 {
  width: 11rem;
}

.div-block-11 {
  width: 10rem;
}

.div-block-12 {
  width: 12rem;
}

.div-block-13 {
  width: 8rem;
}

.div-block-14 {
  width: 6rem;
}

.div-block-15 {
  width: 10rem;
}

.div-block-16 {
  width: 6rem;
}

.div-block-17 {
  width: 5rem;
}

.div-block-18 {
  width: 6.5rem;
}

.div-block-19 {
  width: 9rem;
}

.cf-reviewer-position {
  font-family: Manrope Variablefont Wght, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 178%;
}

.cf-reviewer-name {
  font-family: Manrope Variablefont Wght, sans-serif;
  font-size: 18px;
  line-height: 178%;
}

.cf-reviewer-info {
  flex-direction: column;
  margin-left: 16px;
  display: flex;
}

.cf-reviewer-image {
  object-fit: contain;
  border-radius: 100px;
  width: 100%;
  max-width: 64px;
  height: 64px;
}

.cf-reviewer-block {
  width: 100%;
  display: flex;
}

.cf-cta-testimonial-text {
  color: #fff;
  margin-bottom: 32px;
  font-family: Manrope Variablefont Wght, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
}

.cf-review-stars {
  width: 100%;
  max-width: 132px;
  margin-bottom: 20px;
}

.cf-testimonial-slide-wrapper {
  background-color: #fff;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 440px;
  padding: 40px;
  display: flex;
  box-shadow: 0 20px 40px #99999912;
}

.cf-testimonial-slide-wrapper.black {
  background-color: #191919;
  width: 50%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 0;
  padding: 20px;
}

.cf-cta-error-message {
  background-color: #f5cec9;
  border-radius: 4px;
  font-weight: 500;
}

.cf-cta-success-message {
  background-color: var(--white);
  border-radius: 4px;
  font-weight: 500;
}

.cf-cta-submit-button {
  color: #fff;
  cursor: auto;
  mix-blend-mode: normal;
  background-color: #1bb2b1;
  border-radius: 8px;
  flex: 0 auto;
  padding: 12px;
  font-family: Manrope Variablefont Wght, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 178%;
  transition: background-color .2s;
  position: absolute;
  inset: 4px 4px 4px auto;
}

.cf-cta-submit-button:hover {
  background-color: #9ddddd;
}

.cf-cta-text-field {
  color: #fff;
  background-color: #191919;
  background-image: url('../images/Envelope.svg');
  background-position: 20px;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px #000;
  border-radius: 8px;
  width: 100%;
  max-width: 440px;
  height: 64px;
  margin-bottom: 0;
  padding: 4px 140px 4px 56px;
  font-family: Manrope Variablefont Wght, sans-serif;
  font-size: 18px;
  line-height: 178%;
}

.cf-cta-text-field::placeholder {
  color: #ffffffb3;
}

.cf-cta-form {
  display: flex;
  position: relative;
}

.cf-cta-form-block {
  width: 100%;
  max-width: 440px;
  margin-bottom: 0;
}

.cf-cta-32px-heading {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 40px;
  font-family: Manrope Variablefont Wght, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
}

.cf-cta-left-contain {
  width: 45%;
  max-width: 516px;
}

.cf-cta-form-wrapper {
  color: #1bb2b1;
  object-fit: fill;
  background-color: #1bb2b1;
  border-radius: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-left: 0;
  padding: 20px 80px;
  display: flex;
}

.cf-cta-form-wrapper:focus {
  border: 1px #000;
}

.cf-cta-section {
  color: #fff;
  position: relative;
  overflow: hidden;
}

.text-span-6, .text-span-7 {
  color: #1bb2b1;
}

.link-2, .link-3, .link-4, .link-5, .link-6, .link-7, .link-8, .link-9, .link-10, .link-11, .link-12 {
  color: var(--grey);
  text-decoration: underline;
}

.link-13 {
  color: var(--grey);
  border: 0 #000;
  text-decoration: underline;
}

.text-block-12 {
  margin-right: 1rem;
}

.text-block-13 {
  margin-left: 1rem;
}

.cf-parallax-scribble-2 {
  width: 100%;
  max-width: 329px;
  position: absolute;
  inset: auto auto 10% 15%;
}

.cf-parallax-scribble-1 {
  width: 100%;
  max-width: 370px;
  position: absolute;
  inset: auto 5% 15% auto;
}

.cf-parallax-image-4 {
  z-index: 1;
  width: 40%;
  max-width: 520px;
  position: relative;
}

.cf-parallax-image-3 {
  z-index: 2;
  width: 25%;
  max-width: 330px;
  position: absolute;
  inset: auto auto 0% 51%;
}

.cf-parallax-image-2 {
  z-index: 1;
  width: 24%;
  max-width: 280px;
  position: absolute;
  inset: 20% -2% auto auto;
}

.cf-parallax-image-1 {
  z-index: 1;
  width: 50%;
  max-width: 400px;
  position: absolute;
  inset: auto auto 5% -10%;
}

.cf-parallax-image-contain {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1440px;
  height: 812px;
  margin: 0 auto 200px;
  display: flex;
  position: relative;
}

.cf-82px-heading {
  color: #fff;
  text-align: center;
  max-width: 990px;
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Montserrat, sans-serif;
  font-size: 82px;
  font-weight: 700;
  line-height: 100%;
}

.cf-hero-section-5---heading-wrapper {
  z-index: 2;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.cf-hero-section-5 {
  background-color: #0d0e10;
  background-image: linear-gradient(#0d0e10 50%, #fff 50%);
  position: relative;
  overflow: hidden;
}

.cf-service-paragraph {
  color: #0d0e10e6;
  text-align: left;
  margin-top: 4px;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 156%;
}

.cf-service-heading {
  color: #0d0d0d;
  text-align: center;
  letter-spacing: -.16px;
  margin-bottom: 16px;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 133%;
}

.cf-service-image {
  border-radius: 16px;
}

.cf-service-number {
  color: #fff;
  text-align: center;
  letter-spacing: -.16px;
  font-size: 26px;
  line-height: 123%;
}

.cf-features-section-2-icon-wrap {
  background-color: #b16cea;
  background-image: linear-gradient(150deg, #b16cea 20%, #ff5e69 60%, #ff8a56 80%, #ffa84b);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 56px;
  height: 56px;
  margin-bottom: 20px;
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

.cf-features-section-2-icon-wrap.cf-absolute {
  position: absolute;
  inset: -6% auto auto 6%;
}

.cf-features-section-2-image-wrapper {
  margin-bottom: 32px;
  position: relative;
}

.cf-features-section-2-grid-cell {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 353px;
  display: flex;
}

.cf-features-section-2-grid-cell.homepage-3 {
  align-items: flex-start;
  max-width: 353px;
}

.cf-features-section-2-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: 80px;
}

.cf-features-section-2-heading {
  color: #000;
  text-align: center;
  max-width: 700px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 115%;
}

.cf-features-section-2-wrapper {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.slide {
  object-fit: fill;
  width: 100%;
}

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

.image-3 {
  height: 33%;
}

.grid-2 {
  grid-template-areas: "Area Area-2";
}

.hideogpreview {
  display: none;
}

.image-4 {
  object-fit: scale-down;
  max-width: 100%;
  height: auto;
}

.slide-1 {
  object-fit: scale-down;
  max-width: 100%;
  max-height: 100%;
  overflow: visible;
}

.body {
  font-family: Manrope Variablefont Wght, sans-serif;
}

.image-5 {
  background-color: #fff;
}

.html-embed {
  object-fit: fill;
  font-size: 1rem;
  line-height: 1.2;
}

.text-block-15 {
  margin-left: 1rem;
}

.text-block-16 {
  text-align: center;
  margin-left: .5rem;
  margin-right: .5rem;
  overflow: auto;
}

.text-block-17 {
  color: var(--cleardune);
  text-align: center;
  margin-left: 1rem;
  margin-right: 1rem;
  font-size: 2rem;
}

.link-14 {
  text-align: center;
}

.body-2 {
  color: var(--black);
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.button-2 {
  text-align: justify;
}

.button-3 {
  text-align: center;
  vertical-align: middle;
  margin-left: 40%;
  margin-right: 40%;
}

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

.link-15 {
  object-fit: fill;
  justify-content: center;
  align-items: center;
  margin-left: 25%;
  margin-right: 25%;
  text-decoration: underline;
  display: flex;
  position: static;
  inset: 0%;
}

.link-16 {
  justify-content: center;
  align-items: center;
  margin-left: 25%;
  margin-right: 25%;
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
}

.text-span-8 {
  color: var(--cleardunecolor);
  font-weight: 700;
}

.text-span-9 {
  color: var(--black);
  font-size: 1.75rem;
}

.bold-text {
  font-size: 1.5rem;
  font-weight: 500;
}

.image-7 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.div-block-20 {
  background-color: #000;
}

@media screen and (min-width: 1280px) {
  .footer {
    margin-left: 1px;
  }

  .footer-up, .footer-main {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .footer-links-wrap {
    grid-column-gap: 6rem;
    justify-content: stretch;
    place-items: stretch end;
  }

  .heading {
    font-size: 5rem;
  }

  .cf-cta-left-contain {
    width: 51%;
    max-width: 550px;
  }

  .hideogpreview {
    display: block;
  }
}

@media screen and (min-width: 1440px) {
  .logos-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-auto-rows: .25fr;
  }

  .home-hero-bg-circle-wrap {
    margin-left: -10px;
  }

  .bg-circle.about {
    background-color: #1bb2b1;
    background-image: linear-gradient(110deg, #1bb2b1, #9ddddd);
  }

  .about-main-inside {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .clients-wrapper-three {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: .25fr .25fr .25fr .25fr;
    grid-auto-columns: 1fr;
    place-content: space-between;
    display: grid;
  }

  .hideogpreview {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 4.5rem;
  }

  .hide-tablet {
    display: none;
  }

  .text-size-large {
    margin-right: 2rem;
  }

  .styleguide-section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .text-size-medium {
    font-size: 1.5rem;
  }

  .show-tablet {
    display: block;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

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

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .license-image {
    height: 320px;
  }

  .license-item {
    grid-template-columns: 1fr;
  }

  .logos-component {
    display: flex;
  }

  .logos-grid {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex: 0 auto;
    grid-template-rows: 6rem 6rem 6rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .logos-grid-item {
    display: block;
  }

  .services-item-up {
    font-size: 4.5rem;
  }

  .about-main-inside {
    grid-template-columns: 1fr;
  }

  .home-about-image {
    margin-top: 0;
  }

  .home-about-bg-circle-wrap {
    box-sizing: border-box;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    object-fit: fill;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 45vw;
    margin-top: 0;
    display: block;
    top: 30%;
    bottom: 25%;
  }

  .testimonial-slider-left-arrow {
    right: 10%;
  }

  .testimonial-slide-inside {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .testimonial-bg-circle-wrap {
    width: 50vw;
    height: 50vw;
    top: -5%;
  }

  .process-steps-wrap {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-top: 6rem;
  }

  .process-number-circle {
    z-index: 2;
    margin-bottom: 1.5rem;
  }

  .process-floating-img-1, .process-floating-img-2 {
    display: none;
  }

  .pricing-tables-wrap {
    grid-template-columns: 1fr;
    max-width: 80%;
    margin-top: 5rem;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-table.popular {
    margin-top: 0;
  }

  .social-link-item {
    flex: none;
  }

  .footer-main {
    grid-row-gap: 6rem;
    flex-direction: column;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .footer-cta-text {
    font-size: 2.5rem;
  }

  .work-cms-hero-content {
    grid-row-gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-menu-inside {
    grid-column-gap: 1.5rem;
    align-items: center;
    display: flex;
  }

  .image {
    max-width: 95%;
  }

  .clients-image-three {
    margin-bottom: 30px;
  }

  .cf-testimonial-slide-wrapper.black {
    width: 100%;
  }

  .cf-cta-32px-heading {
    font-size: 30px;
  }

  .cf-cta-left-contain {
    width: 100%;
    max-width: 400px;
    margin-bottom: 60px;
  }

  .cf-cta-form-wrapper {
    flex-direction: column;
    max-width: none;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 20px;
  }

  .cf-parallax-scribble-2 {
    bottom: 15%;
    left: 20%;
  }

  .cf-parallax-scribble-1 {
    bottom: 37%;
    right: -16%;
  }

  .cf-parallax-image-3 {
    bottom: 25%;
  }

  .cf-parallax-image-1 {
    width: 40%;
    bottom: 17%;
    left: -14%;
  }

  .cf-parallax-image-contain {
    margin-bottom: 60px;
  }

  .cf-82px-heading {
    font-size: 70px;
  }

  .cf-features-section-2-grid {
    grid-row-gap: 80px;
    grid-template-columns: 1fr 1fr;
    max-width: 700px;
  }

  .cf-features-section-2-heading {
    max-width: 600px;
    font-size: 30px;
  }

  .cf-features-section-2-wrapper {
    padding-top: 140px;
  }

  .image-4 {
    object-fit: scale-down;
    max-width: 100%;
    height: auto;
    overflow: visible;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.2rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.7rem;
  }

  h4 {
    font-size: 1rem;
  }

  .heading-medium {
    font-size: 1.5rem;
  }

  .heading-large {
    font-size: 2rem;
  }

  .text-size-large {
    margin-right: .25rem;
    font-size: 2rem;
  }

  .styleguide-section-type {
    font-size: .875rem;
  }

  .text-size-medium {
    margin-right: .5rem;
    font-size: 1.4rem;
  }

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

  .heading-xlarge {
    font-size: 2.8rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

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

  .show-mobile-landscape {
    display: block;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

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

  .padding-vertical.padding-xhuge {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .heading-small {
    font-size: 1rem;
  }

  .styleguide-header {
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .license-image {
    height: 250px;
  }

  .instructions-list {
    padding-left: 20px;
  }

  .logos-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: .25fr;
    grid-template-columns: minmax(8rem, .5fr) minmax(8rem, .5fr) minmax(8rem, 1fr);
    grid-auto-rows: .25fr;
    grid-auto-columns: minmax(8rem, .5fr);
    grid-auto-flow: row dense;
    justify-items: center;
    max-width: 22rem;
    display: grid;
  }

  .home-hero-bg-circle-wrap {
    width: 50vw;
    height: 50vw;
    margin-left: -20px;
    top: 360px;
    bottom: 13%;
    left: -33%;
  }

  .services-items-wrap {
    grid-row-gap: 5rem;
  }

  .about-heading {
    font-size: 3rem;
  }

  .about-bg-circle {
    transform: translate(0);
  }

  .home-about-image {
    height: 32rem;
  }

  .work-list {
    grid-row-gap: 8rem;
  }

  .work-item-image-wrapper {
    margin-bottom: 2rem;
    padding-top: 2rem;
  }

  .work-item-image {
    width: 92%;
  }

  .work-item-details-up {
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .work-tags-wrap {
    font-size: 1rem;
  }

  .home-about-bg-circle-wrap {
    width: 40vw;
    height: 40vh;
  }

  .testimonial-section {
    margin-top: 5rem;
  }

  .testimonial-component {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .testimonial-slider-left-arrow {
    right: 16%;
  }

  .testimonial-slide-image {
    height: 30rem;
  }

  .testimonial-bg-circle-wrap {
    width: 60vw;
    height: 60vw;
    bottom: 13%;
    left: -33%;
  }

  .pricing-tables-wrap {
    max-width: 90%;
  }

  .footer {
    margin-top: 5rem;
  }

  .footer-cta-text {
    text-align: left;
    font-size: 2rem;
  }

  .navbar {
    padding-top: 0;
    position: sticky;
  }

  .navbar-container {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-inside {
    border-radius: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .navbar-link {
    margin-left: 0;
  }

  .navbar-menu {
    background-color: var(--black);
    padding: 1rem;
  }

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

  .navbar-menu-inside {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    transition: opacity .2s;
  }

  .image {
    max-width: 60%;
  }

  .clients-wrapper-three {
    margin-bottom: -30px;
  }

  .clients-image-three {
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .div-block {
    width: 10rem;
  }

  .div-block-10, .div-block-11 {
    width: 8rem;
  }

  .div-block-12 {
    width: 9rem;
  }

  .div-block-13 {
    width: 7rem;
  }

  .div-block-14 {
    width: 5rem;
  }

  .div-block-15 {
    width: 8rem;
  }

  .div-block-16 {
    width: 5rem;
  }

  .div-block-18 {
    width: 6rem;
  }

  .div-block-19 {
    width: 8rem;
  }

  .text-block-11 {
    clear: none;
    margin-left: auto;
    display: block;
  }

  .cf-cta-32px-heading {
    font-size: 28px;
  }

  .cf-cta-form-wrapper {
    align-items: flex-start;
    width: 100%;
    max-width: none;
    padding: 80px 40px;
  }

  .cf-parallax-scribble-2 {
    bottom: 3%;
  }

  .cf-parallax-scribble-1 {
    bottom: 53%;
  }

  .cf-parallax-image-3 {
    bottom: 19%;
  }

  .cf-parallax-image-1 {
    bottom: 5%;
  }

  .cf-parallax-image-contain {
    height: 500px;
    margin-top: -60px;
  }

  .cf-82px-heading {
    font-size: 50px;
  }

  .cf-hero-section-5---heading-wrapper {
    width: 90%;
    padding-top: 60px;
    padding-bottom: 90px;
  }

  .cf-service-paragraph {
    margin-top: 0;
    font-size: 16px;
    line-height: 150%;
  }

  .cf-service-heading {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .cf-features-section-2-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
  }

  .cf-features-section-2-heading {
    max-width: 420px;
    font-size: 28px;
  }

  .cf-features-section-2-wrapper {
    width: 90%;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .image-4 {
    object-fit: scale-down;
    width: auto;
    max-width: 100%;
    height: auto;
    overflow: visible;
  }

  .text-block-16 {
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 1.15rem;
  }

  .button {
    background-image: linear-gradient(75deg, #9ddddd, #1bb2b1);
    width: 72%;
    margin-left: 0;
    margin-right: 0;
  }

  .text-size-large {
    margin-right: .125rem;
  }

  .show-mobile-portrait {
    display: block;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .text-size-medium {
    object-fit: fill;
    margin-right: 2rem;
    display: block;
    overflow: visible;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

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

  .padding-vertical.padding-xhuge {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .license-images-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-component {
    align-items: stretch;
  }

  .text-span {
    font-size: 2.5rem;
  }

  .home-hero-button-wrap {
    grid-row-gap: 2rem;
    flex-direction: column;
  }

  .logos-grid {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    object-fit: contain;
    flex: 0 auto;
    grid-template-rows: minmax(0, 1fr) 1fr 1fr 1fr 1fr 1fr auto;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    grid-template-areas: "."
                         "."
                         "."
                         "."
                         "."
                         "."
                         ".";
    grid-auto-rows: minmax(0, 0fr);
    grid-auto-columns: 1fr;
    grid-auto-flow: row dense;
    place-content: center;
    align-self: auto;
    place-items: center;
    width: auto;
    max-width: 20rem;
    height: auto;
    overflow: visible;
  }

  .logos-grid-item {
    width: 7rem;
    display: block;
    position: static;
  }

  .home-hero-bg-circle-wrap {
    width: 80vw;
    height: 80vw;
    top: auto;
    bottom: 37%;
    left: -70%;
  }

  .bg-circle.home-hero {
    background-image: linear-gradient(to top, #1bb2b1, #9ddddd);
  }

  .bg-border-circle.home-hero {
    background-image: none;
  }

  .services-items-wrap {
    grid-row-gap: 3.5rem;
  }

  .services-icon {
    width: 25px;
  }

  .services-item-up {
    object-fit: fill;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    font-size: 12vw;
  }

  .about-heading {
    font-size: 2.6rem;
  }

  .about-main-inside {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 2fr;
    width: auto;
  }

  .about-main-content {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: nowrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    width: 85%;
    margin-right: 0;
    display: flex;
  }

  .home-about-image {
    height: 27rem;
  }

  .work-list {
    grid-row-gap: 7rem;
  }

  .work-item-image-wrapper {
    padding-top: 0;
  }

  .work-item-image {
    width: 100%;
  }

  .home-about-bg-circle-wrap {
    width: 90vw;
    height: 90vh;
    bottom: 15%;
    right: -66%;
  }

  .testimonial-component {
    padding-bottom: 10rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .testimonial-slider-left-arrow {
    inset: auto auto -10% 0%;
  }

  .testimonial-slider-right-arrow {
    inset: auto auto -10% 23%;
  }

  .testimonial-slide-image {
    height: 25rem;
  }

  .testimonial-bg-circle-wrap {
    width: 80vw;
    height: 80vw;
    bottom: 37%;
    left: -54%;
  }

  .pricing-tables-wrap {
    max-width: 100%;
  }

  .pricing-table {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-up {
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo {
    flex-direction: row;
    justify-content: space-between;
    display: flex;
  }

  .social-links-container {
    justify-content: center;
    align-self: center;
  }

  .footer-cta-text {
    font-size: 2rem;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr;
  }

  .image {
    max-width: 70%;
  }

  .heading {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 2.5rem;
  }

  .clients-wrapper-three {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    margin-bottom: 0;
    display: grid;
  }

  .clients-image-three {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-block-6 {
    flex: 1;
    align-self: auto;
    font-size: 2.75rem;
  }

  .text-block-8 {
    font-size: 2.75rem;
  }

  .text-block-9 {
    flex: 1;
    font-size: 2.75rem;
  }

  .text-block-10 {
    text-transform: none;
    white-space: normal;
    object-fit: fill;
    direction: ltr;
    margin-left: 0;
    font-size: 2.75rem;
    display: block;
  }

  .div-block, .div-block-10, .div-block-11, .div-block-12, .div-block-15 {
    width: 8rem;
  }

  .text-block-11 {
    font-size: 1rem;
  }

  .cf-reviewer-position, .cf-reviewer-name {
    font-size: 16px;
  }

  .cf-reviewer-info {
    margin-top: 16px;
    margin-left: 0;
  }

  .cf-reviewer-block {
    flex-direction: column;
  }

  .cf-cta-testimonial-text {
    font-size: 16px;
  }

  .cf-testimonial-slide-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cf-testimonial-slide-wrapper.black {
    margin-left: .5rem;
    margin-right: .5rem;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cf-cta-submit-button {
    margin-top: 20px;
    position: static;
  }

  .cf-cta-text-field {
    padding-right: 20px;
  }

  .cf-cta-form {
    flex-direction: column;
  }

  .cf-cta-form-wrapper {
    padding: 60px 24px;
  }

  .cf-parallax-scribble-2 {
    width: 50%;
    bottom: 22%;
  }

  .cf-parallax-scribble-1 {
    width: 60%;
    bottom: 78%;
  }

  .cf-parallax-image-3 {
    bottom: 25%;
  }

  .cf-parallax-image-1 {
    bottom: 8%;
  }

  .cf-parallax-image-contain {
    height: 350px;
  }

  .cf-82px-heading {
    font-size: 40px;
  }

  .cf-hero-section-5---heading-wrapper {
    padding-bottom: 60px;
  }

  .cf-features-section-2-icon-wrap {
    margin-bottom: 16px;
  }

  .cf-features-section-2-image-wrapper {
    margin-bottom: 20px;
  }

  .cf-features-section-2-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .image-4 {
    object-fit: scale-down;
    max-width: 100%;
    height: auto;
  }

  .text-block-14 {
    margin-left: 1rem;
    margin-right: 1rem;
  }

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

  .image-6 {
    text-align: left;
    position: static;
  }
}

#w-node-d7452087-b7c3-ded5-7918-8bcb4b249348-9d91ee0b, #w-node-_647cdc74-d112-c00a-e6be-8141a946ac49-9d91ee0b, #w-node-c14a785f-0bfc-3b8d-0141-85c43813938f-9d91ee0b, #w-node-_6d713109-d819-9618-7dc5-2345b01ea7cc-9d91ee0b, #w-node-_47e34fb1-85bb-4536-cedd-c98824ec62b1-9d91ee0b, #w-node-_70a47568-3a58-1f83-c44c-785469a270df-9d91ee0b, #w-node-f27a481c-763b-5eab-9af2-98779bf904d9-9d91ee0b, #w-node-_8a854172-9059-f9a3-fd33-f0ff056e98a9-9d91ee0b, #w-node-_51670e6d-323d-80ac-69f5-3151ccf79b6d-9d91ee0b, #w-node-_83f4cd8b-8e69-d8c5-5935-14de8b31281f-9d91ee0b, #w-node-_21f59d33-d874-5526-20a7-c4e40a57abf1-9d91ee0b, #w-node-f64cbdc8-5294-07e4-1aba-cb6fa665847b-9d91ee0b, #w-node-_12a74137-f784-db7a-2ca6-b82ef115867e-9d91ee0b, #w-node-bbc37602-ff44-5659-6f2c-1182a1183dba-9d91ee0b, #w-node-c01bdeed-4a61-cdcb-fdfe-6bd910eb395a-9d91ee0b, #w-node-_8af69fdd-bfac-7951-c65d-2a88a4e8cb92-9d91ee0b, #w-node-_7a7048e5-2ecb-faee-667d-66087702d018-9d91ee0b, #w-node-_5d3c0f7b-a7cd-8096-4b02-bc12498af947-9d91ee0b, #w-node-_3d12a550-65e5-18f1-b8f9-d148945e7215-9d91ee0b {
  place-self: center;
}

#w-node-c4f300bd-504e-353c-2d1f-83229c3cbc2d-9d91ee0b, #w-node-aff5b0f8-ed50-e491-f727-661efdc25319-9d91ee0b, #w-node-e14b1e53-35c3-91ac-e98c-901804ac3efb-9d91ee0b, #w-node-_7caab118-b7e9-68c4-f293-39b65acf60d8-9d91ee0b, #w-node-_6d267e2a-fb12-eef2-c55a-d9ac064d0a5a-9d91ee0b, #w-node-_97bebab8-579c-cb29-d613-23d2968f10ed-9d91ee0b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_37db75ad-49e5-2861-a085-c61bbae296fb-bae296dc {
  justify-self: auto;
}

@media screen and (min-width: 1280px) {
  #w-node-_37db75ad-49e5-2861-a085-c61bbae296fb-bae296dc {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: auto;
  }
}

@media screen and (max-width: 767px) {
  #w-node-c4f300bd-504e-353c-2d1f-83229c3cbc2d-9d91ee0b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d7452087-b7c3-ded5-7918-8bcb4b249348-9d91ee0b {
    place-self: center;
  }

  #w-node-c4f300bd-504e-353c-2d1f-83229c3cbc2d-9d91ee0b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Manrope Variablefont Wght';
  src: url('../fonts/Manrope-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}