@import url("https://use.typekit.net/mij4cpi.css");
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

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;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

a,
a:hover,
a:focus,
a:active {
  color: inherit;
  text-decoration: none;
  font-size: 26px;
}

.Button {
  border: none;
  outline: none;
  background-color: #041dff;
  color: #fff;
  padding: 0 30px;
  border-radius: 12px;
  cursor: pointer;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
}
.Button .icon {
  margin-left: 20px;
}

#Navbar {
  position: fixed;
  background-color: #041dff;
  width: 120px;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 10;
}
@media screen and (max-width: 920px) {
  #Navbar {
    width: 100%;
    height: 80px;
    bottom: auto;
    flex-direction: row;
    padding: 0 25px;
  }
}
#Navbar .menu-wrapper {
  width: 100%;
  flex: 1;
}
@media screen and (max-width: 920px) {
  #Navbar .menu-wrapper {
    overflow: hidden;
    height: 0;
    background-color: #041dff;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    transition: height 0.6s;
  }
}
#Navbar .menu-wrapper > article {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 920px) {
  #Navbar .menu-wrapper > article {
    height: auto;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
}
#Navbar .menu {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 920px) {
  #Navbar .menu {
    padding: 50px 0 80px;
  }
}
#Navbar .menu .line {
  position: absolute;
  pointer-events: none;
  height: 42px;
  width: 4px;
  background-color: #fff;
  right: 0;
  top: 0;
  transition: transform 0.3s;
  visibility: hidden;
}
#Navbar .menu .line.active {
  visibility: visible;
}
#Navbar .menu li {
  transition: opacity 0.4s;
}
#Navbar .menu li:hover:not(.active) {
  opacity: 0.65;
}
#Navbar .menu a {
  height: 42px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
#Navbar .social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 920px) {
  #Navbar .social {
    padding-bottom: 20px;
    flex-direction: row;
  }
}
@media screen and (min-width: 920px) and (max-height: 500px) {
  #Navbar .social {
    display: none;
  }
}
#Navbar .social a {
  display: block;
  margin: 10px;
}
#Navbar .hamburger {
  padding: 15px 5px;
  cursor: pointer;
}
#Navbar .hamburger svg {
  overflow: visible;
  display: block;
}
#Navbar .hamburger svg path {
  transition: transform 0.5s;
  transform-origin: center;
}
#Navbar .hamburger.active path:nth-child(1) {
  transform: rotate(45deg) translateY(4.5px);
}
#Navbar .hamburger.active path:nth-child(2) {
  transform: rotate(135deg) translateY(-4.5px);
}

#Footer {
  padding: 0 20px;
  text-align: center;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#Footer .footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 520px) {
  #Footer .footer-links {
    flex-wrap: wrap;
  }
}
#Footer .footer-links li {
  margin: 0 25px;
}
@media screen and (max-width: 520px) {
  #Footer .footer-links li:nth-child(1) {
    margin-bottom: 30px;
    width: 100%;
  }
}
#Footer .footer-links li,
#Footer .footer-links a {
  font-size: 18px;
}
@media screen and (max-width: 520px) {
  #Footer .footer-links li,
#Footer .footer-links a {
    font-size: 16px;
  }
}

#Video {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  visibility: hidden;
}
#Video.play {
  visibility: visible;
  animation: fadeIn 0.8s backwards;
}
#Video .bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #000;
  cursor: pointer;
}
#Video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  width: 920px;
  height: 517px;
}
@media (max-aspect-ratio: 16/9) {
  #Video iframe {
    height: 56.25vw;
  }
}
#Video .close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  padding: 6px;
}
@media screen and (max-width: 520px) {
  #Video .close {
    top: 15px;
    right: 15px;
  }
}
#Video .close:hover svg {
  transform: rotate(135deg);
}
#Video .close svg {
  display: block;
  transition: transform 0.2s;
  transform: rotate(45deg);
}

.polygon {
  position: absolute;
  pointer-events: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  aspect-ratio: 1/1 !important;
  width: 460px !important;
  height: 460px !important;
}
@media screen and (max-width: 920px) {
  .polygon {
    width: 420px !important;
    height: 420px !important;
  }
}
@media screen and (max-width: 520px) {
  .polygon {
    width: 360px !important;
    height: 360px !important;
  }
}

