@charset "UTF-8";
@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap");
/*
	Alpha by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/
/* Reset */
/* Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain) */
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

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

body {
  -webkit-text-size-adjust: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input, select, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

/* Basic */
@-ms-viewport {
  width: device-width;
}

body {
  -ms-overflow-style: scrollbar;
}

@media screen and (max-width: 480px) {
  html, body {
    min-width: 320px;
  }
}

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

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

body {
  background: #f5f5f5;
}

body, input, select, textarea {
  color: #777;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16pt;
  font-weight: 300;
  line-height: 1.65em;
  letter-spacing: -0.015em;
}

a {
  -webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
  border-bottom: dotted 1px;
  color: #e89980;
  text-decoration: none;
}

a:hover {
  border-bottom-color: transparent;
}

strong, b {
  color: #646464;
  font-weight: 400;
}

em, i {
  font-style: italic;
}

p {
  margin: 0 0 2em 0;
}

h1, h2, h3, h4, h5, h6 {
  color: #646464;
  font-weight: 300;
  line-height: 1em;
  margin: 0 0 0.5em 0;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  text-decoration: none;
}

h2 {
  font-size: 2.25em;
  line-height: 1.5em;
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.75em;
  line-height: 1.5em;
  letter-spacing: -0.025em;
}

h4 {
  font-size: 1.1em;
  line-height: 1.5em;
  letter-spacing: 0;
}

h5 {
  font-size: 0.9em;
  line-height: 1.5em;
  letter-spacing: 0;
}

h6 {
  font-size: 0.7em;
  line-height: 1.5em;
  letter-spacing: 0;
}

sub {
  font-size: 0.8em;
  position: relative;
  top: 0.5em;
}

sup {
  font-size: 0.8em;
  position: relative;
  top: -0.5em;
}

hr {
  border: 0;
  border-bottom: solid 2px #e5e5e5;
  margin: 2em 0;
}

hr.major {
  margin: 3em 0;
}

blockquote {
  border-left: solid 4px #e5e5e5;
  font-style: italic;
  margin: 0 0 2em 0;
  padding: 0.5em 0 0.5em 2em;
}

pre {
  -webkit-overflow-scrolling: touch;
  background: #f8f8f8;
  border-radius: 6px;
  border: solid 1px #e5e5e5;
  font-family: monospace;
  font-size: 0.9em;
  line-height: 1.75em;
  margin: 0 0 2em 0;
  overflow-x: auto;
  padding: 1em 1.5em;
}

code {
  background: #f8f8f8;
  border-radius: 6px;
  border: solid 1px #e5e5e5;
  font-family: monospace;
  font-size: 0.9em;
  margin: 0 0.25em;
  padding: 0.25em 0.65em;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

/* Row */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.row > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.row.gtr-uniform > * > :last-child {
  margin-bottom: 0;
}

.row.aln-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

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

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

.row.aln-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.row.aln-middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.row.aln-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.row > .imp {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.row > .col-1 {
  width: 8.33333%;
}

.row > .off-1 {
  margin-left: 8.33333%;
}

.row > .col-2 {
  width: 16.66667%;
}

.row > .off-2 {
  margin-left: 16.66667%;
}

.row > .col-3 {
  width: 25%;
}

.row > .off-3 {
  margin-left: 25%;
}

.row > .col-4 {
  width: 33.33333%;
}

.row > .off-4 {
  margin-left: 33.33333%;
}

.row > .col-5 {
  width: 41.66667%;
}

.row > .off-5 {
  margin-left: 41.66667%;
}

.row > .col-6 {
  width: 50%;
}

.row > .off-6 {
  margin-left: 50%;
}

.row > .col-7 {
  width: 58.33333%;
}

.row > .off-7 {
  margin-left: 58.33333%;
}

.row > .col-8 {
  width: 66.66667%;
}

.row > .off-8 {
  margin-left: 66.66667%;
}

.row > .col-9 {
  width: 75%;
}

.row > .off-9 {
  margin-left: 75%;
}

.row > .col-10 {
  width: 83.33333%;
}

.row > .off-10 {
  margin-left: 83.33333%;
}

.row > .col-11 {
  width: 91.66667%;
}

.row > .off-11 {
  margin-left: 91.66667%;
}

.row > .col-12 {
  width: 100%;
}

.row > .off-12 {
  margin-left: 100%;
}

.row.gtr-0 {
  margin-top: 0;
  margin-left: 0em;
}

.row.gtr-0 > * {
  padding: 0 0 0 0em;
}

.row.gtr-0.gtr-uniform {
  margin-top: 0em;
}

.row.gtr-0.gtr-uniform > * {
  padding-top: 0em;
}

.row.gtr-25 {
  margin-top: 0;
  margin-left: -0.5em;
}

.row.gtr-25 > * {
  padding: 0 0 0 0.5em;
}

.row.gtr-25.gtr-uniform {
  margin-top: -0.5em;
}

.row.gtr-25.gtr-uniform > * {
  padding-top: 0.5em;
}

.row.gtr-50 {
  margin-top: 0;
  margin-left: -1em;
}

.row.gtr-50 > * {
  padding: 0 0 0 1em;
}

.row.gtr-50.gtr-uniform {
  margin-top: -1em;
}

.row.gtr-50.gtr-uniform > * {
  padding-top: 1em;
}

.row {
  margin-top: 0;
  margin-left: -2em;
}

.row > * {
  padding: 0 0 0 2em;
}

.row.gtr-uniform {
  margin-top: -2em;
}

.row.gtr-uniform > * {
  padding-top: 2em;
}

.row.gtr-150 {
  margin-top: 0;
  margin-left: -3em;
}

.row.gtr-150 > * {
  padding: 0 0 0 3em;
}

.row.gtr-150.gtr-uniform {
  margin-top: -3em;
}

.row.gtr-150.gtr-uniform > * {
  padding-top: 3em;
}

.row.gtr-200 {
  margin-top: 0;
  margin-left: -4em;
}

.row.gtr-200 > * {
  padding: 0 0 0 4em;
}

.row.gtr-200.gtr-uniform {
  margin-top: -4em;
}

.row.gtr-200.gtr-uniform > * {
  padding-top: 4em;
}

@media screen and (max-width: 1680px) {
  .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row > * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }
  .row.aln-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row.aln-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row.aln-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row.aln-top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row.aln-middle {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row.aln-bottom {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row > .imp-wide {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .row > .col-1-wide {
    width: 8.33333%;
  }
  .row > .off-1-wide {
    margin-left: 8.33333%;
  }
  .row > .col-2-wide {
    width: 16.66667%;
  }
  .row > .off-2-wide {
    margin-left: 16.66667%;
  }
  .row > .col-3-wide {
    width: 25%;
  }
  .row > .off-3-wide {
    margin-left: 25%;
  }
  .row > .col-4-wide {
    width: 33.33333%;
  }
  .row > .off-4-wide {
    margin-left: 33.33333%;
  }
  .row > .col-5-wide {
    width: 41.66667%;
  }
  .row > .off-5-wide {
    margin-left: 41.66667%;
  }
  .row > .col-6-wide {
    width: 50%;
  }
  .row > .off-6-wide {
    margin-left: 50%;
  }
  .row > .col-7-wide {
    width: 58.33333%;
  }
  .row > .off-7-wide {
    margin-left: 58.33333%;
  }
  .row > .col-8-wide {
    width: 66.66667%;
  }
  .row > .off-8-wide {
    margin-left: 66.66667%;
  }
  .row > .col-9-wide {
    width: 75%;
  }
  .row > .off-9-wide {
    margin-left: 75%;
  }
  .row > .col-10-wide {
    width: 83.33333%;
  }
  .row > .off-10-wide {
    margin-left: 83.33333%;
  }
  .row > .col-11-wide {
    width: 91.66667%;
  }
  .row > .off-11-wide {
    margin-left: 91.66667%;
  }
  .row > .col-12-wide {
    width: 100%;
  }
  .row > .off-12-wide {
    margin-left: 100%;
  }
  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em;
  }
  .row.gtr-0 > * {
    padding: 0 0 0 0em;
  }
  .row.gtr-0.gtr-uniform {
    margin-top: 0em;
  }
  .row.gtr-0.gtr-uniform > * {
    padding-top: 0em;
  }
  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.5em;
  }
  .row.gtr-25 > * {
    padding: 0 0 0 0.5em;
  }
  .row.gtr-25.gtr-uniform {
    margin-top: -0.5em;
  }
  .row.gtr-25.gtr-uniform > * {
    padding-top: 0.5em;
  }
  .row.gtr-50 {
    margin-top: 0;
    margin-left: -1em;
  }
  .row.gtr-50 > * {
    padding: 0 0 0 1em;
  }
  .row.gtr-50.gtr-uniform {
    margin-top: -1em;
  }
  .row.gtr-50.gtr-uniform > * {
    padding-top: 1em;
  }
  .row {
    margin-top: 0;
    margin-left: -2em;
  }
  .row > * {
    padding: 0 0 0 2em;
  }
  .row.gtr-uniform {
    margin-top: -2em;
  }
  .row.gtr-uniform > * {
    padding-top: 2em;
  }
  .row.gtr-150 {
    margin-top: 0;
    margin-left: -3em;
  }
  .row.gtr-150 > * {
    padding: 0 0 0 3em;
  }
  .row.gtr-150.gtr-uniform {
    margin-top: -3em;
  }
  .row.gtr-150.gtr-uniform > * {
    padding-top: 3em;
  }
  .row.gtr-200 {
    margin-top: 0;
    margin-left: -4em;
  }
  .row.gtr-200 > * {
    padding: 0 0 0 4em;
  }
  .row.gtr-200.gtr-uniform {
    margin-top: -4em;
  }
  .row.gtr-200.gtr-uniform > * {
    padding-top: 4em;
  }
}

@media screen and (max-width: 1280px) {
  .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row > * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }
  .row.aln-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row.aln-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row.aln-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row.aln-top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row.aln-middle {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row.aln-bottom {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row > .imp-normal {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .row > .col-1-normal {
    width: 8.33333%;
  }
  .row > .off-1-normal {
    margin-left: 8.33333%;
  }
  .row > .col-2-normal {
    width: 16.66667%;
  }
  .row > .off-2-normal {
    margin-left: 16.66667%;
  }
  .row > .col-3-normal {
    width: 25%;
  }
  .row > .off-3-normal {
    margin-left: 25%;
  }
  .row > .col-4-normal {
    width: 33.33333%;
  }
  .row > .off-4-normal {
    margin-left: 33.33333%;
  }
  .row > .col-5-normal {
    width: 41.66667%;
  }
  .row > .off-5-normal {
    margin-left: 41.66667%;
  }
  .row > .col-6-normal {
    width: 50%;
  }
  .row > .off-6-normal {
    margin-left: 50%;
  }
  .row > .col-7-normal {
    width: 58.33333%;
  }
  .row > .off-7-normal {
    margin-left: 58.33333%;
  }
  .row > .col-8-normal {
    width: 66.66667%;
  }
  .row > .off-8-normal {
    margin-left: 66.66667%;
  }
  .row > .col-9-normal {
    width: 75%;
  }
  .row > .off-9-normal {
    margin-left: 75%;
  }
  .row > .col-10-normal {
    width: 83.33333%;
  }
  .row > .off-10-normal {
    margin-left: 83.33333%;
  }
  .row > .col-11-normal {
    width: 91.66667%;
  }
  .row > .off-11-normal {
    margin-left: 91.66667%;
  }
  .row > .col-12-normal {
    width: 100%;
  }
  .row > .off-12-normal {
    margin-left: 100%;
  }
  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em;
  }
  .row.gtr-0 > * {
    padding: 0 0 0 0em;
  }
  .row.gtr-0.gtr-uniform {
    margin-top: 0em;
  }
  .row.gtr-0.gtr-uniform > * {
    padding-top: 0em;
  }
  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.5em;
  }
  .row.gtr-25 > * {
    padding: 0 0 0 0.5em;
  }
  .row.gtr-25.gtr-uniform {
    margin-top: -0.5em;
  }
  .row.gtr-25.gtr-uniform > * {
    padding-top: 0.5em;
  }
  .row.gtr-50 {
    margin-top: 0;
    margin-left: -1em;
  }
  .row.gtr-50 > * {
    padding: 0 0 0 1em;
  }
  .row.gtr-50.gtr-uniform {
    margin-top: -1em;
  }
  .row.gtr-50.gtr-uniform > * {
    padding-top: 1em;
  }
  .row {
    margin-top: 0;
    margin-left: -2em;
  }
  .row > * {
    padding: 0 0 0 2em;
  }
  .row.gtr-uniform {
    margin-top: -2em;
  }
  .row.gtr-uniform > * {
    padding-top: 2em;
  }
  .row.gtr-150 {
    margin-top: 0;
    margin-left: -3em;
  }
  .row.gtr-150 > * {
    padding: 0 0 0 3em;
  }
  .row.gtr-150.gtr-uniform {
    margin-top: -3em;
  }
  .row.gtr-150.gtr-uniform > * {
    padding-top: 3em;
  }
  .row.gtr-200 {
    margin-top: 0;
    margin-left: -4em;
  }
  .row.gtr-200 > * {
    padding: 0 0 0 4em;
  }
  .row.gtr-200.gtr-uniform {
    margin-top: -4em;
  }
  .row.gtr-200.gtr-uniform > * {
    padding-top: 4em;
  }
}

@media screen and (max-width: 980px) {
  .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row > * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }
  .row.aln-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row.aln-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row.aln-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row.aln-top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row.aln-middle {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row.aln-bottom {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row > .imp-narrow {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .row > .col-1-narrow {
    width: 8.33333%;
  }
  .row > .off-1-narrow {
    margin-left: 8.33333%;
  }
  .row > .col-2-narrow {
    width: 16.66667%;
  }
  .row > .off-2-narrow {
    margin-left: 16.66667%;
  }
  .row > .col-3-narrow {
    width: 25%;
  }
  .row > .off-3-narrow {
    margin-left: 25%;
  }
  .row > .col-4-narrow {
    width: 33.33333%;
  }
  .row > .off-4-narrow {
    margin-left: 33.33333%;
  }
  .row > .col-5-narrow {
    width: 41.66667%;
  }
  .row > .off-5-narrow {
    margin-left: 41.66667%;
  }
  .row > .col-6-narrow {
    width: 50%;
  }
  .row > .off-6-narrow {
    margin-left: 50%;
  }
  .row > .col-7-narrow {
    width: 58.33333%;
  }
  .row > .off-7-narrow {
    margin-left: 58.33333%;
  }
  .row > .col-8-narrow {
    width: 66.66667%;
  }
  .row > .off-8-narrow {
    margin-left: 66.66667%;
  }
  .row > .col-9-narrow {
    width: 75%;
  }
  .row > .off-9-narrow {
    margin-left: 75%;
  }
  .row > .col-10-narrow {
    width: 83.33333%;
  }
  .row > .off-10-narrow {
    margin-left: 83.33333%;
  }
  .row > .col-11-narrow {
    width: 91.66667%;
  }
  .row > .off-11-narrow {
    margin-left: 91.66667%;
  }
  .row > .col-12-narrow {
    width: 100%;
  }
  .row > .off-12-narrow {
    margin-left: 100%;
  }
  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em;
  }
  .row.gtr-0 > * {
    padding: 0 0 0 0em;
  }
  .row.gtr-0.gtr-uniform {
    margin-top: 0em;
  }
  .row.gtr-0.gtr-uniform > * {
    padding-top: 0em;
  }
  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.5em;
  }
  .row.gtr-25 > * {
    padding: 0 0 0 0.5em;
  }
  .row.gtr-25.gtr-uniform {
    margin-top: -0.5em;
  }
  .row.gtr-25.gtr-uniform > * {
    padding-top: 0.5em;
  }
  .row.gtr-50 {
    margin-top: 0;
    margin-left: -1em;
  }
  .row.gtr-50 > * {
    padding: 0 0 0 1em;
  }
  .row.gtr-50.gtr-uniform {
    margin-top: -1em;
  }
  .row.gtr-50.gtr-uniform > * {
    padding-top: 1em;
  }
  .row {
    margin-top: 0;
    margin-left: -2em;
  }
  .row > * {
    padding: 0 0 0 2em;
  }
  .row.gtr-uniform {
    margin-top: -2em;
  }
  .row.gtr-uniform > * {
    padding-top: 2em;
  }
  .row.gtr-150 {
    margin-top: 0;
    margin-left: -3em;
  }
  .row.gtr-150 > * {
    padding: 0 0 0 3em;
  }
  .row.gtr-150.gtr-uniform {
    margin-top: -3em;
  }
  .row.gtr-150.gtr-uniform > * {
    padding-top: 3em;
  }
  .row.gtr-200 {
    margin-top: 0;
    margin-left: -4em;
  }
  .row.gtr-200 > * {
    padding: 0 0 0 4em;
  }
  .row.gtr-200.gtr-uniform {
    margin-top: -4em;
  }
  .row.gtr-200.gtr-uniform > * {
    padding-top: 4em;
  }
}

@media screen and (max-width: 840px) {
  .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row > * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }
  .row.aln-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row.aln-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row.aln-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row.aln-top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row.aln-middle {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row.aln-bottom {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row > .imp-narrower {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .row > .col-1-narrower {
    width: 8.33333%;
  }
  .row > .off-1-narrower {
    margin-left: 8.33333%;
  }
  .row > .col-2-narrower {
    width: 16.66667%;
  }
  .row > .off-2-narrower {
    margin-left: 16.66667%;
  }
  .row > .col-3-narrower {
    width: 25%;
  }
  .row > .off-3-narrower {
    margin-left: 25%;
  }
  .row > .col-4-narrower {
    width: 33.33333%;
  }
  .row > .off-4-narrower {
    margin-left: 33.33333%;
  }
  .row > .col-5-narrower {
    width: 41.66667%;
  }
  .row > .off-5-narrower {
    margin-left: 41.66667%;
  }
  .row > .col-6-narrower {
    width: 50%;
  }
  .row > .off-6-narrower {
    margin-left: 50%;
  }
  .row > .col-7-narrower {
    width: 58.33333%;
  }
  .row > .off-7-narrower {
    margin-left: 58.33333%;
  }
  .row > .col-8-narrower {
    width: 66.66667%;
  }
  .row > .off-8-narrower {
    margin-left: 66.66667%;
  }
  .row > .col-9-narrower {
    width: 75%;
  }
  .row > .off-9-narrower {
    margin-left: 75%;
  }
  .row > .col-10-narrower {
    width: 83.33333%;
  }
  .row > .off-10-narrower {
    margin-left: 83.33333%;
  }
  .row > .col-11-narrower {
    width: 91.66667%;
  }
  .row > .off-11-narrower {
    margin-left: 91.66667%;
  }
  .row > .col-12-narrower {
    width: 100%;
  }
  .row > .off-12-narrower {
    margin-left: 100%;
  }
  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em;
  }
  .row.gtr-0 > * {
    padding: 0 0 0 0em;
  }
  .row.gtr-0.gtr-uniform {
    margin-top: 0em;
  }
  .row.gtr-0.gtr-uniform > * {
    padding-top: 0em;
  }
  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.5em;
  }
  .row.gtr-25 > * {
    padding: 0 0 0 0.5em;
  }
  .row.gtr-25.gtr-uniform {
    margin-top: -0.5em;
  }
  .row.gtr-25.gtr-uniform > * {
    padding-top: 0.5em;
  }
  .row.gtr-50 {
    margin-top: 0;
    margin-left: -1em;
  }
  .row.gtr-50 > * {
    padding: 0 0 0 1em;
  }
  .row.gtr-50.gtr-uniform {
    margin-top: -1em;
  }
  .row.gtr-50.gtr-uniform > * {
    padding-top: 1em;
  }
  .row {
    margin-top: 0;
    margin-left: -2em;
  }
  .row > * {
    padding: 0 0 0 2em;
  }
  .row.gtr-uniform {
    margin-top: -2em;
  }
  .row.gtr-uniform > * {
    padding-top: 2em;
  }
  .row.gtr-150 {
    margin-top: 0;
    margin-left: -3em;
  }
  .row.gtr-150 > * {
    padding: 0 0 0 3em;
  }
  .row.gtr-150.gtr-uniform {
    margin-top: -3em;
  }
  .row.gtr-150.gtr-uniform > * {
    padding-top: 3em;
  }
  .row.gtr-200 {
    margin-top: 0;
    margin-left: -4em;
  }
  .row.gtr-200 > * {
    padding: 0 0 0 4em;
  }
  .row.gtr-200.gtr-uniform {
    margin-top: -4em;
  }
  .row.gtr-200.gtr-uniform > * {
    padding-top: 4em;
  }
}

@media screen and (max-width: 736px) {
  .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row > * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }
  .row.aln-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row.aln-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row.aln-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row.aln-top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row.aln-middle {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row.aln-bottom {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row > .imp-mobile {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .row > .col-1-mobile {
    width: 8.33333%;
  }
  .row > .off-1-mobile {
    margin-left: 8.33333%;
  }
  .row > .col-2-mobile {
    width: 16.66667%;
  }
  .row > .off-2-mobile {
    margin-left: 16.66667%;
  }
  .row > .col-3-mobile {
    width: 25%;
  }
  .row > .off-3-mobile {
    margin-left: 25%;
  }
  .row > .col-4-mobile {
    width: 33.33333%;
  }
  .row > .off-4-mobile {
    margin-left: 33.33333%;
  }
  .row > .col-5-mobile {
    width: 41.66667%;
  }
  .row > .off-5-mobile {
    margin-left: 41.66667%;
  }
  .row > .col-6-mobile {
    width: 50%;
  }
  .row > .off-6-mobile {
    margin-left: 50%;
  }
  .row > .col-7-mobile {
    width: 58.33333%;
  }
  .row > .off-7-mobile {
    margin-left: 58.33333%;
  }
  .row > .col-8-mobile {
    width: 66.66667%;
  }
  .row > .off-8-mobile {
    margin-left: 66.66667%;
  }
  .row > .col-9-mobile {
    width: 75%;
  }
  .row > .off-9-mobile {
    margin-left: 75%;
  }
  .row > .col-10-mobile {
    width: 83.33333%;
  }
  .row > .off-10-mobile {
    margin-left: 83.33333%;
  }
  .row > .col-11-mobile {
    width: 91.66667%;
  }
  .row > .off-11-mobile {
    margin-left: 91.66667%;
  }
  .row > .col-12-mobile {
    width: 100%;
  }
  .row > .off-12-mobile {
    margin-left: 100%;
  }
  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em;
  }
  .row.gtr-0 > * {
    padding: 0 0 0 0em;
  }
  .row.gtr-0.gtr-uniform {
    margin-top: 0em;
  }
  .row.gtr-0.gtr-uniform > * {
    padding-top: 0em;
  }
  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.5em;
  }
  .row.gtr-25 > * {
    padding: 0 0 0 0.5em;
  }
  .row.gtr-25.gtr-uniform {
    margin-top: -0.5em;
  }
  .row.gtr-25.gtr-uniform > * {
    padding-top: 0.5em;
  }
  .row.gtr-50 {
    margin-top: 0;
    margin-left: -1em;
  }
  .row.gtr-50 > * {
    padding: 0 0 0 1em;
  }
  .row.gtr-50.gtr-uniform {
    margin-top: -1em;
  }
  .row.gtr-50.gtr-uniform > * {
    padding-top: 1em;
  }
  .row {
    margin-top: 0;
    margin-left: -2em;
  }
  .row > * {
    padding: 0 0 0 2em;
  }
  .row.gtr-uniform {
    margin-top: -2em;
  }
  .row.gtr-uniform > * {
    padding-top: 2em;
  }
  .row.gtr-150 {
    margin-top: 0;
    margin-left: -3em;
  }
  .row.gtr-150 > * {
    padding: 0 0 0 3em;
  }
  .row.gtr-150.gtr-uniform {
    margin-top: -3em;
  }
  .row.gtr-150.gtr-uniform > * {
    padding-top: 3em;
  }
  .row.gtr-200 {
    margin-top: 0;
    margin-left: -4em;
  }
  .row.gtr-200 > * {
    padding: 0 0 0 4em;
  }
  .row.gtr-200.gtr-uniform {
    margin-top: -4em;
  }
  .row.gtr-200.gtr-uniform > * {
    padding-top: 4em;
  }
}

@media screen and (max-width: 480px) {
  .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row > * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }
  .row.aln-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row.aln-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row.aln-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row.aln-top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row.aln-middle {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row.aln-bottom {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row > .imp-mobilep {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .row > .col-1-mobilep {
    width: 8.33333%;
  }
  .row > .off-1-mobilep {
    margin-left: 8.33333%;
  }
  .row > .col-2-mobilep {
    width: 16.66667%;
  }
  .row > .off-2-mobilep {
    margin-left: 16.66667%;
  }
  .row > .col-3-mobilep {
    width: 25%;
  }
  .row > .off-3-mobilep {
    margin-left: 25%;
  }
  .row > .col-4-mobilep {
    width: 33.33333%;
  }
  .row > .off-4-mobilep {
    margin-left: 33.33333%;
  }
  .row > .col-5-mobilep {
    width: 41.66667%;
  }
  .row > .off-5-mobilep {
    margin-left: 41.66667%;
  }
  .row > .col-6-mobilep {
    width: 50%;
  }
  .row > .off-6-mobilep {
    margin-left: 50%;
  }
  .row > .col-7-mobilep {
    width: 58.33333%;
  }
  .row > .off-7-mobilep {
    margin-left: 58.33333%;
  }
  .row > .col-8-mobilep {
    width: 66.66667%;
  }
  .row > .off-8-mobilep {
    margin-left: 66.66667%;
  }
  .row > .col-9-mobilep {
    width: 75%;
  }
  .row > .off-9-mobilep {
    margin-left: 75%;
  }
  .row > .col-10-mobilep {
    width: 83.33333%;
  }
  .row > .off-10-mobilep {
    margin-left: 83.33333%;
  }
  .row > .col-11-mobilep {
    width: 91.66667%;
  }
  .row > .off-11-mobilep {
    margin-left: 91.66667%;
  }
  .row > .col-12-mobilep {
    width: 100%;
  }
  .row > .off-12-mobilep {
    margin-left: 100%;
  }
  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em;
  }
  .row.gtr-0 > * {
    padding: 0 0 0 0em;
  }
  .row.gtr-0.gtr-uniform {
    margin-top: 0em;
  }
  .row.gtr-0.gtr-uniform > * {
    padding-top: 0em;
  }
  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.5em;
  }
  .row.gtr-25 > * {
    padding: 0 0 0 0.5em;
  }
  .row.gtr-25.gtr-uniform {
    margin-top: -0.5em;
  }
  .row.gtr-25.gtr-uniform > * {
    padding-top: 0.5em;
  }
  .row.gtr-50 {
    margin-top: 0;
    margin-left: -1em;
  }
  .row.gtr-50 > * {
    padding: 0 0 0 1em;
  }
  .row.gtr-50.gtr-uniform {
    margin-top: -1em;
  }
  .row.gtr-50.gtr-uniform > * {
    padding-top: 1em;
  }
  .row {
    margin-top: 0;
    margin-left: -2em;
  }
  .row > * {
    padding: 0 0 0 2em;
  }
  .row.gtr-uniform {
    margin-top: -2em;
  }
  .row.gtr-uniform > * {
    padding-top: 2em;
  }
  .row.gtr-150 {
    margin-top: 0;
    margin-left: -3em;
  }
  .row.gtr-150 > * {
    padding: 0 0 0 3em;
  }
  .row.gtr-150.gtr-uniform {
    margin-top: -3em;
  }
  .row.gtr-150.gtr-uniform > * {
    padding-top: 3em;
  }
  .row.gtr-200 {
    margin-top: 0;
    margin-left: -4em;
  }
  .row.gtr-200 > * {
    padding: 0 0 0 4em;
  }
  .row.gtr-200.gtr-uniform {
    margin-top: -4em;
  }
  .row.gtr-200.gtr-uniform > * {
    padding-top: 4em;
  }
}

/* Container */
.container {
  margin: 0 auto;
  max-width: calc(100% - 5em);
  width: 60em;
}

.container.xsmall {
  width: 15em;
}

.container.small {
  width: 30em;
}

.container.medium {
  width: 45em;
}

.container.large {
  width: 75em;
}

.container.xlarge {
  width: 90em;
}

.container.max {
  width: 100%;
}

@media screen and (max-width: 840px) {
  .container {
    width: 100% !important;
  }
}

@media screen and (max-width: 736px) {
  .container {
    max-width: 100%;
  }
}

/* Section/Article */
section.special, article.special {
  text-align: center;
}

header p {
  color: #999;
  position: relative;
  margin: 0 0 1.5em 0;
  font-style: italic;
}

header h2 + p {
  font-size: 1.25em;
  margin-top: -1em;
  line-height: 1.5em;
}

header h3 + p {
  font-size: 1.1em;
  margin-top: -0.85em;
  line-height: 1.5em;
}

header h4 + p,
header h5 + p,
header h6 + p {
  font-size: 0.8em;
  margin-top: -0.5em;
  line-height: 1.5em;
}

header.major {
  padding: 1em 0;
  text-align: center;
}

header.major h2 {
  margin: 0;
}

header.major p {
  display: inline-block;
  border-top: solid 2px #e5e5e5;
  color: #777;
  margin: 1.5em 0 0 0;
  padding: 1.5em 0 0 0;
  font-style: normal;
}

/* Form */
form {
  margin: 0 0 2em 0;
}

label {
  color: #646464;
  display: block;
  font-size: 0.9em;
  font-weight: 300;
  margin: 0 0 1em 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #f8f8f8;
  border-radius: 6px;
  border: solid 1px #e5e5e5;
  color: inherit;
  display: block;
  outline: 0;
  padding: 0 1em;
  text-decoration: none;
  width: 100%;
}

input[type="text"]:invalid,
input[type="password"]:invalid,
input[type="email"]:invalid,
select:invalid,
textarea:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: #e89980;
  -webkit-box-shadow: 0 0 0 2px #e89980;
          box-shadow: 0 0 0 2px #e89980;
}

select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='%23e5e5e5' /%3E%3C/svg%3E");
  background-size: 1.25em;
  background-repeat: no-repeat;
  background-position: calc(100% - 1em) center;
  height: 3em;
  padding-right: 3em;
  text-overflow: ellipsis;
}

select option {
  color: #777;
  background-color: #f5f5f5;
}

select:focus::-ms-value {
  background-color: transparent;
}

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

input[type="text"],
input[type="password"],
input[type="email"],
select {
  height: 3em;
}

textarea {
  padding: 0.75em 1em;
}

input[type="checkbox"],
input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  display: block;
  float: left;
  margin-right: -2em;
  opacity: 0;
  width: 1em;
  z-index: -1;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  text-decoration: none;
  color: #777;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  font-weight: 300;
  padding-left: 2.55em;
  padding-right: 0.75em;
  position: relative;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
  background: #f8f8f8;
  border-radius: 6px;
  border: solid 1px #e5e5e5;
  content: '';
  display: inline-block;
  font-size: 0.8em;
  height: 2.25em;
  left: 0;
  line-height: 2.25em;
  position: absolute;
  text-align: center;
  top: 0;
  width: 2.25em;
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
  background: #666;
  border-color: #666;
  color: #ffffff;
  content: '\f00c';
}

