:root {
  --main-color: #4074bd;
  --main-color-hover: #427ed2;
  --main-color-highlight: #4984d7;
  --secondary-color: #1e2b4e;
  --secondary-color-highlight: #35487b;
  --border-radius: 5px;
  --light-text-color: #4e5850;
  --color-gradient-start: #FFF;
  --color-gradient-end: #eff7fe;
  --color-black: #1a141c;
  --color-text-secondary: #7b7b7b;
  --tertiary-color: #0cb23f;
  --secondary-color--darker: hsl(from var(--secondary-color) h s calc(l - 5));

  --spacing-tiniest: 0.4rem;
  --spacing-tiny: 0.75rem;
  --spacing: 1rem;
  --spacing-2: 2.5rem;
  --spacing-3: 3rem;
  --spacing-4: 3.8rem;
  --spacing-5: 5rem;
  --spacing-6: 6rem;

  --font-subtitle: 1.35rem;
  --font-title: 2.1rem;
  --font-hero: 4.5rem;
  --font-hero-line-height: 4rem;

  --spacing-s: var(--spacing);
  --spacing-m: var(--spacing-2);
  --spacing-l: var(--spacing-4);
  --spacing-xl: var(--spacing-6);
}

/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Light'), local('Roboto-Light'),
    url('../css/roboto-v20-latin-300.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../css/roboto-v20-latin-300.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'),
    url('../css/roboto-v20-latin-regular.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../css/roboto-v20-latin-regular.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: local('Roboto Italic'), local('Roboto-Italic'),
    url('../css/roboto-v20-latin-italic.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../css/roboto-v20-latin-italic.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'),
    url('../css/roboto-v20-latin-700.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../css/roboto-v20-latin-700.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-700italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  src: local('Roboto Bold Italic'), local('Roboto-BoldItalic'),
    url('../css/roboto-v20-latin-700italic.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../css/roboto-v20-latin-700italic.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-900 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: local('Roboto Black'), local('Roboto-Black'),
    url('../css/roboto-v20-latin-900.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../css/roboto-v20-latin-900.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: 'Roboto', 'Arial', sans-serif;
  height: 100%;
  width: 100%;
  line-height: 1.3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--secondary-color);
  scroll-behavior: smooth;
  font-size: 100%;
  background: #FDFDFD;
}

html {
  overflow-y: scroll;
}

h1 {
  font-weight: 900;
}

a {
  text-decoration: none;
  color: var(--main-color);
  font-weight: 400;
  display: inline-block;
}

a:hover {
  color: var(--main-color-hover);
}

.buy-icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}

.tiny-icon {
  width: 10px;
  height: 10px;
  margin-right: 1px;
}

.collapse {
  border: 1px solid #f1f1f1;
  padding: var(--spacing-tiniest);
  border-radius: var(--border-radius);
  margin-bottom: 10px;
  cursor: pointer;
  overflow: hidden;
  background: white;
  transition: border-color 0.15s ease-out;
}

.collapse h3 {
  margin: var(--spacing-tiny);
  display: flex;
  align-items: center;
}

.collapse-container>h3 {
  padding-left: var(--spacing);
  margin-bottom: var(--spacing);
  margin-top: var(--spacing-l);
  font-weight: normal;
  font-size: var(--font-subtitle);
}

.collapse h3:after {
  color: var(--main-color);
  margin-left: auto;
  content: url("/img/faq-arrow.png");
  transition: transform .2s ease-in-out;
  transform-origin: center bottom;
  transform: rotate(0deg);
  width: 16px;
  height: 8px;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.collapse:not(.selected) h3:after {
  transform: rotate(180deg);
}

.collapse>div {
  max-height: 1000px;
  padding-left: 24px;
  transition: max-height 0.5s ease-out, opacity 0.2s linear;
  cursor: default;
}

.collapse>div:before {
  content: ' ';
  display: block;
  height: 10px;
}

.collapse:not(.selected)>div {
  transition-duration: 0.2s;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.collapse>div>ul {
  margin-top: 0;
}

.fullwidth {
  position: relative;
  background: none;
  z-index: 1;
}

.fullwidth h2 {
  text-align: center;
  margin-top: 0px;
}

.button--primary {
  background: var(--main-color);
  border-radius: 10px;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  border: 0;
}

.button--primary:hover {
  filter: brightness(1.1);
}

.button--primary:hover .buy-icon {
  filter: invert(0);
}

.button--primary:disabled {
  background: var(--secondary-color-highlight);
}

.button--primary:active {
  box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.2);
}

.button--primary,
a.button--primary {
  color: white;
  cursor: pointer;
}

.button--secondary {
  background: var(--secondary-color);
  border-radius: 10px;
  text-shadow: none;
  text-decoration: none;
  box-shadow: none;
  padding-bottom: 0px;
}

.button--secondary:hover {
  background: var(--secondary-color-highlight);
}

.button--outline,
a.button--outline {
  color: var(--secondary-color);
  box-shadow: none;
  max-width: 100%;
  padding: var(--spacing-tiny);
  background: none;
  border: 1px solid var(--secondary-color);
  text-shadow: none;
}

.button--outline .buy-icon {
  width: 21px;
  height: 21px;
  margin-left: -3px;
  margin-right: 10px;
  filter: brightness(0) saturate(100%) invert(48%) sepia(20%) saturate(1691%) hue-rotate(175deg) brightness(83%) contrast(83%);
}

.button-demo {
  margin-top: 8vh;
  margin-bottom: 10px;
}

.button--outline:hover {
  background: none;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.button--large {
  padding: 20px 50px 23px 50px;
  display: inline-block;
  margin: 25px 0 0px 0;
  font-size: 1.25rem;
}

.button--large .buy-icon {
  transform: translateY(-1px);
  width: 24px;
  height: 24px;
}

#header_alert {
  text-align: center;
  background: var(--secondary-color);
  color: white;
  border-bottom: 1px solid var(--secondary-color--darker);
}
#header_alert:hover {
  background: var(--secondary-color--darker);
}

#header_alert img {
  margin: 0px 4px;
}