.error-page {
  background-color: #000;
  min-height: 100vh;
  position: relative;
  color: #fff;
  text-align: center;
}
.error-page .column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 20vh;
  padding-bottom: 15vh;
  position: relative;
}
.error-page button {
  margin-top: 12vh;
  background-color: #f5d31c;
  color: #000;
  transition: all 0.3s;
}
.error-page button:hover {
  background-color: #041dff;
  color: #fff;
}
.error-page .polygon {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 920px) {
  .error-page .polygon {
    top: 55%;
  }
}
.error-page #polygon-error-r {
  margin-left: 250px;
}
@media screen and (max-width: 920px) {
  .error-page #polygon-error-r {
    display: none;
  }
}
.error-page #polygon-error-l {
  margin-left: -250px;
}
@media screen and (max-width: 920px) {
  .error-page #polygon-error-l {
    margin-left: 0;
  }
}

#Hero {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 25vh;
  background-color: #000;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 920px) {
  #Hero {
    padding-bottom: 30vh;
  }
}
#Hero canvas {
  left: 0;
  top: 0;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  z-index: -1;
  object-fit: cover;
}
#Hero video {
  position: fixed;
  z-index: -1;
  left: 0;
  right: 0;
  position: absolute;
  visibility: visible;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
#Hero .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10vh;
  color: #fff;
}
#Hero .content h1 {
  padding-top: 10vh;
  max-width: 830px;
}
@media screen and (max-width: 920px) {
  #Hero .content h1 {
    max-width: 640px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 520px) {
  #Hero .content h1 {
    max-width: 360px;
  }
}
#Hero .content h2 {
  font-size: 36px;
  font-weight: 500;
}
@media screen and (max-width: 920px) {
  #Hero .content h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 520px) {
  #Hero .content h2 {
    font-size: 25px;
  }
}
#Hero .content button {
  margin-top: 8vh;
}
@media screen and (max-width: 520px) {
  #Hero .content button {
    margin-top: 100px;
  }
}
#Hero .content button svg {
  transition: transform 0.2s;
}
#Hero .content button svg path {
  stroke: #fff;
}
#Hero .content button svg .line {
  stroke-dasharray: 18px;
  transition: stroke-dashoffset 0.4s;
}
#Hero .content button:hover svg {
  transform: translateX(5px);
}
#Hero .content button:hover svg .line {
  stroke-dashoffset: 36px;
}

#Challenge {
  position: relative;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 200px;
}
@media screen and (max-width: 920px) {
  #Challenge {
    padding-top: 100px;
  }
}
@media screen and (max-width: 520px) {
  #Challenge {
    padding-bottom: 180px;
  }
}
#Challenge .polygon-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
#Challenge .polygon {
  right: 0;
  bottom: -100px;
}
@media screen and (max-width: 920px) {
  #Challenge .polygon {
    bottom: -80px;
  }
}
#Challenge p {
  max-width: 1060px;
  margin: 0 auto 20px;
}

#Solutions {
  position: relative;
  background-color: #000;
  color: #fff;
  padding-top: 180px;
  padding-bottom: 180px;
}
@media screen and (max-width: 920px) {
  #Solutions {
    padding-top: 100px;
    padding-bottom: 280px;
  }
}
@media screen and (max-width: 520px) {
  #Solutions {
    padding-bottom: 320px;
  }
}
#Solutions .polygon-wrapper {
  position: relative;
}
#Solutions .polygon {
  left: 0;
  bottom: -300px;
}
@media screen and (max-width: 920px) {
  #Solutions .polygon {
    bottom: -450px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 520px) {
  #Solutions .polygon {
    margin-left: -30px;
  }
}
#Solutions h2 {
  max-width: 400px;
}
@media screen and (max-width: 920px) {
  #Solutions h2 {
    max-width: 320px;
  }
}
@media screen and (max-width: 520px) {
  #Solutions h2 {
    max-width: 250px;
  }
}
#Solutions .sub-title {
  max-width: 560px;
}
@media screen and (max-width: 920px) {
  #Solutions ul {
    margin-top: 80px;
  }
}

