@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 {
    min-height: 100vh !important;
  }

  .intro .container {
    flex-direction: column-reverse !important;
    justify-content: center !important;
    padding-top: 100px !important;
  }

  .intro .container h1 {
    text-align: center !important;
    width: 100% !important;
    margin-top: 60px !important;
    font-size: 2rem !important;
  }

  .intro .container div.right {
    min-width: unset !important;
    max-width: 100% !important;
    height: 250px !important;
  }

  .intro .container div.right img.center {
    width: 65px !important;
    height: 65px !important;
  }

  .intro .container div.right div.icon img {
    width: 40px !important;
    height: 40px !important;
  }

  .intro-2 {
    display: none !important;
  }

  .intro-2 .container {
    flex-direction: column-reverse;
    align-items: center;
    max-width: 1440px;
    padding-bottom: 0;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
  }

  .intro-2 .container > picture img {
    display: none !important;
  }

  .intro-2 .container .right {
    padding: 0 !important;
  }

  .intro-2 .container .right img {
    width: 100% !important;
    display: block !important;
  }

  .core-feature .container > p {
    max-width: unset !important;
  }

  .core-feature .container .features {
    flex-direction: column !important;
    display: flex !important;
  }

  .core-feature .container .features .feature .text img {
    display: block !important;
  }

  .core-feature .container .features .feature > picture img {
    width: 100% !important;
    display: none !important;
  }
}

.intro {
  max-width: unset;
  color: #fff;
}

.intro .container {
  align-items: center;
  max-width: 1440px;
  padding-top: 190px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.intro .container h1 {
  text-align: left;
  width: 50%;
  font-weight: 400;
}

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

.intro .container div.right {
  min-width: 400px;
  height: 400px;
  max-height: 400px;
  margin: 0 auto;
  animation: 20s linear infinite spin;
  position: relative;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.intro .container .right div {
  transform-origin: center;
  width: 100%;
  height: 100%;
  position: absolute;
}

div.icon img {
  border-radius: 5px;
  width: 60px;
  height: 60px;
  padding: 5px;
}

.intro .container .right div.icon img {
  transform-origin: center;
  animation: 20s linear infinite counterSpin2;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%)rotate(0);
}

@keyframes counterSpin2 {
  0% {
    transform: translate(-50%, -50%)rotate(0);
  }

  100% {
    transform: translate(-50%, -50%)rotate(-360deg);
  }
}

.intro .container .right div:first-child {
  transform: rotate(0);
}

.intro .container .right div:nth-child(2) {
  transform: rotate(51.43deg);
}

.intro .container .right div:nth-child(3) {
  transform: rotate(102.86deg);
}

.intro .container .right div:nth-child(4) {
  transform: rotate(154.29deg);
}

.intro .container .right div:nth-child(5) {
  transform: rotate(205.72deg);
}

.intro .container .right div:nth-child(6) {
  transform: rotate(257.15deg);
}

.intro .container .right div:nth-child(7) {
  transform: rotate(308.58deg);
}

.intro .container .right div:first-child img {
  animation: 20s linear infinite counterSpin2;
}

.intro .container .right div:nth-child(2) img {
  animation: 20s linear -2.8571s infinite counterSpin2;
}

.intro .container .right div:nth-child(3) img {
  animation: 20s linear -5.7142s infinite counterSpin2;
}

.intro .container .right div:nth-child(4) img {
  animation: 20s linear -8.5713s infinite counterSpin2;
}

.intro .container .right div:nth-child(5) img {
  animation: 20s linear -11.4284s infinite counterSpin2;
}

.intro .container .right div:nth-child(6) img {
  animation: 20s linear -14.2855s infinite counterSpin2;
}

.intro .container .right div:nth-child(7) img {
  animation: 20s linear -17.1426s infinite counterSpin2;
}

div.icon.scheduling img {
  background-color: #d5e1fb;
}

div.icon.categories img {
  background-color: #c8f3ee;
}

div.icon.analytics img {
  background-color: #fed7df;
}

div.icon.languages img {
  background-color: #fdf5e3;
}

div.icon.environments img {
  background-color: #fedef5;
}

div.icon.themeing img {
  background-color: #fde8d3;
}

div.icon.presets img {
  background-color: #d0f0e5;
}

div.icon.criterias img {
  background-color: #d9eaf6;
}

@keyframes counterSpin {
  0% {
    transform: translate(-50%, -50%)rotate(0);
  }

  100% {
    transform: translate(-50%, -50%)rotate(-360deg);
  }
}

.right img.center {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  padding: 10px;
  animation: 20s linear infinite counterSpin;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px #fff;
}

.intro-2 {
  max-width: unset;
  display: flex;
}

.intro-2 .container {
  flex-direction: column;
  max-width: 1440px;
  padding-bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.intro-2 .container h2 {
  text-align: left;
  color: var(--light-white);
  width: 100%;
  margin-bottom: 50px;
  font-size: 2.2rem;
}

.intro-2 .container h2 span {
  color: var(--gray-text);
}

.intro-2 .container > div {
  align-items: center;
  display: flex;
}

.intro-2 .container > div picture img {
  border-radius: 20px;
  min-width: 650px;
  height: 400px;
}

.intro-2 .container > div div.right {
  flex-direction: column;
  padding: 0 20px 0 60px;
  display: flex;
}

.intro-2 .container div.right img {
  display: none;
}

.intro-2 .container div.right h2 {
  text-align: left;
  font-weight: 400;
}

.intro-2 h3 {
  text-align: left;
  color: var(--blue-2);
  margin-bottom: 20px;
  font-weight: bold;
}

.core-feature {
  max-width: unset;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
  display: flex;
}

.core-feature.notification-center {
  background-repeat: no-repeat;
  background-size: 100% 200px;
}

.core-feature > div.container {
  flex-direction: column;
  max-width: 1440px;
  padding: 120px 40px;
  display: flex;
}

.core-feature > div.container > h2 {
  text-align: left;
  color: var(--light-white);
  margin-bottom: 30px;
  font-size: 2.6rem;
  font-weight: 600;
}

.core-feature > div.container > p {
  color: var(--gray-text);
  max-width: 50%;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: .9rem;
}

.core-feature > div.container > a {
  color: var(--red-1);
  margin-bottom: 60px;
  font-size: .9rem;
  font-weight: 500;
}

.core-feature > div.container > img {
  object-fit: cover;
  border-radius: 10px;
  max-inline-size: 100%;
  margin-bottom: 60px;
}

.core-feature > div.container div.features {
  grid-gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(100px, auto);
  width: 100%;
  display: grid;
  overflow: hidden;
}

.core-feature > div.container div.features div.feature img {
  border: 10px solid #f0f3f9;
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.core-feature > div.container div.features div.feature div.text {
  padding: 20px 0;
}

.core-feature > div.container div.features div.feature div.text img {
  display: none;
}

.core-feature > div.container div.features div.feature div.text h3 {
  text-align: left;
  color: var(--blue-3);
  font-weight: 500;
}

.core-feature > div.container div.features div.feature div.text p {
  color: #626266;
  font-size: .8rem;
}

.core-feature.push-notifications div.icon {
  opacity: .1;
  z-index: 0;
}

.core-feature.push-notifications > div.container .features div.feature img {
  border: 10px solid #192749;
}
/*# sourceMappingURL=index.b20a7279.css.map */