#header_alert,
#header_alert a {
  font-style: italic;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

#header_alert a {
  padding: 10px 0;
}

#header_alert.bf-header {
  background: var(--color-black);
}

#header_alert.bf-header,
#header_alert.bf-header a {
  color: white;
}

header {
  background-color: var(--color-gradient-start);
  text-align: center;
  font-size: 1.03rem;
  width: 100%;
  z-index: 10001;
  backface-visibility: hidden;
  top: 0;
  padding: 20px 20px 24px 20px;
  transition: box-shadow 0.2s ease-out, background-color 0.2s ease-out;
}

.hidden {
  visibility: hidden;
}

header .button--primary {
  transition: all 0.4s ease;
}

header nav a {
  padding: 10px 10px;
  color: var(--color-black);
  white-space: nowrap;
  margin: 0 5px;
  transition: color 0.1s ease-out;
}

header nav a:first-child {
  margin-left: 0;
}

header nav a:last-child {
  margin-right: 0;
}

header nav a.selected:not(.button--primary),
header nav a:not(.button--primary):not(#logo):hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
}

header nav a:active {
  text-decoration: none;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 0;
  transition: padding 0.1s ease-out;
  width: 100%;
}

header .buy,
header.buy:hover {
  padding: 10px 15px 10px 15px;
  margin-left: 15px;
  box-shadow: none !important;
  transition: none;
}

#header_content {
  max-width: 1050px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#logo {
  padding: 0px 4px;
  margin-right: auto;
}

#logo img {
  height: 39px;
  width: 140px;
  max-width: 100%;
  transition: all 0.2s ease-out;
  margin: -10px 0;
}

#logo img:hover {
  filter: brightness(1.4);
  opacity: 0.85;
}

.fullwidth ul {
  margin: 10px var(--spacing);
  padding: 0 var(--spacing);
}

.fullwidth ul li {
  padding: 5px 0px 5px 3px;
  position: relative;
}

.footer {
  margin-top: auto;
}

#footer_content {
  display: flex;
  justify-content: space-between;
}

#footer_content ul {
  text-align: left;
  padding: 0;
  margin: 0;
  list-style: none;
}

#footer_content>div {
  width: 30%;
}

#footer_content h4 {
  padding: 5px;
  margin-bottom: 8px;
}

