@font-face {
  font-family: Alte Haas Grotesk;
  src: url('../fonts/AlteHaasGroteskRegular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Alte Haas Grotesk;
  src: url('../fonts/AlteHaasGroteskBold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}

:root {
  --royal-blue: #6471e3;
  --snow: #f8f3f1;
  --white: white;
  --light-coral: #ff5466;
  --lavendar: #a5adef;
  --black: #2d2d2d;
  --gold: #fcd023;
  --silver: #c8c8c8;
  --black-new: #1e1a1c;
  --light-purple: #daddf8;
}

.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;
  background-color: #fff;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

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

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

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

p {
  margin-bottom: 10px;
}

a {
  text-decoration: underline;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.navbar {
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
  position: sticky;
  top: 0;
}

.navbar.is-purple {
  background-color: var(--royal-blue);
}

.container-full {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.container-full.is-nav {
  margin-left: auto;
  margin-right: auto;
}

.brand-logo {
  background-image: url('../images/Logo.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 200px;
  height: 60px;
  margin-top: -30px;
  margin-right: auto;
  position: relative;
  inset: 20px auto 0% 0%;
}

.brand-logo.w--current {
  background-image: url('../images/Logo.svg');
}

.brand-logo.is-white {
  background-image: url('../images/VOMA.svg');
  width: 99px;
}

.navmenu {
  align-items: center;
  display: flex;
}

.nav-link {
  color: #2d2d2d;
  text-align: center;
  letter-spacing: .43px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 14px;
  line-height: 31px;
  transition: all .3s;
}

.nav-link:hover, .nav-link.w--current {
  color: #ff5466;
}

.nav-link.sign-in {
  letter-spacing: .25px;
  border: 1px solid #2d2d2d;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  flex: none;
  margin-left: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-link.sign-in:hover {
  border-color: #ff5466;
}

.nav-link.getstarted {
  color: #fff;
  letter-spacing: .25px;
  background-color: #2d2d2d;
  border: 1px solid #2d2d2d;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  flex: none;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-link.getstarted:hover {
  background-color: #ff5466;
  border-color: #ff5466;
}

.nav-link.is-white {
  color: #fff;
}

.nav-link.sign-in-white {
  color: #fff;
  letter-spacing: .25px;
  border: 1px solid #fff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-left: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-link.sign-in-white:hover {
  border-color: #ff5466;
}

.nav-link.getstarted-white {
  color: #2d2d2d;
  letter-spacing: .25px;
  background-color: #fff;
  border: 1px solid #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-link.getstarted-white:hover {
  background-color: #ff5466;
  border-color: #ff5466;
}

.nav-link.is-left {
  text-align: left;
}

.section-hero {
  padding-top: 70px;
  padding-bottom: 20px;
}

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

.hero-content-wrapper.is-concierge-migration {
  align-items: center;
  margin-bottom: 100px;
  position: relative;
}

.hero-content-wrapper.is-partners {
  align-items: center;
}

.hero-content-box {
  width: 55%;
  padding-top: 40px;
}

.hero-content-box.is-concierge-migration {
  flex-direction: column;
  align-items: flex-start;
  width: 60%;
  display: flex;
}

.hero-content-box.is-partners {
  flex-direction: column;
  align-items: flex-start;
  width: 45%;
  display: flex;
}

.hero-img-box {
  text-align: right;
  width: 35%;
}

.hero-img-box.is-concierge-migration-mobile {
  display: none;
}

.hero-img-box.is-partners {
  width: 52%;
}

.heading-h1 {
  color: #2d2d2d;
  letter-spacing: .5px;
  margin-top: 0;
  margin-bottom: 17px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 48px;
  line-height: 52px;
}

.heading-h1.white {
  color: #fff;
}

.heading-h1.h2 {
  margin-bottom: 31px;
  line-height: 52px;
}

.heading-h1.h2.white {
  margin-bottom: 25px;
}

.heading-h1.h2.is-center {
  text-align: center;
}

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

.heading-h1.bottom-30.text-color-white {
  color: #fff;
}

.heading-h1.is-competitor {
  margin-left: 11px;
}

.subtext {
  color: #2d2d2d;
  text-align: center;
  letter-spacing: .33px;
  margin-bottom: 20px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 26px;
  line-height: 1.21429;
}

.subtext.white {
  color: #fff;
}

.subtext._22 {
  font-size: 22px;
}

.subtext.why-voma {
  margin-top: 30px;
  margin-bottom: 43px;
}

.subtext.plan-2 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 24px;
}

.subtext.align-left {
  max-width: 1175px;
  margin-bottom: 40px;
  font-size: 28px;
  line-height: 33px;
}

.subtext.align-left.mg-b-30 {
  margin-bottom: 30px;
}

.subtext.align-left.is-bold {
  font-weight: 700;
}

.subtext.align-left.extendbold {
  display: none;
}

.subtext.is-ty {
  font-size: 20px;
}

.gs-form-wrapper {
  margin-top: 40px;
}

.gs-form-wrapper.margin-top {
  margin-top: 30px;
}

.input {
  border: 1px solid #2d2d2d;
  min-height: 56px;
  margin-bottom: 0;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 14px;
}

.input.width {
  width: 70%;
}

.input.width.radius {
  color: #2d2d2d;
  letter-spacing: .17px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  line-height: 50px;
}

.button {
  background-color: #2d2d2d;
  min-height: 58px;
  padding-left: 30px;
  padding-right: 30px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: all .3s;
}

.button:hover {
  background-color: #ff5466;
}

.button.width {
  width: 30%;
  min-height: 56px;
}

.button.width.radius {
  letter-spacing: .37px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  line-height: 19.54px;
}

.form-row {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.section-built {
  background-color: #f7f3f1;
  background-image: url('../images/Object-1.png'), url('../images/Group-245.png');
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, repeat-x;
  background-size: auto, contain;
  background-attachment: scroll, scroll;
  margin-top: 0;
  padding-top: 120px;
  padding-bottom: 105px;
}

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

.title-box.center.width {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.title-box.center.width-2 {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.title-box.center.width-full {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.dotted-border {
  border-bottom: 1px dotted #2d2d2d;
}

.built-box {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  display: flex;
}

.built-item {
  text-align: center;
  width: 30%;
}

.built-item-icon-box {
  margin-bottom: 29px;
}

.built-item-title {
  color: #2d2d2d;
  letter-spacing: .25px;
  margin-bottom: 9px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 32px;
}

.built-item-text {
  color: #2d2d2d;
  letter-spacing: .21px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 18px;
  line-height: 26px;
}

.section-is {
  padding-top: 124px;
  padding-bottom: 122px;
}

.is-wrapper {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.is-img-box, .is-content-box {
  width: 48%;
}

.is-icon {
  margin-bottom: 20px;
  display: inline-block;
}

.list-wrapper {
  margin-top: 27px;
}

.list-wrapper.top-15 {
  margin-top: 15px;
}

.list-item {
  color: #2d2d2d;
  letter-spacing: .29px;
  background-image: url('../images/Fill-1.svg');
  background-position: 0 7px;
  background-repeat: no-repeat;
  background-size: auto;
  margin-bottom: 25px;
  padding-left: 40px;
  font-size: 24px;
  line-height: 32px;
}

.section-di {
  padding-bottom: 108px;
}

.di-wrapper {
  background-color: #2d2d2d;
  background-image: url('../images/Group-247.png'), url('../images/Object.png');
  background-position: 0 100%, 0 0;
  background-repeat: repeat-x, repeat;
  background-size: contain, auto;
  background-attachment: scroll, scroll;
  padding-top: 95px;
  padding-bottom: 114.21px;
}

.container-full-2 {
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.di-logo-box {
  flex-wrap: wrap;
  place-content: flex-start space-between;
  align-items: center;
  width: 80%;
  margin: 50px auto 0;
  display: flex;
}

.di-logo {
  width: 25%;
  margin-bottom: 20px;
}

.section-nd {
  padding-bottom: 85px;
}

.nd-box {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 44px;
  display: flex;
}

.nd-content-box {
  width: 48%;
  margin-top: 0;
}

.nd-img-box {
  width: 48%;
}

.section-wwr {
  background-color: #f7f3f1;
  background-image: url('../images/Object-1.png'), url('../images/Group-245.png');
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, repeat-x;
  background-size: auto, contain;
  background-attachment: scroll, scroll;
  margin-top: 0;
  padding-top: 141px;
  padding-bottom: 256px;
}

.wwr-box {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  display: flex;
}

.wwr-content-box {
  width: 45%;
  margin-top: 60px;
}

.wwr-img-box {
  width: 45%;
  position: relative;
}

.wwr-content-item {
  align-items: center;
  margin-bottom: 45px;
  display: flex;
}

.wwr-content-item-img-box {
  width: 20%;
}

.wwr-content-item-infobox {
  flex: 1;
  padding-left: 30px;
}

.wwr-info-text {
  color: #2d2d2d;
  letter-spacing: .25px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 30px;
}

.testimonial-bubble {
  background-color: #6471e3;
  border-radius: 50px;
  position: absolute;
  inset: auto 150px -150px -300px;
  box-shadow: 0 0 15px #0000001a;
}

.wwr-img {
  width: 100%;
}

.bubble-inner {
  z-index: 2;
  background-color: #6471e3;
  border-radius: 50px;
  padding: 40px;
  position: relative;
}

.testimonial-text {
  color: #fff;
  letter-spacing: .21px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.dotted-divider-white {
  letter-spacing: .26px;
  border-bottom: 1px dotted #fff;
  height: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 36px;
}

.testimonial-author-name {
  color: #fff;
  letter-spacing: .23px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 19px;
}

.testimonial-author-designation {
  color: #fff;
  letter-spacing: .17px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.image {
  z-index: 1;
  position: absolute;
  inset: -44px auto auto 200px;
}

.section-tc {
  padding-top: 126px;
  padding-bottom: 239px;
}

.tc-wrapper {
  flex-wrap: wrap;
  place-content: flex-start space-between;
  align-items: flex-start;
  display: flex;
}

.tc-img-box, .tc-content-box {
  width: 48%;
}

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

.section-footer {
  background-color: #2d2d2d;
  background-image: url('../images/Object.png');
  background-position: 0 0;
  background-size: auto;
  padding-bottom: 30px;
}

.footer-form-box {
  background-color: #00e6dc;
  border-radius: 10px;
  margin-top: -120px;
  padding: 56px 50px 50px;
}

.footer-form-inner {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.footer-link-wrapper {
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.footer-link {
  color: #fff;
  letter-spacing: .14px;
  margin-right: 20px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 52px;
  text-decoration: none;
  display: inline-block;
}

.copyright-text {
  color: #fff;
  letter-spacing: .14px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 12px;
  line-height: 52px;
}

.social-btn {
  width: 30px;
  height: 30px;
  margin-left: 20px;
}

.social-btn.facebook {
  background-image: url('../images/FB.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.social-btn.twitter {
  background-image: url('../images/TWIT.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.si-title-box-mobile, .tc-title-box-mobile {
  width: 100%;
  display: none;
}

.navbar-mobile {
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
  display: none;
}

.button-dark {
  background-color: #2d2d2d;
  min-height: 58px;
  padding-left: 30px;
  padding-right: 30px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: all .3s;
}

.button-dark:hover {
  background-color: #ff5466;
}

.button-dark.is-center {
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  display: flex;
}

.button-dark-border {
  background-color: #2d2d2d;
  min-height: 58px;
  padding-left: 30px;
  padding-right: 30px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: all .3s;
}

.button-dark-border:hover {
  background-color: #ff5466;
}

.brand-logo-menu {
  background-image: url('../images/Logo.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 200px;
  height: 60px;
  margin-top: -30px;
  margin-left: -100px;
  margin-right: auto;
  position: absolute;
  inset: 50% auto 0% 50%;
}

.section-legal {
  padding-top: 66px;
  padding-bottom: 300px;
}

.legal-content-wrapper.hide {
  display: block;
}

.legal-content-box {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 63px;
  display: flex;
}

.legal-content-link-box {
  width: 25%;
  padding-right: 40px;
  display: none;
  position: sticky;
  top: 120px;
}

.legal-content-text-box {
  border-left: 1px dotted #2d2d2db3;
  width: 75%;
  padding-left: 60px;
  font-size: 21px;
  line-height: 26px;
}

.legal-links {
  color: #2d2d2d;
  border-radius: 5px;
  padding: 15px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 20px;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: block;
}

.legal-links:hover {
  background-color: #f7f6f5;
}

.legal-links.w--current {
  letter-spacing: .25px;
  background-color: #f7f6f5;
  font-size: 21px;
  line-height: 62px;
}

.heading-h2 {
  color: #2d2d2d;
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 36px;
  line-height: 1.2;
}

.heading-h2.is-small {
  color: #000;
  font-size: 32px;
  line-height: 52px;
}

.paragraph {
  color: #2d2d2d;
  margin-bottom: 35px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 20px;
  line-height: 1.4;
}

.paragraph.margin-bottom {
  float: none;
  letter-spacing: .25px;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: 26px;
}

.paragraph.small {
  letter-spacing: .21px;
  font-size: 18px;
  line-height: 26px;
}

.paragraph.small.no-ng {
  margin-bottom: 0;
}

.legal-dropdown {
  color: #2d2d2d;
  border: 1px solid #2d2d2d;
  border-radius: 5px;
  width: 100%;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 20px;
  display: none;
}

.legal-dd-toggle {
  padding-left: 15px;
  display: block;
}

.legal-dd-list.w--open {
  background-color: #fff;
  border: 1px solid #2d2d2d;
  border-radius: 0 0 5px 5px;
  padding: 10px;
}

.legal-dd-link {
  border-radius: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 1.5;
  transition: all .3s;
}

.legal-dd-link:hover {
  background-color: #f7f6f5;
}

.pricing {
  display: block;
}

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

.section-pricing-banner.background-is-black {
  background-color: #1e1a1c;
  margin-bottom: -80px;
  padding-bottom: 0;
  position: relative;
}

.pricing-banner-wrapper {
  text-align: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

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

.button-red {
  background-color: #ff5466;
  border: 1px solid #ff5466;
  border-radius: 5px;
  padding: 15px 40px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 20px;
  font-weight: 700;
  transition: all .3s;
}

.button-red:hover {
  background-color: #2d2d2d;
  border-color: #2d2d2d;
}

.button-red.is-concierge-migration {
  font-size: 22px;
  line-height: 1.63636;
}

.button-red.is-need-help-banner {
  text-align: center;
  margin-top: 40px;
}

.button-red.is-comparison {
  padding-left: 25px;
  padding-right: 25px;
}

.button-black-border {
  color: #2d2d2d;
  letter-spacing: .26px;
  background-color: #fff;
  border: 1px solid #2d2d2d;
  border-radius: 5px;
  padding: 15px 40px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  transition: all .3s;
}

.button-black-border:hover {
  color: #ff5466;
  background-color: #fff;
  border-color: #ff5466;
}

.or {
  color: #2d2d2d;
  letter-spacing: .21px;
  margin-left: 30px;
  margin-right: 30px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 18px;
  line-height: 36px;
}

.section-pricing-feature {
  background-color: #f7f3f1;
  margin-top: 0;
  padding-top: 117px;
  padding-bottom: 137px;
}

.pf-box {
  flex-wrap: wrap;
  place-content: flex-start space-between;
  align-items: stretch;
  margin-top: 105px;
  display: flex;
}

.pf-item {
  background-color: #fff;
  border-radius: 10px;
  width: 47%;
  margin-bottom: 137px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
}

.pf-item.last, .pf-item.second-last {
  margin-bottom: 0;
}

.pf-item-icon-box {
  margin-top: -50px;
  margin-bottom: 15px;
}

.pf-item-title {
  color: #2d2d2d;
  letter-spacing: .33px;
  margin-bottom: 10px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 52px;
}

.section-faq {
  padding-top: 112px;
  padding-bottom: 0;
}

.faq-box {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 77px;
  padding-bottom: 60px;
  display: flex;
}

.faq-img-box {
  width: 30%;
}

.faq-queston-box {
  width: 65%;
}

.accordion-wrapper {
  border-top: 1px dotted #2d2d2d;
  border-bottom: 0 #2d2d2d;
}

.accordion-item {
  background-color: #fff;
  border-bottom: 1px dotted #2d2d2d;
  padding: 20px;
  transition: all .3s;
}

.accordion-item:hover {
  background-color: #f7f3f1;
}

.accordion-item-trigger {
  cursor: pointer;
  align-items: flex-start;
  margin-bottom: 10px;
  display: flex;
  position: relative;
}

.accordion-item-content {
  background-color: #0000;
  overflow: hidden;
}

.faq-question {
  color: #2d2d2d;
  letter-spacing: .25px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 32px;
  display: inline-block;
}

.accordion-arrow {
  position: absolute;
  inset: auto 0% 5px auto;
}

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

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

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

.text-block {
  font-family: Alte Haas Grotesk, sans-serif;
}

.list {
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 20px;
  line-height: 140%;
}

.link {
  line-height: 1.4;
}

.list-2 {
  margin-top: 20px;
  margin-bottom: 30px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 20px;
  line-height: 1.4;
}

.list-3 {
  margin-bottom: 40px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 20px;
  line-height: 1.4;
}

.list-3.list-wrapper {
  margin-top: 20px;
  margin-bottom: 40px;
}

.list-item-2 {
  margin-left: 40px;
  list-style-type: disc;
}

.section-hitw-hero {
  background-color: #f7f3f1;
  background-image: url('../images/Object-1.png'), url('../images/Group-245.png');
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, repeat-x;
  background-size: auto, contain;
  background-attachment: scroll, scroll;
  margin-top: 0;
  padding-top: 81px;
  padding-bottom: 131px;
}

.hitw-box {
  flex-wrap: wrap;
  place-content: flex-start space-between;
  align-items: flex-start;
  margin-top: 48px;
  display: flex;
}

.hitw-img-box {
  width: 48%;
}

.hitw-img {
  width: 100%;
}

.hitw-content-box {
  width: 48%;
  padding-top: 0;
}

.hitw-accordion-box {
  margin-top: 40px;
}

.dd-hitw {
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}

.dd-hitw-toggle {
  color: #2d2d2d;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 50px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 21px;
  font-weight: 700;
  display: block;
}

.dd-hitw-toggle:hover {
  color: #6471e3;
}

.dd-hitw-toggle.w--open {
  color: #fff;
  background-color: #6471e3;
}

.dd-hitw-list {
  display: none;
  position: relative;
}

.dd-hitw-list.w--open {
  background-color: #6471e3;
}

.dd-hitw-icon {
  margin-left: 10px;
  font-weight: 400;
  display: inline-block;
  position: static;
}

.dd-hitw-content {
  color: #fff;
  letter-spacing: .29px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 21px;
  line-height: 32px;
}

.padding {
  padding: 0 20px 20px;
}

.dd-hitw-text {
  letter-spacing: .29px;
  font-size: 24px;
  line-height: 32px;
  display: inline-block;
}

.section-explore-feature {
  padding-top: 100px;
  padding-bottom: 160px;
}

.ef-box {
  margin-top: 35px;
}

.ef-item {
  margin-bottom: 50px;
}

.ef-item-trigger {
  flex-flow: column-reverse;
  place-content: stretch space-between;
  margin-bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
  position: relative;
}

.features-item {
  float: none;
  background-color: #f7f3f1;
  border-radius: 10px;
  flex: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 32%;
  margin-bottom: 20px;
  padding: 37px 23px 38px 38px;
  display: block;
  position: static;
}

.features-item-title {
  color: #2d2d2d;
  letter-spacing: .25px;
  margin-bottom: 9px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 32px;
  display: block;
}

.link-row {
  margin-top: 30px;
}

.anchor-link {
  color: #2d2d2d;
  letter-spacing: .43px;
  border-bottom: 1px dotted #2d2d2d;
  font-family: Alte Haas Grotesk, sans-serif;
  line-height: 31px;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.anchor-link:hover {
  color: #00e6dc;
  border-bottom-color: #00e6dc;
}

.ef-item-arrow {
  display: none;
  position: absolute;
  inset: 25px 0% auto auto;
}

.heading-h4 {
  letter-spacing: .33px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 52px;
}

.heading-h4.is-why-voma {
  letter-spacing: -.02em;
  text-transform: capitalize;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.21212;
}

.heading-h4.weight-normal {
  margin-top: 38px;
  font-weight: 400;
}

.heading-h4.is-subtext-new {
  letter-spacing: -.02em;
  margin-top: 38px;
  font-weight: 400;
  line-height: 34px;
}

.heading-h4.is-subtext-new.plr {
  color: var(--royal-blue);
  padding-left: 126px;
}

.hitw, .whyvoma {
  display: block;
}

.section-whyvoma-hero {
  background-color: #f7f3f1;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
  margin-top: 0;
  padding-top: 81px;
  padding-bottom: 100px;
}

.why-wrapper {
  padding-bottom: 86px;
}

.why-voma {
  width: 86%;
  margin-top: 34px;
  margin-left: auto;
  margin-right: auto;
}

.why-voma-top-row {
  background-color: #fde37b;
  border: 1px solid #2d2d2d;
  align-items: center;
  padding: 20px;
  display: flex;
}

.browser-dot {
  background-color: #2d2d2d;
  border-radius: 40px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.why-content-box {
  background-color: #fff;
  border: 1px solid #2d2d2d;
  border-top-width: 0;
  padding: 9% 9% 15%;
  position: relative;
}

.why-text {
  color: #2d2d2d;
  letter-spacing: .33px;
  margin-bottom: 20px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 32px;
}

.why-signature-box {
  margin-top: 35px;
}

.why-img {
  position: absolute;
  inset: auto 80px -27px auto;
}

.why-button-box {
  text-align: center;
  margin-top: 94px;
}

.button-red-big {
  color: #fff;
  letter-spacing: .26px;
  background-color: #ff5466;
  border: 1px solid #ff5466;
  border-radius: 5px;
  width: 250px;
  margin-left: 15px;
  margin-right: 10px;
  padding: 20px 40px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  transition: all .3s;
}

.button-red-big:hover {
  color: #fff;
  background-color: #2d2d2d;
  border-color: #2d2d2d;
}

.features {
  display: block;
  position: relative;
}

.section-features-hero {
  background-color: #f7f3f1;
  background-image: url('../images/Group-245.png');
  background-position: 0 0;
  background-repeat: repeat-x;
  background-size: auto;
  background-attachment: scroll;
  margin-top: 0;
  padding-top: 70px;
  padding-bottom: 100px;
}

.section-features-hero.hide {
  padding-top: 81px;
  padding-bottom: 129px;
  display: block;
}

.features-wrapper {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.features-img-box {
  margin-top: 48px;
}

.feature-img {
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 0 10px #0000000d;
}

.section-feature-content {
  padding-top: 100px;
  padding-bottom: 300px;
}

.section-feature-content.hide {
  padding-top: 118px;
  padding-bottom: 220px;
  display: block;
}

.feature-content-wrapper {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.rich-text {
  color: #2d2d2d;
  text-align: left;
  letter-spacing: .33px;
  object-fit: none;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.rich-text h2 {
  color: #000;
  text-align: left;
  letter-spacing: .5px;
  font-size: 50px;
  line-height: 62px;
}

.rich-text p {
  color: #000;
  font-size: 17px;
}

.rich-text h3 {
  font-size: 21px;
  line-height: 26px;
}

.rich-text li {
  min-width: 90%;
}

.pagination-btn-text {
  letter-spacing: .43px;
  align-self: auto;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 31px;
  display: block;
}

.f-slider {
  background-color: #0000;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.f-slider-right-arrow {
  color: #2d2d2d;
  background-color: #fff;
  border: 1px solid #2d2d2d;
  border-radius: 80px;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 40px;
  padding-right: 0;
  transition: all .3s;
  display: flex;
  position: fixed;
  inset: 40% 5% auto auto;
}

.f-slider-right-arrow:hover {
  color: #fff;
  background-color: #ff5466;
  border-color: #ff5466;
}

.f-slider-left-arrow {
  color: #2d2d2d;
  letter-spacing: .43px;
  background-color: #fff;
  border: 1px solid #2d2d2d;
  border-radius: 80px;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 40px;
  padding-left: 0;
  line-height: 31px;
  transition: all .3s;
  display: flex;
  position: fixed;
  inset: 40% auto auto 5%;
}

.f-slider-left-arrow:hover {
  color: #fff;
  background-color: #ff5466;
  border-color: #ff5466;
}

.f-slider-mask {
  margin-left: auto;
  margin-right: auto;
}

.icon-right {
  margin-left: 70px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 18px;
  font-weight: 700;
  position: static;
}

.icon-left {
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 5px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 18px;
  font-weight: 700;
  position: static;
}

.top-img-box {
  background-image: url('../images/Group-245.png');
  background-position: 50% 0;
  background-size: auto;
  height: 50px;
}

.collection-list {
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: flex-end space-between;
  display: flex;
}

.collection-list-wrapper {
  flex-flow: column;
  flex: 0 auto;
  justify-content: space-between;
  align-items: stretch;
  display: block;
  overflow: visible;
}

.voma-link {
  color: #2d2d2d;
  cursor: pointer;
  border: 1px #000;
  border-bottom-style: dotted;
  text-decoration: none;
}

.voma-link:hover {
  color: #ff5466;
  border-bottom-color: #ff5466;
}

.voma-link:visited {
  color: #2d2d2d;
}

.image-4 {
  max-width: 290px;
}

.li-legal {
  color: #2d2d2d;
  letter-spacing: .25px;
  font-size: 21px;
  line-height: 26px;
}

.subtext-how {
  letter-spacing: .5px;
  line-height: 33px;
}

.heading {
  margin-bottom: 30px;
}

.image-5 {
  padding-top: 40px;
}

.image-6 {
  font-family: Exo, sans-serif;
}

.section {
  background-color: #0000;
  margin-bottom: 10px;
  padding-top: 10px;
  display: block;
  position: relative;
}

.section.is-pale-pink {
  background-color: var(--snow);
  display: block;
}

.section.is-pale-pink.testimonial {
  display: none;
}

.section.is-footer {
  background-color: #000;
  padding-top: 40px;
}

.section.is-features {
  background-color: var(--royal-blue);
  min-height: 765px;
  margin-top: -128px;
  padding-top: 150px;
}

.section.is-over-purple {
  margin-top: -183px;
}

.section.is-purple {
  background-color: var(--royal-blue);
}

.section.is-hidden {
  display: none;
}

.section.integrations-section {
  margin-bottom: 40px;
}

.section.bg-is-beige {
  background-color: #0000;
}

.section.bg-is-beige.margin-neg {
  margin-top: -35px;
}

.section.bg-is-beige.overflow-hidden {
  overflow: hidden;
}

.section.bg-is-beige.is-special {
  padding-top: 120px;
  display: none;
}

.section.bg-is-beige.p-t-100 {
  padding-top: 100px;
  padding-bottom: 170px;
}

.section.bg-is-beige.above-image {
  padding-bottom: 150px;
  display: none;
}

.section.bg-is-beige.above-image-1 {
  padding-bottom: 150px;
}

.section.is-sell-more {
  background-color: #dfe3f9;
  overflow: visible;
}

.section.is-backbone {
  background-color: #fff;
  margin-top: -30px;
}

.section.z-index-1 {
  z-index: 1;
}

.section.is-annoucnement-content {
  background-color: #e0e3f9;
  padding-top: 40px;
}

.section.bg-is-purple {
  background-color: var(--royal-blue);
  color: var(--white);
}

.section.meet-the-presenter {
  background-color: var(--royal-blue);
}

.section.bg-is-light-purple {
  background-color: #e0e3f966;
}

.section.bg-is-light-purple.overflow-hidden.padding-top {
  background-color: #f7f3f1;
  padding-top: 100px;
}

.section.overflow-hidden {
  overflow: hidden;
}

.section.is-playbook-optin {
  background-color: #e0e3f9;
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.is-ty {
  padding-top: 0;
}

.section.no-top-pad {
  margin-top: -150px;
  padding-top: 0;
  display: none;
}

.section.background-is-black {
  background-color: #1e1a1c;
}

.section.is-integration {
  background-color: #1e1a1c;
  padding-top: 126px;
  padding-bottom: 52px;
}

.section._3-steps {
  background-color: #f7f3f1;
  margin-top: 0;
  padding-top: 60px;
}

.section.has-border {
  border: 2px solid #000;
  margin-bottom: 0;
  padding-top: 140px;
  padding-bottom: 140px;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 60px;
}

.container.no-top-pad {
  padding-bottom: 0;
}

.container.is-footer {
  padding-bottom: 60px;
}

.container.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.container.home-features {
  padding-bottom: 0;
}

.container.no-bot-pad {
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
  display: flex;
}

.container.large-pad {
  padding-top: 180px;
  padding-bottom: 150px;
}

.container.large-pad-1 {
  padding-top: 0;
  padding-bottom: 150px;
}

.container.pad-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.container.is-sell-more {
  padding-bottom: 0;
}

.container.is-playbook {
  padding-left: 140px;
  padding-right: 140px;
}

.container.is-bridge {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 30px;
}

.container.is-relative {
  position: relative;
}

.container.is-pricing {
  padding-top: 0;
  padding-bottom: 60px;
}

.container.is-pricing-table {
  padding-bottom: 0;
}

.container.mobile-no-top-padding {
  padding-bottom: 10px;
}

.page-head {
  color: #000;
  margin-bottom: 24px;
  font-size: 57px;
  font-weight: 500;
  line-height: 57px;
}

.page-head.is-white {
  color: #fff;
}

.page-head.no-top-mg {
  margin-top: 0;
}

.page-head.is-bold {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-weight: 700;
}

.page-head.is-bold.plr {
  text-align: left;
}

.page-head.is-optin {
  letter-spacing: -.02em;
  margin-top: 10px;
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
}

.container-small {
  width: 92%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.container-small.no-bot-mg {
  padding-top: 10px;
  padding-bottom: 0;
}

.container-small.hero {
  padding-top: 50px;
}

.container-small.is-hero-new {
  max-width: 920px;
  padding-bottom: 0;
}

.hero-block {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.subtext-1 {
  color: #000;
  letter-spacing: .33px;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 34px;
}

.subtext-1.is-bold {
  font-weight: 700;
}

.subtext-1.is-center {
  text-align: center;
}

.horizontal-flex-block {
  align-items: center;
  display: flex;
}

.horizontal-flex-block.is-space-between {
  justify-content: space-between;
  align-items: flex-start;
}

.horizontal-flex-block.align-centre {
  justify-content: center;
  align-items: center;
}

.horizontal-flex-block.is-space-between-1 {
  justify-content: space-between;
  align-items: center;
}

.horizontal-flex-block.align-top {
  align-items: flex-start;
}

.horizontal-flex-block.align-start {
  grid-column-gap: 25px;
  align-items: flex-start;
}

.horizontal-flex-block.is-five-things {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 30px;
  display: flex;
}

.features-block {
  align-items: center;
  display: flex;
}

.features-wrap {
  width: 92%;
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
}

.button-wrap {
  justify-content: space-between;
  width: 92%;
  max-width: 444px;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.primary-button {
  background-color: var(--light-coral);
  box-shadow: none;
  color: #fff;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  min-width: 228px;
  max-width: 228px;
  min-height: 66px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.primary-button.no-max-w {
  max-width: none;
}

.primary-button.no-max-w.margin-top {
  margin-top: 56px;
}

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

.primary-button.is-wide {
  width: 100%;
  max-width: 476px;
}

.link-block {
  text-decoration: none;
}

.link-block.is-play {
  margin-right: 16px;
}

.text-block-medium {
  color: #000;
  font-size: 17px;
  font-weight: 700;
}

.video-block {
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.video-block.is-special {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  flex-flow: column;
  max-width: 1093px;
  margin-left: auto;
  margin-right: auto;
}

.video-play-btn {
  background-color: #000;
  background-image: url('../images/Polygon-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 39px 29px;
  border-radius: 5px;
  width: 100%;
  max-width: 162px;
  min-height: 100px;
  display: none;
  position: absolute;
  box-shadow: 6px 6px #0000001a;
}

.main-video {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  min-height: 680px;
  padding-bottom: 0;
}

.section-below-video.is-pale-pink {
  background-color: #f8f3f1;
  margin-top: -442px;
}

.container-below-video {
  width: 92%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 474px;
  padding-bottom: 80px;
}

.col-48 {
  width: 48%;
}

.col-48.full-height {
  height: 100%;
}

.col-48.ic-centered {
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.difference-block {
  width: 100%;
  max-width: 504px;
  min-height: 182px;
  margin-bottom: 24px;
}

.difference-icon {
  width: 30px;
  height: 30px;
  margin-right: 12px;
}

.section-sub-head {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 34px;
}

.section-sub-head.is-integrations {
  font-size: 27px;
  font-weight: 700;
  line-height: 64px;
}

.paragraph-1 {
  color: #000;
  margin-top: 16px;
  margin-bottom: 0;
  margin-left: 42px;
  font-size: 17px;
  line-height: 28px;
}

.difference-wrap {
  margin-top: 100px;
}

.section-head-large {
  color: #000;
  margin-bottom: 24px;
  font-size: 50px;
  font-weight: 500;
  line-height: 62px;
}

.section-head-large.is-centred {
  text-align: center;
}

.section-head-large.is-playbook, .section-head-large.is-playbook-2 {
  color: #2d2d2d;
  text-align: center;
  letter-spacing: .33px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 46px;
  font-weight: 700;
  line-height: 64px;
}

.horizontal-flex-block-1 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.horizontal-flex-block-1.bot-mg-100 {
  margin-top: 20px;
  margin-bottom: 100px;
}

.horizontal-flex-block-1.align-top {
  align-items: flex-start;
}

.horizontal-flex-block-1.bt-mg-0 {
  margin-bottom: 100px;
}

.horizontal-flex-block-1.align-start {
  z-index: 1;
  align-items: flex-start;
  position: relative;
}

.horizontal-flex-block-1.is-smth-smth-product {
  margin-top: 60px;
}

.content-block.is-left {
  text-align: left;
}

.content-block.is-integrations {
  max-width: 736px;
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-2 {
  color: #000;
  text-align: center;
  margin-bottom: 35px;
  font-size: 17px;
  line-height: 28px;
}

.paragraph-2.is-centred {
  text-align: center;
}

.paragraph-2.is-centred.integrations {
  max-width: 726px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-2.no-mg {
  margin-bottom: 0;
}

.paragraph-2.is-white {
  color: #fff;
}

.image-right {
  margin-left: auto;
  display: block;
}

.image-right.is-relative {
  z-index: 3;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.image-right.hide-lg {
  display: none;
}

.image-right.is-produuct {
  width: 60%;
}

.image-left {
  margin-right: auto;
  display: block;
}

.image-left.is-relative {
  z-index: 9999999;
  position: relative;
  overflow: visible;
}

.image-left.auto-margin {
  margin-left: auto;
  margin-right: auto;
}

.col-54 {
  width: 54%;
}

.container-small-1 {
  width: 92%;
  max-width: 726px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
}

.container-small-1.integrations {
  max-width: 1200px;
  padding-bottom: 40px;
}

.container-small-1.compare {
  padding-bottom: 40px;
}

.container-full-width {
  width: 100%;
}

.container-full-width.is-logos {
  overflow: hidden;
}

.footer-col.last {
  margin-right: 0;
}

.paragraph-3 {
  color: #fff;
  max-width: 308px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 22px;
}

.paragraph-3.opacity-55 {
  opacity: .55;
}

.paragraph-3.is-black {
  color: #000;
  margin-bottom: 0;
}

.paragraph-3.is-bold {
  margin-bottom: 8px;
  font-weight: 700;
}

.paragraph-3.is-bold-1 {
  color: #000;
  margin-bottom: 8px;
  font-weight: 700;
}

.social-icon-block {
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

.social-link {
  margin-right: 20px;
}

.footer-head {
  color: #fff;
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
}

.footer-head.no-mg {
  margin-bottom: 0;
}

.footer-head.is-black {
  color: #000;
  margin-bottom: 0;
}

.footer-head.is-black:hover {
  color: #ff5466;
}

.footer-head.is-thankyou {
  color: #000;
  border-bottom: 1px dotted #000;
  margin-bottom: 0;
}

.footer-head.is-thankyou:hover {
  color: #ff5466;
}

.footer-nav-link {
  color: #ffffff8c;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 22px;
  text-decoration: none;
  display: block;
}

.footer-button {
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  min-width: 185px;
  min-height: 58px;
  font-size: 17px;
  line-height: 19.92px;
  text-decoration: none;
  display: flex;
}

.text-block-xsmall {
  color: #ffffff80;
  font-size: 13px;
  line-height: 25.23px;
}

.highlights-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

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

.resources-card {
  border: 1px solid #000;
  border-radius: 5px;
  width: 32%;
  min-height: 447px;
}

.resources-card.is-white, .resources-card.is-white-1 {
  background-color: #fff;
  height: 352px;
  min-height: 0;
  margin-bottom: 32px;
}

.resources-card-block {
  clear: none;
  grid-column-gap: 22px;
  grid-row-gap: 0px;
  flex-wrap: wrap;
  place-content: stretch flex-start;
  align-items: stretch;
  display: flex;
}

.card-image-block {
  background-color: #000;
  min-height: 50%;
  max-height: 50%;
  overflow: hidden;
}

.card-content-block {
  min-height: 50%;
  padding: 24px;
  position: relative;
}

.card-head {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

.card-head.is-features {
  margin-bottom: 20px;
}

.card-head.is-features:hover {
  color: #ff5466;
}

.resoucre-btn {
  background-color: #000;
  background-image: url('../images/right-arrow.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 8px 12px;
  border-radius: 100px;
  width: 66px;
  height: 66px;
  position: absolute;
  inset: auto 24px 24px auto;
  box-shadow: 3px 3px #0000001a;
}

.resoucre-btn.mg-0 {
  bottom: 0;
  right: 0;
}

.resoucre-btn.is-thankyou {
  position: static;
  box-shadow: 3px 3px #0000001a;
}

.centred-container-small {
  text-align: center;
  width: 92%;
  max-width: 726px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 60px;
}

.pale-pink-bg {
  background-color: var(--snow);
  min-width: 100%;
  min-height: 480px;
  position: absolute;
}

.compare-block {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  min-width: 100%;
  display: block;
  position: relative;
}

.compare-horiztonal-flex {
  border-bottom: 1px #000;
  min-height: 108px;
  display: flex;
}

.compare-horiztonal-flex.is-top {
  border-bottom-style: none;
  min-height: 141px;
}

.compare-horiztonal-flex.last {
  border-bottom-style: none;
}

.compare-col-1 {
  border-bottom: 1px solid #000;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 30%;
  min-height: 108px;
  padding: 16px 24px;
  display: flex;
}

.compare-col-1.is-top {
  border-bottom: 1px solid #000;
  min-height: 141px;
}

.compare-col-1.last {
  border-bottom-style: none;
}

.compare-col-2 {
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 11.67%;
  min-height: 108px;
  display: flex;
}

.compare-col-2.is-black {
  background-color: #000;
  flex-direction: column;
}

.compare-col-2.is-black.last {
  border-bottom-style: none;
}

.compare-col-2.last-bot {
  border-bottom-style: none;
  border-right-style: solid;
}

.compare-col-2.last {
  border-bottom-style: solid;
  border-right-style: none;
}

.compare-col-2.last-bot-1 {
  border-bottom-style: none;
  border-right-style: none;
}

.cross {
  opacity: .2;
}

.sub-text-small {
  color: #000;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  line-height: 22px;
}

.sub-text-small.is-white {
  color: #fff;
}

.compare-container {
  width: 92%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.text-block-large {
  color: #fff;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 500;
  line-height: 63px;
}

.text-block-large.is-black {
  color: #000;
}

.card-content-block-1 {
  float: none;
  clear: none;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  object-fit: fill;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  min-height: 100%;
  padding: 24px;
  display: block;
  position: relative;
  overflow: visible;
}

.resoucre-btn-wrap {
  align-items: center;
  width: 175px;
  height: 66px;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: auto 24px 24px auto;
}

.resoucre-btn-wrap:hover {
  color: #ff5466;
}

.image-7 {
  max-height: 50%;
  overflow: hidden;
}

.horizontal-flex-block-1-copy {
  justify-content: space-between;
  align-items: center;
  display: none;
}

.image-8 {
  width: 100%;
  max-width: 100%;
}

.card-head-link {
  text-decoration: none;
}

.old-features-content {
  display: none;
}

.video-image-block {
  background-color: var(--royal-blue);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  margin-top: 80px;
  overflow: hidden;
}

.features-hero-image, .features-hero-video {
  width: 100%;
  max-width: 1200px;
  height: 665px;
}

.col-45 {
  width: 45%;
}

.features-section-image {
  object-fit: cover;
  width: 100%;
  max-height: 360px;
}

.container-1 {
  width: 92%;
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.testimonial-name-block {
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonial-img {
  border-radius: 100px;
  width: 62px;
  height: 62px;
  margin-right: 20px;
}

.text-block-small {
  color: #000;
  font-size: 15px;
  line-height: 28px;
}

.curly-line {
  position: absolute;
  inset: auto 0% 28px auto;
}

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

.features-content.is-space-between-1 {
  justify-content: space-between;
  align-items: center;
}

.integrations-wrap {
  flex-wrap: wrap;
  justify-content: flex-start;
  display: flex;
}

.mobile-integrations-filter-btn {
  display: none;
}

.search-block {
  margin-bottom: 40px;
  position: relative;
}

.integrations-cards-block {
  margin-top: -17px;
}

.mobile-filter-title {
  letter-spacing: .25px;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 600;
  line-height: 48px;
}

.integrations-main-block {
  display: flex;
}

.search-icon {
  color: #6371e3;
  width: 17px;
  height: 18px;
  position: absolute;
  inset: 12px auto auto 11px;
}

.integrations-filter-btn {
  color: #383d3d;
  margin-bottom: 15px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
}

.integrations-filter-btn.is-active {
  color: var(--royal-blue);
}

.filter-block {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.integrations-card {
  width: 33.3%;
  padding: 15px;
}

.hidden-design {
  display: none;
}

.search-field {
  color: #6371e3;
  letter-spacing: .45px;
  background-color: #fff;
  border: 1px solid #dde0e2;
  border-radius: 5px;
  width: 100%;
  height: 42px;
  padding-left: 44px;
  font-family: Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

.search-field:focus {
  border-color: #038181 #038181 var(--royal-blue);
  box-shadow: none;
  color: #383d3d;
  border-bottom-style: solid;
}

.integrations-filter-content {
  flex: none;
  width: 220px;
  margin-right: 20px;
}

.integrations-card-img-wrap {
  width: 100%;
  height: 125px;
  margin-bottom: 4px;
  overflow: hidden;
}

.integration-card-meta {
  display: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.integrations-pg-btn {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  color: #545e65;
  text-align: center;
  background-color: #fff;
  border-radius: 7px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 23px;
  font-size: 16px;
  line-height: 18px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.integrations-pg-btn:hover {
  border: 1px solid var(--royal-blue);
  box-shadow: 0 0 11px #00000026;
}

.integrations-card-img {
  object-fit: contain;
  height: 100%;
  display: inline-block;
}

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

.logo-card {
  background-color: #f8f3f1;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 276px;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.integration-logo {
  width: 200px;
  height: 200px;
  margin-bottom: 0;
}

.inetgration-content-block {
  width: 100%;
  max-width: 821px;
  margin-left: 67px;
}

.integrations-rich-text {
  color: #000;
}

.integrations-rich-text p {
  font-size: 22px;
  line-height: 34px;
}

.tick-wrap {
  background-color: #6471e3;
  justify-content: center;
  align-items: center;
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-top: 8px;
  margin-right: 19px;
  display: flex;
}

.paragraph-4 {
  color: #000;
  margin-bottom: 30px;
  padding-left: 10px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 22px;
  line-height: 34px;
}

.paragraph-4.is-cta {
  max-width: 431px;
  margin-bottom: 0;
  margin-right: 32px;
}

.paragraph-4.read-more-link {
  padding-top: 20px;
}

.paragraph-4.max-w-1060 {
  max-width: 1060px;
  margin: 40px auto;
}

.paragraph-4.no-mg {
  margin-bottom: 0;
}

.paragraph-4.text-white {
  padding-left: 0;
}

.paragraph-4 blockquote {
  border-left-color: var(--royal-blue);
}

.cta-block {
  background-color: #f8f3f1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 821px;
  margin-top: 30px;
  margin-left: auto;
  padding: 60px;
  display: flex;
}

.inetgrations-content-wrap {
  max-width: 736px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-large {
  color: #000;
  margin-top: 32px;
  margin-bottom: 35px;
  font-size: 26px;
  line-height: 39.5px;
}

.paragraph-large.is-white {
  color: #fff;
}

.breadcrumbs-block {
  display: flex;
}

.breadcrumb {
  color: #fff9;
  text-transform: lowercase;
  font-size: 18px;
}

.breadcrumb.is-hidden {
  display: none;
}

.btn-wrap {
  width: 185px;
  margin-top: 62px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.read-doc-btn {
  color: #000;
  text-align: center;
  border: 1px solid #000;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  min-width: 185px;
  min-height: 58px;
  margin-left: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 19.92px;
  text-decoration: none;
  display: flex;
}

.read-doc-icon {
  margin-right: 11px;
}

.rich-text-features {
  color: #000;
  font-size: 22px;
  line-height: 34px;
}

.rich-text-features h1 {
  text-align: center;
  margin-bottom: 64px;
  font-size: 50px;
  font-weight: 400;
  line-height: 67px;
}

.rich-text-features li {
  margin-bottom: 30px;
  margin-left: 16px;
  line-height: 28px;
}

.offerstacks {
  color: var(--lavendar);
}

.text-block-medium-2 {
  color: #000;
  letter-spacing: .33px;
  font-size: 20px;
  line-height: 1.42308;
}

.text-block-medium-2.complete-form {
  color: var(--royal-blue);
  text-align: center;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 0;
}

.h1-concierge-migration-2 {
  color: var(--royal-blue);
  letter-spacing: .33px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 10px;
  font-size: 28px;
  font-weight: 400;
  line-height: 42px;
  display: inline-block;
}

.black-link {
  color: #000;
}

.h1-concierge-migration-1 {
  color: var(--black);
  letter-spacing: .5px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 10px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 35px;
  line-height: 69px;
}

.footer-image-logo {
  margin-bottom: 24px;
}

.concierge-cta-block {
  margin-top: 40px;
}

.concierge-cta-block.hide-mb {
  display: block;
}

.concierge-cta-block.hide-desktop {
  display: none;
}

.feature-heading {
  color: #000;
  letter-spacing: .33px;
  margin-bottom: 24px;
  font-size: 57px;
  font-weight: 700;
  line-height: 69px;
}

.feature-heading.is-centred {
  text-align: center;
}

.feature-heading.is-centred.free-plan {
  margin-top: 60px;
  font-size: 50px;
}

.text-is-blue {
  color: #6471e3;
}

.text-is-blue.mg-t-0 {
  margin-top: 0;
}

.feature-sub {
  color: #6471e3;
  letter-spacing: .5px;
  font-size: 30px;
  line-height: 52px;
}

.button-features {
  color: #fff;
  background-color: #ff5466;
  border-radius: 9px;
  padding: 12px 70px;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
}

.button-features.mg-t-25 {
  margin-top: 25px;
}

.button-features.mg-b-30 {
  margin-bottom: 30px;
}

.button-features.is-center {
  margin-left: auto;
  margin-right: auto;
}

.button-features.is-mobile-version {
  display: none;
}

.button-features.is-pot-ty {
  margin-right: 25px;
}

.button-features.full-width {
  text-align: center;
  border-radius: 0;
  width: 70%;
  max-width: 500px;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 22px;
}

.button-features.is-thank-you {
  text-align: center;
  width: 100%;
  max-width: 476px;
}

.arrow-holder {
  text-align: center;
  margin-top: 35px;
  margin-bottom: 70px;
}

.flex-list {
  grid-column-gap: 10px;
  letter-spacing: .5px;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
  display: flex;
}

.flex-list.weight-400 {
  font-weight: 400;
}

.list-holder {
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-left: 14px;
  display: flex;
}

.list-holder.p-l-0 {
  padding-left: 0;
}

.list-holder.is-horizontal {
  flex-direction: row;
  align-items: center;
  margin-bottom: 36px;
}

.list-holder.is-horizontal.last {
  margin-bottom: 0;
}

.offers-box {
  z-index: 0;
  background-color: #dbddf8;
  border-radius: 2px;
  margin-top: 10px;
  padding: 75px 110px 40px;
  position: relative;
}

.feature-h2 {
  color: #000;
  letter-spacing: .5px;
  margin-bottom: 24px;
  font-size: 30px;
  font-weight: 700;
  line-height: 34px;
}

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

.center-block.mg-t-70 {
  margin-top: 70px;
}

.center-block.max-w-750 {
  width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.center-block.mg-t-50 {
  margin-top: 50px;
  position: relative;
}

.offers-illustration {
  position: absolute;
  inset: -11% 30% auto auto;
}

.offer-body {
  color: #000;
  max-width: 1068px;
  margin-bottom: 70px;
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
  line-height: 38px;
}

.offers-block {
  max-width: 1054px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.mg-t-14 {
  width: 90px;
  margin-top: 14px;
}

.mg-t-14.hide-lg {
  display: none;
}

.h3-creators {
  color: #6471e3;
  text-align: center;
  letter-spacing: .5px;
  font-size: 34px;
  line-height: 41px;
}

.container-1060 {
  width: 92%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-head-medium {
  color: #6471e3;
  margin-bottom: 24px;
  font-size: 42px;
  line-height: 52px;
}

.section-head-medium.is-black {
  color: #000;
}

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

.features-holder {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.features-title {
  color: #2d2d2d;
  text-align: center;
  letter-spacing: .5px;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.inquire-link {
  color: #000;
  border-bottom: 1px dashed #000;
  padding-bottom: 4px;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  text-decoration: none;
  display: block;
}

.inquire-link.is-new {
  color: #2d2d2d;
  border-bottom-style: solid;
  border-bottom-color: #2d2d2d;
}

.inquire-link.is-new-purple {
  border-bottom-style: solid;
  border-bottom-color: var(--royal-blue);
  color: var(--royal-blue);
}

.center-align {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 74px;
  display: flex;
}

.features-img-wrap {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.section-announcement-bar {
  color: #fff;
  background-color: #1e1a1c;
  padding-top: 60px;
  padding-bottom: 18px;
  display: block;
}

.container-announcement-bar {
  width: 92%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.flex-row {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.flex-row.is-centred {
  justify-content: center;
  display: none;
}

.flex-row.is-seven-step {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
}

.flex-row.terms {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  letter-spacing: .3px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 44px;
  font-size: 14px;
}

.flex-row.is-footer-terms {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.flex-row.is-step-2 {
  text-align: center;
  justify-content: center;
}

.flex-row.is-optin-hero {
  grid-column-gap: 50px;
  grid-row-gap: 20px;
  align-items: stretch;
}

.flex-row.is-seven-step-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.flex-row.is-stretch {
  align-items: stretch;
}

.new-text {
  color: #fcd023;
  letter-spacing: .5px;
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
}

.announcement-text {
  font-size: 18px;
  font-weight: 700;
}

.announcement-text.is-aligned-center {
  text-align: center;
}

.announcement-text.max-w-820 {
  margin-left: 0;
  margin-right: 0;
}

.announcement-text.max-w-820.mobile {
  display: none;
}

.text-is-purple {
  color: #6471e3;
}

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

.playbook-form-input {
  color: #000;
  letter-spacing: .17px;
  border: 1px solid #d8d8d8;
  border-radius: 7px;
  min-height: 52px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
  transform: translate(0);
}

.playbook-form-input::placeholder {
  color: #787878;
}

.submit-btn-wrap {
  position: relative;
}

.submit-btn-wrap.mg-t-32 {
  margin-top: 32px;
}

.playbook-submit-btn {
  opacity: 0;
  position: absolute;
  inset: 0%;
}

.bf-optin-submit {
  color: #fff;
  text-align: center;
  letter-spacing: .26px;
  text-transform: uppercase;
  background-color: #ff5466;
  border-radius: 9px;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 16px;
  padding: 20px 32px;
  font-size: 22px;
  font-weight: 700;
  line-height: 23px;
  text-decoration: none;
  transform: translate(0);
}

.playbook-btn-subtext {
  text-transform: none;
  font-size: 18px;
  font-weight: 400;
}

.terms-text {
  color: #787878;
  letter-spacing: .26px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.5px;
}

.section-landing-page-footer {
  background-color: #000;
  padding-top: 60px;
  padding-bottom: 60px;
}

.container-landing-page-footer {
  color: #8c8c8c;
  letter-spacing: .14px;
  width: 92%;
  max-width: 1276px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 22.5px;
}

.footer-logo {
  margin-bottom: 40px;
}

.landing-page-footer-link {
  color: #8c8c8c;
  border-bottom: 1px dashed #8c8c8c;
  font-weight: 700;
  text-decoration: none;
}

.blueprint-img.is-desktop {
  display: block;
}

.blueprint-img.is-tablet, .downloadable-text, .playbook-line {
  display: none;
}

.bridge-subtext {
  letter-spacing: .5px;
  width: 100%;
  padding: 0;
  font-size: 20px;
  line-height: 22px;
  display: block;
  overflow: scroll;
}

.subtext-flex {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: left;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1030px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: relative;
}

.promo-banner {
  background-color: #fff;
  border: 2px solid #6471e3;
  border-radius: 12px;
  max-width: 662px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 30px;
  font-size: 21px;
  line-height: 26px;
  position: relative;
}

.promo-banner-icon {
  z-index: 10;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -52px 0% auto;
  transform: translate(0, 50%);
}

.promo-badge {
  color: #ff5466;
  background-color: #e0e3f9;
  padding-left: 2px;
  padding-right: 2px;
  font-weight: 700;
}

.max-w-970 {
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
}

.bridge-lightbox {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.bridge-lightbox.is-vsl-optin {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.bridge-lightbox.is-vsl-optin.open-popup {
  margin-top: 30px;
  line-height: 203px;
}

.bridge-lb-image {
  object-fit: cover;
  width: 120%;
  max-width: 120%;
}

.play-button {
  background-color: #ff5466e6;
  border-radius: 150px;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 95px;
  margin-top: 50px;
  display: flex;
  position: absolute;
  transform: translate(0);
}

.bridge-line {
  position: absolute;
  inset: 0 30px auto auto;
}

.bridge-stars {
  position: absolute;
  inset: 0% 0% auto auto;
}

.make-money-subtext {
  color: #2d2d2d;
  letter-spacing: .5px;
  font-size: 22px;
  font-weight: 700;
  line-height: 37px;
}

.bridge-subtext-large {
  color: #6471e3;
  font-size: 30px;
}

.max-w-670 {
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}

.max-w-670.mg-t-50 {
  max-width: 720px;
  margin-top: 0;
}

.max-w-670.is-click-more {
  text-align: center;
  margin-top: 50px;
}

.max-w-670.is-vsl-btn {
  margin-top: 20px;
}

.max-w-670.is-thankyou {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.no-thanks-link {
  color: #2d2d2d;
  letter-spacing: .26px;
  border-bottom: 1px dashed #2d2d2d;
  margin-top: 20px;
  padding-bottom: 3px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.no-thanks-link.is-calling {
  color: #2d2d2d;
  font-size: 30px;
}

.red-arrow-bottom {
  width: 38px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  inset: auto 0% -40px;
}

.calling-text {
  color: #2d2d2d;
  letter-spacing: .33px;
  font-size: 42px;
  font-weight: 700;
  line-height: 58px;
}

.calling-subtext-block {
  color: #2d2d2d;
  margin-top: 50px;
  font-size: 30px;
  line-height: 40px;
  position: relative;
}

.calling-content {
  max-width: 1097px;
  margin-left: auto;
  margin-right: auto;
}

.text-is-red {
  color: #ff5466;
}

.exclamation-mark {
  background-image: url('../images/exclamation-mark.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 5px;
  padding-right: 16px;
  display: inline-block;
}

.passes-img {
  width: 11.11vw;
  max-width: 160px;
  position: absolute;
  bottom: -130px;
  left: auto;
  right: 50px;
}

.step-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  margin-top: 50px;
  display: flex;
}

.step-item {
  background-color: #f7f3f1;
  border-radius: 33px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  padding: 35px 50px 35px 70px;
  font-size: 24px;
  line-height: 33.5px;
  display: flex;
  position: relative;
  transform: translate(0);
}

.green-tick {
  width: 68px;
  height: 68px;
  position: absolute;
  inset: -21px auto auto -15px;
}

.vsl-submit {
  color: #fff;
  text-align: center;
  letter-spacing: .26px;
  background-color: #ff5466;
  border-radius: 9px;
  width: 100%;
  padding: 20px 32px;
  font-size: 22px;
  font-weight: 700;
  line-height: 23px;
  text-decoration: none;
  transform: translate(0);
}

.max-w-450 {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.max-w-450.is-click-more {
  text-align: center;
  margin-top: 50px;
}

.subhead {
  color: #2d2d2d;
  font-size: 24px;
  line-height: 1.4;
}

.sub-btn-text {
  margin-top: 20px;
  font-size: 22px;
  line-height: 1.63636;
}

.presenter-img {
  object-fit: contain;
  max-width: 35%;
  height: 80%;
  position: absolute;
  inset: auto 6% 0% auto;
}

.presenter-block {
  grid-row-gap: 20px;
  color: var(--snow);
  flex-direction: column;
  width: 65%;
  max-width: 600px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.text-size-medium {
  text-align: left;
  font-size: 22px;
  line-height: 1.36364;
}

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

.text-size-medium.text-weight-bold.mg-b-18 {
  margin-bottom: 18px;
}

.text-size-medium.text-color-white {
  color: #fff;
}

.h2-xlarge {
  margin-top: 0;
  font-size: 52px;
  line-height: 1.20192;
}

.h2-xlarge.is-capital {
  text-transform: capitalize;
}

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

.text-color-yellow {
  color: var(--gold);
}

.pop-up {
  z-index: 10;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  inset: 0%;
}

.pop-up-card {
  z-index: 12;
  background-color: #fff;
  border: 1.2px solid #edecec;
  border-radius: 5px;
  width: 94%;
  max-width: 680px;
  padding: 60px 40px;
  display: none;
  position: relative;
  overflow: auto;
}

.pop-up-bg {
  z-index: 11;
  background-color: #2d2d2d80;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.vsl-form-submit {
  color: #fff;
  text-align: center;
  letter-spacing: .26px;
  background-color: #ff5466;
  border-radius: 9px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 20px 32px;
  font-size: 22px;
  line-height: 23px;
  text-decoration: none;
  transform: translate(0);
}

.vsl-form-input {
  color: #000;
  letter-spacing: .17px;
  border: 1px solid #d8d8d8;
  border-radius: 7px;
  min-height: 52px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
  font-weight: 400;
  transform: translate(0);
}

.vsl-form-input::placeholder {
  color: #787878;
}

.vsl-form {
  grid-row-gap: 15px;
  text-align: left;
  flex-direction: column;
  margin-top: 20px;
  display: block;
}

.vsl-form-block {
  color: var(--black);
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.36364;
  display: flex;
}

.vsl-form-heading {
  color: var(--royal-blue);
  text-transform: uppercase;
  font-size: 35px;
  line-height: 1.6;
}

.by-voma-logo {
  width: 85px;
}

.by-voma-wrap {
  grid-column-gap: 15px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.pop-up-close-icon {
  width: 19px;
  font-size: 0;
  line-height: 1;
}

.pop-up-close-block {
  cursor: pointer;
  position: absolute;
  inset: 30px 25px auto auto;
}

.open-popup {
  cursor: pointer;
}

.form {
  width: 100%;
  max-width: 670px;
  padding-left: 0;
  padding-right: 0;
  display: inline-block;
}

.pricing-tabs {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  display: flex;
  position: relative;
  top: -30px;
}

.pricing-tabs.width-half {
  z-index: 1;
  width: 45%;
  margin-bottom: 0;
  top: 0;
}

.pricing-tabs-menu {
  background-color: var(--white);
  border: 1px solid #000;
  border-radius: 35px;
  padding: 6px;
  display: flex;
}

.pricing-tabs-menu.width-full {
  width: 100%;
  margin-top: 50px;
}

.pricing-tab-menu-link {
  text-align: center;
  cursor: pointer;
  background-color: #0000;
  border-radius: 30px;
  padding: 14px 30px;
  font-size: 20px;
  font-weight: 700;
}

.pricing-tab-menu-link.w--current {
  color: var(--white);
  background-color: #ff5466;
}

.pricing-tab-menu-link.is-monthly._w-50 {
  background-color: var(--royal-blue);
  color: var(--white);
  width: 50%;
}

.pricing-tab-menu-link.is-yearly {
  background-color: var(--light-coral);
  color: var(--white);
}

.pricing-tab-menu-link.is-yearly._w-50 {
  background-color: var(--white);
  color: var(--black);
  width: 50%;
}

.pricing-block {
  grid-row-gap: 40px;
  background-color: var(--white);
  border-radius: 9px;
  flex-direction: column;
  width: 50%;
  padding: 60px;
  display: flex;
  position: relative;
  box-shadow: 0 5px 25px -5px #00000017;
}

.pricing-block.is-purple {
  border: 3px solid var(--royal-blue);
  background-color: #f3f4fd;
}

.pricing-block.is-purple.width-full {
  width: auto;
}

.pricing-list-item-wrap {
  grid-column-gap: 8px;
  align-items: flex-start;
  font-size: 24px;
  line-height: 1.14583;
  display: flex;
}

.embed-list-check-icon {
  flex: none;
  width: 18px;
  margin-top: 5px;
  font-size: 0;
  line-height: 1;
}

.pricing-heading-wrap {
  color: #979797;
  letter-spacing: .33px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 30px;
  font-size: 19px;
}

.button-black-border-2 {
  color: #2d2d2d;
  text-align: center;
  letter-spacing: .26px;
  background-color: #fff;
  border: 1px solid #2d2d2d;
  border-radius: 5px;
  padding: 6px 20px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  transition: all .3s;
}

.button-black-border-2:hover {
  color: #ff5466;
  background-color: #fff;
  border-color: #ff5466;
}

.pricing-pane {
  align-items: center;
  display: flex;
}

.pricing-pane.is-yearly {
  justify-content: center;
  display: flex;
}

.pricing-pane.is-monthly {
  justify-content: center;
}

.h2-pricing {
  color: var(--black);
  text-transform: uppercase;
  margin-top: 0;
  font-size: 30px;
  line-height: 1.93333;
}

.h2-pricing.is-purple {
  color: var(--royal-blue);
}

.large-pricing-text {
  color: var(--black);
  font-size: 56px;
  font-weight: 700;
}

.pricing-icon {
  width: 188px;
  position: absolute;
  inset: -94px 0% auto auto;
}

.pricing-text {
  color: var(--black);
  margin-top: 10px;
}

.pricing-list {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.pricing-tabs-content {
  width: 100%;
  max-width: 1000px;
  padding-top: 100px;
}

.button-red-2 {
  text-align: center;
  letter-spacing: .26px;
  background-color: #ff5466;
  border: 1px solid #ff5466;
  border-radius: 5px;
  padding: 10px 20px 6px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  transition: all .3s;
}

.button-red-2:hover {
  background-color: #2d2d2d;
  border-color: #2d2d2d;
}

.tab-caption {
  color: var(--royal-blue);
  letter-spacing: .15px;
  align-items: flex-end;
  min-height: 50px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  position: relative;
}

.tab-caption.is-new {
  color: var(--white);
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 62px;
  padding-right: 50px;
}

.caption-graphic-img {
  position: absolute;
  inset: -4px -53px auto auto;
}

.caption-graphic-img.is-new {
  top: -19px;
  right: -6px;
}

.max-w-1000 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.text-size-medium-2 {
  font-size: 28px;
  line-height: 1.36364;
}

.text-size-medium-2.text-color-white {
  color: #fff;
}

.pricing-banner-wrapper-2 {
  text-align: center;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-banner-wrapper-2.is-left-aligned {
  text-align: left;
}

.accordion-item-2 {
  background-color: #fff;
  border-bottom: 1px dashed #2d2d2d;
  padding: 20px;
  transition: all .3s;
}

.accordion-item-2:hover {
  background-color: #f7f3f1;
}

.accordion-wrapper-2 {
  border-top: 1px dashed #2d2d2d;
  border-bottom: 0 #2d2d2d;
}

.accordion-arrow-2 {
  margin-top: 15px;
}

.accordion-item-trigger-2 {
  cursor: pointer;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.faq-answer {
  color: #2d2d2d;
  letter-spacing: .21px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 18px;
  line-height: 26px;
}

.pricing-table {
  margin-top: 60px;
  padding-bottom: 100px;
  position: relative;
}

.pricing-table.is-comparison {
  max-width: 904px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-table-heading {
  border-bottom: 1px solid var(--silver);
  letter-spacing: .5px;
  width: 100%;
  padding-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.14063;
}

.pricing-table-heading.is-small {
  letter-spacing: .29px;
  border-bottom-style: none;
  font-size: 18px;
  line-height: 1.27778;
}

.pricing-table-heading.no-underline {
  border-bottom-style: none;
  padding-bottom: 0;
}

.pricing-table-row {
  align-items: stretch;
  width: 100%;
  display: flex;
}

.pricing-table-heading-2 {
  border-bottom: 1px solid var(--silver);
  letter-spacing: .5px;
  width: 80%;
  padding-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.text-color-purple {
  color: var(--royal-blue);
}

.pricing-table-cell {
  text-align: center;
  flex: none;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
  line-height: 1;
  display: flex;
  position: relative;
}

.pricing-table-cell.is-voma {
  border-right: 3px solid var(--royal-blue);
  border-left: 3px solid var(--royal-blue);
  background-color: var(--white);
}

.pricing-table-cell.is-first-col {
  text-align: left;
  border-top-left-radius: 44px;
  border-bottom-left-radius: 44px;
  justify-content: flex-start;
  min-width: 320px;
  max-width: 320px;
  padding-left: 20px;
  padding-right: 5px;
  line-height: 1.2;
}

.pricing-table-cell.is-first-col.is-comparison {
  min-width: 45%;
}

.pricing-table-cell.is-voma-header {
  border-top: 3px solid var(--royal-blue);
  border-right: 3px solid var(--royal-blue);
  border-left: 3px solid var(--royal-blue);
  background-color: var(--white);
  border-radius: 28px 28px 0 0;
  padding-top: 40px;
  padding-bottom: 0;
}

.pricing-table-cell.is-header {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.pricing-table-cell.is-header.is-kajabi {
  border-bottom: 1px solid var(--silver);
}

.pricing-table-cell.is-first-col-header {
  text-align: left;
  justify-content: flex-start;
  min-width: 320px;
  padding-bottom: 0;
  padding-left: 20px;
}

.pricing-table-cell.is-first-col-header.is-comparison {
  min-width: 45%;
}

.pricing-table-cell.is-last-voma {
  border-right: 3px solid var(--royal-blue);
  border-bottom: 3px solid var(--royal-blue);
  border-left: 3px solid var(--royal-blue);
  background-color: var(--white);
  border-bottom-right-radius: 28px;
  border-bottom-left-radius: 28px;
  height: 30px;
}

.pricing-table-cell.is-kajabi, .pricing-table-cell.is-clickfunnel, .pricing-table-cell.is-samcart, .pricing-table-cell.is-thrivecart {
  flex: 1;
  min-width: 140px;
}

.pricing-table-cell.is-gumroad {
  border-top-right-radius: 44px;
  border-bottom-right-radius: 44px;
  flex: 1;
  min-width: 140px;
  padding-right: 20px;
}

.embed-table-check-icon {
  width: 24px;
  font-size: 0;
}

.table-divider-line {
  background-color: var(--silver);
  width: 100%;
  height: 1px;
}

.pricing-last-table-row, .pricing-table-divider-row {
  border-radius: 44px;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.embed-pricing-info-icon {
  width: 13px;
  font-size: 0;
}

.pricing-info-dropdown-toggle {
  padding: 5px 10px;
}

.pricing-info-dropdown {
  margin-left: 0;
  margin-right: 0;
}

.pricing-info-dropdown-content {
  z-index: 100;
  border: 1px solid var(--white);
  background-color: var(--white);
  padding: 32px 20px;
  line-height: 1.1;
  box-shadow: 0 2px 4px #78787854;
}

.pricing-info-dropdown-content.w--open {
  grid-row-gap: 10px;
  flex-direction: column;
  width: 280px;
  display: flex;
}

.pricing-table-header-row {
  border-radius: 44px;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.pricing-table-category-row {
  border-radius: 44px;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.mobile-vs-block {
  margin-top: 40px;
  padding-left: 20px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.22095;
  display: none;
}

.mobile-vs-block.hide {
  display: none;
}

.mobile-vs-dropdown {
  margin-left: 0;
  margin-right: 0;
}

.mobile-vs-dropdown-toggle {
  grid-column-gap: 14px;
  align-items: center;
  padding: 0 10px;
  display: flex;
}

.mobile-vs-text {
  border-bottom: 3px dashed var(--royal-blue);
  color: var(--royal-blue);
}

.embed-dropdown-arrow-icon {
  font-size: 0;
  line-height: 1;
}

.mobile-vs-content.w--open {
  grid-row-gap: 15px;
  background-color: var(--white);
  flex-direction: column;
  padding: 16px 20px 16px 16px;
  display: flex;
}

.vs-dropdown-text {
  cursor: pointer;
  transition: all .2s;
}

.vs-dropdown-text:hover, .text-span {
  color: var(--royal-blue);
}

.paragraph-5 {
  color: #000;
  margin-bottom: 35px;
  font-size: 17px;
  line-height: 28px;
}

.paragraph-5.mw-504 {
  max-width: 504px;
}

.image-9 {
  max-width: 90%;
}

.html-embed {
  object-fit: contain;
  min-width: auto;
  font-size: 18px;
}

.partner-sub {
  color: #6471e3;
  font-size: 30px;
  line-height: 41px;
}

.partner-sub.is-creators {
  color: #2d2d2d;
  text-align: center;
  letter-spacing: .5px;
  max-width: 825px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
}

.hero-content-wrapper-2 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.h1-light-purple {
  color: #e0e3f9;
  letter-spacing: .33px;
  max-width: 800px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 57px;
  line-height: 1.1;
}

.comparison-subtitle {
  letter-spacing: .5px;
  margin-bottom: 0;
  font-size: 30px;
  line-height: 1.73333;
}

.comparison-description {
  margin-top: 20px;
  margin-bottom: 60px;
  font-size: 28px;
  line-height: 1.53571;
}

.button-dark-2 {
  background-color: #2d2d2d;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-width: 400px;
  min-height: 58px;
  padding-left: 30px;
  padding-right: 30px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.63636;
  transition: all .3s;
  display: flex;
}

.button-dark-2:hover {
  background-color: #ff5466;
}

.rich-text-2 {
  color: #2d2d2d;
  text-align: left;
  letter-spacing: .33px;
  object-fit: none;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 18px;
  line-height: 26px;
}

.rich-text-2 h2 {
  color: #000;
  text-align: left;
  letter-spacing: .5px;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 57px;
  line-height: 1;
}

.rich-text-2 p {
  color: #000;
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 1.52083;
}

.rich-text-2 h3 {
  font-size: 21px;
  line-height: 26px;
}

.rich-text-2 li {
  min-width: 90%;
}

.rich-text-2 ol {
  padding-left: 30px;
  font-size: 24px;
  line-height: 1.52083;
}

.need-help-block {
  background-color: #e0e3f9;
  padding: 50px 60px 80px;
  position: relative;
}

.banner-image {
  width: 48%;
  position: absolute;
  inset: auto 5% 0% auto;
}

.need-help-content {
  grid-row-gap: 10px;
  flex-direction: column;
  width: 45%;
  max-width: 400px;
  font-size: 22px;
  line-height: 1.5;
  display: flex;
}

.switch-img {
  width: 128px;
}

.banner-arrow {
  width: 125px;
  margin-bottom: 20px;
  transform: rotate(-10deg);
}

.h2-medium {
  letter-spacing: .5px;
  font-size: 42px;
  line-height: 1.1;
}

.cms-content-wrap {
  grid-row-gap: 100px;
  flex-direction: column;
  width: 92%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

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

.competitor-link {
  color: #333;
  text-decoration: none;
}

.heading-2 {
  color: var(--royal-blue);
  margin-bottom: 0;
  padding-bottom: 5px;
  padding-left: 15px;
  font-size: 28px;
  font-weight: 400;
}

.heading-3 {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  padding-left: 15px;
  font-size: 35px;
}

.text-block-6 {
  text-align: center;
  font-size: 20px;
}

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

.centred-block.is-platform-comparison {
  color: #fff;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

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

.text-block-7 {
  margin-top: 10px;
  margin-bottom: 24px;
  font-size: 20px;
}

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

.text-block-10 {
  font-size: 22px;
  line-height: 24px;
}

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

.section-3 {
  padding-bottom: 140px;
}

.heading-4 {
  font-size: 36px;
  font-weight: 400;
}

.text-block-11 {
  text-align: left;
  margin-left: 250px;
  margin-right: 250px;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
}

.link-2, .link-3 {
  color: #6471e3;
}

.inner-container._565px {
  max-width: 565px;
}

.inner-container._565px.center-element {
  margin-left: auto;
  margin-right: auto;
}

.inner-container._1044px {
  max-width: 1044px;
}

.inner-container._30 {
  max-width: 30%;
}

.inner-container._30.image-above-hero-v6 {
  position: absolute;
  inset: 106px auto auto 0%;
}

.inner-container._76 {
  max-width: 76%;
}

.inner-container._23 {
  max-width: 23%;
}

.inner-container._23.image-above-hero-v6 {
  position: absolute;
  inset: auto 0% 32px auto;
}

.inner-container.is-features {
  max-width: 527px;
}

.inner-container._63 {
  max-width: 63%;
}

.inner-container._70 {
  max-width: 70%;
}

.inner-container._541px {
  max-width: 541px;
}

.inner-container._400px {
  max-width: 400px;
}

.inner-container._577px {
  max-width: 700px;
}

.inner-container._577px.center-element {
  margin-left: auto;
  margin-right: auto;
}

.inner-container._600px {
  max-width: 600px;
}

.inner-container._600px.center {
  margin-left: auto;
  margin-right: auto;
}

.inner-container._500px {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.inner-container._800px {
  max-width: 800px;
}

.inner-container._800px.center {
  margin-left: auto;
  margin-right: auto;
}

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

.text-breaking-no-wrap {
  white-space: nowrap;
}

.mg-bottom-40px {
  margin-bottom: 40px;
}

.mg-top-large-v2 {
  margin-top: 70px;
}

.flex {
  display: flex;
}

.flex.center {
  justify-content: center;
  padding-bottom: 20px;
}

.flex.justify-center {
  justify-content: center;
}

.flex.justify-space-between {
  justify-content: space-between;
}

.flex.align-center {
  align-items: center;
}

.flex.children-wrap {
  flex-wrap: wrap;
}

.flex.children-wrap.social-media-spacing-8px {
  margin-bottom: -8px;
  margin-right: -8px;
}

.icon-list {
  border-radius: 1000000px;
  align-self: flex-start;
  width: 24px;
  min-width: 24px;
  min-height: 24px;
  max-height: 24px;
  margin-top: 2px;
  margin-right: 16px;
}

.icon-list.v2 {
  border-radius: 0;
  width: auto;
  min-width: auto;
  max-width: 26px;
  min-height: auto;
  max-height: none;
  margin-right: 12px;
}

.mg-bottom-large-v5 {
  justify-content: center;
  margin-bottom: 75px;
  display: flex;
}

.grid-3-columns {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-3-columns._3-icon-list {
  grid-column-gap: 20px;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  justify-items: center;
}

.grid-3-columns.image-center---icons-sides {
  grid-column-gap: 40px;
  grid-template-columns: minmax(0%, auto) minmax(15%, auto) minmax(0%, auto);
  align-items: center;
}

.icon-list-item-wrapper {
  align-items: center;
  display: flex;
}

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

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

.position-relative.z-index-1.content-v7 {
  padding-bottom: 57px;
}

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

.border-radius-18px {
  z-index: -1;
  border-radius: 18px;
  align-items: center;
  display: flex;
  transform: translate(0);
}

.border-radius-18px.overflow-hidden.shadow {
  overflow: hidden;
  box-shadow: 0 1px 3px #0061ff0a, 0 2px 8px #14142b0f;
}

.border-radius-36px {
  z-index: -1;
  border-radius: 36px;
  align-items: center;
  display: flex;
  transform: translate(0);
}

.border-radius-36px.overflow-hidden.shadow-large {
  overflow: hidden;
  box-shadow: 0 1px 3px #0061ff0a, 0 12px 90px #1f25590f;
}

.border-radius-36px.overflow-hidden.shadow {
  box-shadow: 0 1px 3px #0061ff0a, 0 2px 8px #14142b0f;
}

.mg-top-large {
  margin-top: 58px;
}

.mg-bottom-0px {
  margin-bottom: 0;
}

.max-width-660px-mb.center-element {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.grid-2-columns {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.grid-2-columns._2-col-mbl._1-col-mbp {
  grid-column-gap: 70px;
}

.grid-2-columns.form {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.grid-2-columns.contact-v1 {
  grid-column-gap: 60px;
  grid-template-columns: 1fr 1.2fr;
}

.grid-2-columns.is-opt-in {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.square-icon {
  border-radius: 16px;
}

.subtitle {
  color: var(--royal-blue);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
}

.subtitle.is-new {
  letter-spacing: -.02em;
  text-transform: none;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
}

.card {
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 24px;
  box-shadow: 0 3px 18px #14142b0f, 0 1px 6px #0061ff0a;
}

.card.is-features {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: flex-start;
  padding: 70px 40px 70px 50px;
  display: flex;
}

.card.content-left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 32px;
  display: flex;
}

.card.content-left.testimonial-v1 {
  padding: 76px 48px 56px;
}

.card.form-v4 {
  border-width: 0;
  flex-direction: column;
  justify-content: center;
  min-height: 599px;
  margin-bottom: 0;
  padding: 77px 48px 88px;
  display: flex;
}

.card.form-v4.bg-neutral-200 {
  z-index: 10;
  position: relative;
}

.card.form {
  flex-direction: column;
  justify-content: center;
  min-height: 775px;
  margin-bottom: 0;
  padding: 69px 48px;
  display: flex;
}

.card.form.bg-blue {
  background-color: #f0f1fc;
  border-color: #d9d9d9;
  border-radius: 5px;
  min-height: auto;
  padding: 50px;
}

.card.testimonial-v2 {
  justify-content: space-between;
  padding: 62px 52px;
  display: flex;
}

.card.form-v3 {
  flex-direction: column;
  justify-content: center;
  min-height: 785px;
  margin-bottom: 0;
  padding: 63px 48px 72px;
  display: flex;
}

.card.form-v3.bg-neutral-200 {
  min-height: 0;
}

.card.form-v3.bg-blue {
  background-color: #f0f1fc;
  border-style: none;
  border-radius: 5px;
  min-height: 0;
  padding-top: 60px;
  padding-left: 64px;
  padding-right: 64px;
}

.max-width-500px {
  max-width: 500px;
}

.cta-card {
  background-color: #6371e3;
  border-radius: 24px;
  justify-content: space-between;
  align-items: center;
  padding: 87px 74px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.split-content.cta-card-v2-left {
  z-index: 1;
  max-width: 475px;
  position: relative;
}

.split-content.content-v7-left {
  width: 100%;
  max-width: 527px;
  margin-right: 40px;
}

.split-content.content-v7-right {
  width: 100%;
  max-width: 568px;
  position: relative;
}

.split-content.content-v6-left {
  width: 100%;
  max-width: 587px;
  margin-right: 40px;
  position: relative;
}

.split-content.content-v6-right {
  width: 100%;
  max-width: 474px;
}

.split-content.hero-v2-left {
  align-self: stretch;
  max-width: 552px;
  margin-right: 40px;
}

.split-content.hero-v2-left.is-center {
  align-items: center;
  width: 50%;
  max-width: 565px;
  margin-right: 40px;
  display: flex;
}

.split-content.hero-v2-right {
  align-self: stretch;
  width: 100%;
  min-width: 506px;
  max-width: 580px;
}

.split-content.content-v2-left {
  width: 100%;
  max-width: 549px;
  margin-right: 40px;
  position: relative;
}

.split-content.content-v2-right {
  max-width: 500px;
  margin-top: -150px;
}

.split-content.card-testimonial-v2-left {
  max-width: 248px;
  margin-right: 40px;
}

.split-content.card-testimonial-v2-right {
  flex: 1;
  max-width: 433px;
}

.split-content.hero-v6-right {
  align-self: stretch;
  width: 100%;
  min-width: 360px;
  max-width: 446px;
}

.split-content.hero-v6-left {
  align-self: stretch;
  max-width: 600px;
  margin-right: 40px;
}

.split-content.hero-v6-left.is-webinar-reg {
  width: 50%;
}

.split-content.hero-v2-right---new {
  align-self: stretch;
}

.split-content.is-webinar-reg-form {
  margin-right: 37px;
}

.color-neutral-100 {
  color: #fff;
}

.triangle-bottom-right {
  background-image: linear-gradient(135deg, #0000 50%, #3a85ff 50%);
  position: absolute;
}

.triangle-bottom-right.bg-secondary-1.cta-v2 {
  background-image: linear-gradient(135deg, #0000 50%, #2d2d2d 50%);
  width: 166px;
  padding-top: 166px;
  inset: auto 0% 42% auto;
}

.triangle-bottom-right.secondary-2 {
  background-image: linear-gradient(135deg, #0000 50%, #00b2ff 50%);
}

.triangle-bottom-right.secondary-2.hero-v2 {
  width: 242px;
  padding-top: 242px;
  inset: 0% 0% auto auto;
}

.mg-bottom-34px {
  margin-bottom: 34px;
}

.square {
  position: absolute;
}

.square.bg-secondary-1.cta-v2 {
  background-color: #2d2d2d;
  width: 166px;
  padding-top: 166px;
  inset: auto 166px 0% auto;
}

.square.bg-secondary-1.landing-page-v2-form {
  background-color: #4e59b8;
  width: 374px;
  padding-top: 374px;
  inset: auto 0% -15% auto;
}

.square.bg-primary-1.hero-v2-square-2 {
  background-color: #00b2ff;
  width: 340px;
  margin-bottom: -340px;
  padding-top: 340px;
  inset: auto 0% 0% auto;
  overflow: hidden;
}

.square.bg-primary-1.hero-v2-square-1 {
  width: 290px;
  padding-top: 290px;
}

.circle {
  border-radius: 1000000000px;
  position: absolute;
}

.circle.bg-secondary-3.cta-v2-circle-2 {
  background-color: #ff5466;
  width: 166px;
  padding-top: 166px;
  inset: -27% 166px auto auto;
}

.circle.bg-secondary-3.cta-v2-circle-1 {
  background-color: #ff5466;
  width: 166px;
  padding-top: 166px;
  inset: auto 0% 0% auto;
}

.circle.bg-secondary-3.cta-v2-circle-3 {
  background-color: #ff5466;
  width: 166px;
  padding-top: 166px;
  inset: 16% 166px auto auto;
}

.circle.bg-secondary-3.landing-page-v2-form {
  background-color: #2d2d2d;
  width: 436px;
  padding-top: 436px;
  inset: -23% auto auto 0%;
}

.circle.bg-secondary-3.hero-v2-circle-1 {
  width: 261px;
  margin-right: -129px;
  padding-top: 261px;
  inset: auto 0% 0% auto;
}

.circle.bg-secondary-3.hero-v2-circle-2 {
  width: 100%;
  margin-bottom: -170px;
  padding-top: 100%;
  inset: auto 0% 0% auto;
}

.circle.bg-primary-1.top-left {
  width: 249px;
  padding-top: 249px;
  top: -66px;
  left: -66px;
}

.position-absolute {
  position: absolute;
}

.position-absolute.top {
  inset: 0% 0% auto;
}

.position-absolute.top.about-v2 {
  background-color: #f9fbfd;
  min-height: 70%;
}

.position-absolute.bg-dots {
  max-width: 153px;
}

.position-absolute.bg-dots.bottom-right {
  bottom: -48px;
  right: -50px;
}

.position-absolute.bg-dots.bottom-right.v2 {
  bottom: 4px;
}

.position-absolute.bg-dots.top-right {
  top: -50px;
  right: -53px;
}

.max-width-660px-tablet.center-element {
  z-index: 1;
  position: relative;
}

.color-accent-1 {
  color: var(--royal-blue);
}

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

.mg-bottom-28px {
  margin-bottom: 28px;
}

.triangle-top-left {
  background-image: linear-gradient(315deg, #0000 50%, #3a85ff 50%);
  position: absolute;
}

.triangle-top-left.bg-shape {
  width: 233px;
  padding-top: 233px;
  inset: -32px auto auto -41px;
}

.triangle-top-left.secondary-2 {
  background-image: linear-gradient(315deg, #0000 50%, #00b2ff 50%);
}

.triangle-top-left.secondary-2.landing-page-v2-form {
  background-image: linear-gradient(315deg, #0000 50%, #2d2d2d 50%);
  width: 372px;
  padding-top: 372px;
  inset: auto 0% 0% auto;
}

.heading-h1-size {
  color: #14142b;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.208em;
}

.heading-h1-size.large {
  font-size: 52px;
  line-height: 1.231em;
}

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

.subtitle-2 {
  color: #6371e3;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
}

.text-200 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.111em;
}

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

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

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

.split-content-wrapper.direction-reverse-tablet.mg-bottom-large-v4 {
  margin-bottom: 60px;
}

.mg-bottom-36px {
  margin-bottom: 36px;
}

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

.grid-1-column.gap-row-121px {
  align-content: space-around;
  height: 100%;
}

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

.grid-1-column.form {
  grid-row-gap: 30px;
}

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

.max-width-454px {
  max-width: 454px;
}

.subtitle-3 {
  color: #6371e3;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
}

.text-301 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.111em;
}

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

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

.text-301.bold.color-neutral-800 {
  margin-top: 0;
}

.avatar-circle {
  border-radius: 50%;
  align-items: center;
  width: 100%;
  display: flex;
  overflow: hidden;
  transform: translate(0);
}

.avatar-circle._03 {
  max-width: 62px;
}

.avatar-circle._07 {
  max-width: 248px;
}

.avatar-circle._90px {
  max-width: 90px;
}

.avatar-circle._90px.mg-right-24px {
  width: 90px;
  min-width: 90px;
  height: 90px;
  min-height: 90px;
  margin-right: 24px;
}

.max-width-526px {
  max-width: 526px;
}

.flex-horizontal {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.success-message {
  color: #fff;
  background-color: #0061ff;
  border-radius: 24px;
  padding: 28px 28px 32px;
}

.success-message.no-wrap {
  color: #0061ff;
  background-color: #0000;
  border-radius: 0;
  align-self: stretch;
  padding: 0;
}

.line-rounded-icon.success-message-check {
  margin-bottom: 6px;
  font-size: 22px;
}

.mg-top-13px {
  margin-top: 13px;
}

.max-width-47px {
  max-width: 47px;
}

.card-link-icon {
  color: #8184a3;
  transform-style: preserve-3d;
  background-color: #fff;
  border: 1px solid #f9fbfd;
  border-radius: 14px;
  align-items: center;
  padding: 20px 18px;
  text-decoration: none;
  transition: transform .3s, border-color .3s, color .3s;
  display: flex;
  box-shadow: 0 2px 6px #14142b0f;
}

.card-link-icon:hover {
  color: #0061ff;
  border-color: #0061ff;
  transform: scale3d(.98, .98, 1.01);
}

.card-link-icon.bg-neutral-200 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #f9fbfd;
}

.card-link-icon.bg-neutral-200:hover {
  color: #6371e3;
  border-color: #6371e3;
}

.error-message {
  color: #ff5a65;
  text-align: center;
  background-color: #0000;
  align-self: stretch;
  margin-top: 20px;
  padding: 0;
}

.form-content {
  align-self: stretch;
}

.subtitle-4 {
  color: #6371e3;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
}

.input-2 {
  color: #14142b;
  background-color: #fff;
  border: 1px solid #dcddeb;
  border-radius: 100px;
  min-height: 62px;
  margin-bottom: 0;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 1.111em;
  transition: color .3s, border-color .3s;
}

.input-2:hover {
  border-color: #0061ff;
}

.input-2:focus {
  color: #14142b;
  border-color: #0061ff;
}

.input-2::placeholder {
  color: #8184a3;
}

.input-2.is-new {
  border-color: #2d2d2d;
  border-radius: 5px;
  min-height: 55px;
  display: block;
}

.bg-split {
  background-color: #f9fbfd;
  position: absolute;
}

.bg-split.right {
  inset: 0% 0% 0% auto;
  background-color: #0061ff;
  width: 100%;
  max-width: 40%;
  inset: 0% 0% 0% auto;
  overflow: hidden;
}

.bg-split.right.hero-v2 {
  background-color: #065ae3;
  max-width: 37%;
  min-height: 63%;
  inset: 0% 0% auto auto;
  overflow: visible;
}

.div-block-2 {
  z-index: 10;
  position: relative;
}

.width-100 {
  width: 100%;
}

.buttons-row-left {
  margin-right: 25px;
}

.buttons-row {
  align-items: center;
  display: flex;
}

.buttons-row.center {
  justify-content: center;
}

.mg-bottom-13px {
  margin-bottom: 13px;
}

.mg-bottom-13px.is-ty {
  font-size: 60px;
}

.button-more {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.max-width-499px {
  max-width: 499px;
}

.triangle-bottom-left {
  background-image: linear-gradient(225deg, #0000 50%, #3a85ff 50%);
  position: absolute;
}

.triangle-bottom-left.hero-v2 {
  background-color: #00b2ff;
  width: 233px;
  margin-bottom: -341px;
  margin-left: -41px;
  padding-top: 233px;
  inset: auto auto 0% 0%;
}

.triangle-bottom-left.bg-shape {
  width: 233px;
  padding-top: 233px;
  inset: auto auto -41px -33px;
}

.container-default {
  max-width: 1222px;
  padding-left: 24px;
  padding-right: 24px;
}

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

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

.max-width-484px {
  max-width: 484px;
}

.border-radius-24px {
  border-radius: 24px;
  align-items: center;
  display: flex;
  transform: translate(0);
}

.border-radius-24px.overflow-hidden.shadow {
  box-shadow: 0 1px 3px #0061ff0a, 0 2px 8px #14142b0f;
}

.btn-primary {
  color: #fff;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #0061ff;
  border: 1px solid #0061ff;
  border-radius: 48px;
  justify-content: center;
  padding: 22px 40px;
  font-weight: 700;
  line-height: 1.111em;
  text-decoration: none;
  transition: background-color .3s, transform .3s, color .3s;
}

.btn-primary:hover {
  color: #fff;
  background-color: #065ae3;
  transform: translate3d(0, -3px, .01px);
}

.semicircle-left {
  background-image: linear-gradient(to right, #0061ff 50%, #0000 50%);
  border-radius: 1000000000px;
  position: absolute;
}

.semicircle-left.secondary-1 {
  background-image: linear-gradient(to right, #065ae3 50%, #0000 50%);
}

.semicircle-left.secondary-1.hero-v2 {
  width: 100%;
  margin-bottom: -170px;
  padding-top: 100%;
  inset: auto 0% 0% auto;
}

.mg-bottom-32px {
  margin-bottom: 32px;
}

.divider {
  background-color: #dcddeb;
  min-height: 1px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.divider._50px {
  margin-top: 50px;
  margin-bottom: 50px;
}

.divider._64px {
  margin-top: 64px;
  margin-bottom: 64px;
}

.divider._38px {
  margin-top: 38px;
  margin-bottom: 38px;
}

.divider._38px.mg-top-13px {
  margin-top: 13px;
}

.heading-h3-size {
  color: #14142b;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.417em;
}

.heading-h3-size.mg-bottom-0px.mg-top-0 {
  text-align: center;
  margin-top: 0;
}

.section-4 {
  padding-top: 144px;
  padding-bottom: 144px;
}

.section-4.hero-v2 {
  padding-top: 72px;
  padding-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.section-4.hero-v6 {
  padding-top: 80px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.mg-bottom-default {
  margin-bottom: 48px;
}

.max-width-345px {
  max-width: 345px;
}

.border-radius-16px {
  border-radius: 16px;
  align-items: center;
  display: flex;
  transform: translate(0);
}

.border-radius-16px.overflow-hidden.icon {
  width: 77px;
  min-width: 77px;
  min-height: 77px;
  max-height: 77px;
}

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

.max-width-280px {
  max-width: 280px;
}

.subtitle-5 {
  color: #0061ff;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
}

.subtitle-5.mg-bottom-16px {
  margin-bottom: 16px;
}

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

.number-card {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.color-accent-2 {
  color: #0061ff;
}

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

.max-width-312px {
  max-width: 312px;
}

.max-width-312px.max-width-100-tablet {
  height: 100%;
}

.subtitle-6 {
  color: #0061ff;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
}

.subtitle-6.mg-bottom-16px {
  margin-bottom: 16px;
}

.mg-bottom-10px {
  margin-top: 0;
  margin-bottom: 10px;
}

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

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

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

.subtitle-7 {
  color: #0061ff;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
}

.btn-circle-secondary {
  color: #14142b;
  transform-style: preserve-3d;
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  min-width: 64px;
  height: 64px;
  min-height: 64px;
  font-size: 26px;
  text-decoration: none;
  transition: border-color .3s, transform .3s, background-color .3s, color .3s;
  display: flex;
  box-shadow: 0 2px 12px #14142b14;
}

.btn-circle-secondary:hover {
  color: #fff;
  background-color: #14142b;
  border-color: #14142b;
  transform: scale3d(.94, .94, 1.01);
}

.btn-circle-secondary.slider-arrow {
  color: #0061ff;
}

.btn-circle-secondary.slider-arrow:hover {
  color: #fff;
}

.mg-top-16px {
  margin-top: 16px;
}

.slider-wrapper {
  background-color: #0000;
  height: 100%;
}

.slider-wrapper.v3 {
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
}

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

.hidden-desktop {
  display: none;
}

.slider-mask {
  height: 100%;
}

.slider-mask.slider-v3 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.slide-item-mg {
  margin-right: 28px;
}

.mg-top-default {
  margin-top: 48px;
}

.large-body-text {
  font-size: 22px;
  line-height: 1.54545;
}

.is-rotated-180 {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.button-features-outlined {
  color: #2d2d2d;
  text-align: center;
  letter-spacing: .26px;
  background-color: #fff;
  border: 1px solid #2d2d2d;
  border-radius: 5px;
  padding: 11px 70px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  transition: all .3s;
}

.button-features-outlined:hover {
  color: #ff5466;
  background-color: #fff;
  border-color: #ff5466;
}

.blog-simple-icon {
  height: 30px;
}

.premium-blog-flex {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.hero-title-decoration-2 {
  z-index: -1;
  background-color: var(--gold);
  width: 100%;
  height: 10px;
  position: absolute;
  inset: auto 0% 0;
}

.container-2 {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.heading-h4-2 {
  color: #201f1f;
  margin-bottom: 10px;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.3em;
}

.hero-blog {
  position: relative;
}

.list-style {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  display: flex;
}

.hero-title-decoration-wrap {
  position: relative;
}

.team-social-item {
  background-color: var(--light-coral);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: background-color .3s ease-in-out;
  display: flex;
}

.team-social-item:hover {
  background-color: var(--royal-blue);
}

.grid-premium-blog {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
}

.button-link-icon {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
}

.blog-hero-wrapper {
  transform: rotate(5deg);
}

.grid-hero-blog {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.team-social-icon {
  height: 20px;
}

.blog-item-simple {
  color: var(--black);
  border-bottom: 1px solid #19191c;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 20px;
  text-decoration: none;
  transition: opacity .3s ease-in-out, color .3s ease-in-out;
  display: flex;
}

.blog-item-simple:hover {
  opacity: .5;
}

.blog-box-info {
  z-index: 1;
  position: absolute;
  inset: auto 20px 20px;
}

.hero-section {
  background-image: url('../images/hero-shape.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 200px;
  overflow: hidden;
}

.hero-section.no-bottom-pad {
  padding-bottom: 0;
}

.premium-blog-overlay-gradient {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-image: linear-gradient(90deg, #0000, #00000082 51%, #000);
  width: 37%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.hero-inner {
  background-color: #19191c;
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.blog-author-image-wrap {
  flex: none;
}

.blog-box-author-wrap {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #fff;
  display: flex;
}

.blog-detail-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  margin-bottom: 40px;
}

.grid-blogs {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  margin-bottom: 100px;
}

.blog-author-info {
  font-size: 16px;
}

.container-small-2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.blog-category {
  color: var(--black);
  border: 1px solid #19191c;
  border-radius: 30px;
  padding: 8px 20px 5px;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.premium-blog {
  width: 37%;
  padding-left: 20px;
  position: absolute;
  inset: -11% 0% 0% auto;
}

.heading-h3 {
  color: #2d2d2d;
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 1.3em;
}

.blog-box-item {
  position: relative;
}

.blog-meta {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  display: flex;
}

.blog-box-title {
  color: #fff;
  font-size: 20px;
}

.button-primary {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #19191c;
  text-align: center;
  background-color: #f5dc1d;
  border: 1px solid #f5dc1d;
  justify-content: center;
  align-items: center;
  padding: 15px 25px;
  font-weight: 400;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

.button-primary:hover {
  color: #fff;
  background-color: #4860df;
  border-color: #4860df;
}

.empty-state {
  color: #fff;
  text-align: center;
  background-color: #19191c;
  padding: 20px 10px;
}

.team-detail-image {
  object-fit: cover;
  border-radius: 100%;
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
}

.section-title {
  margin-bottom: 50px;
}

.section-title.flex {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.section-title.mg-b-0 {
  margin-bottom: 0;
}

.blog-box-overlay {
  z-index: 0;
  background-image: linear-gradient(#0000, #000000e8);
  width: 100%;
  height: 200px;
  position: absolute;
  inset: auto 0% 0%;
}

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

.hero-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 68px;
  line-height: 1.4;
}

.blog-section {
  padding-top: 140px;
  padding-bottom: 140px;
}

.blog-grid-col {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.list-style-item {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.button-line {
  z-index: -1;
  background-color: #daddf8;
  width: 100%;
  height: 4px;
  position: absolute;
  inset: auto 0% 4px;
}

.team-detail-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  color: var(--black);
  align-items: center;
  display: flex;
}

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

.hero-title-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  display: flex;
}

.hero-search {
  margin-bottom: 30px;
  position: relative;
}

.hero-search-wrap {
  width: 50%;
  margin: 40px auto 120px;
}

.blog-image-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.team-detail-section-title {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-bottom: 30px;
  display: flex;
}

.team-detail-social {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  margin-top: 20px;
  display: flex;
}

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

.container-medium {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.blog-box-meta {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.hero-title-decoration {
  z-index: -1;
  background-color: var(--light-coral);
  width: 100%;
  height: 10px;
  position: absolute;
  inset: auto 0% 0;
}

.blog-detail-section {
  padding-top: 140px;
  position: relative;
}

.blog-box-image-wrap {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

.text-white {
  color: #fff;
}

.blog-box-category {
  background-color: #fff;
  border-radius: 30px;
  padding: 3px 10px 0;
  font-size: 14px;
  position: absolute;
  inset: 20px auto auto 20px;
}

.blog-author-image {
  object-fit: cover;
  border-radius: 100%;
  width: 50px;
  height: 50px;
}

.element-image-1 {
  position: absolute;
  inset: 0% 10% auto auto;
}

.button-link-medium {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--black);
  justify-content: flex-start;
  align-items: center;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-spacing-bottom {
  padding-bottom: 200px;
}

.form-input {
  color: #000;
  background-color: #f3f3f3;
  border: 1px solid #f3f3f3;
  height: 56px;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 16px;
  transition: border-color .3s ease-in-out;
}

.form-input:focus {
  color: #000;
  border-width: 1px;
  border-color: #000;
}

.form-input::placeholder {
  color: #000;
}

.form-input.form-input-search {
  height: 70px;
  padding-right: 60px;
  position: static;
}

.blog-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: var(--black);
  flex-direction: column;
  font-size: 16px;
  text-decoration: none;
  display: flex;
}

.blog-simple-icon-wrap {
  margin-top: 15px;
}

.subscribe-plan {
  margin-bottom: 40px;
}

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

.search-button {
  background-color: #0000;
  background-image: url('../images/search.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
  inset: 0% 20px 0% auto;
}

.button-line-primary-2 {
  z-index: -1;
  background-color: var(--light-coral);
  width: 100%;
  height: 4px;
  margin-bottom: 2px;
  position: absolute;
  inset: auto 0% 0;
}

.grid-blog-ads {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

.blog-collection-item {
  flex: none;
  width: 460px;
}

.blog-info {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.subscribe-blog-section {
  background-color: #19191c;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.button-link {
  z-index: 0;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #201f1f;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.blog-simple-flex {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.blog-hero-category {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.blog-author {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: var(--black);
  align-items: center;
  margin-bottom: 30px;
  text-decoration: none;
  display: flex;
}

.underline-link {
  color: var(--royal-blue);
  border-bottom: 1px dotted #000;
  text-decoration: none;
}

.blog-author-name {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 700;
}

.author-title-text {
  color: #2d2d2d;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.principle-box {
  color: #3d458a;
  background-color: #e6e8fa;
  border-radius: 9px;
  max-width: 845px;
  margin-top: 53px;
  margin-left: auto;
  margin-right: auto;
  padding: 21px 34px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}

.max-width-330px {
  max-width: 330px;
}

.speaker-item {
  color: var(--black);
}

.position-relative-3 {
  position: relative;
}

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

.empty-state-2 {
  text-align: center;
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 11px;
  padding: 26px 24px;
  box-shadow: 0 2px 12px #14142b14;
}

.lightbox-video-icon-wrapper {
  justify-content: center;
  align-items: center;
  max-width: 22%;
  display: flex;
}

.bg-overlay {
  z-index: 1;
  background-color: #14142b66;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.play-button-2 {
  transform-style: preserve-3d;
  border-radius: 50%;
  transition: transform .3s;
  box-shadow: 0 1px 18px #040c2814, 0 7px 53px #040c281c;
}

.play-button-2:hover {
  transform: scale3d(.94, .94, 1.01);
}

.text-100 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25em;
}

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

.border-radius-14px {
  z-index: -1;
  border-radius: 14px;
  align-items: center;
  display: flex;
  transform: translate(0);
}

.border-radius-14px.overflow-hidden {
  overflow: hidden;
}

.webinar-rich {
  color: #2d2d2d;
  text-align: left;
  letter-spacing: .33px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.webinar-rich h2 {
  text-align: left;
  letter-spacing: .5px;
  font-size: 38px;
  line-height: 62px;
}

.webinar-rich p {
  color: #000;
  font-size: 17px;
}

.webinar-rich h3 {
  font-size: 21px;
  line-height: 26px;
}

.webinar-rich li {
  min-width: 90%;
}

.webinar-h1 {
  color: var(--black);
  font-size: 48px;
  line-height: 1.208em;
}

.webinar-h1.margin-bottom {
  margin-bottom: 28px;
  font-size: 60px;
}

.social-media-link-wrapper.spacing-8px {
  margin-bottom: 8px;
  margin-right: 8px;
}

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

.content-link {
  color: var(--black);
  text-decoration: none;
}

.content-link:hover {
  color: #8184a3;
}

.social-media-link {
  color: #fff;
  transform-style: preserve-3d;
  border-radius: 1000000px;
  justify-content: center;
  align-items: center;
  width: 38px;
  min-width: 38px;
  min-height: 38px;
  max-height: 38px;
  font-size: 20px;
  line-height: 1em;
  text-decoration: none;
  transition: transform .3s;
  display: flex;
  overflow: hidden;
  transform: translate(0);
  box-shadow: 0 6px 8px #000;
}

.social-media-link:hover {
  color: #fff;
  background-color: #f85757;
  transform: translate3d(0, -6px, .01px);
}

.social-media-link.small {
  width: 20px;
  min-width: 20px;
  min-height: 20px;
  max-height: 20px;
}

.text-302 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.111em;
}

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

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

.blog-title {
  color: var(--white);
  text-align: left;
  letter-spacing: .5px;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.blog-title.is-black {
  color: var(--black);
}

.search-button-2 {
  display: block;
}

.search-button-3 {
  position: relative;
}

.search-button-4 {
  z-index: 2;
  background-color: #0000;
  background-image: url('../images/search.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
}

.search {
  position: relative;
}

.search-button-5 {
  background-color: #6471e3;
}

.search-result-item {
  font-size: 18px;
  line-height: 26px;
}

.search-2 {
  font-size: 16px;
}

.link-block-2 {
  color: var(--black);
  text-decoration: none;
}

.link-block-3 {
  color: #201f1f;
  text-decoration: none;
}

.link-block-4, .link-block-5, .link-block-6, .link-block-7 {
  text-decoration: none;
}

.link-block-8 {
  color: var(--black);
  text-decoration: none;
}

.link-block-9 {
  color: #201f1f;
  text-decoration: none;
}

.text-block-13 {
  color: #6471e3;
  margin-top: 20px;
  margin-bottom: 24px;
  font-size: 42px;
  font-weight: 700;
  line-height: 52px;
}

.inner-container-2 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.nav-dropdown {
  color: #2d2d2d;
  text-align: center;
  letter-spacing: .43px;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 14px;
  line-height: 31px;
  transition: all .3s;
}

.nav-dropdown:hover, .nav-dropdown.w--current {
  color: #ff5466;
}

.nav-dropdown.sign-in {
  letter-spacing: .25px;
  border: 1px solid #2d2d2d;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-left: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-dropdown.sign-in:hover {
  border-color: #ff5466;
}

.nav-dropdown.getstarted {
  color: #fff;
  letter-spacing: .25px;
  background-color: #2d2d2d;
  border: 1px solid #2d2d2d;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-dropdown.getstarted:hover {
  background-color: #ff5466;
  border-color: #ff5466;
}

.nav-dropdown.is-white {
  color: #fff;
}

.nav-dropdown.sign-in-white {
  color: #fff;
  letter-spacing: .25px;
  border: 1px solid #fff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-left: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-dropdown.sign-in-white:hover {
  border-color: #ff5466;
}

.nav-dropdown.getstarted-white {
  color: #2d2d2d;
  letter-spacing: .25px;
  background-color: #fff;
  border: 1px solid #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-dropdown.getstarted-white:hover {
  background-color: #ff5466;
  border-color: #ff5466;
}

.nav-dropdown-list.w--open {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  box-shadow: 0 4px 5.5px #0000001f;
}

.dropdown-toggle {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  padding: 0 20px;
  display: flex;
}

.icon {
  margin-right: 0;
  position: relative;
}

.nav-menu-inner-wrap {
  align-items: flex-start;
  display: flex;
}

.nav-links-wrap {
  grid-row-gap: 8px;
  flex-wrap: wrap;
  place-content: center flex-start;
  align-items: center;
  display: flex;
}

.column {
  justify-content: flex-end;
  width: 100%;
  margin-left: 40px;
  display: flex;
}

.error-message---scoop {
  background-color: var(--light-coral);
  border-radius: 16px;
  padding: 20px;
}

.popup-content-wrapper {
  z-index: 100;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 14px #4a3aff29, 0 -2px 4px #14142b1f, 0 12px 44px #14142b57;
}

.popup-content-wrapper.popup-1-content-wrapper {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.success-message---scoop {
  background-color: var(--royal-blue);
  color: #fff;
  border-radius: 16px;
}

.dummy-display {
  color: #a0a3bd;
  margin-bottom: 16px;
  line-height: 1.2;
}

.paragraph-2.dummy-paragraph {
  color: #a0a3bd;
  margin-bottom: 32px;
}

.close-scoop-popup {
  cursor: pointer;
  transition: transform .2s;
  position: absolute;
  inset: 24px 24px auto auto;
}

.close-scoop-popup:hover {
  transform: scale(.9);
}

.cloneable-container-default {
  background-color: #f7f7fb;
  border-radius: 20px;
  min-height: 624px;
  padding-top: 132px;
  padding-bottom: 132px;
  display: flex;
  position: relative;
  overflow: hidden;
  transform: translate(0);
}

.button-arrow {
  margin-left: 6px;
}

.popup-form {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 10px;
  display: flex;
  position: relative;
}

.input-scoop {
  color: #170f49;
  border: 1px solid #eff0f6;
  border-radius: 500px;
  min-height: 60px;
  margin-bottom: 0;
  padding: 30px 20px;
  font-size: 18px;
  line-height: 20px;
  transition: color .2s, border-color .2s;
}

.input-scoop:hover, .input-scoop:focus {
  color: #4a3aff;
  border-color: #4a3aff;
}

.input-scoop::placeholder {
  color: #6f6c90;
}

.input-scoop.large {
  min-height: 74px;
  margin-bottom: 10px;
  padding: 24px 40px;
}

.dummy-hero-wrapper---brix {
  justify-content: flex-start;
  width: 100%;
  display: flex;
}

.dummy-hero-wrapper---brix.preview-page---brix {
  padding: 32px 50px;
}

.subscribe-button---scoop {
  color: #fff;
  text-align: center;
  background-color: #4a3aff;
  background-image: none;
  border-radius: 80px;
  padding: 16px 32px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s, background-color .3s;
  position: absolute;
  inset: auto 12px auto auto;
  box-shadow: 0 3px 12px #4a3aff1f;
}

.subscribe-button---scoop:hover {
  background-color: #3527d8;
  transform: translate(0, -2px);
  box-shadow: 0 4px 10px #4a3aff26;
}

.subscribe-button---scoop.popup-scoop {
  background-color: var(--light-coral);
  border-radius: 9px;
  margin-left: 10px;
  padding: 15px 40px;
  position: static;
  inset: auto auto 0% 0%;
}

.image-thumbnail-illustration---brix {
  width: 100%;
  height: 100%;
  max-height: 440px;
}

.limit-content---brix {
  align-self: center;
  width: 100%;
  max-width: 456px;
}

.popup-form-scoop {
  width: 100%;
  margin-bottom: 0;
}

.popup---scoop {
  text-align: center;
  background-color: #fff;
  border-radius: 32px;
  flex-direction: column;
  align-items: center;
  padding: 64px 64px 80px;
  display: flex;
  position: relative;
}

.popup-scoop-illustration {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.popup-wrapper {
  z-index: 99999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0%;
}

.popup-wrapper.preview-page {
  display: none;
  position: absolute;
}

.overlay---brix {
  z-index: 10;
  background-color: #0000009c;
  position: absolute;
  inset: 0%;
}

.dummy-hero-button---brix {
  color: #6f6c90;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #d9dbe9;
  border-radius: 80px;
  justify-content: center;
  align-items: center;
  max-width: 260px;
  padding: 20px 40px 21px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s, background-color .3s;
  display: flex;
  box-shadow: 0 3px 12px #0000000a;
}

.dummy-hero-button---brix:hover {
  transform: scale3d(1, 1, .01)translate(0, -2px);
  box-shadow: 0 4px 10px #00000014;
}

.popup {
  z-index: 9999;
  background-color: #000c;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0%;
  box-shadow: 0 2px 5px #0003;
}

.modal {
  background-color: #fff;
  border-radius: 12px;
  min-width: 600px;
  max-width: 800px;
  margin-left: 0;
  padding: 48px 24px 24px;
  position: relative;
}

.close-button {
  width: 30px;
  position: absolute;
  inset: 12px 12px auto auto;
}

.text-block-14 {
  color: #fff;
}

.nav-menu {
  align-items: center;
  margin-left: auto;
  display: flex;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1140px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.main-nav {
  background-color: var(--white);
  padding-top: 22px;
  padding-bottom: 22px;
  position: sticky;
  top: 0;
}

.nav-logo {
  width: 30%;
  max-width: 200px;
  padding-left: 0;
}

.nav-link-2 {
  margin-left: 40px;
  padding-top: 3px;
  padding-bottom: 3px;
  text-decoration: none;
}

.nav-links-wrap--2 {
  grid-row-gap: 8px;
  flex-wrap: wrap;
  place-content: center flex-start;
  align-items: center;
  display: flex;
}

.nav-dropdown-list-2.w--open {
  background-color: #2d2d2d;
  box-shadow: 0 4px 5.5px #0000001f;
}

.nav-link-3 {
  color: #2d2d2d;
  text-align: center;
  letter-spacing: .43px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 14px;
  line-height: 31px;
  transition: all .3s;
}

.nav-link-3:hover, .nav-link-3.w--current {
  color: #ff5466;
}

.nav-link-3.sign-in {
  color: var(--snow);
  letter-spacing: .25px;
  border: 1px solid #2d2d2d;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  flex: none;
  margin-left: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-link-3.sign-in:hover {
  border-color: #ff5466;
}

.nav-link-3.sign-in.is-new {
  border-radius: 0;
}

.nav-link-3.sign-in.is-new:hover {
  border-color: var(--lavendar);
}

.nav-link-3.getstarted {
  color: #fff;
  letter-spacing: .25px;
  background-color: #2d2d2d;
  border: 1px solid #2d2d2d;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  flex: none;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-link-3.getstarted:hover {
  background-color: #ff5466;
  border-color: #ff5466;
}

.nav-link-3.getstarted.is-new {
  border-radius: 0;
}

.nav-link-3.getstarted.is-new:hover {
  border-color: var(--lavendar);
  background-color: var(--lavendar);
}

.nav-link-3.is-white {
  color: #fff;
}

.nav-link-3.sign-in-white {
  color: #fff;
  letter-spacing: .25px;
  border: 1px solid #fff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-left: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-link-3.sign-in-white:hover {
  border-color: #ff5466;
}

.nav-link-3.getstarted-white {
  color: #2d2d2d;
  letter-spacing: .25px;
  background-color: #fff;
  border: 1px solid #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-link-3.getstarted-white:hover {
  background-color: #ff5466;
  border-color: #ff5466;
}

.nav-link-3.is-left {
  text-align: left;
}

.nav-link-3.get-started-new {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--black);
  letter-spacing: .25px;
  border-radius: 0;
  flex: none;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-link-3.get-started-new:hover {
  border-color: var(--royal-blue);
  background-color: var(--royal-blue);
  color: var(--white);
}

.nav-link-3.sign-in-new {
  border: 1px solid var(--white);
  color: var(--white);
  letter-spacing: .25px;
  border-radius: 0;
  flex: none;
  margin-left: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-link-3.sign-in-new:hover {
  border-color: var(--royal-blue);
}

.nav-dropdown-2 {
  color: #2d2d2d;
  text-align: center;
  letter-spacing: .43px;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 14px;
  line-height: 31px;
  transition: all .3s;
}

.nav-dropdown-2:hover, .nav-dropdown-2.w--current {
  color: #ff5466;
}

.nav-dropdown-2.sign-in {
  letter-spacing: .25px;
  border: 1px solid #2d2d2d;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-left: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-dropdown-2.sign-in:hover {
  border-color: #ff5466;
}

.nav-dropdown-2.getstarted {
  color: #fff;
  letter-spacing: .25px;
  background-color: #2d2d2d;
  border: 1px solid #2d2d2d;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-dropdown-2.getstarted:hover {
  background-color: #ff5466;
  border-color: #ff5466;
}

.nav-dropdown-2.is-white {
  color: #fff;
}

.nav-dropdown-2.sign-in-white {
  color: #fff;
  letter-spacing: .25px;
  border: 1px solid #fff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-left: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-dropdown-2.sign-in-white:hover {
  border-color: #ff5466;
}

.nav-dropdown-2.getstarted-white {
  color: #2d2d2d;
  letter-spacing: .25px;
  background-color: #fff;
  border: 1px solid #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-dropdown-2.getstarted-white:hover {
  background-color: #ff5466;
  border-color: #ff5466;
}

.dropdown-toggle-2 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  padding: 0 20px;
  display: flex;
}

.nav-link-4 {
  color: #fff;
  text-align: left;
  letter-spacing: .43px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 16px;
  line-height: 31px;
  transition: all .3s;
}

.nav-link-4:hover {
  color: var(--lavendar);
}

.nav-link-4.w--current {
  color: #ff5466;
}

.nav-link-4.sign-in {
  letter-spacing: .25px;
  border: 1px solid #2d2d2d;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  flex: none;
  margin-left: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-link-4.sign-in:hover {
  border-color: #ff5466;
}

.nav-link-4.getstarted {
  color: #fff;
  letter-spacing: .25px;
  background-color: #2d2d2d;
  border: 1px solid #2d2d2d;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  flex: none;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-link-4.getstarted:hover {
  background-color: #ff5466;
  border-color: #ff5466;
}

.nav-link-4.is-white {
  color: #fff;
  font-size: 16px;
}

.nav-link-4.sign-in-white {
  color: #fff;
  letter-spacing: .25px;
  border: 1px solid #fff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-left: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-link-4.sign-in-white:hover {
  border-color: #ff5466;
}

.nav-link-4.getstarted-white {
  color: #2d2d2d;
  letter-spacing: .25px;
  background-color: #fff;
  border: 1px solid #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-link-4.getstarted-white:hover {
  background-color: #ff5466;
  border-color: #ff5466;
}

.nav-link-4.is-left {
  text-align: left;
}

.dropdown-nav-icon {
  color: snow;
  margin-right: 0;
  position: relative;
}

.top-level-nav-link {
  color: snow;
  text-align: center;
  letter-spacing: .43px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 14px;
  line-height: 31px;
  text-decoration: none;
  transition: all .3s;
}

.top-level-nav-link:hover, .top-level-nav-link.w--current {
  color: #a5adef;
}

.top-level-nav-link.sign-in {
  letter-spacing: .25px;
  border: 1px solid #2d2d2d;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  flex: none;
  margin-left: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.top-level-nav-link.sign-in:hover {
  border-color: #ff5466;
}

.top-level-nav-link.getstarted {
  color: #fff;
  letter-spacing: .25px;
  background-color: #2d2d2d;
  border: 1px solid #2d2d2d;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  flex: none;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.top-level-nav-link.getstarted:hover {
  background-color: #ff5466;
  border-color: #ff5466;
}

.top-level-nav-link.is-white {
  color: #fff;
}

.top-level-nav-link.sign-in-white {
  color: #fff;
  letter-spacing: .25px;
  border: 1px solid #fff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-left: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.top-level-nav-link.sign-in-white:hover {
  border-color: #ff5466;
}

.top-level-nav-link.getstarted-white {
  color: #2d2d2d;
  letter-spacing: .25px;
  background-color: #fff;
  border: 1px solid #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.top-level-nav-link.getstarted-white:hover {
  background-color: #ff5466;
  border-color: #ff5466;
}

.top-level-nav-link.is-left {
  text-align: left;
}

.top-level-nav-link.is-pricing {
  color: #fff;
}

.heading-7 {
  margin-top: 60px;
}

.div-block-4 {
  background-color: #000;
  padding-top: 0;
}

.optin-content-wrap {
  flex-direction: column;
  width: 50%;
  max-width: 660px;
  display: flex;
}

.subtext-new {
  color: #6471e3;
  text-align: left;
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 28px;
  line-height: 1.21429;
}

.subtext-new.white {
  color: #fff;
}

.subtext-new._22 {
  font-size: 22px;
}

.subtext-new.why-voma {
  margin-top: 30px;
  margin-bottom: 43px;
}

.subtext-new.plan-2 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 24px;
}

.subtext-new.is-optin {
  color: var(--lavendar);
  font-weight: 700;
}

.text-size-large {
  font-size: 26px;
  line-height: 31px;
}

.text-size-large.is-capital {
  text-transform: capitalize;
}

.text-size-large.margin-bottom {
  margin-bottom: 52px;
}

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

.text-color-off-black.margin-vertical {
  margin-top: 30px;
  margin-bottom: 30px;
}

.mg-b-40 {
  margin-bottom: 40px;
}

.new-button {
  background-color: var(--light-coral);
  box-shadow: none;
  color: #fff;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  padding: 12px 6.875rem;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.new-button.no-max-w {
  max-width: none;
}

.new-button.is-outlined {
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
}

.new-button.is-outlined.is-400 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.new-button.is-400 {
  width: 100%;
  max-width: 400px;
}

.new-button-wrap {
  display: flex;
}

.new-button-wrap.show-on-mobile {
  display: none;
}

.new-button-wrap.is-centred {
  justify-content: center;
}

.new-button-wrap.is-2-buttons {
  grid-column-gap: 28px;
  grid-row-gap: 20px;
  justify-content: center;
}

.optin-video-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45%;
  max-width: 540px;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.video-lightbox {
  width: 100%;
}

.video-lightbox-img {
  width: 100%;
  margin-bottom: 24px;
}

.works-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  margin-bottom: 40px;
  display: grid;
}

.works-item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 325px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.paragraph-new {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.22222;
}

.paragraph-new.is-centred {
  text-align: center;
}

.paragraph-new.is-centred.integrations {
  max-width: 726px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-new.no-mg {
  margin-bottom: 0;
}

.paragraph-new.is-white {
  color: #fff;
}

.use-offer-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: center;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.use-offer-badge {
  border: 1px solid var(--royal-blue);
  color: var(--royal-blue);
  text-align: center;
  background-color: #f7f3f1;
  border-radius: .5625rem;
  padding: 25px;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  transform: translate(0);
}

.why-voma-block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: var(--black);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}

.why-voma-block.is-cards {
  margin-top: 60px;
}

.why-voma-content {
  width: 100%;
  max-width: 480px;
}

.why-voma-item {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  align-items: flex-start;
  display: flex;
}

.icon-embed {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 26px;
  margin-top: 6px;
  font-size: 0;
  line-height: 1;
  display: flex;
}

.icon-embed.no-margin {
  margin-top: 0;
}

.icon-embed.is-slider-arrow {
  width: 10px;
  margin-top: 0;
}

.why-voma-subtext {
  font-size: 26px;
  line-height: 1.19231;
}

.why-voma-subtext.is-card {
  text-align: center;
  font-weight: 700;
}

.why-voma-features {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  flex-direction: column;
  display: flex;
}

.why-voma-pricing {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  width: 100%;
  display: flex;
}

.why-voma-pricing-card {
  border: 2px solid var(--royal-blue);
  background-color: #f0f1fc;
  border-radius: 8px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  width: 100%;
  max-width: 50%;
  display: flex;
  transform: translate(0);
}

.why-voma-pricing-card.the-other-guys {
  border-color: var(--black);
  background-color: #fff;
}

.pricing-top {
  background-color: var(--royal-blue);
  color: var(--white);
  text-align: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 30px 16px;
}

.pricing-top.the-other-guys {
  border-bottom: 2px solid var(--black);
  color: var(--black);
  background-color: #f0f1fc;
}

.pricing-content {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  flex: 1;
  padding: 30px 24px;
  display: flex;
}

.plans-types-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.plans-types-block.is-other-guys {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}

.plans-types-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  display: flex;
}

.text-size-small {
  letter-spacing: -.02em;
  font-size: 18px;
  line-height: 22px;
}

.text-size-small.is-other-guys {
  font-size: 23px;
}

.text-size-small.is-other-guys-price {
  color: var(--black);
  width: 100px;
  font-size: 21px;
}

.text-size-small.text-white.show-tablet {
  display: none;
}

.plan-type-bold {
  color: var(--royal-blue);
  font-weight: 700;
}

.purple-line-spacer {
  background-color: var(--royal-blue);
  width: 100%;
  height: 1px;
}

.voma-pricing-text {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
}

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

.other-guys-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 1px solid var(--royal-blue);
  justify-content: space-between;
  padding-bottom: 12px;
  display: flex;
}

.container-new {
  width: 90%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  position: relative;
}

.container-new.is-footer {
  padding-bottom: 60px;
}

.container-new.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.container-new.home-features, .container-new.no-bot-pad {
  padding-bottom: 0;
}

.container-new.large-pad {
  padding-top: 180px;
  padding-bottom: 150px;
}

.container-new.large-pad-1 {
  padding-top: 0;
  padding-bottom: 150px;
}

.container-new.pad-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.container-new.is-sell-more {
  padding-bottom: 0;
}

.container-new.is-playbook {
  padding-left: 140px;
  padding-right: 140px;
}

.container-new.is-bridge {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 30px;
}

.container-new.is-relative {
  position: relative;
}

.container-new.is-pricing {
  padding-top: 0;
  padding-bottom: 60px;
}

.container-new.is-pricing-table {
  padding-bottom: 0;
}

.section-new {
  padding-top: 60px;
  padding-bottom: 60px;
  display: block;
  position: relative;
}

.section-new.is-pale-pink {
  background-color: var(--snow);
  display: block;
}

.section-new.is-pale-pink.testimonial {
  display: none;
}

.section-new.is-footer {
  background-color: #000;
  padding-top: 40px;
}

.section-new.is-features {
  background-color: var(--royal-blue);
  min-height: 765px;
  margin-top: -128px;
  padding-top: 150px;
}

.section-new.is-over-purple {
  margin-top: -183px;
}

.section-new.is-purple {
  background-color: var(--royal-blue);
}

.section-new.is-hidden {
  display: none;
}

.section-new.integrations-section {
  margin-bottom: 40px;
}

.section-new.bg-is-beige {
  background-color: #f7f3f1;
}

.section-new.bg-is-beige.margin-neg {
  margin-top: -35px;
}

.section-new.bg-is-beige.overflow-hidden {
  overflow: hidden;
}

.section-new.is-sell-more {
  background-color: #dfe3f9;
  overflow: visible;
}

.section-new.is-backbone {
  background-color: #fff;
  margin-top: -70px;
}

.section-new.z-index-1 {
  z-index: 1;
}

.section-new.is-annoucnement-content {
  background-color: #e0e3f9;
  padding-top: 40px;
}

.section-new.bg-is-purple {
  background-color: var(--royal-blue);
  color: var(--white);
}

.section-new.meet-the-presenter {
  background-color: var(--royal-blue);
}

.section-new.bg-is-light-purple {
  background-color: #e0e3f966;
}

.section-new.overflow-hidden {
  overflow: hidden;
}

.section-new.large-pad {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-new.bg-is-black {
  background-color: var(--black-new);
  color: var(--white);
}

.section-new.has-arrow {
  background-color: var(--black-new);
  color: var(--white);
  padding-bottom: 0;
}

.section-new.bg-is-light-purple {
  color: var(--black);
  background-color: #bfc5f4;
}

.optin-subtext-wrap.is-mobile {
  display: none;
}

.mg-b-25 {
  margin-bottom: 25px;
}

.browser-block {
  text-align: center;
  border: 3px solid #2d2d2d;
  border-left-style: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
  margin-bottom: 146px;
  padding: 230px 28px 100px;
  display: flex;
  position: relative;
}

.browser-block.is-slider {
  background-color: #fff;
  margin-top: 60px;
  margin-left: 36px;
  padding-top: 160px;
}

.browser-block.is-webinar {
  background-color: #fff;
  margin-top: 60px;
  margin-bottom: 60px;
  padding-top: 160px;
}

.browser-block.is-playbook {
  background-color: #f7f3f1;
}

.mg-b-50 {
  margin-bottom: 50px;
}

.browser-inner {
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
}

.browser-inner.is-moble {
  display: none;
}

.browser-inner.is-slider {
  width: 100%;
  max-width: 94%;
}

.browser-inner.is-slider-2 {
  max-width: none;
}

.browser-inner.is-optin {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.max-w-820 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.browser-top {
  border-bottom: 3px solid var(--black);
  background-color: #f0f1fc;
  width: 100%;
  padding-top: 22px;
  padding-bottom: 22px;
  padding-left: 26px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.browser-top.is-opt-in {
  background-image: linear-gradient(90deg, #ffc826, #00e6dc 25%, #6471e3 75%, #e0e3f9);
}

.browser-bg {
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% 0% -40px -36px;
}

.browser-bg-left {
  border-top: 3px solid var(--black);
  border-right: 3px solid var(--black);
  border-left: 3px solid var(--black);
  background-color: var(--royal-blue);
  width: 36px;
  min-width: 36px;
  position: absolute;
  inset: -3px auto 0 -36px;
}

.browser-bg-left.is-opt-in {
  background-color: #bfc5f4;
  top: 28px;
}

.browser-bottom {
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  background-color: var(--royal-blue);
  width: 100%;
  height: 40px;
  position: absolute;
  inset: auto 0% -40px;
}

.browser-bottom.is-opt-in {
  background-color: #bfc5f4;
  margin-left: -11px;
  left: -1px;
}

.browser-bottom-left-corner {
  z-index: 2;
  border-bottom: 3px solid var(--black);
  border-left: 3px solid var(--black);
  background-color: var(--royal-blue);
  width: 36px;
  height: 41px;
  position: absolute;
  inset: auto auto -40px -36px;
}

.browser-bottom-left-corner.is-opt-in {
  background-color: #bfc5f4;
}

.browser-top-left-line {
  background-color: var(--black);
  width: 50px;
  height: 3px;
  display: block;
  position: absolute;
  top: 14px;
  left: -42px;
  transform: rotate(-45deg);
}

.browser-bottom-left-line {
  z-index: 10;
  border-bottom: 3px solid var(--black);
  background-color: var(--black);
  width: 50px;
  height: 3px;
  position: absolute;
  top: 19px;
  bottom: 0%;
  left: -9px;
  transform: rotate(-47deg);
}

.browser-bottom-right-line {
  z-index: 10;
  border-bottom: 3px solid var(--black);
  background-color: var(--black);
  width: 46.5px;
  height: 3px;
  position: absolute;
  inset: auto -13px -22px auto;
  transform: rotate(-58.5deg);
}

.browser-bg-left-new {
  border-right: 3px solid var(--black);
  width: 36px;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% -36px;
}

.sparkles-left {
  position: absolute;
  inset: -60px auto auto -158px;
}

.sparkles-right {
  position: absolute;
  inset: auto -72px -110px auto;
}

.browser-button-wrap {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.browser-button {
  border: 1px solid var(--black);
  box-shadow: none;
  color: #000;
  background-image: linear-gradient(to right, #ffc826cc, #00e6dccc 33%, #6471e3cc 66%, #e0e3f9cc);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  padding: 12px 6.875rem;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.browser-button.no-max-w {
  max-width: none;
}

.button-sparkles {
  position: absolute;
  inset: -30px -27px auto auto;
}

.demo-badge {
  position: absolute;
  inset: 95px 40px auto auto;
}

.centred-button-block {
  justify-content: center;
  align-items: center;
  display: flex;
}

.integrate-logo-block {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  margin-top: 70px;
  margin-bottom: 70px;
  display: flex;
}

.tools-logo {
  filter: invert();
  object-fit: contain;
  max-width: 200px;
  max-height: 45px;
}

.h2-large {
  letter-spacing: -.02em;
  font-size: 48px;
  line-height: 1.1875;
}

.h2-large.cap-every-word {
  text-transform: capitalize;
}

.inquire-link-2 {
  color: #000;
  text-align: center;
  padding-bottom: 4px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.63636;
  text-decoration: underline;
  display: block;
}

.inquire-link-2.is-new {
  color: #2d2d2d;
  border-bottom-style: solid;
  border-bottom-color: #2d2d2d;
}

.inquire-link-2.is-new-purple {
  border-bottom-style: solid;
  border-bottom-color: var(--royal-blue);
  color: var(--royal-blue);
}

.inquire-link-2.text-color-purple {
  color: var(--royal-blue);
}

.inquire-link-2.text-color-white, .inquire-link-2.is-white {
  color: var(--white);
}

.line-break {
  display: block;
}

.use-offer-graphic {
  width: 40px;
  position: absolute;
  inset: 50% -20px auto auto;
  transform: translate(0, -50%);
}

.blueprint-playbook-img {
  width: 45%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.blueprint-playbook-img.is-desktop {
  display: block;
}

.blueprint-playbook-img.is-tablet {
  display: none;
}

.footer-flex {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  display: flex;
}

.footer-button-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.footer-login-button {
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 17px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
}

.footer-login-button.no-mg {
  margin-bottom: 0;
}

.footer-login-button.is-black {
  color: #000;
  margin-bottom: 0;
}

.footer-login-button.is-black:hover {
  color: #ff5466;
}

.footer-login-button.is-thankyou {
  color: #000;
  border-bottom: 1px dotted #000;
  margin-bottom: 0;
}

.footer-login-button.is-thankyou:hover {
  color: #ff5466;
}

.h3-new {
  color: #2d2d2d;
  letter-spacing: -.5px;
  margin-top: 0;
  font-size: 2.2vw;
  line-height: 41px;
}

.text-color-blue {
  color: var(--royal-blue);
  font-weight: 700;
}

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

.h1-new {
  color: var(--black);
  letter-spacing: -1.2px;
  font-size: 60px;
  line-height: 72px;
}

.h1-new.is-opt-in {
  text-transform: capitalize;
}

.h1-new.align-center {
  text-align: center;
  margin-bottom: 45px;
}

.bold-text {
  letter-spacing: -1.2px;
}

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

.image-17 {
  position: absolute;
  inset: auto -4% -38% auto;
}

.image-18 {
  position: absolute;
  inset: -23% auto auto 1%;
}

.webinar-details {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 42px;
  display: flex;
}

.webinar-date {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--black);
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  display: flex;
}

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

.margin-bottom-0.margin-right-28 {
  margin-left: 28px;
  font-size: 26px;
  line-height: 31px;
}

.field-label {
  font-family: Lato, sans-serif;
  font-size: 22px;
  line-height: 26px;
}

.webinar-illu-left {
  max-width: 26%;
  position: absolute;
  inset: auto auto 17% -7%;
}

.webinar-illu-left.is-webinar.is-mobile {
  display: none;
}

.image-20 {
  max-width: 36%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.webinar-illu-right {
  position: absolute;
  inset: auto -8% -18% auto;
}

.webinar-illu-right.is-webinar.is-mobile {
  display: none;
}

.webinar-illu-right.is-webinar.is-desktop {
  display: block;
}

.about-webinar {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  display: flex;
}

.inside-box {
  height: 350px;
}

.h3-opt-in {
  color: var(--black);
  margin-top: 30px;
  margin-bottom: 18px;
  font-size: 21px;
  line-height: 25px;
}

.browser-slider {
  background-color: #ddd0;
  width: 100%;
  height: 100%;
  position: relative;
}

.browser-slider-mask {
  width: 100%;
  max-width: 730px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.browser-slider-mask.is-large {
  max-width: 810px;
}

.browser-slider-slide {
  width: 100%;
  max-width: 730px;
}

.browser-slider-slide.is-large {
  max-width: 810px;
}

.browser-slider-content-wrap {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  color: var(--black);
  justify-content: space-between;
  padding-bottom: 20px;
  display: flex;
}

.browser-left-col {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 286px;
  display: flex;
}

.browser-profile-img-wrap {
  aspect-ratio: 1;
  border: 3px solid #6471e3;
  border-radius: 100%;
  width: 100%;
  overflow: hidden;
}

.slider-profile-img {
  border: 3px solid #6471e3;
  border-radius: 100%;
  width: 100%;
  overflow: hidden;
}

.browser-slide-nav {
  display: none;
}

.browser-slide-arrow {
  background-color: #f7f3f1;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
  inset: 0% auto 0% 0%;
  transform: translate(0);
}

.browser-slide-arrow.is-right {
  inset: 0% 0% 0% auto;
}

.slider-name-wrap {
  color: var(--black);
  background-color: #f7f3f1;
  border: 2px solid #2d2d2d;
  border-radius: 8px;
  min-width: 210px;
  margin-top: 15px;
  margin-left: 15px;
  margin-right: 15px;
  padding: 12px 20px;
  font-size: 20px;
  line-height: 27px;
  position: relative;
  transform: translate(0);
  box-shadow: -8px 8px #6471e3;
}

.slider-name-wrap.is-special {
  background-color: #f0f1fc;
  max-width: 814px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  display: none;
}

.found-text {
  color: var(--royal-blue);
  font-weight: 700;
}

.browser-content-right {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-transform: capitalize;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.browser-content-right.no-capitalise {
  text-transform: none;
}

.h2-slider-browser {
  color: #6471e3;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 39px;
  line-height: 47px;
}

.h2-slider-browser.cap-every-word {
  text-transform: capitalize;
}

.hand-img {
  max-height: 35px;
  display: inline-block;
}

.hand-flex {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.arrow-icon-click {
  position: absolute;
  inset: auto 100px -30px auto;
}

.webinar-video {
  aspect-ratio: 736 / 422;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 736px;
  margin-bottom: 56px;
  display: flex;
  overflow: hidden;
}

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

.mg-t-56 {
  margin-top: 56px;
}

.voma-play {
  position: absolute;
}

.social-link-flex {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.inline-bold-purple {
  color: var(--royal-blue);
  font-weight: 700;
}

.form-input-label-wrap {
  width: 100%;
}

.opt-in-arrow-bubble {
  background-color: #f7f3f1;
  border-bottom: 2px solid #2d2d2d;
  border-left: 2px solid #2d2d2d;
  border-radius: 2px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -5px;
  left: 38%;
  transform: rotate(135deg)translate(-50%);
}

.div-block-5 {
  position: relative;
}

.browser-top-part {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 65px;
  position: relative;
  overflow: hidden;
}

.browser-middle-part {
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
  margin-top: -96px;
  margin-bottom: -98px;
  overflow: hidden;
}

.browser-bottom-part {
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  height: 43px;
  position: relative;
  overflow: hidden;
}

.div-block-6 {
  min-height: 600px;
  padding: 120px 30px 120px 60px;
  position: relative;
}

.div-block-7 {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.browser-main-middle {
  border-right: 3px solid var(--black);
  background-color: var(--white);
  min-height: 100px;
  margin-left: .34px;
  margin-right: .8px;
  position: relative;
}

.main-middle-part {
  border-right: 3px solid var(--black);
  background-color: #bfc5f4;
  width: 36.2px;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.div-block-8 {
  background-color: var(--black);
  width: 4px;
  height: 100%;
  margin-top: 27px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.browser-bottom-right-corner {
  width: 36px;
  height: 37px;
  position: absolute;
  inset: auto -2px -40px auto;
  overflow: hidden;
}

.browser-bottom-right-corner-line {
  border-bottom: 3px solid var(--black);
  background-color: #bfc5f4;
  width: 70px;
  height: 70px;
  margin-top: -42px;
  margin-left: -39px;
  transform: rotate(-46deg);
}

.browser-top-left-corner {
  border-right: 3px solid var(--black);
  width: 34px;
  height: 35px;
  position: absolute;
  inset: -3px auto auto -34px;
  overflow: hidden;
}

.browser-top-left-corner-line {
  border-bottom: 3px solid var(--black);
  background-color: #bfc5f4;
  width: 100px;
  height: 100px;
  margin-top: 18px;
  margin-left: -17px;
  transform: rotate(135deg);
}

.bonus-heading {
  color: var(--royal-blue);
  text-align: center;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 700;
  line-height: 25px;
}

.bonus-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
}

.bonus-star-left {
  position: absolute;
  inset: -33% auto auto 0%;
}

.bonus-star-right {
  position: absolute;
  inset: auto -3% -40% auto;
}

.h2-heading-offer {
  color: #2d2d2d;
  margin-bottom: 45px;
  font-size: 48px;
  line-height: 57px;
}

.h2-heading-offer.mg-t-60 {
  margin-top: 60px;
}

.h2-heading-offer.is-thankyou-2 {
  text-transform: capitalize;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.h2-heading-offer.is-thank-you {
  text-transform: capitalize;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  font-size: 60px;
  line-height: 1.2;
}

.flex-horizontal {
  justify-content: space-between;
  align-items: center;
}

.flex-horizontal.is-thank-you {
  min-height: 430px;
  margin-top: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.flex-horizontal.align-top {
  align-items: flex-start;
}

.col-65 {
  width: 55%;
}

.benefit-holder {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  color: var(--black);
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 26px;
  line-height: 31px;
  display: flex;
}

.benefit-holder.mg-b-24 {
  margin-bottom: 24px;
}

.voma-multi-link {
  color: var(--black);
  border-bottom: 1px dashed #000;
  max-width: 599px;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  text-decoration: none;
  display: inline-block;
}

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

.align-center.mg-t-50, .align-center.is-thank-you {
  margin-top: 50px;
}

.mg-t-36 {
  margin-top: 36px;
}

.right-side-image {
  object-fit: cover;
  width: 40%;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto auto;
}

.h1-heading-offer {
  color: #2d2d2d;
  text-align: center;
  margin-bottom: 45px;
  font-size: 48px;
  line-height: 57px;
}

.h1-heading-offer.mg-t-60 {
  margin-top: 60px;
}

.h1-heading-offer.is-capitalized {
  text-transform: capitalize;
}

.h1-heading-offer.is-thank-you {
  text-transform: capitalize;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  font-size: 60px;
  line-height: 1.2;
}

.h1-heading-offer.is-thank-you.mobile-text-aligned-left, .text-aligned-center {
  text-align: center;
}

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

.benefit-check {
  width: 26px;
  margin-top: 6px;
}

.free-trial-link {
  color: var(--black);
  border-bottom: 1px dashed #000;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  text-decoration: none;
  display: inline-block;
}

.video-embed {
  aspect-ratio: 16 / 9;
}

.sticky-vidoe-wrap {
  z-index: 10;
  background-color: var(--gold);
  border-radius: 20px;
  padding: 20px;
  position: sticky;
  inset: auto 20px 20px auto;
}

.html-embed-2 {
  margin-top: 50px;
}

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

.mg-t-16 {
  margin-top: 16px;
}

.benefit-list {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  display: flex;
}

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

.hide-desktop {
  display: none;
}

.image-23 {
  margin-top: -6px;
}

.embed-code {
  position: relative;
}

.html-embed-3, .rich-text-block-2 {
  position: absolute;
  inset: 5%;
}

.typeform-embed {
  justify-content: center;
  align-items: center;
  max-width: none;
  min-height: auto;
  margin-left: 60px;
  margin-right: 60px;
  padding-left: 0;
  padding-right: 0;
  display: block;
  position: static;
}

.html-embed-4 {
  justify-content: center;
  align-items: center;
  max-width: none;
  margin: 0 0 20px;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
  position: static;
  inset: 0% 5%;
}

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

.section-5 {
  min-height: 100px;
}

.div-block-10 {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

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

.lilac {
  color: var(--royal-blue);
  font-weight: 700;
}

.image-25 {
  max-width: 15%;
}

.div-block-11 {
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.italic-text-2 {
  font-size: 18px;
}

.paragraph-6 {
  margin-top: 10px;
}

.div-block-12 {
  background-color: var(--snow);
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.h1-title-new-large {
  letter-spacing: -.02em;
  margin-bottom: 24px;
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
}

.h1-title-new-large.is-white {
  color: #fff;
}

.h1-title-new-large.no-top-mg {
  margin-top: 0;
}

.h1-title-new-large.is-bold {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-weight: 700;
}

.h1-title-new-large.is-bold.plr {
  text-align: left;
}

.h1-title-new-large.is-optin {
  letter-spacing: -.02em;
  margin-top: 10px;
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
}

.section-hero-new {
  color: var(--white);
  background-color: #1e1a1c;
  padding-top: 20px;
  padding-bottom: 140px;
  display: block;
  position: relative;
}

.section-hero-new.is-pale-pink {
  background-color: var(--snow);
  display: block;
}

.section-hero-new.is-pale-pink.testimonial {
  display: none;
}

.section-hero-new.is-footer {
  background-color: #000;
  padding-top: 40px;
}

.section-hero-new.is-features {
  background-color: var(--royal-blue);
  min-height: 765px;
  margin-top: -128px;
  padding-top: 150px;
}

.section-hero-new.is-over-purple {
  margin-top: -183px;
}

.section-hero-new.is-purple {
  background-color: var(--royal-blue);
}

.section-hero-new.is-hidden {
  display: none;
}

.section-hero-new.integrations-section {
  margin-bottom: 40px;
}

.section-hero-new.bg-is-beige {
  background-color: #f7f3f1;
}

.section-hero-new.bg-is-beige.margin-neg {
  margin-top: -35px;
}

.section-hero-new.bg-is-beige.overflow-hidden {
  overflow: hidden;
}

.section-hero-new.bg-is-beige.is-special {
  padding-top: 120px;
}

.section-hero-new.bg-is-beige.p-t-100 {
  padding-top: 100px;
  padding-bottom: 170px;
}

.section-hero-new.bg-is-beige.above-image, .section-hero-new.bg-is-beige.above-image-1 {
  padding-bottom: 150px;
}

.section-hero-new.is-sell-more {
  background-color: #dfe3f9;
  overflow: visible;
}

.section-hero-new.is-backbone {
  background-color: #fff;
  margin-top: -30px;
}

.section-hero-new.z-index-1 {
  z-index: 1;
}

.section-hero-new.is-annoucnement-content {
  background-color: #e0e3f9;
  padding-top: 40px;
}

.section-hero-new.bg-is-purple {
  background-color: var(--royal-blue);
  color: var(--white);
}

.section-hero-new.meet-the-presenter {
  background-color: var(--royal-blue);
}

.section-hero-new.bg-is-light-purple {
  background-color: #e0e3f966;
}

.section-hero-new.overflow-hidden {
  overflow: hidden;
}

.section-hero-new.is-playbook-optin {
  background-color: #e0e3f9;
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-hero-new.is-ty {
  padding-top: 0;
}

.section-hero-new.no-top-pad {
  margin-top: -150px;
  padding-top: 0;
}

.subtext-1-new {
  letter-spacing: -.02em;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
}

.subtext-1-new.is-bold {
  font-weight: 700;
}

.subtext-1-new.is-center {
  text-align: center;
}

.purple-button-new {
  background-color: var(--royal-blue);
  box-shadow: none;
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 270px;
  min-height: 60px;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.purple-button-new.no-max-w {
  max-width: none;
}

.purple-button-new.no-max-w.margin-top {
  margin-top: 56px;
}

.purple-button-new.is-center {
  margin-left: auto;
  margin-right: auto;
}

.purple-button-new.is-wide {
  width: 100%;
  max-width: 476px;
}

.button-wrap-new {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  object-fit: fill;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 92%;
  max-width: 570px;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: static;
}

.button-wrap-new.show-on-mobile {
  display: none;
}

.outline-button-new {
  border: 1px solid var(--white);
  color: #fff;
  text-align: left;
  justify-content: center;
  align-items: center;
  width: 270px;
  min-height: 60px;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.outline-button-new.no-max-w {
  max-width: none;
}

.outline-button-new.no-max-w.margin-top {
  margin-top: 56px;
}

.outline-button-new.is-center {
  margin-left: auto;
  margin-right: auto;
}

.outline-button-new.is-wide {
  width: 100%;
  max-width: 476px;
}

.outline-button-new.is-black {
  border-color: var(--black);
  color: var(--black);
}

.testimonials-hero-wrap {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  margin-top: 100px;
  display: flex;
}

.subtext-small-new {
  opacity: 1;
  font-size: 16px;
  font-weight: 700;
}

.subtext-small-new.is-translucent {
  opacity: .8;
}

.hero-testimonial-flex {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-top: 40px;
  display: none;
}

.hero-testimonial-item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  flex: 1;
  display: flex;
}

.hero-testimonial-bubble {
  background-color: var(--white);
  color: var(--black);
  border-radius: 8px;
  height: 100%;
  padding: 32px 24px;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  position: relative;
  transform: translate(0);
  box-shadow: -6px 6px 5.4px #6471e34d;
}

.hero-testimonial-quote-mark {
  position: absolute;
  inset: 0% auto auto 24px;
  transform: translate(0, -50%);
}

.hero-testimonial-author-flex {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.hero-testimonial-name-flex {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  display: flex;
}

.hero-testimonial-img {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  transform: translate(0);
}

.hero-testimonial-name {
  color: #a5adef;
  font-weight: 700;
}

.hero-testimonial-website {
  color: #979797;
  letter-spacing: .02em;
  font-size: 13px;
}

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

.logos-block {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: center;
  flex-flow: column;
  display: flex;
}

.logos-flex {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: center;
  align-items: center;
  height: 40px;
  display: flex;
}

.home-logo {
  object-fit: contain;
  height: 100%;
}

.main-nav-black {
  border-bottom: 1px solid var(--white);
  background-color: #1e1a1c;
  padding-top: 22px;
  padding-bottom: 22px;
}

.dropdown-toggle-new {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--white);
  padding: 0 20px;
  display: flex;
}

.nav-dropdown-list-container {
  background-color: #2d2d2d;
  padding: 8px;
}

.nav-dropdown-list-container.w--open {
  background-color: #2d2d2d;
  padding: 8px;
  box-shadow: 0 4px 5.5px #0000001f;
}

.subtextt-new {
  color: #2d2d2d;
  text-align: center;
  letter-spacing: .33px;
  margin-bottom: 20px;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 26px;
  line-height: 1.21429;
}

.subtextt-new.white {
  color: #fff;
}

.subtextt-new._22 {
  font-size: 22px;
}

.subtextt-new.why-voma {
  margin-top: 30px;
  margin-bottom: 43px;
}

.subtextt-new.plan-2 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 24px;
}

.subtextt-new.align-left {
  font-size: 20px;
}

.subtextt-new.align-left.mg-b-30 {
  margin-bottom: 30px;
}

.subtextt-new.align-left.is-bold {
  font-weight: 700;
}

.subtextt-new.is-ty {
  font-size: 20px;
}

.subtext-new-1 {
  text-align: left;
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 26px;
  line-height: 1.21429;
}

.subtext-new-1.white {
  color: #fff;
}

.subtext-new-1._22 {
  font-size: 22px;
}

.subtext-new-1.why-voma {
  margin-top: 30px;
  margin-bottom: 43px;
}

.subtext-new-1.plan-2 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 24px;
}

.subtext-new-1.is-optin {
  color: var(--lavendar);
  font-weight: 700;
}

.subtext-new-1.is-centre {
  text-align: center;
}

.arrow-holder-new {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
  position: relative;
  top: 30px;
}

.container-new-1 {
  width: 92%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.container-new-1.no-top-pad {
  padding-bottom: 0;
}

.container-new-1.is-footer {
  padding-bottom: 60px;
}

.container-new-1.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.container-new-1.home-features {
  padding-bottom: 0;
}

.container-new-1.no-bot-pad {
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
  display: flex;
}

.container-new-1.large-pad {
  padding-top: 180px;
  padding-bottom: 150px;
}

.container-new-1.large-pad-1 {
  padding-top: 0;
  padding-bottom: 150px;
}

.container-new-1.pad-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.container-new-1.is-sell-more {
  padding-bottom: 0;
}

.container-new-1.is-playbook {
  padding-left: 140px;
  padding-right: 140px;
}

.container-new-1.is-bridge {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 30px;
}

.container-new-1.is-relative {
  position: relative;
}

.container-new-1.is-pricing {
  padding-top: 0;
  padding-bottom: 60px;
}

.container-new-1.is-pricing-table {
  padding-bottom: 0;
}

.flex-pricing {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.pricing-left {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 50%;
  display: flex;
}

.white-link {
  color: #fff;
  text-decoration: none;
}

.h1-blog {
  color: #fff;
  text-transform: capitalize;
  font-size: 60px;
  line-height: 72px;
}

.div-block-13 {
  z-index: 1;
  position: relative;
}

.button-blue {
  color: #fff;
  background-color: #6371e3;
  padding: 12px 70px;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
}

.button-blue.mg-t-25 {
  margin-top: 25px;
}

.button-blue.mg-b-30 {
  margin-bottom: 30px;
}

.button-blue.is-center {
  margin-left: auto;
  margin-right: auto;
}

.button-blue.is-mobile-version {
  display: none;
}

.button-blue.is-pot-ty {
  margin-right: 25px;
}

.button-blue.full-width {
  text-align: center;
  width: 70%;
  font-size: 20px;
}

.button-blue.is-thank-you {
  text-align: center;
  width: 100%;
  max-width: 476px;
}

.nav-menu-new {
  align-items: center;
  margin-left: auto;
  display: flex;
}

.nav-menu-new-inner {
  display: flex;
}

.nav-liinks-wrap-3 {
  grid-row-gap: 8px;
  flex-wrap: wrap;
  place-content: center flex-start;
  align-items: center;
  display: flex;
}

.nav-dropdown-3 {
  color: #2d2d2d;
  text-align: center;
  letter-spacing: .43px;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Alte Haas Grotesk, sans-serif;
  font-size: 14px;
  line-height: 31px;
  transition: all .3s;
}

.nav-dropdown-3:hover, .nav-dropdown-3.w--current {
  color: #ff5466;
}

.nav-dropdown-3.sign-in {
  letter-spacing: .25px;
  border: 1px solid #2d2d2d;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-left: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-dropdown-3.sign-in:hover {
  border-color: #ff5466;
}

.nav-dropdown-3.getstarted {
  color: #fff;
  letter-spacing: .25px;
  background-color: #2d2d2d;
  border: 1px solid #2d2d2d;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-dropdown-3.getstarted:hover {
  background-color: #ff5466;
  border-color: #ff5466;
}

.nav-dropdown-3.is-white {
  color: #fff;
}

.nav-dropdown-3.sign-in-white {
  color: #fff;
  letter-spacing: .25px;
  border: 1px solid #fff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-left: 20px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-dropdown-3.sign-in-white:hover {
  border-color: #ff5466;
}

.nav-dropdown-3.getstarted-white {
  color: #2d2d2d;
  letter-spacing: .25px;
  background-color: #fff;
  border: 1px solid #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11px;
  font-weight: 700;
  line-height: 35px;
}

.nav-dropdown-3.getstarted-white:hover {
  background-color: #ff5466;
  border-color: #ff5466;
}

.voma-menu-logo {
  display: none;
}

.filter-by {
  color: #1e1a1c;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 700;
}

.embed-dropdown-triangle {
  color: #2d2d2d;
  width: 17px;
  font-size: 0;
  line-height: 1;
  position: relative;
  left: 16px;
}

.nav-dropdown-list-new.w--open {
  background-color: #0000;
  padding-top: 8px;
  box-shadow: 0 4px 5.5px #0000001f;
}

.h1-title-new {
  letter-spacing: -.02em;
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1875;
}

.h1-title-new.is-white {
  color: #fff;
}

.h1-title-new.no-top-mg {
  margin-top: 0;
}

.h1-title-new.is-bold {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-weight: 700;
}

.h1-title-new.is-bold.plr {
  text-align: left;
}

.h1-title-new.is-optin {
  letter-spacing: -.02em;
  margin-top: 10px;
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
}

.h1-title-new.plr {
  text-align: center;
}

.pricing-block-2 {
  grid-row-gap: 40px;
  background-color: var(--white);
  border-radius: 9px;
  flex-direction: column;
  width: 50%;
  padding: 60px;
  display: flex;
  position: relative;
  box-shadow: 0 5px 25px -5px #00000017;
}

.pricing-block-2.is-purple {
  border: 3px solid var(--royal-blue);
  background-color: #f3f4fd;
}

.pricing-block-2.is-purple.width-full {
  width: auto;
}

.pricing-tabs-menu-2 {
  background-color: var(--white);
  border: 1px solid #000;
  border-radius: 35px;
  display: flex;
}

.pricing-tabs-menu-2.width-full {
  width: 100%;
  margin-top: 50px;
}

.video {
  border: 7px solid #2d2d2d;
}

.heading-9, .paragraph-7 {
  text-align: center;
}

.nav-arrow {
  position: absolute;
  inset: -8px auto auto 10px;
}

.button-wrap-2 {
  grid-column-gap: 24px;
  grid-row-gap: 12px;
  flex-flow: wrap;
  display: flex;
}

.button-wrap-2.show-flex-on-mobile {
  display: none;
}

.gradient-block {
  background-image: linear-gradient(90deg, #ffc826, #00e6dc 25%, #6471e3 59%, #e0e3f9);
  width: 100%;
  height: 20px;
}

.heading-list-item {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: center;
  padding-left: 20px;
  display: flex;
}

.heading-list-item.is-space-between {
  justify-content: space-between;
  align-items: flex-start;
}

.heading-list-item.align-centre {
  justify-content: center;
  align-items: center;
}

.heading-list-item.is-space-between-1 {
  justify-content: space-between;
  align-items: center;
}

.heading-list-item.align-top {
  align-items: flex-start;
}

.heading-list-item.align-start {
  grid-column-gap: 25px;
  align-items: flex-start;
}

.h3-heading-list {
  font-size: 33px;
  line-height: 1.33333;
}

.content-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
}

.content-wrap.is-centered {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
}

.content-wrap.full-height {
  height: 100%;
}

.black-button-new {
  background-color: var(--black);
  box-shadow: none;
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 270px;
  min-height: 66px;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.black-button-new.no-max-w {
  max-width: none;
}

.black-button-new.no-max-w.margin-top {
  margin-top: 56px;
}

.black-button-new.is-center {
  margin-left: auto;
  margin-right: auto;
}

.black-button-new.is-wide {
  width: 100%;
  max-width: 476px;
}

.black-button-new.hide-on-desktop {
  display: none;
}

.subheading-tag-text-wrap {
  background-color: var(--gold);
  border: 1px solid #000;
  padding: 8px 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.40909;
  position: relative;
}

.subheading-tag-block {
  position: relative;
}

.subheading-tag-gradient-bg {
  background-image: linear-gradient(90deg, #e0e3f9, #6471e3 30%, #00e6dc 68%, #ffc826);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 6px;
  right: 6px;
}

.new-section {
  background-color: #0000;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: block;
  position: relative;
}

.new-section.is-pale-pink {
  background-color: var(--snow);
  display: block;
}

.new-section.is-pale-pink.testimonial {
  display: none;
}

.new-section.is-footer {
  background-color: #000;
  padding-top: 40px;
}

.new-section.is-features {
  background-color: var(--royal-blue);
  min-height: 765px;
  margin-top: -128px;
  padding-top: 150px;
}

.new-section.is-over-purple {
  margin-top: -183px;
}

.new-section.is-purple {
  background-color: var(--royal-blue);
}

.new-section.is-hidden {
  display: none;
}

.new-section.integrations-section {
  margin-bottom: 40px;
}

.new-section.bg-is-beige {
  background-color: #0000;
}

.new-section.bg-is-beige.margin-neg {
  margin-top: -35px;
}

.new-section.bg-is-beige.overflow-hidden {
  overflow: hidden;
}

.new-section.bg-is-beige.is-special {
  padding-top: 120px;
  display: none;
}

.new-section.bg-is-beige.p-t-100 {
  padding-top: 100px;
  padding-bottom: 170px;
}

.new-section.bg-is-beige.above-image {
  padding-bottom: 150px;
  display: none;
}

.new-section.bg-is-beige.above-image-1 {
  padding-bottom: 150px;
}

.new-section.is-sell-more {
  background-color: #dfe3f9;
  overflow: visible;
}

.new-section.is-backbone {
  background-color: #fff;
  margin-top: -30px;
}

.new-section.z-index-1 {
  z-index: 1;
}

.new-section.is-annoucnement-content {
  background-color: #e0e3f9;
  padding-top: 40px;
}

.new-section.bg-is-purple {
  background-color: var(--royal-blue);
  color: var(--white);
}

.new-section.meet-the-presenter {
  background-color: var(--royal-blue);
}

.new-section.bg-is-light-purple {
  background-color: #e0e3f966;
}

.new-section.bg-is-light-purple.overflow-hidden.padding-top {
  background-color: #f7f3f1;
  padding-top: 100px;
}

.new-section.overflow-hidden {
  overflow: hidden;
}

.new-section.is-playbook-optin {
  background-color: #e0e3f9;
  padding-top: 40px;
  padding-bottom: 40px;
}

.new-section.is-ty, .new-section.no-top-pad {
  padding-top: 0;
}

.new-section.background-is-black {
  background-color: #1e1a1c;
}

.new-section.is-integration {
  background-color: #1e1a1c;
  padding-top: 126px;
  padding-bottom: 52px;
}

.new-section._3-steps {
  background-color: #f7f3f1;
  margin-top: 0;
  padding-top: 60px;
}

.new-section.has-border {
  border: 2px solid #000;
  margin-bottom: 0;
  padding-top: 140px;
  padding-bottom: 140px;
}

.new-section.is-pink {
  background-color: #bfc5f4;
}

.component-image-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.component-image {
  object-fit: contain;
  width: 600px;
}

.component-image-label-1 {
  object-fit: contain;
  width: 920px;
  position: absolute;
  inset: 15px auto auto 85px;
}

.component-image-1 {
  object-fit: contain;
  width: auto;
  margin-top: 20px;
  margin-left: 40px;
}

.component-image-2 {
  object-fit: contain;
  width: 78%;
  margin-left: 118px;
}

.offerstack-list {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  width: 100%;
  display: flex;
}

.offerstack-item {
  border-top-style: solid;
  border-top-width: 12px;
  border-top-color: var(--royal-blue);
  text-align: left;
  background-color: #f7f3f1;
  flex-flow: column;
  flex: 0 auto;
  width: calc(33.3333% - 26.6667px);
  padding: 30px;
  font-size: 18px;
  line-height: 1.22222;
  display: flex;
  box-shadow: 0 9px 14px -5px #0000001a;
}

.offerstack-item.is-highlighted {
  border-right: 1px solid var(--royal-blue);
  border-bottom: 1px solid var(--royal-blue);
  border-left: 1px solid var(--royal-blue);
  background-color: #f0f1fc;
}

.embed-arrow-icon {
  width: 30px;
  font-size: 0;
  line-height: 1;
}

.text-link {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--royal-blue);
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22222;
  display: flex;
}

.h4-style {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 33px;
  line-height: 1.21212;
}

.offerstack-item-text {
  margin-top: 40px;
  margin-bottom: 60px;
}

.fav-tool-block {
  background-image: linear-gradient(90deg, #ffc826, #00e6dc 30%, #6471e3 62%, #e0e3f9);
  margin-top: 40px;
  position: relative;
  left: -10px;
}

.fav-tool-content {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  background-color: var(--light-purple);
  border: 2px solid #000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 60px 60px 100px;
  display: flex;
  position: relative;
  bottom: 20px;
  left: 20px;
}

.fav-tool-logo-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.fav-tool-logo {
  object-fit: contain;
  max-width: 200px;
  max-height: 43px;
}

.fav-tool-logo.is-active-campaign {
  max-width: 280px;
}

.fav-tool-logo.is-zapier {
  max-width: 160px;
}

.reportin-img {
  object-fit: contain;
  width: 100%;
}

.reportin-img.is-mobile {
  display: none;
}

.new-container {
  width: 92%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.new-container.no-top-pad {
  padding-bottom: 0;
}

.new-container.is-footer {
  padding-bottom: 60px;
}

.new-container.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.new-container.home-features {
  padding-bottom: 0;
}

.new-container.no-bot-pad {
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
  display: flex;
}

.new-container.large-pad {
  padding-top: 180px;
  padding-bottom: 150px;
}

.new-container.large-pad-1 {
  padding-top: 0;
  padding-bottom: 150px;
}

.new-container.pad-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.new-container.is-sell-more {
  padding-bottom: 0;
}

.new-container.is-playbook {
  padding-left: 140px;
  padding-right: 140px;
}

.new-container.is-bridge {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 30px;
}

.new-container.is-relative {
  position: relative;
}

.new-container.is-pricing {
  padding-top: 0;
  padding-bottom: 60px;
}

.new-container.is-pricing-table {
  padding-bottom: 0;
}

.new-container.mobile-no-top-padding {
  padding-bottom: 10px;
}

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

.col-small {
  width: 40%;
  padding-left: 40px;
  padding-right: 40px;
}

.new-paragraph {
  font-size: 22px;
  line-height: 1.27273;
}

.new-paragraph.mg-t-12 {
  margin-top: 12px;
}

.h2-large-no-margin {
  letter-spacing: -.02em;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.1875;
}

.h2-large-no-margin.cap-every-word {
  text-transform: capitalize;
}

.h2-large-no-margin.centerd-on-mobile.mg-b-40 {
  margin-bottom: 40px;
}

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

.optin-grid {
  grid-column-gap: 72px;
  grid-row-gap: 72px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 50px;
}

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

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

.optin-image {
  object-fit: contain;
  width: 100%;
  height: 256px;
  margin-bottom: 20px;
}

.heading-h7 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.27778;
}

.side-image-with-shadow {
  object-fit: contain;
  width: 100%;
  box-shadow: 0 4px 30px #0003;
}

.image-27 {
  object-fit: contain;
  width: 100%;
  margin-top: 40px;
  margin-left: 20px;
}

.image-28 {
  object-fit: contain;
  margin-top: 20px;
  margin-left: 5px;
  position: static;
}

@media screen and (min-width: 1280px) {
  .subtext.align-left.extendbold {
    margin-bottom: 10px;
  }

  .subtext.is-ty._10x {
    color: var(--royal-blue);
  }

  .heading-h4.is-subtext-new {
    margin-top: 60px;
  }

  .heading-h4.is-subtext-new.plr {
    padding-left: 126px;
  }

  .section {
    margin-top: 0;
    margin-bottom: 10px;
    padding-top: 0;
  }

  .section.bg-is-beige {
    padding-top: 40px;
  }

  .section.is-backbone {
    margin-top: -30px;
  }

  .container {
    margin-top: 60px;
  }

  .container.is-sell-more {
    margin-top: 0;
  }

  .container.mobile-no-top-padding {
    margin-top: 40px;
    padding-bottom: 0;
  }

  .horizontal-flex-block-1.align-start {
    margin-bottom: 40px;
  }

  .paragraph-4 {
    padding-top: 20px;
  }

  .text-block-medium-2.complete-form {
    padding-top: 50px;
  }

  .feature-heading.is-centred {
    margin-top: 20px;
  }

  .button-features {
    font-size: 18px;
  }

  .button-features.full-width {
    font-size: 20px;
  }

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

  .announcement-text.max-w-820 {
    align-self: auto;
    padding-top: 10px;
  }

  .mg-bottom-0px {
    text-align: center;
  }

  .grid-2-columns.is-opt-in {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .split-content.hero-v2-left.is-center {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 20px;
  }

  .max-width-280px {
    max-width: 280px;
  }

  .button-features-outlined {
    font-size: 18px;
  }

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

  .link-block-2 {
    color: var(--black);
    text-decoration: none;
  }

  .link-block-3 {
    color: #201f1f;
    text-decoration: none;
  }

  .link-block-4, .link-block-5, .link-block-6, .link-block-7, .link-block-8 {
    text-decoration: none;
  }

  .link-block-9 {
    color: #201f1f;
    text-decoration: none;
  }

  .heading-6 {
    color: var(--black);
    text-decoration: none;
  }

  .text-block-13 {
    color: #6471e3;
    margin-top: 20px;
    margin-bottom: 24px;
    font-size: 42px;
    font-weight: 700;
    line-height: 52px;
  }

  .input-scoop.large {
    -webkit-text-stroke-color: var(--black);
    border-radius: 14px;
  }

  .popup-wrapper.preview-page {
    z-index: 9999999;
    display: none;
  }

  .text-color-off-black.margin-vertical {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .text-color-off-black.margin-vertical.form {
    font-size: 19px;
    line-height: 1.4;
  }

  .h3-new {
    font-size: 28px;
  }

  .text-color-blue {
    font-weight: 700;
  }

  .grid-3-col {
    grid-column-gap: 72px;
    grid-row-gap: 72px;
  }

  .h3-opt-in {
    font-size: 21px;
  }

  .bonus-text, .h2-heading-offer {
    text-align: center;
  }

  .image-23 {
    margin-top: 0;
    padding-top: 0;
  }

  .typeform-embed {
    max-width: 1200px;
    min-height: auto;
    margin-left: auto;
    margin-right: auto;
    position: static;
  }

  .html-embed-4 {
    margin-bottom: 0;
    position: static;
  }

  .top-heading {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .underline {
    text-decoration: underline;
  }

  .italic {
    font-style: italic;
  }

  .lilac {
    color: var(--royal-blue);
    font-weight: 700;
  }

  .image-25 {
    max-width: 15%;
  }

  .div-block-11 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

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

  .italic-text-2 {
    font-size: 20px;
  }

  .section-hero-new {
    padding-top: 20px;
  }

  .section-hero-new.bg-is-beige {
    padding-top: 40px;
  }

  .section-hero-new.is-backbone {
    margin-top: -30px;
  }

  .subtextt-new.align-left.extendbold {
    margin-bottom: 10px;
  }

  .subtextt-new.is-ty._10x {
    color: var(--royal-blue);
  }

  .container-new-1.is-sell-more {
    margin-top: 0;
  }

  .button-blue.full-width {
    font-size: 20px;
  }

  .h1-title-new.plr {
    text-align: center;
  }

  .heading-9 {
    font-weight: 700;
  }

  .paragraph-7 {
    font-size: 21px;
  }

  .new-section.bg-is-beige {
    padding-top: 40px;
  }

  .new-section.is-backbone {
    margin-top: -30px;
  }

  .new-container.is-sell-more {
    margin-top: 0;
  }

  .new-container.mobile-no-top-padding {
    margin-top: 40px;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 1440px) {
  .heading-h4.is-subtext-new.plr {
    margin-top: 20px;
  }

  .section {
    padding-top: 20px;
  }

  .section.is-backbone {
    margin-top: -30px;
  }

  .text-block-medium-2.complete-form {
    color: #6471e3;
    text-align: center;
  }

  .feature-heading.is-centred {
    margin-top: 20px;
  }

  .button-features {
    float: none;
    clear: none;
    text-align: left;
    margin-bottom: 20px;
  }

  .button-features.full-width {
    margin-bottom: 0;
  }

  .pricing-block.is-purple {
    flex: none;
    display: block;
  }

  .pricing-pane.is-monthly {
    flex-direction: row;
  }

  .button-red-2 {
    margin-top: 20px;
  }

  .partner-sub.is-creators.free-included {
    font-size: 24px;
  }

  .inner-container.is-features {
    margin-bottom: 60px;
  }

  .border-radius-18px.overflow-hidden.shadow, .border-radius-36px.overflow-hidden.shadow {
    overflow: hidden;
  }

  .grid-2-columns.form {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .grid-2-columns.contact-v1 {
    grid-column-gap: 80px;
    grid-template-columns: 1fr 1.2fr;
  }

  .grid-2-columns.is-opt-in {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .card.content-left.testimonial-v1 {
    padding: 68px 56px;
  }

  .triangle-top-left.bg-shape.opacity-8 {
    background-image: linear-gradient(315deg, #0000 50%, #6371e3 50%);
  }

  .split-content-wrapper.mg-t-60 {
    margin-top: 60px;
  }

  .button-line-primary-2 {
    background-color: var(--light-coral);
  }

  .blog-title.is-black {
    text-decoration: none;
  }

  .heading-5 {
    color: var(--black);
    text-decoration: none;
  }

  .link-block-2, .link-block-3 {
    text-decoration: none;
  }

  .text-block-12 {
    color: #201f1f;
  }

  .link-block-4, .link-block-5, .link-block-6, .link-block-7 {
    text-decoration: none;
  }

  .link-block-8 {
    color: var(--black);
    text-decoration: none;
  }

  .link-block-9 {
    color: #000;
    text-decoration: none;
  }

  .text-block-13 {
    color: var(--royal-blue);
    margin-top: 20px;
    margin-bottom: 24px;
    font-size: 42px;
    font-weight: 700;
    line-height: 52px;
  }

  .link-block-10 {
    color: #201f1f;
    text-decoration: none;
  }

  .link-block-11, .link-block-12 {
    text-decoration: none;
  }

  .paragraph-new {
    text-transform: none;
  }

  .text-color-blue {
    font-weight: 700;
  }

  .image-21 {
    max-width: 100%;
  }

  .image-22 {
    width: auto;
    max-width: 100%;
  }

  .typeform-embed {
    min-height: auto;
  }

  .lilac {
    color: var(--royal-blue);
    font-weight: 700;
  }

  .image-25 {
    max-width: 15%;
  }

  .div-block-11 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

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

  .italic-text-2 {
    font-size: 20px;
  }

  .section-hero-new {
    padding-top: 20px;
  }

  .section-hero-new.is-backbone {
    margin-top: -30px;
  }

  .button-blue {
    float: none;
    clear: none;
    text-align: left;
    margin-bottom: 20px;
  }

  .button-blue.full-width, .h1-title-new.plr {
    margin-bottom: 0;
  }

  .new-section.is-backbone {
    margin-top: -30px;
  }
}

@media screen and (min-width: 1920px) {
  .subtext.align-left {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 400;
  }

  .subtext.align-left.extendbold {
    font-weight: 700;
  }

  .section {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
  }

  .section.is-backbone {
    margin-top: -30px;
  }

  .container.mobile-no-top-padding {
    padding-bottom: 10px;
  }

  .highlights-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: center;
  }

  .paragraph-4 {
    line-height: 30px;
  }

  .feature-heading.is-centred {
    margin-top: 20px;
    padding-left: 0;
  }

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

  .button-features.full-width {
    margin-bottom: 0;
  }

  .pricing-tabs {
    flex-direction: column;
  }

  .pricing-block.is-purple {
    align-items: stretch;
  }

  .pricing-pane.is-yearly {
    justify-content: center;
  }

  .pricing-pane.is-monthly {
    flex: none;
    justify-content: center;
    position: static;
  }

  .pricing-list {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .pricing-tabs-content {
    justify-content: center;
    align-items: center;
    display: block;
  }

  .button-red-2 {
    margin-top: 20px;
    padding-top: 6px;
  }

  .mg-bottom-0px {
    padding-top: 0;
    padding-left: 0;
  }

  .bg-split.right.hero-v2 {
    max-width: 40%;
  }

  .section-4 {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .section-4.hero-v2 {
    padding-top: 90px;
  }

  .section-4.hero-v6 {
    padding-top: 100px;
    padding-bottom: 112px;
  }

  .principle-box {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .text-block-15 {
    color: var(--royal-blue);
    font-size: 24px;
    line-height: 26px;
  }

  .text-block-16 {
    font-size: 20px;
  }

  .html-embed-2 {
    margin-top: 0;
    padding-bottom: 20px;
  }

  .image-23 {
    margin-top: -3px;
  }

  .typeform-embed {
    min-height: auto;
  }

  .html-embed-4 {
    margin-top: 10px;
  }

  .lottie-animation {
    text-align: center;
    min-width: auto;
    max-width: 150px;
    min-height: auto;
    max-height: 150px;
  }

  .image-25 {
    max-width: 15%;
    display: inline-block;
  }

  .div-block-11 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

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

  .italic-text-2 {
    font-size: 20px;
  }

  .div-block-12 {
    background-color: #fff;
    max-width: 1400px;
  }

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

  .section-hero-new {
    margin-top: 0;
    padding-top: 20px;
  }

  .section-hero-new.is-backbone {
    margin-top: -30px;
  }

  .subtextt-new.align-left {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 400;
  }

  .subtextt-new.align-left.extendbold {
    font-weight: 700;
  }

  .container-new-1.mobile-no-top-padding {
    padding-bottom: 40px;
  }

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

  .button-blue.full-width {
    margin-bottom: 0;
  }

  .new-section.is-backbone {
    margin-top: -30px;
  }

  .new-container.mobile-no-top-padding {
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 991px) {
  .navbar {
    display: none;
  }

  .container-full {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    display: block;
    position: relative;
  }

  .brand-logo {
    z-index: 1;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    position: static;
    top: 0;
    left: auto;
  }

  .navmenu {
    display: none;
  }

  .nav-link {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.5;
    text-decoration: none;
  }

  .section-hero {
    padding-bottom: 50px;
  }

  .hero-content-wrapper {
    flex-wrap: wrap;
    align-content: flex-start;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content-wrapper.is-concierge-migration {
    flex-direction: column;
    margin-bottom: 0;
  }

  .hero-content-box {
    width: 100%;
    padding-top: 0;
  }

  .hero-content-box.is-concierge-migration {
    grid-row-gap: 49px;
    width: 100%;
  }

  .hero-content-box.is-partners {
    grid-row-gap: 49px;
    text-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    display: block;
  }

  .hero-img-box {
    display: none;
  }

  .hero-img-box.is-concierge-migration-desktop {
    order: -1;
    justify-content: center;
    width: 100%;
    display: none;
  }

  .hero-img-box.is-concierge-migration-mobile {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .hero-img-box.is-partners {
    justify-content: center;
    width: 100%;
    display: block;
  }

  .subtext.align-left.extendbold {
    margin-bottom: 0;
  }

  .section-built {
    margin-top: 0;
  }

  .title-box.center.width, .title-box.center.width-2, .title-box.center.width-full {
    width: 90%;
  }

  .is-wrapper {
    flex-wrap: wrap;
    align-content: flex-start;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .is-img-box, .is-content-box {
    width: 100%;
  }

  .di-logo-box {
    width: 90%;
  }

  .nd-box {
    flex-wrap: wrap-reverse;
    align-content: flex-start;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .nd-content-box {
    width: 100%;
    margin-top: 0;
  }

  .nd-img-box {
    width: 70%;
    margin-bottom: 70px;
    margin-left: auto;
    margin-right: auto;
  }

  .wwr-wrapper {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .wwr-box {
    flex-wrap: wrap;
    align-content: flex-start;
  }

  .wwr-content-box {
    width: 100%;
    margin-top: 0;
  }

  .wwr-img-box {
    width: 100%;
  }

  .testimonial-bubble {
    width: 100%;
    position: relative;
    inset: 70px 0 0;
  }

  .tc-wrapper {
    flex-wrap: wrap;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .tc-img-box {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .tc-content-box, .footer-form-inner {
    width: 100%;
  }

  .footer-link-wrapper {
    text-align: center;
    flex-wrap: wrap;
    align-content: flex-start;
  }

  .footer-link-box {
    display: none;
  }

  .footer-copyright-box {
    width: 100%;
  }

  .footer-social-box {
    width: 100%;
    margin-top: 20px;
  }

  .social-btn {
    margin-right: 20px;
  }

  .image-2 {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .is-title-box-desktop {
    display: none;
  }

  .is-title-box-inner {
    text-align: center;
  }

  .si-title-box-mobile {
    margin-bottom: 50px;
    display: block;
  }

  .tc-title-box-desktop {
    display: none;
  }

  .tc-title-box-inner {
    text-align: center;
  }

  .tc-title-box-mobile {
    margin-bottom: 50px;
    display: block;
  }

  .navbar-mobile {
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
    position: sticky;
    top: 0;
  }

  .navbar-mobile.is-purple {
    background-color: var(--royal-blue);
  }

  .menu-button {
    float: left;
    background-color: #fff;
    background-image: url('../images/mobile-menu.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: auto;
    width: 60px;
    height: 60px;
    position: relative;
  }

  .menu-button.w--open {
    z-index: 10;
    background-color: #fff;
    background-image: url('../images/menu-close.svg');
    position: fixed;
    top: 30px;
    left: 20px;
  }

  .menu-button.is-purple {
    background-color: #6471e300;
    background-image: url('../images/mobile-menu-svg.svg');
  }

  .mobile-menu-icon {
    display: none;
  }

  .navmenu-mobile2 {
    z-index: 9;
    background-color: #fff;
    width: 100%;
    padding-top: 100px;
    padding-left: 10px;
    padding-right: 10px;
    display: none;
    position: fixed;
    inset: 0%;
  }

  .navmenu-mobile2.is-purple {
    background-color: var(--royal-blue);
  }

  .nav-mobile-btn-box {
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    position: absolute;
    inset: auto 0% 0%;
  }

  .button-dark {
    border-radius: 5px;
    min-height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
  }

  .button-dark-border {
    color: #2d2d2d;
    background-color: #fff;
    border: 1px solid #2d2d2d;
    border-radius: 5px;
    min-height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
  }

  .button-dark-border:hover {
    color: #ff5466;
    background-color: #fff;
    border-color: #ff5466;
  }

  .button-dark-border.margin-bottom {
    margin-bottom: 10px;
  }

  .brand-logo-menu {
    z-index: 1;
    margin-top: 30px;
    top: 0%;
  }

  .brand-logo-menu.is-white {
    background-image: url('../images/VOMA.svg');
    width: 99px;
    margin-left: -50px;
  }

  .legal-content-link-box, .legal-dropdown {
    display: none;
  }

  .section-pricing-banner.background-is-black {
    margin-bottom: 0;
    padding-bottom: 74px;
  }

  .pricing-banner-wrapper {
    width: 90%;
  }

  .button-red.is-concierge-migration {
    text-align: center;
    width: 100%;
  }

  .pf-wrapper {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .pf-box {
    flex-wrap: wrap;
    align-content: flex-start;
  }

  .pf-item {
    width: 100%;
  }

  .pf-item.second-last {
    margin-bottom: 130px;
  }

  .section-faq {
    padding-bottom: 140px;
  }

  .faq-wrapper {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-box {
    flex-wrap: wrap;
  }

  .faq-img-box {
    width: 60%;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-queston-box {
    width: 100%;
  }

  .faq-question {
    width: 90%;
    display: inline-block;
  }

  .hitw-wrapper {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .hitw-box {
    flex-wrap: wrap;
    align-content: flex-start;
  }

  .hitw-img-box {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .hitw-content-box {
    width: 100%;
  }

  .ef-box {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

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

  .ef-item-trigger {
    cursor: pointer;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .features-item {
    width: 100%;
    margin-bottom: 20px;
  }

  .features-item-title {
    width: 90%;
    display: inline-block;
  }

  .ef-item-arrow {
    margin-bottom: 20px;
    display: block;
    position: static;
  }

  .heading-h4 {
    font-size: 26px;
  }

  .heading-h4.is-subtext-new.plr {
    text-align: center;
    padding-left: 0;
  }

  .why-wrapper {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .why-voma {
    width: 100%;
  }

  .why-img {
    width: 20%;
    right: 60px;
  }

  .features-wrapper {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .pagination-btn-text {
    display: none;
  }

  .f-slider-right-arrow {
    width: 50px;
  }

  .f-slider-left-arrow {
    width: 50px;
    padding-left: 0;
  }

  .icon-right, .icon-left {
    margin-left: auto;
    margin-right: auto;
  }

  .menu-inner-container {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .accordion-trigger-wrapper {
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .section {
    padding-top: 10px;
  }

  .section.is-backbone {
    margin-top: -50px;
  }

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

  .container.no-top-pad {
    max-width: none;
    padding-top: 60px;
    position: static;
  }

  .container.large-pad {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .page-head.is-bold {
    padding-bottom: 10px;
  }

  .page-head.is-optin {
    text-align: center;
  }

  .container-small.no-bot-mg {
    padding-top: 40px;
  }

  .container-small.hero {
    padding-top: 10px;
  }

  .horizontal-flex-block.is-five-things {
    flex-flow: column;
  }

  .primary-button.wide-mobile-1 {
    width: 100%;
    max-width: none;
  }

  .primary-button.is-center {
    max-width: 100%;
  }

  .main-video {
    min-height: 450px;
  }

  .section-below-video.is-pale-pink {
    margin-top: -300px;
  }

  .container-below-video {
    padding-top: 294px;
  }

  .col-48 {
    width: 100%;
  }

  .col-48.first {
    order: -1;
  }

  .difference-block {
    min-height: 250px;
  }

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

  .horizontal-flex-block-1.bot-mg-100 {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .horizontal-flex-block-1.align-top {
    flex-wrap: wrap;
  }

  .horizontal-flex-block-1.mg-40 {
    margin-top: 40px;
  }

  .horizontal-flex-block-1.bt-mg-0 {
    flex-direction: column;
    margin-bottom: 0;
  }

  .horizontal-flex-block-1.align-start {
    flex-direction: column;
  }

  .content-block.mg-24 {
    margin-right: 24px;
  }

  .content-block.is-integrations {
    max-width: 100%;
  }

  .paragraph-2.is-white {
    max-width: none;
  }

  .image-right {
    margin: 24px auto;
  }

  .image-right.is-relative {
    position: static;
  }

  .image-right.hide-mb {
    display: none;
  }

  .image-right.hide-lg {
    display: block;
  }

  .image-right.is-produuct {
    width: 100%;
  }

  .image-left {
    margin: 24px auto;
  }

  .col-54 {
    width: 100%;
  }

  .integrate-logo {
    margin-left: 16px;
    margin-right: 16px;
  }

  .highlights-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: center;
  }

  .resources-card.is-white {
    width: 48%;
  }

  .resources-card.is-white-1 {
    width: 100%;
  }

  .col-45 {
    width: 100%;
    margin-bottom: 24px;
  }

  .col-45.first {
    order: -1;
  }

  .features-section-image {
    max-height: none;
  }

  .features-content.is-space-between-1 {
    flex-direction: column;
  }

  .mobile-integrations-filter-btn {
    color: #383d3d;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    text-decoration: none;
    display: flex;
  }

  .integrations-cards-block {
    margin-top: 0;
  }

  .mobile-filter-title {
    margin-bottom: 0;
    margin-right: 10px;
  }

  .filter-search-icon {
    width: 23px;
    height: 24px;
  }

  .integrations-main-block {
    display: block;
  }

  .filter-down-arrow {
    line-height: 0;
  }

  .filter-block {
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .integrations-card {
    padding: 13px;
  }

  .filter-dropdown-btn {
    align-items: center;
    display: flex;
  }

  .filter-close-icon {
    width: 18px;
    height: 18px;
    display: none;
  }

  .integrations-filter-content {
    width: 100%;
    margin-right: 0;
    overflow: hidden;
  }

  .integrations-block {
    flex-direction: column;
  }

  .logo-card {
    max-width: 200px;
    height: 200px;
    margin-bottom: 32px;
  }

  .inetgration-content-block {
    max-width: none;
    margin-left: 0;
  }

  .paragraph-4 {
    padding-top: 20px;
  }

  .paragraph-4.is-cta {
    max-width: none;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .paragraph-4.text-white {
    margin-bottom: 0;
    padding-top: 0;
  }

  .paragraph-4.text-white.hide {
    display: none;
  }

  .cta-block {
    flex-direction: column;
    max-width: none;
  }

  .inetgrations-content-wrap {
    max-width: 100%;
  }

  .paragraph-large.is-white {
    max-width: none;
  }

  .h1-concierge-migration-2 {
    text-align: center;
    width: 100%;
  }

  .h1-concierge-migration-1 {
    text-align: center;
    margin-bottom: 0;
  }

  .concierge-cta-block {
    margin-top: 0;
  }

  .concierge-cta-block.hide-mb {
    display: none;
  }

  .concierge-cta-block.hide-desktop {
    margin-top: 30px;
    display: block;
  }

  .text-is-blue.mg-t-0 {
    margin-left: 10px;
  }

  .button-features.is-mobile-version {
    display: block;
  }

  .button-features.is-desktop-version {
    display: none;
  }

  .offers-box {
    padding: 30px;
  }

  .center-block.max-w-750 {
    width: auto;
  }

  .offers-illustration {
    top: -16%;
    right: 11%;
  }

  .mg-t-14 {
    margin-top: 0;
  }

  .mg-t-14.hide-mb {
    display: none;
  }

  .mg-t-14.hide-lg {
    display: block;
  }

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

  .mb-icon-holder {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .flex-row.is-seven-step {
    text-align: center;
    flex-direction: column;
  }

  .flex-row.is-footer-terms {
    order: -1;
    justify-content: space-between;
    width: 100%;
  }

  .flex-row.is-optin-hero {
    flex-direction: column;
  }

  .flex-row.is-seven-step-2 {
    text-align: center;
    flex-direction: column;
  }

  .announcement-text.max-w-820 {
    display: none;
  }

  .announcement-text.max-w-820.mobile {
    display: block;
  }

  .playbook-btn-subtext.is-desktop {
    display: none;
  }

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

  .blueprint-img.is-desktop {
    display: none;
  }

  .blueprint-img.is-tablet {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .downloadable-text {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 21px;
    display: block;
  }

  .playbook-line {
    display: block;
    position: absolute;
    inset: auto 0% -50px auto;
  }

  .bridge-line {
    display: none;
  }

  .bridge-stars {
    margin-left: auto;
    margin-right: auto;
    display: none;
  }

  .passes-img {
    display: none;
  }

  .presenter-img {
    height: auto;
  }

  .text-size-medium.text-color-white.hide-mobile {
    display: none;
  }

  .text-size-medium.text-color-white.hide-desktop, .show-on-mobile {
    display: block;
  }

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

  .vsl-form-block {
    font-size: 20px;
  }

  .vsl-form-heading {
    font-size: 21px;
  }

  .pricing-tabs.width-half {
    width: auto;
    margin-bottom: 45px;
  }

  .pricing-banner-wrapper-2 {
    width: 90%;
  }

  .pricing-table-heading, .pricing-table-heading-2 {
    font-size: 18px;
  }

  .pricing-table-cell {
    font-size: 15px;
  }

  .pricing-table-cell.is-kajabi, .pricing-table-cell.is-clickfunnel, .pricing-table-cell.is-samcart, .pricing-table-cell.is-thrivecart, .pricing-table-cell.is-gumroad {
    min-width: 120px;
  }

  .embed-table-check-icon {
    width: 16px;
  }

  .mobile-vs-block {
    display: flex;
  }

  .alignment-nav-mobile {
    width: 60px;
    height: 60px;
    padding: 0;
  }

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

  .hero-content-wrapper-2 {
    flex-wrap: wrap;
    align-content: flex-start;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .button-dark-2 {
    border-radius: 5px;
    min-height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
  }

  .need-help-block {
    padding-bottom: 0;
  }

  .banner-image {
    width: 100%;
    margin-top: 40px;
    position: relative;
    right: 0%;
  }

  .need-help-content {
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: none;
  }

  .banner-arrow {
    display: none;
  }

  .inner-container._541px.max-width-100-tablet {
    max-width: 100%;
  }

  .mg-top-large-v2 {
    margin-top: 60px;
  }

  .mg-bottom-large-v5 {
    margin-bottom: 63px;
  }

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

  .grid-3-columns._3-icon-list {
    grid-row-gap: 16px;
    grid-template-columns: auto;
    justify-content: center;
  }

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

  .grid-3-columns._1-col-tablet.gap-row-64px {
    grid-row-gap: 40px;
  }

  .grid-3-columns.image-center---icons-sides {
    grid-row-gap: 80px;
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .position-relative.z-index-1.content-v7 {
    padding-bottom: 48px;
  }

  .mg-top-large {
    margin-top: 48px;
  }

  .grid-2-columns._2-col-mbl._1-col-mbp {
    width: 100%;
  }

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

  .grid-2-columns.contact-v1 {
    grid-row-gap: 80px;
    grid-template-columns: 1fr;
  }

  .square-icon.mg-right-24px.mg-bottom-16px-t {
    margin-bottom: 16px;
    margin-right: 0;
  }

  .card.is-features {
    flex-direction: column;
    padding: 52px 32px 58px;
  }

  .card.content-left.testimonial-v1 {
    padding: 63px 40px 45px;
  }

  .card.form-v4 {
    min-height: 571px;
    padding-top: 64px;
    padding-bottom: 73px;
  }

  .card.form {
    min-height: 772px;
  }

  .card.form-v3 {
    min-height: 782px;
  }

  .card.form-v3.bg-blue {
    border-style: solid;
    border-color: #d9d9d9;
  }

  .cta-card {
    flex-direction: column-reverse;
    padding: 73px 62px 230px;
  }

  .split-content.content-v7-left {
    margin-bottom: 80px;
    margin-right: auto;
  }

  .split-content.content-v7-right {
    max-width: 100%;
  }

  .split-content.content-v6-left {
    max-width: 100%;
    margin-right: 0;
  }

  .split-content.content-v6-right {
    margin-bottom: 80px;
    margin-right: auto;
  }

  .split-content.hero-v2-left {
    text-align: center;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin-bottom: 140px;
    margin-right: 0;
    display: flex;
  }

  .split-content.hero-v2-left.is-center {
    width: auto;
    max-width: none;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  .split-content.hero-v2-right {
    min-width: auto;
    max-width: 100%;
  }

  .split-content.content-v2-left {
    margin-right: 0;
  }

  .split-content.content-v2-right {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 80px;
  }

  .split-content.hero-v6-right {
    min-width: auto;
    max-width: 100%;
  }

  .split-content.hero-v6-left {
    max-width: 100%;
    margin-bottom: 100px;
    margin-right: 0;
  }

  .split-content.hero-v6-left.is-webinar-reg {
    width: 100%;
  }

  .split-content.hero-v2-right---new {
    min-width: auto;
    max-width: 100%;
  }

  .triangle-bottom-right.bg-secondary-1.cta-v2 {
    width: 20%;
    padding-top: 20%;
    inset: auto 20% 0% auto;
  }

  .triangle-bottom-right.secondary-2.hero-v2 {
    width: 32%;
    padding-top: 32%;
  }

  .square.bg-secondary-1.cta-v2 {
    width: 20%;
    padding-top: 20%;
    inset: auto auto 0% 20%;
  }

  .square.bg-secondary-1.landing-page-v2-form {
    width: 38%;
    padding-top: 38%;
  }

  .square.bg-primary-1.hero-v2-square-2 {
    width: 34%;
    margin-bottom: 0;
    padding-top: 34%;
  }

  .square.bg-primary-1.hero-v2-square-1 {
    width: 29%;
    padding-top: 29%;
  }

  .circle.bg-secondary-3.cta-v2-circle-2 {
    width: 20%;
    padding-top: 20%;
    inset: auto 12% 0% auto;
  }

  .circle.bg-secondary-3.cta-v2-circle-1 {
    width: 20%;
    padding-top: 20%;
    bottom: -19%;
    right: auto;
  }

  .circle.bg-secondary-3.cta-v2-circle-3 {
    width: 20%;
    padding-top: 20%;
    inset: auto auto 0% 10%;
  }

  .circle.bg-secondary-3.landing-page-v2-form {
    width: 44%;
    padding-top: 44%;
    top: 0%;
    left: -30%;
  }

  .circle.bg-secondary-3.hero-v2-circle-1 {
    display: none;
  }

  .circle.bg-primary-1.top-left {
    top: -34px;
  }

  .position-absolute.bg-dots.top-right {
    top: -31px;
  }

  .max-width-660px-tablet {
    max-width: 660px;
  }

  .max-width-660px-tablet.center-element {
    margin-left: auto;
    margin-right: auto;
  }

  .triangle-top-left.secondary-2.landing-page-v2-form {
    width: 38%;
    padding-top: 38%;
  }

  .split-content-wrapper {
    flex-direction: column;
  }

  .split-content-wrapper.direction-reverse-tablet {
    flex-direction: column-reverse;
  }

  .max-width-454px {
    max-width: 454px;
  }

  .bg-split.right {
    inset: auto 0% 0%;
    max-width: 100%;
    min-height: 40%;
    inset: auto 0% 0%;
  }

  .bg-split.right.hero-v2 {
    max-width: 100%;
    min-height: 40%;
    inset: auto 0% 0%;
  }

  .max-width-499px {
    max-width: 454px;
  }

  .triangle-bottom-left.hero-v2 {
    width: 30%;
    margin-bottom: 0;
    margin-left: 0;
    padding-top: 30%;
  }

  .max-width-484px {
    max-width: 454px;
  }

  .divider {
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .divider._50px, .divider._64px {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .heading-h3-size {
    font-size: 22px;
  }

  .section-4 {
    padding-top: 115px;
    padding-bottom: 115px;
  }

  .section-4.hero-v2 {
    padding-top: 60px;
    padding-bottom: 128px;
  }

  .section-4.hero-v6 {
    padding-top: 60px;
    padding-bottom: 108px;
  }

  .btn-circle-secondary.slider-arrow.v2.left {
    margin-left: -20px;
  }

  .btn-circle-secondary.slider-arrow.v2.right {
    margin-right: -20px;
  }

  .slider-wrapper.v3 {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

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

  .heading-h4-2 {
    font-size: 28px;
  }

  .grid-premium-blog {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

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

  .premium-blog-overlay-gradient {
    display: none;
  }

  .hero-inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .blog-detail-image {
    height: 500px;
  }

  .grid-blogs {
    grid-column-gap: 30px;
  }

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

  .premium-blog {
    width: 100%;
    padding-left: 0;
    display: none;
    position: relative;
    top: 0%;
  }

  .heading-h3 {
    font-size: 34px;
  }

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

  .hero-title {
    font-size: 60px;
  }

  .blog-grid-col {
    grid-column-gap: 30px;
  }

  .hero-search-wrap {
    width: 100%;
  }

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

  .blog-detail-section {
    padding-top: 60px;
  }

  .element-image-1 {
    display: none;
  }

  .section-spacing-bottom {
    padding-bottom: 100px;
  }

  .button-line-primary-2 {
    background-color: var(--light-coral);
  }

  .grid-blog-ads {
    grid-column-gap: 30px;
  }

  .blog-collection-item {
    width: 380px;
  }

  .subscribe-blog-section {
    padding-top: 0;
  }

  .webinar-h1.margin-bottom {
    font-size: 40px;
    line-height: 52px;
  }

  .nav-dropdown {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.5;
  }

  .column {
    align-self: auto;
    width: 100%;
    margin-top: 40px;
    margin-left: 0;
  }

  .popup-content-wrapper {
    width: auto;
  }

  .popup-content-wrapper.popup-1-content-wrapper {
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    left: 24px;
    right: 24px;
  }

  .dummy-hero-wrapper---brix.preview-page---brix {
    flex-direction: column;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
  }

  .limit-content---brix {
    align-self: auto;
    max-width: none;
  }

  .popup-wrapper.preview-page {
    padding-left: 32px;
    padding-right: 32px;
  }

  .nav-menu {
    text-align: left;
    background-color: #fff;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 0;
    display: flex;
    box-shadow: 0 18px 16px #0000000f;
  }

  .close-icon {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 20px;
    display: none;
  }

  .main-nav {
    padding-top: 0;
    padding-bottom: 0;
    position: sticky;
    top: 0;
  }

  .nav-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .open-hamburger-line {
    background-color: #000;
    width: 100%;
    height: 2px;
    padding: 0;
  }

  .open-icon {
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    display: flex;
  }

  .nav-mobile-menu-btn {
    z-index: 1000;
    float: none;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 80px;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .nav-mobile-menu-btn.w--open {
    background-color: #0000;
    padding-left: 0;
  }

  .close-hamburger-line {
    background-color: #000;
    width: 66.67%;
    height: 2px;
    padding: 0;
    position: absolute;
    transform: rotate(45deg);
  }

  .close-hamburger-line.is-reverse {
    transform: rotate(-45deg);
  }

  .nav-link-2 {
    margin-bottom: 20px;
    margin-left: 0;
    display: block;
  }

  .nav-links-wrap--2 {
    grid-row-gap: 0px;
    flex-direction: column;
  }

  .nav-dropdown-list-2.w--open {
    background-color: var(--snow);
    box-shadow: none;
    border-style: none;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
  }

  .nav-link-3 {
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 20px;
    line-height: 1.5;
  }

  .nav-link-3.sign-in {
    margin-left: 0;
    font-size: 20px;
    font-weight: 400;
  }

  .nav-link-3.getstarted {
    border-radius: 5px;
    font-size: 20px;
    font-weight: 400;
  }

  .nav-link-3.get-started-new {
    background-color: var(--royal-blue);
    color: var(--white);
    border-style: none;
    font-size: 20px;
    font-weight: 700;
  }

  .nav-link-3.sign-in-new {
    margin-left: 0;
    font-size: 20px;
    font-weight: 400;
  }

  .nav-cta-wrap {
    width: 100%;
    padding: 30px 5% 20px;
    position: static;
    inset: auto auto 0% 0%;
  }

  .nav-dropdown-2 {
    width: 100%;
    font-size: 20px;
    line-height: 1.5;
  }

  .dropdown-toggle-2 {
    justify-content: center;
    width: 100%;
    padding: 10px 5%;
  }

  .nav-link-4 {
    text-align: center;
    padding: 10px 5%;
    font-size: 16px;
    line-height: 1.5;
  }

  .nav-link-4.is-white {
    text-align: left;
    padding-left: 0%;
    padding-right: 0%;
  }

  .nav-link-4.is-left.w--current {
    padding-left: 5%;
    padding-right: 5%;
  }

  .dropdown-toggle-wrap {
    justify-content: center;
    width: 100%;
    display: flex;
  }

  .dropdown-nav-icon {
    margin-left: 0;
    margin-right: 0;
    position: relative;
  }

  .nav-button-wrap {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
  }

  .top-level-nav-link {
    font-size: 20px;
    line-height: 1.5;
    text-decoration: none;
  }

  .top-level-nav-link.is-white {
    padding-left: 0;
    padding-right: 0;
  }

  .top-level-nav-link.is-pricing {
    padding: 10px 0;
  }

  .optin-content-wrap {
    text-align: center;
    width: 100%;
    max-width: none;
  }

  .subtext-new, .subtext-new.centred-tab {
    text-align: center;
  }

  .new-button.wide-mobile-1 {
    width: 100%;
    max-width: none;
  }

  .new-button-wrap {
    justify-content: center;
  }

  .optin-video-wrap {
    width: 100%;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    position: static;
  }

  .paragraph-new.is-white {
    max-width: none;
  }

  .why-voma-block.is-cards {
    flex-direction: column;
  }

  .why-voma-content {
    max-width: none;
  }

  .why-voma-pricing {
    flex-direction: column;
  }

  .why-voma-pricing-card {
    max-width: none;
  }

  .text-size-small.text-white.show-tablet {
    display: block;
  }

  .container-new.no-top-pad {
    padding-top: 60px;
  }

  .container-new.large-pad {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .optin-subtext-wrap.is-mobile {
    display: block;
  }

  .optin-subtext-wrap.is-desktop {
    display: none;
  }

  .browser-bg-left.is-opt-in {
    top: 28px;
  }

  .browser-bottom.is-opt-in {
    transform: skew(-18deg);
  }

  .browser-top-left-line.is-slider {
    width: 56px;
    top: 20px;
    left: -46px;
    transform: rotate(-53deg);
  }

  .browser-button.wide-mobile-1 {
    width: 100%;
    max-width: none;
  }

  .integrate-logo-block {
    grid-template-columns: 1fr 1fr;
    align-content: center;
  }

  .blueprint-playbook-img {
    margin-bottom: 40px;
    position: static;
    transform: none;
  }

  .blueprint-playbook-img.is-desktop {
    display: none;
  }

  .blueprint-playbook-img.is-tablet {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

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

  .h3-new {
    font-size: 28px;
  }

  .image-17 {
    right: 3%;
  }

  .margin-bottom-0.margin-right-28 {
    font-size: 21px;
  }

  .inside-box {
    height: 200px;
  }

  .browser-top-left-corner {
    border-right: 3px solid var(--black);
    background-color: var(--snow);
    width: 34px;
    height: 35px;
    left: -34px;
  }

  .browser-top-left-corner-line {
    margin-top: 18px;
    margin-left: -17px;
  }

  .div-block-9 {
    background-color: #bfc5f4;
    width: 100%;
    height: 100px;
    padding: 0;
    position: absolute;
    inset: 0% 0% auto;
  }

  .voma-multi-link.hide-on-mobile {
    display: inline-block;
  }

  .image-23 {
    margin-top: -15px;
  }

  .typeform-embed {
    min-height: auto;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .html-embed-4 {
    margin-top: 20px;
    margin-bottom: 0;
    padding-bottom: 20px;
  }

  .image-25 {
    max-width: 30%;
  }

  .div-block-11 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .paragraph-6 {
    margin-top: 10px;
  }

  .div-block-12 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .h1-title-new-large.is-bold {
    padding-bottom: 10px;
  }

  .h1-title-new-large.is-optin {
    text-align: center;
  }

  .section-hero-new {
    padding-top: 10px;
  }

  .section-hero-new.is-backbone {
    margin-top: -50px;
  }

  .section-hero-new.is-home {
    padding-bottom: 0;
  }

  .purple-button-new.wide-mobile-1 {
    width: 100%;
    max-width: none;
  }

  .purple-button-new.is-center {
    max-width: 100%;
  }

  .button-wrap-new {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .button-wrap-new.show-on-mobile {
    display: flex;
  }

  .outline-button-new.wide-mobile-1 {
    width: 100%;
    max-width: none;
  }

  .outline-button-new.is-center {
    max-width: 100%;
  }

  .logos-flex {
    flex-flow: wrap;
    height: auto;
  }

  .home-logo {
    height: 40px;
  }

  .main-nav-black {
    padding-top: 0;
    padding-bottom: 0;
    position: sticky;
    top: 0;
  }

  .dropdown-toggle-new {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 10px 0%;
  }

  .nav-dropdown-list-container {
    padding: 10px 0;
  }

  .nav-dropdown-list-container.w--open {
    box-shadow: none;
    text-align: left;
    border-style: none;
    padding: 10px 0;
    position: relative;
  }

  .subtextt-new.align-left.extendbold {
    margin-bottom: 0;
  }

  .subtext-new-1, .subtext-new-1.centred-tab {
    text-align: center;
  }

  .container-new-1.no-top-pad {
    max-width: none;
    padding-top: 60px;
    position: static;
  }

  .container-new-1.large-pad {
    padding-top: 100px;
    padding-bottom: 100px;
  }

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

  .pricing-left {
    width: auto;
  }

  .button-blue.is-mobile-version {
    display: block;
  }

  .button-blue.is-desktop-version {
    display: none;
  }

  .nav-menu-new {
    text-align: left;
    background-color: #1e1a1c;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 0;
    padding: 1.5rem;
    display: flex;
    position: fixed;
    inset: 0%;
    box-shadow: 0 18px 16px #0000000f;
  }

  .nav-menu-new-inner {
    background-color: #2d2d2d;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    padding-top: 6.25rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    display: flex;
    position: relative;
  }

  .nav-liinks-wrap-3 {
    grid-row-gap: 0px;
    text-align: left;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .nav-dropdown-3 {
    text-align: left;
    width: 100%;
    font-size: 20px;
    line-height: 1.5;
  }

  .nav-cta-wrap-1 {
    width: 100%;
    padding: 30px 0% 20px;
    position: static;
    inset: auto auto 0% 0%;
  }

  .voma-menu-logo {
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: absolute;
    inset: 2.8rem 0% auto;
  }

  .nav-button-new {
    z-index: 1000;
    float: none;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 80px;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .nav-button-new.w--open {
    background-color: #0000;
    padding-left: 0;
    top: 2.5rem;
    left: 2.5rem;
  }

  .embed-dropdown-triangle {
    display: none;
  }

  .nav-dropdown-list-new.w--open {
    box-shadow: none;
    text-align: left;
    border-style: none;
    padding-top: 0;
    position: relative;
  }

  .h1-title-new.is-bold {
    padding-bottom: 10px;
  }

  .h1-title-new.is-optin {
    text-align: center;
  }

  .button-wrap-2.show-flex-on-mobile {
    display: flex;
  }

  .heading-list-item {
    padding-left: 0;
  }

  .heading-list-item.is-last {
    margin-bottom: 40px;
  }

  .black-button-new.wide-mobile-1 {
    width: 100%;
    max-width: none;
  }

  .black-button-new.is-center {
    max-width: 100%;
  }

  .black-button-new.hide-on-desktop {
    width: 100%;
    display: flex;
  }

  .new-section.is-backbone {
    margin-top: -50px;
  }

  .component-image-2 {
    margin-left: 100px;
  }

  .offerstack-item {
    width: calc(50% - 20px);
  }

  .reportin-img.is-desktop {
    display: none;
  }

  .reportin-img.is-mobile {
    display: block;
  }

  .new-container.no-top-pad {
    max-width: none;
    padding-top: 60px;
    position: static;
  }

  .new-container.large-pad {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .col-small {
    width: 100%;
    margin-bottom: 24px;
    padding-left: 0;
    padding-right: 0;
  }

  .col-small.first {
    order: -1;
  }

  .mobile-offers-item {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    border-top: 1px solid #d4d7d9;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
  }

  .mobile-offers-item.is-last {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .mobile-offers-item-title {
    background-color: var(--black-new);
    color: var(--white);
    padding: 10px 10px 10px 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.27778;
  }

  .mobile-offers-item-title.is-light {
    color: var(--black-new);
    background-color: #0000;
  }

  .offers-item-image {
    object-fit: contain;
    width: 100%;
  }

  .h2-large-no-margin.centerd-on-mobile {
    text-align: center;
  }

  .h2-large-no-margin.left-aligned-on-mobile {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .brand-logo {
    width: 160px;
    left: 15%;
  }

  .heading-h1.is-competitor {
    margin-top: -14px;
  }

  .subtext {
    font-size: 20px;
    line-height: 24px;
  }

  .subtext.align-left, .subtext.align-left.is-bold, .subtext.is-ty {
    text-align: left;
  }

  .subtext.is-bold {
    font-weight: 700;
  }

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

  .built-box {
    flex-wrap: wrap;
    align-content: flex-start;
  }

  .built-item {
    width: 100%;
    margin-bottom: 80px;
  }

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

  .di-logo-box {
    justify-content: center;
  }

  .di-logo {
    width: 30%;
  }

  .navbar-mobile {
    padding-top: 12px;
    padding-bottom: 12px;
  }

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

  .legal-content-box {
    flex-wrap: wrap;
    align-content: flex-start;
  }

  .legal-content-link-box {
    width: 100%;
    padding-right: 0;
    position: static;
  }

  .legal-content-text-box {
    border-left-style: none;
    width: 100%;
    margin-top: 50px;
    padding-left: 0;
  }

  .heading-h2.is-small {
    font-size: 27px;
    line-height: 40px;
  }

  .legal-link-box-inner {
    display: none;
  }

  .legal-dropdown {
    display: block;
  }

  .pricing-banner-wrapper {
    width: 100%;
  }

  .button-red.is-concierge-migration {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
  }

  .button-red.is-need-help-banner {
    margin-top: 20px;
  }

  .button-red.is-comparison {
    padding-left: 4px;
    padding-right: 4px;
    font-size: 16px;
  }

  .pf-wrapper {
    width: 100%;
  }

  .faq-wrapper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .accordion-arrow {
    width: 18px;
    height: 10px;
    margin-top: -5px;
    top: 50%;
    bottom: auto;
  }

  .hitw-wrapper {
    width: 100%;
  }

  .heading-h4.is-why-voma {
    font-size: 28px;
    line-height: 1.21429;
  }

  .heading-h4.is-why-voma._28-mobile {
    font-size: 28px;
    line-height: 34px;
  }

  .heading-h4.is-why-voma._23-mobile {
    font-size: 23px;
    line-height: 26px;
  }

  .heading-h4.is-subtext-new {
    margin-top: 24px;
  }

  .heading-h4.is-subtext-new.plr {
    padding-left: 0;
  }

  .why-wrapper {
    width: 100%;
  }

  .why-content-box {
    padding-bottom: 40%;
  }

  .why-text {
    font-size: 24px;
  }

  .why-img {
    width: 35%;
    bottom: -22px;
    right: 30px;
  }

  .features-wrapper {
    width: 90%;
  }

  .features-img-box {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .section.is-features {
    min-height: 1000px;
  }

  .section.is-over-purple {
    margin-top: -174px;
  }

  .section.bg-is-beige.is-special {
    padding-top: 50px;
  }

  .section.bg-is-beige.p-t-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section.bg-is-beige.above-image {
    padding-top: 0;
  }

  .section.is-sell-more {
    height: 800px;
  }

  .section.is-backbone {
    padding-top: 340px;
  }

  .section.meet-the-presenter {
    flex-direction: column;
    display: flex;
  }

  .section.has-border, .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container.no-top-pad {
    padding-top: 0;
  }

  .container.is-playbook, .container.is-bridge {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .container.mobile-no-top-padding {
    padding-top: 0;
  }

  .page-head {
    font-size: 48px;
    line-height: 52px;
  }

  .page-head.is-optin {
    font-size: 46px;
    line-height: 1.19565;
  }

  .container-small {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container-small.no-bot-mg {
    text-align: left;
    margin-left: 0;
  }

  .container-small.hero {
    padding-top: 10px;
  }

  .horizontal-flex-block.is-space-between, .horizontal-flex-block.is-space-between-1 {
    flex-direction: column;
  }

  .horizontal-flex-block.align-start {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .horizontal-flex-block.is-five-things {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .button-wrap {
    margin-top: 30px;
  }

  .primary-button.wide-mobile, .primary-button.wide-mobile-1 {
    min-width: 100%;
    max-width: 100%;
  }

  .primary-button.is-center.is-web-reg {
    width: 100%;
    min-width: auto;
    display: block;
  }

  .video-play-btn {
    max-width: 125px;
    min-height: 65px;
  }

  .main-video {
    min-height: 375px;
  }

  .container-below-video {
    padding-top: 279px;
    padding-bottom: 60px;
  }

  .col-48 {
    width: 100%;
  }

  .col-48.mg-t-mobile {
    margin-top: 25px;
  }

  .difference-block {
    min-height: auto;
    margin-bottom: 30px;
  }

  .difference-icon {
    width: 24px;
    height: 24px;
  }

  .section-sub-head {
    font-size: 22px;
    line-height: 30px;
  }

  .section-sub-head.mg-t-24 {
    margin-top: 24px;
  }

  .paragraph-1 {
    margin-top: 4px;
    font-size: 15px;
    line-height: 24px;
  }

  .difference-wrap {
    margin-top: 60px;
  }

  .section-head-large {
    font-size: 36px;
    line-height: 44px;
  }

  .section-head-large.is-playbook, .section-head-large.is-playbook-2 {
    font-size: 26px;
    line-height: 30px;
  }

  .horizontal-flex-block-1.align-top {
    justify-content: flex-start;
  }

  .horizontal-flex-block-1.is-smth-smth-product {
    margin-top: 20px;
  }

  .paragraph-2 {
    font-size: 16px;
    line-height: 26px;
  }

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

  .image-right.is-relative, .image-right.hide-mb {
    display: none;
  }

  .image-right.is-produuct {
    margin-bottom: 40px;
  }

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

  .col-54.center-mobile {
    text-align: center;
  }

  .container-small-1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer-col.full-tab-down {
    min-width: 100%;
    margin-bottom: 40px;
  }

  .footer-col.last, .footer-col.is-main {
    width: 100%;
  }

  .highlights-block {
    flex-direction: column;
    align-items: center;
  }

  .resources-card {
    width: 100%;
    margin-bottom: 24px;
  }

  .resources-card.is-white, .resources-card.is-white-1 {
    width: 100%;
  }

  .resources-card-block {
    flex-wrap: wrap;
  }

  .centred-container-small {
    padding-top: 60px;
  }

  .pale-pink-bg {
    min-height: 440px;
    overflow: auto;
  }

  .compare-block {
    min-width: 800px;
  }

  .compare-container {
    width: 100%;
    padding-bottom: 7px;
    padding-left: 4%;
    overflow: auto;
  }

  .col-45 {
    width: 100%;
  }

  .container-1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .features-content.is-space-between-1 {
    flex-direction: column;
  }

  .mobile-integrations-filter-btn {
    margin-bottom: 12px;
  }

  .filter-block {
    margin-bottom: 16px;
    padding-bottom: 8px;
  }

  .integrations-card {
    width: 50%;
    padding: 7px;
  }

  .filter-close-icon {
    width: 12px;
    height: 12px;
  }

  .integrations-pg-btn {
    min-height: 200px;
    padding: 12px;
  }

  .inetgration-content-block {
    margin-left: 0;
  }

  .paragraph-4 {
    padding-top: 20px;
  }

  .cta-block {
    flex-direction: column;
    padding: 32px;
  }

  .paragraph-large {
    font-size: 16px;
    line-height: 26px;
  }

  .paragraph-large.is-browser-mob {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 700;
  }

  .rich-text-features {
    font-size: 16px;
  }

  .rich-text-features ol {
    padding-left: 20px;
  }

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

  .h1-concierge-migration-2 {
    font-size: 25px;
    line-height: 33px;
  }

  .h1-concierge-migration-1 {
    font-size: 48px;
    line-height: 47px;
  }

  .concierge-cta-block {
    width: 100%;
  }

  .feature-heading {
    text-align: center;
    font-size: 34px;
    line-height: 42px;
  }

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

  .button-features {
    padding-left: 40px;
    padding-right: 40px;
  }

  .button-features.is-thank-you {
    max-width: none;
  }

  .button-features.is-ty {
    font-size: 16px;
  }

  .arrow-holder {
    margin-bottom: 35px;
  }

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

  .offers-illustration {
    display: none;
  }

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

  .container-1060 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-head-medium {
    font-size: 36px;
    line-height: 40px;
  }

  .grid {
    grid-column-gap: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .features-title {
    font-size: 16px;
    line-height: 23.5px;
  }

  .flex-row.is-step-2 {
    flex-direction: column;
  }

  .new-text {
    font-size: 20px;
  }

  .announcement-text {
    font-size: 13px;
    line-height: 16px;
  }

  .bf-optin-submit {
    font-size: 14px;
    line-height: 17px;
  }

  .playbook-btn-subtext {
    display: none;
  }

  .container-landing-page-footer {
    font-size: 14px;
  }

  .blueprint-img.is-tablet {
    margin-bottom: 20px;
  }

  .footer-bottom-terms {
    text-align: center;
  }

  .downloadable-text {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }

  .playbook-line {
    bottom: -60px;
  }

  .bridge-subtext {
    font-size: 16px;
  }

  .promo-banner {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 15px;
  }

  .bridge-lightbox.is-vsl-optin {
    margin-top: 20px;
  }

  .play-button {
    width: 64px;
    height: 38px;
  }

  .make-money-subtext {
    font-size: 18px;
    line-height: 23px;
  }

  .bridge-subtext-large {
    margin-bottom: 10px;
    font-size: 18px;
    display: inline-block;
  }

  .max-w-670.is-vsl-btn {
    margin-top: 20px;
  }

  .play-icon {
    max-width: 25%;
  }

  .no-thanks-link {
    font-size: 14px;
  }

  .no-thanks-link.is-calling {
    font-size: 18px;
  }

  .calling-text {
    font-size: 28px;
    line-height: 35px;
  }

  .calling-text.is-passes {
    font-size: 26px;
  }

  .calling-subtext-block {
    font-size: 18px;
    line-height: 24px;
  }

  .exclamation-mark {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .step-item {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 18px;
    line-height: 26px;
  }

  .green-tick {
    width: 56px;
    height: 56px;
    left: -7px;
  }

  .vsl-submit {
    font-size: 14px;
    line-height: 17px;
  }

  .subhead {
    font-size: 20px;
  }

  .sub-btn-text {
    margin-bottom: 40px;
    font-size: 17px;
  }

  .presenter-img {
    order: 1;
    max-width: none;
    max-height: 300px;
    position: static;
  }

  .presenter-block {
    text-align: center;
    align-items: center;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .pop-up-card {
    padding-bottom: 40px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .vsl-form-submit {
    font-size: 14px;
    line-height: 17px;
  }

  .pop-up-close-block {
    top: 25px;
    right: 20px;
  }

  .pricing-tabs {
    margin-bottom: 50px;
  }

  .pricing-block {
    grid-row-gap: 30px;
    width: 100%;
    padding: 35px;
  }

  .pricing-list-item-wrap {
    font-size: 18px;
  }

  .pricing-heading-wrap {
    padding-bottom: 20px;
    font-size: 16px;
  }

  .pricing-pane {
    grid-row-gap: 22px;
    flex-direction: column-reverse;
  }

  .h2-pricing {
    font-size: 22px;
  }

  .large-pricing-text {
    font-size: 42px;
  }

  .pricing-icon {
    width: 100px;
    top: -50px;
  }

  .pricing-tabs-content {
    padding-top: 60px;
  }

  .button-red-2 {
    margin-top: 10px;
    padding-top: 6px;
  }

  .text-size-medium-2 {
    font-size: 23px;
  }

  .pricing-banner-wrapper-2 {
    width: 100%;
  }

  .accordion-arrow-2 {
    width: 18px;
    height: 10px;
    top: 50%;
    bottom: auto;
  }

  .pricing-table-cell.is-voma {
    min-width: 110px;
  }

  .pricing-table-cell.is-first-col {
    min-width: 180px;
    max-width: 180px;
    padding-right: 10px;
  }

  .pricing-table-cell.is-voma-header {
    min-width: 110px;
  }

  .pricing-table-cell.is-first-col-header {
    min-width: 180px;
  }

  .pricing-table-cell.is-last-voma {
    min-width: 110px;
  }

  .embed-table-check-icon {
    width: 12px;
  }

  .pricing-info-dropdown-content.w--open {
    width: 180px;
  }

  .mobile-vs-text, .mobile-vs-text.is-kajabi {
    display: block;
  }

  .mobile-vs-text.is-clickfunnel, .mobile-vs-text.is-samcart, .mobile-vs-text.is-thrivecart, .mobile-vs-text.is-gumroad {
    display: none;
  }

  .paragraph-5 {
    font-size: 16px;
    line-height: 26px;
  }

  .alignment-nav-mobile {
    width: 40px;
    height: 40px;
  }

  .h1-light-purple {
    font-size: 44px;
  }

  .comparison-subtitle {
    font-size: 25px;
  }

  .comparison-description {
    margin-bottom: 40px;
    font-size: 23px;
  }

  .button-dark-2 {
    width: 100%;
    min-width: auto;
    font-size: 16px;
  }

  .rich-text-2 {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  .rich-text-2 h2 {
    text-align: center;
    font-size: 38px;
  }

  .rich-text-2 p, .rich-text-2 ol {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
  }

  .need-help-block {
    padding-left: 5%;
    padding-right: 5%;
  }

  .cms-content-wrap {
    grid-row-gap: 80px;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

  .competior-hide {
    display: none;
  }

  .cms-wrapper {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  .inner-container._30.image-above-hero-v6 {
    top: 80px;
  }

  .text-center.mg-bottom-38px {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .mg-top-large-v2 {
    margin-top: 50px;
  }

  .mg-bottom-large-v5 {
    margin-bottom: 52px;
  }

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

  .grid-3-columns._3-icon-list {
    grid-row-gap: 18px;
    grid-template-columns: auto;
  }

  .grid-3-columns.image-center---icons-sides {
    grid-row-gap: 70px;
    max-width: 430px;
  }

  .position-relative.z-index-1.content-v7 {
    padding-bottom: 40px;
  }

  .mg-top-large {
    margin-top: 32px;
  }

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

  .max-width-660px-mb {
    max-width: 660px;
  }

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

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

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

  .grid-2-columns.contact-v1 {
    grid-row-gap: 70px;
  }

  .grid-2-columns.is-opt-in {
    grid-row-gap: 20px;
  }

  .square-icon {
    border-radius: 12px;
    max-width: 56px;
  }

  .subtitle {
    margin-bottom: 20px;
  }

  .subtitle.is-new {
    margin-bottom: 10px;
    font-size: 23px;
  }

  .card.is-features {
    padding-top: 43px;
    padding-bottom: 48px;
  }

  .card.content-left.testimonial-v1 {
    padding: 53px 35px 38px;
  }

  .card.form-v4 {
    min-height: 834px;
    padding: 53px 35px 61px;
  }

  .card.form {
    min-height: 1010px;
    padding: 58px 35px;
  }

  .card.form.bg-blue {
    padding: 27px;
  }

  .card.testimonial-v2 {
    flex-direction: column;
    align-items: center;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .card.form-v3 {
    min-height: 731px;
    padding: 53px 35px 60px;
  }

  .card.form-v3.bg-blue {
    padding: 8px 20px;
  }

  .card.form-v3.bg-blue.is-web-reg {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .cta-card {
    padding: 61px 35px 184px;
  }

  .split-content.content-v7-left, .split-content.content-v6-right {
    margin-bottom: 70px;
  }

  .split-content.hero-v2-left {
    margin-bottom: 112px;
  }

  .split-content.content-v2-right {
    margin-bottom: 70px;
  }

  .split-content.card-testimonial-v2-left {
    margin-bottom: 25px;
    margin-right: 0;
  }

  .split-content.card-testimonial-v2-right {
    text-align: center;
  }

  .split-content.hero-v6-left {
    margin-bottom: 90px;
  }

  .split-content.hero-v6-left.is-webinar-reg {
    width: 100%;
    margin-bottom: 70px;
  }

  .split-content.is-webinar-reg-form {
    margin-right: 0;
  }

  .triangle-bottom-right.bg-secondary-1.cta-v2 {
    width: 144px;
    padding-top: 144px;
    right: 18%;
  }

  .square.bg-secondary-1.cta-v2 {
    width: 144px;
    padding-top: 144px;
    left: 18%;
  }

  .circle.bg-secondary-3.cta-v2-circle-2 {
    width: 144px;
    padding-top: 144px;
    display: none;
    right: -15%;
  }

  .circle.bg-secondary-3.cta-v2-circle-1 {
    z-index: 1;
    width: 144px;
    padding-top: 144px;
    bottom: -16%;
  }

  .circle.bg-secondary-3.cta-v2-circle-3 {
    width: 144px;
    padding-top: 144px;
    display: none;
    left: -15%;
  }

  .circle.bg-secondary-3.hero-v2-circle-2 {
    margin-bottom: -110px;
  }

  .circle.bg-primary-1.top-left {
    top: -30px;
  }

  .position-absolute.bg-dots.bottom-right {
    bottom: -29px;
  }

  .position-absolute.bg-dots.top-right {
    top: -13px;
  }

  .heading-h1-size {
    font-size: 38px;
  }

  .heading-h1-size.large {
    font-size: 43px;
  }

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

  .text-200 {
    font-size: 16px;
  }

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

  .text-301 {
    font-size: 16px;
  }

  .avatar-circle._03 {
    max-width: 56px;
  }

  .avatar-circle._07 {
    max-width: 160px;
  }

  .avatar-circle._90px {
    max-width: 64px;
  }

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

  .input-2 {
    min-height: 60px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .mg-bottom-13px.is-ty {
    font-size: 40px;
  }

  .btn-primary {
    padding: 20px 32px;
  }

  .semicircle-left.secondary-1.hero-v2 {
    margin-bottom: -110px;
  }

  .divider {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .divider._50px, .divider._64px {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .divider._38px {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .section-4 {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .section-4.hero-v2 {
    padding-top: 50px;
    padding-bottom: 102px;
  }

  .section-4.hero-v6 {
    padding-top: 50px;
    padding-bottom: 84px;
  }

  .mg-bottom-default {
    margin-bottom: 40px;
  }

  .max-width-345px.is-opt-in {
    order: 3;
  }

  .subtitle-5, .subtitle-6, .subtitle-7 {
    margin-bottom: 20px;
  }

  .btn-circle-secondary {
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    font-size: 22px;
    line-height: 24px;
  }

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

  .button-features-outlined {
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .grid-hero-blog {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .hero-inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }

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

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

  .grid-blogs {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }

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

  .premium-blog {
    padding: 20px;
    display: none;
  }

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

  .button-primary {
    padding: 8px 20px;
  }

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

  .section-title.flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-title {
    font-size: 50px;
  }

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

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

  .hero-title-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .hero-search-wrap {
    margin-bottom: 80px;
  }

  .blog-image-wrap {
    order: -1;
  }

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

  .blog-author-image {
    width: 50px;
    height: 50px;
  }

  .section-spacing-bottom {
    padding-bottom: 80px;
  }

  .button-line-primary-2 {
    background-color: var(--light-coral);
  }

  .grid-blog-ads {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .blog-collection-item {
    width: 330px;
  }

  .text-100 {
    font-size: 14px;
  }

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

  .text-302 {
    font-size: 16px;
  }

  .blog-title {
    font-size: 16px;
    line-height: 23.5px;
  }

  .link-block-7 {
    text-decoration: none;
  }

  .link-block-8 {
    color: var(--black);
    text-decoration: none;
  }

  .text-block-13 {
    font-size: 36px;
    line-height: 40px;
  }

  .column {
    margin-top: 40px;
    margin-left: 0;
  }

  .popup-content-wrapper.popup-1-content-wrapper {
    border-radius: 20px;
    max-width: none;
    left: 24px;
    right: 24px;
  }

  .popup-form {
    flex-direction: column;
  }

  .input-scoop.large {
    min-height: 64px;
    margin-bottom: 16px;
    padding: 16px 32px;
  }

  .dummy-hero-wrapper---brix {
    flex-direction: column;
  }

  .dummy-hero-wrapper---brix.preview-page---brix {
    max-width: 100%;
  }

  .subscribe-button---scoop {
    background-position: 67% 52%;
    width: 100%;
    min-height: 66px;
    line-height: 18px;
    position: static;
  }

  .subscribe-button---scoop.popup-scoop {
    background-position: 68% 52%;
  }

  .popup---scoop {
    max-width: none;
    padding: 32px;
  }

  .popup-scoop-illustration {
    max-width: 28%;
    height: auto;
    margin-bottom: 16px;
  }

  .popup-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }

  .dummy-hero-button---brix {
    padding: 16px 34px;
    font-size: 16px;
    line-height: 18px;
  }

  .nav-logo {
    width: 40%;
  }

  .nav-mobile-menu-btn {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .nav-links-wrap--2 {
    align-items: flex-start;
  }

  .dropdown-toggle-2 {
    justify-content: flex-start;
    padding-left: 5%;
  }

  .nav-link-4 {
    text-align: left;
    padding-left: 10%;
  }

  .top-level-nav-link.is-pricing {
    margin-left: 5%;
    padding-left: 0;
  }

  .subtext-new {
    font-size: 23px;
    line-height: 28px;
  }

  .text-size-large {
    letter-spacing: -.02em;
    font-size: 21px;
    line-height: 1.19048;
  }

  .new-button {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .new-button.wide-mobile, .new-button.wide-mobile-1 {
    min-width: 100%;
    max-width: 100%;
  }

  .new-button.is-400 {
    max-width: none;
  }

  .new-button-wrap.show-on-mobile {
    display: block;
  }

  .new-button-wrap.is-2-buttons {
    flex-direction: column;
  }

  .works-block {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    flex-direction: column;
    display: flex;
  }

  .use-offer-badge {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .why-voma-block {
    flex-direction: column;
    display: flex;
  }

  .why-voma-content {
    max-width: none;
  }

  .why-voma-item {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
  }

  .why-voma-subtext {
    text-transform: capitalize;
    font-size: 21px;
    line-height: 1.19048;
  }

  .why-voma-subtext.is-card {
    font-size: 23px;
  }

  .why-voma-subtext.is-card._26-mobile {
    font-size: 26px;
  }

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

  .container-new.no-top-pad {
    padding-top: 0;
  }

  .container-new.is-playbook, .container-new.is-bridge {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-new {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section-new.is-features {
    min-height: 1000px;
  }

  .section-new.is-over-purple {
    margin-top: -174px;
  }

  .section-new.is-sell-more {
    height: 800px;
  }

  .section-new.is-backbone {
    padding-top: 340px;
  }

  .section-new.meet-the-presenter {
    flex-direction: column;
    display: flex;
  }

  .section-new.large-pad {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .optin-subtext-wrap.is-mobile {
    display: block;
  }

  .optin-subtext-wrap.is-desktop {
    display: none;
  }

  .browser-block {
    max-width: 80%;
    margin-bottom: 120px;
    margin-left: auto;
    margin-right: auto;
    padding: 90px 42px 0;
  }

  .browser-block.is-slider {
    max-width: none;
    margin-top: 40px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .browser-block.is-webinar {
    padding-left: 24px;
    padding-right: 24px;
  }

  .browser-block.is-playbook {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .browser-inner.is-desktop {
    display: none;
  }

  .browser-inner.is-moble {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: left;
    flex-direction: column;
    justify-content: flex-start;
    display: flex;
  }

  .browser-inner.is-slider, .browser-inner.is-slider-2 {
    flex-flow: column;
    display: flex;
  }

  .browser-inner.is-optin {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .browser-bg-left {
    width: 20px;
  }

  .browser-bottom.is-opt-in {
    margin-left: -14px;
  }

  .browser-top-left-line.is-slider {
    width: 70px;
    top: 26px;
    left: -53px;
    transform: rotate(-57deg);
  }

  .browser-bottom-right-line {
    width: 43px;
    right: -17px;
    transform: rotate(-74deg);
  }

  .sparkles-left {
    width: 86vw;
    max-width: none;
    top: -52px;
    left: -24vw;
  }

  .browser-button {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .browser-button.wide-mobile, .browser-button.wide-mobile-1 {
    min-width: 100%;
    max-width: 100%;
  }

  .demo-badge {
    max-width: 90px;
  }

  .tools-logo {
    min-width: 100px;
    max-height: 35px;
  }

  .browser-mob-button {
    color: #000;
    text-align: center;
    background-color: #00e6dc;
    border: 1px solid #000;
    border-radius: 40px;
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
  }

  .browser-mob-image-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .browser-mob-inner-square {
    background-color: #f0f1fc;
    width: 60px;
    height: 60px;
  }

  .browser-img-profile {
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
  }

  .h2-large {
    font-size: 34px;
    line-height: 1.17647;
  }

  .inquire-link-2 {
    font-size: 16px;
  }

  .line-break {
    display: inline;
  }

  .use-offer-graphic {
    top: -19px;
    right: 0;
    transform: none;
  }

  .line-break-mobile {
    display: block;
  }

  .blueprint-playbook-img {
    width: auto;
  }

  .blueprint-playbook-img.is-tablet {
    margin-bottom: 20px;
  }

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

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

  .h3-new {
    line-height: 34px;
  }

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

  .h1-new.is-opt-in {
    line-height: 55px;
  }

  .h1-new.align-center {
    font-size: 42px;
    line-height: 46px;
  }

  .h1-new.is-ty {
    text-align: left;
    margin-bottom: 20px;
    font-size: 42px;
    line-height: 46px;
  }

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

  .image-17 {
    top: -25%;
    bottom: auto;
    right: 1%;
  }

  .image-18 {
    top: auto;
    bottom: -20%;
  }

  .webinar-illu-left {
    display: none;
  }

  .webinar-illu-left.is-webinar {
    display: block;
    bottom: 7%;
    left: -7%;
  }

  .webinar-illu-left.is-webinar.is-mobile {
    width: 12%;
    max-width: none;
    display: block;
    bottom: 15%;
    left: -8%;
  }

  .webinar-illu-left.is-webinar.is-desktop, .webinar-illu-right {
    display: none;
  }

  .webinar-illu-right.is-webinar {
    width: 45%;
    display: block;
    bottom: -32%;
    right: -8%;
  }

  .webinar-illu-right.is-webinar.is-mobile {
    width: 35%;
    display: block;
    bottom: -24%;
    right: -5%;
  }

  .webinar-illu-right.is-webinar.is-desktop {
    display: none;
  }

  .inside-box {
    order: 2;
    height: auto;
    margin-bottom: 30px;
  }

  .browser-slider-content-wrap {
    flex-flow: column;
    padding-bottom: 100px;
  }

  .browser-left-col {
    max-width: none;
  }

  .browser-slide-arrow {
    inset: auto auto 24px 0%;
  }

  .browser-slide-arrow.is-right {
    inset: auto 0% 24px auto;
  }

  .h2-slider-browser {
    font-size: 34px;
    line-height: 1.17647;
  }

  .arrow-icon-click {
    max-width: 60px;
  }

  .browser-bottom-right-corner {
    right: -3px;
  }

  .browser-top-left-corner {
    width: 35px;
    left: -35px;
  }

  .browser-top-left-corner-line {
    margin-top: 19px;
  }

  .bonus-text {
    text-align: center;
    font-size: 16px;
  }

  .h2-heading-offer {
    margin-top: 0;
    font-size: 33px;
    line-height: 1.21212;
  }

  .h2-heading-offer.is-thank-you {
    margin-bottom: 25px;
    font-size: 33px;
    line-height: 1.21212;
  }

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

  .flex-horizontal.is-thank-you {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .col-65 {
    width: auto;
  }

  .col-65.is-first {
    order: -1;
  }

  .benefit-holder {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    font-size: 20px;
    line-height: 1.19048;
  }

  .align-center.is-thank-you {
    text-align: left;
    margin-top: 25px;
  }

  .right-side-image {
    width: 100%;
    margin-top: 25px;
    position: static;
  }

  .h1-heading-offer.is-thank-you {
    margin-bottom: 25px;
    font-size: 33px;
    line-height: 1.21212;
  }

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

  .side-left-image {
    width: 100%;
    margin-top: 40px;
  }

  .benefit-check {
    width: 20px;
  }

  .free-trial-link {
    font-size: 21px;
    line-height: 1.19048;
  }

  .html-embed-2 {
    display: block;
  }

  .benefit-list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .hide-desktop {
    display: block;
  }

  .ty-voma-logo.is-small {
    max-width: 165px;
  }

  .h1-title-new-large {
    font-size: 48px;
    line-height: 52px;
  }

  .h1-title-new-large.is-optin {
    font-size: 46px;
    line-height: 1.19565;
  }

  .section-hero-new.is-features {
    min-height: 1000px;
  }

  .section-hero-new.is-over-purple {
    margin-top: -174px;
  }

  .section-hero-new.bg-is-beige.is-special {
    padding-top: 50px;
  }

  .section-hero-new.bg-is-beige.p-t-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-hero-new.bg-is-beige.above-image {
    padding-top: 0;
  }

  .section-hero-new.is-sell-more {
    height: 800px;
  }

  .section-hero-new.is-backbone {
    padding-top: 340px;
  }

  .section-hero-new.meet-the-presenter {
    flex-direction: column;
    display: flex;
  }

  .purple-button-new.wide-mobile, .purple-button-new.wide-mobile-1 {
    min-width: 100%;
    max-width: 100%;
  }

  .purple-button-new.is-center.is-web-reg {
    width: 100%;
    min-width: auto;
    display: block;
  }

  .button-wrap-new {
    margin-top: 30px;
  }

  .outline-button-new.wide-mobile, .outline-button-new.wide-mobile-1 {
    min-width: 100%;
    max-width: 100%;
  }

  .outline-button-new.is-center.is-web-reg {
    width: 100%;
    min-width: auto;
    display: block;
  }

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

  .dropdown-toggle-new {
    justify-content: flex-start;
  }

  .subtextt-new {
    font-size: 20px;
    line-height: 24px;
  }

  .subtextt-new.align-left, .subtextt-new.align-left.is-bold, .subtextt-new.is-ty {
    text-align: left;
  }

  .subtextt-new.is-bold {
    font-weight: 700;
  }

  .subtext-new-1 {
    font-size: 23px;
    line-height: 28px;
  }

  .arrow-holder-new {
    margin-bottom: 35px;
  }

  .container-new-1 {
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .container-new-1.no-top-pad {
    padding-top: 0;
  }

  .container-new-1.is-playbook, .container-new-1.is-bridge {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .container-new-1.mobile-no-top-padding {
    padding-top: 0;
  }

  .h1-blog {
    text-align: center;
    font-size: 52px;
    line-height: 60px;
  }

  .button-blue {
    text-align: center;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .button-blue.is-thank-you {
    max-width: none;
  }

  .button-blue.is-ty {
    font-size: 16px;
  }

  .nav-liinks-wrap-3 {
    align-items: flex-start;
  }

  .nav-button-new {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
  }

  .h1-title-new {
    font-size: 34px;
    line-height: 1.17647;
  }

  .h1-title-new.is-optin {
    font-size: 46px;
    line-height: 1.19565;
  }

  .pricing-block-2 {
    grid-row-gap: 30px;
    width: 100%;
    padding: 35px;
  }

  .number-icon {
    width: 40px;
  }

  .heading-list-item {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .heading-list-item.is-space-between, .heading-list-item.is-space-between-1 {
    flex-direction: column;
  }

  .heading-list-item.align-start {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .h3-heading-list {
    font-size: 26px;
  }

  .black-button-new.wide-mobile, .black-button-new.wide-mobile-1 {
    min-width: 100%;
    max-width: 100%;
  }

  .black-button-new.is-center.is-web-reg {
    width: 100%;
    min-width: auto;
    display: block;
  }

  .subheading-tag-text-wrap {
    font-size: 18px;
  }

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

  .new-section.is-features {
    min-height: 1000px;
  }

  .new-section.is-over-purple {
    margin-top: -174px;
  }

  .new-section.bg-is-beige.is-special {
    padding-top: 50px;
  }

  .new-section.bg-is-beige.p-t-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .new-section.bg-is-beige.above-image {
    padding-top: 0;
  }

  .new-section.is-sell-more {
    height: 800px;
  }

  .new-section.is-backbone {
    padding-top: 340px;
  }

  .new-section.meet-the-presenter {
    flex-direction: column;
    display: flex;
  }

  .offerstack-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .offerstack-item {
    width: 100%;
  }

  .fav-tool-block {
    margin-top: 10px;
    left: -5px;
  }

  .fav-tool-content {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding: 40px 40px 60px;
    bottom: 10px;
    left: 10px;
  }

  .fav-tool-logo {
    max-width: 140px;
    max-height: 40px;
  }

  .fav-tool-logo.is-active-campaign {
    max-width: 200px;
  }

  .new-container.no-top-pad {
    padding-top: 0;
  }

  .new-container.is-playbook, .new-container.is-bridge {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .new-container.mobile-no-top-padding {
    padding-top: 0;
  }

  .col-small {
    width: 100%;
  }

  .new-paragraph {
    font-size: 18px;
  }

  .h2-large-no-margin {
    font-size: 34px;
    line-height: 1.17647;
  }

  .h2-large-no-margin.left-aligned-on-mobile {
    font-size: 32px;
  }
}

@media screen and (max-width: 479px) {
  .container-full {
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-full.larger-pad {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand-logo {
    width: 140px;
    height: 29px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 10%;
    top: 60px;
    left: 23%;
  }

  .brand-logo.w--current {
    margin-top: 0;
  }

  .nav-link {
    text-align: left;
    letter-spacing: .65px;
    padding-left: 28px;
    font-size: 21px;
    line-height: 1.4;
  }

  .section-hero {
    padding-top: 27px;
    padding-bottom: 66px;
  }

  .section-hero.is-partners {
    padding-bottom: 10px;
  }

  .heading-h1 {
    letter-spacing: .38px;
    margin-bottom: 14px;
    font-size: 32px;
    line-height: 40px;
  }

  .heading-h1.h2 {
    margin-bottom: 27px;
  }

  .heading-h1.h2.white {
    margin-bottom: 22px;
    line-height: 41px;
  }

  .heading-h1.h2.lh-20 {
    margin-bottom: 28px;
    line-height: 20px;
  }

  .heading-h1.bottom-30 {
    margin-bottom: 25px;
  }

  .subtext {
    letter-spacing: .21px;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 26px;
  }

  .subtext.why-voma {
    letter-spacing: .33px;
    margin-top: 25px;
    margin-bottom: 35px;
  }

  .subtext.is-playbook-optin {
    padding-left: 0;
    padding-right: 0;
  }

  .subtext.align-left {
    margin-top: 0;
    font-size: 18px;
    line-height: 24px;
  }

  .subtext.align-left.extendbold {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .subtext.is-bold {
    font-size: 17px;
  }

  .gs-form-wrapper {
    margin-top: 44px;
  }

  .input.width {
    width: 100%;
  }

  .input.width.radius {
    border-radius: 5px;
  }

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

  .button.width.radius {
    border-radius: 5px;
    margin-top: 20px;
  }

  .form-row {
    flex-wrap: wrap;
    align-content: flex-start;
  }

  .section-built {
    margin-top: 0;
    padding-top: 79px;
    padding-bottom: 45px;
  }

  .title-box.center.width {
    width: 100%;
  }

  .built-box {
    margin-top: 44px;
  }

  .built-item {
    margin-bottom: 44px;
  }

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

  .is-wrapper {
    width: 100%;
  }

  .is-icon {
    margin-bottom: 18px;
  }

  .list-wrapper {
    margin-top: 33px;
  }

  .list-wrapper.top-42 {
    margin-top: 42px;
  }

  .list-item {
    letter-spacing: .21px;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 26px;
  }

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

  .di-wrapper {
    padding: 60px 20px 79px;
  }

  .di-logo-box {
    width: 100%;
    margin-top: 44px;
    margin-bottom: 0;
  }

  .di-logo {
    width: 33%;
  }

  .section-nd {
    padding-bottom: 54px;
  }

  .nd-box {
    margin-top: 41px;
  }

  .nd-img-box {
    margin-bottom: 40px;
  }

  .section-wwr {
    padding-top: 86px;
    padding-bottom: 80px;
  }

  .wwr-wrapper {
    width: 100%;
  }

  .wwr-box {
    margin-top: 37px;
  }

  .wwr-content-box {
    margin-bottom: 33px;
  }

  .wwr-content-item {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .wwr-info-text {
    letter-spacing: .21px;
    font-size: 18px;
    line-height: 26px;
  }

  .bubble-inner {
    padding: 30px;
  }

  .testimonial-text {
    letter-spacing: .19px;
    font-size: 16px;
    line-height: 24px;
  }

  .testimonial-author-name {
    letter-spacing: .2px;
    font-size: 17px;
    line-height: 16px;
  }

  .testimonial-author-designation {
    letter-spacing: .14px;
    font-size: 12px;
    line-height: 16px;
  }

  .image {
    left: 100px;
  }

  .section-tc {
    padding-top: 56px;
    padding-bottom: 150px;
  }

  .tc-icon {
    margin-bottom: 14px;
  }

  .footer-form-box {
    padding: 46px 20px 55px;
  }

  .copyright-text {
    line-height: 21px;
  }

  .si-title-box-mobile {
    margin-bottom: 39px;
  }

  .tc-title-box-mobile {
    margin-bottom: 42px;
  }

  .navmenu-mobile2 {
    display: none;
  }

  .button-dark, .button-dark-border.margin-bottom {
    letter-spacing: .37px;
  }

  .brand-logo-menu {
    width: 173px;
    height: 29px;
    margin-top: 45px;
    margin-left: -75px;
  }

  .section-legal {
    padding-top: 25px;
    padding-bottom: 199px;
  }

  .legal-content-box {
    margin-top: 33px;
  }

  .legal-content-text-box {
    margin-top: 43px;
  }

  .heading-h2 {
    font-size: 32px;
  }

  .paragraph {
    font-size: 20px;
  }

  .paragraph.margin-bottom {
    letter-spacing: .21px;
    font-size: 18px;
    line-height: 26px;
  }

  .section-pricing-banner {
    padding-top: 27px;
    padding-bottom: 56px;
  }

  .button-row {
    flex-wrap: wrap;
    align-content: flex-start;
    margin-top: 36px;
  }

  .button-red, .button-black-border {
    width: 100%;
  }

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

  .section-pricing-feature {
    padding-top: 83px;
    padding-bottom: 71px;
  }

  .pf-wrapper {
    width: 100%;
  }

  .pf-box {
    margin-top: 88px;
  }

  .pf-item {
    margin-bottom: 74px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .pf-item.second-last {
    margin-bottom: 74px;
  }

  .pf-item-icon-box {
    margin-bottom: 17px;
  }

  .pf-item-title {
    letter-spacing: .25px;
    font-size: 21px;
    line-height: 32px;
  }

  .section-faq {
    padding-top: 51px;
  }

  .faq-box {
    margin-top: 51px;
  }

  .faq-img-box {
    margin-top: 48px;
  }

  .section-hitw-hero {
    padding-top: 36px;
    padding-bottom: 75px;
  }

  .hitw-wrapper {
    width: 100%;
  }

  .hitw-box {
    margin-top: 18px;
  }

  .hitw-content-box {
    padding-top: 47px;
  }

  .hitw-accordion-box {
    margin-top: 24px;
  }

  .dd-hitw-list {
    display: none;
  }

  .dd-hitw-content {
    font-size: 18px;
    line-height: 26px;
  }

  .dd-hitw-text {
    font-size: 18px;
  }

  .ef-box {
    width: 100%;
    margin-top: 43px;
  }

  .ef-item-trigger {
    margin-bottom: 34px;
  }

  .ef-item-trigger.last {
    margin-bottom: 0;
  }

  .features-item {
    margin-bottom: 28px;
    padding-left: 38px;
    padding-right: 28px;
  }

  .heading-h4 {
    font-size: 21px;
  }

  .heading-h4.is-subtext-new.plr {
    padding-left: 0;
  }

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

  .why-wrapper {
    width: 100%;
    padding-bottom: 0;
  }

  .why-voma {
    margin-top: 35px;
  }

  .why-content-box {
    padding-bottom: 50%;
  }

  .why-text {
    font-size: 16px;
    line-height: 24px;
  }

  .why-signature-box {
    margin-top: 5px;
  }

  .why-img {
    width: 50%;
  }

  .why-button-box {
    margin-top: 55px;
  }

  .button-red-big {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .section-features-hero {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-features-hero.hide {
    padding-top: 41px;
    padding-bottom: 68px;
  }

  .features-wrapper {
    width: 90%;
    padding-bottom: 0;
  }

  .features-img-box {
    margin-top: 20px;
  }

  .section-feature-content.hide {
    padding-top: 114px;
    padding-bottom: 180px;
  }

  .rich-text h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .image-4 {
    max-width: 80%;
  }

  .li-legal {
    letter-spacing: .21px;
    font-size: 18px;
  }

  .text-block-2 {
    letter-spacing: .25px;
    font-size: 21px;
  }

  .subtext-how {
    font-size: 21px;
    line-height: 26px;
  }

  .menu-inner-container {
    justify-content: space-between;
    align-items: center;
  }

  .heading {
    margin-bottom: 20px;
  }

  .section {
    padding-top: 0;
  }

  .section.is-features {
    min-height: 920px;
  }

  .section.bg-is-beige {
    padding-top: 0;
  }

  .section.bg-is-beige.p-t-100 {
    padding-top: 60px;
  }

  .section.is-sell-more {
    height: 1000px;
    padding-top: 10px;
  }

  .section.is-backbone {
    padding-top: 120px;
  }

  .container.no-bot-pad {
    padding-top: 10px;
  }

  .container.is-sell-more {
    padding-top: 20px;
  }

  .container.is-playbook {
    padding-top: 15px;
  }

  .container.is-bridge {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .container.mobile-no-top-padding {
    padding-bottom: 20px;
  }

  .page-head {
    margin-top: 10px;
    font-size: 36px;
  }

  .page-head.is-bold {
    font-size: 44px;
    line-height: 48px;
  }

  .container-small.hero {
    padding-top: 0;
  }

  .subtext-1 {
    letter-spacing: .21px;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 26px;
  }

  .horizontal-flex-block {
    align-items: flex-start;
  }

  .horizontal-flex-block.align-centre {
    justify-content: flex-start;
  }

  .button-wrap {
    flex-direction: column;
  }

  .primary-button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .main-video {
    min-height: 250px;
  }

  .section-below-video.is-pale-pink {
    margin-top: -186px;
  }

  .container-below-video {
    padding-top: 185px;
  }

  .section-head-large.is-playbook {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 17px;
  }

  .section-head-large.is-playbook-2 {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .play-btn-wrap {
    justify-content: center;
    align-items: center;
    margin-top: 24px;
  }

  .pale-pink-bg {
    min-height: 540px;
  }

  .features-content {
    align-items: flex-start;
  }

  .integrations-card-img-wrap {
    height: auto;
  }

  .logo-card {
    max-width: none;
    height: 256px;
  }

  .paragraph-4 {
    padding-top: 20px;
    font-size: 20px;
  }

  .h1-concierge-migration-2 {
    font-size: 21px;
    line-height: 24px;
  }

  .h1-concierge-migration-1 {
    font-size: 36px;
    line-height: 42px;
  }

  .button-features {
    text-align: center;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .button-features.is-pot-ty {
    margin-bottom: 20px;
    margin-right: 0;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .button-features.full-width {
    flex: 0 auto;
    width: 100%;
    margin-top: 0;
    font-size: 16px;
    display: block;
    overflow: visible;
  }

  .button-features.is-ty {
    font-size: 15px;
  }

  .flex-list {
    font-size: 16px;
    line-height: 24px;
  }

  .list-holder {
    padding-left: 0;
  }

  .offers-illustration {
    display: none;
  }

  .offer-body {
    font-size: 22px;
  }

  .flex-row.is-centred, .flex-row.is-step-2 {
    align-items: center;
  }

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

  .announcement-text.max-w-820 {
    align-self: center;
  }

  .bf-optin-submit {
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .downloadable-text {
    max-width: 75%;
  }

  .playbook-line {
    max-width: 50px;
    bottom: -40px;
  }

  .subtext-flex {
    padding-left: 0;
    padding-right: 0;
  }

  .promo-banner {
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px 12px 12px;
  }

  .bridge-lightbox.is-vsl-optin.open-popup {
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .bridge-lb-image {
    width: 100%;
    max-width: 100%;
  }

  .play-button {
    margin-top: 30px;
  }

  .make-money-subtext {
    font-size: 16px;
    line-height: 23px;
  }

  .bridge-subtext-large {
    margin-bottom: 9px;
  }

  .subhead {
    font-size: 15px;
  }

  .button-black-border-2, .button-red-2 {
    width: 100%;
  }

  .pricing-table-cell.is-first-col {
    flex-wrap: nowrap;
    align-content: stretch;
    max-width: 50px;
    padding-right: 5px;
  }

  .pricing-table-cell.is-first-col.is-comparison, .pricing-table-cell.is-first-col-header.is-comparison {
    min-width: 180px;
  }

  .partner-sub {
    font-size: 27px;
    line-height: 33px;
  }

  .button-dark-2 {
    letter-spacing: .37px;
  }

  .rich-text-2 h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .text-block-4 {
    font-size: 18px;
    line-height: 20px;
  }

  .text-block-5 {
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  .text-block-6 {
    font-size: 14px;
    line-height: 20px;
  }

  .italic-text {
    font-size: 12px;
    line-height: 16px;
  }

  .form-2 {
    width: auto;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .section-3 {
    padding-bottom: 0;
  }

  .heading-4 {
    text-align: left;
    font-size: 18px;
    line-height: 28px;
  }

  .text-block-11 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .inner-container._30.image-above-hero-v6 {
    top: 50px;
  }

  .inner-container._400px.max-width-100-mbp {
    max-width: 100%;
  }

  .text-breaking-no-wrap.is-web-reg {
    white-space: normal;
  }

  .mg-bottom-40px.is-opt-ty {
    font-size: 5.5vw;
  }

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

  .mg-bottom-large-v5 {
    margin-bottom: 43px;
  }

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

  .grid-3-columns._3-icon-list {
    justify-content: start;
    justify-items: start;
  }

  .grid-3-columns.image-center---icons-sides {
    grid-row-gap: 60px;
  }

  .border-radius-36px {
    border-radius: 20px;
  }

  .grid-2-columns._2-col-mbl._1-col-mbp {
    grid-template-columns: 1fr;
  }

  .grid-2-columns.contact-v1 {
    grid-row-gap: 60px;
  }

  .square-icon {
    border-radius: 14px;
    max-width: 56px;
  }

  .subtitle {
    margin-bottom: 15px;
  }

  .card.is-features, .card.content-left {
    padding-top: 40px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .card.content-left.testimonial-v1 {
    padding: 44px 25px 32px;
  }

  .card.form-v4 {
    min-height: 812px;
    padding: 45px 25px 51px;
  }

  .card.form {
    min-height: 970px;
    padding: 48px 25px;
  }

  .card.form.bg-neutral-200 {
    padding-top: 10px;
  }

  .card.testimonial-v2 {
    padding-top: 43px;
    padding-bottom: 43px;
  }

  .card.form-v3 {
    min-height: 708px;
    padding: 44px 25px 50px;
  }

  .cta-card {
    padding-top: 51px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .split-content.content-v7-left, .split-content.content-v6-right {
    margin-bottom: 60px;
  }

  .split-content.hero-v2-left {
    margin-bottom: 90px;
  }

  .split-content.content-v2-right {
    margin-bottom: 60px;
  }

  .split-content.card-testimonial-v2-left {
    margin-bottom: 20px;
  }

  .split-content.hero-v6-left {
    margin-bottom: 80px;
  }

  .triangle-bottom-right.bg-secondary-1.cta-v2 {
    right: 0%;
  }

  .square.bg-secondary-1.cta-v2 {
    left: 0%;
  }

  .circle.bg-secondary-3.hero-v2-circle-2 {
    margin-bottom: -60px;
  }

  .circle.bg-primary-1.top-left {
    left: -164px;
  }

  .position-absolute.bg-dots.top-right {
    right: -30px;
  }

  .mg-bottom-28px {
    margin-bottom: 16px;
  }

  .heading-h1-size {
    font-size: 32px;
  }

  .heading-h1-size.large {
    font-size: 36px;
  }

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

  .max-width-330px-mbp {
    max-width: 330px;
  }

  .avatar-image {
    width: 100%;
  }

  .subtitle-3 {
    margin-bottom: 15px;
  }

  .max-width-47px.mg-right-20px.mg-bottom-20px-mbp {
    margin-right: 0;
  }

  .card-link-icon {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .subtitle-4 {
    margin-bottom: 15px;
  }

  .input-2 {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    line-height: 18px;
  }

  .input-2::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .bg-split.right {
    min-height: 30%;
  }

  .buttons-row-left {
    align-self: stretch;
    margin-bottom: 15px;
    margin-right: 0;
  }

  .buttons-row {
    flex-direction: column;
  }

  .buttons-row.center {
    align-items: stretch;
  }

  .mg-bottom-13px {
    margin-bottom: 8px;
  }

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

  .border-radius-24px {
    border-radius: 20px;
  }

  .btn-primary {
    width: 100%;
    padding: 18px 20px;
  }

  .semicircle-left.secondary-1.hero-v2 {
    margin-bottom: -60px;
  }

  .divider, .divider._50px {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .heading-h3-size.mg-bottom-8px {
    margin-top: 0;
  }

  .section-4 {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .section-4.hero-v2 {
    padding-top: 40px;
    padding-bottom: 82px;
  }

  .section-4.hero-v6 {
    padding-top: 40px;
    padding-bottom: 68px;
  }

  .subtitle-5 {
    margin-bottom: 15px;
  }

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

  .subtitle-6 {
    margin-bottom: 15px;
  }

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

  .subtitle-7 {
    margin-bottom: 15px;
  }

  .mg-bottom-10px-2 {
    margin-bottom: 8px;
  }

  .button-features-outlined {
    padding: 14px 16px;
    font-size: 18px;
    line-height: 24px;
  }

  .premium-blog-flex {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .hero-title-decoration-2 {
    bottom: 7px;
  }

  .heading-h4-2 {
    font-size: 26px;
  }

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

  .hero-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }

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

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

  .heading-h3 {
    font-size: 30px;
  }

  .team-detail-image {
    margin-bottom: 0;
  }

  .hero-title {
    font-size: 42px;
  }

  .blog-grid-col {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .team-detail-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-search-wrap {
    margin-bottom: 70px;
  }

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

  .blog-box-meta {
    flex-wrap: wrap;
  }

  .hero-title-decoration {
    bottom: 7px;
  }

  .section-spacing-bottom {
    padding-bottom: 70px;
  }

  .blog-image {
    height: 350px;
  }

  .button-line-primary-2 {
    background-color: var(--light-coral);
  }

  .blog-collection-item {
    width: 300px;
  }

  .blog-hero-category {
    flex-wrap: wrap;
  }

  .webinar-rich h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .webinar-h1.margin-bottom {
    font-size: 42px;
  }

  .center-element-mbp {
    margin-left: auto;
    margin-right: auto;
  }

  .link-block-2 {
    color: var(--black);
    text-decoration: none;
  }

  .link-block-3 {
    color: #201f1f;
    text-decoration: none;
  }

  .link-block-4, .link-block-5, .link-block-6, .link-block-7 {
    text-decoration: none;
  }

  .link-block-8 {
    color: var(--black);
    text-decoration: none;
  }

  .link-block-9 {
    color: #000;
    text-decoration: none;
  }

  .nav-dropdown {
    text-align: left;
    letter-spacing: .65px;
    padding-left: 28px;
    font-size: 21px;
    line-height: 1.4;
  }

  .column {
    margin-top: 32px;
  }

  .popup-content-wrapper {
    border-radius: 24px;
  }

  .popup-content-wrapper.popup-1-content-wrapper {
    border-radius: 16px;
    left: 16px;
    right: 16px;
  }

  .dummy-hero-wrapper---brix.preview-page---brix {
    max-width: 100%;
  }

  .subscribe-button---scoop {
    text-align: center;
    background-position: 247px;
    padding: 15px 34px 16px 38px;
  }

  .popup---scoop {
    padding: 40px 16px 32px;
  }

  .popup-scoop-illustration {
    max-width: 40%;
    height: auto;
  }

  .popup-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .dummy-hero-button---brix {
    padding: 15px 34px 16px;
  }

  .nav-link-3 {
    text-align: left;
    letter-spacing: .65px;
    padding-left: 28px;
    font-size: 21px;
    line-height: 1.4;
  }

  .nav-link-3.sign-in, .nav-link-3.getstarted, .nav-link-3.get-started-new, .nav-link-3.sign-in-new {
    text-align: center;
  }

  .nav-dropdown-2 {
    text-align: left;
    letter-spacing: .65px;
    font-size: 21px;
    line-height: 1.4;
  }

  .dropdown-toggle-2 {
    padding-left: 10%;
  }

  .nav-link-4 {
    letter-spacing: .65px;
  }

  .top-level-nav-link {
    text-align: left;
    letter-spacing: .65px;
    font-size: 21px;
    line-height: 1.4;
  }

  .top-level-nav-link.is-pricing {
    margin-left: 10%;
  }

  .subtext-new {
    letter-spacing: .21px;
    font-size: 18px;
    line-height: 26px;
  }

  .subtext-new.why-voma {
    letter-spacing: .33px;
    margin-top: 25px;
    margin-bottom: 35px;
  }

  .text-color-off-black.margin-vertical.form {
    text-align: center;
  }

  .new-button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .container-new.is-playbook {
    padding-top: 15px;
  }

  .container-new.is-bridge {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .section-new.is-features {
    min-height: 920px;
  }

  .section-new.is-sell-more {
    height: 1000px;
  }

  .section-new.is-backbone {
    padding-top: 120px;
  }

  .browser-block {
    max-width: 80%;
    padding-left: 20px;
    padding-right: 20px;
    left: 5%;
  }

  .browser-block.is-slider {
    margin-left: 24px;
    margin-right: 35px;
    padding-top: 119px;
  }

  .browser-block.is-webinar {
    padding-left: 12px;
    padding-right: 12px;
  }

  .browser-bottom.is-opt-in {
    margin-left: -18px;
  }

  .browser-top-left-line.is-slider {
    top: 28px;
  }

  .sparkles-left {
    width: 100vw;
    left: -30.1vw;
  }

  .browser-button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .integrate-logo-block {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .tools-logo {
    max-width: 160px;
  }

  .browser-mob-button {
    padding-left: 16px;
    padding-right: 16px;
  }

  .browser-mob-image-grid {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .browser-img-profile {
    width: 80%;
  }

  .h3-new {
    line-height: 1.2;
  }

  .text-color-blue {
    font-weight: 700;
  }

  .h1-new.is-ty {
    color: var(--black);
    text-align: center;
    font-size: 24px;
    line-height: 32px;
  }

  .image-18 {
    bottom: -13%;
  }

  .webinar-date {
    font-size: 14px;
  }

  .webinar-illu-right.is-webinar.is-mobile {
    bottom: -15%;
  }

  .h3-opt-in {
    margin-bottom: 8px;
  }

  .slider-name-wrap {
    min-width: auto;
  }

  .h2-slider-browser {
    font-size: 6.5vw;
  }

  .h2-heading-offer {
    text-align: left;
    margin-bottom: 30px;
    font-size: 26px;
  }

  .h2-heading-offer.mg-t-60 {
    text-align: center;
    font-size: 30px;
  }

  .h2-heading-offer.is-thankyou-2 {
    font-size: 29px;
  }

  .benefit-holder {
    font-size: 17px;
  }

  .voma-multi-link.hide-on-mobile {
    margin-top: 20px;
  }

  .h1-heading-offer.is-thank-you.mobile-text-aligned-left {
    text-align: center;
    font-size: 26px;
  }

  .html-embed-2 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .benefit-list {
    font-size: 13px;
  }

  .text-block-17, .text-block-18, .text-block-19 {
    font-size: 18px;
  }

  .text-block-20, .text-block-21, .text-block-22, .text-block-23, .text-block-24, .text-block-25, .text-block-26, .text-block-27, .text-block-28, .text-block-29, .text-block-30 {
    font-size: 17px;
  }

  .image-23 {
    align-self: center;
    margin-bottom: 12px;
    padding-bottom: 0;
  }

  .html-embed-4 {
    margin-top: 40px;
    margin-bottom: 20px;
    inset: 0%;
  }

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

  .image-25 {
    max-width: 40%;
  }

  .italic-text-2 {
    font-size: 16px;
  }

  .h1-title-new-large {
    margin-top: 10px;
    font-size: 36px;
  }

  .h1-title-new-large.is-bold {
    font-size: 44px;
    line-height: 48px;
  }

  .section-hero-new {
    padding-top: 0;
  }

  .section-hero-new.is-features {
    min-height: 920px;
  }

  .section-hero-new.bg-is-beige {
    padding-top: 0;
  }

  .section-hero-new.bg-is-beige.p-t-100 {
    padding-top: 60px;
  }

  .section-hero-new.is-sell-more {
    height: 1000px;
    padding-top: 10px;
  }

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

  .subtext-1-new {
    letter-spacing: .21px;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 26px;
  }

  .purple-button-new {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .button-wrap-new {
    flex-direction: column;
  }

  .outline-button-new {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .home-logo {
    height: 24px;
  }

  .dropdown-toggle-new {
    padding-left: 10%;
  }

  .subtextt-new {
    letter-spacing: .21px;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 26px;
  }

  .subtextt-new.why-voma {
    letter-spacing: .33px;
    margin-top: 25px;
    margin-bottom: 35px;
  }

  .subtextt-new.is-playbook-optin {
    padding-left: 0;
    padding-right: 0;
  }

  .subtextt-new.align-left {
    margin-top: 0;
    font-size: 18px;
  }

  .subtextt-new.align-left.extendbold {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .subtextt-new.is-bold {
    font-size: 17px;
  }

  .subtext-new-1 {
    letter-spacing: .21px;
    font-size: 18px;
    line-height: 26px;
  }

  .subtext-new-1.why-voma {
    letter-spacing: .33px;
    margin-top: 25px;
    margin-bottom: 35px;
  }

  .container-new-1.no-bot-pad {
    padding-top: 10px;
  }

  .container-new-1.is-sell-more {
    padding-top: 20px;
  }

  .container-new-1.is-playbook {
    padding-top: 15px;
  }

  .container-new-1.is-bridge {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .container-new-1.mobile-no-top-padding {
    padding-bottom: 20px;
  }

  .button-blue {
    text-align: center;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .button-blue.is-pot-ty {
    margin-bottom: 20px;
    margin-right: 0;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .button-blue.full-width {
    width: 100%;
  }

  .button-blue.is-ty {
    font-size: 15px;
  }

  .nav-dropdown-3 {
    text-align: left;
    letter-spacing: .65px;
    font-size: 21px;
    line-height: 1.4;
  }

  .h1-title-new {
    margin-top: 10px;
  }

  .h1-title-new.is-bold {
    font-size: 44px;
    line-height: 48px;
  }

  .video {
    border-width: 4px;
  }

  .heading-list-item.align-centre {
    justify-content: flex-start;
  }

  .black-button-new {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .new-section.is-features {
    min-height: 920px;
  }

  .new-section.bg-is-beige {
    padding-top: 0;
  }

  .new-section.bg-is-beige.p-t-100 {
    padding-top: 60px;
  }

  .new-section.is-sell-more {
    height: 1000px;
    padding-top: 10px;
  }

  .new-section.is-backbone {
    padding-top: 120px;
  }

  .fav-tool-content {
    padding: 20px 20px 40px;
  }

  .new-container.no-bot-pad {
    padding-top: 10px;
  }

  .new-container.is-sell-more {
    padding-top: 20px;
  }

  .new-container.is-playbook {
    padding-top: 15px;
  }

  .new-container.is-bridge {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .new-container.mobile-no-top-padding {
    padding-bottom: 20px;
  }

  .new-paragraph.align-left-mobile {
    text-align: left;
  }
}

#w-node-_40d68d29-ba07-3ce1-07ea-f1ddbd1e96c6-c33a5de2, #w-node-_1aadf7d4-0049-87cc-21d6-b5ada69eecf2-c33a5de2, #w-node-_8c0d8fc1-3764-29f8-e55e-2768ebf2b11f-c33a5de2, #w-node-_43374432-a74c-b615-f38f-2a5670af624c-c33a5de2, #w-node-_0a1be9bf-10ef-f82a-bf62-a7f4a27ab080-c33a5de2, #w-node-d8f2c72d-706e-db21-ca21-b1e01473df6e-c33a5de2, #w-node-_0e95ccd1-4b67-972b-ee9f-d80a6dbab6c0-c33a5de2, #w-node-ecfbfc28-958b-eeee-72ed-b3e57128ae98-c33a5de2, #w-node-_1189d713-d716-d4ee-b184-3249871b1696-c33a5de2, #w-node-e8b6fa34-389c-24fb-f455-7b06addd42aa-c33a5de2, #w-node-_75b6d006-65b2-a1bf-ec38-7bbe5f523a6b-c33a5de2, #w-node-_7db15715-5da3-82fe-4f4a-0694c1a9b75a-c33a5de2, #w-node-d9b4a67f-8a8d-03d0-3121-f2070c3f17c4-c33a5de2, #w-node-_6dd51e74-09f3-214c-7d68-36b46eed6fb2-c33a5de2, #w-node-_4bf4799d-869d-4cc4-8a37-a710f58bbc15-c33a5de2, #w-node-_930a2f7a-f956-4311-e853-e51e2e74d888-56a361e4, #w-node-_930a2f7a-f956-4311-e853-e51e2e74d88d-56a361e4, #w-node-_930a2f7a-f956-4311-e853-e51e2e74d892-56a361e4, #w-node-_930a2f7a-f956-4311-e853-e51e2e74d897-56a361e4, #w-node-_930a2f7a-f956-4311-e853-e51e2e74d89c-56a361e4, #w-node-_930a2f7a-f956-4311-e853-e51e2e74d8a1-56a361e4, #w-node-_930a2f7a-f956-4311-e853-e51e2e74d8a6-56a361e4, #w-node-_930a2f7a-f956-4311-e853-e51e2e74d8ab-56a361e4, #w-node-_930a2f7a-f956-4311-e853-e51e2e74d8b0-56a361e4, #w-node-_930a2f7a-f956-4311-e853-e51e2e74d8b5-56a361e4, #w-node-_930a2f7a-f956-4311-e853-e51e2e74d8ba-56a361e4, #w-node-_930a2f7a-f956-4311-e853-e51e2e74d8bf-56a361e4, #w-node-_930a2f7a-f956-4311-e853-e51e2e74d8c4-56a361e4, #w-node-_930a2f7a-f956-4311-e853-e51e2e74d8c9-56a361e4, #w-node-_930a2f7a-f956-4311-e853-e51e2e74d8ce-56a361e4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_2c50d1c0-5cfa-e02e-ce91-61630dbb9bc4-e20562d0, #w-node-ecce7d3c-7019-763c-58a6-7de5d1cb5bf1-e20562d0, #w-node-_6222bdee-4477-e81b-2022-d30063dd6698-e20562d0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a1ea9c3f-467f-4b9a-fea7-6d07136b286e-e20562d0 {
  align-self: start;
}

#w-node-a1ea9c3f-467f-4b9a-fea7-6d07136b287b-e20562d0 {
  justify-self: end;
}

#w-node-a1ea9c3f-467f-4b9a-fea7-6d07136b288a-e20562d0 {
  place-self: stretch end;
}

#w-node-_6d5f2360-f817-2c45-44d4-4ffb176edc63-e20562d0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-aab55c03-d87a-2417-3999-f1af74419951-e9e55712, #w-node-aab55c03-d87a-2417-3999-f1af74419955-e9e55712 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-aab55c03-d87a-2417-3999-f1af74419969-e9e55712 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-c4464f63-9efe-fad5-01ac-8deddd5670a8-e9e55712, #w-node-c4464f63-9efe-fad5-01ac-8deddd5670b4-e9e55712, #w-node-c4464f63-9efe-fad5-01ac-8deddd5670c4-e9e55712, #w-node-c4464f63-9efe-fad5-01ac-8deddd5670d0-e9e55712, #w-node-_48826ba5-ab99-869a-a0ff-34d754c46d19-b326a11a, #w-node-_48826ba5-ab99-869a-a0ff-34d754c46d31-b326a11a, #w-node-_48826ba5-ab99-869a-a0ff-34d754c46cdf-b326a11a, #w-node-_48826ba5-ab99-869a-a0ff-34d754c46ce7-b326a11a, #w-node-_61ea7c2c-7c03-836e-3efa-de8932843bf0-b326a11a, #w-node-_48826ba5-ab99-869a-a0ff-34d754c46d03-b326a11a, #w-node-_48826ba5-ab99-869a-a0ff-34d754c46d05-b326a11a, #w-node-_48826ba5-ab99-869a-a0ff-34d754c46d42-b326a11a, #w-node-_467bde83-ee67-2c75-3a70-8714e9bdc148-5af9d2ad, #w-node-_467bde83-ee67-2c75-3a70-8714e9bdc14c-5af9d2ad, #w-node-_0b1ae883-491e-f13b-66c9-8d57b97fde04-a4b931cc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-aab55c03-d87a-2417-3999-f1af74419951-fa3eb4ba, #w-node-aab55c03-d87a-2417-3999-f1af74419955-fa3eb4ba {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-aab55c03-d87a-2417-3999-f1af74419969-fa3eb4ba {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_91425053-2d8c-3e35-c42f-1f12576545c7-715dff1f, #w-node-a74a9600-22aa-9c2b-456b-9d61b371a346-83dac081, #w-node-_40b9c840-2f43-d661-af73-b51ec12369fc-83dac081, #w-node-_9b8734cc-62fc-78f1-d3c9-0d86e38ad1c3-83dac081, #w-node-b4dc7eaf-7422-04db-8e7e-b4241463e9df-83dac081, #w-node-_58aab7ab-2029-a77a-3b6f-117c21543cb6-83dac081, #w-node-_90a91c2b-627c-5a80-c795-4248c380f686-83dac081, #w-node-f5198fc7-fede-c748-ed48-828cd5382ff3-83dac081, #w-node-_390ef0d6-d2ca-3f45-5888-bd85cc2119c2-83dac081, #w-node-_91425053-2d8c-3e35-c42f-1f12576545c7-8aacc4bb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#deadline-emails-form.w-node-aab55c03-d87a-2417-3999-f1af74419951-94b7f027, #w-node-aab55c03-d87a-2417-3999-f1af74419955-94b7f027 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-aab55c03-d87a-2417-3999-f1af74419969-94b7f027 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd30f-8b2d0064, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd314-8b2d0064, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd319-8b2d0064, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd31e-8b2d0064, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd323-8b2d0064, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd328-8b2d0064, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd32d-8b2d0064, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd332-8b2d0064, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd337-8b2d0064, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd33c-8b2d0064, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd341-8b2d0064, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd346-8b2d0064, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd34b-8b2d0064, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd350-8b2d0064, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd355-8b2d0064, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd314-cb01c77e, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd319-cb01c77e, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd31e-cb01c77e, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd323-cb01c77e, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd328-cb01c77e, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd32d-cb01c77e, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd332-cb01c77e, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd33c-cb01c77e, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd341-cb01c77e, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd346-cb01c77e, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd34b-cb01c77e, #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd350-cb01c77e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-aab55c03-d87a-2417-3999-f1af74419951-18504122, #w-node-aab55c03-d87a-2417-3999-f1af74419955-18504122 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-aab55c03-d87a-2417-3999-f1af74419969-18504122 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_348bc333-155e-2a68-ca38-8aacdc57e104-a1b4ace6, #w-node-_348bc333-155e-2a68-ca38-8aacdc57e108-a1b4ace6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_348bc333-155e-2a68-ca38-8aacdc57e10c-a1b4ace6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_348bc333-155e-2a68-ca38-8aacdc57e104-8c7d8e9d, #w-node-_348bc333-155e-2a68-ca38-8aacdc57e108-8c7d8e9d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_348bc333-155e-2a68-ca38-8aacdc57e10c-8c7d8e9d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-a1ea9c3f-467f-4b9a-fea7-6d07136b288a-e20562d0 {
    justify-self: auto;
  }

  #w-node-_390ef0d6-d2ca-3f45-5888-bd85cc2119c2-83dac081 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_4bf4799d-869d-4cc4-8a37-a710f58bbc15-c33a5de2, #w-node-_930a2f7a-f956-4311-e853-e51e2e74d8ce-56a361e4 {
    grid-column: span 2 / span 2;
  }

  #w-node-_6d5f2360-f817-2c45-44d4-4ffb176edc63-e20562d0, #w-node-aab55c03-d87a-2417-3999-f1af74419969-e9e55712, #w-node-aab55c03-d87a-2417-3999-f1af74419969-fa3eb4ba, #w-node-_91425053-2d8c-3e35-c42f-1f12576545c7-715dff1f, #w-node-_91425053-2d8c-3e35-c42f-1f12576545c7-a5193352, #w-node-_91425053-2d8c-3e35-c42f-1f12576545c7-8aacc4bb, #w-node-aab55c03-d87a-2417-3999-f1af74419969-94b7f027 {
    grid-column: span 1 / span 1;
  }

  #w-node-_81fc2fa8-163c-f3a1-09da-15cbebfcd355-8b2d0064 {
    grid-column: span 2 / span 2;
  }

  #w-node-aab55c03-d87a-2417-3999-f1af74419969-18504122, #w-node-_348bc333-155e-2a68-ca38-8aacdc57e10c-a1b4ace6, #w-node-_348bc333-155e-2a68-ca38-8aacdc57e10c-8c7d8e9d {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_6d5f2360-f817-2c45-44d4-4ffb176edc63-e20562d0 {
    justify-self: auto;
  }
}


@font-face {
  font-family: 'Alte Haas Grotesk';
  src: url('../fonts/AlteHaasGroteskRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Alte Haas Grotesk';
  src: url('../fonts/AlteHaasGroteskBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}