@import url("https://fonts.googleapis.com/css?family=Nunito");
* {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: none;
  font: inherit;
}

*::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: hsl(0, 0%, 100%);
  background-color: var(--color-bg, white);
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main, form legend {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

button, select, textarea, input {
  color: inherit;
  line-height: inherit;
  background-color: transparent;
  border-radius: 0;
}

button, select, textarea,
input[type="button"], input[type="email"], input[type="number"],
input[type="password"], input[type="search"], input[type="submit"],
input[type="tel"], input[type="text"], input[type="url"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

select::-ms-expand {
  display: none;
}

input::-ms-clear {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, video, svg {
  max-width: 100%;
}

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?9vw8re");
  src: url("../fonts/icomoon.eot?9vw8re#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?9vw8re") format("truetype"), url("../fonts/icomoon.woff?9vw8re") format("woff"), url("../fonts/icomoon.svg?9vw8re#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-mail:before {
  content: "\e900";
  color: #001262;
}

.icon-phone:before {
  content: "\e901";
  color: #001262;
}

.icon-thumbs-up:before {
  content: "\e902";
  color: hsl(0, 0%, 100%);
  color: var(--color-white);
}

:root, [data-theme="default"] {
  --color-primary-darker: hsl(229, 100%, 19%);
  --color-primary-dark: hsl(220, 80%, 48%);
  --color-primary: 	hsl(217, 67%, 42%);
  --color-primary-light: hsl(213, 85%, 68%);
  --color-primary-lighter: hsl(210, 47%, 93%);
  --color-primary-a20: hsla(220, 90%, 56%, 0.2);
  --color-accent-darker: hsl(355, 75%, 48%);
  --color-accent-dark: hsl(45, 66%, 55%);
  --color-accent: hsl(45, 70%, 53%);
  --color-accent-light: hsl(355, 90%, 68%);
  --color-accent-lighter: hsl(356, 89%, 93%);
  --color-black: hsl(240, 7%, 12%);
  --color-black-a10: hsla(240, 7%, 12%, 0.1);
  --color-white: hsl(0, 0%, 100%);
  --color-success-darker: hsl(94, 40%, 45%);
  --color-success-dark: hsl(94, 45%, 50%);
  --color-success: hsl(94, 48%, 56%);
  --color-success-light: hsl(94, 48%, 62%);
  --color-success-lighter: hsl(94, 48%, 92%);
  --color-success-a20: hsla(94, 48%, 56%, 0.2);
  --color-error-darker: hsl(355, 75%, 48%);
  --color-error-dark: hsl(355, 80%, 54%);
  --color-error: hsl(355, 90%, 61%);
  --color-error-light: hsl(355, 90%, 68%);
  --color-error-lighter: hsl(356, 89%, 93%);
  --color-error-a20: hsla(355, 90%, 61%, 0.2);
  --color-warning-darker: hsl(46, 90%, 50%);
  --color-warning-dark: hsl(46, 95%, 55%);
  --color-warning: hsl(46, 100%, 61%);
  --color-warning-light: hsl(46, 100%, 68%);
  --color-warning-lighter: hsl(46, 100%, 91%);
  --color-warning-a20: hsla(46, 100%, 61%, 0.2);
  --color-bg: hsl(0, 0%, 100%);
  --color-contrast-lower: hsl(0, 0%, 95%);
  --color-contrast-low: hsl(0, 0%, 83%);
  --color-contrast-medium: hsl(240, 1%, 47%);
  --color-contrast-high: hsl(255, 4%, 20%);
  --color-contrast-higher: hsl(240, 7%, 12%);
  --color-bg-a20: hsla(0, 0%, 100%, 0.2);
  --color-contrast-a90: hsla(240, 7%, 12%, 0.9);
  --color-border: var(--color-contrast-low);
}

[data-theme] {
  background-color: hsl(0, 0%, 100%);
  background-color: var(--color-bg);
  color: hsl(255, 4%, 20%);
  color: var(--color-contrast-high);
}

:root, body {
  --space-unit:  1em;
  --space-xxxxs: calc(0.125*var(--space-unit));
  --space-xxxs:  calc(0.25*var(--space-unit));
  --space-xxs:   calc(0.375*var(--space-unit));
  --space-xs:    calc(0.5*var(--space-unit));
  --space-sm:    calc(0.75*var(--space-unit));
  --space-md:    calc(1.25*var(--space-unit));
  --space-lg:    calc(2*var(--space-unit));
  --space-xl:    calc(3.25*var(--space-unit));
  --space-xxl:   calc(5.25*var(--space-unit));
  --space-xxxl:  calc(8.5*var(--space-unit));
  --space-xxxxl: calc(13.75*var(--space-unit));
  --component-padding: var(--space-sm);
}

@supports (--css: variables) {
  @media only screen and (min-width: 64rem) {
    body {
      --space-unit:  1.25em;
    }
  }
}

.margin-top, .margin-top--md {
  margin-top: 1.25em;
  margin-top: var(--space-md);
}

.margin-top--xxxxs {
  margin-top: 0.125em;
  margin-top: var(--space-xxxxs);
}

.margin-top--xxxs {
  margin-top: 0.25em;
  margin-top: var(--space-xxxs);
}

.margin-top--xxs {
  margin-top: 0.375em;
  margin-top: var(--space-xxs);
}

.margin-top--xs {
  margin-top: 0.5em;
  margin-top: var(--space-xs);
}

.margin-top--sm {
  margin-top: 0.75em;
  margin-top: var(--space-sm);
}

.margin-top--lg {
  margin-top: 2em;
  margin-top: var(--space-lg);
}

.margin-top--xl {
  margin-top: 3.25em;
  margin-top: var(--space-xl);
}

.margin-top--xxl {
  margin-top: 5.25em;
  margin-top: var(--space-xxl);
}

.margin-top--xxxl {
  margin-top: 8.5em;
  margin-top: var(--space-xxxl);
}

.margin-top--xxxxl {
  margin-top: 13.75em;
  margin-top: var(--space-xxxxl);
}

.margin-bottom, .margin-bottom--md {
  margin-bottom: 1.25em;
  margin-bottom: var(--space-md);
}

.margin-bottom--xxxxs {
  margin-bottom: 0.125em;
  margin-bottom: var(--space-xxxxs);
}

.margin-bottom--xxxs {
  margin-bottom: 0.25em;
  margin-bottom: var(--space-xxxs);
}

.margin-bottom--xxs {
  margin-bottom: 0.375em;
  margin-bottom: var(--space-xxs);
}

.margin-bottom--xs {
  margin-bottom: 0.5em;
  margin-bottom: var(--space-xs);
}

.margin-bottom--sm {
  margin-bottom: 0.75em;
  margin-bottom: var(--space-sm);
}

.margin-bottom--lg {
  margin-bottom: 2em;
  margin-bottom: var(--space-lg);
}

.margin-bottom--xl {
  margin-bottom: 3.25em;
  margin-bottom: var(--space-xl);
}

.margin-bottom--xxl {
  margin-bottom: 5.25em;
  margin-bottom: var(--space-xxl);
}

.margin-bottom--xxxl {
  margin-bottom: 8.5em;
  margin-bottom: var(--space-xxxl);
}

.margin-bottom--xxxxl {
  margin-bottom: 13.75em;
  margin-bottom: var(--space-xxxxl);
}

:root {
  --container-width-xs: 37.5rem;
  --container-width-sm: 45rem;
  --container-width-md: 64rem;
  --container-width-lg: 80rem;
  --container-width-xl: 90rem;
}

.container {
  width: calc(100% - 0.75em);
  width: calc(100% - 2*var(--component-padding));
  margin-left: auto;
  margin-right: auto;
}

.container--full-width {
  width: 100%;
}

.container--xs {
  max-width: 37.5rem;
  max-width: var(--container-width-xs);
}

.container--sm {
  max-width: 45rem;
  max-width: var(--container-width-sm);
}

.container--md {
  max-width: 64rem;
  max-width: var(--container-width-md);
}

.container--lg {
  max-width: 80rem;
  max-width: var(--container-width-lg);
}

.container--xl {
  max-width: 90rem;
  max-width: var(--container-width-xl);
}

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -1.25em 0 0 -1.25em;
  margin: calc(var(--space-md)*-1) 0 0 calc(var(--space-md)*-1);
}

.grid > * {
  padding: 1.25em 0 0 1.25em;
  padding: var(--space-md) 0 0 var(--space-md);
  background-clip: content-box;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.grid-gap--none {
  margin: 0;
}

.grid-gap--none > * {
  padding: 0;
}

.grid-gap--xs {
  margin: -0.5em 0 0 -0.5em;
  margin: calc(var(--space-xs)*-1) 0 0 calc(var(--space-xs)*-1);
}

.grid-gap--xs > * {
  padding: 0.5em 0 0 0.5em;
  padding: var(--space-xs) 0 0 var(--space-xs);
}

.grid-gap--sm {
  margin: -0.75em 0 0 -0.75em;
  margin: calc(var(--space-sm)*-1) 0 0 calc(var(--space-sm)*-1);
}

.grid-gap--sm > * {
  padding: 0.75em 0 0 0.75em;
  padding: var(--space-sm) 0 0 var(--space-sm);
}

.grid-gap--lg {
  margin: -2em 0 0 -2em;
  margin: calc(var(--space-lg)*-1) 0 0 calc(var(--space-lg)*-1);
}

.grid-gap--lg > * {
  padding: 2em 0 0 2em;
  padding: var(--space-lg) 0 0 var(--space-lg);
}

.grid-gap--xl {
  margin: -3.25em 0 0 -3.25em;
  margin: calc(var(--space-xl)*-1) 0 0 calc(var(--space-xl)*-1);
}

.grid-gap--xl > * {
  padding: 3.25em 0 0 3.25em;
  padding: var(--space-xl) 0 0 var(--space-xl);
}

.col--1 {
  -ms-flex-preferred-size: 8.33%;
      flex-basis: 8.33%;
  max-width: 8.33%;
}

.col--2 {
  -ms-flex-preferred-size: 16.66%;
      flex-basis: 16.66%;
  max-width: 16.66%;
}

.col--3 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  max-width: 25%;
}

.col--4 {
  -ms-flex-preferred-size: 33.33%;
      flex-basis: 33.33%;
  max-width: 33.33%;
}

.col--5 {
  -ms-flex-preferred-size: 41.66%;
      flex-basis: 41.66%;
  max-width: 41.66%;
}

.col--6 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
}

.col--7 {
  -ms-flex-preferred-size: 58.33%;
      flex-basis: 58.33%;
  max-width: 58.33%;
}

.col--8 {
  -ms-flex-preferred-size: 66.66%;
      flex-basis: 66.66%;
  max-width: 66.66%;
}

.col--9 {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  max-width: 75%;
}

.col--10 {
  -ms-flex-preferred-size: 83.33%;
      flex-basis: 83.33%;
  max-width: 83.33%;
}

.col--11 {
  -ms-flex-preferred-size: 91.66%;
      flex-basis: 91.66%;
  max-width: 91.66%;
}

.col--12 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}