#Technology {
  position: relative;
  text-align: center;
  padding-top: 220px;
  padding-bottom: 400px;
}
@media screen and (max-width: 520px) {
  #Technology {
    padding-top: 200px;
    padding-bottom: 360px;
  }
}
#Technology .polygon {
  left: 50%;
  margin-left: -200px;
  bottom: 50px;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  #Technology .polygon {
    bottom: 60px;
  }
}
#Technology p.quoted {
  max-width: 1060px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 520px) {
  #Technology p.quoted {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 920px) {
  #Technology .block:first-of-type {
    margin-bottom: 60px;
  }
}

#Team {
  position: relative;
  background-color: #f5d31c;
  padding-top: 120px;
}
@media screen and (max-width: 920px) {
  #Team {
    padding-top: 100px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 520px) {
  #Team {
    padding-top: 80px;
    padding-right: 0;
    padding-left: 0;
  }
}
#Team h2 {
  max-width: 600px;
}
@media screen and (max-width: 920px) {
  #Team h2 {
    max-width: 400px;
  }
}
@media screen and (max-width: 520px) {
  #Team h2 {
    max-width: 300px;
  }
}
#Team .tiles {
  display: flex;
  flex-wrap: wrap;
}
#Team .tiles li {
  position: relative;
  width: 25%;
  background-color: #000;
  cursor: pointer;
}
@media screen and (max-width: 920px) {
  #Team .tiles li {
    cursor: default;
    width: 50%;
  }
}
@media screen and (max-width: 520px) {
  #Team .tiles li {
    width: 100%;
  }
}
#Team .tiles li .img-wrapper {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 150.666%;
}
#Team .tiles li img {
  position: absolute;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  filter: grayscale(0%);
  transition: all 0.5s;
  object-fit: cover;
}
#Team .tiles li .info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  max-height: 100%;
  overflow: auto;
  transition: background-color 0.3s;
}
#Team .tiles li .info article {
  overflow: hidden;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 0;
  transition: height 0.3s;
}
#Team .tiles li .info article p {
  padding: 15px 15px 20px;
  font-size: 16px;
}
#Team .tiles li .info article a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #041dff;
  transition: opacity 0.2s;
}
#Team .tiles li .info article a svg {
  width: 12px;
  height: 12px;
}
#Team .tiles li .info article a:hover {
  opacity: 0.8;
}
#Team .tiles li .info header {
  position: relative;
  padding: 15px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}
#Team .tiles li .info header svg {
  transition: all 0.3s;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -9px;
  opacity: 0;
  transform: scale(0.8);
  border-radius: 50%;
  background-color: #f5d31c;
}
@media screen and (max-width: 920px) {
  #Team .tiles li .info header svg {
    opacity: 1;
    transform: scale(1);
  }
}
@media screen and (min-width: 920px) {
  #Team .tiles li:hover img {
    filter: grayscale(100%);
  }
  #Team .tiles li:hover header svg {
    opacity: 1;
    transform: scale(1);
  }
}
#Team .tiles li.active .info {
  background-color: #000;
}
#Team .tiles li.active img {
  filter: grayscale(100%);
  transform: translateY(-20px);
}
#Team .tiles li.active header svg {
  background-color: rgba(255, 255, 255, 0.15);
  opacity: 1;
  transform: scale(1) rotate(45deg);
}
#Team .tiles li.active header svg path {
  stroke: #fff;
}

#Contact-Us {
  position: relative;
  text-align: center;
  padding-top: 220px;
  padding-bottom: 120px;
}
@media screen and (max-width: 920px) {
  #Contact-Us {
    padding-top: 180px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 520px) {
  #Contact-Us {
    padding-top: 140px;
  }
}
#Contact-Us .polygon {
  left: 0;
  bottom: -180px;
  z-index: -1;
}
#Contact-Us a {
  display: block;
  transition: opacity 0.2s;
}
#Contact-Us a:hover {
  opacity: 0.65;
}
#Contact-Us .split {
  margin: auto;
  max-width: 800px;
  padding-top: 30px;
}
@media screen and (max-width: 920px) {
  #Contact-Us .split {
    padding-top: 60px;
  }
}
#Contact-Us .block {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
#Contact-Us .block .quoted {
  margin-left: 25px;
  margin-top: -6px;
}
@media screen and (max-width: 920px) {
  #Contact-Us .block:first-of-type {
    margin-bottom: 40px;
  }
}

::-moz-selection {
  background: #f5d31c;
  color: #041dff;
}

