@import url(normalize.css);
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url("../fonts/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBHMdazQ.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/*
@font-face {
    font-display:swap;
    font-family: 'Tusker';
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/TuskerGrotesk-5700Bold.woff2") format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-display:swap;
    font-family: 'Tusker';
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/TuskerGrotesk-6600Semibold.woff2") format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
*/
@font-face {
  font-display: swap;
  font-family: formula-condensed;
  font-style: normal;
  font-weight: 100 800;
  src: url(../fonts/PP_Formula_Condensed_Variable.woff) format("woff");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/*
regular 400
bold 700
*/
/* css variables */
:root {
  --black: #000;
  --white: #fff;
  --color-1: #d0eaf8;
  --color-2: #144154;
  --color-cta: #007dbf;
  --margin-multiplier: 1;
  --margin-small: clamp(20px, 4vw, 70px);
  --margin-large: max(20px, 19vw);
}

.theme-light {
  background-color: var(--color-1);
  color: var(--color-2);
}
.theme-light a.button {
  background-color: var(--color-2);
  color: var(--color-1);
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0;
  padding: 0;
  pointer-events: fill;
}
*:focus {
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

p, body, button, input[type=text], input[type=search], input[type=email], select, textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  background-color: var(--color-1);
  color: var(--color-2);
  font-size: max(18px, 1.5vw);
  line-height: max(22px, 2.05vw);
  font-weight: 400;
  letter-spacing: -0.01em;
}

hr {
  border: 1px solid var(--color-2);
  margin-bottom: 3vw;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  display: block;
  clear: both;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  box-shadow: none;
  transition: opacity 800ms;
}

h1, .h1, h2, .h2, h3, .h3 {
  font-family: "formula-condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-variation-settings: "wdth" 0, "ital" 0, "wght" 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 92%;
  padding: 1vw 0 0;
  margin: max(10px, 1vw) 0;
}
h1 span, .h1 span, h2 span, .h2 span, h3 span, .h3 span {
  color: #fff;
}

h1, .h1 {
  font-size: 7vw;
}

h2, .h2 {
  font-size: max(55px, 10vw);
}
h3, .h3 {
  font-size: max(29px, 5.5vw);
  line-height: 95%;
}
@media (max-width: 760px) {
  h3, .h3 {
    font-size: max(20px, 8vw);
  }
}

h4, .h4, h5, .h5, h6, .h6 {
  font-size: inherit;
  line-height: inherit;
}

p {
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: max(22px, 1vw);
}
p.preamble {
  font-weight: 700;
}
p.indent {
  text-indent: 2vw;
}
p.small {
  font-size: max(12px, 1.1vw) !important;
  line-height: max(16px, 1.5vw) !important;
}
p a:link {
  text-decoration: underline;
  color: var(--color-cta);
}

a {
  cursor: pointer;
  /*
  &:link, &:active, &:visited {
      //color: inherit;
      //text-decoration: underline;
  }

  &:hover, &:focus {
      //color: inherit;
  }
  */
}
a.button {
  border-radius: calc(0.5vw + 5px);
  text-decoration: none;
  font-size: max(14px, 1.2vw);
  font-weight: 700;
  display: inline-block;
  margin: 2vw 0;
  transition: color 200ms, background-color 200ms;
  padding: max(8px, 0.6vw) max(16px, 1.6vw);
}
a.button:hover {
  color: var(--white) !important;
  background-color: var(--color-cta);
}

b, strong {
  font-weight: 700;
}

#page {
  background-size: 100%;
  min-height: 100vh;
}

#debug {
  display: none;
  font-family: "Courier New", Courier, monospace;
  padding: 7px 6px 4px 4px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 700;
  color: white;
  position: fixed;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

header {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 67vw;
}
@media (max-width: 639px) {
  header {
    height: 133vw;
  }
}
header .logo {
  width: max(184px, 35vw);
  height: auto;
  padding-top: var(--margin-small);
  padding-left: var(--margin-small);
}
header .button {
  position: sticky;
  right: var(--margin-small);
  top: var(--margin-small);
  float: right;
}

footer {
  background-color: var(--white);
  color: var(--color-2);
  padding: max(40px, 6vw) 4vw;
}
footer h1 {
  text-align: center;
  margin: 0;
  font-size: 17vw;
  line-height: 14vw;
  text-transform: uppercase;
  padding: 4vw 2vw 1vw;
}
footer p {
  text-align: center;
  padding: 0 var(--margin-large) 3vw;
}
@media (max-width: 639px) {
  footer p {
    padding-left: max(20px, 6vw);
    padding-right: max(20px, 6vw);
  }
}
footer .contact {
  text-align: center;
}
footer .contact li {
  font-weight: bold;
  padding: 0 0.2vw;
  list-style-type: none;
  display: inline-block;
}
footer .contact li a {
  color: inherit;
  font-size: max(14px, 1.2vw);
  line-height: max(18px, 1.6vw);
}
footer .contact li a:hover {
  color: var(--color-cta);
}
footer .icon {
  width: 20px;
  height: auto;
}

section.layered-illustration {
  height: 67vw;
}
@media (max-width: 639px) {
  section.layered-illustration {
    height: 133vw;
  }
}
section.paper-edge {
  background-repeat: repeat-x;
  width: 100%;
  height: 32px;
  margin-top: -2.7vw;
  position: absolute;
  z-index: 99;
}
section.paper-edge svg {
  width: 100%;
  height: auto;
}
section.text {
  position: relative;
  padding: 8vw var(--margin-large) 5vw;
}
@media (max-width: 760px) {
  section.text {
    padding: 7vw 6vw 3vw;
  }
}
section.text .paint-line {
  width: 90%;
  height: auto;
  margin: 1vw 0 4vw;
  display: none;
}
section.text .paint-arrow {
  width: 20vw;
  height: auto;
  margin: 1vw 0;
  margin-left: 10%;
}
@media (max-width: 639px) {
  section.text .paint-arrow {
    width: 30vw;
  }
}
section.text .paint-arrow.right {
  transform: scale(-1, 1);
  margin-left: 35%;
}
section.text .cta {
  margin-bottom: 20vw;
}
section.text .cta h3 {
  margin-bottom: 0;
}
section.text .drop-cap::first-letter {
  -webkit-initial-letter: 3;
  initial-letter: 3;
  margin-right: 0.25em;
  margin-left: -0.1em;
  font-family: "formula-condensed", "Arial Narrow", sans-serif;
  font-variation-settings: "wdth" 0, "ital" 0, "wght" 700;
}
section.layered-illustration {
  padding-top: 200px;
  position: relative;
  overflow: hidden;
}
section.layered-illustration ul {
  list-style-type: none;
}
section.layered-illustration .layer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bird {
  width: 10vw;
  height: auto;
  position: absolute;
  margin: -6.2vw 0 0 -4vw;
}
@media (max-width: 639px) {
  .bird {
    width: 16vw;
    margin: -11vw 0 0 -2vw;
  }
}

.popcorn {
  width: 8vw;
  min-width: 60px;
  height: auto;
  position: absolute;
  margin: -4vw 0 -4vw 55vw;
}

.flower {
  width: 7vw;
  min-width: 50px;
  height: auto;
  position: absolute;
  margin: -6.8vw 0 -4vw 9%;
}
@media (max-width: 639px) {
  .flower {
    width: 12vw;
    margin: -13% 0 -4vw 9%;
  }
}

.seed {
  width: 4vw;
  min-width: 40px;
  height: auto;
  position: absolute;
  margin: -10vw 0 0 10%;
  z-index: 200;
}

.center {
  text-align: center;
}

.color-1 {
  color: var(--color-1);
}

.color-2 {
  color: var(--color-2);
}

.color-white {
  color: var(--white);
}

/*
:root {
    @media (min-width: 400px) {
         --margin-multiplier: 1.00;
    }

    @media (min-width: 500px) {
         --margin-multiplier: 1.25;
    }

    @media (min-width: 550px) {
         --margin-multiplier: 1.50;
    }

    @media (min-width: 600px) {
         --margin-multiplier: 1.75;
    }

    @media (min-width: 650px) {
         --margin-multiplier: 2.00;
    }

    @media (min-width: 700px) {
         --margin-multiplier: 2.25;
    }

    @media (min-width: 750px) {
         --margin-multiplier: 2.50;
    }

    @media (min-width: 800px) {
         --margin-multiplier: 2.75;
    }

     @media (min-width: 850px) {
         --margin-multiplier: 3.00;
    }

    @media (min-width: 900px) {
         --margin-multiplier: 3.25;
    }

    @media (min-width: 950px) {
         --margin-multiplier: 3.50;
    }

    @media (min-width: 1000px) {
         --margin-multiplier: 3.75;
    }
}*//*# sourceMappingURL=style.css.map */