/* line 1, base/_buttons.scss */
button, [type='button'], [type='reset'], [type='submit'] {
  appearance: none;
  background-color: #1565c0;
  border: 0;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Verdana", "Geneva", "Arial", "sans-serif", -apple-system, BlinkMacSystemFont, "Avenir Next", "Avenir", "Segoe UI", "Lucida Grande", "Helvetica Neue", "Helvetica", "Fira Sans", "Roboto", "Noto", "Droid Sans", "Cantarell", "Oxygen", "Ubuntu", "Franklin Gothic Medium", "Century Gothic", "Liberation Sans", sans-serif;
  font-size: 1em;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: 0.75em 1.5em;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap; }
  /* line 22, base/_buttons.scss */
  button:hover, button:focus, [type='button']:hover, [type='button']:focus, [type='reset']:hover, [type='reset']:focus, [type='submit']:hover, [type='submit']:focus {
    background-color: #11519a;
    color: #fff; }
  /* line 28, base/_buttons.scss */
  button:disabled, [type='button']:disabled, [type='reset']:disabled, [type='submit']:disabled {
    cursor: not-allowed;
    opacity: 0.5; }
    /* line 32, base/_buttons.scss */
    button:disabled:hover, [type='button']:disabled:hover, [type='reset']:disabled:hover, [type='submit']:disabled:hover {
      background-color: #1565c0; }

/* line 38, base/_buttons.scss */
.btn {
  display: inline-block;
  position: relative;
  margin-bottom: 0.75em;
  padding: 0.75em 1.5em;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer; }

/* line 49, base/_buttons.scss */
.btn__right {
  padding-right: 2.625em; }
  /* line 52, base/_buttons.scss */
  .btn__right:after {
    content: '>';
    font-weight: 100;
    width: 0.75em;
    position: absolute;
    right: 1.875em;
    padding-left: 0.75em;
    transition: all 200ms ease-in; }
  /* line 63, base/_buttons.scss */
  .btn__right:hover {
    color: #ffffff;
    transform: scale(1.05);
    transition: all 200ms ease-in; }
    /* line 68, base/_buttons.scss */
    .btn__right:hover:after {
      right: 1.5em; }

/* line 1, base/_forms.scss */
fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0; }

/* line 8, base/_forms.scss */
legend {
  font-weight: 600;
  margin-bottom: 0.375em;
  padding: 0; }

/* line 14, base/_forms.scss */
label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.375em; }

/* line 20, base/_forms.scss */
input,
select,
textarea {
  display: block;
  font-family: "Verdana", "Geneva", "Arial", "sans-serif", -apple-system, BlinkMacSystemFont, "Avenir Next", "Avenir", "Segoe UI", "Lucida Grande", "Helvetica Neue", "Helvetica", "Fira Sans", "Roboto", "Noto", "Droid Sans", "Cantarell", "Oxygen", "Ubuntu", "Franklin Gothic Medium", "Century Gothic", "Liberation Sans", sans-serif;
  font-size: 1em; }

