:root {
  --color-lightest-gray: #f1f1f1;
  --color-lighter-gray: #ebebeb;
  --color-light-gray: #b4b4b4;
  --color-gray-disabled: #ddd;
  --color-gray: #7f7f7f;
  --color-dark-gray: #333;
  --color-blue: #002fa7;
  --color-bright-blue: #009cff;
  --color-dark-blue: #001c62;
  --color-yellow: #ffff00;
  --color-yellow-alt: #ffed00;
  --color-cyan: #5bd8b7;
  --color-red: #f00055;
  --color-dark-red: #82002b;
  --color-darker-red: #670021;
  --color-orange: #f26722;
  --font-avenir: "Avenir Next";
  --font-headline: "Franklin Gothic ExtraBold";
  --width-4k: 1920px;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Mixin scrollbar
 */
.button,
button {
  background: none;
  border: 2px solid #fff;
  cursor: pointer;
  height: 46px;
  line-height: 46px;
  margin: 0;
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: border-color 0.2s ease-out, color 0.2s ease-out;
}
.button span,
button span {
  color: #fff;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: 46px;
  line-height: inherit;
  margin: 0;
  overflow: hidden;
  padding: 0 40px;
  position: relative;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.62, 0.36, 0.13, 0.92);
}
.button span em,
button span em {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.62, 0.36, 0.13, 0.92);
}
.button span:last-child,
button span:last-child {
  background: #fff;
  color: #000;
}
.button span:last-child em,
button span:last-child em {
  transform: translate(0, -200%);
}
.button:disabled, .button:disabled:hover,
button:disabled,
button:disabled:hover {
  border-color: #d2d2d2;
  cursor: default;
}
.button:disabled span,
button:disabled span {
  background: #d2d2d2;
  color: #efefef;
}
.button:hover:not(:disabled) span,
button:hover:not(:disabled) span {
  transform: translate(0, -100%);
}
.button:hover:not(:disabled) span:first-child em,
button:hover:not(:disabled) span:first-child em {
  transform: translate(0, 200%);
}
.button:hover:not(:disabled) span:last-child em,
button:hover:not(:disabled) span:last-child em {
  transform: translate(0, 0);
}
.button.dark-blue,
button.dark-blue {
  background: #fff;
  border-color: var(--color-dark-blue);
}
.button.dark-blue span,
button.dark-blue span {
  background: #fff;
  color: var(--color-dark-blue);
}
.button.dark-blue span:last-child,
button.dark-blue span:last-child {
  background: var(--color-dark-blue);
  color: #fff;
}
.button.dark-blue:hover,
button.dark-blue:hover {
  border-color: var(--color-dark-blue);
}

html {
  background: #fff;
  font: 400 16px/1.6 var(--font-avenir), Arial;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga" on;
}

body {
  color: var(--color-dark-gray);
  scrollbar-face-color: var(--color-cyan);
  scrollbar-track-color: var(--color-lightest-gray);
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: var(--color-cyan);
}
body::-webkit-scrollbar-track {
  background: var(--color-lightest-gray);
}

body.nav-expanded,
body.overlay {
  overflow: hidden;
}

p {
  margin-bottom: 1.25rem;
}

a {
  color: -var(--color-dark-blue);
}

html, body {
  height: 100%;
}
html ::-moz-selection, body ::-moz-selection {
  background: -var(--color-yellow);
  color: -var(--color-dark-blue);
}
html ::selection, body ::selection {
  background: -var(--color-yellow);
  color: -var(--color-dark-blue);
}

#logo {
  cursor: pointer;
  height: 24px;
  left: 50%;
  overflow: hidden;
  position: fixed;
  top: 42px;
  transform: translate(-50%, 0);
  width: 24px;
  z-index: 60;
}
#logo .logo-item, #logo .logo-item-hover, #logo .logo-item-cnt {
  transition: clip 0.15s;
  height: 27px;
  overflow: hidden;
  width: 24px;
  position: relative;
}
#logo .logo-item-cnt {
  clip: rect(0px, 100px, 27px, 0px);
  left: 0;
  position: absolute;
  top: 0;
}
#logo .logo-item-hover {
  clip: rect(27px, 100px, 27px, 0px);
  left: 0;
  position: absolute;
  top: 0;
}
#logo:hover .logo-item-hover {
  clip: rect(0px, 100px, 27px, 0px);
}
#logo:hover .logo-item-cnt {
  clip: rect(0px, 100px, 0px, 0px);
}
#logo .logo__link {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
#logo .fold-scroller-item {
  width: 24px;
  height: 27px;
}
#logo svg {
  height: 27px;
  width: 24px;
}
.nav-expanded #logo {
  display: none;
}
.nav-expanded.animated #logo {
  display: block;
}

#content {
  margin: 0 auto;
  min-height: 100%;
}

.enter-buttons {
  position: fixed;
  right: 40px;
  top: 37px;
  z-index: 11;
  width: 280px;
  height: 60px;
}
.enter-buttons .fold-scroller-item {
  height: 60px;
  text-align: right;
  width: 280px;
}
.enter-buttons .fold-scroller-node {
  display: flex;
  justify-content: flex-end;
}
.loading .enter-buttons .button-login, .loading .enter-buttons .button-sign-up {
  opacity: 0;
}
.loading .enter-buttons .button-login {
  transform: translateY(-20px);
}
.loading-end .enter-buttons .button-login {
  transition: transform 0.35s ease-out, opacity 0.35s ease-out;
}
.enter-buttons .button-sign-up.button {
  margin-left: 10px;
}
.loading .enter-buttons .button-sign-up.button {
  transform: translateY(20px);
}
.loading-end .enter-buttons .button-sign-up.button {
  transition: transform 0.35s ease-out, opacity 0.35s ease-out;
}
@media only screen and (max-width: 374px) {
  .enter-buttons {
    right: 25px;
    top: 15px;
  }
}

.footer-nav {
  overflow: hidden;
}
.use-case-content .footer-nav, .mobile .use-case-content .footer-nav {
  padding: 0;
}
.footer-nav .card {
  cursor: pointer;
  float: left;
  overflow: hidden;
  padding-bottom: 21.8%;
  position: relative;
  width: 50%;
}
@media only screen and (max-width: 374px) {
  .footer-nav .card {
    padding-bottom: 32.7%;
  }
}
.footer-nav .card:before {
  background: rgba(0, 0, 0, 0.4);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: background 1.5s ease;
  z-index: 4;
}
.footer-nav .card:hover:before {
  background: rgba(0, 0, 0, 0.1);
}
.footer-nav .card .character-info {
  bottom: 5%;
  left: 10%;
  text-align: left;
  transform: translateY(0);
  width: auto;
}
@media only screen and (max-width: 374px) {
  .footer-nav .card .character-info {
    bottom: 12%;
  }
}
.footer-nav .card .name {
  font-weight: bold;
  font-size: clamp(1.5rem, 4.5vw, 2.625rem);
}
.footer-nav .card .arrow {
  bottom: -25px;
  cursor: pointer;
  left: auto;
  position: absolute;
  right: 30px;
  transform: translateY(-50%);
  z-index: 4;
}
.footer-nav .card .arrow line, .footer-nav .card .arrow polyline {
  stroke: white;
}
@media only screen and (max-width: 374px) {
  .footer-nav .card .arrow {
    right: 0;
    bottom: 0;
  }
}
.footer-nav .card .position {
  margin-top: 6px;
  font-size: clamp(1rem, 3vw, 1.25rem);
}
.footer-nav .card .position div {
  display: inline;
}
@media only screen and (max-width: 374px) {
  .footer-nav .card .position div {
    display: block;
  }
}
.footer-nav .card .bg {
  background: center/cover no-repeat;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  transform: scale(1);
  transition: transform 10s;
}
.footer-nav .card:hover .bg {
  transform: scale(1.1);
}
.footer-nav .card .use-case-card-link {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 15;
}

.page-transition {
  background: -var(--color-cyan);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  transform: translate(0, 100%);
  transition: transform 0.5s ease-in, height 0.5s ease-in-out;
}
.page-transition.step1 {
  transform: translate(0, 0%);
}
.page-transition.step2 .page-transition-wrap {
  height: 100%;
}
.page-transition.step3 {
  height: 0;
}
.page-transition.manifesto {
  background: #fffe15;
}
.page-transition.use-cases {
  background: #009fff;
}
.page-transition.product {
  background: #ff0156;
}
.page-transition.sign-up {
  background: #00c5b4;
}

.page-transition-wrap {
  background: #fffe15;
  height: 0;
  left: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  transition: height 0.5s ease-in-out;
}

.page-transition.manifesto .page-transition-wrap {
  background: #fff;
}

.mdl-textfield__error {
  color: -var(--color-red);
  font-size: 12px;
  text-align: left;
}

.side-navigation {
  height: 100%;
  left: 30px;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 50px;
  z-index: 60;
}
.side-navigation .fold-scroller-item {
  height: 100%;
  width: 50px;
}
@media only screen and (min-width: 425px) {
  .side-navigation {
    left: 10px;
  }
}

.hamburger-button {
  cursor: pointer;
  height: 26px;
  left: 12px;
  pointer-events: all;
  position: absolute;
  top: 40px;
  width: 25px;
  transition: transform 0.5s;
}
.hamburger-button:before {
  content: "";
  display: block;
  background: rgba(255, 255, 255, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 80px;
}
.hamburger-button .line {
  background: #fff;
  height: 2px;
  margin: 6px 0;
  width: 100%;
  transition: transform 0.5s, width 0.5s, opacity 0.5s 0.15s;
  transform-origin: 100% 50%;
}
.hamburger-button .line:nth-child(2) {
  transform-origin: 0% 50%;
}
.nav-expanded .hamburger-button .line {
  background: #fff !important;
}
.nav-expanded .hamburger-button .line:nth-child(1) {
  transform: rotate(-45deg) translate(-1px, -4px);
  width: 100%;
}
.nav-expanded .hamburger-button .line:nth-child(2) {
  transition: transform 0.5s, width 0.5s, opacity 0.15s;
  opacity: 0;
}
.nav-expanded .hamburger-button .line:nth-child(3) {
  transform: rotate(45deg) translate(-3px, 2px);
  width: 100%;
}
.hamburger-button:hover .line:nth-child(2) {
  transform: translate(12px, 0);
}
.hamburger-button .line:nth-child(2) {
  width: 50%;
}
.loading .hamburger-button .line {
  width: 0;
}
.loading-end .hamburger-button .line:nth-child(2) {
  transition-delay: 0.15s;
}
.loading-end .hamburger-button .line:nth-child(3) {
  transition-delay: 0.25s;
}
@media only screen and (min-width: 425px) {
  .hamburger-button {
    height: auto;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.2));
    left: 6px;
    padding: 6px 10px 5px 9px;
    top: 15px;
  }
  .hamburger-button .line {
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  }
}

.side-navigation.back .hamburger-button:hover {
  transform: translate(-10px, 0);
}

.side-navigation.back .hamburger-button .line:nth-child(1) {
  transform: rotate(-45deg) translate(-4px, -2px);
  width: 40%;
}
.side-navigation.back .hamburger-button .line:nth-child(2) {
  width: 150%;
  transform: translate(0px, 0);
}
.side-navigation.back .hamburger-button .line:nth-child(3) {
  transform: rotate(45deg) translate(-4px, 2px);
  width: 40%;
}

.side-navigation .next-chapter {
  border: 0px none;
  bottom: 50px;
  cursor: pointer;
  height: 108px;
  left: 21px;
  pointer-events: all;
  position: absolute;
  width: 40px;
  opacity: 1;
  transition: transform 0.5s, opacity 0.5s;
}
.side-navigation .next-chapter .scroll {
  color: #fff;
  left: 0px;
  opacity: 1;
  position: absolute;
  top: 10px;
  transform-origin: 0 50%;
  transform: rotate(-90deg);
  transition: transform 0.75s 0.35s cubic-bezier(0, 0, 0, 1), opacity 0.25s 0.35s cubic-bezier(0, 0, 0, 1);
}
.loading .side-navigation .next-chapter .scroll {
  transform: translate(40px, 0) rotate(-90deg);
  opacity: 0;
}
.side-navigation .next-chapter .arrow {
  transform-origin: 0 50%;
  transform: rotate(90deg);
  opacity: 1;
}
.loading .side-navigation .next-chapter .arrow {
  transform: translate(0px, -40px) rotate(90deg);
  opacity: 0;
}
.loading-end .side-navigation .next-chapter .arrow {
  transition: transform 0.5s 0.25s ease-out, opacity 0.5s 0.25s;
  transform: translate(0, 0) rotate(90deg);
  opacity: 1;
}
.end-of-page .side-navigation .next-chapter {
  transform: translate(0, 100%);
  opacity: 0;
}
.side-navigation .next-chapter polyline {
  stroke: #fff;
}
.side-navigation .next-chapter line {
  stroke: #fff;
}
.nav-expanded .side-navigation .next-chapter {
  visibility: hidden;
}

.side-navigation.scroll-known .scroll {
  opacity: 0;
  transform: translate(-40px, 0) rotate(-90deg);
  transition: transform 0.25s ease-in, opacity 0.25s ease-in;
}

.side-navigation.hide-down-button .next-chapter {
  display: none;
}

.side-navigation .title {
  color: #fff;
  font-weight: 400;
  left: -278px;
  line-height: 30px;
  height: 30px;
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: 100% 50%;
  white-space: nowrap;
  text-align: right;
  top: 70px;
  width: 300px;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}
.nav-expanded .side-navigation .title {
  color: #fff !important;
}
.loading .side-navigation .title.active {
  transform: translate(40px, 0) rotate(-90deg);
  opacity: 0;
}
.side-navigation .title.hover {
  transform: translate(20px, 0) rotate(-90deg);
  opacity: 0;
}
.side-navigation .title.active {
  transform: translate(0px, 0) rotate(-90deg);
  opacity: 1;
}
.loading-end .side-navigation .title.active {
  transition: transform 0.25s 0.1s ease-out, opacity 0.25s 0.1s;
}
.loading .side-navigation .title.hover, .loading-end .side-navigation .title.hover {
  opacity: 0;
}
.side-navigation.hamburger-hover .title.active {
  transform: translate(-20px, 0) rotate(-90deg);
  opacity: 0;
}
.side-navigation.hamburger-hover .title.hover {
  transform: translate(0px, 0) rotate(-90deg);
  opacity: 1;
}
.loading-end .side-navigation.hamburger-hover .title.active {
  transform: translate(0px, 0) rotate(-90deg);
  opacity: 1;
}
.loading-end .side-navigation.hamburger-hover .title.hover {
  transform: translate(40px, 0) rotate(-90deg);
  opacity: 0;
}

