@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.intro div.container {
    flex-direction: column;
    display: unset !important;
    padding-top: 120px !important;
  }

  body main section.intro div.container h1 {
    font-size: 1.9rem !important;
  }

  body main section.intro div.container h2 {
    max-width: unset !important;
    margin-bottom: 20px !important;
    font-size: 20px !important;
  }

  body main section.intro div.container .no-code {
    display: none !important;
  }

  body main section.intro div.container div.left {
    max-width: unset !important;
    display: unset !important;
    margin-right: 0 !important;
  }

  body main section.intro div.container div.right {
    max-width: unset !important;
    right: unset !important;
    min-height: unset !important;
    padding: unset !important;
    background-color: unset !important;
    margin-top: 50px !important;
    position: relative !important;
  }

  body main section.intro div.container div.right video {
    border-radius: 5px !important;
  }

  body main section.promo div.container > div {
    flex-direction: column !important;
  }

  body main section.publish-intro div.container h2 {
    font-size: 1.6rem !important;
  }

  body main section.publish-intro div.container div.video-container {
    border-radius: 5px !important;
    padding: 5px !important;
  }

  body main section.publish-intro div.container div.video-container video {
    border-radius: 5px !important;
  }

  body main section.features-carousel div.container div.feature {
    flex-direction: column !important;
  }

  body main section.features-carousel div.container div.feature div.description {
    width: 100% !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  body main section.features-carousel div.container div.feature div.description video, body main section.features-carousel div.container div.feature div.description img {
    border-radius: 5px;
    margin-top: 30px;
    display: unset !important;
  }

  body main section.features-carousel div.container div.feature div.video-container {
    display: none !important;
  }

  body main section.intro-3 > div.container, body main section.intro-3 > div.container div.right {
    flex-direction: column;
    display: flex !important;
  }

  body main section.intro-3 > div.container div.right {
    background-color: unset !important;
    padding: unset !important;
  }

  body main section.intro-3 > div.container div.right > div {
    margin-top: 30px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body main section.get-started h2 {
    font-size: 1.6rem !important;
  }

  body main section.get-started .steps {
    flex-direction: column !important;
  }

  body main section.get-started .steps div {
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body main section.features div.features {
    flex-direction: column !important;
  }

  body main section.features div.container h3 {
    font-size: 1.6rem !important;
  }

  body main section.features div.features div.feature {
    width: 100% !important;
    margin-bottom: 30px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body main section.cta div.container {
    height: unset !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  body main section.cta div.container h3 {
    font-size: 1.6rem !important;
  }

  body main section.cta div.container div.text {
    max-width: unset !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body main section.cta div.container div.text * {
    text-align: center !important;
  }

  body main section.cta div.container div.text div.buttons {
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 !important;
  }

  body main section.cta div.container div.text div.buttons a.button {
    margin-right: 0 !important;
  }

  body main section.cta div.container div.image-wrapper {
    margin-top: 30px;
    width: 100% !important;
  }
}

body main section.intro {
  align-items: center;
  height: 60vh;
  min-height: 775px;
  padding: 100px 0 100px 50px;
  display: flex;
  position: relative;
  overflow: hidden;
}

body main section.intro div.container {
  align-items: center;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
  padding-left: 30px;
  padding-right: 0;
  display: flex;
  overflow: visible;
}

body main section.intro div.container div.left {
  flex-direction: column;
  flex: 1;
  max-width: 50%;
  margin-right: 50px;
  display: flex;
}

body main section.intro div.container div.left > * {
  text-align: left;
}

body main section.intro div.container div.left > h1 {
  color: var(--light-white);
  font-weight: bold;
  line-height: 1.2;
}

body main section.intro div.container h1 span {
  color: var(--red-1);
  margin-right: 10px;
}

body main section.intro div.container h2 {
  color: var(--gray-text);
  width: 90%;
  margin: 10px 0;
  font-size: 1.2rem;
  font-weight: 400;
}

body main section.intro div.container h2 span {
  color: var(--blue-2);
  font-weight: 400;
}

body main section.intro div.container div.cta {
  align-items: center;
  margin-top: 10px;
  margin-bottom: auto;
  display: flex;
}

body main section.intro div.container div.cta .button {
  background-color: var(--orange-primary);
  border: var(--orange-primary);
  border-radius: 50px;
  width: 210px;
  margin-top: 0;
  margin-right: 20px;
  font-weight: 400;
}

body main section.intro div.container div.cta span.no-code {
  color: var(--gray-text);
  align-items: center;
  font-size: .8rem;
  display: flex;
}

body main section.intro div.container div.cta span.no-code img {
  margin-right: 5px;
}

body main section.intro div.container div.right {
  background-color: var(--blue-2);
  border-radius: 50px;
  max-width: 50%;
  min-height: 500px;
  padding: 30px 0 30px 60px;
  display: flex;
  position: absolute;
  right: -50px;
}

body main section.intro div.container div.right video {
  object-fit: cover;
  border-radius: 30px;
  width: 100%;
  display: block;
  box-shadow: 0 7px 29px #64646f33;
}

body main section.promo {
  max-width: unset;
  width: 100%;
  display: flex;
}

body main section.promo .container {
  flex-direction: column;
  align-items: center;
  max-width: 1440px;
  padding-bottom: 60px;
  display: flex;
}

body main section.promo .container > * {
  display: flex;
}

body main section.promo .container > h3 {
  text-align: center;
  color: var(--light-white);
  display: inline;
}

body main section.promo .container > h3 span {
  color: var(--red-1);
  font-size: 1.5rem;
  line-height: inherit;
  display: inline;
}

body main section.promo .container > div .button {
  border-radius: 50px;
  width: 200px;
}

body main section.promo .container > div .button:first-child {
  background-color: var(--red-1);
  border-color: var(--red-1);
  margin-right: 20px;
}

body main section.promo .container > div .button:last-child {
  border-color: var(--red-1);
  color: var(--red-1);
  background-color: #0000;
  margin-right: 20px;
}

body main section.publish-intro > div.container h2 {
  text-align: left;
  color: var(--gray-text);
  font-size: 2.3rem;
}

body main section.publish-intro > div.container h2 span:first-child {
  color: var(--light-white);
}

body main section.publish-intro > div.container div.video-container {
  background-color: var(--blue-2);
  border-radius: 30px;
  padding: 30px;
}

body main section.publish-intro > div.container div.video-container video {
  border-radius: 30px;
  width: 100%;
  box-shadow: 0 7px 29px #64646f33;
}

body main section.features-carousel[data-selected="notification-center"] span[data-feature="notification-center"], body main section.features-carousel[data-selected="push-notification"] span[data-feature="push-notification"], body main section.features-carousel[data-selected="badges"] span[data-feature="badges"] {
  border-bottom: 3px solid var(--blue-2);
}

body main section.features-carousel[data-selected="notification-center"] body main section.features-carousel > div.container {
  flex-direction: column;
  max-width: 1440px;
  padding: 120px 80px;
  display: flex;
}

body main section.features-carousel > div.container div.header {
  color: var(--light-white);
  margin-bottom: 50px;
  font-size: 1.2rem;
}

body main section.features-carousel > div.container div.header span {
  cursor: pointer;
  margin-right: 15px;
}

body main section.features-carousel > div.container div.header span.selected {
  border-bottom: 2px solid var(--blue-2);
}

body main section.features-carousel > div.container div.carousel div.feature div.video-container {
  background-color: var(--blue-2);
  background-color: #202b40;
  border-radius: 30px;
  width: 50%;
  height: 450px;
  padding: 30px;
  overflow: hidden;
}

body main section.features-carousel > div.container div.carousel div.feature div.video-container video {
  transition: transform 1s, top 1s;
  position: relative;
}

body main section.features-carousel > div.container div.carousel div.feature div.video-container video, body main section.features-carousel > div.container div.carousel div.feature div.video-container img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
}

body main section.features-carousel > div.container div.carousel div.feature#push-notification video {
  object-fit: contain;
  border-radius: 30px;
}

body main section.features-carousel > div.container div.carousel div.feature {
  opacity: 0;
  width: 100%;
  height: 0;
  display: flex;
}

body main section.features-carousel[data-selected="notification-center"] div.feature#notification-center, body main section.features-carousel[data-selected="push-notification"] div.feature#push-notification, body main section.features-carousel[data-selected="badges"] div.feature#badges {
  opacity: 1;
  height: unset;
}

.features-carousel > div.container div.carousel div.feature div.description {
  flex-direction: column;
  width: 50%;
  margin-right: 50px;
  padding-right: 70px;
  display: flex;
}

.features-carousel > div.container div.carousel div.feature div.description h3 {
  text-align: left;
  color: var(--light-white);
  font-size: 1.8rem;
  font-weight: 600;
}

.features-carousel > div.container div.carousel div.feature div.description > span {
  color: var(--gray-text);
}

.features-carousel > div.container div.carousel div.feature div.description > a {
  color: var(--violet-primary);
  margin-top: 20px;
  font-size: .8rem;
}

body main section.features-carousel div.container div.feature div.description video, body main section.features-carousel div.container div.feature div.description img {
  display: none;
}

.features-carousel > div.container div.carousel div.feature div.description div.details {
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 5px;
  display: flex;
}

.features-carousel > div.container div.carousel div.feature div.description div.details div.detail {
  border-radius: 5px;
  align-items: center;
  margin-top: 15px;
  margin-right: 15px;
  display: flex;
}

.features-carousel > div.container div.carousel div.feature div.description div.details div.detail img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.features-carousel > div.container div.carousel div.feature div.description div.details div.detail p {
  color: var(--gray-text);
  flex-direction: column;
  margin: 0 0 0 30px;
  font-size: .7rem;
  font-weight: 300;
  display: flex;
}

.features-carousel > div.container div.carousel div.feature div.description div.details div.detail p span {
  color: var(--light-white);
  margin-bottom: 3px;
  font-weight: 600;
}

body main section.intro-3 {
  display: flex;
}

body main section.intro-3 div.container {
  align-items: center;
  max-width: 1440px;
  display: flex;
}

body main section.intro-3 div.container > * {
  flex: 1;
}

body main section.intro-3 div.container div.left {
  color: var(--gray-text);
  padding-right: 60px;
}

body main section.intro-3 div.container div.left h2 {
  text-align: left;
  color: var(--light-white);
  font-family: unset;
  font-weight: 500;
}

body main section.intro-3 div.container div.right {
  border-radius: 30px;
  flex: 2;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  padding: 30px;
  display: grid;
}

body main section.intro-3 div.container div.right > div {
  background-color: #202b40;
  border-radius: 5px;
  flex-direction: column;
  flex: 1;
  align-items: center;
  margin: 15px;
  padding: 30px;
  display: flex;
  box-shadow: 0 7px 29px #64646f33;
}

body main section.intro-3 div.container div.right > div img {
  border-radius: 50%;
  width: 50px;
  padding: 10px;
}

body main section.intro-3 div.container div.right > div h3 {
  text-align: center;
  color: var(--light-white);
  margin-top: 0;
  margin-bottom: 5px;
  font-size: .9rem;
  font-weight: bold;
}

body main section.intro-3 div.container div.right > div p {
  text-align: center;
  color: var(--light-white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: .8rem;
  font-weight: 300;
  display: none;
}

body main section.get-started {
  color: var(--gray-text);
}

body main section.get-started div.container {
  flex-direction: column;
  align-items: center;
  max-width: 1440px;
  display: flex;
}

body main section.get-started div.container h2 {
  color: var(--main-background);
  font-family: unset;
  font-size: 2rem;
  font-weight: 400;
}

body main section.get-started div.container h2 span {
  color: var(--gray-text);
}

body main section.get-started div.container div.steps {
  margin-top: 50px;
  display: flex;
}

body main section.get-started div.container div.steps div {
  border-radius: 5px;
  flex-direction: column;
  flex: 1;
  align-items: center;
  margin: 0 30px;
  padding: 30px;
  display: flex;
}

body main section.get-started div.container div.steps div * {
  text-align: center;
}

body main section.get-started div.container div.steps div img {
  background-color: var(--blue-2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-bottom: 0;
  padding: 10px;
}

body main section.get-started div.container div.steps div p {
  color: var(--light-white);
  margin-top: 15px;
  font-weight: 200;
}

body main section.get-started div.container div.steps div p span {
  color: var(--red-1);
  font-weight: bold;
}

body main section.features {
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

body main section.features div.container {
  flex-direction: column;
  align-items: center;
  max-width: 1440px;
  display: flex;
}

body main section.features div.container h3 {
  color: var(--gray-text);
  text-align: left;
  font-size: 2rem;
  font-weight: 400;
}

body main section.features div.container h3 span {
  color: var(--red-1);
}

body main section.features div.container > p {
  color: var(--gray-text);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 300;
}

body main section.features div.container div.features {
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
}

body main section.features div.container div.features div.feature {
  border-radius: 5px;
  width: calc(50% - 30px);
  margin: 0 15px;
  padding: 20px;
  display: flex;
  position: relative;
}

body main section.features div.container div.features div.feature img {
  border-radius: 10px;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  padding: 5px;
}

body main section.features div.container div.features div.feature span:first-of-type {
  color: var(--light-white);
  margin-bottom: 5px;
  font-weight: 500;
  display: block;
}

body main section.features div.container div.features div.feature span:last-child {
  color: var(--gray-text);
  font-size: .8rem;
}

body main section.features div.container div.features div.feature:nth-child(-n+4) {
  margin-bottom: 30px;
}

body main section.features div.container > a {
  color: #7c8afa;
  font-weight: 400;
}

body main section.features div.container div.features div.feature.scheduling img {
  background-color: #d5e1fb;
}

body main section.features div.container div.features div.feature.categories img {
  background-color: #c8f3ee;
}

body main section.features div.container div.features div.feature.analytics img {
  background-color: #fed7df;
}

body main section.features div.container div.features div.feature.languages img {
  background-color: #fdf5e3;
}

body main section.features div.container div.features div.feature.environments img {
  background-color: #fedef5;
}

body main section.features div.container div.features div.feature.themeing img {
  background-color: #fde8d3;
}

body main section.features div.container div.features div.feature.presets img {
  background-color: #d0f0e5;
}

body main section.features div.container div.features div.feature.criterias img {
  background-color: #d9eaf6;
}

body main section.cta {
  max-width: unset;
  width: 100%;
}

body main section.cta div.container {
  justify-content: center;
  align-items: center;
  max-width: 1440px;
  display: flex;
}

body main section.cta div.container div.text {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 40%;
  margin-right: 50px;
  padding: 60px 30px;
  display: flex;
}

body main section.cta div.container div.text h3 {
  text-align: left;
  color: var(--light-white);
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 300;
}

body main section.cta div.container div.text p {
  color: var(--gray-text);
  margin-bottom: 0;
  line-height: 1.2rem;
}

body main section.cta div.container div.text div.buttons {
  width: 100%;
  display: flex;
}

body main section.cta div.container div.text div.buttons a.button {
  text-align: center;
  border-color: var(--orange-primary);
  background-color: var(--orange-primary);
  color: var(--main-background);
  border-radius: 50px;
  flex: 1;
  height: 40px;
  margin-top: 20px;
  margin-left: 0;
  margin-right: 20px;
  padding: 0 20px;
  font-size: .8rem;
  font-weight: 300;
  line-height: 40px;
}

body main section.cta div.container div.text span {
  color: var(--gray-text);
  margin-top: 10px;
  font-size: .8rem;
  font-weight: 100;
  display: block;
}

body main section.cta div.container img {
  -webkit-box-shadow: 0 2px 6px 2px var(--blue-4);
  box-shadow: 0 2px 6px 2px var(--blue-4);
  -moz-box-shadow: 0 2px 6px 2px var(--blue-4);
  border-radius: 5px;
  width: 50%;
}

body main section.cta div.container div.image-wrapper {
  width: 50%;
  display: inline-block;
  position: relative;
}

body main section.cta div.container div.image-wrapper img {
  -webkit-box-shadow: 0 2px 6px 2px var(--blue-4);
  box-shadow: 0 2px 6px 2px var(--blue-4);
  -moz-box-shadow: 0 2px 6px 2px var(--blue-4);
  border-radius: 5px;
  width: 100%;
}

body main section.cta div.container div.image-wrapper:after {
  content: "";
  z-index: -1;
  filter: blur(10px);
  background: #ffffff0d;
  border-radius: 50%;
  width: 70%;
  height: 20%;
  position: absolute;
  bottom: -30%;
  left: 15%;
}
/*# sourceMappingURL=index.6453f36c.css.map */
