@media only screen and (width <= 767px) {
  body {
    font-size: 18px !important;
  }

  h1 {
    font-size: 34px !important;
  }

  .button {
    height: 40px !important;
  }

  body header {
    padding: 10px 30px !important;
  }

  body header nav a.logo img {
    width: 130px !important;
  }

  body header nav a:not(.logo), .toggle.hidden {
    display: none !important;
  }

  .toggle:not(.hidden) {
    display: block !important;
  }

  .mobile-menu:not(.hidden) {
    z-index: 2;
    background-color: var(--blue-1);
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: calc(100vh - 54px);
    padding: 100px 40px;
    position: fixed;
    top: 54px;
    display: flex !important;
  }

  .mobile-menu a {
    font-size: 1rem;
    margin: 20px 0 !important;
  }

  .mobile-menu a:not(.button) {
    color: var(--main-background);
  }

  body main > section {
    padding: 0 !important;
  }

  body main > section div.container {
    max-width: 100vw !important;
    padding: 60px 30px !important;
  }

  body footer {
    height: auto !important;
    padding: 30px !important;
  }

  body footer section div {
    padding: 0 30px !important;
  }

  body footer section div a {
    font-size: .5rem !important;
  }

  body section.cookie-banner {
    width: 100% !important;
    max-width: 100% !important;
  }

  body section.cookie-banner div.bottom span.cookie-button {
    width: 120px !important;
  }

  body section.cookie-banner div.bottom > a.cookie-button {
    width: 200px !important;
  }
}

@font-face {
  font-family: Montserrat;
  src: url("../Montserrat.c16ad322.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: Nunito;
  src: url("../Nunito-VariableFont_wght.e400b0f6.ttf") format("truetype");
  font-display: swap;
}

* {
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
}

html, body {
  -webkit-tap-highlight-color: #fff0;
  scroll-behavior: smooth;
  letter-spacing: 1px;
  background-color: var(--blue-1);
  color: var(--gray-text);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Nunito, Montserrat, "system-ui", "sans-serif";
  font-size: 22px;
  display: inline-block;
}

body {
  flex-direction: column;
  align-items: center;
  display: flex;
}

h1 {
  font-size: 60px;
}

h1, h2, h3, h4, h5 {
  text-align: center;
  margin: 0 0 15px;
  font-weight: bold;
}

a {
  color: inherit;
  text-decoration: none;
}

:root {
  --light-white: #f4f3f3;
  --main-background: #fcfcfc;
  --blue-primary: #03a9f4;
  --blue-1: #0a192f;
  --blue-2: #6f2af5;
  --blue-3: #7d8cf9;
  --blue-4: #b5dbe8;
  --blue-5: #8592ec;
  --red-1: #e91e63;
  --gray-text: #5c5d68;
  --gray-background: #f2f2f2;
  --orange-primary: #ff9800;
  --violet-primary: #8c52ff;
}

.button {
  border: 1px solid var(--blue-primary);
  color: var(--main-background);
  cursor: pointer;
  z-index: 1;
  pointer-events: auto;
  background-color: var(--blue-primary);
  border-radius: 25px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  height: 50px;
  margin-top: 20px;
  padding: 7px 20px;
  font-weight: 300;
  display: flex;
}

.bold {
  font-weight: 600;
}

div.container > div.separator {
  background-color: var(--gray-text);
  width: 100%;
  height: 1px;
  margin: 20px 0;
}

body div.useragent {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
}

body div.useragent img {
  height: 70px;
  margin-bottom: 10px;
}

body header {
  z-index: 1;
  backdrop-filter: blur(10px);
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px 60px;
  transition: top .5s;
  display: flex;
  position: fixed;
  top: 0;
}

body header.hidden {
  top: -100%;
}

body header nav {
  align-items: center;
  width: 100%;
  display: flex;
}

nav a {
  color: var(--light-white);
  font-size: .8rem;
}

body header nav a:not(:last-child) {
  margin-right: 10px;
}

nav a.logo img {
  width: 170px;
}

nav a.button {
  border-color: var(--red-1);
  background-color: var(--red-1);
  border-radius: 50px;
  height: 30px;
  margin-top: 0;
  font-weight: 400;
}

body header nav img.menu, body header nav img.close {
  cursor: pointer;
  display: none;
}

.mobile-menu.hidden {
  display: none;
}

body main {
  z-index: 0;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: hidden;
  flex: 1 0 auto !important;
}

body main > section {
  z-index: 1;
  flex-shrink: 0;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  padding: 8px 0;
  display: flex;
  position: relative;
}

body main > section .container {
  padding: 120px 80px;
}

body footer {
  z-index: 1;
  color: var(--light-white);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
  padding: 60px;
  display: flex;
}

body footer section {
  border-radius: 50px;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  margin-bottom: 0;
  padding: 60px;
  display: flex;
}

body footer section div {
  flex-direction: column;
  padding: 0 60px;
  display: flex;
}

body footer section div h3 {
  text-align: left;
  color: var(--blue-3);
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: bold;
}

body footer section div a {
  font-size: .8rem;
  font-weight: 100;
  line-height: 1.2rem;
}

body footer section div a:hover {
  color: var(--blue-3);
}

body section.cookie-banner {
  background-color: var(--main-background);
  border-top: 1px solid var(--main-background);
  appearance: none;
  z-index: 200;
  border: none;
  outline: none;
  flex-direction: column;
  justify-content: center;
  width: 500px;
  padding: 20px;
  font-size: .7rem;
  transition: bottom .5s;
  display: flex;
  position: fixed;
  bottom: 10px;
  left: 10px;
  box-shadow: 0 2px 6px 2px #00000026;
}

body section.cookie-banner.hidden {
  bottom: -100%;
}

body section.cookie-banner > span {
  margin-bottom: 15px;
  line-height: unset !important;
}

body section.cookie-banner a {
  color: #1d6af3;
}

body section.cookie-banner div.bottom {
  align-items: center;
  display: flex;
}

body section.cookie-banner div.bottom span.cookie-button {
  cursor: pointer;
  color: #0a61f2;
  border: 1px solid #0a61f2;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 40px;
  margin-right: 20px;
  padding: 5px 30px;
  line-height: 40px;
  display: flex;
}

body section.cookie-banner div.bottom > a.cookie-button {
  cursor: pointer;
  color: #202b40;
  border: 1px solid #202b40;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 40px;
  margin-right: 20px;
  padding: 5px 30px;
  font-weight: 0;
  line-height: 40px;
  display: flex;
}

body span.early-bird {
  margin-right: auto;
  top: 10px;
  right: 10px;
  cursor: default !important;
  color: #03a9f4 !important;
  background-color: #e5f1f9 !important;
  border-radius: 3px !important;
  align-items: center !important;
  height: 20px !important;
  padding: 5px !important;
  font-size: .7rem !important;
  font-weight: bold !important;
  display: flex !important;
}

@media only screen and (width <= 767px) {
  body main > section > div.container {
    padding-top: 100px !important;
  }
}

h1, section .container {
  color: var(--light-white);
}

section .container * {
  text-align: left;
}

section .container p {
  font-size: .9rem ïmportant;
  margin-bottom: 30px;
}

section .container p a {
  color: var(--blue-3);
  text-decoration: none;
}
/*# sourceMappingURL=index.976964df.css.map */