/* line 28, base/_forms.scss */
[type='color'], [type='date'], [type='datetime'], [type='datetime-local'], [type='email'], [type='month'], [type='number'], [type='password'], [type='search'], [type='tel'], [type='text'], [type='time'], [type='url'], [type='week'], input:not([type]), textarea {
  appearance: none;
  background-color: #fff;
  border: 1px solid #c4c4c6;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-bottom: 0.75em;
  padding: 0.5em;
  transition: border-color 150ms ease;
  width: 100%; }
  /* line 40, base/_forms.scss */
  [type='color']:hover, [type='date']:hover, [type='datetime']:hover, [type='datetime-local']:hover, [type='email']:hover, [type='month']:hover, [type='number']:hover, [type='password']:hover, [type='search']:hover, [type='tel']:hover, [type='text']:hover, [type='time']:hover, [type='url']:hover, [type='week']:hover, input:not([type]):hover, textarea:hover {
    border-color: #9d9d9e; }
  /* line 44, base/_forms.scss */
  [type='color']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='email']:focus, [type='month']:focus, [type='number']:focus, [type='password']:focus, [type='search']:focus, [type='tel']:focus, [type='text']:focus, [type='time']:focus, [type='url']:focus, [type='week']:focus, input:not([type]):focus, textarea:focus {
    border-color: #1565c0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(18, 89, 169, 0.7);
    outline: none; }
  /* line 50, base/_forms.scss */
  [type='color']:disabled, [type='date']:disabled, [type='datetime']:disabled, [type='datetime-local']:disabled, [type='email']:disabled, [type='month']:disabled, [type='number']:disabled, [type='password']:disabled, [type='search']:disabled, [type='tel']:disabled, [type='text']:disabled, [type='time']:disabled, [type='url']:disabled, [type='week']:disabled, input:not([type]):disabled, textarea:disabled {
    background-color: #f2f2f2;
    cursor: not-allowed; }
    /* line 54, base/_forms.scss */
    [type='color']:disabled:hover, [type='date']:disabled:hover, [type='datetime']:disabled:hover, [type='datetime-local']:disabled:hover, [type='email']:disabled:hover, [type='month']:disabled:hover, [type='number']:disabled:hover, [type='password']:disabled:hover, [type='search']:disabled:hover, [type='tel']:disabled:hover, [type='text']:disabled:hover, [type='time']:disabled:hover, [type='url']:disabled:hover, [type='week']:disabled:hover, input:not([type]):disabled:hover, textarea:disabled:hover {
      border: 1px solid #c4c4c6; }
  /* line 59, base/_forms.scss */
  [type='color']::placeholder, [type='date']::placeholder, [type='datetime']::placeholder, [type='datetime-local']::placeholder, [type='email']::placeholder, [type='month']::placeholder, [type='number']::placeholder, [type='password']::placeholder, [type='search']::placeholder, [type='tel']::placeholder, [type='text']::placeholder, [type='time']::placeholder, [type='url']::placeholder, [type='week']::placeholder, input:not([type])::placeholder, textarea::placeholder {
    color: #a9aaac; }

/* line 64, base/_forms.scss */
textarea {
  resize: vertical; }

/* line 68, base/_forms.scss */
[type="checkbox"],
[type="radio"] {
  display: inline;
  margin-right: 0.375em; }

/* line 74, base/_forms.scss */
[type="file"] {
  margin-bottom: 0.75em;
  width: 100%; }

/* line 79, base/_forms.scss */
select {
  margin-bottom: 0.75em;
  width: 100%; }

/* line 1, base/_layout.scss */
html {
  box-sizing: border-box; }

/* line 5, base/_layout.scss */
*,
*::before,
*::after {
  box-sizing: inherit; }

/* line 11, base/_layout.scss */
html,
body {
  height: 100%; }

/* line 1, base/_lists.scss */
ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0; }

/* line 8, base/_lists.scss */
dl {
  margin: 0; }

/* line 12, base/_lists.scss */
dt {
  font-weight: 600;
  margin: 0; }

/* line 17, base/_lists.scss */
dd {
  margin: 0; }

/* line 1, base/_media.scss */
figure {
  margin: 0; }

/* line 5, base/_media.scss */
img,
picture {
  margin: 0;
  max-width: 100%; }

/* line 1, base/_tables.scss */
table {
  border-collapse: collapse;
  margin: 0.75em 0;
  table-layout: fixed;
  width: 100%; }

/* line 8, base/_tables.scss */
th {
  border-bottom: 1px solid #939395;
  font-weight: 600;
  padding: 0.75em 0;
  text-align: left; }

/* line 15, base/_tables.scss */
td {
  border-bottom: 1px solid #c4c4c6;
  padding: 0.75em 0; }

/* line 20, base/_tables.scss */
tr,
td,
th {
  vertical-align: middle; }

/* line 1, base/_typography.scss */
body {
  color: #6f7175;
  font-family: "Verdana", "Geneva", "Arial", "sans-serif", -apple-system, BlinkMacSystemFont, "Avenir Next", "Avenir", "Segoe UI", "Lucida Grande", "Helvetica Neue", "Helvetica", "Fira Sans", "Roboto", "Noto", "Droid Sans", "Cantarell", "Oxygen", "Ubuntu", "Franklin Gothic Medium", "Century Gothic", "Liberation Sans", sans-serif;
  font-size: 1em;
  line-height: 1.5; }

/* line 8, base/_typography.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Verdana", "Geneva", "Arial", "sans-serif", -apple-system, BlinkMacSystemFont, "Avenir Next", "Avenir", "Segoe UI", "Lucida Grande", "Helvetica Neue", "Helvetica", "Fira Sans", "Roboto", "Noto", "Droid Sans", "Cantarell", "Oxygen", "Ubuntu", "Franklin Gothic Medium", "Century Gothic", "Liberation Sans", sans-serif;
  font-size: 1.25em;
  font-weight: 100;
  font-style: normal;
  line-height: 1.2;
  margin: 0 0 0.75em; }

/* line 22, base/_typography.scss */
p {
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.005em;
  margin: 0 0 0.75em; }

/* line 29, base/_typography.scss */
a {
  color: #1565c0;
  text-decoration: none;
  transition: color 150ms ease; }
  /* line 34, base/_typography.scss */
  a:active, a:focus, a:hover {
    color: #104c90; }

/* line 41, base/_typography.scss */
hr {
  border-bottom: 1px solid #c4c4c6;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: 1.5em 0; }

/* Bitters needs to be imported before Neat */
/* line 4, ../../../cache/bundle/ruby/2.1.0/gems/neat-1.8.0/app/assets/stylesheets/grid/_box-sizing.scss */
html {
  box-sizing: border-box; }

/* line 9, ../../../cache/bundle/ruby/2.1.0/gems/neat-1.8.0/app/assets/stylesheets/grid/_box-sizing.scss */
*, *::after, *::before {
  box-sizing: inherit; }

/* line 1, partials/_layout.scss */
body {
  margin: 0; }

/* line 5, partials/_layout.scss */
h1 {
  font-size: 1.95313em; }

/* line 12, partials/_layout.scss */
.brand__logo--white {
  fill: #ffffff; }

/* line 16, partials/_layout.scss */
header {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto; }
  /* line 20, ../../../cache/bundle/ruby/2.1.0/gems/neat-1.8.0/app/assets/stylesheets/mixins/_clearfix.scss */
  header::after {
    clear: both;
    content: "";
    display: block; }
  /* line 19, partials/_layout.scss */
  header nav ul {
    display: flex;
    align-items: center; }
  /* line 25, partials/_layout.scss */
  header .nav__super ul li {
    padding: 0.75em; }
  /* line 32, partials/_layout.scss */
  header .nav__main ul li {
    height: 5em;
    width: 20%;
    padding: 0.75em 1.20482%;
    text-align: center;
    border-top: 1px solid rgba(196, 196, 198, 0.9);
    border-right: 1px solid rgba(196, 196, 198, 0.8);
    display: flex;
    align-items: center; }
    /* line 41, partials/_layout.scss */
    header .nav__main ul li img, header .nav__main ul li a {
      display: block;
      width: 100%;
      max-width: 100%; }
  /* line 48, partials/_layout.scss */
  header a {
    color: #6f7175;
    cursor: pointer;
    transition: all 120ms ease-in-out; }
    /* line 52, partials/_layout.scss */
    header a:not(.no-animate):hover {
      color: inherit;
      transition: all 120ms ease-in-out;
      transform: scale(1.1); }

/* line 60, partials/_layout.scss */
.hero-image {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  min-height: 150px;
  padding: 100px 50px;
  text-align: center;
  position: relative;
  background-color: #2f297e;
  background-image: url("../images/hero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  /* line 20, ../../../cache/bundle/ruby/2.1.0/gems/neat-1.8.0/app/assets/stylesheets/mixins/_clearfix.scss */
  .hero-image::after {
    clear: both;
    content: "";
    display: block; }
  /* line 71, partials/_layout.scss */
  .hero-image h1 {
    margin: 0 auto;
    max-width: 900px;
    font-size: 400%;
    vertical-align: middle;
    color: #ffffff; }

/* line 80, partials/_layout.scss */
main {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto; }
  /* line 20, ../../../cache/bundle/ruby/2.1.0/gems/neat-1.8.0/app/assets/stylesheets/mixins/_clearfix.scss */
  main::after {
    clear: both;
    content: "";
    display: block; }

/* line 86, partials/_layout.scss */
.panels {
  display: block;
  padding: 0.75em 0;
  text-align: center;
  color: #ffffff; }
  /* line 20, ../../../cache/bundle/ruby/2.1.0/gems/neat-1.8.0/app/assets/stylesheets/mixins/_clearfix.scss */
  .panels::after {
    clear: both;
    content: "";
    display: block; }
  /* line 91, partials/_layout.scss */
  .panels .panel {
    float: left;
    display: block;
    width: 50.60241%;
    padding: 1.20482%;
    min-height: 450px;
    border: solid 0.75em #f1f1f9;
    background-color: #f19224; }
    /* line 81, ../../../cache/bundle/ruby/2.1.0/gems/neat-1.8.0/app/assets/stylesheets/grid/_span-columns.scss */
    .panels .panel:last-child {
      width: 49.39759%; }
    /* line 97, partials/_layout.scss */
    .panels .panel > * {
      max-width: 65%;
      margin-left: auto;
      margin-right: auto; }

/* line 106, partials/_layout.scss */
.section__breathe.section__breathe {
  padding: 2.5em 1.20482%; }

/* line 115, partials/_layout.scss */
.card__holder {
  display: flex;
  justify-content: space-around; }
  /* line 118, partials/_layout.scss */
  .card__holder .card {
    display: flex;
    flex-direction: column;
    margin-right: 0; }
    /* line 122, partials/_layout.scss */
    .card__holder .card img {
      margin-bottom: 0.75em; }
    /* line 125, partials/_layout.scss */
    .card__holder .card h2, .card__holder .card p {
      padding-left: 0.75em;
      padding-right: 0.75em; }
    /* line 129, partials/_layout.scss */
    .card__holder .card p {
      margin-bottom: 1.25em; }
      /* line 131, partials/_layout.scss */
      .card__holder .card p:last-of-type {
        flex-grow: 1;
        margin-bottom: 1.5em; }
    /* line 136, partials/_layout.scss */
    .card__holder .card a.cta {
      position: relative;
      display: block;
      margin-bottom: 1.25em;
      padding-top: 1em;
      border-top: 1px solid #f1f1f9; }
      /* line 142, partials/_layout.scss */
      .card__holder .card a.cta:after {
        content: ' ';
        display: block;
        width: 25%;
        margin: auto;
        border-bottom: 1px solid rgba(21, 101, 192, 0.4); }

/* line 155, partials/_layout.scss */
section > h1 {
  color: #6f7175;
  font-weight: 500; }
/* line 159, partials/_layout.scss */
section p:last-of-type {
  margin-bottom: 1.5em; }

/* line 164, partials/_layout.scss */
section.why {
  display: block;
  padding: 1.20482%;
  text-align: center;
  background-color: white; }
  /* line 20, ../../../cache/bundle/ruby/2.1.0/gems/neat-1.8.0/app/assets/stylesheets/mixins/_clearfix.scss */
  section.why::after {
    clear: both;
    content: "";
    display: block; }
  /* line 169, partials/_layout.scss */
  section.why p {
    margin-bottom: 2em; }
  /* line 172, partials/_layout.scss */
  section.why .card {
    width: 23.5%;
    background: #ffffff;
    box-shadow: 0 0 15px 2px rgba(196, 196, 198, 0.8); }
    /* line 176, partials/_layout.scss */
    section.why .card p:last-of-type {
      min-height: 4.6em; }

/* line 182, partials/_layout.scss */
section.feature {
  display: block;
  color: #ffffff;
  display: flex; }
  /* line 20, ../../../cache/bundle/ruby/2.1.0/gems/neat-1.8.0/app/assets/stylesheets/mixins/_clearfix.scss */
  section.feature::after {
    clear: both;
    content: "";
    display: block; }
  /* line 186, partials/_layout.scss */
  section.feature.feature__reverse {
    flex-direction: row-reverse; }
  /* line 190, partials/_layout.scss */
  section.feature .panel {
    width: 50%;
    padding: 5em 3.75em;
    min-height: 400px;
    background-color: #009cdd; }
  /* line 196, partials/_layout.scss */
  section.feature .panel--alt {
    color: #2f297e;
    background-color: white; }
  /* line 201, partials/_layout.scss */
  section.feature .panel__image {
    background-size: cover;
    background-position: center; }
  /* line 207, partials/_layout.scss */
  section.feature.feature--what {
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 50%; }

/* line 223, partials/_layout.scss */
section.how {
  display: block;
  padding: 1.20482%;
  text-align: center;
  background-color: #f1f1f9; }
  /* line 20, ../../../cache/bundle/ruby/2.1.0/gems/neat-1.8.0/app/assets/stylesheets/mixins/_clearfix.scss */
  section.how::after {
    clear: both;
    content: "";
    display: block; }
  /* line 228, partials/_layout.scss */
  section.how > p {
    width: 90%;
    margin-left: auto;
    margin-right: auto; }
  /* line 233, partials/_layout.scss */
  section.how .pinch {
    margin-left: 12.6506%;
    float: left;
    display: block;
    margin-right: 1.20482%;
    width: 74.6988%; }
    /* line 89, ../../../cache/bundle/ruby/2.1.0/gems/neat-1.8.0/app/assets/stylesheets/grid/_span-columns.scss */
    section.how .pinch:last-child {
      margin-right: 0; }
    /* line 236, partials/_layout.scss */
    section.how .pinch .card {
      width: 30%;
      background-color: white;
      box-shadow: 0 0 15px 2px rgba(196, 196, 198, 0.8);
      min-height: 325px;
      padding: 1.5em 0 0 0; }
      /* line 242, partials/_layout.scss */
      section.how .pinch .card svg {
        display: block;
        max-width: 40%;
        max-height: 3em;
        margin: 0 auto 0.75em auto;
        opacity: 0.85;
        transition: opacity 300ms ease-in-out; }
        /* line 249, partials/_layout.scss */
        section.how .pinch .card svg:hover {
          opacity: 1; }
      /* line 253, partials/_layout.scss */
      section.how .pinch .card svg.brand--primary {
        fill: #f19224; }
      /* line 256, partials/_layout.scss */
      section.how .pinch .card svg.brand--secondary {
        fill: #009cdd; }
      /* line 259, partials/_layout.scss */
      section.how .pinch .card svg.brand--tertiary {
        fill: #e3147e; }

/* line 266, partials/_layout.scss */
section.partners {
  display: block;
  padding: 1.20482%;
  text-align: center;
  background-color: #009cdd;
  color: #ffffff;
  border: solid #11b9ff 0.75em; }
  /* line 20, ../../../cache/bundle/ruby/2.1.0/gems/neat-1.8.0/app/assets/stylesheets/mixins/_clearfix.scss */
  section.partners::after {
    clear: both;
    content: "";
    display: block; }
  /* line 273, partials/_layout.scss */
  section.partners h1 {
    color: #ffffff; }
  /* line 274, partials/_layout.scss */
  section.partners .pinch {
    margin-left: 16.86747%;
    float: left;
    display: block;
    margin-right: 1.20482%;
    width: 66.26506%; }
    /* line 89, ../../../cache/bundle/ruby/2.1.0/gems/neat-1.8.0/app/assets/stylesheets/grid/_span-columns.scss */
    section.partners .pinch:last-child {
      margin-right: 0; }
  /* line 278, partials/_layout.scss */
  section.partners ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: center; }
    /* line 285, partials/_layout.scss */
    section.partners ul li {
      width: 22%;
      margin-bottom: 0.75em;
      opacity: 0.88; }

/* line 293, partials/_layout.scss */
footer {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1.20482%;
  background-color: #2f297e;
  background-image: linear-gradient(90deg, #2f297e 40.5%, #009cdd);
  min-height: 220px;
  color: #ffffff; }
  /* line 20, ../../../cache/bundle/ruby/2.1.0/gems/neat-1.8.0/app/assets/stylesheets/mixins/_clearfix.scss */
  footer::after {
    clear: both;
    content: "";
    display: block; }
  /* line 300, partials/_layout.scss */
  footer .footer__logo {
    display: block;
    margin: 0 auto;
    max-width: 15em;
    margin-bottom: 4.5em; }
  /* line 306, partials/_layout.scss */
  footer .row {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto; }
    /* line 20, ../../../cache/bundle/ruby/2.1.0/gems/neat-1.8.0/app/assets/stylesheets/mixins/_clearfix.scss */
    footer .row::after {
      clear: both;
      content: "";
      display: block; }
  /* line 309, partials/_layout.scss */
  footer .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 9em; }
    /* line 314, partials/_layout.scss */
    footer .links ul {
      flex-basis: 25%;
      flex-shrink: 0; }
      /* line 317, partials/_layout.scss */
      footer .links ul li {
        text-align: center; }
    /* line 321, partials/_layout.scss */
    footer .links li a, footer .links li p {
      color: #ffffff; }
  /* line 326, partials/_layout.scss */
  footer hr {
    border: 1px solid #28236b;
    margin: 0 auto 1.5em;
    width: 12em;
    margin-bottom: 1.5em; }
  /* line 333, partials/_layout.scss */
  footer .address, footer .legal, footer .copyright {
    text-align: center;
    font-weight: 400; }

@media screen and (max-width: 768px) {
  /* line 3, partials/_responsive.scss */
  section.why .card__holder {
    flex-wrap: wrap;
    flex-shrink: 0; }
  /* line 7, partials/_responsive.scss */
  section.why .card {
    width: 45%;
    margin-bottom: 1.5em; }

  /* line 14, partials/_responsive.scss */
  section.how .pinch {
    margin-left: 0%;
    float: left;
    display: block;
    margin-right: 1.20482%;
    width: 100%; }
    /* line 89, ../../../cache/bundle/ruby/2.1.0/gems/neat-1.8.0/app/assets/stylesheets/grid/_span-columns.scss */
    section.how .pinch:last-child {
      margin-right: 0; }
    /* line 17, partials/_responsive.scss */
    section.how .pinch .card {
      margin-bottom: 1.5em;
      min-height: initial; } }
@media screen and (max-width: 480px) {
  /* line 27, partials/_responsive.scss */
  header .nav__main ul {
    flex-wrap: wrap; }
  /* line 30, partials/_responsive.scss */
  header .nav__main ul li {
    width: 50%; }

  /* line 35, partials/_responsive.scss */
  .hero-image {
    padding: 1.5em; }
    /* line 38, partials/_responsive.scss */
    .hero-image h1 {
      font-size: 220%; }

  /* line 44, partials/_responsive.scss */
  section.why .card {
    width: 90%; }

  /* line 49, partials/_responsive.scss */
  section.feature {
    flex-wrap: wrap;
    flex-shrink: 0; }
    /* line 52, partials/_responsive.scss */
    section.feature .panel {
      width: 100%;
      padding: 2.5em 1.25em; }
    /* line 56, partials/_responsive.scss */
    section.feature .panel__image {
      min-height: initial;
      height: 15em;
      flex-grow: 0; }

  /* line 64, partials/_responsive.scss */
  section.how .card__holder {
    flex-wrap: wrap;
    flex-shrink: 0; }
    /* line 67, partials/_responsive.scss */
    section.how .card__holder .card {
      width: 90%; }

  /* line 73, partials/_responsive.scss */
  footer {
    background-image: linear-gradient(90deg, #2f297e, #009cdd); }
    /* line 75, partials/_responsive.scss */
    footer .footer__logo {
      margin-bottom: 2.25em; }
    /* line 79, partials/_responsive.scss */
    footer .links ul {
      flex-basis: 90%;
      margin-bottom: 1.5em; } }
/* line 3, partials/_teaser.scss */
header .nav__super ul li:nth-of-type(2) {
  margin-left: auto; }
/* line 6, partials/_teaser.scss */
header .nav__super ul li.logo {
  left: 0; }
  /* line 8, partials/_teaser.scss */
  header .nav__super ul li.logo svg {
    min-width: 150px; }

/* line 15, partials/_teaser.scss */
.email-signup {
  display: flex;
  justify-content: center; }
  /* line 18, partials/_teaser.scss */
  .email-signup input {
    display: inline-block;
    min-height: 25px;
    box-sizing: border-box;
    margin-bottom: 0em; }
  /* line 24, partials/_teaser.scss */
  .email-signup input[type=email] {
    max-width: 45%;
    margin-right: 0;
    border-radius: 3px 0 0 3px; }
  /* line 29, partials/_teaser.scss */
  .email-signup input[type=submit] {
    padding: 0.5em 1.25em;
    border-radius: 0 3px 3px 0; }

@media screen and (max-width: 768px) {
  /* line 36, partials/_teaser.scss */
  .email-signup {
    padding: 0.75em; }
    /* line 38, partials/_teaser.scss */
    .email-signup input[type=email] {
      max-width: 70%; } }
@media screen and (max-width: 480px) {
  /* line 45, partials/_teaser.scss */
  #why {
    padding: 1.5em; }
    /* line 47, partials/_teaser.scss */
    #why h1 {
      font-size: 100%; }

  /* line 52, partials/_teaser.scss */
  .email-signup input {
    margin-bottom: 0; } }
