* {
  box-sizing: border-box; }

html {
  font-size: 62.5%;
  background-color: #0f1929;
  position: relative;
  z-index: -3; }

body {
  font-size: 1.4rem;
  font-family: "Roboto", "Helvetica Neue", sans-serif;
  background: #04050d;
  color: #0f1929;
  margin: 0;
  position: relative;
  z-index: -2; }
  body.in-transition {
    -webkit-transition: -webkit-transform 900ms ease-in-out;
    transition: -webkit-transform 900ms ease-in-out;
    transition: transform 900ms ease-in-out;
    transition: transform 900ms ease-in-out, -webkit-transform 900ms ease-in-out; }

h1 {
  font-size: 6rem;
  font-weight: 700;
  margin: 0; }
  @media (max-width: 768px) {
    h1 {
      font-size: 4.4rem; } }
  @media (max-width: 425px) {
    h1 {
      font-size: 3rem; } }
  @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    h1 {
      font-size: 5rem; } }

h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px; }
  @media (max-width: 768px) {
    h2 {
      font-size: 3.2rem;
      line-height: 1.3; } }
  @media (max-width: 425px) {
    h2 {
      font-size: 2.3rem;
      line-height: 1.3; } }

h3 {
  margin: 0; }

h4 {
  font-size: 2em;
  margin-bottom: 0.7em; }

p {
  font-size: 1.6rem;
  margin: 0 0 1em;
  line-height: 1.4;
  letter-spacing: 0.01rem; }
  p.big-p {
    font-size: 2rem; }
  p.bold {
    font-weight: 700; }
  p:last-of-type {
    margin: 0; }