input[type="checkbox"]:focus + label:before,
input[type="radio"]:focus + label:before {
  border-color: #e89980;
  -webkit-box-shadow: 0 0 0 1px #e89980;
          box-shadow: 0 0 0 1px #e89980;
}

input[type="checkbox"] + label:before {
  border-radius: 6px;
}

input[type="radio"] + label:before {
  border-radius: 100%;
}

::-webkit-input-placeholder {
  color: #999 !important;
  opacity: 1.0;
}

:-moz-placeholder {
  color: #999 !important;
  opacity: 1.0;
}

::-moz-placeholder {
  color: #999 !important;
  opacity: 1.0;
}

:-ms-input-placeholder {
  color: #999 !important;
  opacity: 1.0;
}

/* Box */
.box {
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 0 0 #e5e5e5;
          box-shadow: 0 2px 0 0 #e5e5e5;
  margin: 0 0 2em 0;
  padding: 3em;
}

.box > :last-child {
  margin-bottom: 0;
}

.box.alt {
  background: none !important;
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  margin: 0 0 2em 0;
  padding: 0 !important;
}

.box.features .features-row {
  border-top: solid 2px #e5e5e5;
  position: relative;
}

.box.features .features-row:after {
  clear: both;
  content: '';
  display: block;
}

.box.features .features-row section {
  float: left;
  padding: 3em;
  width: 50%;
}

