@keyframes fadeInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-1em);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-component="landing-intro"] {
  max-width: 17em;
  width: 100%;
  text-align: center;
  animation-name: fadeInFromTop;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: .5s
}

@media (min-width: 22em) {
  [data-component="landing-intro"] {
    max-width: 20em;
  }
  }

[data-component="landing-intro"] .image-wrapper {
  margin: 0 auto 3em;
}

[data-component="landing-intro"] .image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

[data-component="landing-intro"] address {
  font-style: normal;
  margin-top: 1em;
  line-height: 1.4;
}

[data-component="landing-intro"] h2 {
  margin-bottom: 1em;
  line-height: 1.2;
}

[data-component="landing-intro"] a {
  color: black;
  font-weight: 700;
  margin: 0 1em;
}

@font-face {
  font-family: Apercu;
  src: url('/components/app/fonts/apercu-200-normal.woff2') format('woff2'), url('/components/app/fonts/apercu-200-normal.woff') format('woff');
  font-weight: 200;
}

@font-face {
  font-family: Apercu;
  src: url('/components/app/fonts/apercu-500-normal.woff2') format('woff2'), url('/components/app/fonts/apercu-500-normal.woff') format('woff');
  font-weight: 500;
}

html {
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Apercu', sans-serif;
  font-weight: 200;
  line-height: 1;
  color: black;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

::-moz-selection {
  background-color: #f57613;
  color: white;
}

::selection {
  background-color: #f57613;
  color: white;
}

/*# sourceMappingURL=bundle.css.map*/