.easter-egg-opening .side-navigation {
  opacity: 0;
  transition: opacity 0.5s;
}
.side-navigation .job-detail .arrow,
.side-navigation .job-detail .hamburger-button {
  display: none;
}
.side-navigation .white .line,
.side-navigation .secret .line,
.side-navigation .white-red .line,
.side-navigation .white-cyan .line,
.side-navigation .white-yellow .line,
.side-navigation .manifesto-quotes .line, .page-manifesto .side-navigation .line, .page-usecases .side-navigation .line {
  background-color: #fff;
}
.side-navigation .white .title, .side-navigation .white .scroll,
.side-navigation .secret .title,
.side-navigation .secret .scroll,
.side-navigation .white-red .title,
.side-navigation .white-red .scroll,
.side-navigation .white-cyan .title,
.side-navigation .white-cyan .scroll,
.side-navigation .white-yellow .title,
.side-navigation .white-yellow .scroll,
.side-navigation .manifesto-quotes .title,
.side-navigation .manifesto-quotes .scroll, .page-manifesto .side-navigation .title, .page-manifesto .side-navigation .scroll, .page-usecases .side-navigation .title, .page-usecases .side-navigation .scroll {
  color: #fff;
}
.side-navigation .white .arrow line,
.side-navigation .white .arrow polyline,
.side-navigation .secret .arrow line,
.side-navigation .secret .arrow polyline,
.side-navigation .white-red .arrow line,
.side-navigation .white-red .arrow polyline,
.side-navigation .white-cyan .arrow line,
.side-navigation .white-cyan .arrow polyline,
.side-navigation .white-yellow .arrow line,
.side-navigation .white-yellow .arrow polyline,
.side-navigation .manifesto-quotes .arrow line,
.side-navigation .manifesto-quotes .arrow polyline, .page-manifesto .side-navigation .arrow line,
.page-manifesto .side-navigation .arrow polyline, .page-usecases .side-navigation .arrow line,
.page-usecases .side-navigation .arrow polyline {
  stroke: #fff;
}
.side-navigation .red .line,
.side-navigation .blue .line,
.side-navigation .brightblue .line,
.side-navigation .yellow .line, .page-product .side-navigation .line {
  background-color: #000;
}
.side-navigation .red .title, .side-navigation .red .scroll,
.side-navigation .blue .title,
.side-navigation .blue .scroll,
.side-navigation .brightblue .title,
.side-navigation .brightblue .scroll,
.side-navigation .yellow .title,
.side-navigation .yellow .scroll, .page-product .side-navigation .title, .page-product .side-navigation .scroll {
  color: #000;
}
.side-navigation .red .arrow line,
.side-navigation .red .arrow polyline,
.side-navigation .blue .arrow line,
.side-navigation .blue .arrow polyline,
.side-navigation .brightblue .arrow line,
.side-navigation .brightblue .arrow polyline,
.side-navigation .yellow .arrow line,
.side-navigation .yellow .arrow polyline, .page-product .side-navigation .arrow line,
.page-product .side-navigation .arrow polyline {
  stroke: #000;
}
.side-navigation .darkblue-cyan .line,
.side-navigation .darkblue-white .line,
.side-navigation .darkblue-yellow .line,
.side-navigation .darkblue-red .line, .page-signup .side-navigation .line, .page-legal .side-navigation .line, .page-jobs .side-navigation .line {
  background-color: var(--color-dark-blue);
}
.side-navigation .darkblue-cyan .title, .side-navigation .darkblue-cyan .scroll,
.side-navigation .darkblue-white .title,
.side-navigation .darkblue-white .scroll,
.side-navigation .darkblue-yellow .title,
.side-navigation .darkblue-yellow .scroll,
.side-navigation .darkblue-red .title,
.side-navigation .darkblue-red .scroll, .page-signup .side-navigation .title, .page-signup .side-navigation .scroll, .page-legal .side-navigation .title, .page-legal .side-navigation .scroll, .page-jobs .side-navigation .title, .page-jobs .side-navigation .scroll {
  color: var(--color-dark-blue);
}
.side-navigation .darkblue-cyan .arrow line,
.side-navigation .darkblue-cyan .arrow polyline,
.side-navigation .darkblue-white .arrow line,
.side-navigation .darkblue-white .arrow polyline,
.side-navigation .darkblue-yellow .arrow line,
.side-navigation .darkblue-yellow .arrow polyline,
.side-navigation .darkblue-red .arrow line,
.side-navigation .darkblue-red .arrow polyline, .page-signup .side-navigation .arrow line,
.page-signup .side-navigation .arrow polyline, .page-legal .side-navigation .arrow line,
.page-legal .side-navigation .arrow polyline, .page-jobs .side-navigation .arrow line,
.page-jobs .side-navigation .arrow polyline {
  stroke: var(--color-dark-blue);
}
.side-navigation .yellow-white .line {
  background-color: var(--color-yellow);
}
.side-navigation .yellow-white .title, .side-navigation .yellow-white .scroll {
  color: var(--color-yellow);
}
.side-navigation .yellow-white .arrow line,
.side-navigation .yellow-white .arrow polyline {
  stroke: var(--color-yellow);
}

.view {
  background: #fff;
  position: relative;
  top: 0;
  transform: none;
  transform-origin: 50% 0%;
}
.crm .view {
  filter: none;
}
.floating-pages .view {
  transition: filter 1s ease-out, transform 1s ease-out;
}
.view.floating {
  transform: scale(0.5) translate(0, 320px);
  left: 0;
  min-height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  /*     @include transition(transform 1s ease-out, filter 1s ease-out); */
}
.crm .view.floating {
  filter: contrast(0.1);
}
@media only screen and (max-width: 424px) {
  .view.floating {
    transform: scale(0.85) translate(0, 6.25rem);
  }
}
.view.floating:after {
  background: #16c5b5;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transition: opacity 0.5s;
}
.crm .view.floating:after {
  mix-blend-mode: multiply;
}
.view.floating.view-start:after {
  background: #00c5b4;
}
.view.floating.view-manifesto:after {
  background: #fffe15;
}
.view.floating.view-use-cases:after {
  background: #009fff;
}
.view.floating.view-product:after {
  background: #ff0156;
}
.view.floating.view-sign-up:after {
  background: #00c5b4;
}
.view.floating.view-active {
  transform: scale(0.61) translate(0, 200px);
}
.crm .view.floating.view-active {
  filter: contrast(0.5);
}
.view.floating.view-active:after {
  opacity: 0.2;
}
.crm .view.floating.view-active:after {
  opacity: 0.5;
}

section {
  position: relative;
}

.view-content {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1158px;
  overflow: hidden;
  width: 72.5%;
}
@media only screen and (max-width: 1023px) {
  .view-content {
    padding: 40px;
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 768px) {
  .view-content {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 424px) {
  .view-content {
    padding: 30px;
  }
}

h1 {
  font-size: clamp(2.2rem, 2.2vw, 7.8rem);
  font-weight: 700;
  line-height: 1;
}

h1, h2 {
  font-size: clamp(2.2rem, 2.2vw, 7.8rem);
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  h1, h2 {
    font-size: clamp(2.2rem, 2.2vw, 7.8rem);
  }
}
@media only screen and (min-width: 1440px) {
  h1, h2 {
    font-size: clamp(6rem, 6vw, 14.4rem);
  }
}

h3, .lead-in {
  font-size: clamp(2.2rem, 2.2vw, 2rem);
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  h3, .lead-in {
    font-size: clamp(2.2rem, 2.2vw, 2.2rem);
  }
}

.lead-in {
  padding-top: 1.25rem;
  padding-bottom: 1.875rem;
}
@media only screen and (min-width: 768px) {
  .lead-in {
    padding-top: 0;
  }
}
@media only screen and (max-width: 424px) {
  .lead-in {
    font-size: inherit;
  }
}

h3 {
  font-weight: 700;
  margin-bottom: 0.625rem;
  padding-top: 3.75rem;
}
@media only screen and (min-width: 768px) {
  h3 {
    margin-bottom: 1.875rem;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    padding-top: 24px;
  }
}

p {
  font-size: 0.8125rem;
}
@media only screen and (min-width: 1024px) {
  p {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1440px) {
  p {
    font-size: clamp(1rem, 3vw, 1.125rem);
  }
}
@media only screen and (min-width: 2560px) {
  p {
    font-size: clamp(1rem, 3.25vw, 1.25rem);
  }
}

@media only screen and (min-width: 769px) {
  .grid {
    display: flex;
    flex-wrap: wrap;
  }
  .grid .col {
    box-sizing: border-box;
    width: 50%;
  }
  .grid .col:nth-child(2n+1) {
    padding-right: 20px;
  }
  .grid .col:nth-child(2n) {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 769px) and (min-width: 1024px) {
  .grid .col:nth-child(2n+1) {
    padding-right: 30px;
  }
  .grid .col:nth-child(2n) {
    padding-left: 30px;
  }
}
.animated .appear-type-writer .last:after {
  content: "|";
  transition: opacity 2s;
}
.animated .appear-type-writer .last.ended:after {
  opacity: 0;
}
.animated .appear-blur {
  filter: blur(10px);
  transition: filter 2s;
}
.animated .appear-blur.appear {
  filter: blur(0px);
}
.animated .appear-text-up {
  overflow: hidden;
  position: relative;
}
.animated .appear-text-up span {
  opacity: 0;
  display: block;
  transform: translate(0, 120%);
  transition: transform 0.5s ease-out;
}
.animated .appear-text-up.appear > span {
  opacity: 1;
  transform: translate(0, 0);
}
.animated .appear-visibility {
  visibility: hidden;
}
.animated .appear-visibility.appear {
  visibility: visible;
}
.animated .appear-text-down {
  overflow: hidden;
  position: relative;
}
.animated .appear-text-down > span {
  display: block;
  transform: translate(0, -120%);
  transition: transform 0.5s ease-out;
}
.animated .appear-text-down.appear > span {
  transform: translate(0, 0);
}
.animated .appear-fadein {
  opacity: 0;
  transition: opacity 1.25s;
}
.animated .appear-fadein.appear {
  opacity: 1;
}
.animated .appear-text-right {
  overflow: hidden;
  position: relative;
}
.animated .appear-text-right span {
  opacity: 0;
  display: block;
  transform: translate(-100%, 0%) scaleX(2);
  transition: transform 0.5s, opacity 0.5s;
}
.animated .appear-text-right.appear span {
  opacity: 1;
  transform: translate(0, 0) scaleY(1);
}
.animated .appear-right {
  transform: translate(-100%, 0);
  transition: transform 0.5s;
}
.animated .appear-right.appear {
  transform: translate(0, 0);
}
.animated .appear-fadeup {
  opacity: 0;
  transform: translate(0, 50px);
  transition: transform 1s, opacity 1s;
}
.animated .appear-fadeup.speed2 {
  transform: translate(0, 50px);
  transition: transform 2.5s, opacity 2.5s;
}
.animated .appear-fadeup.appear {
  transform: translate(0, 0px);
  opacity: 1;
}
.animated .appear-up {
  transform: translate(0, 100%);
  transition: transform 1s;
}
.animated .appear-up.appear {
  transform: translate(0, 0px);
}
.animated .appear-scale-move {
  transform: scale(0) translate(0, 100px);
  transition: transform 1s;
}
.animated .appear-scale-move.appear {
  animation: bubble-up 0.6s ease-out;
  transform: scale(1);
  transition: none;
}
.animated .appear-scale {
  transform: scale(0);
  transition: transform 1s 1s;
}
.animated .appear-scale.appear {
  transform: scale(1);
}
.animated .appear-fadeup-anim {
  visibility: hidden;
}
.animated .appear-fadeup-anim.appear {
  animation: fade-up 1s;
  visibility: visible;
}
.animated .appear-fadeup-anim.speed2.appear {
  animation: fade-up 2s;
}
.animated .appear-movein-anim {
  visibility: hidden;
}
.animated .appear-movein-anim.appear {
  animation: move-in-anim 1s;
  visibility: visible;
}

@keyframes bubble-up {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translate(0, 5%);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0);
  }
}
@keyframes move-in-anim {
  0% {
    opacity: 0;
    transform: translate(-100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0%, 0);
  }
}
.arrow {
  background: rgba(255, 255, 255, 0);
  height: 30px;
  padding: 10px 0;
  width: 108px;
  /*   left: 50%; */
  /*   position: absolute; */
  /*   z-index: 400; */
  /*   top: 50%; */
}
.arrow polyline, .arrow line {
  fill: none;
  stroke: #000000;
  stroke-width: 1.6;
  stroke-miterlimit: 10;
}

a.button {
  display: inline-block;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
}

.enter button,
.enter .button,
.enter-buttons button,
.enter-buttons .button {
  box-sizing: border-box;
  font-family: var(--font-avenir), Arial;
}
.enter button.button-login,
.enter .button.button-login,
.enter-buttons button.button-login,
.enter-buttons .button.button-login {
  background: none;
  border: 2px solid transparent;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  margin: 0;
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: border-color 0.2s ease-out, color 0.2s ease-out;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0 40px;
}
.enter button.button-login span,
.enter .button.button-login span,
.enter-buttons button.button-login span,
.enter-buttons .button.button-login span {
  color: transparent;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: 40px;
  line-height: inherit;
  margin: 0;
  overflow: hidden;
  padding: 0 40px;
  position: relative;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.62, 0.36, 0.13, 0.92);
}
.enter button.button-login span em,
.enter .button.button-login span em,
.enter-buttons button.button-login span em,
.enter-buttons .button.button-login span em {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.62, 0.36, 0.13, 0.92);
}
.enter button.button-login span:last-child,
.enter .button.button-login span:last-child,
.enter-buttons button.button-login span:last-child,
.enter-buttons .button.button-login span:last-child {
  background: transparent;
  color: #fff;
}
.enter button.button-login span:last-child em,
.enter .button.button-login span:last-child em,
.enter-buttons button.button-login span:last-child em,
.enter-buttons .button.button-login span:last-child em {
  transform: translate(0, -200%);
}
.enter button.button-login:disabled, .enter button.button-login:disabled:hover,
.enter .button.button-login:disabled,
.enter .button.button-login:disabled:hover,
.enter-buttons button.button-login:disabled,
.enter-buttons button.button-login:disabled:hover,
.enter-buttons .button.button-login:disabled,
.enter-buttons .button.button-login:disabled:hover {
  border-color: #d2d2d2;
  cursor: default;
}
.enter button.button-login:disabled span,
.enter .button.button-login:disabled span,
.enter-buttons button.button-login:disabled span,
.enter-buttons .button.button-login:disabled span {
  background: #d2d2d2;
  color: #efefef;
}
.enter button.button-login:hover:not(:disabled) span,
.enter .button.button-login:hover:not(:disabled) span,
.enter-buttons button.button-login:hover:not(:disabled) span,
.enter-buttons .button.button-login:hover:not(:disabled) span {
  transform: translate(0, -100%);
}
.enter button.button-login:hover:not(:disabled) span:first-child em,
.enter .button.button-login:hover:not(:disabled) span:first-child em,
.enter-buttons button.button-login:hover:not(:disabled) span:first-child em,
.enter-buttons .button.button-login:hover:not(:disabled) span:first-child em {
  transform: translate(0, 200%);
}
.enter button.button-login:hover:not(:disabled) span:last-child em,
.enter .button.button-login:hover:not(:disabled) span:last-child em,
.enter-buttons button.button-login:hover:not(:disabled) span:last-child em,
.enter-buttons .button.button-login:hover:not(:disabled) span:last-child em {
  transform: translate(0, 0);
}
.enter button.button-sign-up,
.enter .button.button-sign-up,
.enter-buttons button.button-sign-up,
.enter-buttons .button.button-sign-up {
  background: none;
  border: 2px solid #fff;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  margin: 0;
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: border-color 0.2s ease-out, color 0.2s ease-out;
}
.enter button.button-sign-up span,
.enter .button.button-sign-up span,
.enter-buttons button.button-sign-up span,
.enter-buttons .button.button-sign-up span {
  color: #fff;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: 40px;
  line-height: inherit;
  margin: 0;
  overflow: hidden;
  padding: 0 40px;
  position: relative;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.62, 0.36, 0.13, 0.92);
}
.enter button.button-sign-up span em,
.enter .button.button-sign-up span em,
.enter-buttons button.button-sign-up span em,
.enter-buttons .button.button-sign-up span em {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.62, 0.36, 0.13, 0.92);
}
.enter button.button-sign-up span:last-child,
.enter .button.button-sign-up span:last-child,
.enter-buttons button.button-sign-up span:last-child,
.enter-buttons .button.button-sign-up span:last-child {
  background: #fff;
  color: #000;
}
.enter button.button-sign-up span:last-child em,
.enter .button.button-sign-up span:last-child em,
.enter-buttons button.button-sign-up span:last-child em,
.enter-buttons .button.button-sign-up span:last-child em {
  transform: translate(0, -200%);
}
.enter button.button-sign-up:disabled, .enter button.button-sign-up:disabled:hover,
.enter .button.button-sign-up:disabled,
.enter .button.button-sign-up:disabled:hover,
.enter-buttons button.button-sign-up:disabled,
.enter-buttons button.button-sign-up:disabled:hover,
.enter-buttons .button.button-sign-up:disabled,
.enter-buttons .button.button-sign-up:disabled:hover {
  border-color: #d2d2d2;
  cursor: default;
}
.enter button.button-sign-up:disabled span,
.enter .button.button-sign-up:disabled span,
.enter-buttons button.button-sign-up:disabled span,
.enter-buttons .button.button-sign-up:disabled span {
  background: #d2d2d2;
  color: #efefef;
}
.enter button.button-sign-up:hover:not(:disabled) span,
.enter .button.button-sign-up:hover:not(:disabled) span,
.enter-buttons button.button-sign-up:hover:not(:disabled) span,
.enter-buttons .button.button-sign-up:hover:not(:disabled) span {
  transform: translate(0, -100%);
}
.enter button.button-sign-up:hover:not(:disabled) span:first-child em,
.enter .button.button-sign-up:hover:not(:disabled) span:first-child em,
.enter-buttons button.button-sign-up:hover:not(:disabled) span:first-child em,
.enter-buttons .button.button-sign-up:hover:not(:disabled) span:first-child em {
  transform: translate(0, 200%);
}
.enter button.button-sign-up:hover:not(:disabled) span:last-child em,
.enter .button.button-sign-up:hover:not(:disabled) span:last-child em,
.enter-buttons button.button-sign-up:hover:not(:disabled) span:last-child em,
.enter-buttons .button.button-sign-up:hover:not(:disabled) span:last-child em {
  transform: translate(0, 0);
}
@media only screen and (max-width: 767px) {
  .enter,
  .enter-buttons {
    display: none;
  }
}

