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

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

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

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

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

:root {
  --primary-500: #4ea9f8;
  --default-text-color: #071a2b;
  --subtitle-2: #cacaca;
  --primary: #4ea9f8;
  --primary-fade: #f5f9ff;
  --green: #3aa562;
  --background-dark: #071a2b;
  --subtitle: #585c64;
  --background-gray: #f6f5f4;
  --pink: #fc3ab2;
}

.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-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: #333;
  font-family: Dmsans, sans-serif;
  font-size: 15px;
}

h1 {
  letter-spacing: -1px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 50px;
}

h2 {
  letter-spacing: -1px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Dmsans, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
}

h3 {
  letter-spacing: -1px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

p {
  margin-bottom: 10px;
}

a {
  color: var(--primary-500);
}

.navbar-logo-left {
  z-index: 999999;
  border-bottom: 1px solid #0000;
  flex-direction: column;
  height: 85px;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header-navbar {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.header-navbar.shadow-three {
  width: 100%;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.container {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.navbar-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.nav-menu {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link {
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-weight: 500;
  line-height: 20px;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 8px;
  width: 450px;
}

.nav-dropdown-list.w--open {
  border: 1px solid var(--subtitle-2);
  margin-top: 10px;
  padding: 2px;
}

.nav-dropdown-link {
  color: var(--default-text-color);
  white-space: normal;
  border: 1px solid #0000;
  border-radius: 8px;
  padding: 10px;
  transition-property: font-size, margin-left;
  transition-duration: .2s, .2s;
  transition-timing-function: ease, ease;
}

.nav-dropdown-link:hover {
  border-color: var(--primary);
  background-color: var(--primary-fade);
}

.nav-dropdown-link:focus {
  color: var(--default-text-color);
}

.nav-divider {
  background-color: #e4ebf3;
  width: 0;
  height: 22px;
  margin-left: 20px;
  margin-right: 20px;
}

.button-primary {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  text-transform: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  transition: all .3s;
}

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

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

.button-primary.color-white {
  border: 1px solid var(--subtitle-2);
  color: var(--default-text-color);
  background-color: #fff;
}

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

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

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

.button-primary.color-dark.footer-inline-list {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.button-primary._w-100 {
  white-space: nowrap;
  width: 100%;
}

.button-primary.color-linkedin {
  background-color: #0a66c2;
}

.hero-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 48%;
  display: flex;
}

.hero-split.hero-split-size-55 {
  max-width: 55%;
}

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

.margin-bottom-24px.section-hero-subtitle-dark {
  font-family: Dmsans, sans-serif;
  font-weight: 400;
  line-height: 26px;
}

.hero-header {
  color: #fff;
  border-bottom: 1px #e4ebf3;
  padding: 120px 30px 100px;
  position: relative;
  overflow: hidden;
}

.hero-header.home {
  background-color: var(--background-dark);
}

.hero-form {
  margin-top: 50px;
  margin-bottom: 12px;
}

.hero-form-container {
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.hero-form-input {
  z-index: 1;
  color: #1a1b1f;
  border: 1px solid #d1d6db;
  border-radius: 8px 0 0 8px;
  width: 250px;
  height: auto;
  margin-bottom: 0;
  margin-right: -8px;
  padding: 5px 16px;
  font-size: 14px;
  line-height: 20px;
  transition: all .2s;
  position: relative;
}

.hero-form-input:hover, .hero-form-input:focus {
  border-color: #76879d;
}

.hero-form-input::placeholder {
  color: #1a1b1fcc;
}

.text-link-arrow {
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.home-header-hero {
  object-fit: contain;
  object-position: 0% 50%;
  width: 60vw;
  max-width: none;
  min-height: 480px;
  max-height: 600px;
}

.body {
  color: #071a2b;
  letter-spacing: -.2px;
}

.body.white-bg {
  letter-spacing: -.5px;
  background-color: #fff;
}

.heading {
  margin-top: 10px;
}

.heading.margin-bottom-24px {
  font-size: 34px;
}

.users-logos-grid {
  grid-template: "."
  / 1fr 1fr 1fr 1fr;
  grid-auto-flow: row;
  place-items: center;
}

.users-logo-line {
  justify-content: center;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: absolute;
  top: 0;
  transform: translate(0, -25px);
}

.users-logo-line.dark {
  filter: brightness(50%);
}

.hero-wave {
  background-color: #fff;
  position: relative;
}

.header-footer-image {
  width: 100%;
  transform: translate(0);
}

.footer-dark {
  background-color: var(--background-dark);
  color: #fff;
  padding: 50px 30px 15px;
  position: relative;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link {
  color: #fff;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-copyright-center {
  text-align: center;
  flex-flow: column;
  align-items: center;
  margin-top: 100px;
  font-size: 14px;
  display: flex;
}

.features-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: left;
  flex: 1;
  grid-template: "Area-2 Area-2 Area-3 Area-3 Area-4 Area-4" min-content
                 "Area Area Area Area-5 Area-5 Area-5" min-content
                 "Area-6 Area-6 Area-6 Area-6 Area-6 Area-6" minmax(min-content, 1fr)
                 / 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: min-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
}

.hero-heading-center {
  border-bottom-width: 1px;
  border-bottom-color: #e4ebf3;
  padding: 60px 30px;
}

.hero-heading-center.bg-2 {
  background-color: var(--background-dark);
}

.hero-heading-center.bg-2.pb-0 {
  border-bottom-style: solid;
  border-bottom-color: var(--background-dark);
  height: 740px;
  padding-bottom: 0;
  overflow: hidden;
}

.feature-card {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  cursor: pointer;
  background-color: #f4f5f6;
  border: 1px solid #f4f5f6;
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 20px 20px 0;
  display: flex;
}

.feature-card:hover, .feature-card:active {
  background-color: #ededed;
}

.feature-card.organization-page {
  min-height: 460px;
}

.feature-title {
  color: #00b3ed;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  text-decoration: underline;
}

.feature-description {
  color: var(--default-text-color);
  flex: 1;
  line-height: 25px;
}

.feature-image {
  height: 180px;
  overflow: hidden;
}

.feature-image.padding {
  padding-left: 20%;
  padding-right: 20%;
}

.feature-image.organization-page {
  height: auto;
  max-height: 360px;
  padding-left: 10%;
  padding-right: 10%;
}

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

.section-hero-subtitle-dark {
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 26px;
}

.bold-text-3 {
  color: #fff;
}

.hero-heading-left {
  padding: 60px 30px;
  position: relative;
}

.hero-heading-left.bg-dark {
  background-color: var(--background-dark);
  color: #fff;
}

.hero-heading-left.bg-white {
  background-color: #fff;
}

.margin-bottom-24px-3 {
  margin-bottom: 24px;
}

.section-hero-subtitle {
  color: var(--subtitle);
  width: 80%;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.section-list {
  white-space: normal;
  padding-left: 20px;
  font-size: 1rem;
  line-height: 28px;
}

.section-list.custom-bullets {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.section-list.custom-bullets.small {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  margin-bottom: 0;
  font-size: .9em;
  display: flex;
}

.hero-heading-right {
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
}

.hero-heading-right.bg-gray {
  background-color: var(--background-gray);
}

.hero-heading-right.bg-white {
  background-color: #fff;
}

.margin-bottom-24px-4 {
  margin-bottom: 24px;
}

.margin-bottom-24px-4.section-hero-subtitle {
  font-weight: 400;
}

.bold-text-4 {
  font-size: 32px;
}

.background-mask {
  z-index: 0;
  width: 70vw;
  max-height: 97%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.html-embed {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.div-block-4 {
  width: 400px;
  height: 610px;
  position: relative;
}

.blue-border {
  border: 3px solid var(--primary);
  border-radius: 8px;
  width: 100%;
  height: 150%;
  position: absolute;
  transform: translate(-10px, -3px)rotate(-2deg);
}

.embed-container {
  border-bottom: 1px solid var(--background-dark);
  background-color: #fff;
  border-radius: 8px 8px 0 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translate(0);
}

.margin-bottom-24px-5 {
  margin-bottom: 24px;
}

.list-item {
  white-space: nowrap;
}

.bold-text-5 {
  white-space: normal;
}

.margin-bottom-24px-6 {
  margin-bottom: 24px;
}

.twitter-card {
  width: 300px;
}

.tweets-cantainer {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  place-content: flex-start center;
  align-items: stretch;
  display: flex;
}

.footer-action-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  background-color: #fff;
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start;
  width: 650px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.footer-action-header {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.m-0 {
  margin: 0;
}

.hoopop-logo {
  object-fit: fill;
  height: 60px;
}

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

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

.header-partner-image {
  max-height: 50px;
}

.div-block-7 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  place-content: flex-start center;
  align-items: center;
  display: flex;
}

.navbar-container {
  color: #fff;
}

.navbar-container.white {
  color: var(--default-text-color);
  background-color: #fff;
}

.logo-dark, .logo {
  height: 50px;
}

.hero-header-alt {
  background-color: #0000;
  border-bottom: 1px #e4ebf3;
  padding: 160px 30px 60px;
  position: relative;
  overflow: hidden;
}

.hero-split-image {
  object-fit: contain;
  align-self: center;
  max-height: 400px;
}

.hero-split-image.scanned-contacts {
  max-height: 700px;
}

.hero-split-image-vertical {
  object-fit: contain;
}

.hero-wave-features {
  background-color: var(--background-gray);
  position: relative;
}

.features-header-hero {
  object-fit: contain;
  width: 100%;
  max-width: none;
  min-height: 430px;
}

.hero-wrapper-vertical {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.hero-wrapper-vertical.features {
  padding: 60px 100px;
}

.hero-wrapper-vertical.pricing {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.feature-card-image {
  object-fit: contain;
}

.underline-h2 {
  background-image: url('../images/subline.webp');
  background-position: 25% 100%;
  background-repeat: no-repeat;
  background-size: 150px;
  margin-bottom: -10px;
  padding-bottom: 10px;
  display: inline-block;
}

.underline-h1 {
  background-image: url('../images/subline.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 166px;
  margin-bottom: -10px;
  padding-bottom: 10px;
  display: inline-block;
}

.footer-section {
  background-color: #fff;
}

.custom-bullet-check {
  background-image: url('../images/check-circle.webp');
  background-position: 0 1px;
  background-repeat: no-repeat;
  background-size: auto 25px;
  padding-left: 35px;
}

.custom-bullet-check.small {
  background-position: 0 5px;
  background-size: auto 16px;
  padding-left: 25px;
  font-size: .9rem;
}

.custom-bullet-check.small.bold-text {
  font-weight: 700;
}

.custom-bullet-arrow {
  background-image: url('../images/arrow-right.webp');
  background-position: 0 10%;
  background-repeat: no-repeat;
  background-size: auto 24px;
  padding-left: 35px;
  line-height: 25px;
}

.custom-bullet-arrow.small {
  background-size: auto 14px;
  padding-left: 25px;
  line-height: 20px;
}

.custom-bullet-arrow.small.bold-text {
  font-weight: 700;
}

.feature-card-link {
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.hero-header-white {
  background-color: #0000;
  border-bottom: 1px #e4ebf3;
  padding-top: 120px;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

.pricing-wrapper {
  align-self: stretch;
  margin-top: 20px;
  margin-bottom: 20px;
}

.tabs-menu {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  display: flex;
  overflow: hidden;
}

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

.tab-link {
  color: var(--default-text-color);
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  height: auto;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  transition: border .2s, padding .2s;
}

.tab-link.w--current {
  border-color: var(--primary);
  background-color: var(--primary-fade);
  background-image: url('../images/selected-radio.svg');
  background-position: 30px;
  background-repeat: no-repeat;
  background-size: auto 20px;
  justify-content: flex-start;
  padding-left: 60px;
  font-weight: 500;
}

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

.price-card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--background-gray);
  text-align: left;
  border-radius: 12px;
  flex-direction: column;
  align-items: stretch;
  width: 370px;
  padding: 10px 20px 20px;
  font-size: 15px;
  display: flex;
}

.tab-content {
  overflow: visible;
}

.pricing-title {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  border-radius: 20px;
  flex-flow: row;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.group-card-description {
  color: var(--subtitle);
  min-height: 70px;
}

.group-card-description.small {
  font-size: .9rem;
}

.tabs-content {
  overflow: visible;
}

.price-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  align-items: baseline;
  display: flex;
}

.by-month.subtitle {
  color: var(--default-text-color);
  font-weight: 700;
}

.pricing-grid {
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  display: flex;
}

.pricing-p {
  line-height: 25px;
}

.pricing-p.subtitle {
  min-height: 60px;
  margin-bottom: 0;
  font-size: 14px;
}

.container-large {
  width: 100%;
  max-width: 1279px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.custom-bullet-plus {
  background-image: url('../images/plus.svg');
  background-position: 0 3px;
  background-repeat: no-repeat;
  background-size: auto 24px;
  margin-bottom: 0;
  padding-left: 35px;
  line-height: 40px;
}

.custom-bullet-plus.small {
  background-size: auto 14px;
  padding-left: 25px;
  line-height: 20px;
}

.custom-bullet-plus.small.bold-text {
  font-weight: 700;
}

.flex-1 {
  flex: 1;
}

.flex-1.flex {
  display: flex;
}

.flex-1.flex.flex-column {
  flex-direction: column;
}

.flex-1.flex.flex-column.gap-10 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.pricing-card-limits-bullets {
  margin-bottom: 20px;
  font-weight: 500;
}

.div-block-10 {
  display: block;
}

.show-more-informations-icon {
  height: 16px;
  margin-top: 2px;
}

.text-block {
  flex: 1;
  display: inline-block;
}

.plan-list-text-container {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.custom-bullet-substract {
  opacity: .6;
  background-image: url('../images/subtract.svg');
  background-position: 0 1px;
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 35px;
  text-decoration: line-through;
}

.custom-bullet-substract.small {
  background-size: auto 18px;
  padding-left: 25px;
}

.custom-bullet-substract.small.bold-text {
  font-weight: 700;
}

.tooltip-info {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.tooltip-info.tippy {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.tooltip-message-container {
  border: 1px solid var(--background-gray);
  background-color: #fff;
  border-radius: 12px;
  min-width: 220px;
  padding: 10px;
  display: none;
  position: absolute;
  bottom: 150%;
  right: -10px;
  box-shadow: 0 2px 5px #0003;
}

.pricing-tab-pane-content {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

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

.div-block-11 {
  display: inline-block;
}

.div-block-12, .div-block-13, .div-block-14, .div-block-15, .div-block-16 {
  height: 100%;
}

.option-price {
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
}

.pricing-card-core-bullets {
  flex: 1;
}

.container-extra-large {
  width: 100%;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.pricing-card-header {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-bottom: 1px solid var(--subtitle-2);
  background-color: var(--background-gray);
  flex-direction: column;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.pricing-card-header.options {
  min-height: auto;
}

.image-6 {
  width: 150px;
}

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

.hero-heading-center-2 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-2 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.centered-heading.margin-bottom-32px {
  margin-bottom: 32px;
}

.hero-wrapper-2 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.margin-bottom-24px-7 {
  margin-bottom: 24px;
}

.button-primary-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-2:active {
  background-color: #43464d;
}

.shadow-two {
  box-shadow: 0 4px 24px #96a3b514;
}

.contact-form {
  text-align: left;
  min-width: 650px;
  margin-top: 100px;
  margin-bottom: 100px;
}

.div-block-17 {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.textarea {
  min-height: 300px;
}

.button-plain {
  color: var(--default-text-color);
  text-align: center;
  background-color: #fff0;
  border: 1px solid #000;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: 500;
  transition: all .3s;
}

.button-plain:hover {
  border-color: var(--primary);
  background-color: #d4e9fc6e;
}

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

.button-plain.primary.navbar-button, .button-plain.primary._w-100 {
  width: 100%;
}

.button-plain.primary._w-100.white {
  color: #fff;
}

.button-plain.primary.menu-button {
  white-space: nowrap;
}

.button-plain.white {
  color: #fff;
  border-color: #fff;
}

.pricing-subtitle {
  font-weight: 400;
  line-height: initial;
  margin-bottom: 5px;
}

.tag-primary {
  background-color: var(--primary);
  color: #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 2px 10px;
  font-weight: 500;
  display: flex;
}

.new-offers-tag-container {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.tag-success-2 {
  background-color: #e6f6ed;
  border: 1px solid #9cdab5;
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 700;
  line-height: 30px;
}

.list-item-2 {
  flex: 1;
}

.chip {
  color: #535353;
  background-color: #e2e2e2;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 2px 10px;
  font-weight: 500;
  display: flex;
}

.chip.warning {
  background-color: #fff28b;
}

.div-block-18 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.div-inline-list-even {
  background-color: var(--background-gray);
}

.div-inline-list-even.pricing-list-line {
  justify-content: flex-start;
}

.pricing-list-feature-name {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-right: 1px solid var(--subtitle-2);
  border-left: 1px solid var(--subtitle-2);
  flex: 1;
  max-width: 400px;
  padding: 10px;
  font-weight: 500;
}

.pricing-list-feature-line {
  display: flex;
}

.pricing-list-feature-block {
  border-right: 1px solid var(--subtitle-2);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 135px;
  padding: 10px 5px;
  display: flex;
}

.pricing-list-feature-block.header {
  display: flex;
  overflow: hidden;
}

.pricing-inline-list-header {
  background-color: var(--background-gray);
  position: sticky;
  top: 85px;
}

.pricing-inline-list {
  border-top: 1px solid var(--subtitle-2);
  border-bottom: 1px solid var(--subtitle-2);
  text-align: left;
}

.pricing-header {
  flex-flow: column;
  display: flex;
}

.pricing-inline-list-sub-header {
  border-bottom: 1px solid var(--subtitle-2);
  background-color: #fff;
  position: sticky;
  top: 129px;
}

.accordion {
  border-top: 1px solid var(--background-gray);
  width: 100%;
  overflow: hidden;
}

.accordion-toggle {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
}

.accordion-toggle:hover {
  background-color: var(--primary-fade);
}

.accordion-toggle.w--open {
  color: var(--primary-500);
}

.accordion-title {
  white-space: normal;
  font-weight: 500;
  line-height: initial;
}

.accordion-list {
  background-color: #fff;
  position: static;
}

.accordion-list.w--open {
  width: min-content;
}

.accordion-text {
  padding: 10px 20px;
}

.accordion-container {
  border-right: 1px solid var(--background-gray);
  border-bottom: 1px solid var(--background-gray);
  border-left: 1px solid var(--background-gray);
  flex-flow: column;
  max-width: 650px;
  display: flex;
}

.icon {
  transform: rotate(0);
}

.div-block-21 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.tag-success {
  background-color: var(--green);
  color: #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 2px 20px;
  font-weight: 500;
  display: flex;
}

.tag-dark {
  background-color: var(--background-dark);
  color: #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 2px 20px;
  font-weight: 500;
  display: flex;
}

.pricing-tab-subtitle {
  color: var(--subtitle);
}

.price-buttons-block-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.group-card {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  align-items: center;
  width: 300px;
  display: flex;
}

.group-card-background {
  aspect-ratio: 1920 / 1280;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 2px 5px #0003;
}

.group-cards-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.group-card-title {
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: 400;
}

.footer-action-buttons {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.menu-list-item-first-button {
  margin-left: auto;
}

.landing-header-card {
  width: 280px;
}

.flex-block {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
}

.gradient-container {
  background-image: linear-gradient(180deg, var(--background-gray), white 18%);
  padding-bottom: 60px;
}

.heading-2 {
  min-height: 90px;
  margin-top: 10px;
}

.image-8 {
  height: 200px;
  margin-bottom: 20px;
}

.link-block {
  width: 100%;
}

.ml-auto {
  margin-left: auto;
}

.section-heavent {
  z-index: 99999;
  color: var(--default-text-color);
  text-align: center;
  background-color: #fff9cb;
  border: 1px solid #f8e445;
  border-radius: 11px;
  padding: 20px;
  position: fixed;
  bottom: 10px;
  left: 10px;
  transform: translate(0, 300px);
  box-shadow: 0 2px 10px #0003;
}

.hero-actions-buttons-flex {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.bold-text-7 {
  color: var(--default-text-color);
}

.d-none {
  display: none;
}

.v-hidden {
  opacity: 0;
}

.flex-block-2 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: flex-start;
  align-items: center;
}

.flex-block-3, .gap-5 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

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

@media screen and (min-width: 1280px) {
  .price-block {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    align-items: baseline;
    display: flex;
  }

  .pricing-card-limits-bullets.subscription-limits {
    transition: opacity .2s;
  }

  .pricing-card-header {
    z-index: 3000;
  }

  .pricing-subtitle {
    font-weight: 400;
  }

  .image-7 {
    width: 24px;
  }
}

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

  .navbar-wrapper {
    justify-content: space-between;
  }

  .nav-menu-wrapper {
    color: var(--default-text-color);
    background-color: #0000;
  }

  .nav-menu {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

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

  .nav-dropdown-toggle {
    color: var(--default-text-color);
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button {
    border-radius: 8px;
    padding: 12px;
  }

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

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .hero-wrapper.row-reverse-tablet-and-down {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .hero-split {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
  }

  .hero-split.hidden-tablet-and-down {
    display: none;
  }

  .hero-split.organization-page {
    transform: none;
  }

  .hero-split.hero-split-size-55 {
    max-width: 100%;
  }

  .hero-header {
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-header-hero {
    width: 100%;
    padding-top: 60px;
  }

  .users-logo-line {
    transform: translate(0, -50px);
  }

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

  .features-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .feature-image.organization-page {
    padding-left: 0%;
    padding-right: 0%;
  }

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

  .background-mask {
    display: none;
  }

  .div-block-4 {
    align-self: center;
  }

  .div-block-5 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-header-alt {
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-split-image {
    align-self: center;
    width: 50%;
    max-height: 350px;
  }

  .hero-split-image.scanned-contacts {
    max-height: 400px;
  }

  .hero-split-image.organization-page {
    width: 100%;
    transform: none;
  }

  .features-header-hero {
    width: 100%;
  }

  .hero-wrapper-vertical {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .hero-header-white {
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .container-large, .container-extra-large, .container-2 {
    max-width: 728px;
  }

  .hero-wrapper-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split-2 {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .button-plain.white.menu-button {
    color: #000;
    border-color: #000;
  }

  .pricing-list-feature-block {
    width: 90px;
  }

  .pricing-inline-list {
    font-size: 12px;
  }

  .group-cards-container {
    flex-flow: column;
  }

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

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

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

@media screen and (max-width: 767px) {
  .header-navbar {
    max-width: 100%;
  }

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

  .nav-menu-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-menu {
    border: 1px solid var(--subtitle-2);
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 20px;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-divider {
    width: 200px;
    max-width: 100%;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .hero-header {
    padding: 100px 20px;
  }

  .home-header-hero {
    min-height: auto;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .hero-heading-center {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-heading-center.bg-2.pb-0 {
    height: auto;
  }

  .hero-heading-center.pricing-inline-list {
    display: none;
  }

  .hero-heading-left, .hero-heading-right {
    padding-left: 15px;
    padding-right: 15px;
  }

  .div-block-4 {
    width: 80%;
  }

  .footer-action-block {
    width: 100%;
  }

  .logo-dark, .logo {
    height: 40px;
  }

  .hero-header-alt {
    padding: 100px 20px;
  }

  .hero-wrapper-vertical.features {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-header-white {
    padding: 100px 20px;
  }

  .hero-heading-center-2 {
    padding: 60px 15px;
  }

  .footer-action-buttons {
    justify-content: flex-start;
  }

  .menu-list-item-first-button {
    margin-left: 0;
  }
}

@media screen and (max-width: 479px) {
  .container {
    max-width: none;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-dropdown-list {
    width: 100%;
  }

  .hero-header {
    padding-bottom: 160px;
  }

  .hero-form {
    align-self: stretch;
    margin-bottom: 15px;
  }

  .hero-form-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .hero-form-input {
    border-radius: 6px;
    width: 100%;
    height: 48px;
    margin-bottom: 10px;
  }

  .users-logos-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .users-logo-line {
    padding-left: 40px;
    padding-right: 40px;
    transform: translate(0, -120px);
  }

  .features-grid {
    grid-row-gap: 40px;
    flex-direction: column;
    grid-template: "Area-2"
                   "Area-3"
                   "Area-4"
                   "Area"
                   "Area-5"
                   "Area-6"
                   / 1fr;
    align-self: center;
    max-width: 100%;
    display: flex;
  }

  .feature-card {
    min-height: 360px;
  }

  .feature-image.organization-page {
    max-height: 150px;
  }

  .hero-heading-left {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-4 {
    width: 100%;
  }

  .blue-border {
    display: none;
  }

  .list-item {
    white-space: normal;
  }

  .twitter-card {
    width: 100%;
  }

  .footer-action-block {
    text-align: center;
  }

  .footer-action-header {
    flex-flow: column-reverse;
  }

  .header-partner-image {
    max-height: 30px;
  }

  .div-block-7 {
    flex-wrap: wrap;
  }

  .hero-header-alt {
    padding-bottom: 160px;
  }

  .hero-split-image {
    width: 80%;
  }

  .hero-split-image-vertical {
    margin-bottom: auto;
  }

  .features-header-hero {
    min-height: 250px;
  }

  .custom-bullet-arrow {
    background-position: 0 0;
  }

  .hero-header-white {
    padding-bottom: 160px;
  }

  .tabs-menu {
    flex-flow: column;
    width: 100%;
  }

  .tab-link {
    flex: 1;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .price-card {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

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

  .custom-bullet-plus {
    background-position: 0 8px;
  }

  .custom-bullet-plus.small, .custom-bullet-plus.small.bold-text {
    background-position: 0 2px;
  }

  .container-extra-large, .container-2 {
    max-width: none;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

  .button-plain.white.menu-button, .group-card {
    width: 100%;
  }

  .footer-action-buttons {
    flex-flow: column;
    width: 100%;
  }

  .section-heavent {
    right: 10px;
  }

  ._w-100 {
    width: 100%;
  }
}

#w-node-b810c236-991c-4d75-d9d0-bd6e03f8fa64-4763d234 {
  grid-area: Area-2;
}

#w-node-_1028262e-18ab-f3bd-0951-4c2a5c7e1004-4763d234 {
  grid-area: Area-3;
}

#w-node-bfe573e2-9e2d-310f-d3b2-e0ad6c7f9582-4763d234 {
  grid-area: Area-4;
}

#w-node-_190b6b41-1549-c168-031d-9030e62ee27b-4763d234 {
  grid-area: Area;
}

#w-node-ee92d1c3-fd14-d654-654b-9380cff10aaf-4763d234 {
  grid-area: Area-5;
}

#w-node-e5a8c4a6-7dd9-5068-b544-7f3851be8e72-4763d234 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-e5a8c4a6-7dd9-5068-b544-7f3851be8e74-4763d234, #w-node-_6f0da995-1319-8b9e-d5da-a36bcc0b4632-cc0b462a, #w-node-_68b03c7a-0151-f1ef-d8c5-0702442e6c3c-cc0b462a, #w-node-_6f0da995-1319-8b9e-d5da-a36bcc0b4646-cc0b462a, #w-node-_86b126d1-4056-61b5-8d84-01a58a37dbff-8a37dbff, #w-node-fdc6bce1-bd34-e91b-f681-3753b82d4a5c-b82d4a5c, #w-node-_56efed92-4e04-795d-1933-9843c096d1fd-c096d1fc, #w-node-_56efed92-4e04-795d-1933-9843c096d1fe-c096d1fc, #w-node-_56efed92-4e04-795d-1933-9843c096d1ff-c096d1fc, #w-node-_56efed92-4e04-795d-1933-9843c096d200-c096d1fc, #w-node-e267fe91-6f22-9926-af35-9c19c2b47ebc-b063d236, #w-node-e267fe91-6f22-9926-af35-9c19c2b47ebd-b063d236, #w-node-e267fe91-6f22-9926-af35-9c19c2b47ebf-b063d236, #w-node-e267fe91-6f22-9926-af35-9c19c2b47ebe-b063d236, #w-node-_9f464be4-4c18-9f52-3165-2113a77bc456-a77bc456, #w-node-_797492df-f940-8ea9-bde0-d0ea2a552699-2a552699, #w-node-_8dc79022-175d-cec1-5e17-bf0760a15f27-60a15f27 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Dmsans';
  src: url('../fonts/DMSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dmsans';
  src: url('../fonts/DMSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dmsans';
  src: url('../fonts/DMSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}