.box.features .features-row section :last-child {
  margin-bottom: 0;
}

.box.features .features-row section:nth-child(2n) {
  padding-right: 0;
}

.box.features .features-row section:nth-child(2n):before {
  background: #e5e5e5;
  content: '';
  display: block;
  height: 100%;
  margin-left: -3em;
  position: absolute;
  top: 0;
  width: 2px;
}

.box.features .features-row section:nth-child(2n-1) {
  padding-left: 0;
}

.box.features .features-row:first-child {
  border-top: 0;
}

.box.features .features-row:first-child section {
  padding-top: 0;
}

.box.features .features-row:last-child {
  padding-bottom: 0;
}

.box.features .features-row:last-child section {
  padding-bottom: 0;
}

.box.special {
  text-align: center;
}

.box .image.featured {
  border-radius: 0;
  display: block;
  margin: 3em 0 3em -3em;
  position: relative;
  width: calc(100% + 6em);
}

.box .image.featured img {
  border-radius: 0;
  display: block;
  width: 100%;
}

.box .image.featured:first-child {
  border-radius: 6px 6px 0 0;
  margin-bottom: 3em;
  margin-top: -3em;
}

.box .image.featured:first-child img {
  border-radius: 6px 6px 0 0;
}

.box .image.featured:last-child {
  border-radius: 0 0 6px 6px;
  margin-bottom: -3em;
  margin-top: 3em;
}