.invert {
  filter: invert(1);
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-10 {
  margin-top: 10px;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.content {
  max-width: 1050px;
  padding: 30px 10px 30px 10px;
  margin: 0 auto;
  position: relative;
}

.content>h2:first-child {
  padding-top: var(--spacing-m);
}

.content--trial {
  max-width: 750px;
  font-size: 16px;
}

.content--trial .section {
  border: 1px solid #eee;
  padding: var(--spacing-m);
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

.icon--small {
  width: 32px;
  height: 32px;
  margin: 0px 8px;
}

.bg-tertiary {
  background: #f6f8fa;
}

.large-content {
  max-width: 1200px;
}

.features-highlights {
  width: 100%;
  padding: 20px;
}

.fh {
  width: calc(50% - 42px);
  padding: 15px;
  margin: 20px;
  display: inline-block;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  background: white;
}

.fh__title {
  font-size: 1.3em;
  margin-bottom: 0px;
  font-weight: bold;
}

.fh__body span {
  display: block;
}

.fh__title:before {
  content: '\2705';
  margin-right: 0px;
  margin-left: -10px;
  transform: scale(0.8);
  display: inline-block;
}

.fh__body {
  font-size: 0.9em;
  padding-top: 0.6em;
  opacity: 0.9;
}

.hero {
  padding: var(--spacing-6) 0px var(--spacing-s) 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: initial;
}

.content .subtitle b {
  font-weight: bold;
  background: #fcef9d;
  padding: 0 6px 1px 6px;
  border-radius: 5px;
  margin: 0 -1px;
}

.hero .reviews a {
  color: rgba(0, 0, 0, 0.5);
}

.features {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  width: 100%;
}

.features>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 31%;
  padding: 10px;
  margin-bottom: 20px;
}

.features span {
  font-size: var(--font-subtitle);
  font-weight: bold;
  margin-top: 10px;
}

.features p {
  margin-top: 4px;
  font-weight: 300;
}

.features img {
  width: 64px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-m);
  position: relative;
  width: 100%;
}

.hero-text {
  flex-basis: 60%;
}

.hero-text span {
  font-weight: 400;
  color: var(--secondary-color);
}

.hero-video-container {
  flex-basis: 40%;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 65%;
  top: 9px;
  width: 35vw;
  max-width: 600px;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

.hero .button-caption {
  margin-top: 5px;
}

.hero .button--large,
.hero .button--outline {
  display: inline-block;
  text-align: center;
}

.hero .button--outline {
  padding: 20px 50px 21px 50px;
}

.hero .button--large {
  margin: var(--spacing-m) var(--spacing-s) 0 0;
}

.button--fixed-width {
  width: 330px;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.hero .button--large:active {
  transform: translateY(1px);
}

.content .badges {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content .badges>* {
  transition: all 0.2s ease-in-out;
  padding: var(--spacing);
  transform-origin: bottom center;
}

.content .badges>*:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

.xcs-avatar {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background: white;
  border-radius: 24px;
}

.font-bold {
  font-weight: bold;
}

.font-italic {
  font-style: italic;
}

.font-underline {
  text-decoration: underline;
}

.font-smaller {
  font-size: 14px;
  font-weight: 300;
}

.font-smallest {
  font-size: 12px;
  font-weight: 300;
}

.padding {
  padding: 10px;
}

.padding-left {
  padding-left: 25px;
}

.hero h1 {
  font-weight: 900;
  padding: 0;
  margin: 0;
  font-size: var(--font-hero);
  line-height: var(--font-hero-line-height);
  color: var(--main-color);
  text-align: left;
}

.content.hero .subtitle {
  text-align: left;
}

.content .subtitle {
  font-size: var(--font-subtitle);
  font-weight: normal;
  margin: var(--spacing-m) auto 0 auto;
  max-width: 840px;
  text-align: center;
}

.content .subtitle span {
  display: block;
  text-wrap-style: balance;
}

.hero h3 {
  margin: 50px 0px 0px 0;
  font-size: 18px;
  font-weight: 400;
  max-width: 780px;
}

.hero h4 {
  font-weight: 400;
  margin: 0;
  font-size: 12px;
}

.margin-top-vh {
  margin-top: 6vh;
}

.bg-color-2 {
  background: #FDFDFD;
  box-shadow: inset 0 4px 2px -2px #eee, inset 0 -4px 2px -2px #eee;
}

.bg-dark-pseudo {
  padding-bottom: var(--spacing-4);
}

.bg-dark-pseudo--compact {
  padding-bottom: var(--spacing-2);
}

.bg-dark-pseudo:before {
  content: '';
  position: absolute;
  width: 100%;
  height: calc(100% - 52px);
  background: linear-gradient(var(--color-gradient-start) 70%, var(--color-gradient-end) 100%);
  z-index: -1;
  left: 0;
  top: 0;
}

.bg-dark-pseudo .bg-line-svg {
  fill: var(--color-gradient-end);
  fill-rule: evenodd;
  width: 100%;
  height: 52px;
  position: absolute;
  left: 0;
  top: calc(100% - 52px);
  z-index: -1;
  opacity: 1;
}

.text--white {
  color: white;
}

.text--transparent {
  opacity: 0.5;
}

.bg-color-2 a {
  text-decoration: none;
}

.bg-rainbow {
  background: radial-gradient(circle at 50% 20%, #ffeb59, #ecad00);
  color: black;
}

.bg-rainbow--2 {
  background: radial-gradient(circle at 50% 20%, #d9fff6, #a3ccff);
}

.bg-rainbow i a {
  color: black;
  text-decoration: underline;
}

.bg-rainbow i a:hover {
  color: #444;
}

.bg-color-4 {
  background: linear-gradient(180deg, var(--color-gradient-end), #FDFDFD, var(--color-gradient-end));
  border-radius: var(--border-radius);
  padding: 40px;
}

.bg-color-3 {
  color: white;
  background: #1d0d25;
  box-shadow: inset 0 4px 6px 1px rgba(0, 0, 0, 0.1);
  line-height: 1.5em;
}

.bg-color-3 a {
  color: white;
  text-decoration: underline;
}

.bg-color-3 a:not(.button--primary):hover {
  text-decoration: none;
  color: var(--main-color-hover);
  background: none;
}

.bg-color-3 h4 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.1);
  margin: 0;
}

.hover-video {
  cursor: pointer;
}

.hover-video-meta {
  display: none;
}

.hover-video .tiny-icon {
  width: 25px;
  height: 25px;
  display: inline-block;
  margin-bottom: -8px;
  filter: brightness(0) saturate(100%) invert(49%) sepia(17%) saturate(3553%) hue-rotate(190deg) brightness(88%) contrast(86%);
}

#overlay-video-wrap {
  display: none;
  position: absolute;
  z-index: 1000;
  transform-origin: left top;
  opacity: 0;
  animation: flipInY 0.3s forwards;
  overflow: hidden;
  border-radius: var(--border-radius);
  padding: var(--spacing-tiniest) var(--spacing);
  backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, .15);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05), 2px 2px 15px rgba(0, 0, 0, 0.1);
  flex-direction: column;
}

#overlay-video-wrap__close {
  position: absolute;
  top: var(--spacing-tiniest);
  right: var(--spacing-tiniest);
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  border-radius: 30px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#overlay-video-wrap__close:hover {
  background: rgba(0, 0, 0, .05);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
}

#overlay-video-wrap video {
  border-radius: 4px;
  background-color: white;
}

