@charset "UTF-8";
/*! VARIABLES */
/*! SETUP */
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
ul {
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-size: 100%;
  font-family: 'Gothic A1', sans-serif;
  font-size: 17px;
  color: #fff;
  background-color: #05192D;
}
body ::selection {
  background: #a372ff;
  color: #fff;
}
body ::-moz-selection {
  background: #a372ff;
  color: #fff;
}
section,
.global {
  position: relative;
  width: 100%;
  z-index: 1;
  overflow: hidden;
  padding-left: 50px;
  padding-right: 50px;
}
.contentContainer {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.contentContainer.pad-wrap {
  max-width: calc(1300px);
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
nav ul,
nav li {
  margin: 0;
  list-style: none;
  list-style-image: none;
}
li {
  break-inside: avoid;
}
a,
a:active,
a:visited {
  text-decoration: none;
}
fieldset {
  padding: 0;
  margin: 0;
  border: none;
}
input {
  padding: 0;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
html {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
input,
textarea,
button {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
input[type="submit"]::-moz-focus-inner,
[type="button"]::-moz-focus-inner {
  padding: 0;
  border: 0;
  margin-top: -4px;
}
textarea {
  resize: none;
}
:focus {
  outline: none;
}
button:focus {
  outline: 0;
}
button,
input {
  border: none;
  background: none;
}
button {
  cursor: pointer;
}
.vline-div {
  padding: 0 5px;
}
.sidepad {
  padding-left: 50px;
  padding-right: 50px;
}
.sidepadM {
  padding-left: 25px;
  padding-right: 25px;
}
.nopad {
  padding-left: 0px;
  padding-right: 0px;
}
.automargin {
  margin-left: auto;
  margin-right: auto;
}
.valign {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -ms-flex-pack: center;
}
.valign-l {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -ms-flex-pack: center;
}
.valign-r {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -ms-flex-pack: center;
}
.valign-b {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -ms-flex-pack: center;
}
.break {
  display: block;
  width: 0;
  height: 0px;
  flex-basis: 100%;
}
.abs-fill {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.abs {
  position: absolute;
  left: 0;
  top: 0;
}
.absr {
  position: absolute;
  right: 0;
  top: 0;
}
.abs-cen {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.abs-cenv {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.bgcover {
  background: center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.inline-c {
  display: inline-block;
  vertical-align: middle;
}
.inline-t {
  display: inline-block;
  vertical-align: top;
}
.noshrink {
  -webkit-flex-shrink: 0;
  -ms-flex: -1;
  flex-shrink: 0;
}
.allowgrow {
  -webkit-flex-grow: 1;
  -ms-flex: 1;
  flex-grow: 1;
}
.no-breakout {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
}
.boost-accel {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.noflicker {
  -webkit-backface-visibility: hidden;
}
.overflow-anim {
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.div-scroll {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.spacer {
  width: 100%;
  height: auto;
  display: block;
}
.sizer {
  visibility: hidden;
}
.filler {
  visibility: hidden;
}
.mob {
  display: none;
}
.col {
  position: relative;
}
.row {
  width: 100%;
  position: relative;
}
.upc {
  text-transform: uppercase;
}
.flipX {
  transform: scaleX(-1);
}
.flipY {
  transform: scaleY(-1);
}
.flipXY {
  transform: scale(-1);
}
.rotate-text {
  position: absolute;
  transform: translateX(-50%) translateY(-50%) rotate(-90deg);
  top: 50%;
  left: 50%;
}
.fpo {
  background-color: rgba(255, 0, 0, 0.2);
}
.spaced {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
.spaced-c {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
.spaced-t {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
.showflex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  z-index: 60;
}
.blanket {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .95;
  z-index: 1;
}
.overlayWrap {
  width: 100%;
  height: 100%;
  position: fixed;
  padding: 0 50px;
  -webkit-transform: translateZ(0);
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 30;
}
.overlayWrap .contentContainer {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -ms-flex-pack: center;
  height: auto;
  min-height: 100%;
}
.gridline {
  width: 1px;
  height: 100%;
  position: fixed;
  left: 50%;
  top: 0px;
  z-index: 100;
  background-color: yellow;
  opacity: .1;
  display: none;
}
.gridline.l {
  left: 50px;
}
.gridline.r {
  left: auto;
  right: 50px;
}
.gridline.ml {
  margin-left: -600px;
}
.gridline.mr {
  margin-left: 600px;
}
.crosshairs:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 0px;
  height: 100%;
  border-left: 1px solid red;
  z-index: 50;
}
.crosshairs:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  top: 50%;
  height: 0px;
  width: 100%;
  border-top: 1px solid red;
  z-index: 50;
}
.part {
  position: absolute;
  left: 0;
  top: 0;
}
.part img {
  width: 100%;
  height: auto;
  display: block;
}
.part-wrap {
  position: absolute;
  overflow: hidden;
}
.sized img {
  width: 100%;
  height: auto;
  display: block;
}
.bg-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}
.background {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.background .base img {
  position: relative;
}
.background .layer {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.background .layer img {
  width: 100%;
  height: auto;
  display: block;
}
.background.cn {
  width: 1800px;
  left: 50%;
  margin-left: -900px;
}
.background .spacer {
  position: relative;
}
.tc {
  transform-origin: top center;
}
.tl {
  transform-origin: top left;
}
.bc {
  transform-origin: bottom center;
}
.lc {
  transform-origin: left center;
}
/* FUNCTIONS */
/*! - GLOBAL ***************************** */
/*! - GLOBAL: 0 REUSE */
section h1,
section h2 {
  font: 600 84px/1.08 'jaf-mashine', sans-serif;
}
section h3 {
  font-size: 34px;
  line-height: 1.62;
  font-weight: normal;
  margin-bottom: 18px;
}
section h4 {
  font: 400 21px/1.57 'jaf-mashine', sans-serif;
  letter-spacing: 1.75px;
  color: #651fff;
}
section h5 {
  font: 400 16px/1 'jaf-mashine', sans-serif;
  color: #efbb54;
}
section p {
  line-height: 2;
}
section p + p {
  margin-top: 25px;
}
section header {
  text-align: center;
}
section header p {
  font-size: 20px;
}
section header p + h2 {
  margin-top: 25px;
}
.social-links li {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #000;
  -webkit-transition: background-color 0.3s linear;
  -moz-transition: background-color 0.3s linear;
  -o-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
}
.social-links li ~ li {
  margin-left: 20px;
}
.social-links li .icon {
  font-size: 18px;
  color: #fff;
  line-height: 50px;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.social-links li a {
  display: block;
}
.dot-nav {
  width: 100%;
  text-align: center;
}
.dot-nav .dot-btn {
  width: 9px;
  height: 9px;
  border-radius: 9px;
  background-color: #000;
  opacity: .1;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.dot-nav .dot-btn + .dot-btn {
  margin-left: 8px;
}
.dot-nav .dot-btn.on {
  opacity: 1;
}
a {
  color: #fff;
  text-decoration: underline;
}
.cta-btn {
  background-color: #281B7A;
  text-decoration: none;
  text-align: center;
  padding: 26px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.cta-btn span {
  position: relative;
}
.cta-btn .bg {
  display: block;
  width: 877px;
  position: absolute;
  left: -262px;
  top: -7px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.cta-btn .bg img {
  width: 100%;
  height: auto;
  display: block;
}
cite {
  font-size: 14px;
  color: #651fff;
  font-style: normal;
  display: block;
  margin-top: 28px;
}
.pad-wrap {
  padding-left: 50px;
  padding-right: 50px;
}
.diagram-box {
  border: 1px solid #651fff;
}
.diagram-box .diagram-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #651fff;
}
.diagram-box .graph-wrap {
  position: relative;
}
.diagram-box .diagram-footer {
  padding: 20px 20px 15px;
  text-align: center;
  border-top: 1px solid #651fff;
  position: relative;
}
.title-wrap {
  position: relative;
}
.title-wrap > * {
  display: inline-block;
  vertical-align: top;
}
.title-wrap .icon {
  margin-right: 11px;
}
.outer-wrap {
  width: 100%;
  max-width: 1570px;
  margin-left: auto;
  margin-right: auto;
  padding: 54px 25px 50px;
  background-color: rgba(1, 38, 58, 0.27);
  overflow: hidden;
}
.special-kern span + span {
  margin-left: 5px;
}
/*! - GLOBAL: 1 LOADER */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #05192D;
  z-index: 50;
}
/*! - GLOBAL: 2 HEADER */
#globalHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: visible;
  z-index: 30;
  padding: 0 175px;
  -webkit-backface-visibility: hidden;
}
#globalHeader .logo {
  position: absolute;
  left: 0;
  top: 0;
  left: 63px;
  top: 57px;
  width: 213px;
  -webkit-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
  -moz-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
  -o-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
  transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
}
#globalHeader .logo > img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
#globalHeader .logo .eye {
  width: 54px;
}
#globalHeader .logo .txt {
  width: 146px;
  position: absolute;
  left: 66px;
  top: 24px;
  transform-origin: left center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
#globalHeader .logo .txt .letter {
  position: absolute;
  left: 0;
  top: 0;
}
#globalHeader .logo .txt .letter.w {
  width: 24px;
}
#globalHeader .logo .txt .letter.o {
  width: 21px;
  transform: translateX(30px);
}
#globalHeader .logo .txt .letter.r {
  width: 19px;
  transform: translateX(57px);
}
#globalHeader .logo .txt .letter.t {
  width: 22px;
  transform: translateX(78px);
}
#globalHeader .logo .txt .letter.h {
  width: 19px;
  transform: translateX(104px);
}
#globalHeader .logo .txt .letter.y {
  width: 19px;
  transform: translateX(127px);
}
#globalHeader .logo .seal {
  position: absolute;
  left: 0;
  top: 0;
  left: -32px;
  top: -28px;
  width: 120px;
  height: 120px;
  opacity: 0;
}
#globalHeader .top-btn {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
#globalHeader.sticky .sticky-bar,
#globalHeader.sticky .title-menu {
  transform: translateY(0%);
}
#globalHeader.sticky .logo {
  transform: translateY(-52px);
}
#globalHeader .sticky-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 71px;
  z-index: 0;
  transform: translateY(-100%);
  background-color: #05192D;
  -webkit-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
  -moz-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
  -o-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
  transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
}
#globalHeader .title-menu {
  padding-left: 25px;
  width: 225px;
  transform: translateY(-71px);
  -webkit-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
  -moz-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
  -o-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
  transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
}
#globalHeader .title-menu.open .jump-nav {
  pointer-events: all;
}
#globalHeader .title-menu p,
#globalHeader .title-menu li {
  font-size: 14px;
}
#globalHeader .title-menu .selected {
  width: 100%;
  padding-top: 27px;
  height: 71px;
  background-color: #05192D;
  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