.box .image.featured:last-child img {
  border-radius: 0 0 6px 6px;
}

/* Icon */
.icon {
  text-decoration: none;
  border-bottom: none;
  position: relative;
}

.icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
}

.icon > .label {
  display: none;
}

.icon:before {
  line-height: inherit;
}

.icon.solid:before {
  font-weight: 900;
}

.icon.brands:before {
  font-family: 'Font Awesome 5 Brands';
}

.icon.major {
  background: #666;
  border-radius: 100%;
  color: #ffffff;
  cursor: default;
  display: inline-block;
  height: 5.5em;
  line-height: 5.5em;
  margin: 0 0 2em 0;
  width: 5.5em;
}

.icon.major:before {
  font-size: 2.5em;
}

.icon.major.accent1 {
  background: #666;
  color: #ffffff;
}

.icon.major.accent2 {
  background: #e89980;
  color: #ffffff;
}

.icon.major.accent3 {
  background: #7fcdb8;
  color: #ffffff;
}

.icon.major.accent4 {
  background: #90b0ba;
  color: #ffffff;
}

.icon.major.accent5 {
  background: #e5cb95;
  color: #ffffff;
}

/* Image */
.image {
  border-radius: 6px;
  border: 0;
  display: inline-block;
  position: relative;
}

.image img {
  border-radius: 6px;
  display: block;
}

.image.left {
  float: left;
  padding: 0 1.5em 1em 0;
  top: 0.25em;
}

.image.right {
  float: right;
  padding: 0 0 1em 1.5em;
  top: 0.25em;
}

.image.fit {
  display: block;
  margin: 0 0 2em 0;
  width: 100%;
}

.image.fit img {
  display: block;
  width: 100%;
}

/* List */
ol {
  list-style: decimal;
  margin: 0 0 2em 0;
  padding-left: 1.25em;
}

ol li {
  padding-left: 0.25em;
}

ul {
  list-style: disc;
  margin: 0 0 2em 0;
  padding-left: 1em;
}

ul li {
  padding-left: 0.5em;
}

ul.alt {
  list-style: none;
  padding-left: 0;
}

ul.alt li {
  border-top: solid 1px #e5e5e5;
  padding: 0.5em 0;
}

ul.alt li:first-child {
  border-top: 0;
  padding-top: 0;
}

ul.icons {
  cursor: default;
  list-style: none;
  padding-left: 0;
}

ul.icons li {
  display: inline-block;
  padding: 0 1.25em 0 0;
}

ul.icons li:last-child {
  padding-right: 0;
}

ul.icons li .icon {
  color: inherit;
}

ul.icons li .icon:before {
  font-size: 1.75em;
}

dl {
  margin: 0 0 2em 0;
}

/* Actions */
ul.actions {
  display: -moz-flex;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: default;
  list-style: none;
  margin-left: -1em;
  padding-left: 0;
}

ul.actions li {
  padding: 0 0 0 1em;
  vertical-align: middle;
}

ul.actions.special {
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-left: 0;
}

ul.actions.special li:first-child {
  padding-left: 0;
}

ul.actions.stacked {
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  margin-left: 0;
}

ul.actions.stacked li {
  padding: 1.3em 0 0 0;
}

ul.actions.stacked li:first-child {
  padding-top: 0;
}

ul.actions.fit {
  width: calc(100% + 1em);
}

ul.actions.fit li {
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-shrink: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 100%;
}

ul.actions.fit li > * {
  width: 100%;
}

ul.actions.fit.stacked {
  width: 100%;
}

@media screen and (max-width: 480px) {
  ul.actions:not(.fixed) {
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    margin-left: 0;
    width: 100% !important;
  }
  ul.actions:not(.fixed) li {
    -moz-flex-grow: 1;
    -ms-flex-grow: 1;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-shrink: 1;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    padding: 1em 0 0 0;
    text-align: center;
    width: 100%;
  }
  ul.actions:not(.fixed) li > * {
    width: 100%;
  }
  ul.actions:not(.fixed) li:first-child {
    padding-top: 0;
  }
  ul.actions:not(.fixed) li input[type="submit"],
  ul.actions:not(.fixed) li input[type="reset"],
  ul.actions:not(.fixed) li input[type="button"],
  ul.actions:not(.fixed) li button,
  ul.actions:not(.fixed) li .button {
    width: 100%;
  }
  ul.actions:not(.fixed) li input[type="submit"].icon:before,
  ul.actions:not(.fixed) li input[type="reset"].icon:before,
  ul.actions:not(.fixed) li input[type="button"].icon:before,
  ul.actions:not(.fixed) li button.icon:before,
  ul.actions:not(.fixed) li .button.icon:before {
    margin-left: -0.5em;
  }
}

/* Table */
.table-wrapper {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
}

table {
  margin: 0 0 2em 0;
  width: 100%;
}

table tbody tr {
  border: solid 1px #e5e5e5;
  border-left: 0;
  border-right: 0;
}

table tbody tr:nth-child(2n + 1) {
  background-color: #f8f8f8;
}

table td {
  padding: 0.75em 0.75em;
}

table th {
  color: #646464;
  font-size: 0.9em;
  font-weight: 300;
  padding: 0 0.75em 0.75em 0.75em;
  text-align: left;
}

table thead {
  border-bottom: solid 2px #e5e5e5;
}

table tfoot {
  border-top: solid 2px #e5e5e5;
}

table.alt {
  border-collapse: separate;
}

table.alt tbody tr td {
  border: solid 1px #e5e5e5;
  border-left-width: 0;
  border-top-width: 0;
}

table.alt tbody tr td:first-child {
  border-left-width: 1px;
}

table.alt tbody tr:first-child td {
  border-top-width: 1px;
}

table.alt thead {
  border-bottom: 0;
}

table.alt tfoot {
  border-top: 0;
}

/* Button */
input[type="submit"],
input[type="reset"],
input[type="button"],
.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  background-color: #666;
  border-radius: 6px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  height: 3em;
  line-height: 3em;
  padding: 0 2em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:hover {
  background-color: #737373;
}

input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
.button:active {
  background-color: #595959;
}

input[type="submit"].icon,
input[type="reset"].icon,
input[type="button"].icon,
.button.icon {
  padding-left: 1.35em;
}

input[type="submit"].icon:before,
input[type="reset"].icon:before,
input[type="button"].icon:before,
.button.icon:before {
  margin-right: 0.5em;
}

input[type="submit"].fit,
input[type="reset"].fit,
input[type="button"].fit,
.button.fit {
  width: 100%;
}

input[type="submit"].small,
input[type="reset"].small,
input[type="button"].small,
.button.small {
  font-size: 0.8em;
  height: 2.7em;
  line-height: 2.7em;
}

input[type="submit"].large,
input[type="reset"].large,
input[type="button"].large,
.button.large {
  font-size: 1.25em;
  height: 2.7em;
  line-height: 2.7em;
}

input[type="submit"].alt,
input[type="reset"].alt,
input[type="button"].alt,
.button.alt {
  background-color: transparent;
  -webkit-box-shadow: inset 0 0 0 2px #e5e5e5;
          box-shadow: inset 0 0 0 2px #e5e5e5;
  color: #777;
}

input[type="submit"].alt:hover,
input[type="reset"].alt:hover,
input[type="button"].alt:hover,
.button.alt:hover {
  background-color: #f8f8f8;
}