a {
  color: white;
  border-bottom: 2px solid #fd1a30;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out; }
  a:hover {
    text-decoration: none;
    color: #fd1a30; }
  a.dark {
    color: #0f1929;
    border-bottom-color: #fd1a30; }
    a.dark:hover {
      color: #fd1a30; }
  a.big-p {
    font-size: 2rem; }

section {
  padding: 50px;
  background: #04050d; }
  @media (max-width: 425px) {
    section {
      padding: 20px; } }
  section.dark {
    background: #0f1929;
    color: white; }
  section.short {
    padding: 100px 250px 50px 50px; }
    @media (max-width: 768px) {
      section.short {
        padding: 100px 160px 50px 50px; } }
    @media (max-width: 425px) {
      section.short {
        padding: 50px 20px; } }
    @media (min-width: 1200px) {
      section.short {
        padding: 50px; } }

.container {
  position: relative;
  margin: auto 0;
  width: 100%;
  height: 100%; }
  @media (min-width: 1024px) {
    .container {
      max-width: 1200px;
      margin: 0 auto; } }

.center {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  height: 100%;
  width: 100%; }

ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0; }
  ul li {
    font-size: 1.6rem; }
  ul.bullets {
    list-style: disc; }
    ul.bullets li {
      margin-left: 1.7em;
      margin-bottom: 0.4em; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  text-rendering: optimizeLegibility; }

.arrow-appear .arrow {
  position: relative;
  top: 5px;
  -webkit-transform: rotate(-90deg) translateY(20px) scale(1);
          transform: rotate(-90deg) translateY(20px) scale(1);
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out; }
  .arrow-appear .arrow path {
    -webkit-transition: fill 150ms ease-in-out;
    transition: fill 150ms ease-in-out;
    fill: rgba(253, 26, 48, 0); }

.button-box {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-self: center;
          align-self: center;
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  border-bottom: none;
  padding: 14px 8px;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out; }
  .button-box .arrow {
    -webkit-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    @media (max-width: 425px) {
      .button-box .arrow {
        width: 25px; } }
    .button-box .arrow path {
      -webkit-transition: all 150ms ease-in-out;
      transition: all 150ms ease-in-out; }
  .button-box.light {
    color: white; }
  .button-box.left .arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin-right: 6px; }
  .button-box.right .arrow {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    margin-left: 6px; }
  .button-box.up .arrow {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  .button-box:hover {
    box-shadow: 0 0 10 10 rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }
    .button-box:hover .arrow {
      -webkit-transform: scale(1.2);
              transform: scale(1.2); }
    .button-box:hover.left .arrow {
      -webkit-transform: rotate(90deg) translateY(4px);
              transform: rotate(90deg) translateY(4px); }
    .button-box:hover.right .arrow {
      -webkit-transform: rotate(-90deg) translateY(4px);
              transform: rotate(-90deg) translateY(4px); }
    .button-box:hover.up .arrow {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }

.icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  margin-bottom: 20px; }

.overflow-hidden {
  overflow: hidden; }

.logo {
  width: 30vw; }
  @media (max-width: 768px) {
    .logo {
      position: relative;
      width: 50vw;
      top: -60px; } }
  @media (max-width: 425px) {
    .logo {
      width: 60vw; } }

.signup {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100vh;
  background: #fd1a30;
  padding: 50px 20px; }

.signup-form {
  width: 50%; }
  @media (max-width: 768px) {
    .signup-form {
      width: 80%; } }
  @media (max-width: 425px) {
    .signup-form {
      width: 90%; } }

.data-table {
  max-width: 700px;
  width: 100%; }

.btn-container {
  max-width: 30vw;
  margin: 50px; }

.feedback-btn {
  width: 100%;
  margin-top: 20px;
  width: 100%;
  border: 2px solid white;
  background: white;
  color: #fd1a30;
  font-size: 2rem;
  padding: 10px 20px;
  outline: none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out; }
  .feedback-btn:hover {
    box-shadow: 0 0 30px #feb2b9;
    cursor: pointer; }

.submit-btn {
  width: 100%;
  margin-top: 20px; }
  .submit-btn input {
    width: 100%;
    border: 2px solid white;
    background: white;
    color: #fd1a30;
    font-size: 2rem;
    padding: 10px;
    outline: none;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -webkit-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
    .submit-btn input:hover {
      box-shadow: 0 0 30px #feb2b9;
      cursor: pointer; }
    .submit-btn input[type="text"] {
      padding: 5px;
      border: none;
      border-radius: 0; }
    .submit-btn input[type="submit"] {
      background: white;
      border: 0 none;
      cursor: pointer;
      border-radius: 0;
      -webkit-appearance: none; }

.blank-link {
  text-decoration: none;
  border-bottom: none; }

.thank-you {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column; }
  .thank-you p {
    font-size: 2.4rem; }

.scroll-down {
  position: absolute;
  bottom: 50px;
  left: calc(50% - 24px);
  height: 60px;
  border-bottom: none; }
  @media (max-width: 768px) {
    .scroll-down {
      bottom: 140px; } }
  .scroll-down .pulse {
    -webkit-animation: pulse 1.5s ease-in-out infinite;
            animation: pulse 1.5s ease-in-out infinite;
    position: relative; }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  25% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  88% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  25% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  88% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

.field {
  --uiFieldPlaceholderColor: var(--fieldPlaceholderColor, white);
  width: 100%; }

.field__input {
  background-color: transparent;
  border-radius: 0;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: inherit;
  font-size: 1em;
  font-weight: 700; }

.a-field .field__input:focus {
  outline: none; }

.field__input:focus::-webkit-input-placeholder {
  color: var(--uiFieldPlaceholderColor); }

.field__input:focus::-moz-placeholder {
  color: var(--uiFieldPlaceholderColor);
  opacity: 1; }

.field {
  display: inline-block; }

.field__input {
  display: block;
  box-sizing: border-box;
  width: 100%; }

.a-field {
  --uiFieldHeight: var(--fieldHeight, 50px);
  --uiFieldBorderWidth: var(--fieldBorderWidth, 2px);
  --uiFieldBorderColor: var(--fieldBorderColor);
  --uiFieldFontSize: var(--fieldFontSize, 2rem);
  --uiFieldHintFontSize: var(--fieldHintFontSize, 2.5rem);
  --uiFieldPaddingRight: var(--fieldPaddingRight, 15px);
  --uiFieldPaddingBottom: var(--fieldPaddingBottom, 15px);
  --uiFieldPaddingLeft: var(--fieldPaddingLeft, 15px);
  position: relative;
  box-sizing: border-box;
  font-size: var(--uiFieldFontSize);
  font-weight: 700;
  color: white;
  padding-top: 1em; }
  @media (max-width: 425px) {
    .a-field {
      --uiFieldFontSize: var(--fieldFontSize, 1.5rem); } }
  @media (max-width: 425px) {
    .a-field {
      --uiFieldHintFontSize: var(--fieldHintFontSize, 1.9rem); } }

.a-field .field__input {
  height: var(--uiFieldHeight);
  padding: 0 var(--uiFieldPaddingRight) 0 var(--uiFieldPaddingLeft);
  border-bottom: var(--uiFieldBorderWidth) solid var(--uiFieldBorderColor); }

.a-field .field__input::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out; }

.a-field .field__input::-moz-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out; }

.a-field
.field__input:not(:placeholder-shown)
~ .field__label-wrap
.field__label {
  opacity: 0;
  bottom: var(--uiFieldPaddingBottom); }

.a-field .field__input:focus::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s; }

.a-field .field__input:focus::-moz-placeholder {
  opacity: 1;
  transition-delay: 0.2s; }

.a-field .field__label-wrap {
  box-sizing: border-box;
  width: 100%;
  height: var(--uiFieldHeight);
  pointer-events: none;
  cursor: text;
  position: absolute;
  bottom: 0;
  left: 0; }

.a-field .field__label {
  position: absolute;
  left: var(--uiFieldPaddingLeft);
  bottom: calc(50% - 0.5em);
  line-height: 1;
  font-size: var(--uiFieldHintFontSize);
  pointer-events: none;
  -webkit-transition: bottom 0.2s cubic-bezier(0.9, -0.15, 0.1, 1.15), opacity 0.2s ease-out;
  transition: bottom 0.2s cubic-bezier(0.9, -0.15, 0.1, 1.15), opacity 0.2s ease-out;
  will-change: bottom, opacity; }

.a-field .field__input:focus ~ .field__label-wrap .field__label {
  opacity: 1;
  bottom: var(--uiFieldHeight); }

.a-field_a3 {
  padding-top: 1.5em; }

.a-field_a3 .field__label-wrap:after {
  content: "";
  box-sizing: border-box;
  width: 100%;
  height: 0;
  opacity: 0;
  border: var(--uiFieldBorderWidth) solid var(--fieldBorderColorActive);
  position: absolute;
  bottom: 0;
  left: 0;
  will-change: opacity, height;
  -webkit-transition: height 0.2s ease-out, opacity 0.2s ease-out;
  transition: height 0.2s ease-out, opacity 0.2s ease-out; }

.a-field_a3 .field__input:focus ~ .field__label-wrap:after {
  height: 100%;
  opacity: 1; }

.a-field_a3 .field__input:focus ~ .field__label-wrap .field__label {
  bottom: calc(var(--uiFieldHeight) + 0.5em); }

/*
=====
LEVEL 4. SETTINGS
=====
*/
.field {
  --fieldBorderColor: white;
  --fieldBorderColorActive: white; }

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  color: white; }
  .hero .title-prepend {
    font-family: "Montserrat", "Helvetica Neue", sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem; }
  .hero .title-append {
    color: #fd1a30; }
  .hero video#bgvideo {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%); }
    @media (max-width: 425px) {
      .hero video#bgvideo {
        display: none; } }
  .hero img#bgimage {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    max-height: 170%;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%); }
    @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
      .hero img#bgimage {
        position: relative;
        min-height: 140%; } }
    @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
      .hero img#bgimage {
        position: relative;
        min-height: 130%; } }
    @media (max-width: 768px) {
      .hero img#bgimage {
        min-height: 120%;
        position: relative; } }

