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

body {
  font-family: Montserrat, sans-serif;
  color: #000;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1296px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

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

.pricing-plan-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.pricing-plan {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 72px;
  padding: 36px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 30px;
  color: #727272;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.pricing-plan.recommended {
  background-color: #f5f5f5;
}

.pricing-icon {
  margin-top: -24%;
}

.dollar-sign {
  margin-top: 3px;
  margin-right: 5px;
  margin-bottom: auto;
}

.price {
  color: #000;
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
}

.month {
  margin-top: auto;
  margin-bottom: 5px;
  margin-left: 5px;
}

.price-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 20px;
}

.pricing-title {
  color: #000;
  font-size: 28px;
  line-height: 32px;
  font-weight: 600;
}

.button {
  padding: 10px 20px;
  border: 2px solid #000;
  border-radius: 4px;
  background-color: #000;
  -webkit-transition: color 200ms ease-in-out, background-color 200ms ease-in-out;
  transition: color 200ms ease-in-out, background-color 200ms ease-in-out;
  color: #fff;
  font-size: 18px;
}

.button:hover {
  background-color: #fff;
  color: #000;
}

.button.button-secondary {
  display: block;
  margin-top: 24px;
  background-color: #fff;
  color: #000;
}

.button.button-secondary:hover {
  background-color: #000;
  color: #fff;
}

.pricing-description {
  max-width: 250px;
  padding-bottom: 43px;
}

.price-tag {
  margin-top: 32px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}

.pricing-comparison-wrap {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.comparison-row {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1.5fr 1fr 1fr;
  grid-template-columns: 1.5fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  border-bottom: 1px solid #dcdcdc;
}

.comparison-row.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 5;
  padding-top: 26px;
  padding-bottom: 26px;
  -ms-grid-columns: 1.5fr 1fr 1fr;
  grid-template-columns: 1.5fr 1fr 1fr;
  background-color: #fff;
}

.comparison-feature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 28px;
  padding-bottom: 28px;
  color: #727272;
}

.comparison-item {
  padding-top: 28px;
  padding-bottom: 28px;
}

.comparison-item.check {
  background-image: url('../images/check.svg');
  background-position: 0% 50%;
  background-size: auto;
  background-repeat: no-repeat;
}

.comparison-item.check.with-text {
  padding-left: 24px;
}

.comparison-item.x {
  background-image: url('../images/x.svg');
  background-position: 0% 50%;
  background-size: auto;
  background-repeat: no-repeat;
}

.comparison-header-title {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 600;
}

.comparison-header-title.feature {
  color: #727272;
}

.tooltip-button {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 5px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 1;
  cursor: default;
}