#globalHeader .title-menu .selected .title-list {
  position: absolute;
  left: 0;
  top: 0;
  list-style: none;
  width: 100%;
}
#globalHeader .title-menu .selected li {
  height: 71px;
  display: block;
  line-height: 71px;
}
#globalHeader .title-menu .selected .arr {
  font-size: 17px;
  position: absolute;
  right: 0px;
  top: 27px;
}
#globalHeader .title-menu .jump-nav {
  width: 294px;
  padding: 30px 25px 40px;
  background-color: #05192D;
  position: absolute;
  left: 0;
  top: 0;
  top: 71px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  opacity: 0;
  pointer-events: none;
}
#globalHeader .title-menu .jump-nav a {
  text-decoration: none;
}
#globalHeader .title-menu .jump-nav li {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#globalHeader .title-menu .jump-nav li + li {
  margin-top: 26px;
}
#globalHeader .title-menu .jump-nav li.on {
  padding-left: 20px;
}
#globalHeader .title-menu .jump-nav li.on a {
  color: #efbb54;
}
#globalHeader .title-menu .jump-nav:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 20px;
  background-color: #05192D;
  top: -20px;
}
.side-seal {
  position: absolute;
  left: 30px;
  top: 750px;
  width: 120px;
  height: 120px;
  z-index: 31;
}
.side-seal > * {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.side-seal .inner {
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
.side-seal .outer img {
  -webkit-animation: spinner infinite 10s linear;
  -moz-animation: spinner infinite 10s linear;
  animation: spinner infinite 10s linear;
  animation-fill-mode: forwards;
  animation-direction: reverse;
}
.side-seal.on .outer {
  position: fixed;
  top: 0;
  left: 0;
  left: 30px;
  top: -22px;
  width: 120px;
  height: 120px;
}
.side-seal.on .inner {
  opacity: 0;
}
/*! - GLOBAL: 3 FOOTER */
#globalFooter {
  padding-top: 84px;
  padding-bottom: 84px;
}
#globalFooter .contentContainer {
  max-width: 1540px;
}
#globalFooter p {
  font-size: 14px;
}
#globalFooter a {
  font-size: 15px;
}
#globalFooter ul {
  list-style: none;
}
#globalFooter li {
  display: inline-block;
  vertical-align: middle;
}
#globalFooter li + li {
  margin-left: 20px;
}
/*! - GLOBAL: 4 FORM */
#contact-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 515px;
  background-color: #05192D;
  transform: translateY(-515px);
  opacity: 1;
}
#contact-form h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 40px;
}
#contact-form .logo-eye {
  position: absolute;
  left: 63px;
  top: 57px;
  width: 55px;
}
#contact-form .close-btn {
  position: absolute;
  right: 63px;
  top: 63px;
  cursor: pointer;
  z-index: 5;
}
#contact-form .icon-close-x {
  font-size: 51px;
}
#contact-form .contentContainer {
  max-width: 594px;
  padding-top: 77px;
}
#contact-form .cta-btn {
  width: 177px;
  position: absolute;
  right: 0px;
  bottom: 0px;
}
#contact-form button[disabled="disabled"] {
  pointer-events: none;
}
#contact-form form ::-webkit-input-placeholder {
  color: #651fff;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
#contact-form form :-moz-placeholder {
  color: #651fff;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
  opacity: 1;
}
#contact-form form ::-moz-placeholder {
  color: #651fff;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
  opacity: 1;
}
#contact-form form :-ms-input-placeholder {
  color: #651fff;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
#contact-form form input:-webkit-autofill,
#contact-form form input:-webkit-autofill:hover,
#contact-form form input:-webkit-autofill:focus,
#contact-form form input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #05192D inset;
  -webkit-text-fill-color: #651fff;
}
#contact-form .field-row {
  width: 100%;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
#contact-form .field-row .field-wrap {
  width: 100%;
}
#contact-form .field-row + .field-row {
  margin-top: 37px;
}
#contact-form .field-wrap {
  border-bottom: 1px solid #651fff;
  position: relative;
  height: 36px;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-transition: border-color 0.3s linear;
  -moz-transition: border-color 0.3s linear;
  -o-transition: border-color 0.3s linear;
  transition: border-color 0.3s linear;
}
#contact-form .field-wrap label,
#contact-form .field-wrap input {
  font-size: 17px;
  color: #651fff;
  height: 36px;
  padding: 11px 0;
  display: block;
}
#contact-form .field-wrap label {
  -webkit-flex-shrink: 0;
  -ms-flex: -1;
  flex-shrink: 0;
  padding-right: 8px;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
#contact-form .field-wrap input {
  width: 100%;
  flex-basis: 1;
}
#contact-form .field-wrap.error {
  border-color: #efbb54;
}
#contact-form .field-wrap.error ::-webkit-input-placeholder {
  color: #efbb54;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
#contact-form .field-wrap.error :-moz-placeholder {
  color: #efbb54;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
  opacity: 1;
}
#contact-form .field-wrap.error ::-moz-placeholder {
  color: #efbb54;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
  opacity: 1;
}
#contact-form .field-wrap.error :-ms-input-placeholder {
  color: #efbb54;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
#contact-form .field-wrap.error label {
  color: #efbb54;
}
#contact-form .thank-you {
  margin-top: 35px;
  text-align: left;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
#contact-form .thank-you p {
  color: #fff;
}
#request-form.sending .field-row {
  opacity: .5;
}
/*! - SECTION ***************************** */
/*! - SECTION: 0 HERO */
#hero {
  text-align: center;
  color: #efbb54;
  padding-top: 660px;
  padding-bottom: 394px;
}
#hero p {
  font-size: 20px;
  margin-bottom: 16px;
}
#hero .background .base {
  width: 1210px;
  left: 314px;
  top: -69px;
}
/*! - SECTION: 1 NORTHSTAR */
#northstar {
  padding-top: 125px;
  padding-bottom: 75px;
  margin-top: -25px;
  z-index: 0;
}
#northstar header {
  max-width: 500px;
  margin-bottom: 445px;
  text-align: left;
}
#northstar header h2 {
  transform: translateX(-10px);
}
#northstar .col {
  width: 47.5%;
}
#northstar .col.left {
  max-width: 545px;
}
#northstar .col.right {
  max-width: 500px;
}
#northstar .background {
  top: -100px;
}
#northstar .background .base {
  width: 1418px;
  left: 280px;
}
#northstar .background .cover {
  left: 400px;
  top: 7px;
  width: 1400px;
}
#northstar .graph-wrap {
  position: relative;
}
#northstar .graph-anim {
  position: absolute;
  left: 0;
  top: 0;
  width: 545px;
  transform-origin: top left;
}
#northstar .diagram-box {
  border: none;
  position: relative;
}
#northstar .diagram-header {
  border: 1px solid #651fff;
  border-bottom: none;
}
#northstar .graph-text {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  color: #fff;
}
#northstar .graph-text[data-num="1"] {
  transform: rotate(-90deg);
  left: -30px;
  top: 50%;
  margin-top: 102px;
  transform-origin: left top;
}
#northstar .graph-text[data-num="2"] {
  width: 100%;
  text-align: center;
  top: auto;
  bottom: -44px;
}
/*! - SECTION: 2 SOLUTION */
#solution {
  padding: 868px 0 1000px;
}
#solution header {
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 675px;
  margin: 0 auto;
}
#solution header p {
  margin-top: -14px;
}
#solution header .ornament {
  width: 285px;
  display: inline-block;
}
#solution .image-wrap {
  height: 673px;
  margin-bottom: 190px;
  position: relative;
  z-index: 0;
}
#solution .image-wrap .base {
  width: 1794px;
  left: 50%;
  margin-left: -864px;
  top: -14px;
}
#solution .image-wrap .eye-wrap {
  position: absolute;
  left: 317px;
  top: 0px;
  width: 1094px;
}
#solution .image-wrap .spacer {
  position: relative;
}
#solution .image-wrap .pattern {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  top: 90px;
}
#solution .col {
  width: 47.5%;
}
#solution .col.left {
  max-width: 530px;
}
#solution .col.right {
  max-width: 545px;
}
#solution .row[data-num="1"] .title-wrap {
  margin-top: -7px;
  margin-bottom: 54px;
}
#solution .row[data-num="1"] .title-wrap .icon {
  width: 58px;
  margin-top: -24px;
  margin-right: 12px;
}
#solution .row[data-num="2"] {
  margin-top: 158px;
}
#solution .row[data-num="2"] .title-wrap {
  margin-bottom: 54px;
}
#solution .row[data-num="2"] .title-wrap .icon {
  width: 52px;
  margin-top: -17px;
  margin-right: 20px;
}
#solution .row[data-num="2"] .col.right {
  max-width: 505px;
}
#solution .row[data-num="2"] .col.right .inner {
  max-width: 470px;
}
#solution .row[data-num="2"] .cta-btn {
  margin-top: 60px;
}
#solution .row[data-num="2"] .background {
  width: 792px;
  top: -180px;
  left: 50%;
  margin-left: -396px;
}
#solution .row[data-num="2"] .background .base {
  width: 792px;
}
#solution .diagram-box .graph-wrap {
  height: 288px;
  position: relative;
  padding: 0 20px;
}
#solution .diagram-box .graph {
  width: 360px;
  left: 50%;
  margin-left: -180px;
  top: auto;
  bottom: 0px;
}
#solution .diagram-box .graph-lines {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
#solution .diagram-box .graph-lines .graph-line {
  width: 100%;
  height: 1px;
  background-color: #651fff;
  opacity: .2;
  margin-top: 42px;
}
#solution .diagram-box .graph-text,
#solution .diagram-box .graph-bars {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
#solution .diagram-box .graph-text .graph-item,
#solution .diagram-box .graph-bars .graph-item {
  width: 74px;
  text-align: center;
  font-size: 14px;
}
#solution .diagram-box .graph-text .graph-item img,
#solution .diagram-box .graph-bars .graph-item img {
  width: 100%;
  height: auto;
  display: block;
}
#solution .diagram-box .graph-bars {
  height: 100%;
  position: relative;
  bottom: -1px;
  overflow: hidden;
}
#solution .diagram-box .graph-bars .graph-item {
  height: 100%;
  position: relative;
}
#solution .diagram-box .graph-bars .graph-item .graph-bar {
  width: 74px;
  top: auto;
  bottom: 0px;
  transform: translateY(158px);
}
#solution .diagram-box .graph-bars .graph-item[data-num="2"] .graph-icon {
  width: 74px;
  top: auto;
  left: -1px;
  bottom: 0px;
  transform: translateY(-1px);
}
#solution .background .arc {
  width: 2832px;
  left: 50%;
  margin-left: -1416px;
}
#solution .background .arc-text {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
#solution .background .arc-text img {
  -webkit-backface-visibility: hidden;
}
#solution .background.top .arc-text {
  width: 3175px;
  height: 3175px;
  left: -707px;
  top: 184px;
}
#solution .background.top .arc-text img {
  width: 1550px;
  position: absolute;
  left: 0;
  top: 0;
  left: 837px;
  /* left: 50%; margin-left: -775px; */
}
#solution .background.top .arc {
  top: 334px;
}
#solution .background.bot {
  top: auto;
  bottom: 0px;
  height: 1285px;
  z-index: 5;
  pointer-events: none;
}
#solution .background.bot .arc {
  top: 0px;
}
#solution .background.bot .arc > div {
  transform: scaleY(-1);
}
#solution .background.bot .arc-text {
  width: 3175px;
  height: 3175px;
  left: -687px;
  /* margin-left: -1587px; */
  top: -2077px;
}
#solution .background.bot .arc-text img {
  width: 1211px;
  position: absolute;
  left: 0;
  top: 0;
  left: 50%;
  margin-left: -605px;
  top: auto;
  bottom: 0px;
}
#solution .ornament.part {
  width: 161px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
#solution .ornament.part.bot {
  top: auto;
  bottom: 0px;
}
#solution .ornament.part.bot img {
  transform: scaleY(-1);
}
/*! - SECTION: 3 HOW IT WORKS */
#how {
  padding-top: 130px;
  padding-bottom: 60px;
}
#how header {
  text-align: center;
}
#how .how-mods-wrap {
  position: relative;
  height: 640px;
  margin-top: 104px;
}
#how .how-mods {
  position: absolute;
  left: 0;
  top: 0;
  width: 2064px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-backface-visibility: hidden;
}
#how .how-mod {
  width: 486px;
  height: 444px;
  overflow: hidden;
  transform: translateY(94px);
  /* height: 637px; */
  padding: 30px;
  background-color: #05192D;
  border: 1px solid #183A4F;
  text-align: center;
  position: relative;
  cursor: pointer;
  -webkit-transition: border-color 0.5s linear;
  -moz-transition: border-color 0.5s linear;
  -o-transition: border-color 0.5s linear;
  transition: border-color 0.5s linear;
}
#how .how-mod.on {
  border-color: #651fff;
  cursor: auto;
}
#how .how-mod.on h5 {
  color: #651fff;
}
#how .how-mod .mod-image {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  top: 92px;
}
#how .how-mod .mod-image .inner {
  position: absolute;
  width: 100%;
}
#how .how-mod h5 {
  margin-bottom: 320px;
  color: #183A4F;
  letter-spacing: 5px;
  position: relative;
  -webkit-transition: color 0.5s linear;
  -moz-transition: color 0.5s linear;
  -o-transition: color 0.5s linear;
  transition: color 0.5s linear;
}
#how .how-mod h3 {
  font-size: 23px;
  line-height: 1.43;
}
#how .how-mod .txt {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
#how .how-mod .how-details {
  height: 0px;
  overflow: hidden;
}
#how .how-mod[data-num="0"] .mod-image {
  width: 335px;
}
#how .how-mod[data-num="0"] .inner {
  height: 248px;
}
#how .how-mod[data-num="1"] .mod-image {
  width: 236px;
}
#how .how-mod[data-num="1"] .txt {
  max-width: 360px;
}
#how .how-mod[data-num="1"] .inner {
  height: 238px;
}
#how .how-mod[data-num="2"] .mod-image {
  width: 304px;
}
#how .how-mod[data-num="2"] .inner {
  height: 238px;
}
#how .how-mod[data-num="3"] .mod-image {
  width: 234px;
}
#how .how-mod[data-num="3"] .inner {
  height: 229px;
}
#how .mods-nav {
  width: 486px;
  margin-top: 41px;
  text-align: center;
  position: relative;
}
#how .mods-nav .arr {
  display: inline-block;
  color: #ffffff;
  font-size: 46px;
  cursor: pointer;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
