:root {
  --primary-dark: #0e0e0e;
  --white: white;
  --paragraph-gray: #8b8b8b;
  --white-30: #ffffff4d;
  --primary: #0040ff;
  --small-border: 10px;
  --middle-border: 20px;
  --dark-gray-50: #afafaf80;
  --large: 50px;
  --dark: #29282b;
  --dark-gray: #afafaf;
  --primary-light: whitesmoke;
  --light-gray: #f9f9fa;
  --gray: #e9e9e9;
  --pink: #e8bfe4;
  --purple: #471e43;
  --primary-pink: #ec5ec2;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

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

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  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 {
  background-color: var(--primary-dark);
  color: var(--white);
  letter-spacing: -.2px;
  font-family: Almarai, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
}

h1 {
  color: var(--white);
  letter-spacing: -3.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Almarai, sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1em;
}

h2 {
  color: var(--white);
  letter-spacing: -2.4px;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Almarai, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1em;
}

h3 {
  color: var(--white);
  letter-spacing: -1.8px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Almarai, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1em;
}

h4 {
  color: var(--white);
  letter-spacing: -1.2px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Almarai, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2em;
}

h5 {
  color: var(--white);
  letter-spacing: -1.2px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Almarai, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2em;
}

h6 {
  color: var(--white);
  letter-spacing: -.8px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Almarai, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
}

p {
  color: var(--paragraph-gray);
  letter-spacing: -.2px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Almarai, sans-serif;
  line-height: 1.5em;
}

a {
  color: var(--white);
  text-transform: none;
  align-items: center;
  font-family: Almarai, sans-serif;
  font-size: 18px;
  line-height: 1.5em;
  text-decoration: none;
  transition: all .35s;
}

a:hover {
  color: var(--white-30);
}

ul {
  grid-row-gap: 15px;
  background-color: var(--paragraph-gray);
  color: var(--primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  display: flex;
}

li {
  align-items: center;
  line-height: 1.4em;
}

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

label {
  margin-bottom: 10px;
  display: block;
}

blockquote {
  text-align: center;
  background-image: url('../images/bxs_quote-left_1bxs_quote-left.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  border-left: 1px #000;
  margin-top: 0;
  margin-bottom: 0;
  padding: 30px 20px 10px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.section {
  z-index: 2;
  border-radius: 10px;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section.licensing-fonts {
  padding-top: 0;
  padding-bottom: 0;
}

.section.changelog-banner {
  background-color: var(--primary);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 450px;
  padding-top: 140px;
  display: flex;
}

.section.without-bottom-spacing {
  padding-bottom: 0;
}

.section.banner-section {
  background-color: var(--primary);
  padding-top: 140px;
  padding-bottom: 0;
}

.section.trusted-section {
  padding-top: 50px;
  padding-bottom: 0;
}

.section.products {
  padding-bottom: 0;
  overflow: clip;
}

.section.pricing {
  overflow: hidden;
}

.section.banner-section-dark {
  padding-top: 140px;
  padding-bottom: 0;
}

.section.banner-section-dark-copy {
  padding-top: 160px;
  padding-bottom: 0;
}

.base-container {
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.base-container.align-left {
  align-items: flex-start;
}

.base-container.small-container {
  max-width: 1100px;
}

.grid-system-wrapper {
  flex-direction: column;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.grid-system {
  border-top-left-radius: var(--small-border);
  border-top-right-radius: var(--small-border);
  border-top: 1px solid #7c7c7c;
  justify-content: space-between;
  width: 80%;
  display: flex;
}

.grid-system.bottom {
  border-radius: 0px 0px var(--small-border) var(--small-border);
}

.grid-title {
  background-color: var(--primary);
  color: var(--white);
  border-left: 1px #a7a7a7;
  border-right: 1px solid #7c7c7c;
  justify-content: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-title.first-grid-top {
  border-top-left-radius: var(--small-border);
  background-color: var(--primary);
  border-left-style: solid;
  border-left-color: #7c7c7c;
  width: 24%;
  height: 100%;
  margin-top: 0;
}

.grid-title.last-title-grid {
  border-top-right-radius: var(--small-border);
}

.grid-description {
  border-bottom: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  justify-content: center;
  align-items: center;
  width: 19%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 10px;
  display: flex;
}

.grid-description.first-description {
  border-bottom-left-radius: var(--small-border);
  border-bottom: 1px solid #a7a7a7;
  border-left: 1px solid #a7a7a7;
  border-right: 1px solid #a7a7a7;
  width: 24%;
}

.grid-description.last-description {
  border-bottom-right-radius: var(--small-border);
  border-right-style: solid;
  border-right-width: 1px;
}

.spacing-system-column {
  padding-right: 20px;
}

.spacing-system-image {
  filter: grayscale();
  max-width: 80%;
}

.spacing-wrapper-mobile {
  width: 70%;
  margin-top: 30px;
  position: relative;
}

.typography-wrapper {
  margin-top: 30px;
}

.spacing-columns {
  margin-top: 40px;
}

.bottom-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: auto 0% 10% auto;
}

.top-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  top: 8%;
  bottom: auto;
  right: 0;
}

.spacing-wrapper {
  width: 100%;
  margin-top: 30px;
  position: relative;
}

.middle-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: 33% 0% auto auto;
}

.spasing-system-image-mobile {
  filter: grayscale();
  max-width: 70%;
}

.primary-style-guide {
  border-radius: var(--small-border);
  background-color: var(--primary);
  width: 75px;
  height: 75px;
}

.color-wrapper {
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.primary-dark-style-guide {
  border: 1px solid var(--white-30);
  border-radius: var(--small-border);
  background-color: var(--primary-dark);
  width: 75px;
  height: 75px;
}

.colors-container {
  grid-column-gap: 60px;
  justify-content: flex-start;
  margin-top: 40px;
  display: flex;
}

.color-container {
  grid-column-gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 40px;
  display: flex;
}

.white-style-guide {
  border-radius: var(--small-border);
  background-color: var(--white);
  width: 75px;
  height: 75px;
}

.headings-typography-wrapper {
  grid-row-gap: 10px;
  flex-flow: wrap;
  width: 47%;
  display: flex;
}

.headers-wrapper {
  width: 100%;
  margin-top: 10px;
}

.h1-tablet {
  font-size: 50px;
}

.h2-tablet {
  font-size: 42px;
}

.h1-mobile {
  font-size: 46px;
}

.h2-mobile {
  font-size: 36px;
}

.h3-mobile {
  font-size: 32px;
}

.style-guide-body-wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.style-guide-body-wrapper.last-child {
  margin-right: 0;
}

.primary-button {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white);
  color: var(--primary-dark);
  text-align: center;
  border-radius: 50px;
  grid-template-rows: auto;
  grid-template-columns: 24px 1fr 24px;
  grid-auto-columns: 1fr;
  justify-content: center;
  height: 55px;
  margin-top: 20px;
  padding: 14px 20px;
  transition: background-color .35s, color .35s;
  display: flex;
  position: relative;
}

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

.primary-button.serch-button {
  margin-left: auto;
  margin-right: auto;
}

.primary-button.dark-color-hover {
  border: 1px solid var(--white);
}

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

.primary-button.border {
  border: 1px solid var(--white);
}

.primary-button.pagination {
  border-style: none;
  margin-top: 40px;
  font-size: 18px;
}

.style-guide-div {
  grid-row-gap: 60px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

.top-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 5%;
  right: 0;
}

.middlr-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 29%;
  right: 0;
}

.bottom-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  bottom: 7%;
  right: 0;
}

.grid-header {
  width: 100%;
  margin-top: 50px;
}

.link-wrapper {
  width: 50%;
  margin-top: 10px;
}

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

.nav-menu {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
}

.nav-link {
  color: var(--white);
  text-align: center;
  padding: 15px;
}

.nav-link:hover {
  opacity: 1;
  color: var(--white);
}

.nav-link.w--current {
  color: var(--white);
}

.pages-banner {
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  min-height: 400px;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
}

.licensing-title-wrapper {
  border-bottom: 1px #5e5e5e80;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.licensing-images-wrapper {
  border-top: 1px solid #5e5e5e80;
  width: 100%;
  padding-top: 40px;
}

.licensing-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-bottom: 1px #5e5e5e80;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  padding-bottom: 60px;
}

.licensing-image {
  border-radius: var(--middle-border);
  object-fit: cover;
  width: 100%;
  height: 320px;
}

.licensing-title {
  width: 100%;
  padding-bottom: 30px;
}

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

.licensing-image-link:hover {
  opacity: 1;
}

.license-link {
  color: var(--white);
  letter-spacing: normal;
  margin-right: 50px;
  font-weight: 700;
}

.license-link.last-child {
  margin-right: 0;
}

.banner-title {
  color: var(--white);
  text-align: center;
}

.licensing-heading {
  margin-bottom: 20px;
}

.licensing-icon-link-wrapper {
  margin-right: 25px;
}

.icon-style-guide {
  color: var(--primary);
  font-family: "Fa Brands 400 (6.4.2)", sans-serif;
  font-size: 24px;
}

.icon-style-guide.dribble {
  font-family: "Fa solid 900", sans-serif;
}

.licensing-fonts-wrapper {
  align-items: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.licensing-icon-link {
  margin-bottom: 20px;
}

.licensing-paragraph {
  width: 50%;
  margin-right: 40px;
}

.licensing-font-title {
  color: var(--paragraph-gray);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.licensing-icons-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
  overflow: clip;
}

.utility-page-content {
  z-index: 2;
  text-align: center;
  flex-direction: column;
  width: 280px;
  display: flex;
  position: relative;
}

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

.password-image {
  width: 140px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.password-input {
  border: 1px solid var(--dark-gray-50);
  border-radius: var(--large);
  background-color: var(--primary-dark);
  color: var(--paragraph-gray);
  min-width: 280px;
  min-height: 48px;
  margin-bottom: 10px;
  padding: 10px 10px 10px 20px;
  font-size: 16px;
  line-height: 1.2em;
}

.password-input:focus {
  border: 1px solid var(--white);
  color: var(--white);
}

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

.password-title-wrapper {
  margin-bottom: 40px;
}

._404-paragraph {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

._404-logo-wrapper {
  z-index: 2;
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 40px 0% auto;
}

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

._404-content-wrapper {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  display: flex;
  position: relative;
}

.coming-soon-wrapper {
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  max-width: 670px;
  display: flex;
  position: relative;
}

.changelog-heading {
  margin-bottom: 20px;
}

.coming-soon-form {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: row;
  display: flex;
}

.coming-soon-input {
  border: 1px solid var(--dark-gray-50);
  border-radius: var(--large);
  background-color: var(--primary-dark);
  color: var(--paragraph-gray);
  min-width: 300px;
  height: auto;
  margin-bottom: 0;
  padding: 18px 24px;
  line-height: 1em;
}

.coming-soon-input:focus {
  border: 1px solid var(--white);
  color: var(--white);
}

.coming-soon-input::placeholder {
  color: var(--paragraph-gray);
  font-size: 16px;
  line-height: 1em;
}

.coming-soon-paragraph {
  margin-top: 20px;
  margin-bottom: 40px;
}

.coming-soon-page-wrap {
  text-align: left;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
  overflow: clip;
}

.coming-soon-heading {
  margin-top: 60px;
  font-size: 70px;
}

.nav-menu-wrapper {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer {
  background-color: var(--primary-dark);
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.footer-bottom-wrapper {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 5px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 55%;
  display: grid;
  position: relative;
}

.footer-rights {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  color: var(--paragraph-gray);
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1.5em;
  display: flex;
}

.footer-copyright {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  color: var(--paragraph-gray);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-size: 16px;
  line-height: 1.5em;
  display: flex;
}

.footer-copyright-link {
  color: var(--paragraph-gray);
  text-transform: none;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
}

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

.style-guide-buttons-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.style-guide-button-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.style-guide-button-wrapper.last-child {
  margin-right: 0;
}

.paragraph-large {
  font-size: 18px;
  line-height: 1.5em;
}

.banner-title-wrapper {
  flex-direction: column;
  align-items: center;
  max-width: 680px;
  margin-top: 20px;
  display: flex;
}

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

.banner-description {
  color: var(--white);
  max-width: 560px;
  margin-top: 24px;
  font-size: 14px;
}

.section-title-description {
  margin-top: 24px;
  font-size: 18px;
}

.pricing-plans-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  width: 100%;
  display: grid;
}

.pricing-plan-item {
  border-radius: var(--middle-border);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background-color: #0040ff1a;
  background-image: radial-gradient(circle farthest-side at 50% 0, #0040ff99, #0040ff00);
  border: 1px solid #0040ff4d;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 32px;
  display: grid;
  position: relative;
}

.pricing-plan-item.most-popular {
  padding-top: 80px;
}

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

.accordion-toggle {
  grid-column-gap: 10px;
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  display: flex;
}

.accordion-list {
  background-color: #0000;
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.accordion-item {
  border-bottom: 1px solid #fff3;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  position: static;
  box-shadow: 0 0 20px #0000000f;
}

.accordion-item.last {
  border-bottom-style: none;
}

.accordion-list-content {
  max-width: 730px;
  margin-top: 16px;
  margin-bottom: 0;
}

.link-with-icon {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

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

.hidden {
  display: none;
}

.contacts-textarea {
  border: 1px solid var(--dark);
  border-radius: var(--middle-border);
  background-color: var(--primary-dark);
  color: var(--paragraph-gray);
  min-height: 100px;
  margin-bottom: 30px;
  padding: 16px 18px;
  font-size: 16px;
  overflow: auto;
}

.contacts-textarea:focus {
  border: 1px solid var(--primary);
  color: var(--white);
}

.contacts-textarea::placeholder {
  color: var(--paragraph-gray);
  font-size: 16px;
}

.contacts-3-form-wrapper {
  width: 100%;
  margin-bottom: 0;
}

.contact-3-inputs-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 10px;
  display: grid;
}

.contacts-3-form {
  text-align: center;
  width: 100%;
  height: 100%;
}

.footer-social-icons-wrapper {
  grid-column-gap: 10px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-wrapper {
  border-top: 1px solid #fff3;
  justify-content: space-between;
  width: 100%;
  padding-top: 50px;
}

.footer-brand-wrapper {
  z-index: 2;
  grid-column-gap: 90px;
  grid-row-gap: 90px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: minmax(auto, 366px) 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 50px;
  display: grid;
  position: relative;
}

.footer-brand {
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand.w--current {
  color: #fff;
  margin-bottom: 0;
  padding-left: 0;
  font-family: Poppins;
}

.search-wrap-input {
  color: var(--primary-dark);
  background-color: #0000;
  border: 1px solid #0000;
  height: 60px;
  margin-bottom: 0;
  padding: 0;
  font-family: Lato, sans-serif;
  font-size: 18px;
}

.search-wrap-input:focus {
  border-style: none;
}

.search-wrap-input::placeholder {
  color: var(--dark-gray);
}

.search-desktop {
  z-index: 1000;
  background-color: #ffffffe6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
  position: fixed;
  inset: 0% auto auto 0%;
}

.search-close-button {
  cursor: pointer;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  font-weight: 900;
  position: absolute;
  inset: 50px 50px auto auto;
}

.search-bottom-line {
  background-color: var(--primary);
  width: 100%;
  height: 3px;
  margin-bottom: 20px;
  display: flex;
}

.search-wrapper {
  flex-direction: column;
  width: 100%;
  max-width: 1140px;
  display: flex;
}

.search-shop-con {
  align-items: center;
  margin-left: 20px;
  display: flex;
}

.search-result-item {
  margin-bottom: 30px;
}

.search-link {
  margin-bottom: 10px;
  font-size: 18px;
  transition: all .3s;
  display: inline-block;
}

.search-input {
  border: 1px solid var(--dark-gray-50);
  border-radius: var(--large);
  background-color: var(--primary-dark);
  color: var(--paragraph-gray);
  height: auto;
  margin-bottom: 0;
  padding: 16px 22px;
  font-size: 16px;
  line-height: 1em;
}

.search-input:focus {
  border: 1px solid var(--white);
}

.search-input::placeholder {
  color: var(--paragraph-gray);
}

.search-result-wrapper {
  width: 100%;
  margin-top: 40px;
}

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

.footer-logo-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 370px;
  display: flex;
}

.accordion-wrap-one-column {
  flex-flow: column;
  width: 100%;
  max-width: 860px;
  display: flex;
}

.headings-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.service-list-item {
  position: relative;
}

.style-guide-content-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: nowrap;
  margin-top: 30px;
  display: flex;
}

.slide-3 {
  max-height: 580px;
}

.card-wrapper-main {
  min-width: 310px;
  max-width: 310px;
  min-height: 336px;
  position: relative;
  overflow: hidden;
}

.about-3-tab-link {
  color: var(--white);
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  margin-bottom: -12px;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 19px;
  line-height: 32px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.about-3-tab-link.w--current {
  color: var(--white);
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 24px;
}

.portfolio-grid-collection-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px #00000014;
}

.portfolio-masonry-image-wrapper {
  position: relative;
}

.mb-20 {
  margin-bottom: 20px;
}

.navbar-absolute {
  background-color: var(--primary);
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  position: fixed;
  inset: 0% 0% auto;
}

.testimonials {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog-section-title {
  text-align: center;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.map-wrapper {
  position: relative;
}

.map-wrapper.home-page {
  width: 100%;
  margin-bottom: 60px;
}

.contacts-wrapper-grid {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-left: 30px;
  padding-right: 30px;
}

.section-title-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.courses-collection {
  width: 100%;
}

.features-description {
  text-align: center;
  margin-top: 24px;
}

.home-4-testimonials-wrapper, .testimonials-wrapper-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.top-banner-button-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 38px;
  display: flex;
  position: relative;
}

.about-img {
  object-fit: cover;
  position: absolute;
}

.about-img._1 {
  z-index: 2;
  width: 350px;
  inset: 0% 0% auto 12%;
}

.about-img._5 {
  z-index: 4;
  width: 350px;
  inset: 60% 0% auto 24%;
}

.about-img._3 {
  z-index: 1;
  width: 300px;
  inset: 19% 4% 0% auto;
}

.about-img._4 {
  z-index: 5;
  width: 220px;
  inset: 47% 30% 0% 50%;
}

.about-img._2 {
  z-index: 3;
  width: 300px;
  inset: 31% auto 0% 2%;
}

.subtitle {
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.our-services-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  display: flex;
}

.central-alignment-heaading {
  text-align: center;
  margin-bottom: 75px;
}

.heading-wrapper {
  margin-top: 40px;
  margin-bottom: 30px;
}

.content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 190px;
  display: flex;
}

.content {
  border-radius: 5px;
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.industries-block-wrapper {
  background-color: #0000;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  max-width: 35vw;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.industries-block-wrapper:hover {
  box-shadow: 0 10px 20px #14173326;
}

.home-9-team-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 31%;
  position: relative;
}

.about-4-team-slide {
  width: 23%;
  margin-right: 30px;
}

.about-6-projects-item {
  text-align: center;
  object-fit: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 370px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-with-blue-bg {
  background-color: var(--primary);
  justify-content: center;
  display: flex;
}

.search {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.subtitle-2 {
  color: #fc8e44;
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.dropdown-nav-link {
  color: #999;
  margin-left: -20px;
  padding: 5px 0;
  font-family: Poppins;
  transition: color .2s;
  display: flex;
}

.dropdown-nav-link:hover, .dropdown-nav-link.w--current {
  color: #004ae2;
}

.gallery-image-link {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-19-gallery-img-link {
  justify-content: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.menu-wrap {
  align-items: center;
  display: flex;
}

.rich-text-style h2 {
  margin-bottom: 15px;
}

.rich-text-style h3, .rich-text-style h4 {
  margin-top: 25px;
  margin-bottom: 15px;
}

.rich-text-style h5, .rich-text-style h6 {
  margin-top: 20px;
}

.rich-text-style ul {
  margin-top: 20px;
  margin-bottom: 20px;
}

.rich-text-style img {
  border-radius: var(--middle-border);
  margin-top: 20px;
  margin-bottom: 10px;
}

.home-banner-left-arrow {
  align-items: center;
  height: 40px;
  display: flex;
  inset: 0% auto 0% 2%;
}

.home-23-team-item {
  width: 33%;
}

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

.center-title.bottom-space {
  margin-bottom: 50px;
}

.brand-tablet {
  display: none;
}

.paragraph-gray-style-guide {
  border-radius: var(--small-border);
  background-color: var(--paragraph-gray);
  width: 75px;
  height: 75px;
}

.style-guide-subtitle {
  margin-bottom: 10px;
}

.footer-rights-wrapper {
  grid-column-gap: 5px;
  flex-wrap: wrap;
  display: flex;
}

.position-relative {
  position: relative;
}

.coming-soon-form-main {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: wrap;
  display: flex;
}

.success-message {
  color: var(--white);
  text-align: left;
  background-color: #0000;
  height: 40px;
  padding: 0;
}

.error-message {
  color: var(--white);
  text-align: left;
  background-color: #0000;
  padding: 0;
}

.typography-hero-wrapper {
  grid-row-gap: 60px;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 40px;
  display: flex;
}

.footer-licensing-link {
  color: var(--paragraph-gray);
  text-transform: none;
  font-size: 16px;
}

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

.button-wrapper-sg {
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.section-paddings {
  z-index: 2;
  background-color: var(--primary-dark);
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}

.banner-text-wrapper {
  max-width: 670px;
  margin-right: auto;
  position: relative;
}

.banner-text-wrapper.large-max-w {
  max-width: 700px;
}

.lable {
  grid-column-gap: 11px;
  border-radius: var(--large);
  background-color: #fff3;
  justify-content: center;
  align-items: center;
  padding: 4px 14px;
  display: flex;
}

.lable-dot {
  background-color: var(--white);
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.section-lines-wrapper {
  justify-content: space-around;
  align-items: stretch;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

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

.logos-looping-wrapper {
  max-width: 960px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.looping-logos {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  margin-right: 40px;
  display: grid;
}

.logo {
  opacity: .4;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 128px;
  display: flex;
}

.title-wrapper {
  max-width: 770px;
  margin-bottom: 50px;
  position: relative;
}

.product-description {
  max-width: 420px;
  margin-top: 24px;
}

.vertical-12 {
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.vertical-12.stretch {
  align-items: stretch;
}

.how-it-works-block {
  border: 1px solid var(--white-30);
  border-radius: var(--middle-border);
  background-color: #ffffff1a;
  background-image: radial-gradient(circle farthest-side at 50% 0, #fff9, #fff0);
  justify-content: center;
  align-items: center;
  min-height: 340px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
  overflow: clip;
}

.process-image-absolute {
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
}

.process-grid {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.flex-12 {
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.soc-icon-wrapper {
  border: 1px solid var(--white-30);
  border-radius: var(--middle-border);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background-color: #ffffff1a;
  background-image: radial-gradient(circle at 50% 0, #fff9, #fff0);
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  display: flex;
}

.icons-wrapp {
  z-index: 1;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.horizontal-line-primary {
  border-top: 1px dashed var(--white);
  width: 16px;
  height: 1px;
}

.testimonials-card-blue {
  grid-row-gap: 40px;
  border-radius: var(--middle-border);
  background-color: #0040ff1a;
  background-image: radial-gradient(circle farthest-side at 50% 0, #0040ff99, #072b9a00);
  border: 1px solid #0040ff4d;
  justify-content: space-between;
  min-width: 370px;
  max-width: 370px;
  min-height: 377px;
  padding: 30px;
}

.testimonials-card-blue.without-gradient {
  background-image: none;
  border-style: none;
}

.section-space {
  background-color: var(--primary);
  border-radius: 20px;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.phone-images-wrapper {
  grid-column-gap: 10px;
}

.features-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  max-width: 410px;
}

.row-16 {
  grid-row-gap: 16px;
}

.dropdown-icon-wrapper {
  justify-content: center;
  align-items: center;
  position: relative;
}

.tablet-btn-wrapper {
  display: none;
}

.hero-form-popup {
  z-index: 1000;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0006;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.hero-pop-up-wrapper {
  z-index: 1000;
  border-radius: var(--middle-border);
  background-color: var(--primary-dark);
  width: 750px;
  padding: 40px;
  position: relative;
  inset: 0 0 0 auto;
}

.popup-intro {
  grid-row-gap: 30px;
}

.text-field {
  border: 1px solid var(--dark);
  border-radius: var(--large);
  background-color: var(--primary-dark);
  color: var(--paragraph-gray);
  width: 100%;
  min-height: 60px;
  margin-bottom: 0;
  padding: 10px 16px;
  font-size: 16px;
}

.text-field:focus {
  border-color: var(--primary);
  color: var(--white);
}

.text-field::placeholder {
  color: var(--paragraph-gray);
  font-size: 16px;
}

.close-link {
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
  position: absolute;
  inset: 10px 10px auto auto;
}

.close-image {
  filter: invert();
}

.row-24 {
  grid-row-gap: 24px;
}

.row-24.center {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
}

.cta-wrapper {
  grid-column-gap: 50px;
  border-radius: var(--middle-border);
  background-color: var(--primary);
  justify-content: space-between;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 96px;
  position: relative;
  overflow: clip;
}

.cta-text {
  grid-row-gap: 56px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 560px;
  display: flex;
}

.faq-title {
  justify-content: flex-start;
  align-items: center;
}

.faq-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.clip {
  z-index: 10;
  position: relative;
  overflow: hidden;
}

.hover-text.bottom-hover-text {
  position: absolute;
  bottom: -100%;
}

.faq-title-wrapper {
  grid-column-gap: 20px;
}

.animation-block {
  position: relative;
  overflow: hidden;
}

.animation-overlay {
  background-image: linear-gradient(90deg, transparent, var(--primary-dark) 50%);
  position: absolute;
  inset: 0%;
}

.animation-overlay.primary {
  background-image: linear-gradient(90deg, transparent, var(--primary) 50%);
}

.text-span-2 {
  background-image: url('../images/Vector-1.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 5px 11px;
  width: 5px;
  height: 11px;
}

.secondary-button {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white-30);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
  grid-template-rows: auto;
  grid-template-columns: 24px 1fr 24px;
  grid-auto-columns: 1fr;
  justify-content: center;
  height: 55px;
  padding: 14px 20px;
  transition: background-color .35s, color .35s;
  display: flex;
  position: relative;
}

.secondary-button:hover {
  background-color: var(--white);
  color: var(--primary-dark);
}

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

.dash-wrapper {
  border-radius: var(--middle-border);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #0003;
  margin-top: 70px;
  margin-bottom: -110px;
  padding: 10px;
}

.banner-element-1 {
  width: 100%;
  position: absolute;
  inset: 100px -60px 0% auto;
}

.banner-element-2 {
  width: 100%;
  position: absolute;
  inset: 200px 336px 0% auto;
}

.full-image {
  width: 100%;
  height: 100%;
}

.banner-section-wrapper {
  padding-bottom: 110px;
  overflow: clip;
}

.overlay-card {
  border-radius: var(--middle-border);
  background-color: #000000b0;
  display: flex;
  position: absolute;
  inset: 0%;
}

.absolute-card-image {
  border-radius: var(--middle-border);
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0% 0%;
}

.bg-blur {
  border-radius: var(--middle-border);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  position: absolute;
  inset: 0%;
}

.overlay-card-color {
  border-radius: var(--middle-border);
  background-color: #ed8523;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.overlay-card-color.blue {
  background-color: var(--primary);
}

.overlay-card-color.green {
  background-color: #23edaa;
}

.overlay-card-color.purple {
  background-color: #7423ed;
}

.overlay-card-color.yellow {
  background-color: #edd923;
}

.relative-2 {
  position: relative;
}

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

.benefits-grid-top {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  margin-bottom: 20px;
}

.benefits-card {
  border-radius: var(--middle-border);
  background-color: #0040ff1a;
  background-image: radial-gradient(circle closest-corner at 50% 0, #0040ff99, #072b9a00);
  border: 1px solid #0040ff4d;
  min-height: 291px;
  display: flex;
  position: relative;
}

.benefits-card.vertical {
  flex-flow: column;
}

.benefits-image-wrapper {
  padding-top: 23px;
  padding-bottom: 23px;
  position: relative;
}

.benefits-left {
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 20px 40px 40px;
  position: relative;
}

.benefits-left.max-width {
  width: 100%;
}

.benefits-image {
  object-fit: cover;
  object-position: 0% 50%;
  width: 100%;
  height: 68%;
  margin-top: 90px;
}

.benefits-grid-bottom {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: minmax(200px, 420px) 1fr;
}

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

.benefits-card-top {
  padding: 40px 40px 30px;
  position: relative;
}

.benefits-image-wrapper-center {
  padding-bottom: 30px;
  padding-left: 47px;
  padding-right: 47px;
}

.dash-card-wrapper {
  padding-top: 32px;
  position: relative;
}

.benefits-overlay {
  background-color: var(--primary);
  filter: blur(90px);
  border-radius: 100%;
  width: 100%;
  max-width: 300px;
  height: 129px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0%;
}

.our-process-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(auto, 250px) 1fr;
  place-items: start;
  position: relative;
}

.elipse {
  border: 1px solid #fff3;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 430px;
  height: 430px;
  display: flex;
  position: absolute;
}

.elipse._2 {
  width: 360px;
  height: 360px;
}

.elipse._3 {
  width: 280px;
  height: 280px;
}

.elipse._4 {
  width: 180px;
  height: 180px;
}

.center-button-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.top-24 {
  margin-top: 24px;
}

.stars-wrapper {
  grid-column-gap: 6px;
  justify-content: flex-start;
  align-items: center;
}

.testimonials-wrapper {
  display: flex;
  overflow: clip;
}

.looping-cards {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  margin-right: 20px;
  display: grid;
}

.faetures-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  place-items: start stretch;
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
}

.features-icon-wrapper {
  border-radius: var(--middle-border);
  background-color: #0040ff1a;
  background-image: radial-gradient(circle at 50% 0, #0040ff99, #fff0);
  border: 1px solid #0040ff4d;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  display: flex;
}

.horizontal-24 {
  grid-column-gap: 24px;
  flex-flow: row;
}

.horizontal-line {
  background-color: #ffffff1a;
  width: 100%;
  height: 1px;
}

.pricing-tab-link {
  border-radius: var(--middle-border);
  color: var(--paragraph-gray);
  background-color: #0040ff00;
  border: 1px solid #0000;
  padding: 4px 12px;
}

.pricing-tab-link.w--current {
  border-radius: var(--middle-border);
  color: var(--white);
  background-color: #0040ff1a;
  background-image: radial-gradient(circle, #0040ff99, #072b9acc);
  border: 1px solid #0040ff4d;
  padding: 4px 12px;
}

.tabs-menu {
  border-radius: var(--large);
  background-color: #0040ff1a;
  background-image: radial-gradient(circle at 50% 0, #0040ff99, #0040ff00);
  border: 1px solid #0040ff4d;
  justify-content: center;
  align-items: center;
  padding: 6px 8px;
  display: flex;
}

.tabs {
  z-index: 2;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.flex-center-8 {
  grid-row-gap: 8px;
  text-align: center;
  justify-content: flex-start;
  align-items: center;
}

.pricing-items {
  grid-row-gap: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.horizontal-12 {
  grid-column-gap: 12px;
  justify-content: flex-start;
  align-items: center;
}

.lable-most-popular {
  border-top-left-radius: var(--middle-border);
  border-top-right-radius: var(--middle-border);
  background-color: var(--primary);
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 48px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.pricing-bg-right {
  width: 100%;
  position: absolute;
  inset: 0% -195px 0% auto;
}

.pricing-bg-left {
  width: 100%;
  position: absolute;
  inset: 0 auto 0% -197px;
}

.soc-icon-wrapper-cta {
  border: 1px solid var(--white-30);
  border-radius: var(--middle-border);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background-color: #ffffff1a;
  background-image: radial-gradient(circle at 50% 0, #fff9, #fff0);
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  display: flex;
}

.absolute {
  z-index: 10;
  object-fit: cover;
  width: 730px;
  height: 580px;
  position: absolute;
  inset: 60px -350px 0% auto;
}

.cta-image-bg {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: -10% 0% auto auto;
}

.footer-link-soc {
  border: 1px solid var(--white);
  border-radius: var(--large);
  padding: 4px 10px;
}

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

.footer-bottom-links {
  justify-content: space-between;
  align-items: flex-end;
}

.footer-links {
  justify-content: space-between;
}

.vertical-14 {
  grid-row-gap: 14px;
}

.title-link {
  color: var(--paragraph-gray);
  font-size: 18px;
  line-height: 1.5em;
}

.footer-link-gray {
  color: var(--paragraph-gray);
  font-size: 16px;
}

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

.footer-text-field {
  color: var(--paragraph-gray);
  background-color: #fff0;
  border: 1px #000;
  border-bottom: 1px solid #fff3;
  height: 40px;
  margin-bottom: 0;
  padding: 0 100px 12px 0;
  font-size: 18px;
}

.footer-text-field:focus {
  border-bottom-color: var(--white);
}

.footer-text-field::placeholder {
  color: var(--paragraph-gray);
  font-size: 18px;
}

.footer-form {
  width: 100%;
  max-width: 440px;
  margin-top: 30px;
  margin-bottom: 50px;
  position: relative;
}

.submit-button-2 {
  background-color: #0000;
  background-image: url('../images/Icon.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  height: 40px;
  padding: 0 20px 0 0;
  transition: opacity .35s;
  position: absolute;
  inset: 0% 0% 12px auto;
}

.submit-button-2:hover {
  opacity: .6;
}

.product-wrapper-c {
  display: flex;
  overflow: clip;
}

.profile-img {
  height: 100%;
}

.sticky-block {
  position: sticky;
  top: 100px;
}

.primary-button-light {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: var(--white);
  text-align: center;
  background-color: #0040ff80;
  border-radius: 50px;
  grid-template-rows: auto;
  grid-template-columns: 24px 1fr 24px;
  grid-auto-columns: 1fr;
  justify-content: center;
  height: 55px;
  padding: 14px 20px;
  transition: background-color .35s, color .35s;
  display: flex;
  position: relative;
}

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

.features-pop-up-wrapper {
  z-index: 10;
  border-radius: var(--middle-border);
  background-color: var(--primary-dark);
  opacity: 0;
  justify-content: center;
  align-items: center;
  width: 102%;
  height: 102%;
  padding: 30px 20px;
  position: absolute;
  inset: -1%;
}

.card-wrapper {
  border-radius: var(--middle-border);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: 310px;
  min-height: 336px;
  display: flex;
  position: relative;
}

.card-wrapper-front {
  z-index: 5;
  border-radius: var(--middle-border);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.back-intro {
  grid-row-gap: 24px;
}

.close-link-card {
  border-radius: var(--large);
  background-color: var(--primary-dark);
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 4px;
  display: none;
  position: absolute;
  inset: 10px 10px auto auto;
}

.blog-collection-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.collection-list-wrapper {
  width: 100%;
  height: 100%;
}

.blog-card {
  border-radius: var(--middle-border);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #0040ff1a;
  background-image: radial-gradient(circle closest-corner at 50% 0, #0040ff99, #072b9a00);
  border: 1px solid #0040ff4d;
  flex-flow: column;
  display: flex;
  position: relative;
}

.collection-title-link {
  font-size: 24px;
  line-height: 1.2em;
}

.blog-image {
  border-bottom-left-radius: var(--small-border);
  border-bottom-right-radius: var(--small-border);
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .8s;
}

.blog-image:hover {
  transform: scale(.95);
}

.blog-image-wrapper {
  border-bottom-left-radius: var(--middle-border);
  border-bottom-right-radius: var(--middle-border);
  height: 300px;
  position: relative;
  overflow: clip;
}

.blog-item-top {
  justify-content: space-between;
  align-items: flex-start;
  min-height: 250px;
  padding: 40px;
  position: relative;
}

.blog-item-top.small-height {
  min-height: 200px;
}

.max-width-par {
  max-width: 400px;
}

.navbar-absolute-dark {
  background-color: var(--primary-dark);
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  position: fixed;
  inset: 0% 0% auto;
}

.overflow-hidden {
  overflow: hidden;
}

.empty-state {
  background-color: #0000;
}

.hero-blog-image {
  border-radius: var(--small-border);
  object-fit: cover;
  width: 100%;
  height: 500px;
}

.banner-element-1-copy {
  width: 100%;
  position: absolute;
  inset: 100px -60px 0% auto;
}

.blog-post-wrapper {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

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

.banner-element-changelog {
  width: 60%;
  position: absolute;
  inset: 100px 0 0% auto;
}

.banner-element-2-ch {
  width: 89%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

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

._404 {
  margin-bottom: 20px;
  font-size: 240px;
  line-height: 1em;
}

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

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

.promotion-label-holder {
  grid-row-gap: 10px;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: relative;
}

.promotion-label-paragraph {
  color: #fff;
  text-align: left;
  max-width: 94%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
}

.promotion-label-button {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3em;
}

.promotion-label-button:hover {
  color: #ffffffb3;
}

.promotion-coupon {
  color: #101828;
  background-color: #fff;
  border-radius: 5px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 12px;
  display: inline-block;
}

.promotion-icon {
  margin-right: 8px;
}

.promotion-label-close {
  cursor: pointer;
  padding: 10px 20px;
  position: absolute;
  top: -7px;
  right: -14px;
}

.promotion-label-left {
  background-color: #0055d4;
  border-radius: 4px;
  width: 100%;
  max-width: 290px;
  position: absolute;
}

.promotion-label-buy-this-template {
  color: #000;
  letter-spacing: normal;
  text-transform: capitalize;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  width: 144px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: flex;
}

.promotion-label-buy-this-template:hover {
  color: #000;
}

.close-image-2 {
  width: 12px;
  height: 12px;
}

.promotion-labels-wrapper {
  z-index: 2147483647;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: fixed;
  bottom: 5px;
  left: 5px;
  right: 5px;
}

.promotion-label-more-templates {
  color: #000;
  letter-spacing: normal;
  text-transform: capitalize;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  width: 144px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: flex;
}

.promotion-label-more-templates:hover {
  color: #000;
}

.promotion-label-right {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
  position: absolute;
  right: 10px;
}

.image {
  border-radius: 14px;
}

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

.list-item {
  color: var(--white);
}

.image-2 {
  border-radius: 10px;
  flex: 0 auto;
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 70px;
  }

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

  .section.banner-section-dark-copy {
    padding-top: 180px;
  }

  .base-container {
    max-width: 1330px;
  }

  .spacing-system-column {
    padding-right: 30px;
  }

  .headings-typography-wrapper {
    width: 48%;
  }

  .style-guide-body-wrapper {
    margin-right: 60px;
  }

  .nav-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .nav-link {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pages-banner {
    padding-top: 180px;
    padding-bottom: 130px;
  }

  .footer {
    padding-top: 130px;
  }

  .footer-bottom-wrapper {
    grid-template-columns: 1fr 1fr;
    width: auto;
    max-width: 770px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .style-guide-button-wrapper {
    width: auto;
  }

  .banner-title-wrapper {
    max-width: 740px;
  }

  .pricing-plan-item {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-brand-wrapper {
    grid-column-gap: 164px;
    grid-row-gap: 164px;
  }

  .testimonials {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .blog-section-title {
    margin-bottom: 70px;
  }

  .map-wrapper {
    padding-right: 70px;
  }

  .section-title-center {
    margin-bottom: 70px;
  }

  .about-img._3 {
    width: 340px;
  }

  .about-img._4 {
    width: 280px;
  }

  .about-img._2 {
    width: 340px;
  }

  .industries-block-wrapper {
    position: relative;
  }

  .section-with-blue-bg {
    padding-left: 40px;
    padding-right: 40px;
  }

  .banner-text-wrapper {
    max-width: 700px;
  }

  .how-it-works-block {
    min-height: 416px;
    max-height: 416px;
  }

  .process-grid {
    grid-column-gap: 70px;
    grid-template-columns: minmax(auto, 460px) 1fr;
  }

  .soc-icon-wrapper {
    width: 89px;
    height: 89px;
  }

  .horizontal-line-primary {
    width: 22px;
  }

  .section-space {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .cta-text {
    max-width: 721px;
  }

  .faq-wrapper {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .banner-element-1 {
    top: 30px;
    right: -170px;
  }

  .benefits-left.max-width {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 50%;
    display: flex;
  }

  .our-process-wrapper {
    grid-template-columns: minmax(auto, 370px) 1fr;
  }

  .elipse {
    width: 586px;
    height: 586px;
  }

  .elipse._2 {
    width: 460px;
    height: 460px;
  }

  .elipse._3 {
    width: 346px;
    height: 346px;
  }

  .elipse._4 {
    width: 246px;
    height: 246px;
  }

  .faetures-wrapper {
    grid-column-gap: 127px;
  }

  .absolute {
    width: 600px;
    height: 510px;
    right: -140px;
  }

  .cta-image-bg {
    top: 0%;
  }

  .banner-element-1-copy {
    top: 30px;
    right: -170px;
  }

  .banner-element-changelog {
    width: 90%;
    top: 30px;
    right: -170px;
  }

  .banner-element-2-ch {
    width: 60%;
  }
}

@media screen and (min-width: 1440px) {
  .section.changelog-banner {
    justify-content: flex-end;
    align-items: flex-end;
  }

  .about-img._1 {
    width: 380px;
  }

  .about-img._3 {
    width: 400px;
  }

  .about-img._4 {
    width: 300px;
  }

  .about-img._2 {
    width: 390px;
  }

  .our-services-wrap {
    align-items: center;
  }

  .section-with-blue-bg {
    padding-left: 100px;
    padding-right: 100px;
  }

  .banner-text-wrapper {
    max-width: 770px;
  }

  .process-grid {
    grid-template-columns: minmax(auto, 460px) 1fr;
  }

  .banner-element-1 {
    right: -100px;
  }

  .our-process-wrapper {
    grid-column-gap: 48px;
  }

  .absolute {
    right: -16px;
  }

  .banner-element-1-copy {
    right: -100px;
  }

  .banner-element-changelog {
    width: 60%;
    right: -100px;
  }
}

@media screen and (min-width: 1920px) {
  .nav-container {
    padding-left: 80px;
    padding-right: 80px;
  }

  .about-img._1 {
    width: 420px;
    left: 16%;
  }

  .about-img._3 {
    width: 430px;
    top: 20%;
    left: 54%;
  }

  .about-img._4 {
    left: 48%;
  }

  .section-with-blue-bg {
    padding-left: 180px;
    padding-right: 180px;
  }

  .banner-element-1 {
    top: 170px;
    right: -250px;
  }

  .banner-element-2 {
    top: 213px;
    right: 420px;
  }

  .pricing-bg-left {
    top: -100px;
  }

  .banner-element-1-copy {
    width: 90%;
    top: 170px;
    right: -250px;
  }

  .banner-element-changelog {
    top: 170px;
    right: -250px;
  }

  .banner-element-2-ch {
    width: 47%;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    letter-spacing: -2.5px;
    font-size: 50px;
  }

  h2 {
    font-size: 42px;
  }

  blockquote {
    font-size: 30px;
  }

  .section.changelog-banner {
    min-height: 300px;
    padding-top: 120px;
  }

  .section.banner-section, .section.banner-section-dark, .section.banner-section-dark-copy {
    padding-top: 120px;
  }

  .grid-system {
    width: 100%;
  }

  .grid-description.first-description {
    text-align: center;
  }

  .spacing-system-image {
    width: 75%;
  }

  .spacing-wrapper-mobile {
    width: 70%;
  }

  .spacing-columns {
    flex-flow: wrap;
    display: flex;
  }

  .bottom-style-spacing-desktop {
    bottom: 6%;
  }

  .top-style-spacing-desktop {
    top: 4%;
  }

  .middle-style-spacing-desktop {
    top: 30%;
  }

  .spasing-system-image-mobile {
    width: 70%;
  }

  .colors-container {
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .style-guide-body-wrapper {
    width: 100%;
  }

  .top-style-spacing-mobile {
    top: 3%;
  }

  .middlr-style-spacing-mobile {
    top: 26%;
  }

  .bottom-style-spacing-mobile {
    bottom: 6%;
  }

  .nav-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-menu {
    background-color: var(--primary-dark);
    flex-direction: column;
    width: 320px;
    inset: 0% auto 0% 0%;
  }

  .menu-button {
    text-align: right;
    background-color: #0000;
    padding: 0;
  }

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

  .nav-link {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
    display: flex;
  }

  .close-menu-button, .close-menu-button.w--open {
    background-color: #0000;
    padding: 0 20px 0 0;
  }

  .nav-close-icon {
    z-index: 15;
    filter: invert();
    align-self: stretch;
  }

  .pages-banner {
    min-height: 320px;
    padding-top: 120px;
  }

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

  .licensing-paragraph {
    width: 100%;
  }

  .coming-soon-paragraph {
    margin-bottom: 30px;
  }

  .coming-soon-heading {
    max-width: 520px;
    font-size: 56px;
  }

  .footer-bottom-wrapper {
    place-items: end stretch;
    width: 100%;
    margin-top: 24px;
  }

  .banner-title-wrapper {
    max-width: 470px;
  }

  .pricing-plans-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    place-items: end stretch;
  }

  .accordion-list-content {
    max-width: 95%;
  }

  .contact-3-inputs-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .footer-wrapper {
    flex-wrap: wrap;
  }

  .footer-brand-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: row;
    grid-template-columns: 1fr;
  }

  .search-desktop {
    display: none;
  }

  .search-bottom-line {
    display: flex;
  }

  .search-shop-con {
    display: none;
  }

  .search-input:focus {
    border: 1px solid var(--primary);
  }

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

  .headings-container {
    flex-wrap: wrap;
  }

  .style-guide-content-wrapper {
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .style-guide-content-wrapper.no-wrap {
    flex-wrap: nowrap;
  }

  .navbar-absolute {
    height: 60px;
  }

  .testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .blog-section-title {
    margin-bottom: 60px;
  }

  .contacts-wrapper-grid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-title-center {
    margin-bottom: 60px;
  }

  .home-4-testimonials-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .testimonials-wrapper-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .about-img._1 {
    top: 7%;
    left: 15px;
  }

  .about-img._5 {
    top: 58%;
    bottom: 0;
    left: 60px;
  }

  .about-img._3 {
    width: 360px;
    top: 0%;
    right: 15px;
  }

  .about-img._4 {
    width: 240px;
    top: 57%;
    left: auto;
    right: 15px;
  }

  .about-img._2 {
    z-index: 5;
    top: 30%;
    left: 35%;
  }

  .subtitle {
    margin-bottom: 30px;
  }

  .content {
    margin-bottom: 0;
  }

  .industries-block-wrapper {
    max-width: 45vw;
  }

  .about-4-team-slide {
    width: 100%;
  }

  .subtitle-2 {
    margin-bottom: 30px;
  }

  .dropdown-nav-link {
    color: #222;
    padding-top: 12px;
    padding-bottom: 12px;
    font-family: Lato, sans-serif;
    font-weight: 700;
  }

  .dropdown-nav-link.w--current {
    color: #004ae2;
  }

  .menu-wrap {
    background-color: var(--primary-dark);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    display: flex;
  }

  .home-banner-left-arrow {
    inset: 20% auto auto 4%;
  }

  .tablet-menu {
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    display: flex;
  }

  .image-burger {
    filter: invert();
    margin-bottom: 4px;
  }

  .brand-tablet {
    display: block;
  }

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

  .coming-soon-form-main {
    justify-content: center;
  }

  .spacing-system-title {
    font-size: 25px;
  }

  .how-it-works-block {
    height: 300px;
    min-height: 300px;
  }

  .process-image-absolute {
    height: 300px;
  }

  .testimonials-card-blue {
    min-width: 320px;
    max-width: 320px;
    min-height: auto;
  }

  .features-grid {
    max-width: 100%;
  }

  .tablet-btn-wrapper {
    margin-top: 30px;
    display: block;
  }

  .hero-pop-up-wrapper {
    width: 600px;
  }

  .cta-wrapper {
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 70px;
    padding-bottom: 0;
  }

  .cta-text {
    grid-row-gap: 40px;
    margin-bottom: 50px;
  }

  .faq-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: auto;
  }

  .dash-wrapper {
    margin-top: 50px;
  }

  .benefits-card {
    flex-flow: column;
    justify-content: space-around;
  }

  .benefits-card.vertical, .benefits-card.last {
    flex-flow: row;
  }

  .benefits-image-wrapper {
    padding-left: 10px;
  }

  .benefits-grid-bottom {
    grid-template-columns: minmax(auto, 1fr);
  }

  .benefits-image-wrapper-center {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 0;
  }

  .our-process-wrapper {
    grid-row-gap: 40px;
    grid-template-columns: minmax(auto, 1fr);
  }

  .testimonials-wrapper {
    overflow: scroll;
  }

  .faetures-wrapper {
    grid-column-gap: 30px;
  }

  .contain-image {
    height: 460px;
  }

  .absolute {
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
    height: 520px;
    display: flex;
    position: static;
  }

  .footer-bottom-links {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .footer-links {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-middle-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .cta-intro {
    flex-flow: column;
  }

  .sticky-block {
    position: static;
  }

  .blog-card {
    flex-flow: column;
    justify-content: space-around;
  }

  .blog-image-wrapper {
    height: 250px;
  }

  .blog-item-top {
    min-height: 270px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-absolute-dark {
    height: 60px;
  }

  .hero-blog-image {
    height: 400px;
  }

  ._404 {
    font-size: 160px;
  }

  .promotion-label-holder {
    display: none;
  }

  .promotion-label-left {
    max-width: 380px;
  }

  .promotion-labels-wrapper {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    letter-spacing: 0;
    font-size: 46px;
  }

  h2 {
    letter-spacing: 0;
    font-size: 36px;
  }

  h3 {
    letter-spacing: 0;
    font-size: 32px;
  }

  h4, h5, h6 {
    letter-spacing: 0;
  }

  blockquote {
    font-size: 25px;
  }

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

  .section.changelog-banner {
    padding-top: 80px;
  }

  .section.banner-section, .section.banner-section-dark, .section.banner-section-dark-copy {
    padding-top: 100px;
  }

  .grid-system-wrapper {
    flex-direction: row;
    margin-top: 15px;
  }

  .grid-system {
    border-top-right-radius: 0;
    border-bottom-left-radius: var(--small-border);
    border-left: 1px solid #7c7c7c;
    flex-direction: column;
  }

  .grid-system.bottom {
    border-top-right-radius: var(--small-border);
    border-bottom-left-radius: 0;
  }

  .grid-title {
    border-bottom: 1px solid #7c7c7c;
    border-right-style: none;
    width: 100%;
  }

  .grid-title.first-grid-top {
    border-left-style: none;
    border-right-style: none;
    width: 100%;
  }

  .grid-title.last-title-grid {
    border-top-right-radius: 0;
    border-bottom-left-radius: var(--small-border);
  }

  .grid-description {
    border-top: 1px solid #a7a7a7;
    border-bottom-style: none;
    border-right-width: 1px;
    align-items: center;
    width: 100%;
  }

  .grid-description.first-description {
    border-top-right-radius: var(--small-border);
    border-width: 1px 1px .5px 0;
    border-top-style: none;
    border-top-color: #a7a7a7;
    border-bottom-style: none;
    border-left-style: none;
    border-bottom-left-radius: 0;
    width: 100%;
  }

  .grid-description.last-description {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-right-width: 1px;
  }

  .spacing-system-column {
    margin-top: 20px;
  }

  .spacing-wrapper-mobile {
    margin-top: 30px;
  }

  .typography-wrapper {
    margin-top: 20px;
  }

  .spacing-columns {
    margin-top: 0;
  }

  .bottom-style-spacing-desktop {
    bottom: 10%;
  }

  .top-style-spacing-desktop {
    top: 10%;
  }

  .spacing-wrapper {
    margin-top: 30px;
  }

  .middle-style-spacing-desktop {
    top: 34%;
  }

  .colors-container {
    margin-top: 20px;
  }

  .headings-typography-wrapper {
    width: 100%;
  }

  .headers-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .style-guide-body-wrapper, .primary-button.search-button {
    width: 100%;
  }

  .style-guide-div {
    grid-row-gap: 40px;
  }

  .top-style-spacing-mobile {
    top: 7%;
  }

  .middlr-style-spacing-mobile {
    top: 31%;
  }

  .bottom-style-spacing-mobile {
    bottom: 9%;
  }

  .grid-header {
    width: 100%;
    margin-top: 20px;
  }

  .link-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

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

  .pages-banner {
    min-height: 300px;
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .licensing-title-wrapper {
    margin-bottom: 20px;
  }

  .licensing-images-wrapper {
    padding-top: 10px;
  }

  .licensing-grid {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 40px;
  }

  .licensing-title {
    padding-bottom: 20px;
  }

  .licensing-fonts-wrapper {
    flex-wrap: wrap;
  }

  .licensing-paragraph {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .licensing-font-title {
    margin-bottom: 10px;
  }

  .licensing-icons-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .utility-page-content {
    width: 70%;
  }

  .password-image {
    width: 100px;
  }

  .password-input {
    min-width: auto;
  }

  ._404-paragraph {
    margin-bottom: 30px;
  }

  .coming-soon-input {
    min-width: 240px;
  }

  .coming-soon-heading {
    max-width: 420px;
    font-size: 44px;
  }

  .footer {
    padding-top: 60px;
  }

  .footer-bottom-wrapper {
    grid-column-gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .footer-copyright {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .style-guide-buttons-wrapper {
    grid-row-gap: 40px;
    flex-wrap: wrap;
    margin-top: 35px;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .style-guide-button-wrapper.last-child {
    margin-bottom: 0;
  }

  .pricing-plans-wrapper {
    grid-template-columns: 1fr;
  }

  .pricing-plan-item {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .contact-3-inputs-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-wrapper {
    grid-column-gap: 50px;
    justify-content: center;
    padding-top: 40px;
  }

  .footer-brand-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .footer-brand {
    padding-left: 0;
  }

  .search-result-item {
    margin-bottom: 20px;
  }

  .search-section {
    padding-top: 100px;
  }

  .headings-container {
    grid-row-gap: 30px;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .blog-section-title {
    margin-bottom: 40px;
  }

  .contacts-wrapper-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .section-title-center {
    margin-bottom: 40px;
  }

  .home-4-testimonials-wrapper {
    grid-row-gap: 30px;
    width: 100%;
  }

  .testimonials-wrapper-2 {
    width: 100%;
  }

  .about-img {
    width: 100%;
    max-height: 420px;
  }

  .about-img._1, .about-img._5, .about-img._3, .about-img._4, .about-img._2 {
    width: 100%;
    position: static;
  }

  .subtitle {
    line-height: 16px;
  }

  .our-services-wrap {
    grid-row-gap: 10px;
    width: 100%;
  }

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .home-9-team-item {
    width: 48%;
  }

  .search {
    flex-direction: column;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .home-banner-left-arrow {
    top: 6%;
  }

  .home-23-team-item {
    width: 70%;
  }

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand {
    padding-left: 0;
  }

  .typography-hero-wrapper {
    grid-row-gap: 40px;
    margin-top: 20px;
  }

  .button-wrapper-sg {
    margin-top: 20px;
  }

  .logo {
    width: 70px;
  }

  .title-wrapper {
    margin-bottom: 40px;
  }

  .how-it-works-block {
    height: 250px;
    min-height: 250px;
  }

  .process-image-absolute {
    height: 250px;
  }

  .process-grid {
    grid-column-gap: 20px;
  }

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

  .phone-images-wrapper {
    margin-top: 40px;
  }

  .hero-pop-up-wrapper {
    width: 400px;
    padding: 30px 20px;
  }

  .cta-wrapper {
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cta-text {
    margin-bottom: 40px;
  }

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

  .benefits-card {
    flex-flow: row;
  }

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

  .contain-image {
    height: 400px;
  }

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

  .absolute {
    height: 420px;
  }

  .footer-form {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .product-wrapper-c {
    overflow: scroll;
  }

  .features-pop-up-wrapper {
    padding-top: 50px;
  }

  .close-link-card {
    display: flex;
  }

  .blog-collection-list {
    grid-template-columns: 1fr;
  }

  .blog-item-top {
    min-height: auto;
  }

  .blog-item-top.small-height {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-blog-image {
    height: 300px;
  }

  ._404 {
    font-size: 120px;
  }

  .promotion-label-left {
    max-width: 300px;
  }
}

@media screen and (max-width: 479px) {
  .base-container.position-relative {
    padding-left: 15px;
    padding-right: 15px;
  }

  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    flex-direction: column;
    width: 50%;
  }

  .grid-title {
    align-items: center;
  }

  .grid-title.first-grid-top {
    text-align: center;
    flex: 1;
    width: 100%;
  }

  .grid-description {
    border-bottom-width: 1px;
    border-bottom-color: #fff3;
  }

  .grid-description.first-description {
    border-bottom: 1px #fff3;
    border-left-style: none;
    border-right-style: solid;
  }

  .grid-description.last-description {
    border-bottom-color: #a7a7a7;
  }

  .bottom-style-spacing-desktop {
    bottom: 8%;
  }

  .top-style-spacing-desktop {
    top: 7%;
  }

  .middle-style-spacing-desktop {
    top: 32%;
  }

  .primary-button.full-width-mobile {
    width: 100%;
  }

  .top-style-spacing-mobile {
    top: 5%;
  }

  .middlr-style-spacing-mobile {
    top: 28%;
  }

  .bottom-style-spacing-mobile {
    bottom: 8%;
  }

  .nav-link {
    width: 99%;
  }

  .licensing-title-wrapper {
    grid-column-gap: 20px;
    flex-wrap: wrap;
  }

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

  .license-link {
    margin-right: 15px;
  }

  .utility-page-content {
    width: 100%;
  }

  ._404-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .coming-soon-form {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .coming-soon-input {
    min-width: auto;
  }

  .coming-soon-paragraph {
    margin-bottom: 20px;
  }

  .coming-soon-heading {
    max-width: 320px;
  }

  .footer {
    text-align: left;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr;
  }

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

  .footer-copyright {
    justify-content: center;
    align-items: center;
  }

  .pricing-plan-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .accordion-item {
    padding: 20px 15px;
  }

  .footer-social-icons-wrapper {
    grid-row-gap: 10px;
    flex-flow: wrap;
    justify-content: center;
  }

  .footer-wrapper {
    grid-row-gap: 30px;
  }

  .footer-brand-wrapper {
    flex-direction: column;
  }

  .footer-logo-wrapper {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .style-guide-content-wrapper.no-wrap {
    flex-wrap: wrap;
  }

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .section-title-center {
    margin-bottom: 20px;
  }

  .our-services-wrap, .home-9-team-item, .home-23-team-item {
    width: 100%;
  }

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

  .brand-tablet {
    padding-left: 0;
  }

  .footer-rights-wrapper {
    grid-row-gap: 5px;
    justify-content: center;
    align-items: center;
  }

  .position-relative {
    padding-left: 0;
    padding-right: 0;
  }

  .coming-soon-form-main {
    flex-wrap: wrap;
    width: 100%;
  }

  .footer-licensing-link {
    text-align: center;
    justify-content: center;
    line-height: 1.6em;
  }

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

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

  .testimonials-card-blue {
    grid-row-gap: 24px;
    min-width: 280px;
    max-width: 280px;
    padding: 20px;
  }

  .hero-pop-up-wrapper {
    width: 300px;
  }

  .text-field {
    min-height: 50px;
  }

  .faq-title-wrapper {
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .popap-title {
    max-width: 220px;
  }

  .benefits-card, .benefits-card.vertical, .benefits-card.last {
    flex-flow: column;
  }

  .benefits-image-wrapper {
    padding-bottom: 10px;
  }

  .benefits-left {
    padding: 20px 20px 0;
  }

  .benefits-card-top {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .benefits-image-wrapper-center {
    padding-left: 10px;
    padding-right: 10px;
  }

  .dash-card-wrapper {
    padding-left: 10px;
  }

  .absolute {
    height: 300px;
  }

  .footer-links {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .mobile-bottom-30 {
    margin-bottom: 30px;
  }

  .mobile-bottom-20 {
    margin-bottom: 20px;
  }

  .blog-card {
    flex-flow: column;
  }

  .blog-image-wrapper {
    padding-bottom: 10px;
  }

  .promotion-label-left {
    bottom: 90px;
    left: auto;
    right: 12px;
  }
}

#w-node-_10802e8f-cc8f-a382-22c2-5eb829a30686-84983e9b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_596856d4-677d-23af-3f65-129f2d5f2233-84983e9b, #w-node-b8f0b394-5389-219d-8cd6-4a3b849b462f-84983e9b, #w-node-_02e48bbe-4fa5-996c-9e7f-c03bf734cc38-84983e9b, #w-node-_722a464d-4995-1b0c-e929-6d2aa8a3e955-84983e9b, #w-node-f5dc92b0-957a-04cc-b1d1-1837454dfe67-84983e9b {
  align-self: center;
}

#w-node-f1f4818e-3155-4e00-1be9-73bf511b473f-634f2c73 {
  align-self: end;
}

@media screen and (max-width: 767px) {
  #w-node-f5dc92b0-957a-04cc-b1d1-1837454dfe67-84983e9b {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_531ff33f-e072-60f6-f0d4-f1866dca3507-634f2c73, #w-node-f0310914-a85c-a5bf-c298-faf0d9c094f2-d9c09489, #w-node-f0310914-a85c-a5bf-c298-faf0d9c094fa-d9c09489 {
    justify-self: center;
  }
}


@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands 400 (6.4.2)';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}