.tooltip {
  padding: 8px 12px;
  border-radius: 4px;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.tooltip-wrap {
  position: absolute;
  bottom: 40px;
  z-index: 10;
  display: block;
  width: 300px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tooltip-arrow {
  position: absolute;
  left: 50%;
  bottom: -8px;
  z-index: 0;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-radius: 2px;
  background-color: #000;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.tooltip-copy {
  position: relative;
  z-index: 1;
  display: block;
}

.flowmingo-logo {
  display: inline-block;
  width: 200px;
  height: 35px;
  margin-top: 2px;
}

.flowmingo-logo:hover {
  -webkit-transform: rotate(-18deg);
  -ms-transform: rotate(-18deg);
  transform: rotate(-18deg);
}

.nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 999;
  display: block;
  width: 100%;
  background-color: #000;
}

.brand {
  margin-right: auto;
  padding-left: 0px;
}

.nav-link {
  margin-left: 32px;
  padding: 0px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.nav-link:hover {
  color: #000;
}

.navbar {
  z-index: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 0px;
  padding: 20px 32px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 4px;
  background-color: #000;
}

.text-block {
  color: #222;
}

.bold-text {
  color: #fff;
}

.tabs-content {
  overflow: visible;
  width: 70%;
}

.contact-box-fixed {
  position: absolute;
  left: 30px;
  top: 515px;
  right: auto;
  bottom: 30px;
  max-width: 25%;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.per-month {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 22px;
}

.tabs-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 30%;
  height: 100%;
  padding: 30px 42px 30px 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.paragraph {
  max-width: 30ch;
  color: rgba(51, 51, 51, 0.6);
}

.price-top-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 52px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.button-price {
  width: 100%;
  margin-top: 16px;
  padding: 16px 24px;
  border-radius: 100px;
  background-color: #f9f2ff;
  color: #4e2d92;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.button-price.max-width {
  max-width: 250px;
  background-color: #fff;
  color: #000;
}

.check-grid-large {
  min-height: 150px;
  margin-top: 32px;
  margin-bottom: 20px;
  -webkit-align-content: start;
  -ms-flex-line-pack: start;
  align-content: start;
  grid-auto-flow: column;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto auto auto auto;
  grid-template-rows: auto auto auto auto auto;
}

.title-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 92px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #7b88a8;
  text-align: center;
}

.content-h1 {
  position: relative;
  z-index: 2;
  margin-top: 0px;
  margin-bottom: 20px;
  color: #000;
  font-size: 55px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.subtitle {
  color: #848199;
  font-size: 20px;
  font-weight: 400;
}

.check {
  margin-right: 20px;
}

.tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.feature-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.price-card-dark {
  position: relative;
  width: 100%;
  padding: 72px 80px;
  border-radius: 25px;
  background-color: #1d1d1d;
  box-shadow: 0 90px 90px -50px rgba(141, 141, 141, 0.39);
  color: #fff;
}

.container-2 {
  position: relative;
  width: 100%;
  max-width: 1170px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tab-link {
  min-width: 100px;
  padding: 32px 0px 20px;
  border-bottom: 3px solid hsla(0, 0%, 100%, 0);
  background-color: transparent;
  color: #361c6c;
  font-size: 30px;
}

.tab-link.w--current {
  border-bottom: 3px solid #999;
  background-color: transparent;
  color: #3b3b3b;
}

.price-illustration {
  position: absolute;
  left: auto;
  top: auto;
  right: -8%;
  bottom: -8%;
}

.pricing-section {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  min-height: 100vh;
  padding: 0px 3% 120px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
}

.text-block-2 {
  color: #d6d6d6;
}

.text-block-3 {
  color: #3b3b3b;
  line-height: 26px;
}

.text-block-4 {
  color: #3b3b3b;
}

.text-block-5 {
  color: #3b3b3b;
  line-height: 26px;
}

.title-wrap-copy {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 92px;
  padding-top: 68px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #7b88a8;
  text-align: center;
}

.page-wrapper {
  padding-top: 92px;
  padding-left: 0px;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.founders-wrapper {
  position: relative;
  width: 100%;
}

.home-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 740px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.send-wrapper {
  position: relative;
  width: 100%;
}

.process-steps-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  margin-top: 282px;
  padding-top: 210px;
  padding-bottom: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.representation-wrapper {
  position: relative;
  width: 100%;
}

.process-step {
  display: -ms-grid;
  display: grid;
  padding-top: 8px;
  padding-bottom: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  opacity: 0.7;
  cursor: pointer;
}

.process-step._3 {
  opacity: 1;
}

.process-step._4 {
  opacity: 1;
}

.process-step._1 {
  opacity: 1;
}

.process-step._5 {
  opacity: 1;
}

.process-step._2 {
  opacity: 1;
}

.step-number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 45px;
  height: 45px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: hsla(0, 0%, 100%, 0.5);
  border-radius: 50%;
  color: hsla(0, 0%, 99.3%, 0.5);
  font-weight: 700;
}

.container-3 {
  max-width: 1440px;
}

.offer-wrapper {
  position: relative;
  width: 100%;
}

.home-component {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 100vh;
  padding-top: 293px;
  padding-bottom: 810px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.dotted-line {
  position: relative;
  display: block;
  width: 1px;
  height: 150px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-right: 1px dashed hsla(0, 0%, 100%, 0.5);
  background-color: #000;
}

.home-task-wrapper {
  position: relative;
  width: 100%;
}

.step-contents {
  position: absolute;
  top: -100%;
  z-index: 5;
  display: block;
  padding: 20px 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  grid-row-gap: 12px;
  border-radius: 12px;
  background-color: #fafafa;
  background-image: none;
  opacity: 1;
}

.step-contents.offer-stage {
  top: -112%;
  display: block;
  opacity: 1;
}

.step-heading {
  font-family: Oswald, sans-serif;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  font-weight: 300;
  text-align: right;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.section_home {
  position: relative;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, #3d2000, #000 48%);
}

.bg-black {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  background-color: #000;
}

.bg-gradient {
  position: relative;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, #000, #3d0000 24%, red 67%, #fff);
}

.heading {
  margin-top: 173px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 80px;
  text-align: center;
}

.paragraph-4 {
  font-size: 16px;
}

.text-block-6 {
  color: #fff;
}

.nav-link-2 {
  color: #fff;
}

.nav-link-2.w--current {
  color: #fff;
}

.image {
  max-width: 200px;
}

.accordion-icon-stripe-1 {
  width: 1px;
  height: 100%;
  background-color: #fff;
}

.accordion-top-icon-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 17px;
  height: 17px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.accordion-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 1;
  -webkit-transition: opacity 600ms cubic-bezier(.19, 1, .22, 1);
  transition: opacity 600ms cubic-bezier(.19, 1, .22, 1);
}

.accordion-top:hover {
  opacity: 0.64;
}

.accordion-divider {
  height: 0px;
  border-top: 1px solid #202020;
}

.accordion-bottom-text {
  width: 100%;
  margin-bottom: 0px;
  color: #b4b4b4;
  font-weight: 400;
}

.accordion-bottom-wrap {
  width: 100%;
  padding-top: 16px;
  padding-bottom: 32px;
}

.accordion-bottom {
  overflow: hidden;
  width: 100%;
  -webkit-perspective-origin: 50% 0%;
  perspective-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
}

.accordion-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.accordion {
  width: 100%;
  border-bottom: 1px solid #202020;
  cursor: pointer;
}

.accordion-top-icon {
  position: relative;
  margin-right: -16px;
  padding: 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.accordion-top-text {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.accordion-icon-stripe-2 {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.accordion-top-wrap {
  padding-top: 16px;
  padding-bottom: 16px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.faq-container {
  padding: 100px 60px 138px;
  background-color: #000;
}

.heading-2 {
  margin-top: 0px;
  color: #fafafa;
  text-align: center;
}

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

.infotext {
  color: #7d7d7d;
  font-size: 0.875em;
  line-height: 1.4em;
}

.container-w3 {
  width: 100%;
  max-width: 52.5em;
  margin-right: auto;
  margin-left: auto;
}

.container-w3.gutter-outside {
  position: relative;
  z-index: 2;
}

.p-xl-start {
  padding-top: 8.5em;
}

.p-xl-start.p-xl-end {
  padding-top: 25vh;
}

.section-tablet-scroll-animation {
  position: relative;
  z-index: -1;
  overflow: hidden;
  margin-top: -85px;
  padding-top: 0px;
  background-color: transparent;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.wow-heading {
  margin-bottom: 0.1em;
  font-size: 3em;
  line-height: 1;
  font-weight: 600;
}

.wow-heading.wow-gradient {
  padding-bottom: 10vh;
  background-image: linear-gradient(172deg, #bbb 32%, #fff 76%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wow-heading.wow-gradient.big {
  background-image: none;
  font-family: Raleway, sans-serif;
  color: #fff;
  font-size: 6em;
  font-weight: 900;
}

.ipad-mockup {
  position: relative;
  z-index: 50;
}

.container-w2 {
  width: 100%;
  max-width: 83.125em;
  margin-right: auto;
  margin-left: auto;
}

.container-w2.gutter-outside {
  position: relative;
  z-index: 50;
  margin-top: -202px;
  margin-bottom: 65px;
  padding-top: 0px;
  padding-right: 10vw;
  padding-left: 10vw;
}

.ipad-shape {
  position: relative;
  z-index: 50;
  width: 100%;
  box-shadow: 10px 10px 3px 20px #000;
}

.screenshot-scroll {
  width: 100%;
}

.ipad-screen {
  position: absolute;
  left: 3%;
  top: 4%;
  z-index: 1;
  width: 93.8%;
  height: 91.6%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ipad-screen.overflow-hidden {
  z-index: 50;
  overflow: hidden;
}

.p-sm-start {
  padding-top: 3em;
}

.tablet-mockup-animation {
  position: relative;
  z-index: 50;
}

._3d-tablet-wrap {
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-perspective-origin: 50% 50%;
  perspective-origin: 50% 50%;
}

.bold-text-2 {
  color: #fff;
  font-weight: 900;
}

.title-wrap-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 35px;
  padding-right: 10px;
  padding-left: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

.heading-primary {
  max-width: 500px;
  margin-top: 0px;
  margin-bottom: 20px;
  color: #1a3066;
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.heading-primary.h3-centre {
  z-index: 55;
  width: 100vw;
  padding-top: 0px;
  color: #fff;
  text-align: center;
}

.counterup {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 30px;
  line-height: 52px;
}

.feature-number-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.title-capped {
  color: #858585;
  font-size: 16px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.circle-div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  max-height: 200px;
  max-width: 200px;
  min-height: 200px;
  min-width: 200px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 1000px;
  background-color: #000;
  background-image: url('../images/Basketball-1-2.png');
  background-position: 0px 0px;
  background-size: cover;
  box-shadow: 1px 1px 3px 0 #ff8c00, 8px 8px 150px 0 rgba(255, 140, 0, 0.43);
}

.faq-section {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  padding: 100px 5% 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
}

.container-4 {
  width: 100%;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 47px;
}

.title {
  max-width: 500px;
  margin-bottom: 15px;
  color: #bbb;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.statistic-circle-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  padding: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-padding {
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}

.container-5 {
  position: relative;
  z-index: 2;
  max-width: 80rem;
  margin-right: auto;
  margin-left: auto;
}

.container-5.hero {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10rem;
  padding-bottom: 10rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.heading-3 {
  font-size: 15rem;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 16px 24px rgba(0, 0, 0, 0.25), 0 24px 40px rgba(0, 0, 0, 0.25), 0 60px 80px rgba(0, 0, 0, 0.6);
}

.hero-description {
  max-width: 40ch;
  font-size: 2rem;
}

.hero-bg-img {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  z-index: 0;
  display: none;
  width: 100%;
  font-family: Raleway, sans-serif;
  font-weight: 400;
  -o-object-fit: fill;
  object-fit: fill;
}

.heading-4 {
  margin-top: -57px;
  color: #fff;
  font-size: 150px;
  font-weight: 900;
  text-shadow: 1px 1px 6px #000;
}

.heading-5 {
  margin-top: 111px;
  color: #fff;
}

.video {
  position: absolute;
}

.background-video {
  position: absolute;
  min-width: 100vw;
}

.html-embed {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
}

.div-block {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  background-color: #000;
  opacity: 0.8;
}

.video-background-section {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.video-wrap {
  position: absolute;
  z-index: -999;
  width: 1000%;
  height: 100%;
  padding-bottom: 100%;
}

.video-embed {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  opacity: 0.28;
}

.body {
  display: block;
  background-color: #000;
}

.heading-6 {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 13%;
  bottom: auto;
  z-index: 100;
  padding-top: 289px;
  font-family: Raleway, sans-serif;
  color: #fff;
  font-size: 50px;
  text-align: right;
  text-shadow: 1px 1px 6px #000;
}

.bullets {
  z-index: 100;
  max-width: 50vw;
  min-width: 50vw;
  margin-top: -3px;
  padding-top: 91px;
  padding-left: 84px;
  color: #fff;
  font-size: 34px;
  line-height: 38px;
  text-align: left;
  text-shadow: 1px 1px 6px #000;
}

.process-step-1 {
  display: -ms-grid;
  display: grid;
  padding-top: 8px;
  padding-bottom: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  opacity: 0.7;
  cursor: pointer;
}

.process-step-1._3 {
  opacity: 1;
}

.process-step-1._4 {
  opacity: 1;
}

.process-step-1._1 {
  opacity: 1;
}

.process-step-1._5 {
  opacity: 1;
}

.process-step-1._2 {
  opacity: 1;
}

.process-step-2 {
  display: -ms-grid;
  display: grid;
  padding-top: 8px;
  padding-bottom: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  opacity: 0.7;
  cursor: pointer;
}

.process-step-2._3 {
  opacity: 1;
}

.process-step-2._4 {
  opacity: 1;
}

.process-step-2._1 {
  opacity: 1;
}

.process-step-2._5 {
  opacity: 1;
}

.process-step-2._2 {
  opacity: 1;
}

.process-step-3 {
  display: -ms-grid;
  display: grid;
  padding-top: 8px;
  padding-bottom: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  opacity: 0.7;
  cursor: pointer;
}

.process-step-3._3 {
  opacity: 1;
}

.process-step-3._4 {
  opacity: 1;
}

.process-step-3._1 {
  opacity: 1;
}

.process-step-3._5 {
  opacity: 1;
}

.process-step-3._2 {
  opacity: 1;
}

.process-step-4 {
  display: -ms-grid;
  display: grid;
  padding-top: 8px;
  padding-bottom: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  opacity: 0.7;
  cursor: pointer;
}

.process-step-4._3 {
  opacity: 1;
}

.process-step-4._4 {
  opacity: 1;
}

.process-step-4._1 {
  opacity: 1;
}

.process-step-4._5 {
  opacity: 1;
}

.process-step-4._2 {
  opacity: 1;
}

.process-step-5 {
  display: -ms-grid;
  display: grid;
  padding-top: 8px;
  padding-bottom: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  opacity: 0.7;
  cursor: pointer;
}

.process-step-5._3 {
  opacity: 1;
}

.process-step-5._4 {
  opacity: 1;
}

.process-step-5._1 {
  opacity: 1;
}

.process-step-5._5 {
  opacity: 1;
}

.process-step-5._2 {
  opacity: 1;
}

.process-stepforanimation {
  display: -ms-grid;
  display: grid;
  padding-top: 8px;
  padding-bottom: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  opacity: 0.7;
  cursor: pointer;
}

.process-stepforanimation._3 {
  opacity: 1;
}

.process-stepforanimation._4 {
  opacity: 1;
}

.process-stepforanimation._1 {
  opacity: 1;
}

.process-stepforanimation._5 {
  opacity: 1;
}

.process-stepforanimation._2 {
  opacity: 1;
}

.heading-12 {
  margin-top: 124px;
  color: #fff;
  font-size: 70px;
  text-align: center;
}

.container-6 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.image-2 {
  max-height: 50vh;
  min-width: 50vw;
}

.feature-list-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 67.5rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 167px;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.feature-list-track {
  width: 22rem;
  margin-right: 7rem;
  padding-top: 80vh;
  padding-bottom: 50vh;
}

.font-smoothing {
  display: none;
}

.feature-content-track {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 25rem;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.feature-heading {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #000;
  font-size: 2.125rem;
  line-height: 1.2;
  font-weight: 700;
}

.full-image {
  display: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.full-image._1 {
  -o-object-fit: cover;
  object-fit: cover;
}

.feature-content-wrapper {
  overflow: hidden;
  width: 100%;
  height: 25rem;
  border-radius: 1.875rem;
  background-color: #f5f5f7;
}

.feature-text {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  opacity: 0.2;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

.main-wrapper-2 {
  width: 100vw;
  height: 100vh;
}

.section-2 {
  position: static;
  top: 0px;
  max-height: 200vh;
  min-height: 200vh;
  color: #fff;
}

.lottie-animation {
  max-width: 100vw;
}

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

.lottie-animation-2 {
  min-height: 400px;
  min-width: 400px;
}

.div-block-3 {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
}

.btn-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  max-width: 100vw;
  padding-top: 0px;
  padding-bottom: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #000;
}

.btn__sha-0300 {
  position: relative;
  display: inline-block;
  overflow: hidden;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-style: solid;
  border-width: 2px;
  border-color: #2a3239;
  border-radius: 5px 5px 20px 20px;
  background-color: #1f1f1f;
  box-shadow: 0 5px 20px 2px rgba(255, 115, 0, 0.3), 0 10px 6px -5px rgba(42, 50, 57, 0.4);
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-transition: all 100ms cubic-bezier(.39, .575, .565, 1);
  transition: all 100ms cubic-bezier(.39, .575, .565, 1);
  font-family: 'Varela Round', sans-serif;
  color: #2a3239;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
  letter-spacing: 5px;
  text-decoration: none;
  text-transform: uppercase;
}

.btn__sha-0300:hover {
  box-shadow: 0 16px 20px -10px rgba(42, 50, 57, 0);
}

.sha-0300__wrap {
  position: relative;
  overflow: hidden;
  border-radius: 3px 3px 19px 19px;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, #ff7300 54%, #ff3c00);
  box-shadow: 1px 1px 3px 0 #000;
  -webkit-transform: scale3d(1, 0.92, 1);
  transform: scale3d(1, 0.92, 1);
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.sha-0300__grad--b {
  position: absolute;
  left: 0%;
  right: 0%;
  bottom: 0%;
  height: 50%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(42, 50, 57, 0.15)));
  background-image: linear-gradient(180deg, transparent, rgba(42, 50, 57, 0.15));
}

.sha-0300__grad--t {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  height: 50%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(42, 50, 57, 0.25)), to(rgba(42, 50, 57, 0)));
  background-image: linear-gradient(180deg, rgba(42, 50, 57, 0.25), rgba(42, 50, 57, 0));
}

.sha-0300__label {
  position: relative;
  padding: 35px 45px;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0px;
}

.heading-copy {
  margin-top: 173px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 80px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .pricing-plan-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .pricing-plan {
    max-width: 400px;
    margin-top: 90px;
    margin-right: auto;
    margin-left: auto;
  }

  .pricing-icon {
    margin-top: -55%;
  }

  .menu-button {
    padding: 0px;
    background-color: transparent;
    color: #000;
    font-size: 30px;
  }

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

  .nav-link {
    display: block;
    margin-bottom: 16px;
    margin-left: 0px;
  }

  .nav-link.last-child {
    margin-bottom: 0px;
  }

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

  .nav-menu {
    margin-top: 8px;
    padding: 16px 32px;
    border-radius: 4px;
    background-color: #f5f5f5;
  }

  .tabs-content {
    width: 100%;
  }

  .contact-box-fixed {
    position: relative;
    left: 0px;
    top: 40px;
    bottom: 0px;
    width: auto;
    max-width: 430px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .tabs-menu {
    width: 100%;
    padding-top: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .paragraph {
    max-width: none;
  }

  .title-wrap {
    margin-bottom: 60px;
  }

  .tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .price-card-dark {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .tab-link {
    margin-right: 20px;
    margin-left: 20px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 26px;
  }

  .price-illustration {
    display: none;
  }

  .title-wrap-copy {
    margin-bottom: 60px;
  }

  .nav-link-2 {
    color: #000;
  }

  .icon {
    color: #fff;
  }

  .p-xl-start.p-xl-end {
    padding-top: 8em;
  }

  .ipad-screen {
    border-radius: 7px;
  }

  .feature-number-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .statistic-circle-wrap {
    width: 100%;
  }

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

  .hero-description {
    font-size: 1.5rem;
  }

  .video-embed {
    z-index: 1;
  }

  .feature-list-wrapper {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }

  .feature-list-track {
    margin-right: 4rem;
  }

  .feature-content-track {
    width: 20rem;
  }

  .feature-content-wrapper {
    height: 20rem;
  }
}

@media screen and (max-width: 767px) {
  .comparison-row {
    grid-row-gap: 0px;
    grid-template-areas: "Feature-Row Feature-Row Feature-Row";
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .comparison-row.header {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .comparison-feature {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .comparison-item {
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .comparison-header-title.feature {
    display: none;
  }

  .brand {
    padding-left: 0px;
  }

  .check-grid-large {
    min-height: auto;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .content-h1 {
    font-size: 55px;
  }

  .price-card-dark {
    padding-right: 24px;
    padding-left: 24px;
  }

  .price-illustration {
    bottom: 0%;
    display: block;
    max-width: 20%;
  }

  .home-wrapper {
    min-width: auto;
  }

  .infotext {
    font-size: 1em;
    line-height: 1.3em;
  }

  .p-xl-start {
    padding-top: 6em;
  }

  .ipad-screen {
    border-radius: 6px;
  }

  .p-sm-start {
    padding-top: 2.3em;
  }

  .wow-animation {
    font-size: 0.7em;
  }

  .page-padding {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

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

  .hero-description {
    font-size: 1.125rem;
  }

  .hero-bg-img {
    height: 80vh;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .feature-content-track {
    position: fixed;
    left: 0px;
    top: auto;
    bottom: 0px;
    display: none;
    width: 100%;
    height: auto;
    padding: 1.25rem;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    opacity: 0;
  }

  .feature-content-wrapper {
    width: 35vh;
    height: 35vh;
  }

  .main-wrapper-2 {
    padding-top: 50vh;
    padding-bottom: 50vh;
  }
}

@media screen and (max-width: 479px) {
  .pricing-plan-grid {
    margin-top: -37px;
  }

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

  .pricing-icon {
    padding-top: 58px;
  }

  .price-wrap {
    margin-top: -9px;
  }

  .button.button-secondary {
    margin-top: -8px;
  }

  .comparison-row {
    grid-template-areas: "Feature-Row Feature-Row";
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: minmax(auto, 1fr);
    grid-template-rows: minmax(auto, 1fr);
  }

  .menu-button {
    color: #000;
  }

  .menu-button.w--open:active {
    color: #000;
  }

  .navbar {
    z-index: 99999999;
  }

  .tabs-menu {
    padding-right: 10px;
    padding-left: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .check-grid-large {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto auto auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto auto auto auto auto;
  }

  .title-wrap {
    margin-top: -28px;
    padding-top: 0px;
  }

  .content-h1 {
    padding-top: 73px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 42px;
    text-align: center;
  }

  .tab-link {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .pricing-section {
    padding-top: 0px;
  }

  .text-block-5 {
    line-height: 30px;
  }

  .title-wrap-copy {
    margin-top: 32px;
    padding-top: 0px;
  }

  .page-wrapper {
    overflow: hidden;
    padding-top: 106px;
  }

  .process-steps-wrap {
    padding-top: 142px;
  }

  .process-step {
    grid-column-gap: 10px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .home-component {
    padding-bottom: 823px;
  }

  .dotted-line {
    height: 150px;
  }

  .home-task-wrapper {
    display: block;
  }

  .step-contents {
    width: 40vw;
    padding: 0px 10px;
  }

  .step-contents.offer-stage {
    display: block;
  }

  .step-heading {
    font-size: 24px;
    line-height: 1.3;
  }

  .paragraph-2 {
    font-size: 16px;
    line-height: 20px;
  }

  .paragraph-3 {
    font-size: 16px;
  }

  .heading {
    position: relative;
    margin-top: 16px;
    margin-bottom: 12px;
    font-size: 30px;
  }

  .paragraph-4 {
    line-height: 20px;
  }

  .nav-link-2 {
    color: #000;
  }

  .icon {
    color: #fff;
  }

  .image {
    max-width: 150px;
  }

  .accordion-bottom-wrap {
    padding-right: 0px;
  }

  .accordion-wrap {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .faq-container {
    overflow: hidden;
    padding: 0px 20px 150px;
  }

  .heading-2 {
    margin-top: 0px;
    color: #fff;
  }

  .container-w3.gutter-outside {
    padding-right: 3vw;
    padding-bottom: 43px;
    padding-left: 3vw;
  }

  .p-xl-start.p-xl-end {
    padding-top: 28vh;
  }

  .section-tablet-scroll-animation {
    z-index: 800;
    margin-top: -44px;
    padding-top: 39px;
  }

  .wow-heading.wow-gradient {
    padding-bottom: 53.2px;
  }

  .wow-heading.wow-gradient.big {
    margin-bottom: 72.1px;
    padding-bottom: 6.2px;
  }

  .ipad-mockup {
    z-index: 5;
  }

  .container-w2.gutter-outside {
    margin-top: -146px;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }

  .ipad-shape {
    z-index: 5;
  }

  .ipad-screen {
    border-radius: 4px;
  }

  .ipad-screen.overflow-hidden {
    z-index: 5;
  }

  .tablet-mockup-animation {
    z-index: 5;
    padding-bottom: 21px;
  }

  ._3d-tablet-wrap {
    -webkit-perspective-origin: 50% 0%;
    perspective-origin: 50% 0%;
  }

  .bold-text-2 {
    font-size: 20vw;
    font-weight: 800;
  }

  .heading-primary.h3-centre {
    font-size: 26px;
  }

  .counterup {
    margin-bottom: -5px;
    color: #f8f8f8;
    font-size: 30px;
  }

  .title-capped {
    color: #c9c9c9;
  }

  .circle-div {
    background-color: hsla(0, 0%, 100%, 0.04);
    background-image: url('../images/Basketball-1-2-1.png'), -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, 0.01)), to(hsla(0, 0%, 100%, 0.01)));
    background-image: url('../images/Basketball-1-2-1.png'), linear-gradient(180deg, hsla(0, 0%, 100%, 0.01), hsla(0, 0%, 100%, 0.01));
    background-position: 0px 0px, 0px 0px;
    background-size: cover, auto;
    box-shadow: 1px 1px 3px 0 #ff8c00, 8px 8px 150px 10px rgba(255, 140, 0, 0.26);
  }

  .faq-section {
    overflow: hidden;
    padding-top: 95px;
    padding-bottom: 53px;
  }

  .heading-4 {
    margin-top: -236px;
    font-size: 80px;
  }

  .heading-5 {
    margin-top: 51px;
    font-size: 24px;
    line-height: 30px;
  }

  .video-wrap {
    opacity: 0.49;
  }

  .heading-6 {
    position: relative;
    right: 0%;
    display: block;
    margin-top: -238px;
    padding-top: 0px;
    font-size: 24px;
    text-align: center;
  }

  .bullets {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 100vw;
    min-width: 100vw;
    margin-top: -4px;
    padding-top: 0px;
    padding-right: 20px;
    padding-left: 40px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #dbdbdb;
    font-size: 20px;
    line-height: 24px;
  }

  .process-step-1 {
    grid-column-gap: 10px;
  }

  .process-step-2 {
    grid-column-gap: 10px;
  }

  .process-step-3 {
    grid-column-gap: 10px;
  }

  .process-step-4 {
    grid-column-gap: 10px;
  }

  .process-step-5 {
    grid-column-gap: 10px;
  }

  .process-stepforanimation {
    grid-column-gap: 10px;
  }

  .heading-7 {
    font-size: 16px;
    line-height: 20px;
  }

  .heading-8 {
    font-size: 16px;
    line-height: 20px;
  }

  .heading-9 {
    font-size: 16px;
    line-height: 20px;
  }

  .heading-10 {
    font-size: 16px;
    line-height: 20px;
  }

  .heading-11 {
    font-size: 16px;
    line-height: 20px;
  }

  .paragraph-5 {
    font-size: 16px;
    line-height: 20px;
  }

  .paragraph-6 {
    font-size: 16px;
    line-height: 20px;
  }

  .paragraph-7 {
    font-size: 16px;
    line-height: 20px;
  }

  .heading-12 {
    color: #f1f1f1;
    font-size: 26px;
    line-height: 30px;
  }

  .container-6 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .feature-list-wrapper {
    padding-top: 0px;
  }

  .feature-list-track {
    margin-right: 0rem;
    padding-top: 20vh;
  }

  .feature-content-track {
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 10px 10px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 1;
  }

  .feature-heading {
    font-size: 24px;
  }

  .full-image._2 {
    border-radius: 15px;
  }

  .full-image._5 {
    border-radius: 15px;
  }

  .full-image._3 {
    border-radius: 15px;
  }

  .full-image._4 {
    border-radius: 15px;
  }

  .full-image._1 {
    display: none;
    border-radius: 15px;
  }

  .full-image._6 {
    border-radius: 15px;
  }

  .feature-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 100vw;
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 13px;
    background-color: rgba(255, 255, 255, 0);
  }

  .section-2 {
    max-height: 150vh;
    min-height: 150vh;
    padding-top: 57px;
  }

  .div-block-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 90vw;
  }

  .lottie-animation-2 {
    min-height: 170px;
    min-width: 170px;
    margin-top: -32px;
    background-image: radial-gradient(circle farthest-corner at 50% 50%, #573300, #020202 71%);
  }

  .div-block-3 {
    top: 67px;
  }

  .btn-wrapper {
    padding-top: 14px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .sha-0300__label {
    font-size: 18px;
    text-align: center;
  }

  .heading-copy {
    position: relative;
    margin-top: 16px;
    margin-bottom: 12px;
    font-size: 22px;
  }
}

#w-node-_5d9b14df-9a22-5e7e-836d-2fd5fbded6c7-720d0f14 {
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-_5d9b14df-9a22-5e7e-836d-2fd5fbded6cb-720d0f14 {
  -ms-grid-column-align: start;
  justify-self: start;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-_5d9b14df-9a22-5e7e-836d-2fd5fbded6db-720d0f14 {
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-_5d9b14df-9a22-5e7e-836d-2fd5fbded6df-720d0f14 {
  -ms-grid-column-align: start;
  justify-self: start;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-_5d9b14df-9a22-5e7e-836d-2fd5fbded6e8-720d0f14 {
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-_5d9b14df-9a22-5e7e-836d-2fd5fbded6ec-720d0f14 {
  -ms-grid-column-align: start;
  justify-self: start;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-_5d9b14df-9a22-5e7e-836d-2fd5fbded6f4-720d0f14 {
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-_5d9b14df-9a22-5e7e-836d-2fd5fbded6f8-720d0f14 {
  -ms-grid-column-align: start;
  justify-self: start;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-_5d9b14df-9a22-5e7e-836d-2fd5fbded700-720d0f14 {
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-_5d9b14df-9a22-5e7e-836d-2fd5fbded704-720d0f14 {
  -ms-grid-column-align: start;
  justify-self: start;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

