@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) {
  .intro {
    margin-right: 0 !important;
    padding-top: 80px !important;
  }

  .intro .container {
    padding-bottom: 20px !important;
  }

  .intro .container .period-type {
    margin-bottom: 30px;
    width: 100% !important;
  }

  .intro .container .period-type .period {
    padding: 10px !important;
  }

  .intro .container .period-type .period span {
    font-size: 12px;
  }

  .plans .container {
    padding-top: 0 !important;
  }

  .plans .container .plans-container {
    flex-direction: column;
    max-width: 100% !important;
  }

  .plans .container .plans-container .columns {
    overflow: auto;
    max-width: 100% !important;
  }

  .plans .container .plans-container .columns .plan {
    min-width: 85% !important;
    margin: 15px !important;
    box-shadow: 0 7px 29px #64646f33 !important;
  }

  .plans .container .plans-container .explainer {
    margin-left: 0 !important;
  }

  .plans .container > a {
    margin-top: 40px !important;
    margin-right: 0 !important;
  }
}

.intro {
  padding-right: 320px;
}

.intro .container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 40px;
  display: flex;
}

.intro .container h1 {
  color: var(--red-1);
}

.intro .container h3 {
  color: var(--gray-text);
}

.intro .container .period-type {
  margin-top: 30px;
  display: inline-flex;
}

.intro .container .period-type .period {
  cursor: pointer;
  border: 1px solid var(--gray-text);
  border-radius: 20px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  max-width: 170px;
  padding: 5px 10px;
  display: flex;
}

.intro .container .period-type .period:first-child {
  margin-right: 10px;
}

.intro .container .period-type .period span {
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
}

.intro .container .period-type .period.selected {
  border: 1px solid var(--blue-3);
  color: var(--blue-3);
}

.intro .container .period-type .period.selected span {
  color: var(--blue-3);
}

.intro .container h3 {
  color: var(--light-white);
  margin-top: 20px;
}

.intro .container h3 span {
  color: #f4ff00;
  font-size: 1.8rem;
}

#f4ff00 .plans {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.plans :not(:is(h1, h2, h3)) {
  font-size: .8rem;
}

.plans .container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  display: flex;
}

.plans .container .plans-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.plans .container .plans-container .columns {
  flex-direction: row;
  flex: 3;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  display: flex;
}

.plans .container .plans-container .columns .plan {
  background-color: #152742;
  border-radius: 20px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  display: flex;
}

.plans .container .plans-container .columns .plan:nth-child(2) {
  margin: 0 15px;
  padding: 50px 40px;
}

.plans .container .plans-container .columns .plan .header {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.plans .container .plans-container .columns .plan .header h2 {
  color: var(--red-1);
  text-align: left;
  width: 100%;
}

.plans .container .plans-container .columns .plan .price {
  flex-direction: column;
  width: 100%;
  padding-bottom: 30px;
  display: flex;
}

.plans .container .plans-container .columns .plan .price div.value {
  display: flex;
}

.plans .container .plans-container .columns .plan .price div.value span:first-child {
  color: var(--light-white);
  margin-right: 5px;
  font-size: 20px;
}

.plans .container .plans-container .columns .plan .price div.value span:nth-child(2) {
  color: var(--light-white);
  font-weight: bold;
}

.plans .container .plans-container .columns .plan .price div.value span:last-child {
  color: #9e9e9e;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 10px;
  font-size: 20px;
  text-decoration: line-through;
}

main.monthly .plans .container .plans-container .columns .plan .price div.value span:last-child {
  display: none;
}

.plans .container .plans-container .columns .plan .price div.value * {
  font-size: 40px;
}

.plans .container .plans-container .columns .plan .price > span {
  color: #9e9e9e;
  margin-top: 5px;
  padding-left: 20px;
  font-size: .7rem;
  font-weight: 500;
}

.plans .container .plans-container .columns .plan .amounts {
  color: var(--light-white);
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
  padding-bottom: 30px;
}

.plans .container .plans-container .columns .plan .features {
  color: var(--light-white);
  padding-bottom: 15px;
}

.plans .container .plans-container .columns .plan :is(.features, .amounts) {
  width: 100%;
  padding-top: 30px;
}

.plans .container .plans-container .columns .plan :is(.features, .amounts) ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plans .container .plans-container .columns .plan :is(.features, .amounts) ul li {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.plans .container .plans-container .columns .plan :is(.features, .amounts) ul li:last-child {
  margin-bottom: 0;
}

.plans .container .plans-container .columns .plan .features ul li img {
  border: 1px solid var(--blue-3);
  border-radius: 50%;
  width: 25px;
  margin-right: 15px;
  padding: 3px;
}

.plans .container .plans-container .columns .plan .footer {
  width: 100%;
}

.plans .container .plans-container .columns .plan .footer a {
  background-color: var(--orange-primary);
  border-color: var(--orange-primary);
  width: 100%;
  font-weight: 600;
}

.plans .container .plans-container .explainer {
  flex: 1;
  align-self: flex-start;
  margin-top: 20px;
  margin-left: 30px;
}

.plans .container .plans-container .explainer div.top {
  color: var(--light-white);
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 30px;
  display: flex;
}

.plans .container .plans-container .explainer div.top h3 {
  text-align: left;
  color: var(--blue-3);
  margin-bottom: 0;
}

.plans .container .plans-container .explainer div.top p {
  margin-top: 10px;
  margin-bottom: 0;
}

.plans .container .plans-container .explainer div.top p span {
  color: var(--orange-primary);
  font-weight: 600;
}

.plans .container .plans-container .explainer div.bottom p {
  font-size: .7rem;
}

.plans .container .plans-container .explainer div.bottom p span:first-child {
  color: var(--blue-3);
}

.plans .container .plans-container .explainer div.bottom p span:not(:first-child) {
  font-weight: 500;
}

.plans .container > a {
  color: #7c8afa;
  margin-right: 270px;
  font-weight: 600;
}
/*# sourceMappingURL=index.ee67154d.css.map */