input[type="submit"].alt:active,
input[type="reset"].alt:active,
input[type="button"].alt:active,
.button.alt:active {
  background-color: #f0f0f0;
}

input[type="submit"].alt.icon:before,
input[type="reset"].alt.icon:before,
input[type="button"].alt.icon:before,
.button.alt.icon:before {
  color: #999;
}

input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary,
.button.primary {
  background-color: #e89980;
  color: #ffffff !important;
}

input[type="submit"].primary:hover,
input[type="reset"].primary:hover,
input[type="button"].primary:hover,
.button.primary:hover {
  background-color: #ecaa96;
}

input[type="submit"].primary:active,
input[type="reset"].primary:active,
input[type="button"].primary:active,
.button.primary:active {
  background-color: #e4886a;
}

input[type="submit"].disabled, input[type="submit"]:disabled,
input[type="reset"].disabled,
input[type="reset"]:disabled,
input[type="button"].disabled,
input[type="button"]:disabled,
.button.disabled,
.button:disabled {
  background-color: #777 !important;
  -webkit-box-shadow: inset 0 -0.15em 0 0 rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 -0.15em 0 0 rgba(0, 0, 0, 0.15);
  color: #f5f5f5 !important;
  cursor: default;
  opacity: 0.25;
}

/* Header */
#page-wrapper {
  padding-top: 3em;
}

body.landing #page-wrapper {
  padding-top: 0;
}

@-webkit-keyframes reveal-header {
  0% {
    top: -5em;
  }
  100% {
    top: 0;
  }
}

@keyframes reveal-header {
  0% {
    top: -5em;
  }
  100% {
    top: 0;
  }
}

#header {
  background: #444;
  color: #bbb;
  cursor: default;
  height: 3.25em;
  left: 0;
  line-height: 3.25em;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

#header h1 {
  color: inherit;
  height: inherit;
  left: 1.25em;
  line-height: inherit;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
}

#header h1 a {
  color: #fff;
  font-weight: 400;
  border: 0;
}

#header nav {
  height: inherit;
  line-height: inherit;
  position: absolute;
  right: 0.75em;
  top: 0;
  vertical-align: middle;
}

#header nav > ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

#header nav > ul > li {
  display: inline-block;
  padding-left: 0;
}

#header nav > ul > li > ul {
  display: none;
}

#header nav > ul > li a {
  display: inline-block;
  height: 2em;
  line-height: 1.95em;
  padding: 0 1em;
  border-radius: 6px;
}

#header nav > ul > li a:not(.button) {
  color: #fff;
  display: inline-block;
  text-decoration: none;
  border: 0;
}

#header nav > ul > li a:not(.button).icon:before {
  color: #999;
  margin-right: 0.5em;
}

#header nav > ul > li:first-child {
  margin-left: 0;
}

#header nav > ul > li.active a:not(.button) {
  background-color: rgba(153, 153, 153, 0.25);
}

#header nav > ul > li .button {
  margin: 0 0 0 0.5em;
  position: relative;
}

#header input[type="submit"],
#header input[type="reset"],
#header input[type="button"],
#header .button {
  background-color: transparent;
  -webkit-box-shadow: inset 0 0 0 2px #999;
          box-shadow: inset 0 0 0 2px #999;
  color: #fff;
}

#header input[type="submit"]:hover,
#header input[type="reset"]:hover,
#header input[type="button"]:hover,
#header .button:hover {
  background-color: rgba(153, 153, 153, 0.25);
}

#header input[type="submit"]:active,
#header input[type="reset"]:active,
#header input[type="button"]:active,
#header .button:active {
  background-color: rgba(153, 153, 153, 0.5);
}

#header .container {
  position: relative;
}

#header .container h1 {
  left: 0;
}

#header .container nav {
  right: 0;
}

#header.reveal {
  -webkit-animation: reveal-header 0.5s;
  animation: reveal-header 0.5s;
}

#header.alt {
  -webkit-animation: none;
  animation: none;
  background: none;
  color: rgba(255, 255, 255, 0.75);
  position: absolute;
}

#header.alt nav > ul > li a:not(.button).icon:before {
  color: rgba(255, 255, 255, 0.75);
}

#header.alt nav > ul > li.active a:not(.button) {
  background-color: rgba(255, 255, 255, 0.2);
}

#header.alt input[type="submit"],
#header.alt input[type="reset"],
#header.alt input[type="button"],
#header.alt .button {
  -webkit-box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}

#header.alt input[type="submit"]:hover,
#header.alt input[type="reset"]:hover,
#header.alt input[type="button"]:hover,
#header.alt .button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

#header.alt input[type="submit"]:active,
#header.alt input[type="reset"]:active,
#header.alt input[type="button"]:active,
#header.alt .button:active {
  background-color: rgba(255, 255, 255, 0.2);
}

.dropotron {
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.065), inset 0 -1px 0 0 #fff, inset 0 0 0 1px rgba(229, 229, 229, 0.5);
          box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.065), inset 0 -1px 0 0 #fff, inset 0 0 0 1px rgba(229, 229, 229, 0.5);
  list-style: none;
  margin: calc(-0.5em + 1px) 0 0 1px;
  padding: 0.5em 0;
  width: 11em;
}

.dropotron li {
  padding: 0;
}

.dropotron li a, .dropotron li span {
  -webkit-transition: none;
  transition: none;
  border: 0;
  border-top: solid 1px #f2f2f2;
  color: inherit;
  display: block;
  padding: 0.15em 1em;
}

.dropotron li:first-child > a, .dropotron li:first-child > span {
  border-top: 0;
}

.dropotron li.active > a, .dropotron li.active > span, .dropotron li:hover > a, .dropotron li:hover > span {
  background: #e89980;
  color: #ffffff;
}

.dropotron.level-0 {
  font-size: 0.9em;
  margin: 1em 0 0 0;
}

.dropotron.level-0:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #fff;
  border: solid 1px rgba(229, 229, 229, 0.5);
  border-bottom: 0;
  border-right: 0;
  -webkit-box-shadow: -0.25em -0.125em 0.125em 0 rgba(0, 0, 0, 0.015);
          box-shadow: -0.25em -0.125em 0.125em 0 rgba(0, 0, 0, 0.015);
  content: '';
  display: block;
  height: 0.75em;
  position: absolute;
  right: 1.25em;
  top: -0.375em;
  width: 0.75em;
  z-index: 0;
}

/* Banner */
#banner {
  background-attachment: scroll,							fixed;
  background-color: #666;
  background-image: url("images/overlay.png"), url("../../images/banner.jpg");
  background-position: top left,						center center;
  background-repeat: repeat,							no-repeat;
  background-size: auto,							cover;
  color: #fff;
  padding: 12em 0 20em 0;
  text-align: center;
}

#banner :last-child {
  margin-bottom: 0;
}

#banner h2, #banner h3, #banner h4, #banner h5, #banner h6 {
  color: #fff;
}

#banner h2 {
  font-size: 3.5em;
  line-height: 1em;
  margin: 0 0 0.5em 0;
  padding: 0;
}

#banner p {
  font-size: 1.25em;
  margin-bottom: 1.75em;
}

#banner input[type="submit"],
#banner input[type="reset"],
#banner input[type="button"],
#banner .button {
  background-color: transparent;
  -webkit-box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
          box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
  color: #fff;
  min-width: 12em;
}

#banner input[type="submit"]:hover,
#banner input[type="reset"]:hover,
#banner input[type="button"]:hover,
#banner .button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

#banner input[type="submit"]:active,
#banner input[type="reset"]:active,
#banner input[type="button"]:active,
#banner .button:active {
  background-color: rgba(255, 255, 255, 0.2);
}

#banner input[type="submit"].primary,
#banner input[type="reset"].primary,
#banner input[type="button"].primary,
#banner .button.primary {
  background: #fff;
  color: #666 !important;
}

/* Main */
#main {
  padding: 4em 0;
}

#main > header {
  text-align: center;
  margin: 0 0 3em 0;
}

#main > header h2 {
  font-size: 2.75em;
  margin: 0;
}

#main > header p {
  border-top: solid 2px #e5e5e5;
  color: #777;
  display: inline-block;
  font-style: normal;
  margin: 1em 0 0 0;
  padding: 1em 0 1.25em 0;
}

body.landing #main {
  margin-top: -14em;
}

/* Footer */
#footer {
  background: #f0f0f0;
  padding: 4em 0 6em 0;
  text-align: center;
}

#footer .icons a {
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  opacity: 0.35;
}

#footer .icons a:hover {
  opacity: 0.75;
}

#footer .copyright {
  color: #999;
  font-size: 0.9em;
  line-height: 1em;
  margin: 2em 0 0 0;
  padding: 0;
  text-align: center;
}

#footer .copyright a {
  color: inherit;
}

#footer .copyright li {
  border-left: solid 1px #dddddd;
  display: inline-block;
  list-style: none;
  margin-left: 1em;
  padding-left: 1em;
}

#footer .copyright li:first-child {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}

/* CTA */
#cta {
  background: #e89980;
  color: #f9e6df;
  padding: 3.5em 0 4em 0;
  text-align: center;
}

#cta h2, #cta h3, #cta h4, #cta h5, #cta h6 {
  color: inherit;
}

#cta form {
  margin: 0 auto;
  max-width: 100%;
  width: 25em;
}

#cta input[type="submit"],
#cta input[type="reset"],
#cta input[type="button"],
#cta .button {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #fff;
  color: #e89980;
}

#cta input[type="text"],
#cta input[type="password"],
#cta input[type="email"],
#cta select,
#cta textarea {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 0;
}

#cta input[type="text"]:focus,
#cta input[type="password"]:focus,
#cta input[type="email"]:focus,
#cta select:focus,
#cta textarea:focus {
  -webkit-box-shadow: inset 0 0 0 2px #fff;
          box-shadow: inset 0 0 0 2px #fff;
}

#cta ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.75) !important;
}

#cta :-moz-placeholder {
  color: rgba(255, 255, 255, 0.75) !important;
}

#cta ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.75) !important;
}

#cta :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.75) !important;
}

#cta .formerize-placeholder {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Wide */
@media screen and (max-width: 1680px) {
  /* Basic */
  body, input, select, textarea {
    font-size: 13pt;
  }
  /* Banner */
  #banner {
    padding: 10em 0 18em 0;
  }
}

/* Normal */
@media screen and (max-width: 1280px) {
  /* Basic */
  body, input, select, textarea {
    font-size: 11pt;
  }
  /* Header */
  .dropotron.level-0 {
    font-size: 1em;
  }
  /* Banner */
  #banner {
    background-attachment: scroll;
  }
  #banner h2 {
    font-size: 3.5em;
  }
}