.client-list {
  margin-top: 10vw;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
@media only screen and (min-width: 425px) {
  .client-list {
    gap: 0.75rem;
    grid-template-columns: repeat(4, 1fr);
    width: 49vw;
  }
}
@media only screen and (min-width: 768px) {
  .client-list {
    width: 80vw;
  }
}
.client-list .client-list-item {
  background: #fff;
  padding-bottom: 74.2307692308%;
  position: relative;
}
.client-list .client-list-item:after {
  content: "";
  display: block;
  background: #333;
  height: 100%;
  left: 0;
  position: absolute;
  transform: scaleY(0);
  transition: transform 0.3s ease-out;
  transform-origin: 50% 0%;
  top: 0;
  width: 100%;
}
.client-list .client-list-item.--replace:after {
  transform: scaleY(1);
  transform-origin: 50% 100%;
}
.client-list .client-list-item svg {
  height: 65%;
  fill: #000;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  width: 55%;
  transform: translate(-50%, -50%);
}
.client-list .client-list-item svg.svg-icon-1und1 {
  width: 35%;
}
.client-list .client-list-item svg.svg-icon-x-bionic {
  width: 45%;
}
.client-list .client-list-item svg.svg-icon-interhome, .client-list .client-list-item svg.svg-icon-lih, .client-list .client-list-item svg.svg-icon-lpi {
  width: 70%;
}
.client-list .client-list-item svg.svg-icon-medicover, .client-list .client-list-item svg.svg-icon-razorfish {
  width: 60%;
}
.client-list .client-list-item svg.svg-icon-aecero {
  width: 70%;
}
@media only screen and (max-width: 374px) {
  .client-list .client-list-item:nth-child(7), .client-list .client-list-item:nth-child(8), .client-list .client-list-item:nth-child(9), .client-list .client-list-item:nth-child(10), .client-list .client-list-item:nth-child(11), .client-list .client-list-item:nth-child(12) {
    display: none;
  }
}

.cookie-notice {
  background-color: white;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  bottom: 5%;
  left: 50%;
  padding: 25px 40px;
  position: fixed;
  width: 80%;
  z-index: 20;
  transform: translate(-50%, 0);
}
.cookie-notice .cookies-headline {
  color: #001c62;
  position: absolute;
  top: 20px;
}
.cookie-notice .cookies-text {
  position: absolute;
  top: 42px;
}
.cookie-notice img {
  display: inline;
  padding-right: 10px;
  vertical-align: middle;
  width: 40px;
}
.cookie-notice button {
  border: 1px solid #001c62;
  float: right;
}
.cookie-notice button span {
  color: #001c62;
  background-color: white;
  padding-left: 20px;
  padding-right: 20px;
}
.cookie-notice button span:last-child {
  color: white;
  background-color: #001c62;
  padding-left: 20px;
  padding-right: 20px;
}

.easter-egg-entrance {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 15;
}
.easter-egg-entrance .eye {
  height: 32px;
  left: 50%;
  margin-left: -27px;
  margin-top: -16px;
  position: absolute;
  top: 50%;
  width: 54px;
  z-index: 15;
}
.easter-egg-entrance .eye .over {
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
  display: block;
  content: "";
  left: 0;
  position: absolute;
  height: 100%;
  top: 0;
  width: 100%;
  z-index: 5;
}
.easter-egg-entrance .eye .over:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
.easter-egg-entrance .dashed-line {
  border-left: 2px dashed #fff;
  height: 0;
  transition: height 1s;
  left: 50%;
  margin-left: -1px;
  position: absolute;
  top: 35px;
  width: 0px;
}
.easter-egg-entrance .dashed-line:after {
  background: transparent url(../img/start/arrow-mystery-v2.svg) no-repeat;
  bottom: 0px;
  content: "";
  opacity: 0;
  display: block;
  height: 12px;
  left: -7px;
  position: absolute;
  width: 12px;
  transition: opacity 1s;
}
.easter-egg-entrance .dashed-line.appear {
  height: 84px;
}
.easter-egg-entrance .dashed-line.appear:after {
  opacity: 1;
}
.easter-egg-entrance .hole {
  background: #000;
  border-radius: 50%;
  overflow: hidden;
  height: 110px;
  width: 110px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 1s;
  left: 50%;
  position: absolute;
  top: 50%;
  z-index: 5;
}
.easter-egg-entrance .hole.appear {
  transform: translate(-50%, -50%) scale(1);
}
.easter-egg-entrance .hole canvas {
  transform: scale(0.3);
  transition: transform 0 1s;
}
.easter-egg-entrance.dragging .hole canvas {
  transform: scale(1);
  transition: none;
}
.easter-egg-entrance .tip-here,
.easter-egg-entrance .tip-drag {
  font-weight: bold;
  color: #fff;
  display: flex;
  left: 10%;
  pointer-events: none;
  position: absolute;
  width: 80%;
  top: 50%;
}
.easter-egg-entrance .tip-here span,
.easter-egg-entrance .tip-drag span {
  opacity: 0;
  display: block;
  display: flex;
  flex: 1;
  text-align: center;
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}
.easter-egg-entrance .tip-here span:nth-child(2), .easter-egg-entrance .tip-here span:nth-child(3),
.easter-egg-entrance .tip-drag span:nth-child(2),
.easter-egg-entrance .tip-drag span:nth-child(3) {
  display: flex;
  flex: 4;
}
.easter-egg-entrance .tip-here span:nth-child(1),
.easter-egg-entrance .tip-drag span:nth-child(1) {
  transition-delay: 0.1s;
}
.easter-egg-entrance .tip-here span:nth-child(2),
.easter-egg-entrance .tip-drag span:nth-child(2) {
  transition-delay: 0.2s;
}
.easter-egg-entrance .tip-here span:nth-child(3),
.easter-egg-entrance .tip-drag span:nth-child(3) {
  transition-delay: 0.3s;
}
.easter-egg-entrance .tip-here span:nth-child(4),
.easter-egg-entrance .tip-drag span:nth-child(4) {
  transition-delay: 0.4s;
}
.easter-egg-entrance .tip-here span {
  transform: translate(0, -70px);
}
.easter-egg-entrance .tip-drag span {
  transform: translate(0, -270px);
}
.easter-egg-entrance .tip-drag.appear span {
  transform: translate(0, -170px);
  opacity: 1;
}
.easter-egg-entrance.eye-over .tip-drag span {
  transform: translate(0, -50px);
  opacity: 0;
}
.easter-egg-entrance.eye-over .tip-here span {
  transform: translate(0, 0px);
  opacity: 1;
}
.easter-egg-entrance.dragging .tip-drag span, .easter-egg-entrance.dragging .tip-here span {
  opacity: 0;
}

.enter-buttons .secret .button-login {
  color: #fff;
}
.enter-buttons .secret .button-login:hover {
  color: #fff;
}
.enter-buttons .secret .button-sign-up {
  background: transparent;
  border-color: #fff;
}
.enter-buttons .secret .button-sign-up span {
  background: transparent;
  color: #fff;
}
.enter-buttons .secret .button-sign-up span:last-child {
  background: #fff;
  color: #fff;
}
.enter-buttons .secret .button-sign-up:hover {
  border-color: #fff;
}
.enter-buttons .white .button-login {
  color: #fff;
}
.enter-buttons .white .button-login:hover {
  color: #fff;
}
.enter-buttons .white .button-sign-up {
  background: transparent;
  border-color: #fff;
}
.enter-buttons .white .button-sign-up span {
  background: transparent;
  color: #fff;
}
.enter-buttons .white .button-sign-up span:last-child {
  background: #fff;
  color: #000;
}
.enter-buttons .white .button-sign-up:hover {
  border-color: #fff;
}
.enter-buttons .white-blue .button-login {
  color: #fff;
}
.enter-buttons .white-blue .button-login:hover {
  color: var(--color-blue);
}
.enter-buttons .white-blue .button-sign-up {
  background: transparent;
  border-color: #fff;
}
.enter-buttons .white-blue .button-sign-up span {
  background: transparent;
  color: #fff;
}
.enter-buttons .white-blue .button-sign-up span:last-child {
  background: var(--color-blue);
  color: #000;
}
.enter-buttons .white-blue .button-sign-up:hover {
  border-color: var(--color-blue);
}
.enter-buttons .white-brightblue .button-login {
  color: #fff;
}
.enter-buttons .white-brightblue .button-login:hover {
  color: var(--color-bright-blue);
}
.enter-buttons .white-brightblue .button-sign-up {
  background: transparent;
  border-color: #fff;
}
.enter-buttons .white-brightblue .button-sign-up span {
  background: transparent;
  color: #fff;
}
.enter-buttons .white-brightblue .button-sign-up span:last-child {
  background: var(--color-bright-blue);
  color: #fff;
}
.enter-buttons .white-brightblue .button-sign-up:hover {
  border-color: var(--color-bright-blue);
}
.enter-buttons .white-red .button-login {
  color: #fff;
}
.enter-buttons .white-red .button-login:hover {
  color: var(--color-red);
}
.enter-buttons .white-red .button-sign-up {
  background: transparent;
  border-color: #fff;
}
.enter-buttons .white-red .button-sign-up span {
  background: transparent;
  color: #fff;
}
.enter-buttons .white-red .button-sign-up span:last-child {
  background: var(--color-red);
  color: #fff;
}
.enter-buttons .white-red .button-sign-up:hover {
  border-color: var(--color-red);
}
.enter-buttons .white-yellow .button-login {
  color: #fff;
}
.enter-buttons .white-yellow .button-login:hover {
  color: var(--color-yellow-alt);
}
.enter-buttons .white-yellow .button-sign-up {
  background: transparent;
  border-color: #fff;
}
.enter-buttons .white-yellow .button-sign-up span {
  background: transparent;
  color: #fff;
}
.enter-buttons .white-yellow .button-sign-up span:last-child {
  background: var(--color-yellow-alt);
  color: var(--color-dark-blue);
}
.enter-buttons .white-yellow .button-sign-up:hover {
  border-color: var(--color-yellow-alt);
}
.enter-buttons .blue .button-login {
  color: #000;
}
.enter-buttons .blue .button-login:hover {
  color: var(--color-bright-blue);
}
.enter-buttons .blue .button-sign-up {
  background: transparent;
  border-color: #000;
}
.enter-buttons .blue .button-sign-up span {
  background: transparent;
  color: #000;
}
.enter-buttons .blue .button-sign-up span:last-child {
  background: var(--color-bright-blue);
  color: #fff;
}
.enter-buttons .blue .button-sign-up:hover {
  border-color: var(--color-bright-blue);
}
.enter-buttons .red .button-login {
  color: #000;
}
.enter-buttons .red .button-login:hover {
  color: var(--color-red);
}
.enter-buttons .red .button-sign-up {
  background: transparent;
  border-color: #000;
}
.enter-buttons .red .button-sign-up span {
  background: transparent;
  color: #000;
}
.enter-buttons .red .button-sign-up span:last-child {
  background: var(--color-red);
  color: #fff;
}
.enter-buttons .red .button-sign-up:hover {
  border-color: var(--color-red);
}
.enter-buttons .yellow .button-login {
  color: #000;
}
.enter-buttons .yellow .button-login:hover {
  color: var(--color-yellow-alt);
}
.enter-buttons .yellow .button-sign-up {
  background: transparent;
  border-color: #000;
}
.enter-buttons .yellow .button-sign-up span {
  background: transparent;
  color: #000;
}
.enter-buttons .yellow .button-sign-up span:last-child {
  background: var(--color-yellow-alt);
  color: var(--color-dark-blue);
}
.enter-buttons .yellow .button-sign-up:hover {
  border-color: var(--color-yellow-alt);
}
.enter-buttons .brightblue .button-login {
  color: #000;
}
.enter-buttons .brightblue .button-login:hover {
  color: var(--color-bright-blue);
}
.enter-buttons .brightblue .button-sign-up {
  background: transparent;
  border-color: #000;
}
.enter-buttons .brightblue .button-sign-up span {
  background: transparent;
  color: #000;
}
.enter-buttons .brightblue .button-sign-up span:last-child {
  background: var(--color-bright-blue);
  color: #fff;
}
.enter-buttons .brightblue .button-sign-up:hover {
  border-color: var(--color-bright-blue);
}
.enter-buttons .yellow-white .button-login {
  color: var(--color-yellow);
}
.enter-buttons .yellow-white .button-login:hover {
  color: var(--color-yellow);
}
.enter-buttons .yellow-white .button-sign-up {
  background: transparent;
  border-color: var(--color-yellow);
}
.enter-buttons .yellow-white .button-sign-up span {
  background: transparent;
  color: var(--color-yellow);
}
.enter-buttons .yellow-white .button-sign-up span:last-child {
  background: var(--color-yellow);
  color: var(--color-dark-blue);
}
.enter-buttons .yellow-white .button-sign-up:hover {
  border-color: var(--color-yellow);
}
.enter-buttons .darkblue-white .button-login {
  color: var(--color-dark-blue);
}
.enter-buttons .darkblue-white .button-login:hover {
  color: var(--color-dark-blue);
}
.enter-buttons .darkblue-white .button-sign-up {
  background: transparent;
  border-color: var(--color-dark-blue);
}
.enter-buttons .darkblue-white .button-sign-up span {
  background: transparent;
  color: var(--color-dark-blue);
}
.enter-buttons .darkblue-white .button-sign-up span:last-child {
  background: var(--color-dark-blue);
  color: #fff;
}
.enter-buttons .darkblue-white .button-sign-up:hover {
  border-color: var(--color-dark-blue);
}
.enter-buttons .darkblue-red .button-login {
  color: var(--color-dark-blue);
}
.enter-buttons .darkblue-red .button-login:hover {
  color: var(--color-dark-blue);
}
.enter-buttons .darkblue-red .button-sign-up {
  background: transparent;
  border-color: var(--color-dark-blue);
}
.enter-buttons .darkblue-red .button-sign-up span {
  background: transparent;
  color: var(--color-dark-blue);
}
.enter-buttons .darkblue-red .button-sign-up span:last-child {
  background: var(--color-dark-blue);
  color: var(--color-red);
}
.enter-buttons .darkblue-red .button-sign-up:hover {
  border-color: var(--color-dark-blue);
}
.enter-buttons .darkblue-cyan .button-login {
  color: var(--color-dark-blue);
}
.enter-buttons .darkblue-cyan .button-login:hover {
  color: var(--color-cyan);
}
.enter-buttons .darkblue-cyan .button-sign-up {
  background: transparent;
  border-color: var(--color-dark-blue);
}
.enter-buttons .darkblue-cyan .button-sign-up span {
  background: transparent;
  color: var(--color-dark-blue);
}
.enter-buttons .darkblue-cyan .button-sign-up span:last-child {
  background: var(--color-cyan);
  color: #fff;
}
.enter-buttons .darkblue-cyan .button-sign-up:hover {
  border-color: var(--color-cyan);
}
.enter-buttons .darkblue-yellow .button-login {
  color: var(--color-dark-blue);
}
.enter-buttons .darkblue-yellow .button-login:hover {
  color: var(--color-yellow-alt);
}
.enter-buttons .darkblue-yellow .button-sign-up {
  background: transparent;
  border-color: var(--color-dark-blue);
}
.enter-buttons .darkblue-yellow .button-sign-up span {
  background: transparent;
  color: var(--color-dark-blue);
}
.enter-buttons .darkblue-yellow .button-sign-up span:last-child {
  background: var(--color-yellow-alt);
  color: var(--color-dark-blue);
}
.enter-buttons .darkblue-yellow .button-sign-up:hover {
  border-color: var(--color-yellow-alt);
}
.sign-up-page .enter-buttons, .nav-expanded .enter-buttons {
  display: none;
}
.sign-up-page .enter-buttons .button-login, .nav-expanded .enter-buttons .button-login {
  color: #fff;
}
.sign-up-page .enter-buttons .button-login:hover, .nav-expanded .enter-buttons .button-login:hover {
  color: #fff;
}
.sign-up-page .enter-buttons .button-sign-up, .nav-expanded .enter-buttons .button-sign-up {
  background: transparent;
  border-color: #fff;
}
.sign-up-page .enter-buttons .button-sign-up span, .nav-expanded .enter-buttons .button-sign-up span {
  background: transparent;
  color: #fff;
}
.sign-up-page .enter-buttons .button-sign-up span:last-child, .nav-expanded .enter-buttons .button-sign-up span:last-child {
  background: #fff;
  color: #000;
}
.sign-up-page .enter-buttons .button-sign-up:hover, .nav-expanded .enter-buttons .button-sign-up:hover {
  border-color: #fff;
}
.page-manifesto .enter-buttons .button-login {
  color: #fff;
}
.page-manifesto .enter-buttons .button-login:hover {
  color: var(--color-yellow-alt);
}
.page-manifesto .enter-buttons .button-sign-up {
  background: transparent;
  border-color: #fff;
}
.page-manifesto .enter-buttons .button-sign-up span {
  background: transparent;
  color: #fff;
}
.page-manifesto .enter-buttons .button-sign-up span:last-child {
  background: var(--color-yellow-alt);
  color: var(--color-dark-blue);
}
.page-manifesto .enter-buttons .button-sign-up:hover {
  border-color: var(--color-yellow-alt);
}
.page-product .enter-buttons .button-login {
  color: #000;
}
.page-product .enter-buttons .button-login:hover {
  color: var(--color-red);
}
.page-product .enter-buttons .button-sign-up {
  background: transparent;
  border-color: #000;
}
.page-product .enter-buttons .button-sign-up span {
  background: transparent;
  color: #000;
}
.page-product .enter-buttons .button-sign-up span:last-child {
  background: var(--color-red);
  color: #fff;
}
.page-product .enter-buttons .button-sign-up:hover {
  border-color: var(--color-red);
}
.page-jobs .enter-buttons .button-login {
  color: var(--color-dark-blue);
}
.page-jobs .enter-buttons .button-login:hover {
  color: var(--color-yellow-alt);
}
.page-jobs .enter-buttons .button-sign-up {
  background: transparent;
  border-color: var(--color-dark-blue);
}
.page-jobs .enter-buttons .button-sign-up span {
  background: transparent;
  color: var(--color-dark-blue);
}
.page-jobs .enter-buttons .button-sign-up span:last-child {
  background: var(--color-yellow-alt);
  color: var(--color-dark-blue);
}
.page-jobs .enter-buttons .button-sign-up:hover {
  border-color: var(--color-yellow-alt);
}
.page-legal .enter-buttons .button-login, .page-signup .enter-buttons .button-login {
  color: var(--color-dark-blue);
}
.page-legal .enter-buttons .button-login:hover, .page-signup .enter-buttons .button-login:hover {
  color: var(--color-cyan);
}
.page-legal .enter-buttons .button-sign-up, .page-signup .enter-buttons .button-sign-up {
  background: transparent;
  border-color: var(--color-dark-blue);
}
.page-legal .enter-buttons .button-sign-up span, .page-signup .enter-buttons .button-sign-up span {
  background: transparent;
  color: var(--color-dark-blue);
}
.page-legal .enter-buttons .button-sign-up span:last-child, .page-signup .enter-buttons .button-sign-up span:last-child {
  background: var(--color-cyan);
  color: #fff;
}
.page-legal .enter-buttons .button-sign-up:hover, .page-signup .enter-buttons .button-sign-up:hover {
  border-color: var(--color-cyan);
}

section.fold-cta {
  background-image: linear-gradient(-45deg, #00c286 0%, #04cfbc 50%);
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 70px;
  font-size: 4.375rem;
}
@media only screen and (min-width: 1440px) {
  section.fold-cta {
    font-size: 5.625rem;
  }
}
@media only screen and (max-width: 767px) {
  section.fold-cta {
    font-size: clamp(30px, 7.5vw, 54px);
    padding: 8rem 30px;
  }
}
section.fold-cta .hover-bg {
  content: "";
  height: 100%;
  display: block;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  transition: opacity 5s;
}
section.fold-cta.over .hover-bg {
  opacity: 1;
}
section.fold-cta .text {
  color: #ffffff;
  margin-bottom: 60px;
}
section.fold-cta .view-content {
  /*       max-width: 600px; */
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.fold-scroller-item {
  visibility: hidden;
  left: 0;
  position: absolute;
  top: 0;
}
.fold-scroller-item.visible {
  visibility: visible;
}
.nav-expanded .fold-scroller-item {
  display: none;
}
.nav-expanded .fold-scroller-item:first-child {
  display: block;
  visibility: visible;
}

.page-footer {
  background: #000;
  display: flex;
  flex-direction: row;
}
.page-footer .left {
  box-sizing: border-box;
  color: #fff;
  padding: 40px 60px;
  width: 67%;
}
.page-footer .left > nav {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.page-footer .left .item {
  display: block;
  flex: 1;
  margin-right: 50px;
  position: relative;
}
@media only screen and (max-width: 424px) {
  .page-footer .left .item {
    margin-right: 10px;
  }
}
.page-footer .left .item a {
  background: rgba(255, 255, 255, 0);
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.page-footer .left .item a:before, .page-footer .left .item a:after {
  content: "";
  display: block;
  left: 0;
  height: 0;
  border-top: 2px solid #4d4d4d;
  position: absolute;
  top: 29px;
  width: 100%;
}
.page-footer .left .item a:after {
  width: 0;
  transition: width 0.25s ease-out;
}
.view-start .page-footer .left .item.item[data-name=start] a:after, .view-manifesto .page-footer .left .item.item[data-name=manifesto] a:after, .view-use-cases .page-footer .left .item.item[data-name=use-cases] a:after, .view-product .page-footer .left .item.item[data-name=product] a:after, .view-sign-up .page-footer .left .item.item[data-name=sign-up] a:after, .page-footer .left .item.item:hover a:after {
  width: 100%;
}
.page-footer .left .item.item[data-name=start] a:after {
  border-color: var(--color-cyan);
}
.page-footer .left .item.item[data-name=manifesto] a:after {
  border-color: var(--color-yellow);
}
.page-footer .left .item.item[data-name=use-cases] a:after {
  border-color: var(--color-bright-blue);
}
.page-footer .left .item.item[data-name=product] a:after {
  border-color: var(--color-red);
}
.page-footer .left .item.item[data-name=sign-up] a:after {
  border-color: var(--color-cyan);
}
.page-footer .left .item h4 {
  font-weight: bold;
  margin-bottom: 12px;
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
}
.page-footer .left .item p {
  font-size: 14px;
  white-space: nowrap;
}
.page-footer header {
  display: flex;
}
.page-footer .footer {
  position: relative;
}
.page-footer .footer nav:first-child {
  padding: 20px 0;
}
.page-footer .footer nav:first-child li {
  display: block;
}
.page-footer .footer nav:first-child a {
  color: #fff;
  font-size: 0.875rem;
  text-decoration: none;
}
.page-footer .footer nav:first-child a:hover {
  color: var(--color-cyan);
}
@media only screen and (max-width: 374px) {
  .page-footer .footer nav:first-child {
    padding-bottom: 40px;
  }
}
.page-footer .footer nav:last-child {
  bottom: 20px;
  right: 40px;
  position: absolute;
}
.page-footer .footer nav:last-child .social-icons {
  display: flex;
}
.page-footer .footer nav:last-child .social-link {
  border-radius: 50%;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.page-footer .footer nav:last-child .social-icon {
  height: 18px;
  position: relative;
  width: 18px;
}
.page-footer .footer nav:last-child .social-icon * {
  fill: var(--color-cyan);
  transition: 0.35s fill;
}
.page-footer .footer nav:last-child li {
  align-items: center;
  border: 2px solid var(--color-cyan);
  border-radius: 50%;
  display: flex;
  height: 40px;
  justify-content: center;
  margin-left: 15px;
  position: relative;
  width: 40px;
}
.page-footer .footer nav:last-child li:before {
  background: var(--color-cyan);
  border: 1px solid var(--color-cyan);
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.2s all ease-out;
  width: 100%;
}
.page-footer .footer nav:last-child li:hover:before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.3);
}
.page-footer .footer nav:last-child li:hover .social-icon * {
  fill: var(--color-dark-blue);
}
.page-footer .logo {
  display: block;
  height: 32px;
  margin-right: 20px;
  position: relative;
  width: 110px;
}
.page-footer .logo svg, .page-footer .logo img {
  width: 100%;
}
.page-footer .logo path, .page-footer .logo polygon, .page-footer .logo rect {
  fill: #fff;
}
.page-footer .logo__svg {
  height: 32px;
  left: 0;
  overflow: hidden;
  transition: clip 0.35s ease-out 0.15s;
  position: absolute;
  top: 0;
  width: 110px;
}
.page-footer .logo__svg--initial {
  clip: rect(0, 110px, 32px, 0);
}
.page-footer .logo__svg--initial .beam {
  fill: var(--color-cyan);
}
.page-footer .logo__svg--mirror {
  clip: rect(32px, 110px, 32px, 0);
}
.page-footer .logo__svg--mirror .beam {
  fill: var(--color-yellow);
}
.page-footer .logo:hover .logo__svg {
  transition-delay: 0.025s;
}
.page-footer .logo:hover .logo__svg--initial {
  clip: rect(0, 110px, 0, 0);
}
.page-footer .logo:hover .logo__svg--mirror {
  clip: rect(0, 110px, 32px, 0);
}
.page-footer .logo:hover + .slogan__wrap .slogan {
  transition-delay: 0;
}
.page-footer .logo:hover + .slogan__wrap .slogan--mirror {
  clip: rect(0, 300px, 25px, 0);
}
.page-footer .logo:hover + .slogan__wrap .slogan--initial {
  clip: rect(0, 300px, 25px, 300px);
}
.page-footer .slogan {
  transition: clip 0.45s ease-out;
  left: 0;
  position: absolute;
  top: 0;
}
.page-footer .slogan__wrap {
  height: 25px;
  margin-top: 13px;
  position: relative;
  width: 300px;
}
.page-footer .slogan--initial {
  clip: rect(0, 300px, 25px, 0);
  color: var(--color-cyan);
}
.page-footer .slogan--mirror {
  clip: rect(0, 0, 25px, 0);
  color: var(--color-yellow);
}
.page-footer .right {
  box-sizing: border-box;
  background: var(--color-cyan);
  color: var(--color-dark-blue);
  padding: 40px;
  width: 33%;
}
.page-footer .right h3 {
  margin-top: 0;
  padding-top: 0;
}
.page-footer .right h3.appear {
  background-position: 0 0;
  transition-duration: 2.5s;
}
.page-footer .right a.button {
  margin-top: 55px;
  border-color: var(--color-dark-blue);
}
.page-footer .right a.button span {
  color: var(--color-dark-blue);
}
.page-footer .right a.button span:last-child {
  background: var(--color-dark-blue);
  color: #fff;
}

@media only screen and (max-width: 424px) {
  .page-footer {
    flex-direction: column-reverse;
    text-align: center;
  }
  .page-footer .left {
    background: var(--color-dark-blue);
    padding: 10px;
    width: 100%;
  }
  .page-footer .left header {
    display: none;
  }
  .page-footer .right {
    width: 100%;
  }
  .page-footer .right h3 {
    font-size: 6vw;
    margin-bottom: 1rem;
  }
  .page-footer .right a.button {
    margin-top: 20px;
  }
  .page-footer .footer nav:last-child {
    display: inline-block;
    margin: 0 auto;
    position: static;
  }
  .page-footer .footer nav:last-child li:first-child {
    margin-left: 0;
  }
}

.footer .copy {
  color: #999;
  font-size: 12px;
  margin-top: 15px;
}
.footer .copy a {
  color: #999;
  text-decoration: none;
}
.footer .copy a:hover {
  text-decoration: underline;
}
.footer .copy .triangle-left,
.footer .copy .triangle-right {
  animation: heart 2s steps(1) infinite;
  font-size: 10px;
}
.footer .copy .triangle-right {
  animation-delay: 0.25s;
}

@keyframes heart {
  0% {
    color: var(--color-cyan);
  }
  20% {
    color: var(--color-lightest-gray);
  }
  40% {
    color: var(--color-red);
  }
  60% {
    color: var(--color-yellow);
  }
  80% {
    color: var(--color-bright-blue);
  }
  100% {
    color: var(--color-red);
  }
}
.form {
  margin: 2.5rem auto;
}
.form, .form-group {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.form button {
  border-color: var(--color-dark-blue);
  color: var(--color-dark-blue);
  font: bold 0.875rem var(--font-avenir), Arial;
  padding: 0 40px;
}

.form-item {
  margin-bottom: 0.75rem;
  overflow: hidden;
  padding-top: 20px;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 425px) {
  .form-item {
    margin-bottom: 2.5rem;
    max-width: 250px;
    width: 47.5%;
  }
  .form-item:nth-child(2n+1) {
    margin-right: 5%;
  }
}
.form-item input {
  appearance: none;
  background: transparent;
  border: 0px none;
  border-bottom: 1px solid var(--color-dark-blue);
  border-radius: 0;
  box-sizing: border-box;
  color: var(--color-dark-blue);
  font-family: var(--font-avenir), Arial;
  font-size: 1rem;
  outline: none;
  padding-bottom: 10px;
}
.form-item label {
  color: #ddd;
  left: 0;
  overflow: hidden;
  padding-bottom: 8px;
  pointer-events: none;
  position: absolute;
  top: 20px;
  width: 100%;
  transition: top 0.2s, color 0.2s, font-size 0.2s;
}
.form-item label span {
  display: block;
  transform: translate(0, 110%);
  transition: transform 0.5s;
}
.form-item .subtext {
  color: #ccc;
  font-size: 0.625rem;
  opacity: 0;
  transition: opacity 0.5s 3s;
}
.form-item .mdl-textfield.is-focused label,
.form-item .mdl-textfield.is-dirty label {
  color: var(--color-cyan);
  font-size: 0.8125rem;
  top: 0px;
}
.form-item .mdl-textfield.is-focused input,
.form-item .mdl-textfield.is-dirty input {
  border-bottom-color: var(--color-cyan);
}

.frame-duration-overview {
  color: #fff;
  right: 0;
  font-size: 0.75rem;
  padding: 10px;
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 5000;
}

.frame-duration {
  color: #fff;
  left: 0;
  font-size: 0.75rem;
  padding: 10px;
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}
.frame-duration .controls {
  display: flex;
  justify-content: space-between;
}
.frame-duration .controls > div {
  cursor: pointer;
  padding: 3px 5px;
}
.frame-duration .controls > div:hover {
  background: black;
}

.frame-duration-item {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.frame-duration-item:last-child {
  border-bottom: 0px none;
}
.frame-duration-item > div {
  padding: 0 5px;
}

.giphy {
  cursor: default;
  display: inline-block;
}
.giphy.loaded {
  border-bottom: 1px dashed #000;
}
a.giphy {
  cursor: pointer;
}

.hideable {
  transition: opacity 0.5s;
}

.giphy-over .hideable, .giphy-over .giphy {
  transition: opacity 0.5s;
  opacity: 0.2;
}
.giphy-over .giphy:hover {
  color: #fff;
  opacity: 1;
}

.giphy-img {
  min-width: 250px;
  max-width: 360px;
  visibility: hidden;
  position: absolute;
}
.giphy-img.visible {
  visibility: visible;
}

.hero-section {
  height: 100vh;
  position: relative;
}

.inspirational-quote-form {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
}
.view-manifesto .send-beliefs .inspirational-quote-form h2 {
  box-sizing: border-box;
  font-weight: 400;
  max-width: 100%;
  overflow: hidden;
  line-height: 1.2;
  padding: 30px 0 0 30px;
  position: relative;
  text-align: left;
}
.inspirational-quote-form h2 span {
  display: block;
  transform: translate(0, 110%);
  transition: transform 0.25s;
}
.inspirational-quote-form:before {
  background: var(--color-dark-blue);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
  transition: width 0.5s ease-out;
  transform: translateZ(0);
}
.inspirational-quote-form .quote {
  background: #5bd8b7;
  overflow: hidden;
  width: 0%;
  position: relative;
  transition: width 0.5s 0.75s ease-out;
  transform: translateZ(0);
}
@media only screen and (min-width: 1024px) {
  .inspirational-quote-form .quote {
    height: 39%;
  }
}
@media only screen and (min-width: 1024px) {
  .inspirational-quote-form .quote {
    display: flex;
  }
  .inspirational-quote-form .quote .quote-hd {
    width: 39%;
  }
  .inspirational-quote-form .quote .quote-content {
    width: 61%;
  }
}
.inspirational-quote-form .quote .quote-hd {
  margin: 0 auto;
}
.inspirational-quote-form .quote .quote-content {
  opacity: 0;
  position: relative;
  transition: opacity 0.5s 2.8s;
}
.inspirational-quote-form .quote .quote-content .progress, .inspirational-quote-form .quote .quote-content .bar {
  background: rgba(255, 255, 255, 0.2);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.inspirational-quote-form .quote .quote-content .bar {
  width: 0%;
}
.inspirational-quote-form .quote .quote-content .image {
  background: rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  cursor: pointer;
  height: 150px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 150px;
  transform: translate(0, -50%);
  mix-blend-mode: multiply;
}
.inspirational-quote-form .quote .quote-content .image svg {
  display: none;
  height: 50%;
  opacity: 0.5;
  left: 50%;
  position: absolute;
  width: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.inspirational-quote-form .quote .quote-content .image.empty svg {
  display: block;
}
.inspirational-quote-form .quote .quote-content .image:hover {
  background: rgba(0, 0, 0, 0.2);
}
.inspirational-quote-form .quote .quote-content .image img {
  filter: saturate(0.2);
}
@media only screen and (max-width: 1023px) {
  .inspirational-quote-form .quote .quote-content .text {
    padding: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .inspirational-quote-form .quote .quote-content .text {
    box-sizing: border-box;
    padding-right: 50px;
    left: 100px;
    position: absolute;
    top: 50%;
    width: calc(100% - 100px);
    transform: translate(0, -50%);
  }
}
.inspirational-quote-form .quote .quote-content .char-counter {
  bottom: 10px;
  color: #fff;
  font-size: 0.8125rem;
  visibility: hidden;
  position: absolute;
  right: 10px;
}
.inspirational-quote-form .quote .quote-content .char-counter b {
  font-size: 2rem;
  margin-left: 5px;
}
.inspirational-quote-form .quote .quote-content .char-counter.visible {
  visibility: visible;
}
.inspirational-quote-form .quote textarea {
  background: none;
  border: 0px none;
  color: #fff;
  min-height: 110px;
  outline: none;
  resize: none;
  width: 100%;
  font-family: var(--font-avenir);
  font-size: 2.5rem;
}
.inspirational-quote-form .about-you {
  background: #fff;
  overflow: hidden;
  position: relative;
  width: 0%;
  z-index: 10;
  transform: translateZ(0);
  transition: width 0.65s 0.75s ease-out;
}
@media only screen and (min-width: 1024px) {
  .inspirational-quote-form .about-you {
    height: 61%;
  }
}
.view-manifesto .send-beliefs .inspirational-quote-form .about-you h2 {
  color: #5bd8b7;
}
.inspirational-quote-form .form-send {
  bottom: -130px;
  position: absolute;
  right: 30px;
  z-index: 20;
  transition: bottom 0.5s 3s;
}
.inspirational-quote-form .form-send button span:nth-child(1) {
  background: #5bd8b7;
}
.inspirational-quote-form .form-send button span:nth-child(2) {
  background: #17c5b5;
  color: #fff;
}
.inspirational-quote-form .form-item input {
  opacity: 0;
  width: 0%;
  transition: opacity 0.25s 2.3s, width 0.25s 2.3s;
}
.inspirational-quote-form.visible:before {
  width: 100%;
}
.inspirational-quote-form.visible .quote, .inspirational-quote-form.visible .about-you {
  width: 100%;
}
.inspirational-quote-form.visible h2 span {
  transform: translate(0, 0);
}
.inspirational-quote-form.visible .quote h2 span {
  transition-delay: 1.6s;
}
.inspirational-quote-form.visible .about-you h2 span {
  transition-delay: 1.8s;
}
.inspirational-quote-form.visible .quote-content {
  opacity: 1;
}
.inspirational-quote-form.visible .form-item input {
  opacity: 1;
  width: 100%;
}
.inspirational-quote-form.visible .form-item label span {
  transform: translate(0, 0);
}
.inspirational-quote-form.visible .form-item:nth-child(1) label span {
  transition-delay: 2.7s;
}
.inspirational-quote-form.visible .form-item:nth-child(2) label span {
  transition-delay: 2.8s;
}
.inspirational-quote-form.visible .form-item:nth-child(3) label span {
  transition-delay: 2.9s;
}
.inspirational-quote-form.visible .form-item:nth-child(4) label span {
  transition-delay: 3s;
}
.inspirational-quote-form.visible .subtext {
  opacity: 1;
}
.inspirational-quote-form.visible .form-send {
  bottom: 30px;
}

.loader {
  background: var(--color-yellow);
  bottom: 0;
  height: 100%;
  overflow: hidden;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: height 1s 0.75s ease-out;
}
.loader .loader-wrap {
  background: #fff;
  bottom: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
  height: 100%;
  width: 100%;
  transition: height 0.75s 0.25s ease-out;
}
.loader canvas {
  /*     bottom: 50%; */
  left: 50%;
  position: absolute;
  z-index: 10;
  /*     @include translate(-50%, 50%); */
}
.loader.hidden {
  height: 0;
}
.loader.hidden canvas {
  /*       opacity: 0; */
}
.loader.hidden .loader-wrap {
  height: 0%;
}

.mobile-layer {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  bottom: 0;
  position: fixed;
  left: 0;
  z-index: 200;
  background: #fff;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}
.mobile-layer button {
  background: white;
  border-color: var(--color-dark-blue);
}
.mobile-layer button span {
  background: white;
  color: var(--color-dark-blue);
}
.mobile-layer button span:last-child {
  background: var(--color-cyan);
  color: white;
}
.mobile-layer button:hover {
  border-color: var(--color-cyan);
}

.narrated-video {
  position: relative;
  width: 100%;
}
.narrated-video .yt-player-container {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}
.narrated-video .yt-player-container iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.narrated-video .narration {
  color: var(--color-dark-gray);
  font-size: 1.5rem;
  padding: 20px 0;
}
@media only screen and (max-width: 767px) {
  .narrated-video .narration {
    font-size: 1.875rem;
  }
}
.narrated-video .narration .narration-text {
  color: var(--color-blue);
  line-height: 1.6;
  padding: 20px 0;
  max-width: 700px;
}
.narrated-video .narration .narration-timestamp {
  display: none;
  padding: 0 20px;
}
.narrated-video .narration.show-timestamp .narration-timestamp {
  display: block;
}

.navigation {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 10;
  transition: visibility 0 1s;
}
.nav-expanded .navigation {
  visibility: visible;
  transition: none;
}
.navigation .navigation-main {
  display: block;
  left: 10%;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 20%;
  width: 80%;
  text-align: right;
  opacity: 0;
  transform: scale(1.5);
  transition: opacity 1s, transform 1s;
}
.nav-expanded .navigation .navigation-main {
  opacity: 1;
  transform: scale(1);
}
@media only screen and (max-width: 424px) {
  .navigation .navigation-main {
    display: flex;
    flex-direction: column;
    left: 50%;
    top: 10%;
    transform: translate(-50%, 0);
    text-align: left;
  }
}
.navigation .navigation-main li {
  display: block;
  margin: 0 3.5vw;
  position: relative;
}
.navigation .navigation-main li a {
  color: #fff;
  font-size: 4vw;
  font-size: clamp(1.5rem, 4vw, 4rem);
  font-weight: 700;
  opacity: 0.5;
  display: inline-block;
  height: 150px;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  text-transform: uppercase;
  transition: opacity 0.5s;
}
.navigation .navigation-main li a:after {
  background: #16c5b5;
  content: "";
  display: block;
  height: 5px;
  left: 0px;
  position: absolute;
  top: 80px;
  width: 0;
}
.navigation .navigation-main li a span {
  display: block;
  transition: transform 0.5s;
  transform: translate(0, -120%);
}
.nav-expanded .navigation .navigation-main li a span {
  transform: translate(0, 0%);
}
.navigation .navigation-main li[data-name=why] a:after {
  background: #fffe15;
}
.navigation .navigation-main li[data-name=who] a:after {
  background: #009fff;
}
.navigation .navigation-main li[data-name=how] a:after {
  background: #ff0156;
}
.navigation .navigation-main li[data-name=get] a:after {
  background: #00c5b4;
}
.nav-expanded .navigation .navigation-main li.current a {
  opacity: 1;
}
.nav-expanded .navigation .navigation-main li.current a:after {
  width: 50%;
  transition: width 0.1s 0.75s ease-in-out;
}
.nav-expanded .navigation .navigation-main li.current .name {
  opacity: 1;
}
.navigation .navigation-main li .name {
  color: #fff;
  font-size: 2.3vw;
  opacity: 0.5;
  overflow: hidden;
  white-space: nowrap;
  transition: opacity 0.5s;
}
@media only screen and (min-width: 425px) {
  .navigation .navigation-main li .name {
    transform-origin: 100% 100%;
    transform: rotate(-90deg);
    position: absolute;
    right: 0;
    top: 35px;
  }
}
.navigation .navigation-main li .name span {
  display: block;
  transition: transform 0.5s;
  transform: translate(0, -100%);
}
.nav-expanded .navigation .navigation-main li .name span {
  transform: translate(0, 0%);
}
.nav-expanded .navigation .navigation-main li:nth-child(1) a span {
  transition-delay: 0.15s;
}
.nav-expanded .navigation .navigation-main li:nth-child(1) .name span {
  transition-delay: 0.9s;
}
.nav-expanded .navigation .navigation-main li:nth-child(2) a span {
  transition-delay: 0.3s;
}
.nav-expanded .navigation .navigation-main li:nth-child(2) .name span {
  transition-delay: 1.05s;
}
.nav-expanded .navigation .navigation-main li:nth-child(3) a span {
  transition-delay: 0.45s;
}
.nav-expanded .navigation .navigation-main li:nth-child(3) .name span {
  transition-delay: 1.2s;
}
.nav-expanded .navigation .navigation-main li:nth-child(4) a span {
  transition-delay: 0.6s;
}
.nav-expanded .navigation .navigation-main li:nth-child(4) .name span {
  transition-delay: 1.35s;
}
.nav-expanded .navigation .navigation-main li:nth-child(5) a span {
  transition-delay: 0.75s;
}
.nav-expanded .navigation .navigation-main li:nth-child(5) .name span {
  transition-delay: 1.5s;
}
.navigation footer {
  bottom: 5%;
  color: #fff;
  left: 10%;
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s ease-out;
}
.navigation footer h3 {
  font-size: clamp(1.5rem, 4.5vw, 4.2rem);
  font-weight: bold;
}
.navigation footer a {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
}
.navigation footer .social {
  display: none;
}
.nav-expanded .navigation footer {
  opacity: 1;
  transition-delay: 0.2s;
}
.navigation .enter {
  display: none;
}
.navigation.mobile {
  background: #000;
  box-sizing: border-box;
  display: block;
  left: -100%;
  overflow-y: auto;
  z-index: 21;
  transition: all 0.75s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.nav-expanded .navigation.mobile {
  left: 0;
}
.navigation.mobile footer .main,
.navigation.mobile .navigation-main {
  left: auto;
  margin: 0 auto;
  transform: translate(0, 0);
  position: static;
  width: 55%;
}
@media only screen and (max-width: 374px) {
  .navigation.mobile footer .main,
  .navigation.mobile .navigation-main {
    padding-left: 1.75rem;
  }
}
@media only screen and (min-width: 375px) {
  .navigation.mobile footer .main,
  .navigation.mobile .navigation-main {
    width: 55%;
  }
}
.navigation.mobile .navigation-main {
  box-sizing: border-box;
  display: block;
  padding-top: 46px;
  text-align: left;
}
.navigation.mobile .navigation-main li {
  line-height: 1;
  margin: 0 0 1.25em;
  opacity: 0;
  width: 100%;
  transform: translateX(-30px);
  transition: transform 0.5s ease-out, opacity 0.35s ease;
}
.nav-expanded .navigation.mobile .navigation-main li:nth-child(1) {
  transition-delay: 0.65s;
}
.nav-expanded .navigation.mobile .navigation-main li:nth-child(2) {
  transition-delay: 0.8s;
}
.nav-expanded .navigation.mobile .navigation-main li:nth-child(3) {
  transition-delay: 0.95s;
}
.nav-expanded .navigation.mobile .navigation-main li:nth-child(4) {
  transition-delay: 1.1s;
}
.nav-expanded .navigation.mobile .navigation-main li:nth-child(5) {
  transition-delay: 1.25s;
}
.nav-expanded .navigation.mobile .navigation-main li {
  opacity: 1;
  transform: translateX(0);
}
.navigation.mobile .navigation-main li:last-of-type {
  margin-bottom: 0;
}
.navigation.mobile .navigation-main li a {
  font-size: 1.75rem;
  height: auto;
  opacity: 0.75;
  overflow: visible;
}
.navigation.mobile .navigation-main li a span {
  transform: translate(0, 0);
}
.navigation.mobile .navigation-main li a:after {
  background-color: var(--color-gray);
  height: 2px;
  margin: 8px 0 10px;
  position: static;
  width: 50%;
}
@media only screen and (max-width: 374px) {
  .navigation.mobile .navigation-main li a:after {
    margin: 5px 0 7px;
  }
}
.navigation.mobile .navigation-main li .name {
  font-size: 0.875rem;
  opacity: 0.75;
  overflow: visible;
  position: static;
  transform: rotate(0);
}
.navigation.mobile .navigation-main li .name span {
  transform: translate(0, 0);
}
@media only screen and (max-width: 374px) {
  .navigation.mobile .navigation-main li .name {
    font-size: 0.75rem;
  }
}
.navigation.mobile .navigation-main li.current a {
  opacity: 1;
}
.navigation.mobile .navigation-main li.current a:after {
  background-color: var(--color-cyan);
}
.navigation.mobile .navigation-main li.current .name {
  opacity: 1;
}
@media only screen and (min-width: 320px) {
  .navigation.mobile .navigation-main {
    min-height: calc(100vh - 118px);
  }
  .navigation.mobile .navigation-main li {
    margin-bottom: 1.5rem;
  }
  .navigation.mobile .navigation-main li a {
    font-size: 1.375rem;
  }
}
@media only screen and (min-width: 375px) {
  .navigation.mobile .navigation-main {
    min-height: calc(100vh - 154px);
    padding-top: 60px;
  }
}
@media only screen and (min-width: 425px) {
  .navigation.mobile .navigation-main {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    padding-top: 80px;
  }
  .navigation.mobile .navigation-main li {
    margin-bottom: 2rem;
  }
  .navigation.mobile .navigation-main li a {
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 768px) {
  .navigation.mobile .navigation-main li {
    margin-bottom: 3rem;
  }
  .navigation.mobile .navigation-main li a {
    font-size: 2.25rem;
  }
  .navigation.mobile .navigation-main li a:after {
    margin: 11px 0 13px;
  }
  .navigation.mobile .navigation-main li .name {
    font-size: 1rem;
  }
}
.navigation.mobile footer {
  bottom: 0;
  left: 0;
  margin-top: 30px;
  position: static;
}
@media only screen and (min-width: 375px) {
  .navigation.mobile footer {
    margin-top: 48px;
  }
}
.navigation.mobile footer .main {
  box-sizing: border-box;
}
.navigation.mobile footer .main li {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.5s ease-out, opacity 0.35s ease;
}
.nav-expanded .navigation.mobile footer .main li {
  opacity: 1;
  transform: translateY(0);
}
.nav-expanded .navigation.mobile footer .main li:nth-child(1) {
  transition-delay: 1.45s;
}
.nav-expanded .navigation.mobile footer .main li:nth-child(2) {
  transition-delay: 2.15s;
}
.navigation.mobile footer .main li a {
  display: block;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.5rem 0;
}
@media only screen and (min-width: 375px) {
  .navigation.mobile footer .main li a {
    font-size: 0.8125rem;
  }
}
@media only screen and (min-width: 425px) {
  .navigation.mobile footer .main li a {
    font-size: 0.875rem;
  }
}
.navigation.mobile .enter {
  background: var(--color-cyan);
  box-sizing: border-box;
  color: var(--color-dark-blue);
  display: flex;
  justify-content: center;
  margin-top: 15px;
  padding: 20px 15px;
  width: 100%;
}
@media only screen and (min-width: 375px) {
  .navigation.mobile .enter {
    padding: 30px;
  }
}
@media only screen and (min-width: 425px) {
  .navigation.mobile .enter {
    margin-top: 25px;
  }
}
.navigation.mobile .enter button.button-login {
  color: var(--color-dark-blue);
}
.navigation.mobile .enter button.button-sign-up {
  background-color: var(--color-dark-blue);
  border-color: var(--color-dark-blue);
  color: #fff;
  display: block !important;
  margin-left: 10px;
  background: var(--color-dark-blue);
  border-color: var(--color-dark-blue);
}
.navigation.mobile .enter button.button-sign-up span {
  background: var(--color-dark-blue);
  color: #fff;
}
.navigation.mobile .enter button.button-sign-up span:last-child {
  background: var(--color-dark-blue);
  color: #fff;
}
.navigation.mobile .enter button.button-sign-up:hover {
  border-color: var(--color-dark-blue);
}
.navigation.mobile .enter button.button-sign-up:hover span {
  top: 0;
}
@media only screen and (min-width: 425px) {
  .navigation.mobile footer,
  .navigation.mobile .navigation-main {
    text-align: center;
  }
  .navigation.mobile .navigation-main li a:after {
    margin-left: auto;
    margin-right: auto;
  }
}

.play-button {
  bottom: 10%;
  border-radius: 50%;
  cursor: pointer;
  height: 100px;
  position: absolute;
  right: 10%;
  width: 100px;
  z-index: 10;
}
@media only screen and (max-width: 424px) {
  .play-button {
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
  }
}
.play-button label {
  bottom: -35px;
  color: var(--color-yellow);
  cursor: pointer;
  font-weight: bold;
  left: 50%;
  overflow: hidden;
  position: absolute;
  transform: translate(-50%, 0);
  white-space: nowrap;
}
.play-button label span {
  display: block;
  transition: transform 0.5s;
}
.play-button label span:nth-child(1) {
  clip-path: inset(0 0 0 0);
}
.play-button label span:nth-child(2) {
  color: var(--color-dark-blue);
  clip-path: inset(0 100% 0 0);
  left: 0;
  position: absolute;
  top: 0;
}
.play-button svg.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.play-button svg.icon rect, .play-button svg.icon polygon {
  fill: var(--color-yellow);
}
.play-button svg.icon rect {
  visibility: hidden;
}
.play-button .video-playing svg.icon polygon {
  visibility: hidden;
}
.play-button .video-playing svg.icon rect {
  visibility: visible;
}
.play-button svg.circle {
  transition: transform 0.35s;
}
.play-button:hover svg.circle {
  transform: scale(4);
}
.play-button svg.circle circle {
  fill: transparent;
  stroke-width: 8px;
  transition: stroke-dashoffset 1s;
}
.play-button svg.circle circle.yellow {
  stroke: var(--color-yellow);
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}
.play-button svg.circle circle.white, .play-button svg.circle circle.yellow2 {
  stroke: var(--color-dark-blue);
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.play-button svg.circle circle.yellow2 {
  transition: stroke-dashoffset 1s 0.5s;
  stroke: var(--color-yellow);
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.play-button:hover svg circle {
  /*         &:nth-child(2) {
        animation: 1s 1s infinite circle-anim;
      }

      &:nth-child(3) {
        animation: 1s 2s infinite circle-anim;
      } */
}
.play-button:hover svg circle:nth-child(1) {
  animation: 5s 1s infinite circle-anim ease-in;
}

.video-playing svg.icon polygon {
  visibility: hidden;
}
.video-playing svg.icon rect {
  visibility: visible;
}

.video-playing.mouse-not-moved .play-button svg circle.yellow {
  stroke-dashoffset: -1000;
}
.video-playing.mouse-not-moved .play-button .icon {
  display: none;
}
.video-playing.mouse-not-moved .play-button span {
  transform: translate(0, 100%);
}

.scroll-sequence:before, .scroll-sequence:after {
  background: var(--color-cyan);
  content: "";
  display: block;
  height: 101%;
  left: 0;
  position: absolute;
  top: -1px;
  width: 100%;
  transition: height 0.5s 0.5s;
}
.scroll-sequence:after {
  animation: loading-sequence 4s infinite;
  background: var(--color-yellow);
  transition: height 1s;
}
.scroll-sequence.loaded.visible:before, .scroll-sequence.loaded.visible:after {
  animation: none;
  height: 0;
}

@keyframes loading-sequence {
  0% {
    background: var(--color-yellow);
  }
  50% {
    background: var(--color-cyan);
  }
  100% {
    background: var(--color-yellow);
  }
}
.section-header {
  padding-top: 1.875rem;
  position: relative;
}
@media only screen and (max-width: 374px) {
  .section-header .text {
    display: inline;
  }
}
@media only screen and (min-width: 768px) {
  .section-header {
    padding-bottom: 1.5625rem;
    padding-top: 3.75rem;
  }
}
.section-header .rect {
  background: #999;
  display: inline-block;
  height: 4px;
  left: 100%;
  margin-left: -80px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0px;
  transition: width 0.35s 0.15s ease-in-out, margin-left 0.35s 0.15s ease-in-out;
}
@media only screen and (max-width: 374px) {
  .section-header .rect {
    height: 3px;
    width: 80px !important;
  }
}
.section-header h1, .section-header h2 {
  line-height: 1.2;
  text-align: left;
}
@media only screen and (max-width: 374px) {
  .section-header h1, .section-header h2 {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    line-height: 1.05;
  }
}
.section-header h1 {
  font-weight: 400;
  display: inline-block;
  position: relative;
  padding-right: 100px;
  overflow: hidden;
}
.section-header h2 {
  display: block !important;
  font-weight: 700;
  overflow: hidden;
}
@media only screen and (max-width: 374px) {
  .section-header h2 {
    max-width: 500px;
  }
}
.animated .section-header span {
  display: inline-block;
  position: relative;
}
.animated .section-header .appear-text-down span {
  transition: transform 0.35s ease-out;
}
@media only screen and (min-width: 768px) {
  .animated .section-header .appear-text-down span {
    transform: translate(0px, 110%);
  }
}
@media only screen and (min-width: 768px) {
  .animated .section-header .appear-text-down.appear > span {
    transform: translate(0, 0);
  }
}
.section-header h2 span {
  transition: transform 0.4s 0.25s ease-out;
}
.section-header.appear span {
  transform: translate(0px, 0px);
}
.nav-expanded .section-header.appear span {
  transform: translate(0px, 100%);
  transition: transform 0.5s 0s, opacity 0.5s;
}
.section-header.appear .rect {
  width: 80px;
}
.section-header.release span {
  transition: none;
}
.section-header.release h1, .section-header.release h2, .section-header.release .text {
  overflow: visible;
}
.section-header.release .rect {
  margin-left: 0;
  width: 0px;
}

.sign-up-background-animation {
  width: 100%;
  height: 100%;
}

.line-container {
  left: 0;
  min-height: 100%;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.line-container .line {
  height: 80vh;
  min-width: 250px;
  position: absolute;
  width: 24vw;
}
.line-container .line.cyan {
  background: var(--color-cyan);
}
.line-container .line.yellow {
  background: var(--color-yellow);
}
.line-container .line.line-1 {
  transform: skew(-35deg) translate(-75%, -90%);
  transition: transform 0.8s ease-out;
}
.line-container .line.line-1.state-1 {
  transform: skew(-35deg) translate(-75%, -100%);
}
.line-container .line.line-1.state-2 {
  transform: skew(-35deg) translate(-75%, -90%);
}
.line-container .line.line-2 {
  transform: skew(-35deg) translate(-15%, -85%);
  transition: transform 0.8s ease-out;
}
.line-container .line.line-2.state-1 {
  transition-delay: 0.2s;
  transform: skew(-35deg) translate(-15%, -100%);
}
.line-container .line.line-2.state-2 {
  transition-delay: 0.2s;
  transform: skew(-35deg) translate(-15%, -85%);
}
.line-container .line.line-3 {
  transform: skew(-35deg) translate(190%, 32%);
  transition: transform 1.2s ease-out;
}
.line-container .line.line-3.state-1 {
  transform: skew(-35deg) translate(190%, -100%);
}
.line-container .line.line-3.state-2 {
  transform: skew(-35deg) translate(190%, 32%);
}
.line-container .line.line-4 {
  transform: skew(-35deg) translate(190%, -68%);
  transition: transform 0.8s;
}
.line-container .line.line-4.state-1 {
  transform: skew(-35deg) translate(190%, -100%);
}
.line-container .line.line-4.state-2 {
  transform: skew(-35deg) translate(190%, -68%);
}
.line-container .line.line-6 {
  transform: skew(-35deg) translate(-50%, 100%);
  transition: transform 1.3s;
}
.line-container .line.line-6.state-1 {
  transform: skew(-35deg) translate(-50%, 0%);
}
.line-container .line.line-6.state-2 {
  transform: skew(-35deg) translate(-50%, 100%);
}
.line-container .line.line-7 {
  transform: skew(-35deg) translate(360%, 150%);
  transition: transform 0.8s;
}
.line-container .line.line-7.state-1 {
  transform: skew(-35deg) translate(360%, 110%);
}
.line-container .line.line-7.state-2 {
  transform: skew(-35deg) translate(360%, 150%);
}
.line-container .line.line-8 {
  transform: skew(-35deg) translate(335%, 150%);
  transition: transform 1.2s;
}
.line-container .line.line-8.state-1 {
  transform: skew(-35deg) translate(335%, 115%);
}
.line-container .line.line-8.state-2 {
  transform: skew(-35deg) translate(335%, 150%);
}

.use-case-header-link {
  display: block;
}

.use-case-header {
  background: var(--color-dark-blue);
}
.appearing .use-case-header {
  transition: background 0.5s 1.5s;
}
.use-case-header .use-case-video {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}
.use-case-header .use-case-item {
  cursor: pointer;
  filter: saturate(0.8);
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transition: filter 0.5s, width 0.5s ease-in-out, height 0.5s ease-in-out, left 0.5s ease-in-out, top 0.5s ease-in-out;
  width: 33.3333333333%;
}
.use-case-header .use-case-item.selected {
  transition: filter 0.5s, width 0.5s 0.65s ease-in-out, height 0.5s 0.65s ease-in-out, left 0.5s 0.65s ease-in-out, top 0.5s 0.65s ease-in-out;
}
.use-case-header .use-case-item:hover {
  filter: saturate(1);
}
.use-case-header .use-case-item .use-case-link {
  height: 60%;
  left: 0;
  width: 100%;
  position: absolute;
  top: 0;
}
.use-case-header .use-case-item.use-case-leah .use-case-container .image {
  background-image: url(https://storage.googleapis.com/daesk-campaign/stories/overview/leah.jpg);
  background-position: center 20%;
}
.use-case-header .use-case-item.use-case-matt {
  left: 33.3333333333%;
}
.use-case-header .use-case-item.use-case-matt .use-case-container .image {
  background-image: url(https://storage.googleapis.com/daesk-campaign/stories/overview/matt.jpg);
  background-position: 40% 30%;
}
.use-case-header .use-case-item.use-case-lynette {
  left: 66.6666666667%;
}
.use-case-header .use-case-item.use-case-lynette .use-case-container .image {
  background-position: 45% center;
  background-image: url(https://storage.googleapis.com/daesk-campaign/stories/overview/lynette.jpg);
}
.use-case-header.video-playing .character-info span {
  transform: translate(0, 110%);
}
.use-case-header.use-case-selected .use-case-container .image {
  height: 100%;
  transition: background-position 0.5s 0.75s;
  width: 100%;
}
.use-case-header .use-case-container {
  bottom: 0;
  height: 100%;
  overflow: hidden;
  left: 0;
  position: absolute;
  width: 100%;
  transition: height 0.75s, width 0.75s;
}
.hidden .use-case-header .use-case-container {
  height: 10px !important;
  transition: none;
}
.use-case-header .use-case-container .image {
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  left: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: background-position 0.5s;
}
.use-case-header .use-case-container .image video {
  visibility: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.use-case-header .use-case-container .image .video-loaded video {
  visibility: visible;
}
.use-case-header .use-case-container:after {
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  transition: background 1.5s;
}
.use-case-header .use-case-container:hover:after {
  background: rgba(0, 0, 0, 0.1);
}
.use-case-header.transition-back .use-case-container {
  transition: height 0.75s 0.75s, width 0.75s 0.75s;
}
.use-case-header.use-case-hover-lynette .use-case-lynette .use-case-container {
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 374px) {
  .use-case-header.use-case-hover-lynette .use-case-lynette .use-case-container {
    height: auto;
    width: 100%;
  }
}
.use-case-header.use-case-hover-lynette .use-case-matt .use-case-container {
  height: 75%;
  width: 100%;
}
@media only screen and (max-width: 374px) {
  .use-case-header.use-case-hover-lynette .use-case-matt .use-case-container {
    height: auto;
    width: 75%;
  }
}
.use-case-header.use-case-hover-lynette .use-case-leah .use-case-container {
  height: 90%;
  width: 100%;
}
@media only screen and (max-width: 374px) {
  .use-case-header.use-case-hover-lynette .use-case-leah .use-case-container {
    height: auto;
    width: 90%;
  }
}
.use-case-header.use-case-hover-matt .use-case-lynette .use-case-container {
  height: 80%;
  width: 100%;
}
@media only screen and (max-width: 374px) {
  .use-case-header.use-case-hover-matt .use-case-lynette .use-case-container {
    height: auto;
    width: 80%;
  }
}
.use-case-header.use-case-hover-matt .use-case-matt .use-case-container {
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 374px) {
  .use-case-header.use-case-hover-matt .use-case-matt .use-case-container {
    height: auto;
    width: 100%;
  }
}
.use-case-header.use-case-hover-matt .use-case-leah .use-case-container {
  height: 70%;
  width: 100%;
}
@media only screen and (max-width: 374px) {
  .use-case-header.use-case-hover-matt .use-case-leah .use-case-container {
    height: auto;
    width: 70%;
  }
}
.use-case-header.use-case-hover-leah .use-case-lynette .use-case-container {
  height: 90%;
  width: 100%;
}
@media only screen and (max-width: 374px) {
  .use-case-header.use-case-hover-leah .use-case-lynette .use-case-container {
    height: auto;
    width: 90%;
  }
}
.use-case-header.use-case-hover-leah .use-case-matt .use-case-container {
  height: 80%;
  width: 100%;
}
@media only screen and (max-width: 374px) {
  .use-case-header.use-case-hover-leah .use-case-matt .use-case-container {
    height: auto;
    width: 80%;
  }
}
.use-case-header.use-case-hover-leah .use-case-leah .use-case-container {
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 374px) {
  .use-case-header.use-case-hover-leah .use-case-leah .use-case-container {
    height: auto;
    width: 100%;
  }
}
.use-case-header.use-case-selected .use-case-item .use-case-container {
  height: 0%;
}
.use-case-header .use-case-item.selected {
  cursor: default;
  filter: none;
  left: 0;
  top: auto;
  width: 100%;
  z-index: 5;
}
.use-case-header .use-case-item.selected .use-case-container {
  height: 100%;
  width: 100%;
}
.use-case-header .use-case-item.selected .use-case-container .image {
  background-position: center;
}
.use-case-header .use-case-item.selected .use-case-container:after {
  display: none;
}
.use-case-header.use-case-mobile {
  box-sizing: border-box;
  height: 100vh;
  height: calc(100vh - 71px);
  margin-top: 71px;
}
.use-case-header.use-case-mobile:before {
  background: var(--color-dark-blue);
  content: "";
  height: 71px;
  left: 0;
  position: absolute;
  right: 0;
  top: -71px;
}
.use-case-header.use-case-mobile.use-case-selected {
  height: 100vh;
  margin-top: 0;
}
.use-case-header.use-case-mobile.use-case-selected:before {
  content: none;
}
.mobile .use-case-header.use-case-mobile {
  padding: 0;
}
.use-case-header.use-case-mobile .use-case-item {
  height: 33.3333333333%;
  position: absolute;
  width: 100%;
}
.use-case-header.use-case-mobile .use-case-item.use-case-matt {
  left: 0;
  top: 33.3333333333%;
}
.use-case-header.use-case-mobile .use-case-item.use-case-lynette {
  left: 0;
  top: 66.6666666667%;
}
.use-case-header.use-case-mobile .use-case-item.selected {
  height: 100%;
  top: 0;
}
.use-case-header.use-case-mobile .use-case-container .image {
  max-height: 100%;
  width: 100vw;
}

.view-start .view-content {
  position: relative;
  z-index: 2;
  overflow: visible;
}
.view-start .view-content .button-wrap {
  padding: 30px 0;
  pointer-events: all;
  transform: translateY(10px);
}
.view-start .view-content .button-wrap.appear {
  transform: translateY(0px);
}
@media only screen and (max-width: 424px) {
  .view-start .view-content .button-wrap {
    text-align: center;
  }
}
.nav-expanded .view-start .view-content .button-wrap {
  opacity: 0;
}
.view-start .main-content {
  box-sizing: border-box;
  font-size: 24px;
  font-size: 1.5rem;
}
@media only screen and (max-width: 1023px) {
  .view-start .main-content h2 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media only screen and (min-width: 1440px) {
  .view-start .main-content h2 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media only screen and (min-width: 2560px) {
  .view-start .main-content {
    max-width: 1280px;
  }
  .view-start .main-content h2 {
    font-size: 48px;
    font-size: 3rem;
  }
}
@media only screen and (min-width: 2560px) {
  .view-start .main-content-wide {
    font-size: 36px;
    font-size: 2.25rem;
    max-width: 80%;
  }
  .view-start .main-content-wide h2 {
    font-size: 2.4vw;
  }
}
.view-start h1, .view-start h2 {
  cursor: default;
  pointer-events: none;
}
.view-start .start-logo {
  height: 30vw;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 30vw;
}
@media only screen and (max-width: 767px) {
  .view-start .start-logo {
    height: 45vw;
    width: 45vw;
  }
}
.view-start h2 {
  font-size: clamp(28px, 7.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  transition: opacity 0.5s;
}
@media only screen and (min-width: 425px) {
  .view-start h2 {
    font-size: clamp(24px, 6.5vw, 78px);
  }
  .view-start h2 div.appear-effect {
    margin-bottom: -10px;
  }
}
.view-start p {
  transition: transform 1s ease-in-out;
}
.view-start .intro {
  background: #fff;
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 100;
}
.view-start .intro .video {
  left: 0;
  position: absolute;
  height: 100%;
  top: 0;
  width: 100%;
}
.view-start .intro video {
  mix-blend-mode: multiply;
  right: 50%;
  position: absolute;
  height: 100%;
  top: 50%;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  z-index: 1000;
  transform: translate(50%, -50%);
}
.edge .view-start .intro video, .ie .view-start .intro video {
  mix-blend-mode: normal;
  z-index: 1;
  position: static;
  right: auto;
  top: auto;
  transform: none;
}
.view-start .intro .view-content {
  bottom: 10vw;
  left: 10vw;
  width: 80vw;
  color: var(--color-dark-blue);
  position: absolute;
}
@media only screen and (max-width: 1023px) {
  .view-start .intro .view-content {
    top: 10vw;
    display: flex;
    flex-direction: column;
    bottom: 10vw;
    left: 5vw;
    width: 90vw;
  }
  .view-start .intro .view-content h1 {
    font-size: 19vw;
  }
  .view-start .intro .view-content .facts {
    display: flex;
    flex: 1;
    flex-direction: column;
  }
  .view-start .intro .view-content .facts .fact:first-child {
    flex: 1;
    text-align: right;
  }
}
.view-start .intro .button {
  background: var(--color-dark-blue);
  border-color: var(--color-dark-blue);
}
.view-start .intro .button span {
  background: var(--color-dark-blue);
  color: #fff;
}
.view-start .intro .button span:last-child {
  background: var(--color-cyan);
  color: #fff;
}
.view-start .intro .button:hover {
  border-color: var(--color-cyan);
}
.view-start .intro .facts {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  padding-top: 0.5rem;
}
.view-start .intro h1 {
  border-bottom: 2px solid var(--color-dark-blue);
  font-size: clamp(36px, 9.5vw, 140px);
  font-weight: bold;
  font-family: var(--font-headline);
  line-height: 0.9;
  margin-bottom: 0;
  max-width: 100%;
  margin-bottom: 3.125rem;
  margin-bottom: 0;
  transition: opacity 0.5s;
}
@media only screen and (min-width: 1440px) {
  .view-start .intro h1 {
    max-width: 65%;
  }
}
.nav-expanded .view-start .intro h1 {
  opacity: 0.4;
}
.view-start .intro .button-wrap {
  margin-bottom: 0;
  margin-top: 1.875rem;
  padding-bottom: 0;
}
.view-start .intro .mountain-patch {
  bottom: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  transition: opacity 3s ease-in;
}
.view-start .intro .mountain-patch.visible {
  opacity: 1;
}

@media only screen and (min-width: 1024px) {
  .section-benefits {
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}
.section-benefits article {
  color: #fff;
  flex: 1;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .section-benefits article {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .section-benefits article {
    padding: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-benefits article svg {
    display: none;
  }
}
.section-benefits article h2 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  margin: 0;
}
.section-benefits article h3 {
  font-size: 44px;
  font-size: 2.75rem;
  line-height: 1.2;
  margin-top: 0;
  padding-top: 0;
}
@media only screen and (min-width: 2560px) {
  .section-benefits article h2, .section-benefits article h3, .section-benefits article p {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }
}
.section-benefits article svg {
  overflow: visible;
  position: absolute;
  right: -10%;
  top: 22.5vw;
  width: 35vw;
}
@media only screen and (min-width: 1024px) {
  .section-benefits article svg {
    transform: translate(-50%, 0);
    height: 15vw;
    left: 50%;
    right: auto;
    top: 0;
    width: 100%;
  }
}
.section-benefits article .bg {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform-origin: 50% 100%;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .section-benefits article .bg {
    transform: none !important;
    top: 0 !important;
  }
}
.section-benefits article .article-content {
  position: relative;
}
.section-benefits article.red {
  padding-top: 15vw;
}
@media only screen and (min-width: 1024px) {
  .section-benefits article.red {
    padding-top: 10vh;
  }
}
.section-benefits article.red svg {
  transform: translate(-50%, -125%);
}
@media only screen and (max-width: 1023px) {
  .section-benefits article.red svg {
    top: 15vw;
  }
}
.section-benefits article.red .bg {
  background-color: #ee3658;
}
.section-benefits article.green {
  padding-top: 15vw;
}
.section-benefits article.green svg {
  transform: translate(-50%, -100%);
}
.section-benefits article.green .bg {
  background-color: #16c5b4;
}
.section-benefits article.yellow {
  color: var(--color-dark-blue);
  padding-top: 15vw;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .section-benefits article.yellow {
    overflow: hidden;
    padding-top: 17vw;
  }
}
.section-benefits article.yellow svg {
  transform: translate(-50%, -100%);
}
.section-benefits article.yellow .bg {
  background: #fff616;
}
@media only screen and (min-width: 1024px) {
  .section-benefits article.yellow .bg {
    top: 9vw;
  }
}
.section-benefits .track-icon0 {
  fill: #16C6B4;
}
.section-benefits .track-icon1 {
  fill: #FFF615;
}
.section-benefits .track-icon2 {
  fill: none;
  stroke: #001C61;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}
.section-benefits .track-icon3 {
  fill: #001C61;
}
.section-benefits .track-circle0,
.section-benefits .track-circle1,
.section-benefits .track-circle2 {
  transform-origin: 50% 50%;
}
.section-benefits .visualize-icon0 {
  fill: #FFF615;
}
.section-benefits .visualize-icon1 {
  fill: none;
  stroke: #001C62;
  stroke-width: 8.705;
  stroke-miterlimit: 10;
}
.section-benefits .visualize-icon2 {
  fill: #001C62;
}
.section-benefits .visualize-icon3 {
  fill: #F13454;
}
.section-benefits .visualize-icon0,
.section-benefits .visualize-icon3 {
  transform-origin: 50% 85%;
}
.section-benefits .act-icon0 {
  fill: #F13454;
}
.section-benefits .act-icon1 {
  fill: #16C6B4;
}
.section-benefits .act-icon2 {
  fill: none;
  stroke: #001C62;
  stroke-width: 6.4474;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}
.section-benefits .act-icon3 {
  fill: none;
  stroke: #001C62;
  stroke-width: 6.4474;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}

.section-about {
  position: relative;
  padding: 8vw 0px;
}
@media only screen and (min-width: 2560px) {
  .section-about {
    padding: 10vw 0;
  }
}
@media only screen and (max-width: 1023px) {
  .section-about {
    padding-bottom: 16vw;
  }
}
.section-about h2 {
  font-size: 28px;
  font-size: 1.75rem;
}
.section-about .about-text {
  color: var(--color-dark-blue);
  height: 62vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-about .about-text h2 {
  background: transparent;
  color: var(--color-dark-blue);
  box-sizing: border-box;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.4;
  max-width: 50vw;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .section-about .about-text h2 {
    max-width: 100%;
  }
}
.section-about .appear .about-text h2 {
  background-position: 0 0;
  transition-duration: 2.5s;
}
.section-about .about-video {
  margin-top: 6vw;
  position: relative;
  width: 100%;
  flex: 1;
  z-index: 2;
}
@media only screen and (min-width: 2560px) {
  .section-about .about-video {
    margin-top: 10vw;
  }
}
.section-about .about-video video {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.section-about .watch-on-youtube {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  left: 0;
  line-height: 1.2;
  margin-top: -5px;
  padding-top: 80px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  top: 50%;
  transform: translate(-150%, -50%);
}
.section-about .watch-on-youtube:before {
  background: url(../img/start/youtube-icon.svg) no-repeat center;
  background-size: contain;
  content: "";
  display: block;
  height: 40px;
  left: 50%;
  position: absolute;
  top: 12px;
  width: 40px;
  transform: translate(-50%, 0%);
  transition: all 0.15s;
}
.section-about .watch-on-youtube:after {
  border: 3px solid var(--color-dark-blue);
  border-radius: 50%;
  content: "";
  display: block;
  height: 60px;
  left: 50%;
  position: absolute;
  top: 0px;
  width: 60px;
  transform: translate(-50%, 0%);
  transition: all 0.15s;
  transform-origin: 0% -60px;
}
.section-about .watch-on-youtube:hover:after {
  transform: scale(3.5) translate(-50%, -100%);
}
.section-about .watch-on-youtube:hover:before {
  filter: hue-rotate(102deg) brightness(320%) saturate(95%);
  transform: translate(-50%, 0) scale(1.5) rotate(-7deg);
}
@media only screen and (max-width: 1023px) {
  .section-about .watch-on-youtube {
    left: 50%;
    top: 100%;
    margin-top: 40px;
    transform: translate(-50%, 0%);
    padding-top: 10px;
    padding-left: 170px;
    text-align: left;
  }
  .section-about .watch-on-youtube:hover:after {
    transform: scale(4.5) translate(-50%, -110%);
  }
}

.section-clients {
  background: #efefef;
  padding: 10vw 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.section-clients h2 {
  color: #f00055;
  font-size: clamp(2rem, 4vw, 6rem);
  font-weight: bold;
  line-height: 1;
}

.section-sign-up {
  color: var(--color-dark-blue);
  padding: 20vw 0;
  position: relative;
  text-align: center;
}
.section-sign-up h2 {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 425px) and (max-width: 1439px) {
  .section-sign-up h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.section-sign-up .form {
  margin: 2.5rem auto;
  max-width: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
@media only screen and (max-width: 1023px) {
  .section-sign-up .form {
    flex-wrap: wrap;
  }
}
.section-sign-up .form-item {
  display: flex;
  flex: 0 1 400px;
  margin: 0;
  max-width: 400px;
}
.section-sign-up .form-item label {
  font-size: 24px;
  font-size: 1.5rem;
  text-align: left;
}
.section-sign-up .form-item input {
  width: 100%;
}
.section-sign-up .button {
  margin-left: 0.625rem;
  margin-top: 0.75rem;
}
.section-sign-up .button em {
  display: block;
  white-space: nowrap;
}
.section-sign-up .sign-up-background-animation {
  width: 100%;
  height: 100%;
}
.section-sign-up .line-container {
  left: 0;
  min-height: 100%;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.section-sign-up .line-container .line {
  height: 80vh;
  min-width: 250px;
  position: absolute;
  width: 24vw;
}
.section-sign-up .line-container .line.cyan {
  background: var(--color-cyan);
}
.section-sign-up .line-container .line.yellow {
  background: var(--color-yellow);
}
.section-sign-up .line-container .line.line-1 {
  transform: skew(-35deg) translate(-75%, -90%);
  transition: transform 0.8s ease-out;
}
.appear.section-sign-up .line-container .line.line-1 {
  transform: skew(-35deg) translate(-75%, -100%);
}

.section-sign-up .line-container .line.line-2 {
  transform: skew(-35deg) translate(-15%, -85%);
  transition: transform 0.8s ease-out;
  transition-delay: 0.2s;
}
.appear.section-sign-up .line-container .line.line-2 {
  transform: skew(-35deg) translate(-15%, -100%);
}

.section-sign-up .line-container .line.line-3 {
  transition: transform 1.2s ease-out;
  transform: skew(-35deg) translate(190%, 32%);
}
.appear.section-sign-up .line-container .line.line-3 {
  transform: skew(-35deg) translate(190%, -100%);
}

.section-sign-up .line-container .line.line-4 {
  transform: skew(-35deg) translate(190%, -68%);
  transition: transform 0.8s;
}
.appear.section-sign-up .line-container .line.line-4 {
  transform: skew(-35deg) translate(190%, -100%);
}

.section-sign-up .line-container .line.line-6 {
  transform: skew(-35deg) translate(-50%, 100%);
  transition: transform 1.3s;
}
.appear.section-sign-up .line-container .line.line-6 {
  transform: skew(-35deg) translate(-50%, 0%);
}

.section-sign-up .line-container .line.line-7 {
  transform: skew(-35deg) translate(360%, 150%);
  transition: transform 0.8s;
}
.appear.section-sign-up .line-container .line.line-7 {
  transform: skew(-35deg) translate(360%, 90%);
}

.section-sign-up .line-container .line.line-8 {
  transform: skew(-35deg) translate(335%, 150%);
  transition: transform 1.2s;
}
.appear.section-sign-up .line-container .line.line-8 {
  transform: skew(-35deg) translate(335%, 85%);
}

.secret.hero-section {
  background: #03c9a6;
  position: relative;
}
.ie .secret.hero-section, .edge .secret.hero-section {
  display: none;
}
.secret.hero-section .webgl-fallback,
.secret.hero-section .waver {
  bottom: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
}
.secret.hero-section .webgl-fallback canvas,
.secret.hero-section .waver canvas {
  bottom: 0;
  left: 0;
  position: absolute;
}
.secret.hero-section .webgl-fallback:before,
.secret.hero-section .waver:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgb(3, 201, 166) 0%, rgba(3, 201, 166, 0) 100%);
  top: 50%;
  z-index: 2;
}

.view-manifesto {
  overflow: hidden;
}
.view-manifesto section {
  padding-top: 12.5rem;
  padding-bottom: 9.375rem;
}
.view-manifesto section .view-content {
  padding-bottom: 12.5rem;
  position: relative;
  z-index: auto;
}
@media only screen and (max-width: 767px) {
  .view-manifesto section {
    padding-top: 0;
    padding-bottom: 0;
  }
  .view-manifesto section .view-content {
    padding-bottom: 4rem;
  }
}
.view-manifesto .wave-animation, .view-manifesto .line-chart {
  left: 0;
  position: absolute;
  width: 100%;
}
.view-manifesto .wave-animation {
  opacity: 1;
  top: -200px;
  z-index: 6;
}
.view-manifesto .line-chart {
  bottom: -90px;
}

section.intro {
  background: #0cd1c3;
  box-sizing: border-box;
  color: var(--color-dark-blue);
  display: flex;
  height: 56.25vw;
  height: 100vh;
  overflow: hidden;
}
section.intro .view-content {
  margin: auto;
  padding-bottom: 0;
}
section.intro .view-content p {
  font-size: 20px;
  font-weight: bold;
  max-width: 480px;
  position: relative;
  z-index: 10;
}

.intro-headline {
  color: var(--color-yellow);
  font-size: clamp(70px, 7.5vw, 130px);
  font-size: 7.5vw;
}
.intro-headline span {
  transform: none !important;
}
.intro-content {
  max-width: 50%;
}
.intro-shapes {
  bottom: 0;
  position: absolute;
  right: 0;
  transform: translateY(52%, 27%);
  width: 100%;
  transform: tranlateX(-1%);
}
@media only screen and (min-width: 1440px) {
  .intro-shapes {
    width: 110%;
  }
}
.intro-shapes :nth-child(1) {
  stroke-dasharray: 2990, 2990;
  stroke-dashoffset: 2990;
}
.intro-shapes :nth-child(2) {
  stroke-dasharray: 2190, 2190;
  stroke-dashoffset: 2190;
}
.intro-shapes :nth-child(3) {
  stroke-dasharray: 1280, 1280;
  stroke-dashoffset: 1280;
}
.intro-shapes :nth-child(5) {
  stroke-dasharray: 890, 890;
  stroke-dashoffset: 890;
}
.intro-shapes * {
  transition: all 1s ease;
}
.intro-shapes :nth-child(4) {
  opacity: 0;
  transform: scale(0.3);
  transform-origin: 49%, 55%;
  transition-duration: 0.35s;
}
.intro-shapes.appear :nth-child(1) {
  transition-delay: 0s;
}
.intro-shapes.appear :nth-child(2) {
  transition-delay: 0.35s;
}
.intro-shapes.appear :nth-child(3) {
  transition-delay: 0.7s;
}
.intro-shapes.appear :nth-child(5) {
  transition-delay: 1.05s;
}
.intro-shapes.appear :nth-child(3) {
  transition-delay: 1.25s;
  transition-duration: 1s;
}
.intro-shapes.appear :nth-child(4) {
  opacity: 1;
  transform: scale(0.9);
  transition-delay: 1.75s;
  transition-duration: 2s;
}
.intro-shapes.appear :nth-child(5) {
  transition-duration: 3.5s;
}
.intro-shapes.appear * {
  stroke-dashoffset: 0;
  transition-duration: 1.5s;
}

section.be-adaptive {
  overflow: hidden;
}
section.be-adaptive .wobble-animation {
  position: absolute;
  right: 0;
  top: 10%;
}
section.be-adaptive .wobble-animation-wrapper {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
section.be-adaptive h1.number {
  color: var(--color-red);
}
section.be-adaptive .rect {
  background: var(--color-red);
}
section.be-adaptive .grid .col h3, section.be-adaptive .grid .col p {
  position: relative;
  z-index: 5;
}
section.be-adaptive .col, section.be-adaptive .lead-in {
  position: relative;
  z-index: 10;
}

section.be-efficient {
  background: #670021;
  color: #fff;
}
section.be-efficient header {
  pointer-events: none;
}
section.be-efficient h1.number {
  color: var(--color-red);
}
section.be-efficient h1.number .rect {
  background: var(--color-red);
}
section.be-efficient .view-content {
  position: relative;
  z-index: 10;
}
section.be-efficient .col {
  position: relative;
  z-index: 5;
}
section.be-efficient .giphy {
  border-color: #fff;
}
section.be-efficient .giphy-img {
  z-index: 9;
}

.be-honest {
  z-index: 5;
}
.be-honest h1.number {
  color: #009cff;
}
.be-honest h1.number .rect {
  background: #009cff;
}
.be-honest .lead-in, .be-honest .col {
  position: relative;
  z-index: 10;
}
.be-honest .section-header {
  position: relative;
  z-index: 0;
}
.be-honest .transparency-grid-wrap {
  height: 800px;
  left: 0;
  position: absolute;
  top: 0px;
  overflow: hidden;
  width: 100%;
  z-index: 1;
}
.be-honest .transparency-grid-wrap .webgl-fallback {
  transform: rotate(-45deg);
  position: absolute;
  right: 0;
  top: 0;
}
.be-honest .transparency-grid {
  left: 40%;
  position: absolute;
  top: 0px;
  transform: rotate(-45deg);
}
@media only screen and (min-width: 1024px) {
  .be-honest .transparency-grid {
    left: 60%;
  }
}
.be-honest .transition {
  padding-bottom: 41%;
  position: absolute;
  top: 0px;
  transform: translate(0, -76%);
  left: 0;
  pointer-events: none;
  width: 100%;
}
.be-honest .transition svg {
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  top: 0;
}

.be-inspired h1.number {
  color: var(--color-blue);
}
.be-inspired h1.number .rect {
  background: var(--color-blue);
}
@media only screen and (max-width: 767px) {
  .be-inspired {
    padding-bottom: 5.25rem;
    overflow: hidden;
  }
}
.be-inspired .view-content {
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .be-inspired .view-content {
    padding-bottom: 10rem;
  }
}
.be-inspired .giphy-img {
  z-index: 7;
}
.be-inspired .sun {
  background: #ffed00;
  border-radius: 50%;
  height: 400px;
  left: 50%;
  position: absolute;
  top: 40%;
  width: 400px;
  margin: -200px 0 0 -200px;
  transform-origin: 50%, 50%;
  z-index: 2;
}
.be-inspired .birds-animation {
  margin-left: 120px;
  left: 50%;
  position: absolute;
  top: 30%;
  z-index: 3;
}
@media only screen and (max-width: 530px) {
  .be-inspired .birds-animation {
    margin-left: 20px;
  }
}
.be-inspired .birds-animation2 {
  margin-left: 20px;
  left: 50%;
  position: absolute;
  top: 37%;
  z-index: 3;
}
.be-inspired .col {
  position: relative;
  z-index: 10;
}
.be-inspired .waves {
  bottom: 0px;
  left: 0;
  height: 180px;
  position: absolute;
  width: 100%;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .be-inspired .waves {
    bottom: 20px;
  }
}
.be-inspired .waves .wave {
  box-sizing: border-box;
  height: 40px;
  position: relative;
  width: 100%;
}
.be-inspired .waves .wave1 {
  background: transparent url(https://storage.googleapis.com/daesk-campaign-assets/static/core/img/manifesto/inspired-water-pattern-01.svg) repeat-x;
}
.be-inspired .waves .wave1:after {
  background: #fff;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  width: 100%;
}
.be-inspired .waves .wave2 {
  background: #fff url(https://storage.googleapis.com/daesk-campaign-assets/static/core/img/manifesto/inspired-water-pattern-02.svg) repeat-x;
}
.be-inspired .waves .wave3 {
  background: #fff url(https://storage.googleapis.com/daesk-campaign-assets/static/core/img/manifesto/inspired-water-pattern-03.svg) repeat-x 0 4px;
}
.be-inspired .waves .wave4 {
  background: var(--color-dark-blue) url(https://storage.googleapis.com/daesk-campaign-assets/static/core/img/manifesto/inspired-water-pattern-04.svg) repeat-x 0 4px;
}

section.be-unique {
  background: #001d68;
  color: #fff;
  overflow: hidden;
  padding-bottom: 4rem;
  z-index: 3;
}
section.be-unique h1.number {
  color: var(--color-yellow-alt);
}
section.be-unique h1.number .rect {
  background: var(--color-yellow-alt);
}
section.be-unique .lead-in, section.be-unique .col {
  position: relative;
  z-index: 15;
}
section.be-unique .giphy {
  border-bottom-color: #fff;
}
section.be-unique .giphy-img {
  z-index: 12;
}
section.be-unique .drawing-canvas {
  height: 100%;
  cursor: none;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 10;
}

.send-beliefs {
  background: #333;
}
@media only screen and (max-width: 767px) {
  .send-beliefs {
    padding: 12.5rem 0;
  }
}
@media only screen and (max-width: 424px) {
  .send-beliefs {
    padding: 7rem 0;
  }
}
.send-beliefs .buttons {
  margin-top: 2.5rem;
  text-align: center;
}
.send-beliefs .giphy {
  border-bottom-color: #fff;
}
.send-beliefs.giphy-over h2 {
  opacity: 0.2;
}
.send-beliefs h2 {
  color: #fff;
  font-weight: bold;
  font-size: clamp(36px, 12vw, 78px);
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.buttons {
  margin-top: 2.5rem;
  text-align: center;
}

.quote-list {
  cursor: none;
  min-height: 200px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .quote-list {
    padding: 12.5rem 0 12.5rem;
  }
}
.quote-list .arrow {
  position: absolute;
  z-index: 50;
}
.quote-list .quote-background {
  background: #1893bd;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
  transition: width 0.5s ease-out;
}
.quote-list .quote-background.visible {
  width: 100%;
}
.quote-list blockquote {
  box-sizing: border-box;
  color: #fff;
  display: block;
  left: 150%;
  margin: 0 auto;
  max-width: 700px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: left 0.5s;
  width: 100%;
  z-index: 3;
}
.quote-list blockquote.shown {
  left: 50%;
}
.quote-list blockquote.hidden {
  left: -50%;
}
.quote-list blockquote .picture {
  background: #5bd8b7;
  transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  line-height: 0;
  vertical-align: middle;
}
.quote-list blockquote .picture img {
  mix-blend-mode: multiply;
  height: 0;
  filter: saturate(0.2);
  width: 0;
}
.quote-list blockquote.autoscale .picture {
  width: 150px;
}
.quote-list blockquote.autoscale .picture img {
  width: 100%;
}
.quote-list blockquote .text {
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 600;
  line-height: 1.4;
  padding-left: 150px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 424px) {
  .quote-list blockquote .text {
    padding-left: 75px;
  }
}
@media only screen and (max-width: 374px) {
  .quote-list blockquote .text {
    padding-left: 0;
  }
}
.quote-list blockquote.large .text {
  font-size: 2.375rem;
  line-height: 1.3;
}
@media only screen and (max-width: 424px) {
  .quote-list blockquote.large .text {
    font-size: 1.75rem;
  }
}
.quote-list blockquote.x-large .text {
  font-size: 3.75rem;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .quote-list blockquote.x-large .text {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
.quote-list blockquote .author {
  position: absolute;
  right: 0;
  bottom: -40px;
}
@media only screen and (max-width: 767px) {
  .quote-list blockquote {
    padding: 0 2rem;
  }
  .quote-list blockquote .author {
    right: 2rem;
  }
}

.line-set {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  overflow: hidden;
  z-index: 7;
}

.line-set .line {
  left: 0%;
  position: absolute;
  top: 50%;
}
.line-set .line:nth-child(1) {
  left: 0%;
  translate: -125px, -50%;
  top: 55%;
  z-index: 3;
}
.line-set .line:nth-child(1) line {
  stroke-width: 50px;
  stroke: var(--color-red);
}
.line-set .line:nth-child(2) {
  left: 0%;
  transform: translate(-125px, -50%);
  top: 57%;
}
.line-set .line:nth-child(2) line {
  stroke-width: 100px;
  stroke: var(--color-dark-red);
}
.line-set .line:nth-child(3) {
  left: 100%;
  transform: translate(calc(-100% + 125px), -50%);
  top: 40%;
}
.line-set .line:nth-child(3) line {
  stroke-width: 40px;
  stroke: var(--color-red);
}
.line-set .line:nth-child(4) {
  left: 100%;
  top: 70%;
  transform: translate(calc(-100% + 125px), -50%);
}
.line-set .line:nth-child(4) line {
  stroke-width: 120px;
  stroke: var(--color-dark-red);
}

.imprint {
  padding: 6vw 0;
}
.imprint .container {
  display: flex;
  max-width: 1024px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 0 30px;
}
@media only screen and (min-width: 375px) {
  .imprint .container {
    padding: 0 6vw;
  }
}
.imprint .container h2 {
  width: 100%;
  line-height: 1.2;
}
.imprint .container .column {
  box-sizing: border-box;
  flex: 1 0 50%;
  padding-top: 6vw;
}
@media only screen and (min-width: 768px) {
  .imprint .container .column:nth-child(2) {
    padding-right: 3em;
  }
  .imprint .container .column:nth-child(3) {
    padding-left: 3em;
  }
}

/*# sourceMappingURL=app.css.map */