#how .mods-nav .arr.off {
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
#how .mods-nav .arr.next {
  margin-left: 36px;
}
#how .mod-highlight {
  position: absolute;
  left: 0;
  top: 0;
  top: 242px;
  left: -12px;
  opacity: 0;
}
#how .mod-highlight .glow {
  width: 596px;
}
#how .mod-highlight .texture {
  width: 574px;
  top: 384px;
  left: 85px;
}
#how .background {
  top: 236px;
}
#how .background .ornament {
  width: 453px;
}
#how .background .ornament[data-num="1"] {
  left: -51px;
}
#how .background .ornament[data-num="2"] {
  top: 378px;
  left: 1398px;
}
#how .background .ornament[data-num="2"] img {
  transform: scaleX(-1);
}
/*! - SECTION: 4 WHITE PAPER */
#whitepaper {
  padding-top: 76px;
}
#whitepaper p {
  font-size: 20px;
}
#whitepaper h2 {
  font: 400 55px/1.4 'Gothic A1', sans-serif;
  margin-top: 30px;
}
#whitepaper .cta-btn {
  margin-top: 35px;
}
#whitepaper .cta-btn .bg {
  width: 1140px;
  height: 84px;
  left: -340px;
}
#whitepaper .cta-btn .bg img {
  height: 100%;
}
#whitepaper .col {
  width: 50%;
}
#whitepaper .col.left {
  z-index: 2;
}
#whitepaper .background {
  width: 909px;
  left: 50%;
  top: 50%;
  height: 994px;
  margin-left: -440px;
  margin-top: -497px;
}
#whitepaper .background .base {
  width: 909px;
  top: -88px;
}
/*! - SECTION: 5 DASHBOARD */
#dashboard {
  padding-top: 80px;
  padding-bottom: 515px;
  z-index: 2;
}
#dashboard header {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
#dashboard .screens {
  margin-top: 93px;
}
#dashboard .screens .col.left {
  width: 45%;
  max-width: 450px;
}
#dashboard .screens .col.left .ornament {
  width: 225px;
  margin-top: 22px;
}
#dashboard .screens .col.right {
  width: 50%;
}
#dashboard .screens .col.right .ornament {
  width: 341px;
  position: absolute;
  top: -76px;
  right: -56px;
}
#dashboard .dash-screens {
  position: relative;
  max-width: 544px;
  margin-top: 14px;
}
#dashboard .dash-screen {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
}
#dashboard .dash-screen img {
  width: 100%;
  height: auto;
  display: block;
}
#dashboard .dash-screen[data-num="1"] {
  opacity: 1;
}
#dashboard .buckets {
  margin-top: 78px;
}
#dashboard .buckets .col {
  width: 47.5%;
  max-width: 530px;
}
#dashboard .buckets .col.right {
  max-width: 567px;
}
#dashboard .buckets .col.right .inner {
  max-width: 508px;
}
#dashboard .dash-bucket {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: justify;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
#dashboard .dash-bucket + .dash-bucket {
  margin-top: 48px;
}
#dashboard .dash-bucket .dash-icon img {
  max-width: 65px;
}
#dashboard .dash-bucket[data-num="3"] .dash-icon,
#dashboard .dash-bucket[data-num="5"] .dash-icon {
  padding-top: 7px;
}
#dashboard .dash-bucket[data-num="4"] .dash-icon {
  padding-top: 10px;
}
#dashboard .dash-bucket[data-num="5"] .dash-icon img {
  margin-top: -5px;
}
#dashboard .dash-bucket[data-num="6"] .dash-icon img {
  margin-top: -14px;
  margin-left: 8px;
}
#dashboard p.title {
  color: #efbb54;
  font-weight: 600;
}
#dashboard p.title + p {
  margin-top: 0px;
}
#dashboard .dash-text {
  width: auto;
  min-height: 102px;
}
#dashboard .dash-icon {
  width: 80px;
  -webkit-flex-shrink: 0;
  -ms-flex: -1;
  flex-shrink: 0;
}
#dashboard .dash-icon img {
  width: 100%;
  height: auto;
  display: block;
}
/*! - SECTION: 6 CASE STUDIES */
#case-studies {
  padding-top: 90px;
  padding-bottom: 100px;
  z-index: 1;
  overflow: visible;
}
#case-studies .contentContainer {
  overflow: hidden;
}
#case-studies header {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  margin-bottom: 126px;
}
#case-studies .col.left {
  width: 45%;
  max-width: 445px;
}
#case-studies .col.right {
  width: 52%;
  max-width: 617px;
}
#case-studies .row + .row {
  margin-top: 105px;
}
#case-studies .cs-icon {
  width: 104px;
  height: auto;
  display: block;
  margin-bottom: 47px;
}
#case-studies .cs-image {
  position: relative;
  background: center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 434px;
}
#case-studies .cs-image .cover {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #05192D;
  opacity: .45;
}
#case-studies .subscription .col.left {
  max-width: 415px;
}
#case-studies .subscription .logo {
  max-width: 122px;
}
#case-studies .gaming .logo {
  width: 99px;
}
#case-studies .gaming .cs-details .cs-text {
  padding-top: 80px;
}
#case-studies .cs-details {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 24px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
#case-studies .cs-details h4 {
  font-size: 23px;
  line-height: 1.43;
  color: #fff;
  margin-bottom: 10px;
}
#case-studies .cs-details h3 {
  font: 600 60px/1 'jaf-mashine', sans-serif;
  margin-bottom: 16px;
}
#case-studies .cs-details a {
  font-size: 15px;
}
#case-studies .cs-details .cs-box {
  width: 50%;
  height: 100%;
  border: 1px solid #586d7e;
  text-align: center;
}
#case-studies .cs-details .cs-logo {
  height: 100px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -ms-flex-pack: center;
  border-bottom: 1px solid #586d7e;
}
#case-studies .cs-details .cs-text {
  padding: 20px 25px;
}
#case-studies .bg-wrap {
  height: 1180px;
  top: -980px;
}
#case-studies .bg-wrap .background {
  width: 2560px;
  margin-left: -1280px;
}
#case-studies .bg-wrap .cover {
  width: 2660px;
}
#case-studies .bg-wrap .glow-group {
  position: absolute;
  left: 0;
  top: 0;
  width: 1800px;
  left: 50%;
  margin-left: -900px;
  top: 320px;
}
#case-studies .bg-wrap .glow-group .glow {
  width: 1159px;
}
#case-studies .bg-wrap .glow-group .glow[data-num="1"] {
  left: -550px;
  top: 50px;
}
#case-studies .bg-wrap .glow-group .glow[data-num="2"] {
  left: 230px;
  top: 0px;
  transform: rotate(-26deg);
}
#case-studies .bg-wrap .glow-group .glow[data-num="3"] {
  left: 900px;
  top: -240px;
  transform: rotate(-14deg);
}
/*! - SECTION: 7 CALL TO ACTION */
#demo-cta {
  padding-top: 84px;
}
#demo-cta .outer-wrap {
  /* min-height: 507px; */
  padding: 0px 25px;
}
#demo-cta p {
  font-size: 20px;
}
#demo-cta h2 {
  font: 400 55px/1.4 'Gothic A1', sans-serif;
  margin-top: 38px;
}
#demo-cta .cta-btn {
  margin-top: 54px;
}
#demo-cta .col {
  width: 50%;
}
#demo-cta .col.right {
  max-width: 578px;
  padding: 70px 0px 75px;
}
#demo-cta .background {
  width: 1512px;
  top: 50%;
  margin-top: -415px;
  height: 833px;
}
#demo-cta .background .base {
  width: 1512px;
  top: 0px;
  left: -495px;
}
#demo-cta .background .shapes {
  width: 1512px;
}
#demo-cta .background .glow {
  left: 283px;
  top: -15px;
  width: 887px;
}
#demo-cta .background .eye {
  left: 498px;
  top: 208px;
  width: 422px;
}
/*! - GLOBAL: 5 HOVERS */
@media screen and (min-width: 1025px) {
  a {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  a:not(.cta-btn):hover {
    color: #efbb54;
  }
  .cta-btn:hover > .bg {
    opacity: 0;
    transform: translateX(100px);
  }
  #how .mods-nav .arr:not(.off):hover {
    color: #651fff;
  }
  #globalHeader .title-menu .selected li,
  #globalHeader .title-menu .selected .arr {
    -webkit-transition: color 0.3s linear;
    -moz-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear;
  }
  #globalHeader .title-menu .selected:hover > ul li,
  #globalHeader .title-menu .selected:hover > .arr {
    color: #efbb54;
  }
  #contact-form .icon-close-x {
    -webkit-transition: color 0.3s linear;
    -moz-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear;
  }
  #contact-form .close-btn:hover > .icon-close-x {
    color: #efbb54;
  }
}
/*! - x ANIMATIONS ***************************** */
/*! - x ANIMATIONS: 0 REUSE -> 0 PARTS */
path {
  -webkit-transition: fill 0.3s linear;
  -moz-transition: fill 0.3s linear;
  -o-transition: fill 0.3s linear;
  transition: fill 0.3s linear;
}
.base {
  position: relative;
}
.part svg {
  position: absolute;
  left: 0;
  top: 0;
}
.svg-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.svg-mask .base-path {
  stroke: transparent !important;
}
.svg-mask.test path {
  stroke: red !important;
}
.svg-reveal svg {
  width: 100%;
  height: 100%;
}
.flo-mask {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7px;
}
body.test .hasAnim .part:not(.main):not(.base) {
  background-color: rgba(255, 0, 0, 0.2);
  opacity: .5;
}
body.test .hasAnim .part-wrap:after {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  border: 1px solid red;
}
.shape-path svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.shape-path path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1px;
}
.shake img {
  -webkit-animation: scaleSway 1 4s ease-in-out;
  -moz-animation: scaleSway 1 4s ease-in-out;
  animation: scaleSway 1 4s ease-in-out;
  animation-fill-mode: forwards;
  transform-origin: center top;
}
/*! - x ANIMATIONS: 0 REUSE -> 1 ANIMS */
@-moz-keyframes slideLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.slide-left {
  -webkit-animation: slideLeft infinite 10s linear;
  -moz-animation: slideLeft infinite 10s linear;
  animation: slideLeft infinite 10s linear;
  animation-fill-mode: forwards;
}
@-moz-keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
.slide-right {
  -webkit-animation: slideRight infinite 10s linear;
  -moz-animation: slideRight infinite 10s linear;
  animation: slideRight infinite 10s linear;
  animation-fill-mode: forwards;
}
@-moz-keyframes vertScroll {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes vertScroll {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes vertScroll {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}
.vert-scroll {
  -webkit-animation: vertScroll infinite 3s linear;
  -moz-animation: vertScroll infinite 3s linear;
  animation: vertScroll infinite 3s linear;
  animation-fill-mode: forwards;
}
@-moz-keyframes floatY {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes floatY {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes floatY {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.float-y {
  -webkit-animation: floatY infinite 4s ease-in-out;
  -moz-animation: floatY infinite 4s ease-in-out;
  animation: floatY infinite 4s ease-in-out;
  animation-fill-mode: forwards;
}
@-moz-keyframes floatX {
  0% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(-10px);
  }
}
@-webkit-keyframes floatX {
  0% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(-10px);
  }
}
@keyframes floatX {
  0% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(-10px);
  }
}
.float-x {
  -webkit-animation: floatX infinite 10s ease-in-out;
  -moz-animation: floatX infinite 10s ease-in-out;
  animation: floatX infinite 10s ease-in-out;
  animation-fill-mode: forwards;
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.blinker {
  -webkit-animation: blink infinite 1.5s ease-in-out;
  -moz-animation: blink infinite 1.5s ease-in-out;
  animation: blink infinite 1.5s ease-in-out;
  animation-fill-mode: forwards;
}
@-moz-keyframes blinkF {
  0% {
    opacity: 1;
    transform: scaleY(1.25);
  }
  50% {
    opacity: .6;
    transform: scaleY(1);
  }
  100% {
    opacity: 1;
    transform: scaleY(1.25);
  }
}
@-webkit-keyframes blinkF {
  0% {
    opacity: 1;
    transform: scaleY(1.25);
  }
  50% {
    opacity: .6;
    transform: scaleY(1);
  }
  100% {
    opacity: 1;
    transform: scaleY(1.25);
  }
}
@keyframes blinkF {
  0% {
    opacity: 1;
    transform: scaleY(1.25);
  }
  50% {
    opacity: .6;
    transform: scaleY(1);
  }
  100% {
    opacity: 1;
    transform: scaleY(1.25);
  }
}
.blinkerF {
  -webkit-animation: blinkF infinite 2s ease-in-out;
  -moz-animation: blinkF infinite 2s ease-in-out;
  animation: blinkF infinite 2s ease-in-out;
  animation-fill-mode: forwards;
}
@-moz-keyframes blinkG {
  0% {
    opacity: 1;
    transform: scale(0.8);
  }
  50% {
    opacity: .6;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(0.8);
  }
}
@-webkit-keyframes blinkG {
  0% {
    opacity: 1;
    transform: scale(0.8);
  }
  50% {
    opacity: .6;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(0.8);
  }
}
@keyframes blinkG {
  0% {
    opacity: 1;
    transform: scale(0.8);
  }
  50% {
    opacity: .6;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(0.8);
  }
}
.blinkerG {
  -webkit-animation: blinkG infinite 2s ease-in-out;
  -moz-animation: blinkG infinite 2s ease-in-out;
  animation: blinkG infinite 2s ease-in-out;
  animation-fill-mode: forwards;
}
@-moz-keyframes blinkS {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blinkS {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinkS {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}
.blinkerS {
  -webkit-animation: blinkS infinite 3s ease-in-out;
  -moz-animation: blinkS infinite 3s ease-in-out;
  animation: blinkS infinite 3s ease-in-out;
  animation-fill-mode: forwards;
}
@-moz-keyframes glowAnim {
  0% {
    opacity: .3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: .3;
  }
}
@-webkit-keyframes glowAnim {
  0% {
    opacity: .3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: .3;
  }
}
@keyframes glowAnim {
  0% {
    opacity: .3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: .3;
  }
}
.glower {
  -webkit-animation: glowAnim infinite 4s ease-in-out;
  -moz-animation: glowAnim infinite 4s ease-in-out;
  animation: glowAnim infinite 4s ease-in-out;
  animation-fill-mode: forwards;
}
@-moz-keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spin {
  -webkit-animation: spinner infinite 10s linear;
  -moz-animation: spinner infinite 10s linear;
  animation: spinner infinite 10s linear;
  animation-fill-mode: forwards;
}
@-moz-keyframes twister {
  0% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(-20deg);
  }
}
@-webkit-keyframes twister {
  0% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(-20deg);
  }
}
@keyframes twister {
  0% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(-20deg);
  }
}
.twist {
  -webkit-animation: twister infinite 6s ease-in-out;
  -moz-animation: twister infinite 6s ease-in-out;
  animation: twister infinite 6s ease-in-out;
  animation-fill-mode: forwards;
}
/*! - x ANIMATIONS: 1 HERO -> 0 PARTS */
#hero .big-rings {
  left: 89px;
  top: 56px;
  width: 995px;
  height: 316px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
#hero .big-ring {
  -webkit-transform-style: preserve-3d;
}
#hero .big-ring[data-num="1"] {
  width: 995px;
}
#hero .big-ring[data-num="2"] {
  left: 98px;
  top: 98px;
  width: 799px;
}
#hero .h-lines {
  position: absolute;
  top: 408px;
}
#hero .h-lines[data-num="1"] {
  left: 43px;
}
#hero .h-lines[data-num="2"] {
  left: 1130px;
  transform: scaleX(-1);
}
#hero .h-lines .h-line-wrap {
  width: 300px;
  height: 4px;
}
#hero .h-lines .h-line-wrap[data-num="1"] {
  left: 20px;
}
#hero .h-lines .h-line-wrap[data-num="2"] {
  left: 10px;
  top: 53px;
}
#hero .h-lines .h-line-wrap[data-num="3"] {
  top: 105px;
}
#hero .h-lines .h-line {
  width: 620px;
  height: 4px;
}
#hero .inner-arch {
  left: 294px;
  top: 261px;
  width: 585px;
}
#hero .bg-glow {
  left: 294px;
  top: 261px;
  width: 586px;
}
#hero .eye {
  left: 292px;
  top: 299px;
  width: 587px;
}
#hero .eye-wrap {
  width: 587px;
  height: 420px;
}
#hero .eye-wrap .spacer {
  opacity: .2;
}
#hero .eye-wrap .eye-inner {
  transform: translateY(360px);
}
#hero .eye-wrap .scale-base {
  left: 273px;
  top: 1px;
  width: 44px;
}
#hero .eye-wrap .eye-base {
  left: 204px;
  top: 29px;
  width: 180px;
}
#hero .eye-wrap .scale-top {
  left: 133px;
  top: 107px;
  width: 324px;
}
#hero .eye-wrap .scale-left {
  left: 82px;
  top: 133px;
  width: 102px;
}
#hero .eye-wrap .shake2 img {
  transform-origin: center top;
}
#hero .eye-wrap .scale-right {
  left: 404px;
  top: 133px;
  width: 102px;
}
#hero .eye-wrap .scale-right.shake2 img {
  animation-direction: reverse;
}
#hero .eye-wrap .scale-right.shake2.scale-sway2 img {
  animation-delay: .3s;
}
#hero .eye-wrap .flourish {
  width: 94px;
  height: 61px;
  top: 9px;
}
#hero .eye-wrap .flourish[data-num="1"] {
  left: 155px;
}
#hero .eye-wrap .flourish[data-num="2"] {
  left: 340px;
  transform: scaleX(-1);
}
#hero .eye-wrap .flourish .leaf {
  transform: scale(0);
}
#hero .eye-wrap .flourish .leaf[data-num="1"] {
  left: 77px;
  top: 7px;
  width: 17px;
  transform-origin: left top;
}
#hero .eye-wrap .flourish .leaf[data-num="2"] {
  left: 37px;
  top: 24px;
  width: 19px;
  transform-origin: right bottom;
}
#hero .eye-wrap .flourish .leaf[data-num="3"] {
  left: 16px;
  top: 58px;
  width: 11px;
  transform-origin: center top;
}
#hero .eye-wrap .swirl {
  overflow: hidden;
}
#hero .eye-wrap .swirl .swirl-mover {
  width: 150px;
  height: 150px;
}
#hero .eye-wrap .swirl .swirl-mover img {
  position: absolute;
  width: 127px;
  left: 14px;
  top: 21px;
}
#hero .eye-wrap .swirl[data-num="1"] {
  clip-path: url('#swirl-mask1');
  -webkit-clip-path: url('#swirl-mask1');
  left: 218px;
  top: 29px;
  width: 154px;
  height: 139px;
}
#hero .eye-wrap .swirl[data-num="2"] {
  clip-path: url('#swirl-mask2');
  -webkit-clip-path: url('#swirl-mask2');
  left: 218px;
  top: 63px;
  width: 154px;
  height: 142px;
}
#hero .eye-wrap .swirl[data-num="2"] .swirl-mover img {
  top: 10px;
}
#hero .eye-wrap .swirl[data-num="3"] {
  clip-path: url('#swirl-mask3');
  -webkit-clip-path: url('#swirl-mask3');
  left: 249px;
  top: 84px;
  width: 93px;
  height: 69px;
}
#hero .eye-wrap .swirl[data-num="3"] .swirl-mover {
  width: 90px;
  height: 90px;
  top: -4px;
  left: 3px;
}
#hero .eye-wrap .swirl[data-num="3"] .swirl-mover img {
  position: absolute;
  width: 93px;
  left: 0px;
  top: 4px;
}
#hero .eye-wrap .swirl[data-num="4"] {
  clip-path: url('#swirl-mask3');
  -webkit-clip-path: url('#swirl-mask3');
  left: 249px;
  top: 84px;
  width: 93px;
  height: 69px;
}
#hero .eye-wrap .swirl[data-num="4"] .swirl-mover {
  width: 90px;
  height: 90px;
  top: -18px;
  left: 0px;
}
#hero .eye-wrap .swirl[data-num="4"] .swirl-mover img {
  position: absolute;
  width: 93px;
  left: 0px;
  top: 4px;
}
#hero .wave-wrap {
  left: 296px;
  top: 946px;
  width: 584px;
  height: 124px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