/* Narrow */
@media screen and (max-width: 980px) {
  /* Basic */
  body, input, select, textarea {
    font-size: 11pt;
  }
}

/* Narrower */
#navPanel, #navButton {
  display: none;
}

@media screen and (max-width: 840px) {
  /* Basic */
  html, body {
    overflow-x: hidden;
  }
  body, input, select, textarea {
    font-size: 11pt;
  }
  h2 br, h3 br, h4 br, h5 br, h6 br {
    display: none;
  }
  /* Section/Article */
  header br {
    display: none;
  }
  header.major {
    padding: 0 4em;
  }
  /* Box */
  .box {
    padding: 3em 2em;
  }
  .box.features > section {
    padding: 3em 2em;
  }
  .box .image.featured {
    margin-left: -2em;
    width: calc(100% + 4em);
  }
  .box .image.featured:first-child {
    margin-bottom: 3em;
    margin-top: -3em;
  }
  .box .image.featured:last-child {
    margin-bottom: -3em;
    margin-top: 3em;
  }
  /* Header */
  #page-wrapper {
    padding-top: 0;
  }
  #header {
    display: none;
  }
  /* Banner */
  /* Nav */
  #page-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    padding-bottom: 1px;
  }
  #navButton {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    display: block;
    height: 44px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10001;
  }
  #navButton .toggle {
    text-decoration: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    border: 0;
    outline: 0;
  }
  #navButton .toggle:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    text-transform: none !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
  }
  #navButton .toggle:before {
    background: rgba(192, 192, 192, 0.75);
    border-radius: 6px;
    color: #fff;
    content: '\f0c9';
    display: block;
    font-size: 16px;
    height: 2.25em;
    left: 0.5em;
    line-height: 2.25em;
    position: absolute;
    text-align: center;
    top: 0.5em;
    width: 3.5em;
  }
  #navPanel {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(-275px);
    transform: translateX(-275px);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    display: block;
    height: 100%;
    left: 0;
    overflow-y: auto;
    position: fixed;
    top: 0;
    width: 275px;
    z-index: 10002;
    background: #2b2b2b;
    color: #bbb;
  }
  #navPanel .link {
    border-bottom: 0;
    border-top: solid 1px rgba(255, 255, 255, 0.05);
    color: #bbb;
    display: block;
    height: 44px;
    line-height: 44px;
    padding: 0 1em 0 1em;
    text-decoration: none;
  }
  #navPanel .link:first-child {
    border-top: 0;
  }
  #navPanel .link.depth-0 {
    color: #fff;
  }
  #navPanel .link .indent-1 {
    display: inline-block;
    width: 1em;
  }
  #navPanel .link .indent-2 {
    display: inline-block;
    width: 2em;
  }
  #navPanel .link .indent-3 {
    display: inline-block;
    width: 3em;
  }
  #navPanel .link .indent-4 {
    display: inline-block;
    width: 4em;
  }
  #navPanel .link .indent-5 {
    display: inline-block;
    width: 5em;
  }
  body.navPanel-visible #page-wrapper {
    -webkit-transform: translateX(275px);
    transform: translateX(275px);
  }
  body.navPanel-visible #navButton {
    -webkit-transform: translateX(275px);
    transform: translateX(275px);
  }
  body.navPanel-visible #navPanel {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Mobile */
@media screen and (max-width: 736px) {
  /* Basic */
  body, input, select, textarea {
    font-size: 11pt;
  }
  h2 {
    font-size: 1.75em;
    line-height: 1.35em;
    letter-spacing: -0.025em;
  }
  h3 {
    font-size: 1.5em;
  }
  h4 {
    font-size: 1em;
  }
  /* Section/Article */
  header.major {
    padding: 1em;
  }
  header.major h2, header.major p {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  /* Box */
  .box {
    margin: 1em;
    overflow-x: hidden;
    padding: 2em 2em !important;
  }
  .box.features .features-row {
    border-top: 0;
    padding: 0;
  }
  .box.features .features-row section {
    border: 0;
    border-top: solid 1px #e5e5e5 !important;
    float: none;
    margin: 2em 0 0 0 !important;
    padding: 2em 0 0 0 !important;
    width: 100%;
  }
  .box.features .features-row:first-child section:first-child {
    border-top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .box .image.featured {
    margin-left: -2em;
    width: calc(100% + 4em);
  }
  .box .image.featured:first-child {
    margin-bottom: 2em;
    margin-top: -2em;
  }
  .box .image.featured:last-child {
    margin-bottom: -2em;
    margin-top: 2em;
  }
  /* Banner */
  #banner {
    padding: 4em 0;
  }
  #banner h2 {
    font-size: 2.25em;
  }
  #banner p {
    font-size: 1.25em;
  }
  /* Main */
  #main {
    padding: 4em 0 0 0;
  }
  #main > header {
    margin: 0 2em 1.5em 2em;
  }
  #main > header h2 {
    font-size: 2em;
  }
  #main > header p {
    font-size: 1em;
    padding-bottom: 1em;
  }
  body.landing #main {
    padding: 0;
    margin-top: 0;
  }
  /* Footer */
  #footer {
    padding: 4em 0;
  }
  #footer .copyright li {
    border-left: 0;
    display: block;
    line-height: 2em;
    margin-left: 0;
    padding-left: 0;
  }
}

/* Mobile (Portrait) */
@media screen and (max-width: 480px) {
  /* Basic */
  html, body {
    min-width: 320px;
  }
  body, input, select, textarea {
    font-size: 11pt;
  }
  /* Section/Article */
  header.major {
    padding: 0;
  }
  /* List */
  ul.actions {
    margin: 0 0 2em 0;
  }
  ul.actions li {
    display: block;
    padding: 1em 0 0 0;
    text-align: center;
    width: 100%;
  }
  ul.actions li:first-child {
    padding-top: 0;
  }
  ul.actions li > * {
    width: 100%;
    margin: 0 !important;
  }
  ul.actions li > *.icon:before {
    margin-left: -2em;
  }
  ul.actions.small li {
    padding: 0.5em 0 0 0;
  }
  ul.actions.small li:first-child {
    padding-top: 0;
  }
  /* Box */
  .box {
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin: 1em 0 0 0;
    padding: 3em 1em !important;
  }
  .box.features .features-row section {
    margin: 3em 0 0 0 !important;
    padding: 3em 0 0 0 !important;
  }
  .box .image.featured {
    border-radius: 0;
    margin-left: -1em;
    width: calc(100% + 2em);
  }
  .box .image.featured img {
    border-radius: 0 !important;
  }
  .box .image.featured:first-child {
    margin-bottom: 3em;
    margin-top: -3em;
  }
  .box .image.featured:last-child {
    margin-bottom: -3em;
    margin-top: 3em;
  }
  /* Banner */
  #banner {
    padding: 5em 3em 4em 3em;
  }
  /* Main */
  #main > .box:first-child {
    margin-top: 0;
  }
  /* CTA */
  #cta {
    padding: 2.5em 1em 3em 1em;
  }
}

/* --- Custom CSS added during development ---------------------------------- */
/* ============== Branding ============== */
/* 23, 27, 20 */
/* 242, 233, 218 */
/* 148, 40, 17 */
/*  62/ 77/ 85 */
/* <-- semicolon fixed */
/* alias to match earlier references */
/* Font family */
body, input, select, textarea {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #171B14;
  /* global text colour */
}

/* ============== Header (sticky, compact, bigger logo) ============== */
/* one knob to change the header height everywhere (affects nav alignment too) */
:root {
  --hdr-h: 60px;
}

/* try 56–64px to taste */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--hdr-h);
  line-height: var(--hdr-h);
  background: #F2E9DA;
  /* solid beige bar; remove if you prefer transparent over banner */
  padding: 0 1rem;
}

/* don’t let content hide under the fixed header */
body {
  scroll-padding-top: var(--hdr-h);
}

#main {
  padding-top: var(--hdr-h);
}

/* header title area + logo */
#header .logo {
  margin: 0;
  height: var(--hdr-h);
}

#header .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* vertically center image */
  height: 100%;
}

/* make the mini logo larger here */
#header .logo img {
  height: 44px;
  /* bump this (e.g., 44px) to go larger */
  width: auto;
  display: block;
}

/* nav links sit on the same vertical rhythm as the logo */
#header nav > ul > li > a:not(.button) {
  line-height: var(--hdr-h);
  padding: 0 0.9rem;
  color: #171B14;
}

/* if you keep the transparent 'alt' header anywhere, ensure dark text */
#header.alt,
#header.alt h1 a,
#header.alt nav > ul > li > a:not(.button) {
  color: #171B14;
}

/* Make the dropdown caret match the link colour in the header */
#header nav > ul > li > a.icon:before {
  color: currentColor !important;
  /* same as text */
  opacity: 1;
}

/* No dotted underlines in the header (logo + nav) */
#header a {
  border-bottom: 0 !important;
}

/* ============== Banner (flat cream, shorter) ============== */
#banner {
  /* kill overlay + photo from the template */
  background-image: none !important;
  background-color: #F2E9DA !important;
  color: #171B14;
  text-align: center;
  /* reduce the hero height (this is the main lever) */
  padding: 6rem 0 5rem;
  /* was very tall; tweak these numbers */
  /* keep text dark in the banner */
  /* optional: slightly smaller hero heading & lead */
}

#banner h2, #banner h3, #banner h4, #banner h5, #banner h6 {
  color: #171B14;
}

#banner h2 {
  font-size: 3.25em;
  line-height: 1.05;
  margin: 0 0 0.5em;
}

#banner p {
  font-size: 1.1em;
  margin-bottom: 1.25em;
}

/* If you have a large hero logo inside the banner, size it here */
#banner .hero-logo {
  display: block;
  margin: 0 auto 1.25rem;
  width: 30vw;
  /* fluid */
  max-width: 1200px;
  /* cap (equivalent to min(92vw, 1200px)) */
  height: auto;
}

/* Hero: give the logo some bottom space and stop the float-up card */
#banner .hero-logo {
  margin-bottom: 1.25rem;
}

/* extra breathing room */
#main .box.special {
  margin-top: 0;
}

/* remove Alpha's negative lift */
/* Make each column stretch its card to equal height */
#main .row > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#main .row > [class*="col-"] > .box.special {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

/* Push the button row to the bottom for every card */
#main .box.special .actions {
  margin-top: auto;
}

