@charset "UTF-8";
/*
--text-xs: calc((1em / var(--text-scale-ratio)) / var(--text-scale-ratio));
--text-sm: calc(var(--text-xs) * var(--text-scale-ratio));
--text-md: calc(var(--text-sm) * var(--text-scale-ratio) * var(--text-scale-ratio));
--text-lg: calc(var(--text-md) * var(--text-scale-ratio));
--text-xl: calc(var(--text-lg) * var(--text-scale-ratio));
--text-xxl: calc(var(--text-xl) * var(--text-scale-ratio));
--text-xxxl: calc(var(--text-xxl) * var(--text-scale-ratio));
*/
*, *::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

* {
  font: inherit;
}

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, hr {
  margin: 0;
  padding: 0;
  border: 0;
}

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

body {
  background-color: white;
  background-color: var(--color-bg, white);
}

html, body {
  height: 100%;
}

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

button, input, textarea, select {
  margin: 0;
}

.btn, .form-control, .link, .reset {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control::-ms-expand {
  display: none;
}

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

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

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

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

small,
.text-sm {
  font-size: 0.833rem;
}

a,
.link {
  text-decoration: underline;
}

strong,
.font-w700 {
  font-weight: 700;
}

.font-w500 {
  font-weight: 500;
}

s {
  text-decoration: line-through;
}

u,
.text-underline {
  text-decoration: underline;
}

i,
em,
.italic {
  font-style: italic;
}

.ul-disc {
  list-style: disc;
  padding-left: 1.25rem;
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

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

.grid-cell {
  -ms-flex-positive: 1;
      -webkit-box-flex: 1;
      flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  max-width: 100%;
}

.grid--fit > .grid-cell {
  -ms-flex: 1 1;
      -webkit-box-flex: 1;
      flex: 1 1;
}

.grid--full > .grid-cell {
  -ms-flex: 0 0 100%;
      -webkit-box-flex: 0;
      flex: 0 0 100%;
}

.grid--1of2 > .grid-cell {
  -ms-flex: 0 0 50%;
      -webkit-box-flex: 0;
      flex: 0 0 50%;
}

.grid--1of3 > .grid-cell {
  -ms-flex: 0 0 33.3333%;
      -webkit-box-flex: 0;
      flex: 0 0 33.3333%;
}

.grid--1of4 > .grid-cell {
  -ms-flex: 0 0 25%;
      -webkit-box-flex: 0;
      flex: 0 0 25%;
}

.grid--1of5 > .grid-cell {
  -ms-flex: 0 0 20%;
      -webkit-box-flex: 0;
      flex: 0 0 20%;
}

.grid--1of8 > .grid-cell {
  -ms-flex: 0 0 12.5%;
      -webkit-box-flex: 0;
      flex: 0 0 12.5%;
}

@media (min-width: 24em) {
  .grid--fit\@sm > .grid-cell {
    -ms-flex: 1 1;
        -webkit-box-flex: 1;
        flex: 1 1;
  }
}
@media (min-width: 24rem) {
  .grid--fit\@sm > .grid-cell {
    -ms-flex: 1 1;
        -webkit-box-flex: 1;
        flex: 1 1;
  }

  .grid--1of2\@sm > .grid-cell {
    -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
  }

  .grid--1of3\@sm > .grid-cell {
    -ms-flex: 0 0 33.3333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.3333%;
  }

  .grid--1of4\@sm > .grid-cell {
    -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
  }

  .grid--1of5\@sm > .grid-cell {
    -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
  }
}
@media (min-width: 48rem) {
  .grid--fit\@md > .grid-cell {
    -ms-flex: 1 1;
        -webkit-box-flex: 1;
        flex: 1 1;
  }

  .grid--1of2\@md > .grid-cell {
    -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
  }

  .grid--1of3\@md > .grid-cell {
    -ms-flex: 0 0 33.3333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.3333%;
  }

  .grid--1of4\@md > .grid-cell {
    -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
  }

  .grid--1of5\@md > .grid-cell {
    -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
  }
}
@media (min-width: 64rem) {
  .grid--fit\@lg > .grid-cell {
    -ms-flex: 1 1;
        -webkit-box-flex: 1;
        flex: 1 1;
  }

  .grid--1of2\@lg > .grid-cell {
    -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
  }

  .grid--1of3\@lg > .grid-cell {
    -ms-flex: 0 0 33.3333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.3333%;
  }

  .grid--1of4\@lg > .grid-cell {
    -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
  }

  .grid--1of5\@lg > .grid-cell {
    -ms-flex: 0 0 20%;
        -webkit-box-flex: 0;
        flex: 0 0 20%;
  }
}
@media (min-width: 72em) {
  .grid--fit\@lg > .grid-cell {
    -ms-flex: 1 1;
        -webkit-box-flex: 1;
        flex: 1 1;
  }
}
.grid--gutters {
  margin: 0 0 0 -1rem;
}
.grid--gutters > .grid-cell {
  padding: 0 0 0 1rem;
}

.grid--gutters-md {
  margin: 0 0 0 -1.25rem;
}
.grid--gutters-md > .grid-cell {
  padding-left: 1.25rem;
}

.grid--gutters-lg {
  margin: 0 0 0 -2rem;
}
.grid--gutters-lg > .grid-cell {
  padding-left: 2rem;
}

@media (min-width: 24rem) {
  .grid--gutters-md\@sm {
    margin-left: -1.25rem;
  }
  .grid--gutters-md\@sm > .grid-cell {
    padding-left: 1.25rem;
  }

  .grid--gutters-lg\@sm {
    margin-left: -2rem;
  }
  .grid--gutters-lg\@sm > .grid-cell {
    padding-left: 2rem;
  }

  .grid--gutters-xl\@sm {
    margin-left: -3.25rem;
  }
  .grid--gutters-xl\@sm > .grid-cell {
    padding-left: 3.25rem;
  }

  .grid--gutters-xxl\@sm {
    margin-left: -5.25rem;
  }
  .grid--gutters-xxl\@sm > .grid-cell {
    padding-left: 5.25rem;
  }
}
@media (min-width: 48rem) {
  .grid--gutters-md\@md {
    margin-left: -1.25rem;
  }
  .grid--gutters-md\@md > .grid-cell {
    padding-left: 1.25rem;
  }

  .grid--gutters-lg\@md {
    margin-left: -2rem;
  }
  .grid--gutters-lg\@md > .grid-cell {
    padding-left: 2rem;
  }

  .grid--gutters-xl\@md {
    margin-left: -3.25rem;
  }
  .grid--gutters-xl\@md > .grid-cell {
    padding-left: 3.25rem;
  }

  .grid--gutters-xxl\@md {
    margin-left: -5.25rem;
  }
  .grid--gutters-xxl\@md > .grid-cell {
    padding-left: 5.25rem;
  }
}
@media (min-width: 64rem) {
  .grid--gutters-md\@lg {
    margin-left: -1.25rem;
  }
  .grid--gutters-md\@lg > .grid-cell {
    padding-left: 1.25rem;
  }

  .grid--gutters-lg\@lg {
    margin-left: -2rem;
  }
  .grid--gutters-lg\@lg > .grid-cell {
    padding-left: 2rem;
  }

  .grid--gutters-xl\@lg {
    margin-left: -3.25rem;
  }
  .grid--gutters-xl\@lg > .grid-cell {
    padding-left: 3.25rem;
  }

  .grid--gutters-xxl\@lg {
    margin-left: -5.25rem;
  }
  .grid--gutters-xxl\@lg > .grid-cell {
    padding-left: 5.25rem;
  }
}
.grid--gutters-bottom {
  margin-bottom: 1rem;
}
.grid--gutters-bottom > .grid-cell {
  padding-bottom: 1rem;
}

.grid--gutters-bottom-md {
  margin-bottom: -1.25rem;
}
.grid--gutters-bottom-md > .grid-cell {
  padding-bottom: 1.25rem;
}

.grid--gutters-bottom-lg {
  margin-bottom: -2rem;
}
.grid--gutters-bottom-lg > .grid-cell {
  padding-bottom: 2rem;
}

.grid--gutters-bottom-xl {
  margin-bottom: -3.25rem;
}
.grid--gutters-bottom-xl > .grid-cell {
  padding-bottom: 3.25rem;
}

.grid--gutters-bottom-xxl {
  margin-bottom: -5.25rem;
}
.grid--gutters-bottom-xxl > .grid-cell {
  padding-bottom: 5.25rem;
}

@media (min-width: 48rem) {
  .grid--gutters-bottom-md\@md {
    margin-bottom: -1.25rem;
  }
  .grid--gutters-bottom-md\@md > .grid-cell {
    padding-bottom: 1.25rem;
  }

  .grid--gutters-bottom-lg\@md {
    margin-bottom: -2rem;
  }
  .grid--gutters-bottom-lg\@md > .grid-cell {
    padding-bottom: 2rem;
  }

  .grid--gutters-bottom-xl\@md {
    margin-bottom: -3.25rem;
  }
  .grid--gutters-bottom-xl\@md > .grid-cell {
    padding-bottom: 3.25rem;
  }

  .grid--gutters-bottom-xxl\@md {
    margin-bottom: -5.25rem;
  }
  .grid--gutters-bottom-xxl\@md > .grid-cell {
    padding-bottom: 5.25rem;
  }
}
.u-full {
  width: 100%;
  -ms-flex: none;
      -webkit-box-flex: 0;
      flex: none;
}

@media (min-width: 48rem) {
  .u-full\@md {
    width: 100% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-1of2\@md {
    width: 50% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-1of3\@md {
    width: 33.3333% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-1of4\@md {
    width: 25% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-2of3\@md {
    width: 66.6667% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-3of4\@md {
    width: 75% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  /* 100/5 system */
  .u-1of5\@md {
    width: 20% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-2of5\@md {
    width: 40% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-3of5\@md {
    width: 60% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-4of5\@md {
    width: 80% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  /* 100/10 system */
  .u-1of10\@md {
    width: 10% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-2of10\@md {
    width: 20% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-3of10\@md {
    width: 30% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-4of10\@md {
    width: 40% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-5of10\@md {
    width: 50% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-6of10\@md {
    width: 60% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-7of10\@md {
    width: 70% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-8of10\@md {
    width: 80% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-9of10\@md {
    width: 10% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }
}
@media (min-width: 64rem) {
  .u-full\@lg {
    width: 100% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-1of2\@lg {
    width: 50% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-1of3\@lg {
    width: 33.3333% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-1of4\@lg {
    width: 25% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-2of3\@lg {
    width: 66.6667% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-3of4\@lg {
    width: 75% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  /* 100/5 system */
  .u-1of5\@lg {
    width: 20% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-2of5\@lg {
    width: 40% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-3of5\@lg {
    width: 60% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-4of5\@lg {
    width: 80% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  /* 100/10 system */
  .u-1of10\@lg {
    width: 10% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-2of10\@lg {
    width: 20% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-3of10\@lg {
    width: 30% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-4of10\@lg {
    width: 40% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-5of10\@lg {
    width: 50% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-6of10\@lg {
    width: 60% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-7of10\@lg {
    width: 70% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-8of10\@lg {
    width: 80% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }

  .u-9of10\@lg {
    width: 10% !important;
    -ms-flex: none !important;
        -webkit-box-flex: 0 !important;
        flex: none !important;
  }
}
.flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

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

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

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

.flex-row {
  -ms-flex-direction: row;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      flex-direction: row;
}

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

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

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

.align-self-strech {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

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

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

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

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

@media (min-width: 48rem) {
  .justify-content-center\@md {
    -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
  }

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

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

  .align-self-strech\@md {
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }

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

  .align-items-center\@md {
    -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
  }

  .align-items-end\@md {
    -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
  }
}
@media (min-width: 64rem) {
  .justify-content-center\@lg {
    -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
  }

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

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

  .align-self-strech\@lg {
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }

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

  .align-items-center\@lg {
    -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
  }

  .align-items-end\@lg {
    -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
  }
}
@media (min-width: ) {
  .flex-wrap\@xs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

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

  .flex-row\@xs {
    -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
  }
}
@media (min-width: 24rem) {
  .flex\@sm {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }

  .inline-flex\@sm {
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
  }

  .flex-wrap\@sm {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

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

  .flex-row\@sm {
    -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
  }
}
@media (min-width: 48rem) {
  .flex\@md {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }

  .inline-flex\@md {
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
  }

  .flex-wrap\@md {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

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

  .flex-row\@md {
    -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
  }
}
@media (min-width: 64rem) {
  .flex\@lg {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }

  .inline-flex\@lg {
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
  }

  .flex-wrap\@lg {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

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

  .flex-row\@lg {
    -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
  }
}
.order-0 {
  -ms-flex-order: 0;
      -webkit-box-ordinal-group: 1;
      order: 0;
}

.order-1 {
  -ms-flex-order: 1;
      -webkit-box-ordinal-group: 2;
      order: 1;
}

@media (min-width: 48rem) {
  .order-0\@md {
    -ms-flex-order: 0;
        -webkit-box-ordinal-group: 1;
        order: 0;
  }

  .order-1\@md {
    -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
  }
}
@media (min-width: 64rem) {
  .order-0\@lg {
    -ms-flex-order: 0;
        -webkit-box-ordinal-group: 1;
        order: 0;
  }

  .order-1\@lg {
    -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
  }
}
.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

@media (min-width: 48rem) {
  .block\@md {
    display: block;
  }

  .inline-block\@md {
    display: inline-block;
  }
}
@media (min-width: 64rem) {
  .block\@lg {
    display: block;
  }

  .inline-block\@lg {
    display: inline-block;
  }
}
.padding-top-sm {
  padding-top: 0.75rem;
}

.padding-top-md {
  padding-top: 1.25rem;
}

.padding-top-lg {
  padding-top: 2rem;
}

.padding-top-xl {
  padding-top: 3.25rem;
}

.padding-top-xxl {
  padding-top: 5.25rem;
}

.padding-top-xxxl {
  padding-top: 8.5rem;
}

@media (min-width: 48rem) {
  .padding-top-sm\@md {
    padding-top: 0.75rem;
  }

  .padding-top-md\@md {
    padding-top: 1.25rem;
  }

  .padding-top-lg\@md {
    padding-top: 2rem;
  }

  .padding-top-xl\@md {
    padding-top: 3.25rem;
  }

  .padding-top-xxl\@md {
    padding-top: 5.25rem;
  }
}
.padding-bottom-none {
  padding-bottom: 0;
}

.padding-bottom-sm {
  padding-bottom: 0.75rem;
}

.padding-bottom-md {
  padding-bottom: 1.25rem;
}

.padding-bottom-lg {
  padding-bottom: 2rem;
}

.padding-bottom-xl {
  padding-bottom: 3.25rem;
}

.padding-bottom-xxl {
  padding-bottom: 5.25rem;
}

.padding-bottom-xxxl {
  padding-bottom: 8.5rem;
}

@media (min-width: 48rem) {
  .padding-bottom-none\@md {
    padding-bottom: 0;
  }

  .padding-bottom-sm\@md {
    padding-bottom: 0.75rem;
  }

  .padding-bottom-md\@md {
    padding-bottom: 1.25rem;
  }

  .padding-bottom-lg\@md {
    padding-bottom: 2rem;
  }

  .padding-bottom-xl\@md {
    padding-bottom: 3.25rem;
  }

  .padding-bottom-xxl\@md {
    padding-bottom: 5.25rem;
  }
}
.padding-y-xxxxs {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.padding-y-xxxs {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.padding-y-xxs {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.padding-y-xs {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.padding-y-sm {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.padding-y-md {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.padding-y-lg {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.padding-y-xl {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

.padding-y-xxl {
  padding-top: 5.25rem;
  padding-bottom: 5.25rem;
}

.padding-y-xxxl {
  padding-top: 8.5rem;
  padding-bottom: 8.5rem;
}

.padding-y-xxxxl {
  padding-top: 13.75rem;
  padding-bottom: 13.75rem;
}

@media (min-width: 48rem) {
  .padding-y-xxxxs\@md {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .padding-y-xxxs\@md {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .padding-y-xxs\@md {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .padding-y-xs\@md {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .padding-y-sm\@md {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .padding-y-md\@md {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .padding-y-lg\@md {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .padding-y-xl\@md {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .padding-y-xxl\@md {
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }

  .padding-y-xxxl\@md {
    padding-top: 8.5rem;
    padding-bottom: 8.5rem;
  }

  .padding-y-xxxxl\@md {
    padding-top: 13.75rem;
    padding-bottom: 13.75rem;
  }

  .padding-y-none\@md {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 64rem) {
  .padding-y-xxxxs\@lg {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }

  .padding-y-xxxs\@lg {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .padding-y-xxs\@lg {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .padding-y-xs\@lg {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .padding-y-sm\@lg {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .padding-y-md\@lg {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .padding-y-lg\@lg {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .padding-y-xl\@lg {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .padding-y-xxl\@lg {
    padding-top: 5.25rem;
    padding-bottom: 5.25rem;
  }

  .padding-y-xxxl\@lg {
    padding-top: 8.5rem;
    padding-bottom: 8.5rem;
  }

  .padding-y-xxxxl\@lg {
    padding-top: 13.75rem;
    padding-bottom: 13.75rem;
  }

  .padding-y-none\@lg {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.padding-x-xxxs {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.padding-x-xxs {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.padding-x-xs {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.padding-x-sm {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.padding-x-md {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.padding-x-lg {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 48rem) {
  .padding-x-none\@md {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-x-lg\@md {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .padding-x-xl\@md {
    padding-left: 3.25rem;
    padding-right: 3.25rem;
  }
}
@media (min-width: 64rem) {
  .padding-x-none\@lg {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 80rem) {
  .padding-x-none\@xl {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 90rem) {
  .padding-x-none\@xxl {
    padding-left: 0;
    padding-right: 0;
  }
}
.padding-right-none {
  padding-right: 0;
}

.padding-right-xxxs {
  padding-right: 0.25rem;
}

.padding-right-xxs {
  padding-right: 0.375rem;
}

.padding-right-xs {
  padding-right: 0.5rem;
}

.padding-right-sm {
  padding-right: 0.75rem;
}

.padding-right-md {
  padding-right: 1.25rem;
}

.padding-right-lg {
  padding-right: 2rem;
}

.padding-right-xl {
  padding-right: 3.25rem;
}

@media (min-width: 48rem) {
  .padding-right-none\@md {
    padding-right: 0;
  }

  .padding-right-xxxs\@md {
    padding-right: 0.25rem;
  }

  .padding-right-xxs\@md {
    padding-right: 0.375rem;
  }

  .padding-right-xs\@md {
    padding-right: 0.5rem;
  }

  .padding-right-sm\@md {
    padding-right: 0.75rem;
  }

  .padding-right-md\@md {
    padding-right: 1.25rem;
  }

  .padding-right-lg\@md {
    padding-right: 2rem;
  }

  .padding-right-xl\@md {
    padding-right: 3.25rem;
  }
}
.padding-left-none {
  padding-left: 0;
}

.padding-left-xxxs {
  padding-left: 0.25rem;
}

.padding-left-xxs {
  padding-left: 0.375rem;
}

.padding-left-xs {
  padding-left: 0.5rem;
}

.padding-left-sm {
  padding-left: 0.75rem;
}

.padding-left-md {
  padding-left: 1.25rem;
}

.padding-left-lg {
  padding-left: 2rem;
}

.padding-left-xl {
  padding-left: 3.25rem;
}

.padding-left-xxl {
  padding-left: 5.25rem;
}

@media (min-width: 48rem) {
  .padding-left-none\@md {
    padding-left: 0;
  }

  .padding-left-xxxs\@md {
    padding-left: 0.25rem;
  }

  .padding-left-xxs\@md {
    padding-left: 0.375rem;
  }

  .padding-left-xs\@md {
    padding-left: 0.5rem;
  }

  .padding-left-sm\@md {
    padding-left: 0.75rem;
  }

  .padding-left-md\@md {
    padding-left: 1.25rem;
  }

  .padding-left-lg\@md {
    padding-left: 2rem;
  }

  .padding-left-xl\@md {
    padding-left: 3.25rem;
  }

  .padding-left-xxl\@md {
    padding-left: 5.25rem;
  }
}
.padding-sm {
  padding: 0.75rem;
}

.padding-md {
  padding: 1.25rem;
}

.padding-lg {
  padding: 2rem;
}

.padding-xl {
  padding: 3.25rem;
}

.padding-xxl {
  padding: 5.25rem;
}

.padding-xxxl {
  padding: 8.5rem;
}

@media (min-width: 48rem) {
  .padding-sm\@md {
    padding: 0.75rem;
  }

  .padding-md\@md {
    padding: 1.25rem;
  }

  .padding-lg\@md {
    padding: 2rem;
  }

  .padding-xl\@md {
    padding: 3.25rem;
  }

  .padding-xxl\@md {
    padding: 5.25rem;
  }

  .padding-xxxl\@md {
    padding: 8.5rem;
  }
}
@media (min-width: 64rem) {
  .padding-sm\@lg {
    padding: 0.75rem;
  }

  .padding-md\@lg {
    padding: 1.25rem;
  }

  .padding-lg\@lg {
    padding: 2rem;
  }

  .padding-xl\@lg {
    padding: 3.25rem;
  }

  .padding-xxl\@lg {
    padding: 5.25rem;
  }

  .padding-xxxl\@lg {
    padding: 8.5rem;
  }
}
@media (min-width: 80rem) {
  .padding-sm\@xl {
    padding: 0.75rem;
  }

  .padding-md\@xl {
    padding: 1.25rem;
  }

  .padding-lg\@xl {
    padding: 2rem;
  }

  .padding-xl\@xl {
    padding: 3.25rem;
  }

  .padding-xxl\@xl {
    padding: 5.25rem;
  }

  .padding-xxxl\@xl {
    padding: 8.5rem;
  }
}
.padding-none {
  padding: 0;
}

@media (min-width: 48rem) {
  .padding-none\@md {
    padding: 0;
  }
}
@media (min-width: 64rem) {
  .padding-none\@lg {
    padding: 0;
  }
}
.margin-top-xs {
  margin-top: 0.5rem;
}

.margin-top-sm {
  margin-top: 0.75rem;
}

.margin-top-md {
  margin-top: 1.25rem;
}

.margin-top-lg {
  margin-top: 2rem;
}

.margin-top-xl {
  margin-top: 3.25rem;
}

.margin-top-xxl {
  margin-top: 5.25rem;
}

@media (min-width: 48rem) {
  .margin-top-sm\@md {
    margin-top: 0.75rem;
  }

  .margin-top-md\@md {
    margin-top: 1.25rem;
  }

  .margin-top-lg\@md {
    margin-top: 2rem;
  }

  .margin-top-xl\@md {
    margin-top: 3.25rem;
  }

  .margin-top-xxl\@md {
    margin-top: 5.25rem;
  }

  .margin-top-xxxl\@md {
    margin-top: 8.5rem;
  }

  .margin-top-none\@md {
    margin-top: 0;
  }
}
@media (min-width: 64rem) {
  .margin-bottom-none\@lg {
    margin-bottom: 0;
  }
}
.margin-bottom-xxs {
  margin-bottom: 0.375rem;
}

.margin-bottom-xs {
  margin-bottom: 0.5rem;
}

.margin-bottom-sm {
  margin-bottom: 0.75rem;
}

.margin-bottom-md {
  margin-bottom: 1.25rem;
}

.margin-bottom-lg {
  margin-bottom: 2rem;
}

.margin-bottom-xl {
  margin-bottom: 3.25rem;
}

.margin-bottom-xxl {
  margin-bottom: 5.25rem;
}

.margin-bottom-none {
  margin-bottom: 0;
}

@media (min-width: 48rem) {
  .margin-bottom-sm\@md {
    margin-bottom: 0.75rem;
  }

  .margin-bottom-md\@md {
    margin-bottom: 1.25rem;
  }

  .margin-bottom-lg\@md {
    margin-bottom: 2rem;
  }

  .margin-bottom-xl\@md {
    margin-bottom: 3.25rem;
  }

  .margin-bottom-xxl\@md {
    margin-bottom: 5.25rem;
  }

  .margin-bottom-none\@md {
    margin-bottom: 0;
  }
}
@media (min-width: 64rem) {
  .margin-bottom-sm\@lg {
    margin-bottom: 0.75rem;
  }

  .margin-bottom-md\@lg {
    margin-bottom: 1.25rem;
  }

  .margin-bottom-lg\@lg {
    margin-bottom: 2rem;
  }

  .margin-bottom-xl\@lg {
    margin-bottom: 3.25rem;
  }

  .margin-bottom-xxl\@lg {
    margin-bottom: 5.25rem;
  }

  .margin-bottom-none\@lg {
    margin-bottom: 0;
  }
}
.margin-x-xxxs {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.margin-x-xxs {
  margin-left: 0.375rem;
  margin-right: 0.375rem;
}

.margin-x-xs {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.margin-x-sm {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.margin-x-md {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.margin-x-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 48rem) {
  .margin-x-xxxs\@md {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .margin-x-xxs\@md {
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .margin-x-xs\@md {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .margin-x-sm\@md {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .margin-x-md\@md {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .margin-x-auto\@md {
    margin-left: auto;
    margin-right: auto;
  }
}
.margin-y-md {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.margin-y-lg {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.margin-left-xxs {
  margin-left: 0.375rem;
}

.margin-left-xs {
  margin-left: 0.5rem;
}

.margin-left-sm {
  margin-left: 0.75rem;
}

.margin-left-md {
  margin-left: 1.25rem;
}

.margin-left-lg {
  margin-left: 2rem;
}

@media (min-width: 48rem) {
  .margin-left-none\@md {
    margin-left: 0;
  }

  .margin-left-xxxs\@md {
    margin-left: 0.25rem;
  }

  .margin-left-xxs\@md {
    margin-left: 0.375rem;
  }

  .margin-left-xs\@md {
    margin-left: 0.5rem;
  }

  .margin-left-sm\@md {
    margin-left: 0.75rem;
  }

  .margin-left-md\@md {
    margin-left: 1.25rem;
  }

  .margin-left-lg\@md {
    margin-left: 2rem;
  }
}
.margin-right-none {
  margin-right: 0;
}

.margin-right-xxxs {
  margin-right: 0.25rem;
}

.margin-right-xxs {
  margin-right: 0.375rem;
}

.margin-right-xs {
  margin-right: 0.5rem;
}

.margin-right-sm {
  margin-right: 0.75rem;
}

.margin-right-md {
  margin-right: 1.25rem;
}

.margin-right-lg {
  margin-right: 2rem;
}

@media (min-width: 48rem) {
  .margin-right-none\@md {
    margin-right: 0;
  }

  .margin-right-xxxs\@md {
    margin-right: 0.25rem;
  }

  .margin-right-xxs\@md {
    margin-right: 0.375rem;
  }

  .margin-right-xs\@md {
    margin-right: 0.5rem;
  }

  .margin-right-sm\@md {
    margin-right: 0.75rem;
  }

  .margin-right-md\@md {
    margin-right: 1.25rem;
  }

  .margin-right-lg\@md {
    margin-right: 2rem;
  }
}
.text-center {
  text-align: center;
}

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

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

@media (min-width: 48rem) {
  .text-left\@md {
    text-align: left;
  }

  .text-right\@md {
    text-align: right;
  }
}
@media (min-width: 64rem) {
  .text-left\@lg {
    text-align: left;
  }

  .text-right\@lg {
    text-align: right;
  }
}
.caps {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.no-text-decoration {
  text-decoration: none;
}

.line-height-1 {
  line-height: 1;
}

.line-height-125 {
  line-height: 1.25;
}

.line-height-15 {
  line-height: 1.5;
}

.line-height-175 {
  line-height: 1.75;
}

.line-height-2 {
  line-height: 2;
}

@media (min-width: 48rem) {
  .line-height-1\@md {
    line-height: 1;
  }

  .line-height-125\@md {
    line-height: 1.25;
  }

  .line-height-15\@md {
    line-height: 1.5;
  }

  .line-height-175\@md {
    line-height: 1.75;
  }

  .line-height-2\@md {
    line-height: 2;
  }
}
.nowrap {
  white-space: nowrap;
}

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

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.static {
  position: static;
}

.relative {
  position: relative;
}

@media (min-width: 48rem) {
  .absolute\@md {
    position: absolute;
  }

  .fixed\@md {
    position: fixed;
  }

  .static\@md {
    position: static;
  }

  .relative\@md {
    position: relative;
  }
}
.fixed-bottom,
.fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-top {
  top: 0;
}

.fixed-bottom {
  bottom: 0;
}

.position-bottom {
  bottom: 0;
}

.position-left {
  left: 0;
}

.position-right {
  right: 0;
}

.position-top {
  top: 0;
}

.fit-y {
  height: 100%;
}

.fit-x {
  width: 100%;
}

.fit-xy {
  height: 100%;
  width: 100%;
}

.fit-x-auto {
  width: auto;
}

@media (min-width: 48rem) {
  .fit-y\@md {
    height: 100%;
  }

  .fit-x\@md {
    width: 100%;
  }

  .fit-x-auto\@md {
    width: auto;
  }
}
.visually-hidden {
  /* Remove the item from normal flow */
  position: absolute;
  /* Workaround for falsely pronounced, smushed text */
  white-space: nowrap;
  /* Set it to the smallest possible size (some screen readers ignore elements with zero height and width) */
  width: 1px;
  height: 1px;
  /* Hide overflowing content after resizing */
  overflow: hidden;
  /* Reset any property that may change the element's size */
  border: 0;
  padding: 0;
  /* Clipping defines what part of an element should be displayed */
  /* Deprecated clip property for older browsers */
  clip: rect(0 0 0 0);
  /* clip-path for newer browsers. inset(50%) defines an inset rectangle that makes the content disappear */
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}

@media (min-width: 48rem) {
  .visually-visible\@md {
    position: static;
    white-space: normal;
    width: auto;
    height: auto;
    overflow: auto;
    clip: auto;
    -webkit-clip-path: none;
            clip-path: none;
    margin: auto;
  }
}
.o-hidden {
  overflow: hidden;
}

.aspect-ratio {
  display: block;
  height: 0;
  overflow: hidden;
  position: relative;
}

.aspect-ratio--351 {
  padding-bottom: 28.57%;
}

/* 2.40 : 1 */
.aspect-ratio--240 {
  padding-bottom: 41.66%;
}

/* 16:9 */
.aspect-ratio--169 {
  padding-bottom: 56.26%;
}

/* 4:3 */
.aspect-ratio--43 {
  padding-bottom: 75%;
}

/* 2.13:1 */
.aspect-ratio--213 {
  padding-bottom: 46.95%;
}

@media (min-width: 48rem) {
  .aspect-ratio--351\@md {
    padding-bottom: 28.57%;
  }

  .aspect-ratio--240\@md {
    padding-bottom: 41.66%;
  }
}
.aspect-ratio > img,
.aspect-ratio > iframe,
.aspect-ratio > object {
  left: 0;
  position: absolute;
  top: 0;
  width: 100% !important;
}
.aspect-ratio > iframe,
.aspect-ratio > object {
  height: 100% !important;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-3 {
  z-index: 3;
}

.z-4 {
  z-index: 4;
}

.z-5 {
  z-index: 5;
}

.z-6 {
  z-index: 6;
}

.z-7 {
  z-index: 7;
}

.z-8 {
  z-index: 8;
}

.z-9 {
  z-index: 9;
}

.z-10 {
  z-index: 10;
}

hr {
  height: 2px;
}

.border {
  border-style: solid;
}

.border-right {
  border-right-style: solid;
}

.border-bottom {
  border-bottom-style: solid;
}

.border-left {
  border-left-style: solid;
}

.border-top {
  border-top-style: solid;
}

@media (min-width: 48rem) {
  .border\@md {
    border-style: solid;
  }

  .border-right\@md {
    border-right-style: solid;
  }

  .border-bottom\@md {
    border-bottom-style: solid;
  }

  .border-left\@md {
    border-left-style: solid;
  }

  .border-top\@md {
    border-top-style: solid;
  }
}
/* border width */
.border-width-xs {
  border-width: 1px;
}

.border-width-sm {
  border-width: 2px;
}

.border-width-md {
  border-width: 3px;
}

.border-width-lg {
  border-width: 4px;
}

@media (min-width: 48rem) {
  .border-width-xs\@md {
    border-width: 1px;
  }

  .border-width-sm\@md {
    border-width: 2px;
  }

  .border-width-md\@md {
    border-width: 3px;
  }

  .border-width-lg\@md {
    border-width: 4px;
  }
}
.is-hidden {
  display: none;
}

@media (min-width: 48rem) {
  .is-hidden\@md {
    display: none;
  }
}
@media (min-width: 64rem) {
  .is-hidden\@lg {
    display: none;
  }
}
.background-size-cover {
  background-size: cover;
}

.background-no-repeat {
  background-repeat: no-repeat;
}

.background-pos-center {
  background-position: center;
}

.background-pos-top-center {
  background-position: top center;
}

.background-pos-bottom-center {
  background-position: bottom center;
}

.bradius100 {
  border-radius: 100%;
}

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
}

.form-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
}

.form-label {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.form-control {
  border-radius: 2px;
  padding: 0.75rem;
}
.form-control::-webkit-input-placeholder {
  color: #8A8A89;
  text-transform: uppercase;
}
.form-control::-moz-placeholder {
  opacity: 1;
  color: #8A8A89;
}
.form-control:-ms-input-placeholder {
  color: #8A8A89;
}

.radio-item,
.checkbox-item {
  -ms-flex-align: center;
      -webkit-box-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  cursor: pointer;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.radio-input,
.checkbox-input,
input[type=checkbox] {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 0.375rem;
}

.radio-input {
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50%;
  border: solid 2px #999;
  height: 16px;
  -webkit-transition: 0.2s all linear;
  -o-transition: 0.2s all linear;
  transition: 0.2s all linear;
  width: 16px;
}

.radio-input:checked {
  border: solid 6px #000;
}

.radio-group > legend {
  margin-bottom: 0.75rem;
}

.checkbox-item {
  -ms-flex-align: start;
      -webkit-box-align: start;
      align-items: flex-start;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.btn {
  -ms-flex-align: center;
      -webkit-box-align: center;
      align-items: center;
  border-style: solid;
  border-width: 0.05rem;
  border-color: transparent;
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1;
  min-width: 2.6rem;
  -ms-flex-pack: center;
      -webkit-box-pack: center;
      justify-content: center;
  position: relative;
  text-decoration: none;
  -webkit-transition: background-color 100ms ease 0s, color 100ms ease 0s, border-color 100ms ease 0s;
  -o-transition: background-color 100ms ease 0s, color 100ms ease 0s, border-color 100ms ease 0s;
  transition: background-color 100ms ease 0s, color 100ms ease 0s, border-color 100ms ease 0s;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
[type=button]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

.btn--sm {
  font-size: 0.85rem;
}

.btn--md {
  font-size: 1.225rem;
}

.btn--lg {
  font-size: 1.45rem;
}

@media (min-width: 48rem) {
  .btn--sm\@md {
    font-size: 0.85rem;
  }

  .btn--md\@md {
    font-size: 1.225rem;
  }

  .btn--lg\@md {
    font-size: 1.45rem;
  }
}
.btn--with-icon {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.btn__icon {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  font-size: 0.6em;
  margin-left: 0.75rem;
  margin-bottom: -3px;
  -webkit-transition: -webkit-transform 240ms ease 0s;
  transition: -webkit-transform 240ms ease 0s;
  -o-transition: transform 240ms ease 0s;
  transition: transform 240ms ease 0s;
  transition: transform 240ms ease 0s, -webkit-transform 240ms ease 0s;
}
.btn:hover .btn__icon {
  -webkit-transform: translate3d(4px, 0, 0);
          transform: translate3d(4px, 0, 0);
}

body {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
  -ms-flex-pack: justify;
      -webkit-box-pack: justify;
      justify-content: space-between;
}

.container {
  max-width: 70rem;
}

.color-white {
  color: #fff;
}

.color-dove-gray-hover:hover,
.color-dove-gray {
  color: #6f6f6f;
}

.color-gray {
  color: #898989;
}

.color-mandalay {
  color: #B38119;
}

.color-golden-grass,
.color-golden-grass-hover:hover {
  color: #E0A11F;
}

.color-mine-shaft {
  color: #222222;
}

.color-tundora {
  color: #3c3c3c;
}

.color-emperor {
  color: #555555;
}

.color-alto {
  color: #D5D5D5;
}

.color-gallery {
  color: #EFEFEF;
}

.bg-color-black {
  background-color: #000;
}

.bg-color-white {
  background-color: #fff;
}

.bg-color-gallery {
  background-color: #EFEFEF;
}

.bg-color-mandalay {
  background-color: #B38119;
}

.bg-color-golden-grass {
  background-color: #E0A11F;
}

.bg-color-dove-gray {
  background-color: #6f6f6f;
}

.bg-color-gray {
  background-color: #898989;
}

.bg-color-silver-chalice {
  background-color: #A2A2A2;
}

.bg-color-silver {
  background-color: #BCBCBC;
}

.bg-color-alto {
  background-color: #D5D5D5;
}

.bg-color-gallery {
  background-color: #EFEFEF;
}

.bg-white-translucent-blur {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
}

.bg-dotted {
  background-image: -o-radial-gradient(circle, #dedede, #dedede 1px, #f9f9f9 0, #f9f9f9);
  background-image: radial-gradient(circle, #dedede, #dedede 1px, #f9f9f9 0, #f9f9f9);
  background-size: 30px 30px;
}

.link-dark {
  color: #222222;
}

.border-color-gallery {
  border-color: #EFEFEF;
}

body {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  font-family: "Libre Baskerville", serif;
  line-height: 1.62;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
  color: #000;
  font-weight: 700;
  font-family: "Libre Franklin", sans-serif;
  line-height: 1.15;
  letter-spacing: -0.025rem;
  margin-bottom: 1.25rem;
}

h1, .h1 {
  font-size: 2.1rem;
}

h2, .h2 {
  font-size: 1.75rem;
}

h3, .h3 {
  font-size: 1.45rem;
  letter-spacing: -0.05rem;
}

h4, .h4 {
  font-size: 16px;
  letter-spacing: 0;
}

@media (min-width: 48rem) {
  h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
    margin-bottom: 2rem;
  }

  h1, .h1 {
    font-size: 2.55rem;
  }

  h2, .h2 {
    font-size: 2.1rem;
  }

  h3, .h3 {
    font-size: 1.75rem;
  }

  h4, .h4 {
    font-size: 1.225rem;
  }
}
a,
.link {
  color: #B38119;
  text-decoration: none;
}
a:hover,
.link:hover {
  color: #E0A11F;
}

p {
  color: #000;
}

.font-xs {
  font-size: 0.7rem;
}

.font-sm {
  font-size: 0.85rem;
}

.font-normal {
  font-size: 16px;
}

.font-md {
  font-size: 1.225rem;
}

.font-lg {
  font-size: 1.45rem;
}

.font-xl {
  font-size: 1.75rem;
}

.font-xxl {
  font-size: 2.1rem;
}

.font-xxxl {
  font-size: 2.55rem;
}

.font-xxxxl {
  font-size: 3.05rem;
}

@media (min-width: 48rem) {
  .font-xs\@md {
    font-size: 0.7rem;
  }

  .font-sm\@md {
    font-size: 0.85rem;
  }

  .font-normal\@md {
    font-size: 16px;
  }

  .font-md\@md {
    font-size: 1.225rem;
  }

  .font-lg\@md {
    font-size: 1.45rem;
  }

  .font-xl\@md {
    font-size: 1.75rem;
  }

  .font-xxl\@md {
    font-size: 2.1rem;
  }

  .font-xxxl\@md {
    font-size: 2.55rem;
  }

  .font-xxxxl\@md {
    font-size: 3.05rem;
  }
}
.fot-primaryn {
  font-family: "Libre Baskerville", serif;
}

.font-secondary {
  font-family: "Libre Franklin", sans-serif;
}

.font-tertiary {
  font-family: "Lato", sans-serif;
}

.letter-spacing-xs {
  letter-spacing: 0.01rem;
}

.letter-spacing-sm {
  letter-spacing: 0.05rem;
}

.letter-spacing-md {
  letter-spacing: 0.1rem;
}

.light {
  font-weight: 300;
}

.normal {
  font-weight: 400;
}

.bolder {
  font-weight: 500;
}

.bold {
  font-weight: 600;
}

.bold700 {
  font-weight: 700;
}

@media (min-width: 48rem) {
  .light\@dm {
    font-weight: 300;
  }

  .normal\@md {
    font-weight: 400;
  }

  .bolder\@md {
    font-weight: 500;
  }

  .bold\@md {
    font-weight: 600;
  }

  .bold700\@md {
    font-weight: 700;
  }
}
.form-label {
  font-size: 16px;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 600;
}

input[type=text],
input[type=email],
textarea,
.form-control {
  background-color: #fff;
  background-image: none;
  border-radius: 0.25rem;
  border: 1px solid #BCBCBC;
  color: #222222;
  display: block;
  font-family: "Lato", sans-serif;
  padding: 0.75rem 1.25rem;
  text-transform: uppercase;
  width: 100%;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, .form-control::-webkit-input-placeholder {
  color: #A2A2A2;
}
input[type=text]::placeholder, input[type=text]::-webkit-input-placeholder, input[type=text]::-moz-placeholder, input[type=text]:-ms-input-placeholder,
input[type=email]::placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=email]::-moz-placeholder,
input[type=email]:-ms-input-placeholder,
textarea::placeholder,
textarea::-webkit-input-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder,
.form-control::placeholder,
.form-control::-webkit-input-placeholder,
.form-control::-moz-placeholder,
.form-control:-ms-input-placeholder {
  color: #A2A2A2;
}
input[type=text]:hover,
input[type=email]:hover,
textarea:hover,
.form-control:hover {
  border-color: #A2A2A2;
}

.required,
.form-error-msg,
.form-control-error {
  color: #E02447;
}

.btn--primary,
.btn--inverse,
.btn--outline {
  border-style: solid;
  border-width: 1px;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 16px;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01rem;
  padding: 0.75rem 1.25rem;
  position: relative;
}
.btn--primary.btn--disabled, .btn--primary:disabled,
.btn--inverse.btn--disabled,
.btn--inverse:disabled,
.btn--outline.btn--disabled,
.btn--outline:disabled {
  cursor: not-allowed;
}

.btn--primary {
  background-color: #222222;
  border-color: #222222;
  color: #fff;
}
.btn--primary:hover {
  background-color: #E6B44C;
  border-color: #E6B44C;
  color: #fff;
}
.btn--primary.btn--disabled, .btn--primary:disabled {
  background: #A2A2A2;
  border-color: #A2A2A2;
  color: #fff;
}

.btn--inverse {
  background-color: #B38119;
  border-color: #B38119;
  color: #fff;
}
.btn--inverse:hover {
  background-color: #E6B44C;
  border-color: #E6B44C;
  color: #fff;
}
.btn--inverse.btn--disabled, .btn--inverse:disabled {
  background: #ECC779;
  border-color: #ECC779;
  color: #fff;
}

.btn--outline {
  border-color: #222222;
  color: #222222;
}
.btn--outline:hover {
  background-color: transparent;
  border-color: #E6B44C;
  color: #E6B44C;
}
.btn--outline.btn--disabled, .btn--outline:disabled {
  background: transparent;
  border-color: #A2A2A2;
  color: #A2A2A2;
}

.footer-logo__image {
  max-width: 200px;
}

.site-footer-nav ul {
  -ms-flex-align: center;
      -webkit-box-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
}
.site-footer-nav .menu-item > a {
  color: #D5D5D5;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  line-height: 1;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.site-footer-nav .menu-item > a:hover {
  color: #EFEFEF;
}
.site-footer-nav .menu-item.current-menu-item a {
  color: #EFEFEF;
}
.site-footer-nav__item > a {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.1rem;
  line-height: 1;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
}

@media (min-width: 48rem) {
  .site-footer-nav ul {
    -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
  }
  .site-footer-nav .menu-item > a {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 1.25rem;
  }
}
.site-footer-social-links ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: row;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      flex-direction: row;
}
.site-footer-social-links .menu-item > a {
  color: #D5D5D5;
  display: inline-block;
  font-size: 1.45rem;
  line-height: 1;
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.site-footer-social-links .menu-item > a:hover {
  color: #EFEFEF;
}
@media (min-width: 48rem) {
  .site-footer-social-links .menu-item > a {
    margin-left: 0;
    margin-right: 1.25rem;
  }
}

.snf-category {
  background: #E0A11F;
  border-style: solid;
  border-width: 1px;
  border-color: #E0A11F;
  border-radius: 0.25rem;
  color: #fff;
  display: inline-block;
  font-family: "Libre Baskerville", serif;
  font-weight: 300;
  font-size: inherit;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.025rem;
  overflow: hidden;
  padding: 0.25rem 0.35rem;
  -webkit-transition: background-color 200ms ease 0s, color 200ms ease 0s, border-color 200ms ease 0s;
  -o-transition: background-color 200ms ease 0s, color 200ms ease 0s, border-color 200ms ease 0s;
  transition: background-color 200ms ease 0s, color 200ms ease 0s, border-color 200ms ease 0s;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}
.snf-category:hover {
  background-color: #E0A11F;
}

.snf-category:hover {
  background-color: #E6B44C;
  border-color: #E6B44C;
  color: #fff;
}

.snf-category--inverse {
  background-color: transparent;
  color: #E0A11F;
}
.snf-category--inverse:hover {
  background-color: transparent;
  color: #E6B44C;
}

.snf-list-post {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
  height: 100%;
}

.snf-list-post__content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
  -ms-flex: 1 1;
      -webkit-box-flex: 1;
      flex: 1 1;
  -ms-flex-pack: justify;
      -webkit-box-pack: justify;
      justify-content: space-between;
}

.snf-list-post__meta > a {
  font-size: 0.8rem;
}

.snf-list-post .snf-list-post__date {
  color: #BCBCBC;
}
.snf-list-post .snf-list-post__category {
  color: #898989;
}
.snf-list-post .snf-list-post__title {
  color: #222222;
}

.snf-list-post:hover .snf-list-post__thumb {
  opacity: 0.9;
}
.snf-list-post:hover .snf-list-post__title {
  color: #E6B44C;
  text-decoration: underline;
}

.caption-divider {
  display: block;
  height: 2px;
  width: 55px;
}

.site-header {
  background-color: #fff;
  border-bottom: 1px solid #d9d8d8;
}
@media (min-width: 64rem) {
  .site-header {
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
            backdrop-filter: saturate(180%) blur(20px);
  }
}

.logged-in .site-header {
  top: 46px !important;
}
@media (min-width: 48rem) {
  .logged-in .site-header {
    top: 32px !important;
  }
}

.site-logo__image {
  display: block;
  max-width: none;
  width: 210px;
}

.primary-navigation {
  bottom: 0;
  overflow-y: auto;
  position: fixed;
  text-align: center;
  top: 51px;
  width: 100%;
  will-change: transform;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.5, 0, 0.1, 1);
  transition: -webkit-transform 0.1s cubic-bezier(0.5, 0, 0.1, 1);
  -o-transition: transform 0.1s cubic-bezier(0.5, 0, 0.1, 1);
  transition: transform 0.1s cubic-bezier(0.5, 0, 0.1, 1);
  transition: transform 0.1s cubic-bezier(0.5, 0, 0.1, 1), -webkit-transform 0.1s cubic-bezier(0.5, 0, 0.1, 1);
}
.primary-navigation.is-open {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media (min-width: 64rem) {
  .primary-navigation {
    background-color: transparent;
    overflow-y: visible;
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    width: auto;
  }
}
@media (min-width: 64rem) {
  .primary-navigation {
    margin-left: auto;
  }
}
.primary-navigation ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 64rem) {
  .primary-navigation ul {
    -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.primary-navigation ul li {
  display: inline-block;
}
.primary-navigation ul li a {
  color: #222222;
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1rem;
  line-height: 2.875rem;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media (min-width: 64rem) {
  .primary-navigation ul li a {
    font-size: 0.85rem;
    letter-spacing: 0.085rem;
    margin-left: 1.25rem;
  }
}
.primary-navigation ul li a:hover {
  color: #E0A11F;
}

.search-top-button {
  margin-left: auto;
}
@media (min-width: 64rem) {
  .search-top-button {
    margin-left: 0;
    margin-right: 1.25rem;
  }
}
@media (min-width: 80rem) {
  .search-top-button {
    display: none;
  }
}

.search-form {
  background-color: #fff;
  left: 0;
  opacity: 0;
  padding: 0.75rem;
  position: fixed;
  top: 51px;
  -webkit-transition: 100ms;
  -o-transition: 100ms;
  transition: 100ms;
  -webkit-transform: translateX(100px);
      -ms-transform: translateX(100px);
          transform: translateX(100px);
  visibility: hidden;
  width: 100%;
}
.search-form.is-open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  z-index: 2;
}
@media (min-width: 80rem) {
  .search-form {
    background-color: transparent;
    opacity: 1;
    padding: 0;
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    top: auto;
    visibility: visible;
    width: auto;
  }
}
.search-form__wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
      -webkit-box-align: center;
      align-items: center;
  background-color: #EFEFEF;
  border-radius: 0.25rem;
  padding: 0.25rem;
}
.search-form__wrap:focus {
  outline: -webkit-focus-ring-color auto 5px;
}
.search-form__input-wrap {
  -ms-flex: 1 1;
      -webkit-box-flex: 1;
      flex: 1 1;
}
.search-form__input-wrap .form-control {
  background: transparent;
  border: none;
  padding-top: 0;
  padding-bottom: 0;
  text-transform: none;
  -webkit-transition: width 100ms ease-out;
  -o-transition: width 100ms ease-out;
  transition: width 100ms ease-out;
}
.search-form__input-wrap .form-control:focus {
  outline: none;
}
.search-form__btn-wrap {
  text-align: center;
}
@media (min-width: 48rem) {
  .search-form__btn-wrap {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.search-form__btn-wrap .button-search {
  padding: 0.5rem;
}

.mobile-menu-toggle {
  background: transparent;
  border: 0;
  padding: 0;
  position: relative;
  height: 50px;
  width: 61px;
}

.burger {
  background-color: #000;
  display: block;
  height: 3px;
  opacity: 1;
  position: absolute;
  right: 18px;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition-duration: 0.2s;
       -o-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
       -o-transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
          transition-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  will-change: transform, opacity;
  width: 25px;
}

.burger-1 {
  top: 17px;
}

.burger-2 {
  top: 24px;
}

.burger-3 {
  top: 24px;
}

.burger-4 {
  top: 31px;
}

.mobile-menu-toggle:hover .burger {
  background-color: #E0A11F;
}

.is-open .burger-1,
.is-open .burger-4 {
  opacity: 0;
}

.is-open .burger-2 {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.is-open .burger-3 {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.snfm-hero-sticky-post {
  margin-bottom: 0.5rem;
  min-height: 280px;
}
.snfm-hero-sticky-post__image {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  z-index: 1;
}
.snfm-hero-sticky-post__meta {
  left: 0;
  position: absolute;
  padding: 0.75rem;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.snfm-hero-sticky-post:hover .snfm-hero-sticky-post__image {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

@media (min-width: 48rem) {
  .snfm-hero-sticky-post {
    float: right;
    margin-bottom: 0;
    width: 50%;
  }
  .snfm-hero-sticky-post:first-child {
    float: left;
    min-height: 560px;
  }
  .snfm-hero-sticky-post__meta {
    padding: 1.25rem 2rem;
  }
}
@media (min-width: 64rem) {
  .snfm-hero-sticky-post {
    min-height: 360px;
  }
  .snfm-hero-sticky-post:first-child {
    min-height: 720px;
  }
}
.hero__inner {
  min-height: 300px;
}
.hero__main-content h1, .hero__main-content h2, .hero__main-content h3, .hero__main-content h4, .hero__main-content p {
  color: #fff;
  margin-bottom: 0.75rem;
}
.hero__main-content *:last-child {
  margin-bottom: 0;
}
.hero__main-content h2, .hero__main-content h3, .hero__main-content h4, .hero__main-content p {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-size: 1.225rem;
  line-height: 1.42;
}
.hero__main-content a {
  color: #fff;
  text-decoration: underline;
}
.hero__main-content a:hover {
  color: #E0A11F;
}

.hero--regular .hero__content {
  display: none;
}
@media (min-width: 48rem) {
  .hero--regular .hero__content {
    display: block;
  }
}
.hero--regular .hero__inner {
  height: 50vh;
}
@media (min-width: 48rem) {
  .hero--regular .hero__inner {
    height: 70vh;
  }
}
.hero--regular .hero__overlay {
  background: -o-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.65) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(45%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.65)));
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.65) 100%);
  display: none;
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (min-width: 48rem) {
  .hero--regular .hero__overlay {
    display: block;
  }
}

.hero--inner .hero__inner {
  height: 66vh;
}

@media (min-width: 48rem) {
  .article-title {
    display: none;
  }
}

.article-title__credits h1 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}
.article-title__credits h2 {
  color: #3c3c3c;
  font-size: 1.225rem;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  line-height: 1.42;
  margin-bottom: 0;
}
.article-title__credits h3 {
  color: #3c3c3c;
  font-weight: 500;
  font-size: 1.225rem;
  line-height: 1.55;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.article-title__date {
  color: #222222;
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.article-title__date a {
  color: #898989;
}
.article-title__date a:hover {
  color: #3c3c3c;
}

.article-body img {
  height: auto;
  display: block;
}
.article-body h1, .article-body h2, .article-body h3, .article-body h4 {
  margin-top: 3.25rem;
  margin-bottom: 1.8rem;
}
.article-body h1, .article-body h2 {
  line-height: 1.32;
}
.article-body h3, .article-body h4 {
  line-height: 1.62;
}
.article-body p {
  color: #222222;
  line-height: 1.62;
  margin-top: 0;
  margin-bottom: 2rem;
}
.article-body ul,
.article-body ol {
  margin-bottom: 2rem;
}
.article-body ul li,
.article-body ol li {
  margin-bottom: 2rem;
}
.article-body ol {
  list-style: decimal outside none;
}
.article-body ul {
  list-style: disc outside none;
}

.article-tags {
  color: #222222;
  font-family: "Lato", sans-serif;
}
.article-tags a {
  color: #898989;
}
.article-tags a:hover {
  color: #3c3c3c;
}

.article-body .simplePullQuote {
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  float: none;
  padding: 0;
  text-indent: 0;
  width: auto;
}
.article-body blockquote,
.article-body .simplePullQuote {
  margin: 2rem;
  padding-top: 2rem;
  position: relative;
}
.article-body blockquote:before,
.article-body .simplePullQuote:before {
  content: "";
  background-color: #E0A11F;
  left: 0;
  height: 4px;
  position: absolute;
  top: 0;
  width: 100px;
}
.article-body blockquote p,
.article-body .simplePullQuote p {
  font-size: 1.2rem;
  font-weight: 600;
}
.article-body blockquote cite,
.article-body .simplePullQuote cite {
  color: #6f6f6f;
  display: block;
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 0.75rem;
}
.article-body blockquote cite:before,
.article-body .simplePullQuote cite:before {
  content: "— ";
}
.article-body blockquote.pull-left, .article-body blockquote.pull-right, .article-body blockquote.left, .article-body blockquote.right,
.article-body .simplePullQuote.pull-left,
.article-body .simplePullQuote.pull-right,
.article-body .simplePullQuote.left,
.article-body .simplePullQuote.right {
  float: none;
}
@media (min-width: 64rem) {
  .article-body blockquote.pull-left, .article-body blockquote.pull-right, .article-body blockquote.left, .article-body blockquote.right,
.article-body .simplePullQuote.pull-left,
.article-body .simplePullQuote.pull-right,
.article-body .simplePullQuote.left,
.article-body .simplePullQuote.right {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    max-width: 350px;
  }
}
@media (min-width: 64rem) {
  .article-body blockquote.pull-left, .article-body blockquote.left,
.article-body .simplePullQuote.pull-left,
.article-body .simplePullQuote.left {
    float: left;
    margin-left: -3.25rem;
    margin-right: 3.25rem;
  }
}
@media (min-width: 64rem) {
  .article-body blockquote.pull-right, .article-body blockquote.right,
.article-body .simplePullQuote.pull-right,
.article-body .simplePullQuote.right {
    float: right;
    margin-right: -3.25rem;
    margin-left: 3.25rem;
  }
}

.wp-caption {
  width: auto !important;
}

.aligncenter {
  margin: 0 auto;
}

figure.wp-caption {
  margin-bottom: 2rem;
}

.wp-caption-text {
  color: #898989;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.gallery {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      -webkit-box-pack: center;
      justify-content: center;
  max-width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.gallery img {
  display: block;
}
@media (min-width: 64rem) {
  .gallery {
    -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
    max-width: none;
  }
}
.gallery .gallery-item {
  margin-top: 2rem;
}
.gallery .gallery-item:first-child {
  margin-top: 0;
}
.gallery .gallery-item a {
  display: block;
}
@media (min-width: 64rem) {
  .gallery .gallery-item {
    -ms-flex: 1 1;
        -webkit-box-flex: 1;
        flex: 1 1;
    margin-top: 0;
    margin-left: 1.25rem;
  }
  .gallery .gallery-item:first-child {
    margin-left: 0;
  }
}
.gallery.gallery-columns-1 {
  -ms-flex-align: center;
      -webkit-box-align: center;
      align-items: center;
  -ms-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
}
.gallery.gallery-columns-1 .gallery-item {
  margin-left: 0;
  margin-top: 2rem;
}
.gallery.gallery-columns-1 .gallery-item:first-child {
  margin-top: 0;
}
.gallery.gallery-columns-1 .portrait > img {
  margin-left: auto;
  margin-right: auto;
}
.gallery.gallery-columns-1 .portrait + .wp-caption-text {
  text-align: center;
}
@media (min-width: 64rem) {
  .gallery.gallery-columns-2 .gallery-item {
    -ms-flex-preferred-size: 45% !important;
        flex-basis: 45% !important;
    margin-bottom: 1.25rem;
  }
  .gallery.gallery-columns-2 .gallery-item:nth-child(odd) {
    margin-left: 0;
  }
}

.pagination li {
  display: inline-block;
}
.pagination .next,
.pagination .previous,
.pagination .page-number {
  border-style: solid;
  border-width: 1px;
  border-color: #EFEFEF;
  border-radius: 0.25rem;
  background-color: #EFEFEF;
  color: #222222;
  display: block;
  cursor: pointer;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  margin-right: 0.125rem;
  margin-bottom: 0.375rem;
  line-height: 36px;
  text-align: center;
  width: 40px;
}
.pagination .next:hover,
.pagination .previous:hover,
.pagination .page-number:hover {
  background-color: #D5D5D5;
  border-color: #D5D5D5;
}
.pagination .next.current,
.pagination .previous.current,
.pagination .page-number.current {
  background-color: #E0A11F;
  border-color: #E0A11F;
  color: #fff;
}
.pagination .next.current:hover,
.pagination .previous.current:hover,
.pagination .page-number.current:hover {
  background-color: #E6B44C;
  border-color: #E6B44C;
  color: #fff;
}
.pagination .previous,
.pagination .next {
  padding: 0 1.25rem;
  width: auto;
}

.social-links__link [class^=fab] {
  color: #898989;
}
.social-links__link:hover [class*=fa-facebook] {
  color: #4267B2;
}
.social-links__link:hover [class*=fa-twitter] {
  color: #1da1f2;
}
.social-links__link:hover [class*=fa-instagram] {
  color: #c32aa3;
}
.social-links__link:hover [class*=fa-youtube] {
  color: #ff0000;
}
.social-links__link:hover [class*=fa-linkedin] {
  color: #007bb5;
}

.subscribe-form {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
  -ms-flex-pack: center;
      -webkit-box-pack: center;
      justify-content: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
}
@media (min-width: 48rem) {
  .subscribe-form__wrap {
    -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    background: #fff;
    border: 1px solid #BCBCBC;
    border-radius: 0.25rem;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding: 0.5rem;
  }
  .subscribe-form__wrap:focus {
    outline: -webkit-focus-ring-color auto 5px;
  }
}
.subscribe-form__input-wrap {
  margin-bottom: 0.75rem;
}
@media (min-width: 48rem) {
  .subscribe-form__input-wrap {
    -ms-flex: 1 1;
        -webkit-box-flex: 1;
        flex: 1 1;
    margin-bottom: 0;
  }
}
@media (min-width: 48rem) {
  .subscribe-form__input-wrap .form-control {
    background: transparent;
    border: none;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.subscribe-form__input-wrap .form-control:focus {
  outline: none;
}
.subscribe-form__btn-wrap {
  text-align: center;
}
@media (min-width: 48rem) {
  .subscribe-form__btn-wrap {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
div.wpcf7 .ajax-loader {
  background-image: url(images/spin-icon.png);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  height: 24px;
  width: 24px;
}
div.wpcf7 .ajax-loader.is-active {
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
}

div.wpcf7-response-output {
  border: none;
  border-radius: 0.25rem;
  font-size: 16px;
  margin: 2rem 0 0 0;
  padding: 0.75rem;
}
div.wpcf7-response-output.wpcf7-validation-errors {
  background-color: #f8d7da;
  color: #E02447;
}
div.wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
}

span.wpcf7-not-valid-tip {
  font-size: 0.85rem;
  font-family: "Lato", sans-serif;
  margin-top: 0.75rem;
}

.wpcf7-list-item-label {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  line-height: 1.62;
}

.wpcf7-list-item {
  -ms-flex-align: start;
      -webkit-box-align: start;
      align-items: flex-start;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  cursor: pointer;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.wpcf7-list-item {
  margin-left: 0 !important;
}
.wpcf7-list-item [type=checkbox] {
  margin-right: 0;
  margin-top: 7px;
}

[type=text].wpcf7-not-valid,
[type=email].wpcf7-not-valid,
textarea.wpcf7-not-valid {
  border-color: #E02447;
}
[type=text].wpcf7-not-valid:hover,
[type=email].wpcf7-not-valid:hover,
textarea.wpcf7-not-valid:hover {
  border-color: #E02447;
}

.cc-notice {
  background-color: #000;
  bottom: 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 10000;
}
.cc-notice__message > p {
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  letter-spacing: 0.01rem;
}

.tilee {
  min-height: 100px;
  overflow: hidden;
  position: relative;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

/* image */
.tilee__image {
  display: block;
  width: 100%;
}

/* content */
.tilee__content {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  z-index: 2;
}

/* title */
.tilee__title {
  font-size: 18px;
}

@media (min-width: 45em) {
  .tilee__title {
    font-size: 26px;
  }
}
/* by */
.tile__by {
  margin: 4px 0 0 0;
}

/* excerpt */
.tilee__excerpt {
  display: none;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

@media (min-width: 45em) {
  .tilee__excerpt {
    color: #e6e6e6;
    display: block;
    font-size: 14px;
    font-size: 0.9rem;
    margin-top: 20px;
  }

  .tilee:hover .tilee__excerpt {
    opacity: 1;
  }
}
/**
 * Front page tiles
 */
.inner-category-tiles .js-masonry-item-sizer,
.category-page-tile,
#home-tiles .js-masonry-item-sizer,
.front-page-tile {
  width: 50%;
}

@media (min-width: 45em) {
  .inner-category-tiles .js-masonry-item-sizer,
.category-page-tile,
#home-tiles .js-masonry-item-sizer,
.front-page-tile {
    width: 33.3232323232%;
  }
}
.category-page-tile,
.front-page-tile,
.sva-page-tile {
  /*border: solid #fff 2px;*/
  background-color: #000;
  float: left;
}

.category-page-tile:after,
.front-page-tile:after,
.sva-page-tile:after {
  /*background-color: #000;*/
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.7+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#b3000000",GradientType=0 );
  /* IE6-9 */
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: 1;
  filter: alpha(opacity=0);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* tile image */
.category-page-tile .tilee__image,
.front-page-tile .tilee__image,
.sva-page-tile .tilee__image {
  height: auto;
  max-width: none;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.category-page-tile:hover > .tilee__image,
.front-page-tile:hover > .tilee__image,
.sva-page-tile:hover > .tilee__image {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

/**
 * SVA page tiles
 */
.sva-page-tile {
  width: 50%;
}

@media (min-width: 45em) {
  .sva-page-tile {
    width: 33.3232323232%;
  }
}