#hero .wave {
  width: 1556px;
  top: 20px;
}
#hero .wave[data-num="1"] {
  width: 1068px;
}
#hero .v-line-wrap {
  left: 510px;
  top: 888px;
  width: 161px;
  height: 130px;
}
#hero .v-lines {
  width: 161px;
}
#hero .sm-rings {
  top: 931px;
  width: 180px;
  height: 180px;
}
#hero .sm-rings[data-num="1"] {
  left: 78px;
}
#hero .sm-rings[data-num="2"] {
  left: 914px;
}
#hero .sm-ring {
  width: 180px;
  height: 180px;
}
#hero .arch-cover {
  width: 100%;
  height: 100%;
}
#hero .switches {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  position: absolute;
  top: 724px;
  width: 175px;
}
#hero .switches[data-num="1"] {
  left: 82px;
}
#hero .switches[data-num="2"] {
  left: 916px;
}
#hero .switches .switcher {
  width: 20px;
  height: 102px;
  position: relative;
}
#hero .switches .switcher > * {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #01263A;
}
#hero .switches .s-line {
  left: 8px;
  width: 4px;
  height: 98px;
  border-radius: 4px;
}
#hero .switches .ball {
  width: 20px;
  height: 20px;
  border-radius: 20px;
}
#hero .switches .b-base {
  width: 12px;
  height: 12px;
  border-radius: 12px;
  top: auto;
  bottom: -2px;
  left: 4px;
}
#hero .switches .b-line {
  top: auto;
  bottom: 4px;
  left: 4px;
  width: 12px;
  height: 90px;
  transform-origin: center bottom;
}
#hero .switches .b-line {
  transform: scaleY(0.5);
}
#hero .switches .ball {
  transform: translateY(50px);
}
/*! - x ANIMATIONS: 1 HERO -> 1 ANIMS */
@-moz-keyframes switchBall {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(85px);
  }
  100% {
    transform: translateY(0px);
  }
}
@-webkit-keyframes switchBall {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(85px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes switchBall {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(85px);
  }
  100% {
    transform: translateY(0px);
  }
}
.switch-ball {
  -webkit-animation: switchBall infinite 6s ease-in-out;
  -moz-animation: switchBall infinite 6s ease-in-out;
  animation: switchBall infinite 6s ease-in-out;
  animation-fill-mode: forwards;
}
@-moz-keyframes switchLine {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes switchLine {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes switchLine {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
.switch-line {
  -webkit-animation: switchLine infinite 6s ease-in-out;
  -moz-animation: switchLine infinite 6s ease-in-out;
  animation: switchLine infinite 6s ease-in-out;
  animation-fill-mode: forwards;
}
@-moz-keyframes scaleSway2 {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-2deg);
  }
  60% {
    transform: rotate(2deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes scaleSway2 {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-2deg);
  }
  60% {
    transform: rotate(2deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes scaleSway2 {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-2deg);
  }
  60% {
    transform: rotate(2deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.scale-sway2 {
  -webkit-animation: scaleSway2 infinite 3s ease-in-out;
  -moz-animation: scaleSway2 infinite 3s ease-in-out;
  animation: scaleSway2 infinite 3s ease-in-out;
  animation-fill-mode: forwards;
}
@-moz-keyframes scaleSway3 {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(4deg);
  }
  60% {
    transform: rotate(-3deg);
  }
  80% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes scaleSway3 {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(4deg);
  }
  60% {
    transform: rotate(-3deg);
  }
  80% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes scaleSway3 {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(4deg);
  }
  60% {
    transform: rotate(-3deg);
  }
  80% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.scale-sway3 {
  -webkit-animation: scaleSway3 1 3s ease-in-out;
  -moz-animation: scaleSway3 1 3s ease-in-out;
  animation: scaleSway3 1 3s ease-in-out;
  animation-fill-mode: forwards;
}
/*! - x ANIMATIONS: 1 HERO -> 2 ACTIVATION */
#hero.on .big-ring {
  -webkit-animation: spinner infinite 10s linear;
  -moz-animation: spinner infinite 10s linear;
  animation: spinner infinite 10s linear;
  animation-fill-mode: forwards;
  animation-duration: 30s;
}
#hero.on .big-ring[data-num="2"] {
  animation-direction: reverse;
}
#hero.on .h-lines .h-line {
  -webkit-animation: slideLeft infinite 10s linear;
  -moz-animation: slideLeft infinite 10s linear;
  animation: slideLeft infinite 10s linear;
  animation-fill-mode: forwards;
  animation-direction: reverse;
  animation-duration: 7s;
}
#hero.on .h-lines .h-line[data-num="1"] {
  animation-delay: -1s;
  animation-duration: 6s;
}
#hero.on .h-lines .h-line[data-num="3"] {
  animation-delay: -4s;
  animation-duration: 4.5s;
}
#hero.on .bg-glow {
  -webkit-animation: blinkS infinite 3s ease-in-out;
  -moz-animation: blinkS infinite 3s ease-in-out;
  animation: blinkS infinite 3s ease-in-out;
  animation-fill-mode: forwards;
  animation-duration: 6s;
}
#hero.on .wave {
  -webkit-animation: slideRight infinite 10s linear;
  -moz-animation: slideRight infinite 10s linear;
  animation: slideRight infinite 10s linear;
  animation-fill-mode: forwards;
  animation-duration: 10s;
}
#hero.on .wave[data-num="1"] {
  animation-duration: 12s;
}
#hero.on .wave[data-num="2"] {
  animation-duration: 10s;
  animation-direction: reverse;
}
#hero.on .wave[data-num="3"] {
  animation-duration: 7s;
}
#hero.on .v-lines {
  -webkit-animation: vertScroll infinite 3s linear;
  -moz-animation: vertScroll infinite 3s linear;
  animation: vertScroll infinite 3s linear;
  animation-fill-mode: forwards;
}
#hero.on .sm-ring {
  -webkit-animation: spinner infinite 10s linear;
  -moz-animation: spinner infinite 10s linear;
  animation: spinner infinite 10s linear;
  animation-fill-mode: forwards;
}
#hero.on .sm-ring[data-num="1"],
#hero.on .sm-ring[data-num="3"] {
  animation-direction: reverse;
  animation-duration: 6s;
}
#hero.on .switches .switcher .ball {
  -webkit-animation: switchBall infinite 6s ease-in-out;
  -moz-animation: switchBall infinite 6s ease-in-out;
  animation: switchBall infinite 6s ease-in-out;
  animation-fill-mode: forwards;
}
#hero.on .switches .switcher .b-line {
  -webkit-animation: switchLine infinite 6s ease-in-out;
  -moz-animation: switchLine infinite 6s ease-in-out;
  animation: switchLine infinite 6s ease-in-out;
  animation-fill-mode: forwards;
}
#hero.on .switches[data-num="1"] .switcher[data-num="1"] .ball,
#hero.on .switches[data-num="1"] .switcher[data-num="1"] .b-line {
  animation-delay: -1.25s;
}
#hero.on .switches[data-num="1"] .switcher[data-num="2"] .ball,
#hero.on .switches[data-num="1"] .switcher[data-num="2"] .b-line {
  animation-delay: -3s;
}
#hero.on .switches[data-num="1"] .switcher[data-num="4"] .ball,
#hero.on .switches[data-num="1"] .switcher[data-num="4"] .b-line {
  animation-delay: -2s;
}
#hero.on .switches[data-num="1"] .switcher[data-num="5"] .ball,
#hero.on .switches[data-num="1"] .switcher[data-num="5"] .b-line {
  animation-delay: -0.75s;
}
#hero.on .switches[data-num="2"] .switcher[data-num="3"] .ball,
#hero.on .switches[data-num="2"] .switcher[data-num="3"] .b-line {
  animation-delay: -1s;
}
#hero.on .switches[data-num="2"] .switcher[data-num="2"] .ball,
#hero.on .switches[data-num="2"] .switcher[data-num="2"] .b-line {
  animation-delay: -3s;
}
#hero.on .switches[data-num="2"] .switcher[data-num="1"] .ball,
#hero.on .switches[data-num="2"] .switcher[data-num="1"] .b-line {
  animation-delay: -2s;
}
#hero.on .switches[data-num="2"] .switcher[data-num="5"] .ball,
#hero.on .switches[data-num="2"] .switcher[data-num="5"] .b-line {
  animation-delay: -1.75s;
}
#hero.on .shake2 img {
  /* .scale-sway2; */
}
#hero.on .swirl-mover {
  -webkit-animation: spinner infinite 10s linear;
  -moz-animation: spinner infinite 10s linear;
  animation: spinner infinite 10s linear;
  animation-fill-mode: forwards;
}
#hero.on .swirl[data-num="2"] .swirl-mover {
  animation-delay: -4s;
}
#hero.on .swirl[data-num="4"] .swirl-mover {
  animation-delay: -4s;
}
/*! - x ANIMATIONS: 2 NORTHSTAR -> 0 PARTS */
#northstar .glow {
  left: 754px;
  top: 387px;
  width: 150px;
}
#northstar .star {
  left: 68px;
  top: 63px;
  width: 14px;
}
#northstar .ground {
  width: 843px;
  left: 531px;
  top: 690px;
}
#northstar .pglow {
  left: 306px;
  top: -56px;
  width: 1045px;
}
#northstar .graph-wrap .base {
  width: 545px;
  height: 355px;
  overflow: hidden;
  border: 1px solid #651fff;
}
#northstar .graph-wrap .wave-wrap {
  width: 665px;
  height: 353px;
  left: 8px;
  top: 125px;
  transform: rotate(-29deg);
  overflow: visible;
}
#northstar .graph-wrap .wave-looper {
  width: 2800px;
  height: 57px;
  -webkit-backface-visibility: hidden;
  transform: scale(1);
}
#northstar .graph-wrap .dline {
  left: 57px;
  width: 1px;
}
#northstar .graph-wrap .wave,
#northstar .graph-wrap .cross-path {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#northstar .graph-wrap .txt[data-num="1"] {
  left: -230px;
  top: -26px;
  width: 158px;
}
#northstar .graph-wrap .txt[data-num="2"] {
  left: -68px;
  top: 135px;
  width: 135px;
}
#northstar .graph-wrap .c-line {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #651fff;
}
#northstar .graph-wrap .c-line[data-num="1"] {
  width: 650px;
  height: 1px;
  left: -72px;
}
#northstar .graph-wrap .c-line[data-num="2"] {
  width: 1px;
  height: 490px;
  top: auto;
  bottom: -135px;
}
#northstar .cross-dot .base-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  left: -8px;
  top: -8px;
  background-color: #efbb54;
  z-index: 2;
}
#northstar .radio-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  left: -17px;
  top: -17px;
  z-index: 2;
}
#northstar .radio-circle .innerc {
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 34px;
  border: 1px solid #efbb54;
}
#northstar .wave-fill {
  width: 590px;
  height: 370px;
  left: -22px;
  opacity: 0;
}
#northstar .wave-fill[data-num="1"] {
  left: -22px;
  top: 35px;
}
#northstar .wave-fill[data-num="2"] {
  width: 590px;
  height: 369px;
  top: 10px;
}
#northstar .shape-path {
  position: absolute;
  left: 0;
  top: 0;
  left: -22px;
  width: 590px;
  height: 370px;
}
#northstar .shape-path .draw-path {
  stroke: #651fff;
}
#northstar .shape-path[data-num="1"] {
  top: 35px;
}
#northstar .shape-path[data-num="2"] {
  top: 10px;
}
/*! - x ANIMATIONS: 2 NORTHSTAR -> 1 ANIMS */
@-moz-keyframes blinkStar {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blinkStar {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinkStar {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
.blinkerStar {
  -webkit-animation: blinkStar infinite 4s ease-in-out;
  -moz-animation: blinkStar infinite 4s ease-in-out;
  animation: blinkStar infinite 4s ease-in-out;
  animation-fill-mode: forwards;
}
@-moz-keyframes burstGrowMain {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1.5);
  }
}
@-webkit-keyframes burstGrowMain {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1.5);
  }
}
@keyframes burstGrowMain {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1.5);
  }
}
.burst-grow-main {
  -webkit-animation: burstGrowMain infinite 4s linear;
  -moz-animation: burstGrowMain infinite 4s linear;
  animation: burstGrowMain infinite 4s linear;
  animation-fill-mode: forwards;
}
@-moz-keyframes burstFade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes burstFade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes burstFade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.burst-fade {
  -webkit-animation: burstFade infinite 4s linear;
  -moz-animation: burstFade infinite 4s linear;
  animation: burstFade infinite 4s linear;
  animation-fill-mode: forwards;
}
/*
.keyframes(waveMove{
	0%{.xy(0px, 4px);} 
	5%{.xy(-35px, 12px);} 
	10%{.xy(-70px, 22px);} 
	15%{.xy(-105px, 24px);} 
	20%{.xy(-140px, 22px);}
	25%{.xy(-175px, 16px);}
	30%{.xy(-210px, 3px);}
	35%{.xy(-245px, -6px);}
	40%{.xy(-280px, -14px);}
	45%{.xy(-315px, -17px);}
	50%{.xy(-350px, -15px);}
	55%{.xy(-385px, -10px);}
	60%{.xy(-420px, 6px);}
	65%{.xy(-455px, 24px);}
	70%{.xy(-490px, 36px);}
	75%{.xy(-525px, 34px);}
	80%{.xy(-560px, 20px);}
	85%{.xy(-595px, 3px);}
	90%{.xy(-630px, -7px);}
	95%{.xy(-665px, -4px);}
	100%{.xy(-700px, 4px);}
});
.wave-move{.animation(waveMove, 15s, linear);}
*/
/*! - x ANIMATIONS: 2 NORTHSTAR -> 2 ACTIVATION */
#northstar.on .glow-bg,
#northstar.on .pglow {
  -webkit-animation: blinkStar infinite 4s ease-in-out;
  -moz-animation: blinkStar infinite 4s ease-in-out;
  animation: blinkStar infinite 4s ease-in-out;
  animation-fill-mode: forwards;
}
#northstar.on .ground {
  -webkit-animation: blinkStar2 infinite 2s ease-in-out;
  -moz-animation: blinkStar2 infinite 2s ease-in-out;
  animation: blinkStar2 infinite 2s ease-in-out;
  animation-fill-mode: forwards;
  animation-duration: 4s;
}
#northstar.on .radio-circle {
  -webkit-animation: burstGrowMain infinite 4s linear;
  -moz-animation: burstGrowMain infinite 4s linear;
  animation: burstGrowMain infinite 4s linear;
  animation-fill-mode: forwards;
}
#northstar.on .radio-circle .innerc {
  -webkit-animation: burstFade infinite 4s linear;
  -moz-animation: burstFade infinite 4s linear;
  animation: burstFade infinite 4s linear;
  animation-fill-mode: forwards;
}
#northstar.on .radio-circle[data-num="2"] {
  animation-delay: -1.3s !important;
}
#northstar.on .radio-circle[data-num="2"] .innerc {
  animation-delay: -1.3s !important;
}
/*! - x ANIMATIONS: 3 SOLUTION -> 0 PARTS */
#solution .glow {
  left: 200px;
  top: 7px;
  width: 685px;
}
#solution .scale {
  width: 234px;
  top: 109px;
}
#solution .scale img {
  transform-origin: center top;
  position: absolute;
}
#solution .scale.right {
  left: 859px;
}
#solution .ball-wrap {
  width: 920px;
  height: 353px;
  left: 92px;
  top: 115px;
}
#solution .ball {
  width: 56px;
}
#solution .ball img {
  opacity: 0;
}
#solution .ball[data-num="2"] {
  left: 854px;
}
@-moz-keyframes blinkStar2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blinkStar2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinkStar2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}
.blinkerStar2 {
  -webkit-animation: blinkStar2 infinite 2s ease-in-out;
  -moz-animation: blinkStar2 infinite 2s ease-in-out;
  animation: blinkStar2 infinite 2s ease-in-out;
  animation-fill-mode: forwards;
}
@-moz-keyframes scaleSway {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-4deg);
  }
  40% {
    transform: rotate(3deg);
  }
  60% {
    transform: rotate(-2deg);
  }
  80% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes scaleSway {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-4deg);
  }
  40% {
    transform: rotate(3deg);
  }
  60% {
    transform: rotate(-2deg);
  }
  80% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes scaleSway {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-4deg);
  }
  40% {
    transform: rotate(3deg);
  }
  60% {
    transform: rotate(-2deg);
  }
  80% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.scale-sway {
  -webkit-animation: scaleSway 1 4s ease-in-out;
  -moz-animation: scaleSway 1 4s ease-in-out;
  animation: scaleSway 1 4s ease-in-out;
  animation-fill-mode: forwards;
}
#signal .pie-chart {
  position: absolute;
  left: 7px;
  top: 7px;
  width: 60px;
  height: 60px;
  transform: rotate(90deg);
}
#signal .pie-chart svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#signal .pie-chart circle,
#signal .pie-chart path {
  position: absolute;
  left: 0;
  top: 0;
}
#signal .graph-icon-glow {
  border-radius: 110px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(239, 187, 84, 0.5) 20%;
  background: -webkit-radial-gradient(circle closest-side, rgba(239, 187, 84, 0.5) 20%, rgba(239, 187, 84, 0));
  background: -moz-radial-gradient(circle closest-side, rgba(239, 187, 84, 0.5) 20%, rgba(239, 187, 84, 0));
  background: -o-radial-gradient(circle closest-side, rgba(239, 187, 84, 0.5) 20%, rgba(239, 187, 84, 0));
  background: radial-gradient(circle closest-side, rgba(239, 187, 84, 0.5) 20%, rgba(239, 187, 84, 0));
  width: 110px;
  height: 110px;
  opacity: 0;
}
#journey .glow {
  left: 304px;
  top: 280px;
  width: 140px;
}
#journey .star {
  left: 65px;
  top: 61px;
  width: 11px;
}
#journey .pyramid {
  width: 108px;
  left: 519px;
  top: 384px;
}
#journey .pyramid img {
  position: absolute;
  left: 0;
  top: 0;
}
#journey .pglow {
  left: -37px;
  top: -56px;
  width: 825px;
}
#journey .man {
  left: 391px;
  top: 441px;
  width: 213px;
}
#journey .ground-glow {
  left: 132px;
  top: 449px;
  width: 436px;
}
/*! - x ANIMATIONS: 3 SOLUTION -> 2 ACTIVATION */
#solution-intro.on .glow {
  -webkit-animation: blinkS infinite 3s ease-in-out;
  -moz-animation: blinkS infinite 3s ease-in-out;
  animation: blinkS infinite 3s ease-in-out;
  animation-fill-mode: forwards;
  animation-duration: 6s;
}
#journey.on .glow-bg,
#journey.on .pglow,
#journey.on .ground-glow,
#journey.on .pyr-glow {
  -webkit-animation: blinkStar infinite 4s ease-in-out;
  -moz-animation: blinkStar infinite 4s ease-in-out;
  animation: blinkStar infinite 4s ease-in-out;
  animation-fill-mode: forwards;
}
/*! - x ANIMATIONS: 4 HOW IT WORKS -> 0 PARTS */
#how .how-mod[data-num="0"] .ball-dropper {
  position: absolute;
  left: 147px;
  top: -105px;
  width: 42px;
  height: 316px;
  clip-path: url('#how1-mask');
  -webkit-clip-path: url('#how1-mask');
}
#how .how-mod[data-num="0"] .ball {
  width: 22px;
  top: -140px;
  left: 8px;
}
#how .how-mod[data-num="0"] .lines {
  top: -180px;
  left: 5px;
}
#how .how-mod[data-num="0"] .lines[data-num="1"] {
  width: 27px;
  left: 3px;
}
#how .how-mod[data-num="0"] .lines[data-num="2"] {
  width: 27px;
  left: 8px;
}
#how .how-mod[data-num="0"] .lines[data-num="2"] img {
  transform: scaleX(-1);
}
#how .how-mod[data-num="0"] .lines[data-num="3"] {
  width: 27px;
  top: -180px;
}
#how .how-mod[data-num="0"] .glow {
  left: 49px;
  top: 9px;
  width: 235px;
  opacity: .85;
}
#how .how-mod[data-num="1"] .ball {
  width: 22px;
  top: -120px;
  transform: translateY(0px);
}
#how .how-mod[data-num="1"] .ball[data-num="0"] {
  left: 23px;
}
#how .how-mod[data-num="1"] .ball[data-num="1"] {
  left: 57px;
}
#how .how-mod[data-num="1"] .ball[data-num="2"] {
  left: 90px;
}
#how .how-mod[data-num="1"] .ball[data-num="3"] {
  left: 157px;
}
#how .how-mod[data-num="1"] .ball[data-num="4"] {
  left: 190px;
}
#how .how-mod[data-num="1"] .graph-wrap,
#how .how-mod[data-num="1"] .grid {
  width: 236px;
  height: 238px;
}
#how .how-mod[data-num="1"] .how2-rect {
  transform: translateY(238px);
}
#how .how-mod[data-num="2"] .glow {
  width: 304px;
}
#how .how-mod[data-num="2"] .scale-left {
  left: 26px;
  top: 21px;
  width: 82px;
}
#how .how-mod[data-num="2"] .scale-right {
  left: 197px;
  top: 21px;
  width: 82px;
}
#how .how-mod[data-num="2"] .scale-top {
  left: 66px;
  top: 5px;
  width: 173px;
  transform-origin: center top;
}
#how .how-mod[data-num="2"] .ball-dropper {
  width: 24px;
  height: 246px;
  top: -120px;
}
#how .how-mod[data-num="2"] .ball-dropper[data-num="1"] {
  left: 55px;
}
#how .how-mod[data-num="2"] .ball-dropper[data-num="2"] {
  left: 224px;
}
#how .how-mod[data-num="2"] .ball {
  width: 23px;
  transform: translateY(250px);
}
#how .how-mod[data-num="2"] .spacer {
  position: relative;
}
#how .how-mod[data-num="2"] .scale-left img,
#how .how-mod[data-num="2"] .scale-right img {
  transform-origin: center top;
  position: absolute;
}
#how .how-mod[data-num="2"] .scale-left.shake img,
#how .how-mod[data-num="2"] .scale-right.shake img {
  -webkit-animation: scaleSway 1 4s ease-in-out;
  -moz-animation: scaleSway 1 4s ease-in-out;
  animation: scaleSway 1 4s ease-in-out;
  animation-fill-mode: forwards;
}
#how .how-mod[data-num="3"] .person {
  left: 77px;
  top: 152px;
  width: 81px;
}
#how .how-mod[data-num="3"] .graph-left {
  left: 34px;
  top: auto;
  bottom: 16px;
  width: 34px;
  height: 37px;
}
#how .how-mod[data-num="3"] .graph-left .how3-rect1 {
  transform: translateY(37px);
}
#how .how-mod[data-num="3"] .graph-main {
  left: 100px;
  top: auto;
  bottom: 16px;
  width: 34px;
  height: 145px;
}
#how .how-mod[data-num="3"] .graph-main .how3-rect2 {
  transform: translateY(145px);
}
#how .how-mod[data-num="3"] .graph-right {
  left: 167px;
  top: auto;
  bottom: 16px;
  width: 34px;
  height: 57px;
}
#how .how-mod[data-num="3"] .graph-right .how3-rect3 {
  transform: translateY(57px);
}
#how .how-mod[data-num="3"] .ball-dropper {
  width: 22px;
  height: 320px;
  top: -120px;
  left: 106px;
}
#how .how-mod[data-num="3"] .ball {
  width: 22px;
  /* .y(280px); */
}
/*! - x ANIMATIONS: 4 HOW IT WORKS -> 1 ANIMS */
@-moz-keyframes how1Drop {
  0% {
    transform: translateY(-50px);
    animation-timing-function: ease-in;
  }
  85% {
    transform: translateY(400px);
    opacity: 1;
  }
  100% {
    transform: translateY(470px);
    opacity: 0;
  }
}
@-webkit-keyframes how1Drop {
  0% {
    transform: translateY(-50px);
    animation-timing-function: ease-in;
  }
  85% {
    transform: translateY(400px);
    opacity: 1;
  }
  100% {
    transform: translateY(470px);
    opacity: 0;
  }
}
@keyframes how1Drop {
  0% {
    transform: translateY(-50px);
    animation-timing-function: ease-in;
  }
  85% {
    transform: translateY(400px);
    opacity: 1;
  }
  100% {
    transform: translateY(470px);
    opacity: 0;
  }
}
.how1-drop {
  -webkit-animation: how1Drop infinite 4s linear;
  -moz-animation: how1Drop infinite 4s linear;
  animation: how1Drop infinite 4s linear;
  animation-fill-mode: forwards;
}
@-moz-keyframes flick {
  0% {
    opacity: .85;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: .8;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: .85;
  }
  60% {
    opacity: .95;
  }
  80% {
    opacity: .9;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: .85;
  }
}
@-webkit-keyframes flick {
  0% {
    opacity: .85;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: .8;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: .85;
  }
  60% {
    opacity: .95;
  }
  80% {
    opacity: .9;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: .85;
  }
}
@keyframes flick {
  0% {
    opacity: .85;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: .8;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: .85;
  }
  60% {
    opacity: .95;
  }
  80% {
    opacity: .9;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: .85;
  }
}
.flicker {
  -webkit-animation: flick infinite 4s ease-in-out;
  -moz-animation: flick infinite 4s ease-in-out;
  animation: flick infinite 4s ease-in-out;
  animation-fill-mode: forwards;
}
/*! - x ANIMATIONS: 4 HOW IT WORKS -> 2 ACTIVATION */
#how.on .how-mod.on[data-num="0"] .ball {
  -webkit-animation: how1Drop infinite 4s linear;
  -moz-animation: how1Drop infinite 4s linear;
  animation: how1Drop infinite 4s linear;
  animation-fill-mode: forwards;
  animation-duration: 4s;
}
#how.on .how-mod.on[data-num="0"] .ball[data-num="2"] {
  animation-delay: -1.33s;
}
#how.on .how-mod.on[data-num="0"] .ball[data-num="3"] {
  animation-delay: -2.66s;
}
#how.on .how-mod.on[data-num="0"] .lines {
  -webkit-animation: how1Drop infinite 4s linear;
  -moz-animation: how1Drop infinite 4s linear;
  animation: how1Drop infinite 4s linear;
  animation-fill-mode: forwards;
}
#how.on .how-mod.on[data-num="0"] .lines[data-num="1"] {
  animation-delay: 0s;
  animation-duration: 2.5s;
}
#how.on .how-mod.on[data-num="0"] .lines[data-num="2"] {
  animation-delay: -1.25s;
  animation-duration: 2.5s;
}
#how.on .how-mod.on[data-num="0"] .lines[data-num="3"] {
  animation-delay: -1.25s;
  animation-duration: 2.25s;
}
#how.on .how-mod.on[data-num="0"] .glow {
  -webkit-animation: flick infinite 4s ease-in-out;
  -moz-animation: flick infinite 4s ease-in-out;
  animation: flick infinite 4s ease-in-out;
  animation-fill-mode: forwards;
}
#how.on .how-mod.on[data-num="2"] .glow {
  -webkit-animation: blinkS infinite 3s ease-in-out;
  -moz-animation: blinkS infinite 3s ease-in-out;
  animation: blinkS infinite 3s ease-in-out;
  animation-fill-mode: forwards;
}
/*! - x ANIMATIONS: 5 CALL TO ACTION -> 0 PARTS */
#demo-cta .circle {
  left: 518px;
  top: 254px;
  width: 89px;
}
#demo-cta .tri {
  left: 906px;
  top: 306px;
  width: 90px;
}
#demo-cta .sm-rings {
  width: 180px;
  height: 180px;
  transform: scale(0.53);
}
#demo-cta .sm-rings[data-num="1"] {
  left: 224px;
  top: 365px;
}
#demo-cta .sm-rings[data-num="2"] {
  left: 914px;
}
#demo-cta .sm-ring {
  width: 180px;
  height: 180px;
}
#demo-cta .switches {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  position: absolute;
  width: 85px;
  opacity: .25;
}
#demo-cta .switches[data-num="1"] {
  left: 344px;
  top: 577px;
}
#demo-cta .switches[data-num="2"] {
  left: 979px;
  top: 459px;
}
#demo-cta .switches .switcher {
  width: 9px;
  height: 82px;
  position: relative;
}
#demo-cta .switches .switcher > * {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #651fff;
}
#demo-cta .switches .s-line {
  left: 3px;
  width: 3px;
  height: 82px;
  border-radius: 4px;
}
#demo-cta .switches .ball {
  width: 9px;
  height: 9px;
  border-radius: 9px;
}
#demo-cta .switches .ball {
  transform: translateY(0px);
}
@-moz-keyframes spinStop {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(90deg);
  }
  25% {
    transform: rotate(90deg);
  }
  45% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
  }
  70% {
    transform: rotate(270deg);
  }
  75% {
    transform: rotate(270deg);
  }
  95% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinStop {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(90deg);
  }
  25% {
    transform: rotate(90deg);
  }
  45% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
  }
  70% {
    transform: rotate(270deg);
  }
  75% {
    transform: rotate(270deg);
  }
  95% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinStop {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(90deg);
  }
  25% {
    transform: rotate(90deg);
  }
  45% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
  }
  70% {
    transform: rotate(270deg);
  }
  75% {
    transform: rotate(270deg);
  }
  95% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spin-stop {
  -webkit-animation: spinStop infinite 10s ease-in-out;
  -moz-animation: spinStop infinite 10s ease-in-out;
  animation: spinStop infinite 10s ease-in-out;
  animation-fill-mode: forwards;
}
@-moz-keyframes switchBall2 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(74px);
  }
  100% {
    transform: translateY(0px);
  }
}
@-webkit-keyframes switchBall2 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(74px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes switchBall2 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(74px);
  }
  100% {
    transform: translateY(0px);
  }
}
.switch-ball2 {
  -webkit-animation: switchBall2 infinite 6s ease-in-out;
  -moz-animation: switchBall2 infinite 6s ease-in-out;
  animation: switchBall2 infinite 6s ease-in-out;
  animation-fill-mode: forwards;
}
/*! - x ANIMATIONS: 5 CALL TO ACTION -> 2 ACTIVATION */
#demo-cta.on .glow {
  -webkit-animation: blinkStar infinite 4s ease-in-out;
  -moz-animation: blinkStar infinite 4s ease-in-out;
  animation: blinkStar infinite 4s ease-in-out;
  animation-fill-mode: forwards;
}
#demo-cta.on .circle {
  -webkit-animation: spinner infinite 10s linear;
  -moz-animation: spinner infinite 10s linear;
  animation: spinner infinite 10s linear;
  animation-fill-mode: forwards;
  animation-direction: reverse;
}
#demo-cta.on .tri {
  -webkit-animation: spinStop infinite 10s ease-in-out;
  -moz-animation: spinStop infinite 10s ease-in-out;
  animation: spinStop infinite 10s ease-in-out;
  animation-fill-mode: forwards;
}
#demo-cta.on .sm-ring {
  -webkit-animation: spinner infinite 10s linear;
  -moz-animation: spinner infinite 10s linear;
  animation: spinner infinite 10s linear;
  animation-fill-mode: forwards;
}
#demo-cta.on .sm-ring[data-num="1"],
#demo-cta.on .sm-ring[data-num="3"] {
  animation-direction: reverse;
  animation-duration: 6s;
}
#demo-cta.on .switches .switcher .ball {
  -webkit-animation: switchBall2 infinite 6s ease-in-out;
  -moz-animation: switchBall2 infinite 6s ease-in-out;
  animation: switchBall2 infinite 6s ease-in-out;
  animation-fill-mode: forwards;
}
#demo-cta.on .switches[data-num="1"] .switcher[data-num="1"] .ball {
  animation-delay: -1.25s;
}
#demo-cta.on .switches[data-num="1"] .switcher[data-num="2"] .ball {
  animation-delay: -3s;
}
#demo-cta.on .switches[data-num="1"] .switcher[data-num="4"] .ball {
  animation-delay: -2s;
}
#demo-cta.on .switches[data-num="1"] .switcher[data-num="5"] .ball {
  animation-delay: -0.75s;
}
#demo-cta.on .switches[data-num="2"] .switcher[data-num="3"] .ball {
  animation-delay: -1s;
}
#demo-cta.on .switches[data-num="2"] .switcher[data-num="2"] .ball {
  animation-delay: -3s;
}
#demo-cta.on .switches[data-num="2"] .switcher[data-num="1"] .ball {
  animation-delay: -2s;
}
#demo-cta.on .switches[data-num="2"] .switcher[data-num="5"] .ball {
  animation-delay: -1.75s;
}
/*! MEDIA QUERY ***************************** */
/*! MQ: 0 -> 1200px */
@media screen and (max-width: 1200px) {
  #whitepaper h2,
  #demo-cta h2 {
    font-size: 45px;
  }
  #case-studies .cs-details h4 {
    font-size: 20px;
  }
  #case-studies .cs-details .cs-box {
    width: 65%;
  }
  #case-studies .cs-details .cs-text {
    height: 286px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: justify;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -ms-flex-pack: center;
  }
  #case-studies .gaming .cs-details .cs-text {
    padding-top: 0px;
  }
}
/*! MQ: 1 -> 1024px */
@media screen and (max-width: 1024px) {
  .gridline.l {
    left: 25px;
  }
  .gridline.r {
    left: auto;
    right: 25px;
  }
  section,
  .global,
  .pad-wrap,
  .overlayWrap {
    padding-left: 25px;
    padding-right: 25px;
  }
  body {
    font-size: 16px;
  }
  section h1,
  section h2 {
    font-size: 68px;
  }
  section h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  section header p {
    font-size: 17px;
  }
  section header p + h2 {
    margin-top: 15px;
  }
  .basic-scaler {
    transform: scale(0.8);
  }
  #globalHeader {
    padding: 0 100px;
  }
  #globalHeader .logo {
    left: 25px;
    top: 25px;
  }
  #globalHeader.sticky .logo {
    transform: translateY(-20px);
  }
  #contact-form .logo-eye {
    left: 25px;
    top: 25px;
  }
  #contact-form .close-btn {
    right: 25px;
    top: 35px;
  }
  #contact-form .close-btn .icon-close-x {
    font-size: 40px;
  }
  .side-seal {
    display: none;
  }
  #hero {
    padding-top: calc(528px);
    padding-bottom: calc(315.2px);
  }
  #northstar {
    padding-top: calc(100px);
  }
  #northstar .background {
    top: -50px;
  }
  #northstar header h2 {
    transform: translateX(-5px);
  }
  #northstar .graph-text {
    font-size: 12px;
  }
  #northstar .graph-text[data-num="1"] {
    left: -18px;
  }
  #northstar .graph-text[data-num="2"] {
    bottom: -20px;
  }
  #solution {
    padding-top: calc(694.4px);
    padding-bottom: calc(800px);
  }
  #solution .image-wrap {
    height: calc(538.4px);
    margin-bottom: 150px;
  }
  #solution .col.left {
    padding-top: 20px;
  }
  #solution .row[data-num="1"] .title-wrap {
    margin-bottom: 20px;
  }
  #solution .row[data-num="1"] .title-wrap .icon {
    width: 45px;
    margin-top: -17px;
  }
  #solution .row[data-num="2"] .title-wrap {
    margin-bottom: 26px;
  }
  #solution .row[data-num="2"] .title-wrap .icon {
    width: 42px;
  }
  #how {
    padding-top: calc(104px);
  }
  #how .how-mods-wrap {
    margin-top: 70px;
  }
  #how .how-mod .txt {
    max-width: 320px;
  }
  #dashboard {
    padding-bottom: calc(412px);
  }
  #dashboard .dash-text br {
    display: none;
  }
  #case-studies {
    padding-bottom: 60px;
  }
  #case-studies header {
    margin-bottom: 75px;
  }
  #case-studies .bg-wrap {
    height: calc(944px);
    top: -784px;
  }
  #case-studies .cs-icon {
    margin-bottom: 28px;
  }
  #case-studies .cs-details a {
    font-size: 13px;
  }
  #case-studies .col {
    width: 50% !important;
  }
  #case-studies .col.left {
    padding-right: 25px;
  }
  #case-studies .row + .row {
    margin-top: 63px;
  }
  #demo-cta {
    padding-top: 60px;
  }
  #demo-cta p {
    font-size: 17px;
  }
  #whitepaper h2,
  #demo-cta h2 {
    font-size: 35px;
    line-height: 1.45;
  }
  #globalFooter {
    padding-bottom: 40px;
  }
  #globalFooter p,
  #globalFooter a {
    font-size: 13px;
  }
}
/*! MQ: 2 -> 900px */
@media screen and (max-width: 900px) {
  #solution .title-wrap .icon {
    margin-right: 18px !important;
  }
  #solution .row[data-num="1"] .title-wrap .icon {
    margin-top: 0px;
  }
  #solution .row[data-num="2"] .title-wrap .icon {
    margin-top: 2px;
  }
  .special-kern {
    font-size: 14px;
    line-height: 1.7;
  }
  .special-kern span + span {
    margin-left: 4px;
  }
  .special-kern .sp1 {
    display: block;
  }
  .special-kern .sp1 + span {
    margin-left: 0px;
  }
}
/*! MQ: 3 -> 800px */
@media screen and (max-width: 800px) {
  .basic-scaler {
    transform: scale(0.6);
  }
  .cta-btn {
    padding: 21px 22px;
    font-size: 15px;
  }
  .cta-btn .bg {
    width: 745px;
    left: -220px;
    top: -5px;
  }
  section h1,
  section h2 {
    font-size: 50px;
    /* font-size: 40px; */
  }
  section h4 {
    font-size: 17px;
    line-height: 1.41;
  }
  #globalHeader .sticky-bar {
    height: 59px;
  }
  #globalHeader .title-menu {
    display: none;
  }
  #globalHeader .logo .inner {
    transform: scale(0.8);
    transform-origin: top left;
  }
  #contact-form .logo-eye {
    transform: scale(0.8);
    transform-origin: top left;
  }
  #contact-form .close-btn {
    transform: scale(0.8);
    transform-origin: right top;
  }
  .side-seal {
    display: none;
  }
  #hero {
    padding-top: calc(396px);
    padding-bottom: calc(236.4px);
  }
  #hero p {
    font-size: 17px;
    margin-bottom: 4px;
  }
  #northstar {
    padding-top: calc(75px);
  }
  #northstar header {
    max-width: 380px;
    margin-bottom: 290px;
  }
  #northstar h3 {
    margin-bottom: 20px;
  }
  #northstar h3 br {
    display: none;
  }
  #northstar .diagram-box .diagram-header h4 {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  #solution {
    padding-top: calc(520.8px);
    padding-bottom: calc(600px);
  }
  #solution h3 br {
    display: none;
  }
  #solution header {
    max-width: 635px;
  }
  #solution header .ornament {
    width: 217px;
  }
  #solution .image-wrap {
    height: calc(403.8px);
    margin-bottom: 114px;
  }
  #solution .row[data-num="2"] {
    margin-top: 100px;
  }
  #solution .diagram-box .graph-text .graph-item {
    font-size: 13px;
  }
  #solution .diagram-box .graph-bars,
  #solution .diagram-box .graph-text {
    max-width: 270px;
  }
  .diagram-box .diagram-header {
    padding: 13px 20px;
  }
  .diagram-box .diagram-header h4 {
    margin-top: 2px;
  }
  .diagram-box .diagram-footer {
    padding: 18px 15px 13px;
  }
  #how {
    padding-top: calc(78px);
    padding-bottom: 80px;
  }
  #how .mods-nav {
    width: 100%;
    margin-top: 20px;
  }
  #how .how-mod {
    padding: 30px 15px;
    height: 530px;
    border: 1px solid #651fff;
    transform: translateY(0px);
  }
  #how .how-mod h3 {
    font-size: 21px;
    margin-bottom: 12px;
  }
  #how .how-mod h5 {
    font-size: 14px;
    letter-spacing: 4.4px;
    margin-bottom: 240px;
    color: #651fff;
  }
  #how .how-mod p {
    line-height: 1.94;
  }
  #how .how-mod .mod-image {
    top: 45px;
  }
  #how .how-mod .mod-image .inner {
    transform: scale(0.78);
  }
  #how .how-mod .how-details {
    height: 190px;
  }
  #how .how-mods-wrap {
    height: 530px;
  }
  #how .mod-highlight {
    top: 124px;
    left: 50%;
    margin-left: -260px;
    opacity: 1;
  }
  #whitepaper {
    padding-top: 0px;
  }
  #whitepaper .cta-btn .bg {
    width: 870px;
    height: 70px;
    left: -248px;
  }
  #dashboard {
    padding-bottom: calc(309px);
  }
  #dashboard header {
    max-width: 600px;
  }
  #dashboard .dash-bucket .dash-icon {
    width: 70px;
  }
  #dashboard .dash-bucket .dash-icon img {
    max-width: 55px;
  }
  #dashboard .buckets {
    margin-top: 50px;
  }
  #dashboard .screens {
    margin-top: 50px;
  }
  #dashboard .screens .col.left .ornament {
    width: 150px;
  }
  #dashboard .screens .col.right .ornament {
    transform: scale(0.8);
  }
  #case-studies .cs-image {
    background: none !important;
    height: 100%;
    min-height: 0px;
  }
  #case-studies .cs-details {
    padding: 0px;
    padding-left: 25px;
  }
  #case-studies .cs-details h4 {
    font-size: 17px;
    line-height: 1.41;
  }
  #case-studies .cs-details .cs-box {
    width: 100%;
  }
  #case-studies .cs-details .cs-text {
    height: 100%;
    margin-top: -50px;
    padding: 20px 25px;
  }
  #case-studies .subscription .cs-text {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    margin-top: -50px;
  }
  #case-studies .gaming .cs-details .cs-text {
    padding-top: 20px;
  }
  #case-studies .bg-wrap {
    height: calc(708px);
    top: -588px;
  }
  #demo-cta h2 {
    margin-top: 18px;
    max-width: 300px;
  }
  #demo-cta .col.right {
    padding: 21px 0px 30px;
  }
  #demo-cta .cta-btn {
    margin-top: 30px;
  }
  #demo-cta br.mob {
    display: block;
  }
}
/*! MQ: 4 -> 650px */
@media screen and (max-width: 650px) {
  .outer-wrap {
    padding-top: 38px;
  }
  section h3 {
    margin-bottom: 20px;
  }
  #contact-form .cta-btn {
    width: 88px;
  }
  #contact-form h3 {
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 16px;
  }
  #contact-form .contentContainer {
    max-width: 370px;
    display: block;
  }
  #northstar .background {
    top: -66px;
  }
  #northstar .col {
    width: 100%;
  }
  #northstar .col.left {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 28px;
  }
  #northstar .col.right {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    max-width: none;
  }
  #solution {
    /* 		padding-top: 470px; */
    padding-bottom: 845px;
  }
  #solution .image-wrap {
    margin-bottom: 40px;
  }
  #solution .row[data-num="2"] {
    margin-top: 80px;
  }
  #solution .row[data-num="2"] .cta-btn {
    margin-top: 46px;
  }
  #solution .row[data-num="2"] .background {
    top: -240px;
    transform: scale(0.65);
  }
  #signal .col {
    width: 100%;
    max-width: none !important;
  }
  #signal .col.right {
    margin-top: 33px;
  }
  #journey .col {
    width: 100%;
    max-width: none !important;
  }
  #journey .col.left {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 30px;
  }
  #journey .col.right {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  #journey .col.right .inner {
    max-width: none !important;
  }
  #how .how-mods-wrap {
    margin-top: 30px;
  }
  #whitepaper p {
    font-size: 35px;
    line-height: 1.45;
  }
  #whitepaper p br {
    display: block;
  }
  #whitepaper h2 {
    display: none;
  }
  #whitepaper .background {
    transform: scale(0.68);
    margin-left: -453px;
    /* margin-top: -437px; */
  }
  #dashboard {
    padding-top: 100px;
    padding-bottom: 160px;
  }
  #dashboard .col {
    width: 100% !important;
    max-width: none !important;
  }
  #dashboard .dash-screens {
    max-width: none;
  }
  #dashboard .dash-text {
    min-height: 0;
  }
  #dashboard .screens {
    margin-top: 18px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  #dashboard .screens .col.left {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 38px;
    padding-right: 20px;
  }
  #dashboard .screens .col.right {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  #dashboard .screens .ornament {
    display: none;
  }
  #dashboard .buckets {
    margin-top: 5px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  #dashboard .buckets .col + .col {
    margin-top: 30px;
  }
  #dashboard .buckets .col.right .inner {
    max-width: none;
  }
  #dashboard .dash-bucket + .dash-bucket {
    margin-top: 30px;
  }
  #case-studies {
    text-align: center;
    padding-bottom: 25px;
  }
  #case-studies header {
    max-width: 350px;
    margin-bottom: 68px;
  }
  #case-studies header h2 {
    margin-bottom: 10px;
  }
  #case-studies .bg-wrap {
    top: -510px;
  }
  #case-studies .bg-wrap .background {
    transform: scale(0.6);
    margin-left: -1120px;
  }
  #case-studies .col {
    width: 100% !important;
    padding-right: 0px !important;
  }
  #case-studies .cs-icon {
    margin-left: auto;
    margin-right: auto;
  }
  #case-studies .cs-image {
    height: auto;
    width: 100%;
    max-width: 275px;
    margin: 0 auto;
    margin-top: 34px;
  }
  #case-studies .cs-details {
    position: relative;
    padding-left: 0px;
  }
  #case-studies .cs-details .cs-logo {
    height: 94px;
  }
  #case-studies .cs-details .cs-text {
    height: auto;
    margin-top: 0px !important;
    padding-bottom: 30px;
  }
  #case-studies .cs-details h4 {
    margin-bottom: 18px;
  }
  #case-studies .subscription .col.left,
  #case-studies .gaming .col.left {
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
  }
  #case-studies .gaming .cs-details .cs-text {
    min-height: 188px;
  }
  #case-studies .gaming .cs-details .cs-text h4 {
    margin-bottom: 0px;
  }
  #case-studies .gaming .cs-details .cs-text h4 br {
    display: none;
  }
  #demo-cta {
    padding-top: 20px;
  }
  #demo-cta .outer-wrap {
    padding: 0 20px;
  }
  #demo-cta .col {
    width: 100% !important;
  }
  #demo-cta .col.left {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    height: 335px;
  }
  #demo-cta .col.right {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    padding: 25px 0px 30px;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }
  #demo-cta .background {
    transform: scale(0.65);
    margin-top: -434px;
    left: 50%;
    margin-left: -462px;
  }
  #demo-cta .background .base {
    left: 0;
  }
  #globalFooter {
    padding-top: 45px;
    padding-bottom: 20px;
  }
  #globalFooter .col {
    width: 100% !important;
    max-width: none !important;
  }
  #globalFooter .col.left {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 30px;
  }
  #globalFooter .col.right {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  #globalFooter li {
    display: block;
  }
  #globalFooter li + li {
    margin-left: 0px;
    margin-top: 20px;
  }
  #globalFooter br.mob {
    display: block;
  }
  #globalFooter p {
    line-height: 1.85;
  }
  #globalFooter .seal-text {
    display: block;
    position: absolute;
    right: 0px;
    bottom: 18px;
    width: 106px;
    height: auto;
    -webkit-animation: spinner infinite 10s linear;
    -moz-animation: spinner infinite 10s linear;
    animation: spinner infinite 10s linear;
    animation-fill-mode: forwards;
    animation-direction: reverse;
  }
}
/*! MQ: 5 -> 550px */
@media screen and (max-width: 550px) {
  .basic-scaler {
    transform: scale(0.5);
  }
  section h1,
  section h2 {
    font-size: 40px;
  }
  #globalHeader .logo {
    left: 16px;
    top: 16px;
  }
  #globalHeader .logo .inner {
    transform: scale(0.63);
  }
  #globalHeader.sticky .logo {
    transform: translateY(-5px);
  }
  #globalHeader .top-btn .dsk {
    display: none;
  }
  #globalHeader .top-btn .cta-btn .bg {
    left: -285px;
    transform: scaleX(0.55);
  }
  #contact-form .logo-eye {
    transform: scale(0.63);
    left: 16px;
    top: 16px;
  }
  #contact-form .close-btn {
    transform: scale(0.63);
    right: 16px;
    top: 20px;
  }
  #contact-form .contentContainer {
    padding-top: 70px;
  }
  #contact-form .field-wrap label,
  #contact-form .field-wrap input {
    font-size: 16px;
  }
  #contact-form .thank-you p {
    font-size: 13px;
  }
  #hero {
    padding-top: 453px;
    padding-bottom: 203px;
  }
  #hero .background {
    transform: scale(0.54);
  }
  #hero .background .base {
    top: 118px;
  }
  #northstar {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #northstar header {
    max-width: 300px;
  }
  #solution {
    padding-top: 470px;
  }
  #solution header {
    max-width: 525px;
  }
  #solution .image-wrap {
    transform: scale(0.35);
    height: calc(235.55px);
    margin-top: 30px;
  }
  #whitepaper .col {
    width: 100%;
  }
  #whitepaper .col.left {
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
  }
  #whitepaper .col.right {
    height: 300px;
  }
  #whitepaper .background {
    margin-top: -437px;
  }
}
/*! MQ: 6 -> 450px */
@media screen and (max-width: 450px) {
  #whitepaper .col.left {
    margin: 0;
  }
  #demo-cta .col.right {
    margin: 0;
    text-align: left;
  }
}