@media only screen and (min-width: 37.5rem) {
  .col--sm-1 {
    -ms-flex-preferred-size: 8.33%;
        flex-basis: 8.33%;
    max-width: 8.33%;
  }
  .col--sm-2 {
    -ms-flex-preferred-size: 16.66%;
        flex-basis: 16.66%;
    max-width: 16.66%;
  }
  .col--sm-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  .col--sm-4 {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
    max-width: 33.33%;
  }
  .col--sm-5 {
    -ms-flex-preferred-size: 41.66%;
        flex-basis: 41.66%;
    max-width: 41.66%;
  }
  .col--sm-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  .col--sm-7 {
    -ms-flex-preferred-size: 58.33%;
        flex-basis: 58.33%;
    max-width: 58.33%;
  }
  .col--sm-8 {
    -ms-flex-preferred-size: 66.66%;
        flex-basis: 66.66%;
    max-width: 66.66%;
  }
  .col--sm-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
  }
  .col--sm-10 {
    -ms-flex-preferred-size: 83.33%;
        flex-basis: 83.33%;
    max-width: 83.33%;
  }
  .col--sm-11 {
    -ms-flex-preferred-size: 91.66%;
        flex-basis: 91.66%;
    max-width: 91.66%;
  }
  .col--sm-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 64rem) {
  .col--md-1 {
    -ms-flex-preferred-size: 8.33%;
        flex-basis: 8.33%;
    max-width: 8.33%;
  }
  .col--md-2 {
    -ms-flex-preferred-size: 16.66%;
        flex-basis: 16.66%;
    max-width: 16.66%;
  }
  .col--md-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  .col--md-4 {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
    max-width: 33.33%;
  }
  .col--md-5 {
    -ms-flex-preferred-size: 41.66%;
        flex-basis: 41.66%;
    max-width: 41.66%;
  }
  .col--md-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  .col--md-7 {
    -ms-flex-preferred-size: 58.33%;
        flex-basis: 58.33%;
    max-width: 58.33%;
  }
  .col--md-8 {
    -ms-flex-preferred-size: 66.66%;
        flex-basis: 66.66%;
    max-width: 66.66%;
  }
  .col--md-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
  }
  .col--md-10 {
    -ms-flex-preferred-size: 83.33%;
        flex-basis: 83.33%;
    max-width: 83.33%;
  }
  .col--md-11 {
    -ms-flex-preferred-size: 91.66%;
        flex-basis: 91.66%;
    max-width: 91.66%;
  }
  .col--md-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 80rem) {
  .col--lg-1 {
    -ms-flex-preferred-size: 8.33%;
        flex-basis: 8.33%;
    max-width: 8.33%;
  }
  .col--lg-2 {
    -ms-flex-preferred-size: 16.66%;
        flex-basis: 16.66%;
    max-width: 16.66%;
  }
  .col--lg-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  .col--lg-4 {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
    max-width: 33.33%;
  }
  .col--lg-5 {
    -ms-flex-preferred-size: 41.66%;
        flex-basis: 41.66%;
    max-width: 41.66%;
  }
  .col--lg-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  .col--lg-7 {
    -ms-flex-preferred-size: 58.33%;
        flex-basis: 58.33%;
    max-width: 58.33%;
  }
  .col--lg-8 {
    -ms-flex-preferred-size: 66.66%;
        flex-basis: 66.66%;
    max-width: 66.66%;
  }
  .col--lg-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
  }
  .col--lg-10 {
    -ms-flex-preferred-size: 83.33%;
        flex-basis: 83.33%;
    max-width: 83.33%;
  }
  .col--lg-11 {
    -ms-flex-preferred-size: 91.66%;
        flex-basis: 91.66%;
    max-width: 91.66%;
  }
  .col--lg-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 90rem) {
  .col--xl-1 {
    -ms-flex-preferred-size: 8.33%;
        flex-basis: 8.33%;
    max-width: 8.33%;
  }
  .col--xl-2 {
    -ms-flex-preferred-size: 16.66%;
        flex-basis: 16.66%;
    max-width: 16.66%;
  }
  .col--xl-3 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  .col--xl-4 {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
    max-width: 33.33%;
  }
  .col--xl-5 {
    -ms-flex-preferred-size: 41.66%;
        flex-basis: 41.66%;
    max-width: 41.66%;
  }
  .col--xl-6 {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  .col--xl-7 {
    -ms-flex-preferred-size: 58.33%;
        flex-basis: 58.33%;
    max-width: 58.33%;
  }
  .col--xl-8 {
    -ms-flex-preferred-size: 66.66%;
        flex-basis: 66.66%;
    max-width: 66.66%;
  }
  .col--xl-9 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
  }
  .col--xl-10 {
    -ms-flex-preferred-size: 83.33%;
        flex-basis: 83.33%;
    max-width: 83.33%;
  }
  .col--xl-11 {
    -ms-flex-preferred-size: 91.66%;
        flex-basis: 91.66%;
    max-width: 91.66%;
  }
  .col--xl-12 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex > * {
  display: inline-block;
}

.flex--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex--center-x {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex--center-y {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex--space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex--space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex--space-evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.flex--grow > * {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.flex--shrink-none > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.flex-gap > *, .flex-gap--md > * {
  margin-right: 1.25em;
  margin-right: var(--space-md);
}

.flex-gap > *:last-child, .flex-gap--md > *:last-child {
  margin-right: 0;
}

.flex--wrap.flex-gap, .flex--wrap.flex-gap--md {
  margin-bottom: -1.25em;
  margin-bottom: calc(-1*var(--space-md));
}

.flex--wrap.flex-gap > *, .flex--wrap.flex-gap--md > * {
  margin-bottom: 1.25em;
  margin-bottom: var(--space-md);
}

.flex-gap--xxs > * {
  margin-right: 0.375em;
  margin-right: var(--space-xxs);
}

.flex-gap--xxs > *:last-child {
  margin-right: 0;
}

.flex--wrap.flex-gap--xxs {
  margin-bottom: -0.375em;
  margin-bottom: calc(-1*var(--space-xxs));
}

.flex--wrap.flex-gap--xxs > * {
  margin-bottom: 0.375em;
  margin-bottom: var(--space-xxs);
}

.flex-gap--xs > * {
  margin-right: 0.5em;
  margin-right: var(--space-xs);
}

.flex-gap--xs > *:last-child {
  margin-right: 0;
}

.flex--wrap.flex-gap--xs {
  margin-bottom: -0.5em;
  margin-bottom: calc(-1*var(--space-xs));
}

.flex--wrap.flex-gap--xs > * {
  margin-bottom: 0.5em;
  margin-bottom: var(--space-xs);
}

.flex-gap--sm > * {
  margin-right: 0.75em;
  margin-right: var(--space-sm);
}

.flex-gap--sm > *:last-child {
  margin-right: 0;
}

.flex--wrap.flex-gap--sm {
  margin-bottom: -0.75em;
  margin-bottom: calc(-1*var(--space-sm));
}

.flex--wrap.flex-gap--sm > * {
  margin-bottom: 0.75em;
  margin-bottom: var(--space-sm);
}

.flex-gap--lg > * {
  margin-right: 2em;
  margin-right: var(--space-lg);
}

.flex-gap--lg > *:last-child {
  margin-right: 0;
}

.flex--wrap.flex-gap--lg {
  margin-bottom: -2em;
  margin-bottom: calc(-1*var(--space-lg));
}

.flex--wrap.flex-gap--lg > * {
  margin-bottom: 2em;
  margin-bottom: var(--space-lg);
}

.flex-gap--xl > * {
  margin-right: 3.25em;
  margin-right: var(--space-xl);
}

.flex-gap--xl > *:last-child {
  margin-right: 0;
}

.flex--wrap.flex-gap--xl {
  margin-bottom: -3.25em;
  margin-bottom: calc(-1*var(--space-xl));
}

.flex--wrap.flex-gap--xl > * {
  margin-bottom: 3.25em;
  margin-bottom: var(--space-xl);
}

.flex-item--end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.flex-item--grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.flex-item--shrink-none {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

:root {
  --radius: 0.25em;
  --transition-bounce: cubic-bezier(.25,1.43,.35,1.69);
}

:root, body {
  --font-primary: 'Nunito', sans-serif;
  --text-base-size: 1em;
  --text-scale-ratio: 1.2;
  --text-xs: calc(1em/var(--text-scale-ratio)/var(--text-scale-ratio));
  --text-sm: calc(var(--text-xs)*var(--text-scale-ratio));
  --text-md: calc(var(--text-sm)*var(--text-scale-ratio)*var(--text-scale-ratio));
  --text-lg: calc(var(--text-md)*var(--text-scale-ratio));
  --text-xl: calc(var(--text-lg)*var(--text-scale-ratio));
  --text-xxl: calc(var(--text-xl)*var(--text-scale-ratio));
  --text-xxxl: calc(var(--text-xxl)*var(--text-scale-ratio));
  --body-line-height: 1.5;
  --heading-line-height: 1.1;
  --font-primary-capital-letter: 1;
  --drop-cap-size-ratio: 3.5;
  --drop-cap-padding: 1.5em;
}

@supports (--css: variables) {
  @media only screen and (min-width: 64rem) {
    body {
      --text-base-size: 1.25em;
      --text-scale-ratio: 1.25;
    }
  }
}

body {
  font-size: 1em;
  font-size: var(--text-base-size);
  font-family: 'Nunito', sans-serif;
  font-family: var(--font-primary);
  color: hsl(229, 100%, 19%);
  color: var(--color-primary-darker);
}

@supports (--css: variables){
  @media only screen and (min-width: 64rem){
    body{
  font-size: 1.25em;
  font-size: var(--text-base-size);
    }
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-family: var(--font-primary);
  color: hsl(229, 100%, 19%);
  color: var(--color-primary-darker);
  line-height: 1.1;
  line-height: var(--heading-line-height);
}

.text--xxxl {
  font-size: 2.48832em;
  font-size: var(--text-xxxl);
  letter-spacing: -0.2rem;
}

h1, .text--xxl {
  font-size: 2.0736em;
  font-size: var(--text-xxl);
  letter-spacing: -0.05rem;
}

h2, .text--xl {
  font-size: 1.728em;
  font-size: var(--text-xl);
  letter-spacing: -0.05rem;
}

h3, .text--lg {
  font-family: 'Nunito', sans-serif;
  font-family: var(--font-primary);
  font-size: 1.44em;
  font-size: var(--text-lg);
  letter-spacing: -0.05rem;
}

h4, .text--md {
  font-size: 1.2em;
  font-size: var(--text-md);
  letter-spacing: 0 0.5rem;
}

h5, .text--sm, small {
  font-size: 0.83333em;
  font-size: var(--text-sm);
}

h6, .text--xs {
  font-size: 0.69444em;
  font-size: var(--text-xs);
}

a {
  color: hsl(217, 67%, 42%);
  color: var(--color-primary);
  text-decoration: none;
}

mark {
  background-color: hsl(356, 89%, 93%);
  background-color: var(--color-accent-lighter);
  color: inherit;
}

strong {
  font-weight: bold;
}

s {
  text-decoration: line-through;
}

u {
  text-decoration: underline;
}

.text-brand {
  color: hsl(217, 67%, 42%);
  color: var(--color-primary);
}

.text--subtle {
  color: hsl(240, 1%, 47%);
  color: var(--color-contrast-medium);
}

.text-component {
  --component-body-line-height: calc(var(--body-line-height)*var(--line-height-multiplier));
  --component-heading-line-height: calc(var(--heading-line-height)*var(--line-height-multiplier));
  --line-height-multiplier: 1;
  --text-vspace-multiplier: 1;
}

.text-component h1, .text-component h2, .text-component h3, .text-component h4, .text-component h5, .text-component h6 {
  line-height: 1.1;
  line-height: var(--component-heading-line-height);
  margin-bottom: 0.25em;
  margin-bottom: calc(var(--space-xxxs)*var(--text-vspace-multiplier));
}

.text-component h2, .text-component h3, .text-component h4, .text-component h5, .text-component h6 {
  margin-top: 0.75em;
  margin-top: calc(var(--space-sm)*var(--text-vspace-multiplier));
}

.text-component p, .text-component blockquote, .text-component ul li, .text-component ol li {
  line-height: 1.5;
  line-height: var(--component-body-line-height);
  color: hsl(229, 100%, 19%);
  color: var(--color-primary-darker);
}

.text-component ul, .text-component ol, .text-component p, .text-component blockquote {
  margin-bottom: 0.75em;
  margin-bottom: calc(var(--space-sm)*var(--text-vspace-multiplier));
}

.text-component ul, .text-component ol {
  padding-left: 1em;
}

.text-component ul {
  list-style-type: disc;
}

.text-component ol {
  list-style-type: decimal;
}

.text-component em {
  font-style: italic;
}

.text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(0, 0%, 83%);
  border-left: 4px solid var(--color-contrast-low);
}

.text-component hr {
  background: hsl(0, 0%, 83%);
  background: var(--color-contrast-low);
  height: 1px;
  margin: 2em auto;
  margin: calc(var(--space-lg)*var(--text-vspace-multiplier)) auto;
}

.text-component .drop-cap:first-letter {
  float: left;
  line-height: 1;
  font-size: 3.5em;
  font-size: calc(var(--drop-cap-size-ratio)*1em);
  padding: 0.42857em 0.42857em 0.2em;
  padding: calc(var(--drop-cap-padding)/var(--drop-cap-size-ratio)) calc(var(--drop-cap-padding)/var(--drop-cap-size-ratio)) calc((var(--drop-cap-padding) - 0.8em)/var(--drop-cap-size-ratio));
}

.text-component > *:first-child {
  margin-top: 0;
}

.text-component > *:last-child {
  margin-bottom: 0;
}

.article.text-component {
  --line-height-multiplier: 1.13;
}

.text-component__img {
  margin-bottom: undefined;
  margin-bottom: calc(var(--space-md)*var(--text-vspace-multiplier));
  text-align: center;
}

.text-component__img figcaption {
  text-align: center;
  font-size: 0.83333em;
  font-size: var(--text-sm);
  color: hsl(240, 1%, 47%);
  color: var(--color-contrast-medium);
}

@media only screen and (min-width: 37.5rem) {
  .text-component__img--left, .text-component__img--right {
    width: 45%;
  }
  .text-component__img--left {
    float: left;
    margin-right: undefined;
    margin-right: calc(var(--space-md)*var(--text-vspace-multiplier));
  }
  .text-component__img--right {
    float: right;
    margin-left: undefined;
    margin-left: calc(var(--space-md)*var(--text-vspace-multiplier));
  }
}

@media only screen and (min-width: 90rem) {
  .text-component__img--outset {
    width: calc(100% + 10.5em);
    width: calc(100% + 2*var(--space-xxl));
  }
  .text-component__img--outset:not(.text-component__img--right) {
    margin-left: -5.25em;
    margin-left: calc(-1*var(--space-xxl));
  }
  .text-component__img--left, .text-component__img--right {
    width: 50%;
  }
  .text-component__img--right.text-component__img--outset {
    margin-right: -5.25em;
    margin-right: calc(-1*var(--space-xxl));
  }
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

:root {
  --icon-xs: 16px;
  --icon-sm: 24px;
  --icon-md: 32px;
  --icon-lg: 48px;
  --icon-xl: 64px;
}

.icon {
  font-family: 'icomoon';
  display: inline-block;
  color: hsl(240, 7%, 12%);
  color: var(--color-contrast-higher);
  fill: currentColor;
  height: 1em;
  width: 1em;
  line-height: 1;
}

.icon--xs {
  font-size: 16px;
  font-size: var(--icon-xs);
}

.icon--sm {
  font-size: 24px;
  font-size: var(--icon-sm);
}

.icon--md {
  font-size: 32px;
  font-size: var(--icon-md);
}

.icon--lg {
  font-size: 48px;
  font-size: var(--icon-lg);
}

.icon--xl {
  font-size: 64px;
  font-size: var(--icon-xl);
}

.icon-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.icon-text > *:nth-child(2) {
  margin-left: 0.375em;
  margin-left: var(--space-xxs);
}

.icon-text .icon {
  color: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.icon-text.icon-text-gap--none > *:nth-child(2) {
  margin-left: 0;
}

.icon--is-spinning {
  -webkit-animation: icon-spin 1s infinite linear;
          animation: icon-spin 1s infinite linear;
}

@-webkit-keyframes icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.icon use {
  color: inherit;
  fill: currentColor;
}

:root {
  --btn-font-size: 1em;
  --btn-sm: calc(var(--btn-font-size) - 0.2em);
  --btn-md: calc(var(--btn-font-size) + 0.2em);
  --btn-lg: calc(var(--btn-font-size) + 0.4em);
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  padding: 0.5em 0.75em;
  padding: var(--space-xs) var(--space-sm);
  border-radius: 0.5em;
  font-size: 1em;
  font-size: var(--btn-font-size);
  color: hsl(217, 67%, 42%);
  color: var(--color-primary);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  -webkit-transition: all .15s ease;
  transition: all .15s ease;
  cursor: pointer;
}

.btn--primary {
  background-color: hsl(229, 100%, 19%);
  background-color: var(--color-primary-darker);
  color: hsl(0, 0%, 100%);
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn--primary:hover {
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
  background-color: hsl(217, 67%, 42%);
  background-color: var(--color-primary);
  -webkit-box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.btn--subtle {
  background-color: hsl(0, 0%, 100%);
  background-color: var(--color-white);
  color: hsl(229, 100%, 19%);
  color: var(--color-primary-darker);
  border: 1px solid hsl(0, 0%, 100%);
  border: 1px solid var(--color-white);
}

.btn--subtle:hover {
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
  background-color: hsl(0, 0%, 100%);
  background-color: var(--color-white);
  -webkit-box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.btn--accent {
  background-color: hsl(45, 70%, 53%);
  background-color: var(--color-accent);
  color: hsl(229, 100%, 19%);
  color: var(--color-primary-darker);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn--accent:hover {
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
  background-color: hsl(45, 66%, 55%);
  background-color: var(--color-accent-dark);
  color: hsl(229, 100%, 19%);
  color: var(--color-primary-darker);
  -webkit-box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.btn--facebook {
  background-color: #3b5998;
  color: hsl(0, 0%, 100%);
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn--facebook:hover {
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
  background-color: #3e5d9f;
  color: hsl(0, 0%, 100%);
  color: var(--color-white);
  -webkit-box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.btn--disabled {
  cursor: not-allowed;
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 0.6;
}

.btn--sm {
  font-size: 0.8em;
  font-size: var(--btn-sm);
}

.btn--md {
  font-size: 1.2em;
  font-size: var(--btn-md);
}

.btn--lg {
  font-size: 1.4em;
  font-size: var(--btn-lg);
}

.btn--full-width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.btn .icon {
  color: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.btn--icon-text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn--icon-text > *:nth-child(2) {
  margin-left: 0.375em;
  margin-left: var(--space-xxs);
}

.btn--icon {
  padding: 0.5em;
  padding: var(--space-xs);
}

.form-control {
  padding: 0.5em 0.75em;
  padding: var(--space-xs) var(--space-sm);
  background: hsl(0, 0%, 100%);
  background: var(--color-bg);
  border: 2px solid hsl(0, 0%, 83%);
  border: 2px solid var(--color-contrast-low);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: hsl(217, 67%, 42%);
  border-color: var(--color-primary);
  -webkit-box-shadow: 0 0 0 3px hsla(220, 90%, 56%, 0.2);
  -webkit-box-shadow: 0 0 0 3px var(--color-primary-a20);
          box-shadow: 0 0 0 3px hsla(220, 90%, 56%, 0.2);
          box-shadow: 0 0 0 3px var(--color-primary-a20);
}

.form-control::-webkit-input-placeholder {
  color: hsl(240, 1%, 47%);
  color: var(--color-contrast-medium);
}

.form-control::-moz-placeholder {
  opacity: 1;
  color: hsl(240, 1%, 47%);
  color: var(--color-contrast-medium);
}

.form-control:-ms-input-placeholder {
  color: hsl(240, 1%, 47%);
  color: var(--color-contrast-medium);
}

.form-control:-moz-placeholder {
  color: hsl(240, 1%, 47%);
  color: var(--color-contrast-medium);
}

.form-control[disabled], .form-control[readonly] {
  cursor: not-allowed;
}

.form-control[aria-invalid="true"] {
  border-color: hsl(355, 90%, 61%);
  border-color: var(--color-error);
}

.form-control[aria-invalid="true"]:focus {
  -webkit-box-shadow: 0 0 0 3px hsla(355, 90%, 61%, 0.2);
  -webkit-box-shadow: 0 0 0 3px var(--color-error-a20);
          box-shadow: 0 0 0 3px hsla(355, 90%, 61%, 0.2);
          box-shadow: 0 0 0 3px var(--color-error-a20);
}

.form-legend {
  color: hsl(240, 7%, 12%);
  color: var(--color-contrast-higher);
  line-height: 1.2;
  font-size: 1.2em;
  font-size: var(--text-md);
  margin-bottom: 0.375em;
  margin-bottom: var(--space-xxs);
}

.form-label {
  display: inline-block;
  font-size: 0.83333em;
  font-size: var(--text-sm);
  margin-bottom: 0.25em;
  margin-bottom: var(--space-xxxs);
}

.form__msg-error {
  background-color: hsl(355, 90%, 61%);
  background-color: var(--color-error);
  color: hsl(0, 0%, 100%);
  color: var(--color-white);
  font-size: 0.83333em;
  font-size: var(--text-sm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0.5em;
  padding: var(--space-xs);
  margin-top: 0.75em;
  margin-top: var(--space-sm);
  border-radius: 0.25em;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}

.form__msg-error::before {
  content: '';
  position: absolute;
  left: 0.75em;
  left: var(--space-sm);
  top: 0;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom-color: hsl(355, 90%, 61%);
  border-bottom-color: var(--color-error);
}

.form__msg-error--is-visible {
  position: relative;
  clip: auto;
}

:root {
  --select-icon-size: 1em;
  --select-icon-right-margin: var(--space-sm);
}

.select {
  position: relative;
}

.select select {
  padding-right: 2.5em;
  padding-right: calc(var(--select-icon-size) + var(--select-icon-right-margin)*2);
}

.select .icon {
  width: 1em;
  width: var(--select-icon-size);
  height: 1em;
  height: var(--select-icon-size);
  position: absolute;
  right: 0.75em;
  right: var(--select-icon-right-margin);
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.radio-list > *, .checkbox-list > * {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 0.375em;
  margin-bottom: var(--space-xxs);
}

.radio-list > *:last-of-type, .checkbox-list > *:last-of-type {
  margin-bottom: 0;
}

.radio-list label, .checkbox-list label {
  line-height: 1.5;
  line-height: var(--body-line-height);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.radio-list input, .checkbox-list input {
  vertical-align: top;
  margin-right: 0.25em;
  margin-right: var(--space-xxxs);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.radio-list.radio-list--inline, .radio-list.checkbox-list--inline, .checkbox-list.radio-list--inline, .checkbox-list.checkbox-list--inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: -1.25em;
  margin-bottom: calc(-1*var(--space-md));
}

.radio-list.radio-list--inline > *, .radio-list.checkbox-list--inline > *, .checkbox-list.radio-list--inline > *, .checkbox-list.checkbox-list--inline > * {
  margin: 0 1.25em 1.25em 0;
  margin: 0 var(--space-md) var(--space-md) 0;
}

:root {
  --zindex-header: 2;
  --zindex-fixed-element: 5;
  --zindex-overlay: 10;
}

.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

/* Custom styling */
.visible-mobile {
  display: inline-block;
}

@media only screen and (min-width: 37.5rem) {
  .visible-mobile {
    display: none;
  }
}

.hide-mobile {
  display: none;
}

@media only screen and (min-width: 37.5rem) {
  .hide-mobile {
    display: inline-block;
  }
}

header {
  width: 100%;
  height: 120px;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px 0;
  z-index: 5;
  z-index: var(--zindex-fixed-element);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow: visible;
}

header.smaller {
  height: 80px;
  background: hsl(217, 67%, 42%);
  background: var(--color-primary);
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

@media only screen and (min-width: 64rem) {
  header.smaller {
    height: 90px;
  }
}

header.smaller .header-brand img {
  width: 100px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

header .header-brand {
  float: left;
}

header .header-brand img {
  width: 100px;
}

@media only screen and (min-width: 64rem) {
  header .header-brand img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    width: 166px;
  }
}

header nav {
  display: none;
}

@media only screen and (min-width: 64rem) {
  header nav {
    display: inline-block;
  }
}

@media only screen and (min-width: 64rem) {
  header nav.main-navigation {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    -webkit-transform: none;
    -ms-transform: none;
        transform: none;
    display: block;
    float: left;
    height: auto;
    width: auto;
    background: 0 0;
    text-align: left;
  }
}

header nav.main-navigation li {
  display: inline-block;
}

header nav.main-navigation li a {
  line-height: 2.5em;
  margin-right: 20px;
  color: hsl(0, 0%, 100%);
  color: var(--color-white);
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

header nav.main-navigation li a:hover {
  color: hsl(45, 70%, 53%);
  color: var(--color-accent);
}

header nav.main-navigation li a .btn--accent:hover {
  color: hsl(229, 100%, 19%);
  color: var(--color-primary-darker);
  background-color: hsl(45, 66%, 55%);
  background-color: var(--color-accent-dark);
}

header .header-contact {
  float: right;
}

#navigationWrap {
  display: none;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  background: hsl(217, 67%, 42%);
  background: var(--color-primary);
  opacity: 0;
  position: fixed;
  top: 0;
  padding-top: 100px;
  overflow: hidden;
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
  z-index: 10;
}

#navigationWrap nav ul {
  list-style-type: none;
  padding: 0;
}

#navigationWrap nav ul li {
  margin: 0.75em 0;
  margin: var(--space-sm) 0;
  color: white;
  overflow: hidden;
}

#navigationWrap nav ul li a {
  color: hsl(0, 0%, 100%);
  color: var(--color-white);
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
}

#navigationWrap nav ul li a:hover {
  color: hsl(45, 70%, 53%);
  color: var(--color-accent);
}

#navigationWrap .social a {
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
}

.navbar {
  cursor: pointer;
}

.close {
  display: none;
  opacity: 0;
  cursor: pointer;
}

.hero {
  position: relative;
  background: hsl(217, 67%, 42%);
  background: var(--color-primary);
  background-image: url("../images/hero/bottom-gradient-overlay.png"), url("../images/hero/Background@2x.png");
  background-position: bottom left, center top;
  background-repeat: repeat-x, no-repeat;
  height: auto;
  padding-top: 100px;
  color: hsl(0, 0%, 100%);
  color: var(--color-white);
}

@media only screen and (min-width: 37.5rem) {
  .hero {
    height: auto;
  }
}

.hero h1, .hero h2, .hero p {
  color: hsl(0, 0%, 100%);
  color: var(--color-white);
}

.hero .text-component.hero-text {
  margin-top: 0.5em;
  margin-top: var(--space-xs);
}

@media only screen and (min-width: 37.5rem) {
  .hero .text-component.hero-text {
    margin-top: 1.25em;
    margin-top: var(--space-md);
  }
}

@media only screen and (min-width: 64rem) {
  .hero .text-component.hero-text {
    margin-top: 2em;
    margin-top: var(--space-lg);
  }
}

.hero .text-component.bullets {
  margin-top: 1.25em;
  margin-top: var(--space-md);
}

@media only screen and (min-width: 64rem) {
  .hero .text-component.bullets {
    margin-top: 3.25em;
    margin-top: var(--space-xl);
  }
}

.hero .text-component ul.no_bullet {
  list-style-type: none;
  padding: 0;
}

.hero .text-component ul li.check-circle {
  color: hsl(0, 0%, 100%);
  color: var(--color-white);
  margin: 1em 0;
  background: url("../images/services/check-circle.svg") no-repeat left top;
  height: 24px;
  padding-left: 40px;
}

.hero .text-component .hero-image {
  width: 100%;
  max-width: 1024px;
  margin-top: 1.25em;
  margin-top: var(--space-md);
  padding-top: 69.16996%;
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
}

.hero .text-component .hero-image img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.hero .text-component .hero-image.top img {
  top: auto;
  bottom: 0;
}

@media only screen and (min-width: 37.5rem) {
  .hero .text-component .hero-image {
    padding-top: 69.16996%;
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
  }
  .hero .text-component .hero-image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
  .hero .text-component .hero-image.top img {
    top: auto;
    bottom: 0;
  }
}

@media only screen and (min-width: 64rem) {
  .hero .text-component .hero-image {
    padding-top: 69.16996%;
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
  }
  .hero .text-component .hero-image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
  .hero .text-component .hero-image.top img {
    top: auto;
    bottom: 0;
  }
}

@media only screen and (min-width: 80rem) {
  .hero .text-component .hero-image {
    padding-top: 69.16996%;
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
  }
  .hero .text-component .hero-image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
  .hero .text-component .hero-image.top img {
    top: auto;
    bottom: 0;
  }
}

@media only screen and (min-width: 37.5rem) {
  .hero .text-component .hero-image img {
    width: 90%;
  }
}

@media only screen and (min-width: 64rem) {
  .hero .text-component .hero-image img {
    width: 100%;
  }
}

.services {
  background: hsl(0, 0%, 100%);
  background: var(--color-white);
  padding-top: 8.5em;
  padding-top: var(--space-xxxl);
  padding-bottom: 8.5em;
  padding-bottom: var(--space-xxxl);
}

.services .service-component {
  width: 100%;
  height: auto;
  margin-bottom: 1.25em;
  margin-bottom: var(--space-md);
  background: hsl(0, 0%, 100%);
  background: var(--color-white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media only screen and (min-width: 64rem) {
  .services .service-component {
    margin-bottom: 2em;
    margin-bottom: var(--space-lg);
  }
}

.services .service-component .service-image {
  display: inline-block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (min-width: 37.5rem) {
  .services .service-component .service-image {
    width: 33%;
  }
}

.services .service-component .service-image img {
  width: 100%;
  height: 100%;
}

.services .service-component .service-content {
  display: inline-block;
  width: 100%;
  padding: 1em;
}

@media only screen and (min-width: 37.5rem) {
  .services .service-component .service-content {
    width: auto;
  }
}

.about {
  background: hsl(210, 47%, 93%);
  background: var(--color-primary-lighter);
  padding-bottom: 5.25em;
  padding-bottom: var(--space-xxl);
}

@media only screen and (min-width: 64rem) {
  .about {
    padding-bottom: 5.25em;
    padding-bottom: var(--space-xxl);
  }
}

.about .about-image {
  width: 100%;
  max-width: 1024px;
  padding-top: 110%;
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
}

.about .about-image img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.about .about-image.top img {
  top: auto;
  bottom: 0;
}

@media only screen and (min-width: 37.5rem) {
  .about .about-image {
    padding-top: 100%;
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
  }
  .about .about-image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
  .about .about-image.top img {
    top: auto;
    bottom: 0;
  }
}

@media only screen and (min-width: 64rem) {
  .about .about-image {
    padding-top: 110%;
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
  }
  .about .about-image img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
  .about .about-image.top img {
    top: auto;
    bottom: 0;
  }
}

@media only screen and (min-width: 37.5rem) {
  .about .about-image img {
    width: 90%;
    -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@media only screen and (min-width: 64rem) {
  .about .about-image img {
    width: 100%;
    -webkit-transform: translate(-50px, 0px);
        -ms-transform: translate(-50px, 0px);
            transform: translate(-50px, 0px);
  }
}

.about .about-text {
  margin-top: 3.25em;
  margin-top: var(--space-xl);
}

.about ul.no_bullet {
  list-style-type: none;
  padding: 0;
}

.about ul li {
  color: undefined !important;
  color: var(--color-primary--darker) !important;
}

.about ul li.check-circle {
  color: hsl(0, 0%, 100%);
  color: var(--color-white);
  margin: 1em 0;
  background: url("../images/services/check-circle.svg") no-repeat left top;
  height: 24px;
  padding-left: 40px;
}

.about .gas-safe-registered {
  background: hsl(229, 100%, 19%);
  background: var(--color-primary-darker);
  border-radius: 0.25em;
  border-radius: var(--radius);
  padding: 1em;
  margin-top: 2em;
  margin-top: var(--space-lg);
  margin-bottom: 3.25em;
  margin-bottom: var(--space-xl);
  color: hsl(0, 0%, 100%);
  color: var(--color-white);
  -webkit-box-shadow: 0px 20px 20px rgba(0, 17, 97, 0.3);
          box-shadow: 0px 20px 20px rgba(0, 17, 97, 0.3);
}

.about .gas-safe-registered p {
  color: hsl(0, 0%, 100%);
  color: var(--color-white);
}

.about .gas-safe-registered img {
  height: 100%;
}

.call-to-action {
  background: hsl(210, 47%, 93%);
  background: var(--color-primary-lighter);
}

.checkatrade-cta {
  background: hsl(229, 100%, 19%);
  background: var(--color-primary-darker);
  border-radius: 0.25em;
  border-radius: var(--radius);
  padding: 1em;
  margin-top: 5.25em;
  margin-top: var(--space-xxl);
  margin-bottom: 2em;
  margin-bottom: var(--space-lg);
  color: hsl(0, 0%, 100%);
  color: var(--color-white);
  text-align: center;
  -webkit-box-shadow: 0px 20px 20px rgba(0, 17, 97, 0.3);
          box-shadow: 0px 20px 20px rgba(0, 17, 97, 0.3);
  width: 85%;
}

.checkatrade-cta p {
  color: hsl(0, 0%, 100%);
  color: var(--color-white);
  text-align: center;
  margin-right: 0.5em;
  margin-right: var(--space-xs);
}

.checkatrade-cta .text-content {
  text-align: center;
  margin-bottom: 0.75em;
  margin-bottom: var(--space-sm);
}

@media only screen and (min-width: 37.5rem) {
  .checkatrade-cta .text-content {
    margin-right: 0.5em;
    margin-right: var(--space-xs);
    margin-bottom: 0;
  }
}

.installations {
  background: hsl(210, 47%, 93%);
  background: var(--color-primary-lighter);
  padding-bottom: 2em !important;
  padding-bottom: var(--space-lg) !important;
}

.installations .carousel {
  background: hsl(210, 47%, 93%);
  background: var(--color-primary-lighter);
}

.installations .carousel-image {
  display: block;
  height: 500px;
  min-height: 100%;
  /* set min-width, allow images to set cell width */
  min-width: 150px;
  max-width: 100%;
  margin-right: 20px;
  /* vertically center */
  top: 50%;
  -webkit-transform: translateY(-50%) !important;
      -ms-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

.installations .carousel.is-fullscreen .carousel-image {
  height: auto;
  max-height: 100%;
}

.installations .flickity-button {
  background: hsl(229, 100%, 19%);
  background: var(--color-primary-darker);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
}

.installations .flickity-button:hover {
  background: hsl(217, 67%, 42%);
  background: var(--color-primary);
}

.installations .flickity-prev-next-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.installations .flickity-button-icon {
  fill: hsl(0, 0%, 100%);
  fill: var(--color-white);
}

.installations .flickity-prev-next-button.previous {
  left: 5vw;
}

.installations .flickity-prev-next-button.next {
  right: 5vw;
}

.installations .flickity-page-dots {
  bottom: -40px;
}

.installations .flickity-page-dots .dot {
  height: 3px;
  width: 20px;
  margin: 0;
  border-radius: 0;
  background: hsl(217, 67%, 42%);
  background: var(--color-primary);
}

.installations .flickity-page-dots .dot .dot {
  background: hsl(229, 100%, 19%);
  background: var(--color-primary-darker);
}

.main-gallery {
  padding-top: 2em;
  padding-top: var(--space-lg);
  background: hsl(210, 47%, 93%);
  background: var(--color-primary-lighter);
  min-height: 550px;
}

.main-gallery .gallery-cell {
  width: 100%;
}

.main-gallery .testimonial {
  text-align: center;
  max-width: 1024px;
  margin: 50px auto 65px auto;
  padding: 0 20px;
}

.main-gallery .testimonial-quote {
  display: block;
  color: hsl(217, 67%, 42%);
  color: var(--color-primary);
  font-weight: 300;
  padding: 10px 0;
}

.main-gallery .testimonial-author {
  display: block;
  font-weight: 800;
  color: undefined;
  color: var(--color-primary--darker);
}

.main-gallery .flickity-page-dots {
  bottom: 25px;
}

.main-gallery .flickity-page-dots .dot.is-selected {
  background: hsl(217, 67%, 42%);
  background: var(--color-primary);
}

.footer {
  background: hsl(210, 47%, 93%);
  background: var(--color-primary-lighter);
}

/* Team page */
#team .site-header {
  background: hsl(217, 67%, 42%) !important;
  background: var(--color-primary) !important;
}

#team .team-members {
  background: hsl(210, 47%, 93%);
  background: var(--color-primary-lighter);
  padding-top: 8.5em;
  padding-top: var(--space-xxxl);
  padding-bottom: 8.5em;
  padding-bottom: var(--space-xxxl);
}

#team .team-members .team-member-component {
  width: 100%;
  height: auto;
  margin-bottom: 1.25em;
  margin-bottom: var(--space-md);
  background: hsl(0, 0%, 100%);
  background: var(--color-white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media only screen and (min-width: 64rem) {
  #team .team-members .team-member-component {
    margin-bottom: 2em;
    margin-bottom: var(--space-lg);
  }
}

#team .team-members .team-member-component .team-member-image {
  display: inline-block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (min-width: 37.5rem) {
  #team .team-members .team-member-component .team-member-image {
    width: 33%;
    min-width: 25%;
  }
}

#team .team-members .team-member-component .team-member-image img {
  width: 100%;
  height: 100%;
}

#team .team-members .team-member-component .team-member-content {
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 1em;
}

@media only screen and (min-width: 37.5rem) {
  #team .team-members .team-member-component .team-member-content {
    width: auto;
  }
}

/* Service pages */
#service-page .hero {
  padding-bottom: 3.25em;
  padding-bottom: var(--space-xl);
}
