/*!*********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/src/scss/style.scss ***!
  \*********************************************************************************************************************/
/* 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 {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

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

a {
  text-decoration: none;
}

body, html {
  margin: 0;
  padding: 0;
  font-size: 10px;
}

b, strong {
  font-weight: bold;
}

* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  color: black;
}

html, body {
  font-size: 10px;
}

body {
  overflow-x: hidden;
}

.container {
  max-width: 90%;
  width: 1160px;
  margin: 0 auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

img {
  max-width: 100%;
  height: auto;
}

.background-color {
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.img-container {
  position: relative;
  overflow: hidden;
}
.img-container > img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.img-container > img + .container {
  position: relative;
  z-index: 1;
}

.button {
  display: inline-block;
  background-color: #3d84a8;
  border: 1px solid #3d84a8;
  color: white;
  padding: 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 1.55px;
  font-weight: 300;
  font-size: 1.2rem;
  align-self: center;
  text-transform: uppercase;
  outline: none;
  -webkit-appearance: none;
  min-width: 20rem;
  text-align: center;
}
.button:hover {
  background-color: black;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: normal;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0 0 2.5rem;
}

h4, h5, h6 {
  margin: 0 0 1.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.8rem;
}

p, li {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.18px;
  letter-spacing: normal;
  font-weight: 300;
}
p:first-of-type, li:first-of-type {
  margin-top: 0;
}
p:last-of-type, li:last-of-type {
  margin-bottom: 0;
}

a {
  transition: all ease-in-out 0.2s !important;
}
a:hover {
  text-decoration: none !important;
}

@media only screen and (max-width: 1024px) {
  body, html {
    font-size: 9px;
  }
}
@media only screen and (max-width: 650px) {
  h2 {
    font-size: 2rem;
  }
}
.header {
  position: fixed;
  width: 100%;
  padding: 2rem 0;
  top: 0;
  transition: all ease-in-out 0.2s;
  z-index: 99;
}
.header #time-elapsed {
  font-size: 1.2rem;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 5px;
  color: white;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1.4;
  text-align: right;
}
.header.scroll-active {
  background-color: black;
}

@media only screen and (max-width: 650px) {
  .header #time-elapsed {
    text-align: center;
  }
  .header.scroll-active {
    transform: translateY(-100%);
  }
}
.banner {
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: -1;
  top: 0;
  background-color: black;
}
.banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.25;
  z-index: 9;
}
.banner video {
  object-fit: cover;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banner .container {
  position: relative;
  z-index: 9;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
.banner h1, .banner h2, .banner p {
  margin: 0 0 2rem;
  color: white;
}
.banner p {
  font-size: 2.5rem;
  line-height: 1.2;
}
.banner h1 {
  font-size: 7rem;
  line-height: 1.05;
}

@keyframes anim-v {
  0% {
    transform: translate3d(0, 10vh, 0);
  }
  to {
    transform: translate3d(0, -10vh, 0) rotate3d(0, 0, 1, 90deg);
  }
}
@keyframes anim-h {
  to {
    transform: translate3d(0, 0, var(--dist, 0));
  }
}
@keyframes anim-spin {
  to {
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
@keyframes anim-s {
  0% {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(1.5, 1.5, 1.5);
  }
}
@keyframes reveal {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes anim-r {
  0% {
    transform: rotate3d(1, 1, 0, 75deg) rotate3d(0, 0, -1, 0deg);
  }
  to {
    transform: rotate3d(1, 1, 0, 75deg) rotate3d(0, 0, -1, 360deg);
  }
}
:root {
  --length: 100;
}

*,
*::before,
*::after {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
}

.animate {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.animate section,
.animate ul,
.animate li {
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}
.animate section {
  animation: anim-v 20s ease-in-out infinite alternate;
}
.animate ul {
  animation: anim-r 20s linear infinite;
  list-style: none;
  position: relative;
}
.animate ul li:nth-child(1) {
  --delay: 0.05s;
  --dist: 0.9625vmin;
  --size: 55vmin;
}
.animate ul li:nth-child(1)::after {
  --size: 27.5vmin;
}
.animate ul li:nth-child(1)::before {
  --size: 13.75vmin;
}
.animate ul li:nth-child(2) {
  --delay: 0.1s;
  --dist: 1.925vmin;
  --size: 53.9vmin;
}
.animate ul li:nth-child(2)::after {
  --size: 26.95vmin;
}
.animate ul li:nth-child(2)::before {
  --size: 13.475vmin;
}
.animate ul li:nth-child(3) {
  --delay: 0.15s;
  --dist: 2.8875vmin;
  --size: 52.8vmin;
}
.animate ul li:nth-child(3)::after {
  --size: 26.4vmin;
}
.animate ul li:nth-child(3)::before {
  --size: 13.2vmin;
}
.animate ul li:nth-child(4) {
  --delay: 0.2s;
  --dist: 3.85vmin;
  --size: 51.7vmin;
}
.animate ul li:nth-child(4)::after {
  --size: 25.85vmin;
}
.animate ul li:nth-child(4)::before {
  --size: 12.925vmin;
}
.animate ul li:nth-child(5) {
  --delay: 0.25s;
  --dist: 4.8125vmin;
  --size: 50.6vmin;
}
.animate ul li:nth-child(5)::after {
  --size: 25.3vmin;
}
.animate ul li:nth-child(5)::before {
  --size: 12.65vmin;
}
.animate ul li:nth-child(6) {
  --delay: 0.3s;
  --dist: 5.775vmin;
  --size: 49.5vmin;
}
.animate ul li:nth-child(6)::after {
  --size: 24.75vmin;
}
.animate ul li:nth-child(6)::before {
  --size: 12.375vmin;
}
.animate ul li:nth-child(7) {
  --delay: 0.35s;
  --dist: 6.7375vmin;
  --size: 48.4vmin;
}
.animate ul li:nth-child(7)::after {
  --size: 24.2vmin;
}
.animate ul li:nth-child(7)::before {
  --size: 12.1vmin;
}
.animate ul li:nth-child(8) {
  --delay: 0.4s;
  --dist: 7.7vmin;
  --size: 47.3vmin;
}
.animate ul li:nth-child(8)::after {
  --size: 23.65vmin;
}
.animate ul li:nth-child(8)::before {
  --size: 11.825vmin;
}
.animate ul li:nth-child(9) {
  --delay: 0.45s;
  --dist: 8.6625vmin;
  --size: 46.2vmin;
}
.animate ul li:nth-child(9)::after {
  --size: 23.1vmin;
}
.animate ul li:nth-child(9)::before {
  --size: 11.55vmin;
}
.animate ul li:nth-child(10) {
  --delay: 0.5s;
  --dist: 9.625vmin;
  --size: 45.1vmin;
}
.animate ul li:nth-child(10)::after {
  --size: 22.55vmin;
}
.animate ul li:nth-child(10)::before {
  --size: 11.275vmin;
}
.animate ul li:nth-child(11) {
  --delay: 0.55s;
  --dist: 10.5875vmin;
  --size: 44vmin;
}
.animate ul li:nth-child(11)::after {
  --size: 22vmin;
}
.animate ul li:nth-child(11)::before {
  --size: 11vmin;
}
.animate ul li:nth-child(12) {
  --delay: 0.6s;
  --dist: 11.55vmin;
  --size: 42.9vmin;
}
.animate ul li:nth-child(12)::after {
  --size: 21.45vmin;
}
.animate ul li:nth-child(12)::before {
  --size: 10.725vmin;
}
.animate ul li:nth-child(13) {
  --delay: 0.65s;
  --dist: 12.5125vmin;
  --size: 41.8vmin;
}
.animate ul li:nth-child(13)::after {
  --size: 20.9vmin;
}
.animate ul li:nth-child(13)::before {
  --size: 10.45vmin;
}
.animate ul li:nth-child(14) {
  --delay: 0.7s;
  --dist: 13.475vmin;
  --size: 40.7vmin;
}
.animate ul li:nth-child(14)::after {
  --size: 20.35vmin;
}
.animate ul li:nth-child(14)::before {
  --size: 10.175vmin;
}
.animate ul li:nth-child(15) {
  --delay: 0.75s;
  --dist: 14.4375vmin;
  --size: 39.6vmin;
}
.animate ul li:nth-child(15)::after {
  --size: 19.8vmin;
}
.animate ul li:nth-child(15)::before {
  --size: 9.9vmin;
}
.animate ul li:nth-child(16) {
  --delay: 0.8s;
  --dist: 15.4vmin;
  --size: 38.5vmin;
}
.animate ul li:nth-child(16)::after {
  --size: 19.25vmin;
}
.animate ul li:nth-child(16)::before {
  --size: 9.625vmin;
}
.animate ul li:nth-child(17) {
  --delay: 0.85s;
  --dist: 16.3625vmin;
  --size: 37.4vmin;
}
.animate ul li:nth-child(17)::after {
  --size: 18.7vmin;
}
.animate ul li:nth-child(17)::before {
  --size: 9.35vmin;
}
.animate ul li:nth-child(18) {
  --delay: 0.9s;
  --dist: 17.325vmin;
  --size: 36.3vmin;
}
.animate ul li:nth-child(18)::after {
  --size: 18.15vmin;
}
.animate ul li:nth-child(18)::before {
  --size: 9.075vmin;
}
.animate ul li:nth-child(19) {
  --delay: 0.95s;
  --dist: 18.2875vmin;
  --size: 35.2vmin;
}
.animate ul li:nth-child(19)::after {
  --size: 17.6vmin;
}
.animate ul li:nth-child(19)::before {
  --size: 8.8vmin;
}
.animate ul li:nth-child(20) {
  --delay: 1s;
  --dist: 19.25vmin;
  --size: 34.1vmin;
}
.animate ul li:nth-child(20)::after {
  --size: 17.05vmin;
}
.animate ul li:nth-child(20)::before {
  --size: 8.525vmin;
}
.animate ul li:nth-child(21) {
  --delay: 1.05s;
  --dist: 20.2125vmin;
  --size: 33vmin;
}
.animate ul li:nth-child(21)::after {
  --size: 16.5vmin;
}
.animate ul li:nth-child(21)::before {
  --size: 8.25vmin;
}
.animate ul li:nth-child(22) {
  --delay: 1.1s;
  --dist: 21.175vmin;
  --size: 31.9vmin;
}
.animate ul li:nth-child(22)::after {
  --size: 15.95vmin;
}
.animate ul li:nth-child(22)::before {
  --size: 7.975vmin;
}
.animate ul li:nth-child(23) {
  --delay: 1.15s;
  --dist: 22.1375vmin;
  --size: 30.8vmin;
}
.animate ul li:nth-child(23)::after {
  --size: 15.4vmin;
}
.animate ul li:nth-child(23)::before {
  --size: 7.7vmin;
}
.animate ul li:nth-child(24) {
  --delay: 1.2s;
  --dist: 23.1vmin;
  --size: 29.7vmin;
}
.animate ul li:nth-child(24)::after {
  --size: 14.85vmin;
}
.animate ul li:nth-child(24)::before {
  --size: 7.425vmin;
}
.animate ul li:nth-child(25) {
  --delay: 1.25s;
  --dist: 24.0625vmin;
  --size: 28.6vmin;
}
.animate ul li:nth-child(25)::after {
  --size: 14.3vmin;
}
.animate ul li:nth-child(25)::before {
  --size: 7.15vmin;
}
.animate ul li:nth-child(26) {
  --delay: 1.3s;
  --dist: 25.025vmin;
  --size: 27.5vmin;
}
.animate ul li:nth-child(26)::after {
  --size: 13.75vmin;
}
.animate ul li:nth-child(26)::before {
  --size: 6.875vmin;
}
.animate ul li:nth-child(27) {
  --delay: 1.35s;
  --dist: 25.9875vmin;
  --size: 26.4vmin;
}
.animate ul li:nth-child(27)::after {
  --size: 13.2vmin;
}
.animate ul li:nth-child(27)::before {
  --size: 6.6vmin;
}
.animate ul li:nth-child(28) {
  --delay: 1.4s;
  --dist: 26.95vmin;
  --size: 25.3vmin;
}
.animate ul li:nth-child(28)::after {
  --size: 12.65vmin;
}
.animate ul li:nth-child(28)::before {
  --size: 6.325vmin;
}
.animate ul li:nth-child(29) {
  --delay: 1.45s;
  --dist: 27.9125vmin;
  --size: 24.2vmin;
}
.animate ul li:nth-child(29)::after {
  --size: 12.1vmin;
}
.animate ul li:nth-child(29)::before {
  --size: 6.05vmin;
}
.animate ul li:nth-child(30) {
  --delay: 1.5s;
  --dist: 28.875vmin;
  --size: 23.1vmin;
}
.animate ul li:nth-child(30)::after {
  --size: 11.55vmin;
}
.animate ul li:nth-child(30)::before {
  --size: 5.775vmin;
}
.animate ul li:nth-child(31) {
  --delay: 1.55s;
  --dist: 29.8375vmin;
  --size: 22vmin;
}
.animate ul li:nth-child(31)::after {
  --size: 11vmin;
}
.animate ul li:nth-child(31)::before {
  --size: 5.5vmin;
}
.animate ul li:nth-child(32) {
  --delay: 1.6s;
  --dist: 30.8vmin;
  --size: 20.9vmin;
}
.animate ul li:nth-child(32)::after {
  --size: 10.45vmin;
}
.animate ul li:nth-child(32)::before {
  --size: 5.225vmin;
}
.animate ul li:nth-child(33) {
  --delay: 1.65s;
  --dist: 31.7625vmin;
  --size: 19.8vmin;
}
.animate ul li:nth-child(33)::after {
  --size: 9.9vmin;
}
.animate ul li:nth-child(33)::before {
  --size: 4.95vmin;
}
.animate ul li:nth-child(34) {
  --delay: 1.7s;
  --dist: 32.725vmin;
  --size: 18.7vmin;
}
.animate ul li:nth-child(34)::after {
  --size: 9.35vmin;
}
.animate ul li:nth-child(34)::before {
  --size: 4.675vmin;
}
.animate ul li:nth-child(35) {
  --delay: 1.75s;
  --dist: 33.6875vmin;
  --size: 17.6vmin;
}
.animate ul li:nth-child(35)::after {
  --size: 8.8vmin;
}
.animate ul li:nth-child(35)::before {
  --size: 4.4vmin;
}
.animate ul li:nth-child(36) {
  --delay: 1.8s;
  --dist: 34.65vmin;
  --size: 16.5vmin;
}
.animate ul li:nth-child(36)::after {
  --size: 8.25vmin;
}
.animate ul li:nth-child(36)::before {
  --size: 4.125vmin;
}
.animate ul li:nth-child(37) {
  --delay: 1.85s;
  --dist: 35.6125vmin;
  --size: 15.4vmin;
}
.animate ul li:nth-child(37)::after {
  --size: 7.7vmin;
}
.animate ul li:nth-child(37)::before {
  --size: 3.85vmin;
}
.animate ul li:nth-child(38) {
  --delay: 1.9s;
  --dist: 36.575vmin;
  --size: 14.3vmin;
}
.animate ul li:nth-child(38)::after {
  --size: 7.15vmin;
}
.animate ul li:nth-child(38)::before {
  --size: 3.575vmin;
}
.animate ul li:nth-child(39) {
  --delay: 1.95s;
  --dist: 37.5375vmin;
  --size: 13.2vmin;
}
.animate ul li:nth-child(39)::after {
  --size: 6.6vmin;
}
.animate ul li:nth-child(39)::before {
  --size: 3.3vmin;
}
.animate ul li:nth-child(40) {
  --delay: 2s;
  --dist: 38.5vmin;
  --size: 12.1vmin;
}
.animate ul li:nth-child(40)::after {
  --size: 6.05vmin;
}
.animate ul li:nth-child(40)::before {
  --size: 3.025vmin;
}
.animate ul li:nth-child(41) {
  --delay: 2.05s;
  --dist: 39.4625vmin;
  --size: 11vmin;
}
.animate ul li:nth-child(41)::after {
  --size: 5.5vmin;
}
.animate ul li:nth-child(41)::before {
  --size: 2.75vmin;
}
.animate ul li:nth-child(42) {
  --delay: 2.1s;
  --dist: 40.425vmin;
  --size: 9.9vmin;
}
.animate ul li:nth-child(42)::after {
  --size: 4.95vmin;
}
.animate ul li:nth-child(42)::before {
  --size: 2.475vmin;
}
.animate ul li:nth-child(43) {
  --delay: 2.15s;
  --dist: 41.3875vmin;
  --size: 8.8vmin;
}
.animate ul li:nth-child(43)::after {
  --size: 4.4vmin;
}
.animate ul li:nth-child(43)::before {
  --size: 2.2vmin;
}
.animate ul li:nth-child(44) {
  --delay: 2.2s;
  --dist: 42.35vmin;
  --size: 7.7vmin;
}
.animate ul li:nth-child(44)::after {
  --size: 3.85vmin;
}
.animate ul li:nth-child(44)::before {
  --size: 1.925vmin;
}
.animate ul li:nth-child(45) {
  --delay: 2.25s;
  --dist: 43.3125vmin;
  --size: 6.6vmin;
}
.animate ul li:nth-child(45)::after {
  --size: 3.3vmin;
}
.animate ul li:nth-child(45)::before {
  --size: 1.65vmin;
}
.animate ul li:nth-child(46) {
  --delay: 2.3s;
  --dist: 44.275vmin;
  --size: 5.5vmin;
}
.animate ul li:nth-child(46)::after {
  --size: 2.75vmin;
}
.animate ul li:nth-child(46)::before {
  --size: 1.375vmin;
}
.animate ul li:nth-child(47) {
  --delay: 2.35s;
  --dist: 45.2375vmin;
  --size: 4.4vmin;
}
.animate ul li:nth-child(47)::after {
  --size: 2.2vmin;
}
.animate ul li:nth-child(47)::before {
  --size: 1.1vmin;
}
.animate ul li:nth-child(48) {
  --delay: 2.4s;
  --dist: 46.2vmin;
  --size: 3.3vmin;
}
.animate ul li:nth-child(48)::after {
  --size: 1.65vmin;
}
.animate ul li:nth-child(48)::before {
  --size: 0.825vmin;
}
.animate ul li:nth-child(49) {
  --delay: 2.45s;
  --dist: 47.1625vmin;
  --size: 2.2vmin;
}
.animate ul li:nth-child(49)::after {
  --size: 1.1vmin;
}
.animate ul li:nth-child(49)::before {
  --size: 0.55vmin;
}
.animate ul li:nth-child(50) {
  --delay: 2.5s;
  --dist: 48.125vmin;
  --size: 1.1vmin;
}
.animate ul li:nth-child(50)::after {
  --size: 0.55vmin;
}
.animate ul li:nth-child(50)::before {
  --size: 0.275vmin;
}
.animate ul li:nth-child(51) {
  --delay: 0.05s;
  --dist: -0.9625vmin;
  --size: 55vmin;
}
.animate ul li:nth-child(51)::after {
  --size: 27.5vmin;
}
.animate ul li:nth-child(51)::before {
  --size: 13.75vmin;
}
.animate ul li:nth-child(52) {
  --delay: 0.1s;
  --dist: -1.925vmin;
  --size: 53.9vmin;
}
.animate ul li:nth-child(52)::after {
  --size: 26.95vmin;
}
.animate ul li:nth-child(52)::before {
  --size: 13.475vmin;
}
.animate ul li:nth-child(53) {
  --delay: 0.15s;
  --dist: -2.8875vmin;
  --size: 52.8vmin;
}
.animate ul li:nth-child(53)::after {
  --size: 26.4vmin;
}
.animate ul li:nth-child(53)::before {
  --size: 13.2vmin;
}
.animate ul li:nth-child(54) {
  --delay: 0.2s;
  --dist: -3.85vmin;
  --size: 51.7vmin;
}
.animate ul li:nth-child(54)::after {
  --size: 25.85vmin;
}
.animate ul li:nth-child(54)::before {
  --size: 12.925vmin;
}
.animate ul li:nth-child(55) {
  --delay: 0.25s;
  --dist: -4.8125vmin;
  --size: 50.6vmin;
}
.animate ul li:nth-child(55)::after {
  --size: 25.3vmin;
}
.animate ul li:nth-child(55)::before {
  --size: 12.65vmin;
}
.animate ul li:nth-child(56) {
  --delay: 0.3s;
  --dist: -5.775vmin;
  --size: 49.5vmin;
}
.animate ul li:nth-child(56)::after {
  --size: 24.75vmin;
}
.animate ul li:nth-child(56)::before {
  --size: 12.375vmin;
}
.animate ul li:nth-child(57) {
  --delay: 0.35s;
  --dist: -6.7375vmin;
  --size: 48.4vmin;
}
.animate ul li:nth-child(57)::after {
  --size: 24.2vmin;
}
.animate ul li:nth-child(57)::before {
  --size: 12.1vmin;
}
.animate ul li:nth-child(58) {
  --delay: 0.4s;
  --dist: -7.7vmin;
  --size: 47.3vmin;
}
.animate ul li:nth-child(58)::after {
  --size: 23.65vmin;
}
.animate ul li:nth-child(58)::before {
  --size: 11.825vmin;
}
.animate ul li:nth-child(59) {
  --delay: 0.45s;
  --dist: -8.6625vmin;
  --size: 46.2vmin;
}
.animate ul li:nth-child(59)::after {
  --size: 23.1vmin;
}
.animate ul li:nth-child(59)::before {
  --size: 11.55vmin;
}
.animate ul li:nth-child(60) {
  --delay: 0.5s;
  --dist: -9.625vmin;
  --size: 45.1vmin;
}
.animate ul li:nth-child(60)::after {
  --size: 22.55vmin;
}
.animate ul li:nth-child(60)::before {
  --size: 11.275vmin;
}
.animate ul li:nth-child(61) {
  --delay: 0.55s;
  --dist: -10.5875vmin;
  --size: 44vmin;
}
.animate ul li:nth-child(61)::after {
  --size: 22vmin;
}
.animate ul li:nth-child(61)::before {
  --size: 11vmin;
}
.animate ul li:nth-child(62) {
  --delay: 0.6s;
  --dist: -11.55vmin;
  --size: 42.9vmin;
}
.animate ul li:nth-child(62)::after {
  --size: 21.45vmin;
}
.animate ul li:nth-child(62)::before {
  --size: 10.725vmin;
}
.animate ul li:nth-child(63) {
  --delay: 0.65s;
  --dist: -12.5125vmin;
  --size: 41.8vmin;
}
.animate ul li:nth-child(63)::after {
  --size: 20.9vmin;
}
.animate ul li:nth-child(63)::before {
  --size: 10.45vmin;
}
.animate ul li:nth-child(64) {
  --delay: 0.7s;
  --dist: -13.475vmin;
  --size: 40.7vmin;
}
.animate ul li:nth-child(64)::after {
  --size: 20.35vmin;
}
.animate ul li:nth-child(64)::before {
  --size: 10.175vmin;
}
.animate ul li:nth-child(65) {
  --delay: 0.75s;
  --dist: -14.4375vmin;
  --size: 39.6vmin;
}
.animate ul li:nth-child(65)::after {
  --size: 19.8vmin;
}
.animate ul li:nth-child(65)::before {
  --size: 9.9vmin;
}
.animate ul li:nth-child(66) {
  --delay: 0.8s;
  --dist: -15.4vmin;
  --size: 38.5vmin;
}
.animate ul li:nth-child(66)::after {
  --size: 19.25vmin;
}
.animate ul li:nth-child(66)::before {
  --size: 9.625vmin;
}
.animate ul li:nth-child(67) {
  --delay: 0.85s;
  --dist: -16.3625vmin;
  --size: 37.4vmin;
}
.animate ul li:nth-child(67)::after {
  --size: 18.7vmin;
}
.animate ul li:nth-child(67)::before {
  --size: 9.35vmin;
}
.animate ul li:nth-child(68) {
  --delay: 0.9s;
  --dist: -17.325vmin;
  --size: 36.3vmin;
}
.animate ul li:nth-child(68)::after {
  --size: 18.15vmin;
}
.animate ul li:nth-child(68)::before {
  --size: 9.075vmin;
}
.animate ul li:nth-child(69) {
  --delay: 0.95s;
  --dist: -18.2875vmin;
  --size: 35.2vmin;
}
.animate ul li:nth-child(69)::after {
  --size: 17.6vmin;
}
.animate ul li:nth-child(69)::before {
  --size: 8.8vmin;
}
.animate ul li:nth-child(70) {
  --delay: 1s;
  --dist: -19.25vmin;
  --size: 34.1vmin;
}
.animate ul li:nth-child(70)::after {
  --size: 17.05vmin;
}
.animate ul li:nth-child(70)::before {
  --size: 8.525vmin;
}
.animate ul li:nth-child(71) {
  --delay: 1.05s;
  --dist: -20.2125vmin;
  --size: 33vmin;
}
.animate ul li:nth-child(71)::after {
  --size: 16.5vmin;
}
.animate ul li:nth-child(71)::before {
  --size: 8.25vmin;
}
.animate ul li:nth-child(72) {
  --delay: 1.1s;
  --dist: -21.175vmin;
  --size: 31.9vmin;
}
.animate ul li:nth-child(72)::after {
  --size: 15.95vmin;
}
.animate ul li:nth-child(72)::before {
  --size: 7.975vmin;
}
.animate ul li:nth-child(73) {
  --delay: 1.15s;
  --dist: -22.1375vmin;
  --size: 30.8vmin;
}
.animate ul li:nth-child(73)::after {
  --size: 15.4vmin;
}
.animate ul li:nth-child(73)::before {
  --size: 7.7vmin;
}
.animate ul li:nth-child(74) {
  --delay: 1.2s;
  --dist: -23.1vmin;
  --size: 29.7vmin;
}
.animate ul li:nth-child(74)::after {
  --size: 14.85vmin;
}
.animate ul li:nth-child(74)::before {
  --size: 7.425vmin;
}
.animate ul li:nth-child(75) {
  --delay: 1.25s;
  --dist: -24.0625vmin;
  --size: 28.6vmin;
}
.animate ul li:nth-child(75)::after {
  --size: 14.3vmin;
}
.animate ul li:nth-child(75)::before {
  --size: 7.15vmin;
}
.animate ul li:nth-child(76) {
  --delay: 1.3s;
  --dist: -25.025vmin;
  --size: 27.5vmin;
}
.animate ul li:nth-child(76)::after {
  --size: 13.75vmin;
}
.animate ul li:nth-child(76)::before {
  --size: 6.875vmin;
}
.animate ul li:nth-child(77) {
  --delay: 1.35s;
  --dist: -25.9875vmin;
  --size: 26.4vmin;
}
.animate ul li:nth-child(77)::after {
  --size: 13.2vmin;
}
.animate ul li:nth-child(77)::before {
  --size: 6.6vmin;
}
.animate ul li:nth-child(78) {
  --delay: 1.4s;
  --dist: -26.95vmin;
  --size: 25.3vmin;
}
.animate ul li:nth-child(78)::after {
  --size: 12.65vmin;
}
.animate ul li:nth-child(78)::before {
  --size: 6.325vmin;
}
.animate ul li:nth-child(79) {
  --delay: 1.45s;
  --dist: -27.9125vmin;
  --size: 24.2vmin;
}
.animate ul li:nth-child(79)::after {
  --size: 12.1vmin;
}
.animate ul li:nth-child(79)::before {
  --size: 6.05vmin;
}
.animate ul li:nth-child(80) {
  --delay: 1.5s;
  --dist: -28.875vmin;
  --size: 23.1vmin;
}
.animate ul li:nth-child(80)::after {
  --size: 11.55vmin;
}
.animate ul li:nth-child(80)::before {
  --size: 5.775vmin;
}
.animate ul li:nth-child(81) {
  --delay: 1.55s;
  --dist: -29.8375vmin;
  --size: 22vmin;
}
.animate ul li:nth-child(81)::after {
  --size: 11vmin;
}
.animate ul li:nth-child(81)::before {
  --size: 5.5vmin;
}
.animate ul li:nth-child(82) {
  --delay: 1.6s;
  --dist: -30.8vmin;
  --size: 20.9vmin;
}
.animate ul li:nth-child(82)::after {
  --size: 10.45vmin;
}
.animate ul li:nth-child(82)::before {
  --size: 5.225vmin;
}
.animate ul li:nth-child(83) {
  --delay: 1.65s;
  --dist: -31.7625vmin;
  --size: 19.8vmin;
}
.animate ul li:nth-child(83)::after {
  --size: 9.9vmin;
}
.animate ul li:nth-child(83)::before {
  --size: 4.95vmin;
}
.animate ul li:nth-child(84) {
  --delay: 1.7s;
  --dist: -32.725vmin;
  --size: 18.7vmin;
}
.animate ul li:nth-child(84)::after {
  --size: 9.35vmin;
}
.animate ul li:nth-child(84)::before {
  --size: 4.675vmin;
}
.animate ul li:nth-child(85) {
  --delay: 1.75s;
  --dist: -33.6875vmin;
  --size: 17.6vmin;
}
.animate ul li:nth-child(85)::after {
  --size: 8.8vmin;
}
.animate ul li:nth-child(85)::before {
  --size: 4.4vmin;
}
.animate ul li:nth-child(86) {
  --delay: 1.8s;
  --dist: -34.65vmin;
  --size: 16.5vmin;
}
.animate ul li:nth-child(86)::after {
  --size: 8.25vmin;
}
.animate ul li:nth-child(86)::before {
  --size: 4.125vmin;
}
.animate ul li:nth-child(87) {
  --delay: 1.85s;
  --dist: -35.6125vmin;
  --size: 15.4vmin;
}
.animate ul li:nth-child(87)::after {
  --size: 7.7vmin;
}
.animate ul li:nth-child(87)::before {
  --size: 3.85vmin;
}
.animate ul li:nth-child(88) {
  --delay: 1.9s;
  --dist: -36.575vmin;
  --size: 14.3vmin;
}
.animate ul li:nth-child(88)::after {
  --size: 7.15vmin;
}
.animate ul li:nth-child(88)::before {
  --size: 3.575vmin;
}
.animate ul li:nth-child(89) {
  --delay: 1.95s;
  --dist: -37.5375vmin;
  --size: 13.2vmin;
}
.animate ul li:nth-child(89)::after {
  --size: 6.6vmin;
}
.animate ul li:nth-child(89)::before {
  --size: 3.3vmin;
}
.animate ul li:nth-child(90) {
  --delay: 2s;
  --dist: -38.5vmin;
  --size: 12.1vmin;
}
.animate ul li:nth-child(90)::after {
  --size: 6.05vmin;
}
.animate ul li:nth-child(90)::before {
  --size: 3.025vmin;
}
.animate ul li:nth-child(91) {
  --delay: 2.05s;
  --dist: -39.4625vmin;
  --size: 11vmin;
}
.animate ul li:nth-child(91)::after {
  --size: 5.5vmin;
}
.animate ul li:nth-child(91)::before {
  --size: 2.75vmin;
}
.animate ul li:nth-child(92) {
  --delay: 2.1s;
  --dist: -40.425vmin;
  --size: 9.9vmin;
}
.animate ul li:nth-child(92)::after {
  --size: 4.95vmin;
}
.animate ul li:nth-child(92)::before {
  --size: 2.475vmin;
}
.animate ul li:nth-child(93) {
  --delay: 2.15s;
  --dist: -41.3875vmin;
  --size: 8.8vmin;
}
.animate ul li:nth-child(93)::after {
  --size: 4.4vmin;
}
.animate ul li:nth-child(93)::before {
  --size: 2.2vmin;
}
.animate ul li:nth-child(94) {
  --delay: 2.2s;
  --dist: -42.35vmin;
  --size: 7.7vmin;
}
.animate ul li:nth-child(94)::after {
  --size: 3.85vmin;
}
.animate ul li:nth-child(94)::before {
  --size: 1.925vmin;
}
.animate ul li:nth-child(95) {
  --delay: 2.25s;
  --dist: -43.3125vmin;
  --size: 6.6vmin;
}
.animate ul li:nth-child(95)::after {
  --size: 3.3vmin;
}
.animate ul li:nth-child(95)::before {
  --size: 1.65vmin;
}
.animate ul li:nth-child(96) {
  --delay: 2.3s;
  --dist: -44.275vmin;
  --size: 5.5vmin;
}
.animate ul li:nth-child(96)::after {
  --size: 2.75vmin;
}
.animate ul li:nth-child(96)::before {
  --size: 1.375vmin;
}
.animate ul li:nth-child(97) {
  --delay: 2.35s;
  --dist: -45.2375vmin;
  --size: 4.4vmin;
}
.animate ul li:nth-child(97)::after {
  --size: 2.2vmin;
}
.animate ul li:nth-child(97)::before {
  --size: 1.1vmin;
}
.animate ul li:nth-child(98) {
  --delay: 2.4s;
  --dist: -46.2vmin;
  --size: 3.3vmin;
}
.animate ul li:nth-child(98)::after {
  --size: 1.65vmin;
}
.animate ul li:nth-child(98)::before {
  --size: 0.825vmin;
}
.animate ul li:nth-child(99) {
  --delay: 2.45s;
  --dist: -47.1625vmin;
  --size: 2.2vmin;
}
.animate ul li:nth-child(99)::after {
  --size: 1.1vmin;
}
.animate ul li:nth-child(99)::before {
  --size: 0.55vmin;
}
.animate ul li:nth-child(100) {
  --delay: 2.5s;
  --dist: -48.125vmin;
  --size: 1.1vmin;
}
.animate ul li:nth-child(100)::after {
  --size: 0.55vmin;
}
.animate ul li:nth-child(100)::before {
  --size: 0.275vmin;
}
.animate li {
  animation: anim-h 2.5s var(--delay, 0s) ease-in-out infinite alternate;
  box-shadow: 0 0 2.75vmin 0.6875vmin rgba(61, 132, 168, 0.25) inset;
}
.animate li, .animate li::after, .animate li::before {
  height: var(--size);
  width: var(--size);
  position: absolute;
}
.animate li::before, .animate li::after {
  content: "";
}
.animate li::after {
  animation: anim-s 2.5s ease-in-out infinite alternate;
  border-radius: 50%;
  box-shadow: 0 0 1.375vmin 0.34375vmin rgba(70, 205, 207, 0.25) inset;
}
.animate li::before {
  animation: anim-spin 2.5s var(--delay, 0s) linear infinite;
  box-shadow: 0 0 0.6875vmin 0.171875vmin rgba(171, 237, 216, 0.75) inset;
}
.animate li:last-child {
  --size: 55vmin;
}
.animate li:last-child::after {
  --size: 27.5vmin;
}
.animate li:last-child::before {
  --size: 13.75vmin;
}

.intro {
  padding: 5rem 0;
  margin-top: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}
.intro #overlay {
  position: relative;
  max-width: 85rem;
  padding: 5rem;
  margin: 0 auto;
  z-index: 9;
}
.intro #overlay p {
  color: white;
  position: relative;
  z-index: 9;
}
.intro #overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  background: rgba(0, 0, 0, 0.8);
  filter: blur(14px);
  -o-filter: blur(14px);
  -ms-filter: blur(14px);
  -moz-filter: blur(14px);
  -webkit-filter: blur(14px);
}

@media only screen and (max-width: 850px) {
  .intro #overlay {
    padding: 5%;
  }
}
.featured-projects {
  position: relative;
  padding: 14rem 0 8rem;
  background-color: rgba(0, 0, 0, 0.8);
}
.featured-projects h2 {
  color: white;
  text-align: center;
  flex: 0 0 100%;
  position: relative;
  top: -8rem;
}
.featured-projects .project-info {
  flex: 0 0 100%;
  position: relative;
}
.featured-projects .project-info .grey-line {
  height: calc(100% + 16rem);
  width: 1px;
  background-color: white;
  position: absolute;
  top: -8rem;
  z-index: 4;
  left: 50%;
}
.featured-projects .project-info:first-of-type .grey-line:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  z-index: 2;
}
.featured-projects .project-info:last-of-type .grey-line:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  z-index: 2;
}
.featured-projects .project-info .project-line-container {
  display: flex;
  width: 50%;
  margin: 0 0 2.5rem;
  position: relative;
}
.featured-projects .project-info .project-line-container .project-title {
  color: white;
  font-size: 2.5rem;
  margin: 0;
  border-radius: 10px;
  position: relative;
  z-index: 10;
  background-color: black;
  padding: 1rem;
  display: inline-block;
  line-height: 1;
  opacity: 0;
  transition: all ease-in-out 0.2s;
  transition-delay: 0.3s;
}
.featured-projects .project-info .project-line-container .blue-line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background-color: white;
  z-index: 9;
  right: 0;
  width: 0;
  transition: all ease-in-out 0.3s;
}
.featured-projects .project-info .project-box {
  background-color: black;
  padding: 2rem;
  border: 1px solid white;
  width: 45%;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all ease-in-out 0.5s;
  transition-delay: 0.7s;
  position: relative;
}
.featured-projects .project-info .project-box * {
  color: white;
}
.featured-projects .project-info .project-box ul {
  width: 100%;
}
.featured-projects .project-info .project-box ul li {
  border: 1px solid #3d84a8;
  padding: 0.25rem 0.75rem;
  margin: 0 1rem 1rem 0;
  border-radius: 5px;
  font-size: 1.3rem;
}
.featured-projects .project-info .project-box ul li:last-of-type {
  margin-right: 0;
}
.featured-projects .project-info .project-box .banner-video {
  width: 100%;
  height: auto;
}
.featured-projects .project-info .project-box img, .featured-projects .project-info .project-box .banner-video {
  width: 100%;
  height: auto;
  margin: 0 0 2rem;
}
.featured-projects .project-info:nth-of-type(even) {
  margin-left: 55%;
}
.featured-projects .project-info:nth-of-type(even) .grey-line {
  left: -5%;
}
.featured-projects .project-info:nth-of-type(even) .project-line-container .blue-line {
  transform: translate(-100%, -50%);
  right: 110%;
  width: 0;
}
.featured-projects .project-info:nth-of-type(even) .project-line-container .blue-line:before {
  left: 0;
  transform: translate(-50%, -50%);
}

.animated-project.project-box-active .project-title {
  opacity: 1 !important;
}
.animated-project.project-box-active .blue-line {
  width: 100% !important;
}

.project-info:nth-of-type(even) .animated-project.project-box-active .blue-line {
  width: 10% !important;
  right: 90% !important;
}

@-moz-document url-prefix() {
  .featured-projects .project-info .project-box p:last-of-type {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 650px) {
  .featured-projects .project-info {
    margin-left: 0;
  }
  .featured-projects .project-info .grey-line {
    left: 0;
  }
  .featured-projects .project-info:first-of-type .grey-line:before {
    width: 20px;
    height: 20px;
  }
  .featured-projects .project-info:last-of-type .grey-line:before {
    width: 20px;
    height: 20px;
  }
  .featured-projects .project-info .project-line-container {
    width: 100%;
    justify-content: flex-end;
  }
  .featured-projects .project-info .project-line-container .project-title {
    margin: 0;
    font-size: 2rem;
  }
  .featured-projects .project-info .project-line-container .blue-line {
    right: auto;
    left: 0;
  }
  .featured-projects .project-info .project-line-container .blue-line:before {
    right: auto;
    left: 10px;
    transform: translate(-100%, -50%);
  }
  .featured-projects .project-info .project-box {
    width: 95%;
    margin: 0 0 5% 5%;
  }
  .featured-projects .project-info:nth-of-type(even) {
    margin-left: 0;
  }
  .featured-projects .project-info:nth-of-type(even) .grey-line {
    left: 0;
  }
  .featured-projects .project-info:nth-of-type(even) .project-line-container .blue-line {
    width: 0% !important;
    right: 0% !important;
    transform: translate(0, 0);
  }
  .featured-projects .project-info:nth-of-type(even) .animated-project.project-box-active .blue-line {
    width: 100% !important;
  }
}
.sites {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 5rem 0;
}

.accordion-item--title {
  padding: 1rem 1rem 4rem;
  user-select: none;
  cursor: pointer;
  position: relative;
  color: #3d84a8;
  font-size: 2.5rem;
  text-align: center;
}
.accordion-item--title img {
  width: 3rem;
  height: 3rem;
}
.accordion-item--title:hover .accordion-item--toggle {
  top: 6rem;
}
.accordion-item--title.active + .accordion-item--content {
  opacity: 1;
}
.accordion-item--title.active .accordion-item--toggle {
  top: 6rem;
}
.accordion-item--title .accordion-item--toggle {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  transition: all ease-in-out 0.3s;
  height: 3rem;
}

.accordion-item--content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
}
.accordion-item--content .accordion-content--inner {
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.accordion-item--content .accordion-content--inner li {
  flex: 0 0 30%;
  margin-right: 5%;
}
.accordion-item--content .accordion-content--inner li a {
  color: white;
  font-size: 1.6rem;
}
.accordion-item--content .accordion-content--inner li a:hover {
  color: #3d84a8;
}
.accordion-item--content .accordion-content--inner li:nth-of-type(3n+3) {
  margin-right: 0;
}
.accordion-item--content .accordion-content--inner li:nth-of-type(1n+4) {
  margin-top: 1rem;
}

@media only screen and (max-width: 650px) {
  .accordion-item--title {
    font-size: 2rem;
    padding: 1rem 1rem 3rem;
  }
  .accordion-item--title img {
    width: 2.5rem;
    height: 2.5rem;
  }
  .accordion-item--title .accordion-item--toggle {
    height: 2.5rem;
    top: 4rem;
  }
  .accordion-item--title:hover .accordion-item--toggle {
    top: 4.75rem;
  }
  .accordion-item--title.active .accordion-item--toggle {
    top: 4.75rem;
  }
  .accordion-item--content .accordion-content--inner li {
    flex: 0 0 47.5%;
    margin-right: 5% !important;
  }
  .accordion-item--content .accordion-content--inner li:nth-of-type(2n+2) {
    margin-right: 0 !important;
  }
  .accordion-item--content .accordion-content--inner li:nth-of-type(1n+3) {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 450px) {
  .accordion-item--title {
    font-size: 1.8rem;
  }
  .accordion-item--title:hover .accordion-item--toggle {
    top: 4.3rem;
  }
  .accordion-item--title.active .accordion-item--toggle {
    top: 4.3rem;
  }
  .accordion .accordion-item--content .accordion-content--inner li {
    flex: 0 0 100%;
    margin: 0 0 1rem !important;
  }
  .accordion .accordion-item--content .accordion-content--inner li:last-of-type {
    margin: 0 !important;
  }
}
footer {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
footer .container {
  text-align: center;
}
footer a {
  margin-right: 3rem;
  background-color: #3d84a8;
  width: 5rem;
  height: 5rem;
  display: inline-block;
  border-radius: 5px;
  position: relative;
  border: 1px solid #3d84a8;
}
footer a img {
  width: auto;
  height: auto;
  max-width: 3rem;
  max-height: 3rem;
  transition: all ease-in-out 0.2s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
footer a:last-of-type {
  margin: 0;
}
footer a:hover {
  background: transparent;
}

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