#overlay-video-wrap h4 {
  margin: 0;
}

#overlay-video-wrap p {
  margin: var(--spacing-tiniest) 0;
}

#overlay-video-wrap p a {
  margin-top: var(--spacing-tiniest);
}

@keyframes flipInY {
  0% {
    transform: perspective(100px) rotate3d(-1.66, 0, 0, 10deg) scale(0);
    opacity: 0;
  }

  20% {
    transform: perspective(100px) rotate3d(-1.66, 0, 0, 8deg) scaleX(1) scaleY(0.2);
    opacity: 0.05;
  }

  100% {
    transform: perspective(100px) rotate3d(-1.66, 0, 0, 0deg) scale(1);
    opacity: 1;
  }
}


.verified {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-l) 0 var(--spacing-s) 0;
  font-weight: 400;
  color: var(--color-text-secondary);
}

.verified img {
  width: 28px;
  height: 28px;
  margin-right: 5px;
  filter: grayscale(0.2);
}

.offer {
  color: #83ad55;
  font-weight: bold;
  text-decoration: underline;
}

.bg-color-2 .offer {
  color: #b3cd55;
}

.bookmark {
  top: -60px;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.imageWrap {
  width: 45%;
  display: inline-block;
  margin: 10px;
}

.imageWrap img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left !important;
}

.gif {
  width: 60%;
  height: auto;
  box-shadow: 0px 9px 13px 0px rgba(53, 54, 66, 0.2), -5px -5px 10px 0px rgba(169, 209, 215, 0.07), -7px 0px 15px 0px rgba(0, 0, 0, 0.07), -1px 15px 15px 0px rgba(64, 87, 85, 0.07);
  flex-shrink: 0;
  border-radius: 15px;
}