video#bgVideoVertical {
  display: none; }
  @media (max-width: 425px) {
    video#bgVideoVertical {
      display: block;
      position: fixed;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -1;
      -webkit-transform: translateX(-50%) translateY(-50%);
              transform: translateX(-50%) translateY(-50%); } }

footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  background: #e20218;
  padding: 30px;
  color: #fd1a30; }
  @media (max-width: 425px) {
    footer {
      padding: 20px; } }
  footer p {
    color: #fe6170; }
    @media (max-width: 425px) {
      footer p {
        font-size: 12px; } }
  @media (max-width: 425px) {
    footer span {
      display: none; } }

nav {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  padding: 30px 50px;
  z-index: 101;
  font-size: 1.6rem;
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  font-weight: 700;
  background: #0f1929;
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.1); }
  @media (max-width: 768px) {
    nav {
      padding: 15px 20px; } }
  nav a {
    border-bottom: none;
    font-weight: 400; }
    nav a img {
      height: 42px; }
    @media (max-width: 768px) {
      nav a {
        font-size: 17px;
        font-weight: 500; }
        nav a img {
          display: -webkit-box;
          display: -webkit-flex;
          display: flex;
          height: 28px; } }
    @media (max-width: 425px) {
      nav a {
        font-size: 15px;
        font-weight: 500; }
        nav a img {
          height: 22px; } }
    @media (max-width: 320px) {
      nav a {
        font-size: 13px; }
        nav a img {
          height: 20px; } }
  nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
            justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center; }
    @media (max-width: 768px) {
      nav ul {
        margin: 10px 0; } }
    nav ul li {
      margin-right: 40px; }
      @media (max-width: 768px) {
        nav ul li {
          margin-right: 30px; } }
      @media (max-width: 425px) {
        nav ul li {
          margin-right: 15px; } }
      nav ul li.active a {
        color: #fd1a30; }
      nav ul li:last-child {
        margin-right: 0; }