/* Consistent image block size in cards */
#main .box.special .image.featured {
  aspect-ratio: 16 / 9;
  /* choose 16/9, 3/2, 4/3, etc. */
  overflow: hidden;
}

/* Fill the frame, crop as needed without distortion */
#main .box.special .image.featured img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* centre-crop */
  -o-object-position: center;
     object-position: center;
  display: block;
}

/* ===== Push page content below the fixed header ===== */
/* One knob for header height */
:root {
  --hdr-h: 60px;
}

/* keep in sync with your header bar size */
/* The whole site content sits inside #page-wrapper in Alpha */
#page-wrapper {
  padding-top: var(--hdr-h);
  /* <- this is the important part */
}

/* We previously added padding to #main; remove it so we don’t double-space */
#main {
  padding-top: 0 !important;
}

/* If any first card was floating up into the banner, kill that */
#main > .box.special:first-child,
.container > .box.special:first-child,
body.landing #main > .box.special:first-child,
body.landing .container > .box.special:first-child {
  margin-top: 0 !important;
}

.actions.special .button.alt,
.button.alt {
  background: #942811;
  color: #fff !important;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.button.alt:hover {
  background: #A23A28;
}

/* slightly lighter on hover */
.button.alt:active {
  background: #7F2A1D;
}

/* slightly darker when pressed */
/* ============== Pages (stubs for later) ============== */
/* Project page */
/* === Small, centered image with caption === */
/* Figure inside .box: center image + italic caption */
.box figure {
  margin: 0;
  text-align: center;
}

.box figure img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.box figure figcaption {
  margin-top: 0.75rem;
  font-style: italic;
  opacity: 0.85;
  text-align: center;
}

/* People page  */
/* Person card with wrapped headshot */
.box.person {
  position: relative;
}

.box.person .profile {
  float: left;
  width: 150px;
  /* tweak to taste */
  max-width: 35%;
  height: auto;
  border-radius: 6px;
  /* optional */
  margin: 0 1rem .5rem 0;
  /* space between img and text */
  -o-object-fit: cover;
     object-fit: cover;
}

/* Anything after this element starts below the floated image */
.box.person .wrap-break {
  clear: left;
}

/* Optional: make the lead a touch tighter/bolder like a subhead */
.box.person .lead {
  font-weight: 500;
  line-height: 1.5;
}

/* Mobile: stack the image above the text */
@media (max-width: 736px) {
  .box.person .profile {
    float: none;
    display: block;
    margin: 0 auto 1rem;
    max-width: 180px;
  }
  .box.person .wrap-break {
    display: none;
  }
}

/* Contact page */
/* News page    */
/* ===== Brand tweaks ===== */
/* CTA banner (contact page) */
#cta {
  background: #933222;
  /* whole band in brand red */
  color: #fff;
}

#cta h2 {
  color: #fff;
}

#cta input[type="email"] {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

#cta input[type="email"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

#cta input[type="email"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

#cta input[type="email"]::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

#cta input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

#cta input[type="submit"] {
  background: #fff;
  /* white button on red background */
  color: #933222;
  border-color: #fff;
}

#cta input[type="submit"]:hover {
  background: #f7f7f7;
  color: #933222;
}

/* Drop-down hover/active color */
.dropotron li:hover > a,
.dropotron li.active > a {
  background: #933222 !important;
  color: #fff !important;
}

/* Optional: little triangle on the menu */
.dropotron.level-0:before {
  border-bottom-color: #933222;
}

/* A narrower box variant */
.box.narrow {
  max-width: 820px;
  /* tweak 700–900px to taste */
  margin-left: auto;
  margin-right: auto;
}

/* Plain (no card) look for a figure section */
.figure-plain {
  text-align: center;
  margin: 2rem auto 3rem;
  max-width: 820px;
  /* controls width */
}

.figure-plain img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.figure-plain figcaption {
  margin-top: .75rem;
  font-style: italic;
  opacity: .85;
}

/* Reduce vertical spacing when stacking sections */
.container.compact {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* ===== Blurred hero banner (Alpha-style) ===== */
#banner.banner--blur {
  position: relative;
  min-height: 48vh;
  /* tweak height */
  display: -ms-grid;
  display: grid;
  /* center the text */
  place-items: center;
  text-align: center;
  padding: 6rem 1.5rem;
  /* breathing room for small screens */
  overflow: hidden;
  /* hide blur edges */
}

/* blurred background */
#banner.banner--blur::before {
  background-image: url("../../images/places/boudica_cropped.jpg");
  /* or rename - see below */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}

/* optional subtle tint to boost legibility (brand red at ~18%) */
#banner.banner--blur::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(147, 50, 34, 0.18)), to(rgba(147, 50, 34, 0.18)));
  background: linear-gradient(rgba(147, 50, 34, 0.18), rgba(147, 50, 34, 0.18));
  z-index: 0;
}

/* keep text above the blur */
#banner.banner--blur .inner {
  position: relative;
  z-index: 1;
}

/* make banner text look like Alpha */
#banner.banner--blur h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 .5rem 0;
}

#banner.banner--blur p {
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.home #banner.banner--blur::before {
  background-image: url("../../images/places/boudica-cropped.jpg");
}

.people #banner.banner--blur::before {
  background-image: url("../../images/places/ortahisar.jpg");
}

.project#banner.banner--blur::before {
  background-image: url("../../images/places/edinburgh_winter.jpg");
}

/* If you keep space in the name, encode it: */
.project-berlin #banner.banner--blur::before {
  background-image: url("../../images/places/berlin-wall.jpg");
}

/* Blurred banner */
#banner.banner--blur {
  position: relative;
  min-height: 48vh;
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem 1.5rem;
  overflow: hidden;
}

#banner.banner--blur::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--banner-image);
  /* ← read from HTML */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
  z-index: 0;
}

#banner.banner--blur::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(147, 50, 34, 0.18)), to(rgba(147, 50, 34, 0.18)));
  background: linear-gradient(rgba(147, 50, 34, 0.18), rgba(147, 50, 34, 0.18));
  z-index: 0;
}

#banner.banner--blur .inner {
  position: relative;
  z-index: 1;
}

/* ===== Full-width hero with blurred background image (no tint) ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 48vh;
  /* adjust 40–65vh to taste */
  display: -ms-grid;
  display: grid;
  place-items: center;
  /* center the text */
  text-align: center;
  overflow: hidden;
  padding: 6rem 1.5rem;
  /* mobile breathing room */
}

/* Background image layer */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* fills horizontally */
  -webkit-filter: blur(2px);
          filter: blur(2px);
  /* subtle “fuzzy” look */
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  /* hides blur edge cropping */
  z-index: 0;
}

/* If a tint element ever exists, neutralize it */
.hero__shade {
  background: none !important;
}

/* Text overlay (force white) */
.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero__content h1 {
  color: #fff;
  margin: 0 0 .5rem;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
}

.hero__content p {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
}

/* tighter container for sections that look too far apart */
.container.compact {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

/* Brand tokens (adjust the cream to your exact header/brand background) */
:root {
  --brand-red: #933222;
  --brand-cream: #F4E7DC;
  /* your light brand bg */
}

.quote-card {
  background: var(--brand-cream);
  color: #111;
  /* black text */
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  max-width: 820px;
  margin: 1.75rem auto;
  position: relative;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.quote-card blockquote {
  margin: 0;
  font-style: italic;
  line-height: 1.55;
}

.quote-card .source {
  display: block;
  margin-top: .75rem;
  font-style: normal;
  opacity: .8;
}

/* big decorative marks stay brand red */
.quote-card::before,
.quote-card::after {
  position: absolute;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--brand-red);
  font-weight: 700;
  opacity: .9;
  content: "";
}

.quote-card::before {
  content: "“";
  left: .5rem;
  top: -.4rem;
}

.quote-card::after {
  content: "”";
  right: .5rem;
  bottom: -.6rem;
}

/* ===== Header: same beige at every size/state ===== */
:root {
  --brand-cream: #F4E7DC;
}

/* your header/beige */
#header,
#header.alt,
#header.reveal {
  background: var(--brand-cream) !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (max-width: 980px) {
  #header {
    background: var(--brand-cream) !important;
  }
}

/* Remove the grey "pill" highlight on top-level nav items */
#nav > ul > li > a:hover,
#nav > ul > li.active > a,
#nav > ul > li:focus-within > a {
  background: transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/* Keep dropdown hover highlight as your red */
.dropotron li:hover > a,
.dropotron li.active > a {
  background: #933222 !important;
  color: #fff !important;
}

/* Triangle pointer color for the first-level drop-down (optional) */
.dropotron.level-0:before {
  border-bottom-color: #fff;
}

/* ===== Brand footer ===== */
:root {
  --brand-red: #933222;
}

.brand-footer {
  background: var(--brand-red);
  color: #fff;
  padding: 2rem 0;
}

.brand-footer .container {
  max-width: 64rem;
  /* matches your content width nicely */
  margin: 0 auto;
  text-align: center;
}

.brand-footer a {
  color: #fff;
  text-decoration: underline;
}

.brand-footer a:hover {
  text-decoration: none;
  opacity: .9;
}

.brand-footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: .5rem;
}

.brand-footer .bsky img {
  width: 28px;
  height: 28px;
  display: inline-block;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

/* Screen-reader helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --brand-navy: #37464F;
  /* pick your exact navy */
}

/* Footer shell */
.brand-footer {
  background: var(--brand-navy);
  color: #fff;
}

.brand-footer a {
  color: #fff;
  text-decoration: underline;
}

.brand-footer a:hover {
  text-decoration: none;
  opacity: .9;
}

/* Layout: 3 columns on desktop, stack on mobile */
.brand-footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1rem 2.75rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.2fr 1fr 1fr;
      grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media (max-width: 980px) {
  .brand-footer .footer-inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
  }
}

/* Contact copy */
.brand-footer .contact p {
  margin: 0;
  line-height: 1.6;
}

/* Follow block */
.brand-footer .heading {
  margin: 0 0 .5rem;
  font-weight: 600;
}

.brand-footer .social {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: .75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.brand-footer .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 32px;
  height: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  /* FA icons */
  line-height: 1;
}

/* Links list */
.brand-footer .links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.brand-footer .links li + li {
  margin-top: .4rem;
}

/* ===== Full-width hero with normal (unblurred) background ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 48vh;
  /* adjust 40–65vh to taste */
  display: -ms-grid;
  display: grid;
  place-items: center;
  /* centers the text */
  text-align: center;
  overflow: hidden;
  padding: 6rem 1.5rem;
  /* mobile breathing room */
}