.gifWrap--right .gif {
  box-shadow: 0px 9px 13px 0px rgba(53, 54, 66, 0.2), 5px -5px 10px 0px rgba(169, 209, 215, 0.07), -7px 0px 15px 0px rgba(0, 0, 0, 0.07), -1px 15px 15px 0px rgba(64, 87, 85, 0.07);
}

.gifWrap {
  display: flex;
  margin-top: 120px;
  margin-bottom: 180px;
  font-size: 16px;
  justify-content: center;
}

.gifWrap>div {
  text-align: left;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  margin-right: 50px;
  font-size: 22px;
  font-weight: 300;
}

.gifWrap h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: var(--font-title);
  font-weight: 900;
}

.gifWrap h4 {
  margin: 10px 0 0 0;
  color: var(--main-color);
  font-size: 18px;
}

.gifWrap--right {
  flex-direction: row-reverse;
}

.gifWrap--right>div {
  margin-left: 50px;
  margin-right: 20px;
}

.reviews {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

.reviews blockquote {
  border-radius: var(--border-radius);
  font-size: 16px;
  margin: 1em 0 0.1em 0;
  padding: 1em 2em;
  line-height: 1.45;
  position: relative;
  background: white;
  font-style: italic;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .15);
  width: calc(50% - 1em);
}

.reviews blockquote:before {
  display: block;
  content: "\201C";
  position: absolute;
  font-weight: normal;
  font-size: 45px;
  top: 5px;
  left: 15px;
  color: #666;
}

.reviews blockquote:after {
  display: block;
  content: "\201D";
  right: 15px;
  font-size: 45px;
  position: absolute;
  font-weight: normal;
  top: initial;
  color: #666;
  bottom: 10px;
  line-height: 0;
}

.reviews blockquote span {
  margin-bottom: 5px;
  display: inline-block;
  font-weight: bold;
  text-indent: 1em;
}

.hero .reviews {
  margin: 50px 0 50px 0;
}

.hero .reviews>a {
  width: 100%;
  text-align: right;
  padding-right: 5px;
}

.cmp-table {
  padding-top: 15px;
  width: 100%;
  border-collapse: collapse;
}

.cmp-table tbody {
  width: 100%;
}

.cmp-table,
.cmp-table tbody,
.cmp-table thead,
.cmp-table tr,
.cmp-table td,
.cmp-table th {
  border: 1px solid #ddd;
  border-spacing: 0;
}

.cmp-table tbody tr:nth-child(2n+1) {
  background: rgb(245, 245, 245);
}

.cmp-table th {
  text-align: center;
  font-size: 22px;
  padding: 15px 0;
}

.cmp-table td {
  padding: 20px 20px;
}

.cmp-y {
  color: rgba(50, 177, 0, 0.8);
}

.cmp-n {
  color: rgba(238, 39, 56, 0.8)
}

.cmp-p {
  color: rgba(0, 100, 182, 0.8);
}

.cmp-val {
  font-weight: bold;
  text-align: center;
}

#reviews .reviews {
  margin-top: 4vh;
}

.review_author:before {
  content: "\2014 \2009";
}

a.newsletter {
  text-decoration: none;
  padding: 15px 10px 18px 10px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 0;
  margin-top: 10px;
}

a.newsletter:hover {
  color: inherit;
}

.newsletter span {
  font-size: 24px;
  display: inline-block;
  transform: translateY(3px);
}

.contact-widget {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10002;
  max-width: 90%;
  margin-right: 15px;
}

.contact-widget form {
  display: flex;
  width: 350px;
  max-width: 100%;
  flex-direction: column;
  background: var(--color-gradient-start);
  border-radius: 10px;
  margin-bottom: 80px;
  padding: 20px;
  box-shadow: 1px 2px 9px rgba(0, 0, 0, 0.2);
}

.contact-widget.minimized form {
  display: none !important;
}

.contact-widget__info {
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
  color: white;
}

#contact-widget__error {
  background: #ec3d4c;
}

#contact-widget__success {
  background: #188475;
}

#contact-widget__error:not(.display-none) {
  animation: scale-in 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.175) forwards;
  transform: scale(0);
  transform-origin: top center;
}

.contact-widget:not(.minimized) form {
  animation: scale-in 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.175) forwards;
  transform: scale(0);
  transform-origin: bottom right;
}

