* {
  box-sizing: border-box;
}

html, body {
  font-family: "proxima-nova", sans-serif;
  padding: 0;
  margin: 0;
}

a, button {
  cursor: pointer;
}

.logo {
  background-color: #000;
  background-size: 75% auto;
  background-image: url('/assets/images/logo.svg');
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  width: 80px;
  height: 56px;
  float: left;
}

.main-menu {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 2;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.05);
}

.main-menu__links {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  flex-wrap: nowrap;
}

.main-menu__link,
.main-menu__item {
  display: inline-block;
  line-height: 56px;
  padding: 0 10px;
  text-decoration: none;
  color: #333;
  text-align: center;
  white-space: nowrap;
  font-size: 12px;
  min-width: auto;
}

@media (min-width: 900px) {
  .main-menu__link,
  .main-menu__item {
    padding: 0 20px;
    font-size: 16px;
    letter-spacing: 0.5px;
  }
}

.main-menu__spacer {
  flex-grow: 1;
}

.main-menu__link:hover,
.main-menu__link:focus {
  background-color: rgba(255,200,18,0.3);
}

.main-menu__link:active {
  background-color: rgba(255,200,18,1);
}

.main-menu__button {
  background-color: #333;
  color: #fff;
  border-radius: 6px;
  display: inline-block;
  line-height: 1;
  padding: 10px 15px;
}

.main-menu__button:hover {
  background: #FFC812;
  color: #333;
}

.marketing-page {
  background-color: #fff;
  bottom: 0;
  left: 0;
  overflow: auto;
  overflow-y: scroll;
  right: 0;
  top: 56px;
  -webkit-overflow-scrolling: touch;
}

.section {
  display: block;
  padding: 4vh 2vw;
  min-height: 75vh;
}

.section--intro {
  background-image: url('/assets/images/dude.jpg');
  background-size: auto 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 0;
  min-height: 99vh;
}


.section--intro .section__shade {
  height: 100vh;
}

@media (orientation:portrait) {
  .section--intro .section__shade {
    background-color: rgba(255, 255, 255, 0.6);
  }
}

.section--intro .title {
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  font-size: 7.5vh;
  text-transform: uppercase;
  line-height: 9vh;
  margin: 0;
  margin-bottom: 2vh;
  padding-top: 7vh;
  letter-spacing: 1px;
  color: #333;
}

@media (min-width: 950px) {
  .section--intro .title {
    font-size: 9vh;
    padding-top: 14vh;
  }
}

@media (min-width: 1200px) {
  .section--intro .title {
    font-size: 10vh;
  }
}

.section--intro .subtitle {
  display: block;
  font-size: 3vh;
  max-width: 18em;
  margin: 0 0 3vh;
  color: #555;
  line-height: 1.5;
}

.section--intro .video-button-main {
  margin-top: 1em;
  font-size: 15px;
  text-align: center;
  width: 40%;
  cursor: pointer;
}

.section--intro .video-button-main img {
  vertical-align: middle;
  width: 15px;
  height: 15px;
}

.section--integrations .subtitle {
  display: block;
  font-size: 2.5vh;
  margin: 0 0 2vh;
  padding: 0 4vw;
  text-align: center;
  color: #333;
  font-weight: 300;
}