::selection {
  background: #f5d31c;
  color: #041dff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: eurostile, Arial, Helvetica, sans-serif;
  line-height: 1.15;
  font-weight: 400;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  animation: fadeIn 0.5s reverse forwards 0.1s;
  background-color: #000;
}

.container {
  padding-left: 120px;
}
@media screen and (max-width: 920px) {
  .container {
    padding-left: 0;
  }
}

@media screen and (max-width: 920px) {
  .desktop {
    display: none;
  }
}

.tablet {
  display: none;
}
@media screen and (max-width: 920px) {
  .tablet {
    display: block;
  }
}

.mobile {
  display: none;
}
@media screen and (max-width: 520px) {
  .mobile {
    display: block;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

h1,
h2.b {
  font-size: 92px;
  margin-bottom: 40px;
}
@media screen and (max-width: 920px) {
  h1,
h2.b {
    font-size: 72px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 520px) {
  h1,
h2.b {
    font-size: 52px;
    margin-bottom: 30px;
  }
}

h2,
h1.s {
  font-size: 72px;
  margin-bottom: 30px;
}
@media screen and (max-width: 920px) {
  h2,
h1.s {
    font-size: 56px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 520px) {
  h2,
h1.s {
    font-size: 42px;
    margin-bottom: 15px;
  }
}

h3 {
  font-size: 56px;
  margin-bottom: 25px;
}
@media screen and (max-width: 920px) {
  h3 {
    font-size: 48px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 520px) {
  h3 {
    font-size: 36px;
    margin-bottom: 15px;
  }
}

h4 {
  font-size: 48px;
  margin-bottom: 20px;
}
@media screen and (max-width: 920px) {
  h4 {
    font-size: 32px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 520px) {
  h4 {
    font-size: 28px;
    margin-bottom: 10px;
  }
}

h5 {
  font-size: 42px;
  margin-bottom: 20px;
}
@media screen and (max-width: 920px) {
  h5 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 520px) {
  h5 {
    font-size: 26px;
    margin-bottom: 10px;
  }
}

h6 {
  font-size: 36px;
  margin-bottom: 15px;
}
@media screen and (max-width: 920px) {
  h6 {
    font-size: 28px;
  }
}
@media screen and (max-width: 520px) {
  h6 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

p,
li {
  font-size: 25px;
}
@media screen and (max-width: 520px) {
  p,
li {
    font-size: 22px;
  }
}

p.sub-title {
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  p.sub-title {
    font-size: 24px;
  }
}
p.quoted {
  font-size: 32px;
  font-weight: 500;
}
@media screen and (max-width: 520px) {
  p.quoted {
    font-size: 25px;
  }
}

.column {
  max-width: 1320px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.column.narrow {
  max-width: 1020px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.split .block {
  padding-left: 30px;
  padding-right: 30px;
  width: 50%;
}
@media screen and (max-width: 920px) {
  .split .block {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .split .block {
    padding-left: 0;
    padding-right: 0;
  }
}

.bullet-list {
  text-align: left;
}
.bullet-list li {
  position: relative;
  padding-left: 40px;
}
@media screen and (max-width: 520px) {
  .bullet-list li {
    padding-left: 20px;
  }
}
.bullet-list li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -1px;
  width: 2px;
  height: 15px;
  background-color: #000;
}
.bullet-list li:not(:last-of-type) {
  margin-bottom: 60px;
}
@media screen and (max-width: 520px) {
  .bullet-list li:not(:last-of-type) {
    margin-bottom: 45px;
  }
}
.bullet-list li:not(:last-of-type):after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 1px;
  height: calc(100% + 60px);
  background-color: #000;
  opacity: 0.3;
}
@media screen and (max-width: 520px) {
  .bullet-list li:not(:last-of-type):after {
    height: calc(100% + 45px);
  }
}
.bullet-list.white li:before {
  background-color: #fff;
}
.bullet-list.white li:not(:last-of-type):after {
  background-color: #fff;
}

.legal {
  background-color: #000;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 120px;
}
@media screen and (max-width: 920px) {
  .legal {
    padding-top: 120px;
  }
}
.legal h5 {
  margin-top: 50px;
}
.legal p {
  margin-bottom: 20px;
}
.legal a {
  color: inherit;
  text-decoration: underline;
  word-break: break-word;
}

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