@keyframes scale-in {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.display-none {
  display: none;
}

.contact-widget input,
.contact-widget textarea,
.contact-widget button {
  font-size: 16px;
  border-radius: 5px;
  margin: 2px 5px;
  padding: 10px;
  border: 1px solid white;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1), 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-widget textarea {
  resize: vertical;
  max-height: 350px;
}

.contact-widget input:focus,
.contact-widget textarea:focus {
  outline: 2px solid var(--main-color);
}

.contact-widget__toggle {
  color: white;
  font-size: 25px;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--main-color);
  border-radius: 100px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 5px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--main-color-highlight);
  cursor: pointer;
  position: absolute;
  bottom: 15px;
  right: 0px;
  user-select: none;
}

.contact-widget__toggle>span {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  transition: transform 0.2s ease-in-out;
}

.contact-widget.minimized .contact-widget__toggle>span {
  transform: rotate(0);
}

.contact-widget__toggle:hover {
  filter: brightness(1.1);
}

.contact-widget__toggle svg {
  width: 30px;
  height: 30px;
}

.contact-widget button {
  color: white;
  outline: none;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  padding: 15px 10px;
}

.contact-widget label {
  padding-top: 10px;
  padding-left: 10px;
  padding-bottom: 5px;
  color: var(--color-text-secondary);
}

.rounded--sm {
  border-radius: 5px !important;
}

@media screen and (max-width: 1100px) {

  #header-content,
  .content {
    max-width: 900px;
  }

  .features>div {
    width: 50%;
  }

  .hide-on-md {
    display: none;
  }

  .gifWrap {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }

  .gifWrap h3 {
    margin-bottom: 20px;
  }

  .gifWrap>div {
    margin-bottom: 10px;
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
    padding: 0 10px;
    flex-grow: 1;
    width: 100%;
  }

  .gif {
    width: 100%;
    margin-top: 20px;
  }

  .reviews blockquote {
    width: 100%;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-text,
  .hero-video-container {
    flex: 0 0 100%;
    max-width: 100%;
    position: static;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
  }


  .hero.content .subtitle {
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero h1 {
    margin: var(--spacing-s) 0;
    text-align: center !important;
  }
}

@media screen and (max-width: 760px) {

  .bg-dark-pseudo:before {
    height: 400px;
  }

  .bg-dark-pseudo .bg-line-svg {
    top: 400px;
  }

  body {
    padding: 0;
  }

  header {
    position: relative;
    padding: 0 5px;
  }

  header nav {
    margin-left: 0;
    width: 100%;
    padding: 3px 0px;
  }

  header nav a {
    padding: 10px;
    margin: 5px 0px 5px 5px;
  }

  #logo {
    margin-left: 5px;
    padding: 0;
  }

  #logo img {
    height: initial;
  }

  header nav a:last-child {
    margin-right: 0;
  }

  .hide-on-mobile {
    display: none;
  }

  .hero {
    padding: var(--spacing) var(--spacing-tiniest) var(--spacing) var(--spacing-tiniest);
  }

  .bg-color-4 {
    padding: 40px 10px;
  }

  .features>div {
    width: 100%;
  }

  .fh {
    display: block;
    width: 100%;
    text-align: left;
  }

  .fh__title:before {
    margin-left: -5px;
  }

  .fh__body {
    padding-left: 28px;
  }

  .fh {
    margin-left: 0;
  }

  .hero h1,
  h1 {
    font-size: 46px;
    line-height: 40px;
    text-shadow: none;
    margin-top: 30px;
    text-align: left;
    width: 100%;
  }

  .content .subtitle {
    text-wrap: pretty;
    font-size: 1.5rem;
    margin: 0;
    padding: var(--spacing);
  }

  #footer_content {
    flex-direction: column;
  }

  #footer_content h4 {
    text-align: center;
  }

  #footer_content>div {
    width: 100%;
    text-align: center;
  }

  #footer_content>div:not(:first-child) {
    margin-top: 30px;
  }

  h4 {
    font-size: 110%;
  }

  #footer_content ul {
    text-align: center;
  }

  .content--trial {
    text-align: left;
  }

  .content .badges {
    flex-direction: column;
  }

  .content .badges>* {
    margin: var(--spacing-tiniest) 0 !important;
    filter: none;
    opacity: 1;
  }

}

.block {
  display: block;
}