.section--integrations .subtitle--strong {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.section--breakdown {
  background: #fff;
  text-align: center;
  border-top: 1px solid #eee;
}

.section--breakdown .title,
.section--how-it-works .title,
.section--integrations .title,
.section--pricing .title,
.section--faq .title {
  color: #222;
  font-family: "proxima-nova", sans-serif;
  font-size: 6vh;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 10vh;
  margin: 0;
  opacity: 0.4;
  padding: 2vh 0;
  text-align: center;
  text-transform: uppercase;
}

.section--faq .title,
.section--pricing .title {
  font-size: 4vh;
  line-height: 6vh;
}

.section--how-it-works .title {
  background-image: url('/assets/images/cogs.svg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 120px;
  padding-top: 120px;
}

.section--pricing .title {
  text-transform: none;
}

.section--rjmetrics {
  background-image: url('/assets/images/video_rjmetrics.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 10vh 4vw;
  min-height: 60vh;
}

.section--how-it-works {
  padding: 0;
}

.section--integrations {
  padding-left: 10vw;
  padding-right: 10vw;
}

.section--pricing,
.section--faq {
  background-color: #fafafa;
}

.section--social-proof {
  background-color: #fff;
  min-height: initial;
  padding: 10vh 2vw;
}

@media (min-width: 1000px) {
  .section--integrations {
    padding-left: 20vw;
    padding-right: 20vw;
  }
}

.subtitle strong {
  font-family: "proxima-nova", sans-serif;
  font-weight: 600;
  color: #333;
}

.button--cta {
  background-color: rgba(255,200,18,1);
  border-radius: 2em;
  color: #333;
  cursor: pointer;
  display: inline-block;
  font-size: 2.5vh;
  font-weight: 600;
  letter-spacing: 2px;
  max-width: 100%;
  padding: 0.7em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 20em;
}

.call-to-action .button--cta {
  background: #FFF;
  color: #000;
}

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

.intro {
  /* width: 30em; */
  max-width: 100%;
  padding: 0 15vw;
}

.rotator {
  display: block;
  height: 9vh;
  position: relative;
  overflow: hidden;
}

.rotator > * {
  display: block;
  opacity: 0;
  position: absolute;
  transform: translateY(-12vh);
  will-change: transform, opacity;
  animation-name: rotateOptions;
  animation-duration: 12s;
  animation-timing-function: ease-out;
  animation-delay: 12s;
  animation-iteration-count: infinite;
  animation-fill-mode: none;
  animation-play-state: running;
}

.rotator > :nth-child(1) { animation-delay: 0s; }
.rotator > :nth-child(2) { animation-delay: 4s; }
.rotator > :nth-child(3) { animation-delay: 8s; }

@keyframes rotateOptions {
  0% {
    transform: translateY(-12vh);
    opacity: 0;
  }
  3% {
    transform: translateY(0);
    opacity: 1;
  }
  33% {
    transform: translateY(0);
    opacity: 1;
  }
  36% {
    transform: translateY(12vh);
    opacity: 0;
  }
}

.trial-signup {
  background: #fff;
  border: 3px solid #ccc;
  border-radius: 3px;
  font-size: 2vh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 95%;
}

.section--intro .trial-signup {
   max-width: 30em;
}

.trial-signup .trial-signup__label {
  padding: 0;
  margin: 0;
  flex-grow: 1;

}

.trial-signup__input {
  background: none;
  border: 0 none;
  font-size: 2vh;
  padding: 1.2vh 11px;
  width: 100%;
}

.trial-signup__button {
  background: #333;
  border: 0 none;
  border-radius: 0 3px 3px 0;
  color: #eee;
  cursor: pointer;
  font-size: 1.5vh;
  letter-spacing: 0.5px;
  padding: 0 10px;
  text-transform: uppercase;
}

.breakdown {
  background-image: url('/assets/images/paperplane.svg');
  background-position: bottom center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-bottom: 150px;
  text-ident: 0;
}

.breakdown__item {
  padding: 2vh 2vw;
  width: 100%;
}

.breakdown__image {
  max-height: 30vh;
  max-width: 100%;
}

.breakdown__title {
  display: block;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.5;
  margin: 2vh 0 2vh;
}

.breakdown__text {
  color: #888;
  font-weight: 300;
  line-height: 1.4;
}

@media (min-width: 900px) {
  .breakdown {
    flex-wrap: nowrap;
  }
  .breakdown__item {
    width: 33%;
  }
  .breakdown__title {
    min-height: 3em;
  }
}

.testimonial {

}

.testimonial__play {
  float: right;
  left: 70%;
  position: absolute;
  text-align: center;
  width: 30%;
}

@media (min-width: 1000px) {
  .testimonial__play {
    left: 50%;
    padding-top: 80px;
    width: 50%;
  }
}

.testimonial__play .icon {
  fill: #fff;
}

.testimonial__play:hover .icon {
  fill: rgba(255,200,18,1);
}

.testimonial__logo {
  max-height: 100px;
  max-width: 40%;
  padding: 25px 0;
}



.section--rjmetrics .testimonial {
  color: #fff;
  margin: 0;
}

.testimonial__quote {
  font-size: 3vh;
  margin: 0 0 2vh;
  max-width: 30em;
}

.testimonial__video {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  float: right;
  max-width: 100%;
}

@media (min-width: 1000px) {
  .section--rjmetrics .testimonial {
    max-width: 40%;
  }

  .testimonial__video {
    max-width: 50%;
  }
}

.demo {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 15vh;
}

@media (min-width: 1000px) {
  .demo {
    flex-direction: row;
    min-height: 95vh;
    padding: 0;
  }

  .demo:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}

.demo__video {
  flex-grow: 1;
  padding: 1vh 5vw;
}

@media (min-width: 1000px) {
  .demo__video {
    padding: 1vh 10px;
  }
}

.demo__video__chrome {
  background-color: #ccc;
  border: 1px solid #f5f5f5;
  border-radius: 6px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
  max-height: 75vh;
  max-width: 100%;
  overflow: hidden;
}

.demo__video__chrome  .wistia_responsive_padding {
  background-color: #7f7f7f;
  border-bottom: 1px solid #7f7f7f;
  border-top: 1px solid #7f7f7f;
}

.demo__description {
  font-size: 2vh;
  padding: 4vh 10vw;
  width: 100%;
}

@media (min-width: 1000px) {
  .demo__description {
    width: 50%;
  }
}

.demo__title {
  color: #333;
  font-family: "proxima-nova", sans-serif;
  font-size: 3vh;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 1.5;
  margin: 0 0 2vh 0;
  text-transform: uppercase;
}

.demo:nth-of-type(1) .demo__title { color: #e87569; }
.demo:nth-of-type(2) .demo__title { color: #f89a21; }
.demo:nth-of-type(3) .demo__title { color: #fbce41; }
.demo:nth-of-type(4) .demo__title { color: #e87569; }
.demo:nth-of-type(5) .demo__title { color: #7ccaa7; }
.demo:nth-of-type(6) .demo__title { color: #7ea2d6; }
.demo:nth-of-type(7) .demo__title { color: #dab9e1; }
.demo:nth-of-type(8) .demo__title { color: #c39f7d; }
.demo:nth-of-type(9) .demo__title { color: #c5e89d; }
.demo:nth-of-type(10) .demo__title { color: #bbdeec; }
.demo:nth-of-type(11) .demo__title { color: #b892cd; }

.demo__subtitle {
  color: #333;
  font-size: 2.5vh;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.demo__text {
  color: #888;
  letter-spacing: 0.3px;
  line-height: 1.5;
}

.demo__video .w-control.w-control--context-menu.w-context-menu.w-is-visible {
  display: none !important;
}

.integrations {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: auto;
  margin-bottom: 4vh;
  padding: 0;
}

.integrations--soon {
  opacity: 0.4;
}

.integrations--custom {
  display: block;
  text-align: center;
}

.integrations--custom .integrations__product {
  display: inline-block;
  position: relative;
}

.integrations--custom .integrations__product:after {
  color: #ccc;
  content: "+";
  font-size: 2em;
  font-weight: 600;
  height: 1em;
  margin-top: -0.5em;
  position: absolute;
  right: -0.5em;
  top: 50%;
  width: 1em;
}

.integrations--custom .integrations__product:last-child:after {
  display: none;
}

.integrations__product {
  flex-basis: 50%;
  font-size: 2vh;
  padding: 2vw;
  text-align: center;
  width: 50%;
}

.integrations .integrations__product a {
  text-decoration: none;
  color: #000;
  border: none;
}

@media (min-width: 800px) {
  .integrations__product { flex-basis: 33%; width: 33%; }
}
@media (min-width: 800px) {
  .integrations__product { flex-basis: 25%; width: 25%; }
}
@media (min-width: 1200px) {
  .integrations__product { flex-basis: 20%; width: 20%; }
}


.integrations__product-logo {
  display: block;
  margin: 0 auto 1em;
  width: 50%;
}

.call-to-action {
  background-color: rgba(255,200,18,1);
  min-height: 300px;
  position: relative;
  text-align: center;
}

.call-to-action .trial-signup {
  border: 0 none;
  font-size: 1em
  margin: auto;
  max-width: 100%;
  width: 30em;
}

.call-to-action__content {z-index: 3;position: absolute;left: 15%;right: 15%;top: 5vh;}

.call-to-action:before,
.call-to-action:after {
  background-repeat: no-repeat;
  background-size: auto 100%;
  bottom: 0;
  content: "";
  position: absolute;
  top: 0;
  width: 20%;
  z-index: 1;
}

.call-to-action:before {
  background-image: url('/assets/images/loveproduct_left.svg');
  background-position: right center;
  left: 0;
  background-size: auto 40%;
}

.call-to-action:after {
  background-image: url('/assets/images/loveproduct_right.svg');
  background-position: left center;
  right: 0;
  background-size: auto 40%;
}

.call-to-action__title {
  color: #fff;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin: 0;
  margin-bottom: 1em;
  text-transform: uppercase;
}

.call-to-action__subtitle {
  color: #333;
  font-size: 2em;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin: 0;
  text-transform: uppercase;
}

.call-to-action__subtitle:after {
  border-bottom: 2px solid #fff;
  content: "";
  display: block;
  margin: 0.5em auto;
  opacity: 0.4;
  width: 4em;
}

.pricing-options {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.pricing-options__limits {
  color: #000;
  font-family: "proxima-nova", sans-serif;
  font-size: 0.8em;
  letter-spacing: 1px;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  margin-top: 2em;
}


.pricing-options__tagline {
  font-size: 1em;
  margin: 0 auto;
  margin-bottom: 2em;
  width: 50%;
  color: #888;
  text-align: center;
}

.pricing-options__card {
  border-radius: 6px;
  box-shadow: 0 7px 20px rgba(0,0,0,0.1);
  display: inline-block;
  position: relative;
  text-align: left;
  width: 100%;
}

.pricing-options__card--ribbon::after {
  background-image: url("/assets/images/pricing-ribbon.svg");
  background-size: contain;
  content: "";
  display: block;
  height: 119px;
  left: -9px;
  position: absolute;
  top: -9px;
  width: 119px;
  background-repeat: no-repeat;
}

.pricing-options__the-plan {
  margin: 2em 0 1em 0;
  max-width: 100%;
  padding: 0 1em;
  text-align: right;
  width: 350px;
}

.pricing-options__more {
  text-align: left;
  /* flex-basis: 50%; */
  padding: 0 2vw;
  margin: 0 auto 0 0;
  min-width: 15em;
  max-width: 27em;
}

.pricing-options__the-plan .pricing-options__card {
  max-width: 27em;
}

.pricing-options__more .pricing-options__card {
  max-width: 15em;
}

.pricing-options__header,
.pricing-options__more__title {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 14px 1vw;
  margin: 0;
  border-radius: 6px 6px 0 0;
}

.pricing-options__more__title {
   font-weight: 300;
   font-size: 1em;
}

.pricing-options__more__title em {
   font-style: normal;
   color: rgba(255,200,18,1);
}

.pricing-options__title {
  color: rgba(255,200,18,1);
  margin: 0;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 1.6em;
  padding: 0.3em 0;
}

.price {
  color: #aaa;
  line-height: 2.5em;
}

.price small {
}

.price__amount {
  color: #fff;
  font-size: 2em;
  font-weight: 500;
}

.price__currency {
  font-size: 1em;
  margin-left: -1em;
  display: inline-block;
  vertical-align: text-bottom;
}

.price__label {
  display: block;
}

.pricing-options__description {
  font-size: 1em;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.3px;
  padding: 1em;
  margin: 0;
}

.pricing-options__description em {
  display: block;
  font-style: normal;
  opacity: 0.6;
}

.pricing-options__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-options__feature {
  text-align: center;
  padding: 0.75em 1em;
  color: #333;
  letter-spacing: 0.3px;
}

.pricing-options__feature:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.025);
}

.pricing-options__features--more .pricing-options__feature:nth-child(odd) {
  background-color: transparent;
}

.pricing-options__features--more .pricing-options__feature:nth-child(1) {
  text-transform: uppercase;
  color: #888;
}

.pricing-options__features--more .pricing-options__feature:nth-child(1):after {
  display: block;
  content: "+";
  padding: 0.75em 1em 0;
  margin-bottom: -0.75em;
  color: #bbb;
}

.pricing-options__button {
  font-size: 0.8em;
  background-color: rgba(255,200,18,1);
  color: #333;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 2px;
  width: 100%;
  padding: 12px 6px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 0 0 6px 6px;
}

.pricing-options__button:hover {
  background: #333;
  color: #fff;
}

.pricing-options__button--line {
  border: 1px solid #c3c3c3;
  border-radius: 3px;
  color: #333;
  cursor: pointer;
  display: block;
  font-size: 0.8em;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 12px 20px 12px;
  padding: 6px 3px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.pricing-options__button--line:hover {
  background-color: #efefef;
}


@media (max-width: 400px) {
  .pricing-options {
    flex-direction: column;
    overflow-x: hidden;
  }

  .pricing-options__the-plan {
    margin: 0 auto 20px;
  }
}


.all-included {
  width: 100%;
  margin: 0 auto;
  margin-top: 3em;
}

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

.all-included__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.all-included__column {
  flex-basis: 250px;
}

.all-included__column ul {
  list-style-image: url(/assets/images/tick.svg);
}

.all-included__column li {
  margin-bottom: 1em;
}

.social-proof {
  display: flex;
  flex-wrap: wrap;
}

.social-proof__quote {
  flex-basis: 100%;
  color: #888;
  font-style: italic;
  margin: 0 auto;
  padding: 0 3vw;
}

@media (min-width: 800px) {
  .social-proof__quote {
    flex-basis: 33%;
  }
}

.social-proof__author {
  text-align: center;
  font-style: normal;
  display: block;
}

.social-proof__author strong {
  display: block;
  font-size: 1.5em;
  color: #333;
  padding-top: 1em;
  font-weight: 400;
}

.faq {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq__question {
  flex-basis: 100%;
  padding: 0 4vw;
}

@media (min-width: 700px) {
  .faq__question {
    flex-basis: 50%;
  }
}

@media (min-width: 1600px) {
  .faq__question {
    flex-basis: 33%;
    margin: auto;
  }
}

.footer {
  background-color: #111;
  color: #363636;
  padding: 5vh 4vw;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  overflow-x: hidden;
}

.footer__link {
  color: #858585;
  text-decoration: none;
  line-height: 2;
}

.footer__link:hover {
  color: #fff;
}

.footer__contact {
  margin: 0 0 1em;
}

.footer__copyright,
.footer__legal {
  margin: 0 0 1em;
  font-size: 0.8em;
}

.footer__newsletter {
  flex-basis: 100%;
  margin: 0 auto;
  text-align: left;
  color: #fff;
  padding: 2em 0;
  order: 2;
}

.footer__rocket {
  display: inline-block;
  float: left;
  width: 30px;
}

.footer__newsletter-image {
  max-width: 60%;
  width: 145px;
}

.footer__email {
  display: flex;
  padding-bottom: 1em;
}

.footer__label {
  margin: 2vh auto;
  display: block;
  font-size: 0.8em;
  color: #858585;
}

.footer__input {
  color: #F8F8F8;
  background: #363636;
  border: 0 none;
  padding: 0.5em 1em;
  flex-grow: 8;
  font-size: 0.8em;
  border-radius: 5px 0 0 5px;
}

.footer__button {
  -webkit-appearance: none;
  appearance: none;
  border: 0 none;
  border-radius: 0 5px 5px 0;
  background: rgba(255,200,18,1);
  padding: 0.5em 1em;
  text-transform: uppercase;
  font-size: 0.7em;
  cursor: pointer;
  min-width: 5em;
}

.footer__button:hover {
  color: #333;
  background: #fff;
}

.footer__locations {
  flex-basis: 100%;
  order: 1;
}

.footer__navigation {
  flex-basis: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  column-width: 7em;
  order: 0;
  margin-bottom: 2em;
}

.footer__small-print {
  flex-basis: 100%;
  font-size: 0.9em;
  text-align: center;
  max-width: 20em;
  margin: auto;
  color: #858585;
  order: 3;
}

.footer__small-print .footer__link {
  text-decoration: underline;
}

.footer__logo {
  margin: 0 auto;
  width: 180px;
  height: auto;
}

.footer__icon {
  display: inline-block;
  text-decoration: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  background: #858585;
  margin-right: 5px;
  transition: background 1s ease-in-out;
}

.footer__icon:hover {
  background-color: #fff;
}

.footer__icon img {
  max-width: 100%;
  padding: 5px;
}

@media (min-width: 800px) {
  .footer__locations {
    flex-basis: 30%;
    order: 0;
  }

  .footer__newsletter {
    flex-basis: 30%;
    padding: 0 2em;
    order: 0;
  }

  .footer__navigation {
    flex-basis: 30%;
    column-width: 7em;
    order: 0;
    margin-bottom: 0;
  }

  .footer__small-print {
    flex-basis: 100%;
    order: 0;
  }
}

.tooltip {
  cursor: help;
  display: inline-block;
  min-width: 18px;
  line-height: 16px;
  border: 1px solid #888;
  text-align: center;
  border-radius: 50%;
  font-size: 12px;
  position: relative;
}

.tooltip[href] {
  cursor: pointer;
}

.tooltip::before {
  background: #444;
  content: "";
  height: 14px;
  margin-left: -4px;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 110%;
  transform: translateY(0) rotate(45deg);
  transition: none;
  visibility: visible;
  width: 14px;
  will-change: opacity, transform, visibility;
}

.tooltip::after {
  background: #444;
  color: #fff;
  content: attr(data-tooltip);
  font-size: 11px;
  margin-left: -100px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  text-transform: none;
  top: 110%;
  transition: all 0.2s ease-in 0.2s, visibility 0s linear 0s;
  visibility: visible;
  white-space: normal;
  width: 200px;
  will-change: opacity, transform, visibility;
  z-index: 1;
}

.tooltip:hover::before {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-3px) rotate(45deg);
  transition: all 0.2s ease-in 0.4s, visibility 0s linear 0s;
  visibility: visible;
}

.tooltip:hover::after {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(4px);
  visibility: visible;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
ProductHunt Chrome Extension Mangles our page
*/
body.__phc-body {
  margin: 0 !important;
  position: static !important;
}

body.__phc-body .main-menu {
  top: 50px;
}

body.__phc-body .marketing-page {
  top: 106px;
}


/*
Intercom microsite styles
*/

.section--intercom-intro {
  padding: 0;
  min-height: 60vh;
  text-align: center;
  margin-bottom: 2em;
}

.section--intercom-intro h1 {
  font-size: 26px;
  letter-spacing: 1px;
  font-weight: normal;
  text-transform: uppercase;
}

.section--intercom-intro h3 {
  font-size: 20pt;
  font-weight: normal;
  width: 50vh;
  margin: 0 auto;
  padding-top: 30px;
}

.section--intercom-intro .header-image {
  margin: 0 auto;
}

.intercom .testimonial {
  padding: 3em 0 3em 0;
  background: #fafafa;
}

.intercom .testimonial>div {
  width: 75vh;
  margin: 0 auto;
  font-size: 15px;
  color: #333;
  line-height: 20px;
}

.intercom .testimonial a {
  color: #333
}

.intercom .testimonial .author-box {
  margin-left: 40px;
}

.intercom .testimonial blockquote {
  font-style: italic;
}

.intercom .testimonial .author-avatar {
  float: left;
}

.intercom .testimonial .author, .intercom .testimonial .author-link {
  line-height: 20px;
  font-size: 14px;
  letter-spacing: 0.6px;
  margin: 0;
  margin-left:50px;
  padding: 0;
}

.intercom .testimonial .author {
  color: #8a8a8a;
  padding-top: 15px;
}

.intercom .testimonial .author-link {
  color: #000;
}

.intercom .section--how-it-works .demo {
  min-height: 50vh;
  margin-top: 15vh;
}

.intercom .section--how-it-works .demo li {
  margin-bottom: 1em;
  padding: 0;
}

.intercom .demo__text {
  font-size: 15px;
}

#connect-intercom .largo-button {
  width: 55vw;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 40px;
  background-image: url(/assets/images/intercom/lines_left.svg),
  url(/assets/images/intercom/lines_right.svg);
  background-repeat: no-repeat;
  background-position: left center, right center;
  height: 30vh;
  vertical-align: middle;
}

#connect-intercom img {
  vertical-align: middle;
}

#connect-intercom a {
  background: #4990E3;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  padding: 10px 15px;
  font-size: 16px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 45vw;
  letter-spacing: 0.6px;
  display: block;
  margin: auto auto;
  text-align: center;
}

.legal {
  padding: 50px 10% 2em 10%
}