/* Background image layer (no blur, no tint) */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* fills horizontally */
  -webkit-filter: none;
          filter: none;
  -webkit-transform: none;
          transform: none;
  z-index: 0;
}

/* If you still have a tint element somewhere, neutralize it */
.hero__shade {
  background: none !important;
}

/* Text overlay (white) */
.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero__content h1 {
  color: #fff;
  margin: 0 0 .5rem;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
}

.hero__content p {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
}

/* Bluesky icon for HTML5 UP .icons list */
.icons .icon.icon-bsky:before {
  content: "";
  /* override the FA glyph */
  display: inline-block;
  width: 2em;
  /* matches theme sizing */
  height: 2em;
  line-height: 2em;
  background: currentColor;
  /* inherits white in your footer */
  -webkit-mask: url("assets/icons/bluesky.svg") no-repeat center/contain;
  mask: url("assets/icons/bluesky.svg") no-repeat center/contain;
  font-family: initial;
  /* ignore FA font for this one */
}

/* Center the copyright/meta line */
.brand-footer .footer-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: .9rem 1rem 1.4rem;
}

.brand-footer .footer-meta p {
  margin: 0;
}

.brand-footer .social-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 34px;
  height: 34px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  text-decoration: none;
}

.brand-footer .social-link img {
  width: 28px;
  height: 28px;
  display: block;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  /* makes dark assets white */
}

/* ===== Hero (full-width background image, no blur/tint) ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 48vh;
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 1.5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: none;
          filter: none;
  -webkit-transform: none;
          transform: none;
  z-index: 0;
}

/* remove optional tint if present */
.hero__shade {
  display: none !important;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero__content h1 {
  color: #fff;
  margin: 0 0 .5rem;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
}

.post-page .wrapper .inner {
  /* kill any grid/flex that might push content left in this section */
  display: block;
  max-width: 820px;
  /* adjust to taste */
  margin-left: auto;
  margin-right: auto;
  /* centers the content column */
  padding-left: 1rem;
  /* small breathing room on tiny screens */
  padding-right: 1rem;
}

/* Center the text itself (remove this block if you prefer left-aligned text) */
.post-page .inner,
.post-page .inner .major,
.post-page .inner .major h2,
.post-page .inner .date,
.post-page .inner p,
.post-page .inner li {
  text-align: center;
}

/* News list: title and date on one line */
.post-list .post-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: .5rem;
          column-gap: .5rem;
  row-gap: .25rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* lets date wrap under on very narrow screens */
  margin: 0 0 .75rem 0;
}

.post-list .post-list__item .date {
  font-weight: 400;
  font-size: .95em;
  opacity: .75;
}

/* Footer logos row */
.brand-footer .footer-logos {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1rem;
}

/* Each logo lives in a 3:1 box */
.brand-footer .footer-logos .logo {
  width: clamp(160px, 18vw, 240px);
  /* overall size */
  aspect-ratio: 3 / 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Fit the image inside without distortion */
.brand-footer .footer-logos .logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 720px) {
  .brand-footer .footer-logos {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .brand-footer .footer-logos .logo {
    width: clamp(160px, 60vw, 260px);
  }
}

/* Blog post images: centered & responsive */
.post-page .content img {
  display: block;
  margin: 1.25rem auto;
  max-width: 100%;
  height: auto;
}

/* === Beige brand bar under the navy footer === */
.brand-footer .footer-brandbar {
  background: #efe5d8;
  /* project beige */
  color: #111;
  /* black text */
  margin-top: 0;
  /* sit flush */
  padding-top: 1.25rem;
}

/* logos row (no divider line) */
.brand-footer .footer-brandbar .footer-logos {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  gap: 1.25rem;
  padding: 0 1rem 0.5rem;
  border-top: none !important;
  /* kill any previous rule */
}

/* 3×1-ish logo cards with responsive sizing */
.brand-footer .footer-brandbar .logo {
  width: clamp(160px, 22vw, 260px);
  aspect-ratio: 3 / 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.brand-footer .footer-brandbar .logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: none;
          filter: none;
}

/* copyright in black, centered on beige */
.brand-footer .footer-brandbar .footer-meta {
  text-align: center;
  color: #111;
  opacity: .85;
  padding: 0.5rem 0 1.25rem;
}

/* stack logos on small screens */
@media (max-width: 720px) {
  .brand-footer .footer-brandbar .footer-logos {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    row-gap: 1rem;
  }
}

/* === Beige brand bar under the navy footer === */
.brand-footer .footer-brandbar {
  background: #efe5d8;
  /* beige */
  color: #111;
  /* black text on beige */
  margin-top: 0;
  padding-top: 1.25rem;
}

/* Remove any old divider line and lay out logos */
.brand-footer .footer-brandbar .footer-logos {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  gap: 1.25rem;
  padding: 0 1rem 0.5rem;
  border-top: none !important;
  /* kill previous border rule */
}

/* Logo box ~3:1 and responsive */
.brand-footer .footer-brandbar .logo {
  width: clamp(160px, 22vw, 260px);
  aspect-ratio: 3 / 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.brand-footer .footer-brandbar .logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Copyright styling on beige */
.brand-footer .footer-brandbar .footer-meta {
  text-align: center;
  color: #111;
  opacity: .85;
  padding: 0.5rem 0 1.25rem;
}

/* Stack logos on small screens */
@media (max-width: 720px) {
  .brand-footer .footer-brandbar .footer-logos {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    row-gap: 1rem;
  }
}

/* Safety: if an older rule adds a border on .footer-logos anywhere, neutralize it */
.brand-footer .footer-logos {
  border-top: none !important;
}

/* Kill the navy strip under the beige brand bar */
.brand-footer {
  padding-bottom: 0 !important;
  /* remove leftover navy area */
}

/* Keep the beige area’s own spacing */
.brand-footer .footer-brandbar {
  padding-bottom: 1.25rem;
  margin-bottom: 0;
}

/* Make sure no divider line sneaks back in */
.brand-footer .footer-logos,
.brand-footer .footer-brandbar {
  border-top: none !important;
  border-bottom: none !important;
}

.footer-logos {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

.footer-logos img {
  height: 64px;
  /* or 96px / 128px to taste */
  width: auto;
  /* keep aspect ratio */
  display: block;
  margin-inline: auto;
}

/* --- Brand footer logos --- */
.brand-footer .footer-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1rem, 2.5vw, 3rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.brand-footer .footer-logos .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.brand-footer .footer-logos .logo-img {
  display: block;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  /* keeps logos crisp without stretching */
  max-height: clamp(34px, 6.2vw, 72px);
}

/* Per-logo tweaks: Edinburgh a bit larger; the other two a touch smaller */
.brand-footer .logo--edinburgh {
  width: clamp(220px, 26vw, 360px);
}

.brand-footer .logo--trento {
  width: clamp(200px, 23vw, 320px);
}

.brand-footer .logo--leverhulme {
  width: clamp(210px, 24vw, 335px);
}

/* Mobile: keep them even and centered */
@media (max-width: 780px) {
  .brand-footer .footer-logos {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.25rem;
  }
  .brand-footer .logo--edinburgh {
    width: clamp(160px, 42vw, 240px);
  }
  .brand-footer .logo--trento {
    width: clamp(150px, 40vw, 220px);
  }
  .brand-footer .logo--leverhulme {
    width: clamp(155px, 41vw, 230px);
  }
}

/* CONTACT FORM CARD */
.box.form-card {
  padding: 2.25rem 2rem;
}

/* Two-column grid: label (left), input (right) */
.form-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 230px 1fr;
      grid-template-columns: 230px 1fr;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* h4 size labels everywhere */
.form-grid h4 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Place label and control into the grid neatly */
.form-grid .field {
  display: contents;
}

/* lets label + input occupy the two columns */
/* Inputs */
.form-grid input[type="text"],
.form-grid input[type="email"],
.form-grid textarea {
  width: 100%;
}

/* “Message” label centred and textarea full width */
.form-grid .field-message h4 {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: .5rem;
}

.form-grid .field-message textarea {
  grid-column: 1 / -1;
}

/* Consent + actions take the full width */
.form-grid .consent,
.form-grid .actions {
  grid-column: 1 / -1;
}

/* Navy button, centered */
.form-grid .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: .5rem;
}

/* Update this colour to your exact “brand navy” if different */
.btn-navy {
  background: #33454D;
  color: #fff;
  border: 0;
  padding: .9rem 2.25rem;
  border-radius: .45rem;
  font-size: 1.05rem;
  letter-spacing: .02em;
  cursor: pointer;
}

.btn-navy:hover {
  background: #2a3840;
}

/* Muted helper text */
.muted {
  opacity: .7;
}

/* Hide honeypot (spam trap) accessibly */
.hp {
  position: absolute !important;
  left: -50000px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Small status line */
.status {
  margin: .5rem 0 0;
  font-size: .95rem;
}

/* Make sure the consent checkbox is visible and aligned */
.form-card .consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .75rem;
  margin-top: 1rem;
}

/* Override theme styles that hide/skin checkboxes */
.form-card input[type="checkbox"] {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
}

.form-card .consent label {
  margin: 0;
}

/* Focus style */
.form-card input[type="text"],
.form-card input[type="email"],
.form-card textarea {
  border: 1px solid #d2d6dc;
  -webkit-transition: border-color .15s, -webkit-box-shadow .15s;
  transition: border-color .15s, -webkit-box-shadow .15s;
  transition: border-color .15s, box-shadow .15s;
  transition: border-color .15s, box-shadow .15s, -webkit-box-shadow .15s;
}

.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: #243741;
  /* brand navy */
  -webkit-box-shadow: 0 0 0 3px rgba(36, 55, 65, 0.12);
          box-shadow: 0 0 0 3px rgba(36, 55, 65, 0.12);
}

/* Invalid state colour (optional) */
.form-card input:invalid,
.form-card textarea:invalid {
  border-color: #c23a2b;
  /* subtle brand red */
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* Make the consent checkbox visible again and style it */
.consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: .65rem;
  margin: 0.75rem 0 0;
}

.consent input[type="checkbox"] {
  display: inline-block !important;
  /* override theme's hidden input */
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .25rem;
  accent-color: #2a3b42;
  /* brand navy tick/box color */
}

.consent label {
  margin: 0;
  line-height: 1.35;
}
/*# sourceMappingURL=main.css.map */