@charset "UTF-8";

/**
 * CONTENTS
 *
 * SETTINGS
 * Bourbon..............Simple/lighweight SASS library - http://bourbon.io/
 * Variables............Globally-available variables and config.
 *
 * TOOLS
 * Mixins...............Useful mixins.
 * Include Media........Sass library for writing CSS media queries.
 * Media Query Test.....Displays the current breakport you're in.
 *
 * GENERIC
 * Reset................A level playing field.
 *
 * BASE
 * Fonts................@font-face included fonts.
 * Forms................Common and default form styles.
 * Headings.............H1–H6 styles.
 * Links................Link styles.
 * Lists................Default list styles.
 * Main.................Page body defaults.
 * Media................Image and video styles.
 * Tables...............Default table styles.
 * Text.................Default text styles.
 *
 * LAYOUT
 * Grids................Grid/column classes.
 * Wrappers.............Wrapping/constraining elements.
 *
 * TEXT
 * Text.................Various text-specific class definitions.
 *
 * COMPONENTS
 * Blocks...............Modular components often consisting of text amd media.
 * Buttons..............Various button styles and styles.
 * Messaging............User alerts and announcements.
 * Icons................Icon styles and settings.
 * Lists................Various site list styles.
 * Navs.................Site navigations.
 * Sections.............Larger components of pages.
 * Forms................Specific form styling.
 *
 * PAGE STRUCTURE
 * Article..............Post-type pages with styled text.
 * Footer...............The main page footer.
 * Header...............The main page header.
 * Main.................Content area styles.
 *
 * MODIFIERS
 * Animations...........Animation and transition effects.
 * Borders..............Various borders and divider styles.
 * Colors...............Text and background colors.
 * Display..............Show and hide and breakpoint visibility rules.
 * Filters..............CSS filters styles.
 * Spacings.............Padding and margins in classes.
 *
 * TRUMPS
 * Helper Classes.......Helper classes loaded last in the cascade.
 */

/* ------------------------------------ *\
    $SETTINGS
\* ------------------------------------ */

/* ------------------------------------*\
    $MIXINS
\*------------------------------------ */

/**
 * Convert px to rem.
 *
 * @param int $size
 *   Size in px unit.
 * @return string
 *   Returns px unit converted to rem.
 */

/**
 * Center-align a block level element
 */

/**
 * Standard paragraph
 */

/**
 * Maintain aspect ratio
 */

/* ------------------------------------*\
    $VARIABLES
\*------------------------------------ */

/**
 * Grid & Baseline Setup
 */

/**
 * Colors
 */

/**
 * Style Colors
 */

/**
 * Typography
 */

/**
 * Amimation
 */

/**
 * Default Spacing/Padding
 */

/**
 * Icon Sizing
 */

/**
 * Common Breakpoints
 */

/**
 * Element Specific Dimensions
 */

/* ------------------------------------*\
    $TOOLS
\*------------------------------------ */

/* ------------------------------------*\
    $MIXINS
\*------------------------------------ */

/**
 * Convert px to rem.
 *
 * @param int $size
 *   Size in px unit.
 * @return string
 *   Returns px unit converted to rem.
 */

/**
 * Center-align a block level element
 */

/**
 * Standard paragraph
 */

/**
 * Maintain aspect ratio
 */

/* ------------------------------------*\
    $MEDIA QUERY TESTS
\*------------------------------------ */

/* ------------------------------------*\
    $GENERIC
\*------------------------------------ */

/* ------------------------------------*\
    $RESET
\*------------------------------------ */

/* Border-Box http:/paulirish.com/2012/box-sizing-border-box-ftw/ */

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

body {
  margin: 0;
  padding: 0;
}

blockquote,
body,
div,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
iframe,
label,
legend,
li,
nav,
object,
ol,
p,
section,
table,
ul {
  margin: 0;
  padding: 0;
}

article,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

/* ------------------------------------*\
    $TEXT
\*------------------------------------ */

/* ------------------------------------*\
    $TEXT TYPES
\*------------------------------------ */

/**
 * Text Primary
 */

.u-font--primary--xl,
h1 {
  font-size: 2.5rem;
  line-height: 3.4375rem;
  font-family: "Esteban", serif;
  font-weight: 400;
}

@media (min-width: 901px) {
  .u-font--primary--xl,
  h1 {
    font-size: 3.75rem;
    line-height: 4.6875rem;
  }
}

.u-font--primary--l,
h2 {
  font-size: 1.625rem;
  line-height: 2.25rem;
  font-family: "Esteban", serif;
  font-weight: 400;
}

@media (min-width: 901px) {
  .u-font--primary--l,
  h2 {
    font-size: 2.25rem;
    line-height: 2.875rem;
  }
}

.u-font--primary--m,
h3 {
  font-size: 1.375rem;
  line-height: 1.75rem;
  font-family: "Esteban", serif;
  font-weight: 400;
}

@media (min-width: 901px) {
  .u-font--primary--m,
  h3 {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}

.u-font--primary--s {
  font-size: 1.125rem;
  line-height: 1.375rem;
  font-family: "Esteban", serif;
}

@media (min-width: 901px) {
  .u-font--primary--s {
    font-size: 1.375rem;
    line-height: 1.75rem;
  }
}

/**
 * Text Secondary
 */

.u-font--secondary--s,
h4 {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.1875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.u-font--secondary--xs {
  font-size: 0.6875rem;
  line-height: 1.0625rem;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.125rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 901px) {
  .u-font--secondary--xs {
    font-size: 0.75rem;
    line-height: 1.125rem;
    letter-spacing: 0.1875rem;
  }
}

/**
 * Text Main
 */

.u-font--xl {
  font-size: 1.125rem;
  line-height: 1.875rem;
  font-family: "Esteban", serif;
}

@media (min-width: 901px) {
  .u-font--xl {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}

.u-font--l {
  font-size: 1rem;
  line-height: 1.625rem;
  font-family: "Esteban", serif;
}

@media (min-width: 901px) {
  .u-font--l {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}

.u-font--m {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-family: "Esteban", serif;
  font-style: italic;
}

.u-font--s {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-family: "Esteban", serif;
  font-style: italic;
}

@media (min-width: 901px) {
  .u-font--s {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}

/**
 * Text Transforms
 */

.u-text-transform--upper {
  text-transform: uppercase;
}

.u-text-transform--lower {
  text-transform: lowercase;
}

.u-text-transform--capitalize {
  text-transform: capitalize;
}

/**
 * Text Decorations
 */

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

/**
 * Font Weights
 */

.u-font-weight--400 {
  font-weight: 400;
}

.u-font-weight--700 {
  font-weight: 700;
}

.u-font-weight--900 {
  font-weight: 900;
}

.u-caption {
  color: #b2adaa;
  padding-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-family: "Esteban", serif;
  font-style: italic;
}

@media (min-width: 901px) {
  .u-caption {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}

/* ------------------------------------*\
    $BASE
\*------------------------------------ */

/* ------------------------------------*\
    $FONTS
\*------------------------------------ */

/**
 * @license
 * MyFonts Webfont Build ID 3279254, 2016-09-06T11:27:23-0400
 *
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are
 * explicitly restricted from using the Licensed Webfonts(s).
 *
 * You may obtain a valid license at the URLs below.
 *
 * Webfont: HoosegowJNL by Jeff Levine
 * URL: http://www.myfonts.com/fonts/jnlevine/hoosegow/regular/
 * Copyright: (c) 2009 by Jeffrey N. Levine.  All rights reserved.
 * Licensed pageviews: 200,000
 *
 *
 * License: http://www.myfonts.com/viewlicense?type=web&buildid=3279254
 *
 * © 2016 MyFonts Inc
*/

/* @import must be at top of file, otherwise CSS will not work */

/* ------------------------------------*\
    $FORMS
\*------------------------------------ */

form ol,
form ul {
  list-style: none;
  margin-left: 0;
}

legend {
  font-weight: bold;
  margin-bottom: 1.875rem;
  display: block;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

label {
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

textarea {
  line-height: 1.5;
}

input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
textarea,
select {
  border: 1px solid #b2adaa;
  background-color: #fff;
  width: 100%;
  outline: 0;
  display: block;
  -webkit-transition: all 0.5s cubic-bezier(0.885, -0.065, 0.085, 1.02);
  -o-transition: all 0.5s cubic-bezier(0.885, -0.065, 0.085, 1.02);
  transition: all 0.5s cubic-bezier(0.885, -0.065, 0.085, 1.02);
  padding: 0.625rem;
}

input[type="search"] {
  -webkit-appearance: none;
  border-radius: 0;
}

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

/**
 * Form Field Container
 */

.field-container {
  margin-bottom: 1.25rem;
}

/**
 * Validation
 */

.has-error {
  border-color: #f00;
}

.is-valid {
  border-color: #089e00;
}

/* ------------------------------------*\
    $HEADINGS
\*------------------------------------ */

/* ------------------------------------*\
    $LINKS
\*------------------------------------ */

a {
  text-decoration: none;
  color: #24374d;
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: #8d9b86;
}

a p {
  color: #31302e;
}

.u-link--cta {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.1875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #24374d;
  display: table;
}

.u-link--cta .u-icon {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  left: 1.25rem;
  position: relative;
}

.u-link--cta:hover .u-icon {
  left: 1.4375rem;
}

.u-link--white {
  color: #fff;
}

.u-link--white:hover {
  color: #b2adaa;
}

.u-link--white:hover .u-icon path {
  fill: #b2adaa;
}

/* ------------------------------------*\
    $LISTS
\*------------------------------------ */

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/**
 * Definition Lists
 */

dl {
  overflow: hidden;
  margin: 0 0 1.25rem;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* ------------------------------------*\
    $SITE MAIN
\*------------------------------------ */

body {
  background: #fff;
  font: 400 100%/1.3 "Esteban", serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #31302e;
  overflow-x: hidden;
}

/* ------------------------------------*\
    $MEDIA ELEMENTS
\*------------------------------------ */

/**
 * Flexible Media
 */

iframe,
img,
object,
svg,
video {
  max-width: 100%;
  border: none;
}

img[src$=".svg"] {
  width: 100%;
}

picture {
  display: block;
  line-height: 0;
}

figure {
  max-width: 100%;
}

figure img {
  margin-bottom: 0;
}

.fc-style,
figcaption {
  font-size: 0.875rem;
  padding-top: 0.1875rem;
  margin-bottom: 0.3125rem;
}

.clip-svg {
  height: 0;
}

/* ------------------------------------*\
    $PRINT STYLES
\*------------------------------------ */

@media print {
  *,
  *::after,
  *::before,
  *::first-letter,
  *::first-line {
    background: transparent !important;
    color: #31302e !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  blockquote,
  pre {
    border: 1px solid #b2adaa;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */

  thead {
    display: table-header-group;
  }

  img,
  tr {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  #footer,
  #header,
  .ad,
  .no-print {
    display: none;
  }
}

/* ------------------------------------*\
    $TABLES
\*------------------------------------ */

table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #b2adaa;
  width: 100%;
}

th {
  text-align: left;
  border: 1px solid #b2adaa;
  padding: 0.2em;
}

td {
  border: 1px solid #b2adaa;
  padding: 0.2em;
}

/* ------------------------------------*\
    $TEXT ELEMENTS
\*------------------------------------ */

/**
 * Abstracted paragraphs
 */

p,
ul,
ol,
dt,
dd,
pre {
  font-family: "Esteban", serif;
  font-size: 1rem;
  line-height: 1.625rem;
}

@media (min-width: 701px) {
  p,
  ul,
  ol,
  dt,
  dd,
  pre {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

/**
 * Bold
 */

b,
strong {
  font-weight: 700;
}

/**
 * Horizontal Rule
 */

hr {
  height: 1px;
  border: none;
  background-color: #b2adaa;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/**
 * Abbreviation
 */

abbr {
  border-bottom: 1px dotted #b2adaa;
  cursor: help;
}

/* ------------------------------------*\
    $LAYOUT
\*------------------------------------ */

/* ------------------------------------*\
    $GRIDS
\*------------------------------------ */

/**
 * Simple grid - keep adding more elements to the row until the max is hit
 * (based on the flex-basis for each item), then start new row.
 */

.l-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

/**
 * Fixed Gutters
 */

[class*="grid--"].u-no-gutters {
  margin-left: 0;
  margin-right: 0;
}

[class*="grid--"].u-no-gutters > .l-grid-item {
  padding-left: 0;
  padding-right: 0;
}

[class*="grid--"] > .l-grid-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.83333rem;
  padding-right: 0.83333rem;
}

@media (min-width: 1101px) {
  [class*="grid--"] > .l-grid-item.u-left-gutter--l {
    padding-left: 1.875rem;
  }

  [class*="grid--"] > .l-grid-item.u-right-gutter--l {
    padding-right: 1.875rem;
  }

  [class*="grid--"] > .l-grid-item.u-left-gutter--xl {
    padding-left: 3.75rem;
  }

  [class*="grid--"] > .l-grid-item.u-right-gutter--xl {
    padding-right: 3.75rem;
  }
}

[class*="l-grid--"] {
  margin-left: -0.83333rem;
  margin-right: -0.83333rem;
}

@media (min-width: 1101px) {
  [class*="l-grid--"] {
    margin-left: -0.83333rem;
    margin-right: -0.83333rem;
  }
}

.l-grid-item {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
* 1 to 2 column grid at 50% each.
*/

@media (min-width: 701px) {
  .l-grid--50-50 {
    width: 100%;
  }

  .l-grid--50-50 > * {
    width: 50%;
  }
}

/**
 * 3 column grid
 */

.l-grid--3-col {
  margin: 0;
}

@media (min-width: 701px) {
  .l-grid--3-col {
    width: 100%;
  }

  .l-grid--3-col > * {
    width: 33.3333%;
  }
}

/**
 * 4 column grid
 */

.l-grid--4-col > * {
  margin-bottom: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media (min-width: 501px) {
  .l-grid--4-col > * {
    width: 50%;
  }
}

@media (min-width: 701px) {
  .l-grid--4-col {
    width: 100%;
  }
}

@media (min-width: 901px) {
  .l-grid--4-col > * {
    width: 25%;
  }
}

.l-grid--photos {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -moz-column-gap: 1.25rem;
  -webkit-column-gap: 1.25rem;
  column-gap: 1.25rem;
  display: block;
  padding: 0;
  margin: 0;
}

.l-grid--photos > .l-grid-item {
  display: block;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 1.25rem;
  width: 100%;
}

@media (min-width: 501px) {
  .l-grid--photos {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}

@media (min-width: 701px) {
  .l-grid--photos {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}

@media (min-width: 1301px) {
  .l-grid--photos {
    -webkit-column-count: 5;
       -moz-column-count: 5;
            column-count: 5;
  }
}

/* ------------------------------------*\
    $WRAPPERS & CONTAINERS
\*------------------------------------ */

/**
 * Layout containers - keep content centered and within a maximum width. Also
 * adjusts left and right padding as the viewport widens.
 */

.l-container {
  margin: 0 auto;
  position: relative;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 1101px) {
  .l-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/**
 * Wrapping element to keep content contained and centered.
 */

.l-wrap {
  max-width: 75rem;
  margin: 0 auto;
}

/**
 * Wrapping element to keep content contained and centered at narrower widths.
 */

.l-narrow {
  max-width: 50rem;
  margin: 0 auto;
}

.l-narrow--xs {
  max-width: 31.25rem;
}

.l-narrow--s {
  max-width: 37.5rem;
}

.l-narrow--m {
  max-width: 43.75rem;
}

.l-narrow--l {
  max-width: 75rem;
}

.l-narrow--xl {
  max-width: 81.25rem;
}

/* ------------------------------------*\
    $COMPONENTS
\*------------------------------------ */

/* ------------------------------------*\
    $BLOCKS
\*------------------------------------ */

.single-product .c-block__thumb,
.template-shop .c-block__thumb {
  background: white;
  min-height: 12.5rem;
  position: relative;
  border-bottom: 1px solid #b2adaa;
}

.single-product .c-block__thumb img,
.template-shop .c-block__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  max-height: 80%;
  margin: auto;
  width: auto;
}

.c-block__default .l-grid {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-block__default .c-block__media {
  min-height: 15.625rem;
  background-color: #f5f4ed;
  background-size: cover;
}

@media (min-width: 901px) {
  .c-block__default .c-block__media {
    min-height: 18.75rem;
  }
}

.c-block__default .c-block__content {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-block__link:hover {
  color: inherit;
}

.c-block-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 25rem;
  width: 100%;
}

.c-block-news .c-block__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #b2adaa;
}

.c-block-news .c-block__link {
  position: relative;
}

.c-block-news .c-block__title,
.c-block-news .c-block__date,
.c-block-news .c-block__excerpt {
  font-weight: normal;
}

.c-block-news .c-block__date,
.c-block-news .c-block__excerpt {
  color: #31302e;
}

.c-block-news .c-block__title {
  color: #24374d;
}

.c-block-news .c-block__link,
.c-block-news .c-block__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  top: auto;
}

.c-block-news.has-hover .c-block__excerpt {
  display: none;
}

.touch .c-block-news .c-block__excerpt {
  display: block;
}

.no-touch .c-block-news:hover .c-block__content {
  position: absolute;
  top: 0;
  background: #f5f4ed;
  width: 100%;
}

.no-touch .c-block-news:hover .c-block__excerpt {
  display: block;
}

.no-touch .c-block-news:hover .c-block__button {
  background-color: #8d9b86;
  color: white;
}

.no-touch .c-block-news:hover .c-block__button .u-icon path {
  fill: #fff;
}

.c-block-events .c-block__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  border: 1px solid #31302e;
  margin-bottom: 1.25rem;
  position: relative;
}

@media (min-width: 501px) {
  .c-block-events .c-block__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 12.5rem;
    margin-top: -0.0625rem;
    margin-bottom: 0;
  }
}

.c-block-events .c-block__link.disable {
  pointer-events: none;
}

.c-block-events .c-block__link.disable .u-icon {
  display: none;
}

.c-block-events .c-block__day {
  position: relative;
  display: block;
  width: 100%;
}

@media (min-width: 501px) {
  .c-block-events .c-block__day {
    width: 2.5rem;
    height: auto;
  }
}

.c-block-events .c-block__day::after {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.1875rem;
  font-weight: 700;
  text-transform: uppercase;
  content: attr(data-content);
  text-align: center;
  display: block;
  color: #b2adaa;
  line-height: 2.5rem;
  width: 100%;
  height: 2.5rem;
  background-color: #31302e;
}

@media (min-width: 501px) {
  .c-block-events .c-block__day::after {
    background-color: transparent;
    -webkit-transform: rotate(-90deg);
         -o-transform: rotate(-90deg);
            transform: rotate(-90deg);
    width: 12.5rem;
    height: 12.5rem;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.c-block-events .c-block__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.25rem;
  position: absolute;
  top: 2.5rem;
  background-color: #8d9b86;
  color: #fff;
  z-index: 1;
}

@media (min-width: 501px) {
  .c-block-events .c-block__date {
    position: relative;
    top: auto;
    border-right: 1px solid #31302e;
    background-color: #fff;
    color: #31302e;
    min-width: 5rem;
  }
}

@media (max-width: 500px) {
  .c-block-events .c-block__date + .c-block__content {
    padding-left: 6.25rem;
  }
}

.c-block-events .c-block__media {
  position: relative;
  min-height: 15.625rem;
}

@media (min-width: 501px) {
  .c-block-events .c-block__media {
    width: 31.25rem;
    height: 100%;
    min-height: auto;
    display: block;
  }
}

.c-block-events .c-block__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

@media (min-width: 501px) {
  .c-block-events .c-block__content {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-block-events .c-block__header {
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

@media (min-width: 501px) {
  .c-block-events .c-block__header {
    padding-right: 2.5rem;
  }
}

@media (min-width: 501px) {
  .c-block-events .c-block__excerpt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

.c-block-events .u-icon {
  display: none;
  height: 0.6875rem;
  position: relative;
  right: 0.625rem;
  -webkit-transition: right 0.25s ease-in-out;
  -o-transition: right 0.25s ease-in-out;
  transition: right 0.25s ease-in-out;
}

@media (min-width: 501px) {
  .c-block-events .u-icon {
    display: inline-block;
  }
}

.c-block-events:hover .u-icon {
  right: 0;
}

.c-block-featured-page {
  position: relative;
  padding: 0 !important;
  margin: 0;
  overflow: hidden;
}

.c-block-featured-page .c-block__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 18.75rem;
  z-index: 1;
}

@media (min-width: 701px) {
  .c-block-featured-page .c-block__content {
    min-height: 25rem;
  }
}

@media (min-width: 901px) {
  .c-block-featured-page .c-block__content {
    min-height: 34.375rem;
  }
}

.c-block-featured-page .c-block__media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 110%;
  height: 110%;
  z-index: -1;
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  -o-transition: -o-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease, -o-transform 0.25s ease;
}

.c-block-featured-page:hover .c-block__media {
  -webkit-filter: blur(2px);
  filter: blur(2px);
  -webkit-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}

.c-block-featured-page:hover .o-button {
  background-color: #f53d31;
  border-color: #f53d31;
}

.c-block-gallery__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-block-gallery__images img {
  width: 100%;
  height: auto;
  display: block;
}

.c-block-gallery__image figure {
  position: relative;
  width: 100%;
  height: auto;
}

.c-block-gallery__image figure a > figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-width: 100%;
  padding: 0.3125rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
}

.c-block-gallery__image-link {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.c-block-gallery__nav {
  margin-top: 0.3125rem;
  margin-left: -0.3125rem;
  margin-right: -0.3125rem;
}

.c-block-gallery__nav picture {
  cursor: pointer;
  padding: 0.3125rem;
}

.c-block-gallery__nav .slick-slide:focus {
  border-radius: 0;
  outline: 0;
  -webkit-box-shadow: inset 0 0 0 2px #8d9b86;
          box-shadow: inset 0 0 0 2px #8d9b86;
}

/* ------------------------------------*\
    $BUTTONS
\*------------------------------------ */

.o-button,
button,
input[type="submit"],
a.fasc-button {
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: relative;
  padding: 0.83333rem 3.75rem 0.83333rem 1.25rem;
  margin: 1.25rem 0 0 0;
  display: table;
  vertical-align: middle;
  text-align: center;
  width: auto;
  background: #f53d31;
  color: #e8190b;
  border-radius: 3.125rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.1875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.o-button:focus,
button:focus,
input[type="submit"]:focus,
a.fasc-button:focus {
  outline: 0;
}

.o-button:hover,
button:hover,
input[type="submit"]:hover,
a.fasc-button:hover {
  background-color: #e8190b;
  color: #fff;
}

.o-button:hover::after,
button:hover::after,
input[type="submit"]:hover::after,
a.fasc-button:hover::after {
  background: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 9.53"%3E%3Ctitle%3Eo-arrow--white%3C/title%3E%3Cpath d="M21.85,4.39,17.61.15a.5.5,0,0,0-.71.71l3.39,3.39H.5a.5.5,0,0,0,0,1H20.3L16.86,8.68a.5.5,0,1,0,.71.71l4.24-4.24,0,0h0A.5.5,0,0,0,21.85,4.39Z" fill="%23fff"/%3E%3C/svg%3E') center center no-repeat;
  background-size: 1.875rem;
  right: 0.9375rem;
}

.o-button::after,
button::after,
input[type="submit"]::after,
a.fasc-button::after {
  content: '';
  display: block;
  margin-left: 0.625rem;
  background: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 9.53"%3E%3Ctitle%3Eo-arrow--white%3C/title%3E%3Cpath d="M21.85,4.39,17.61.15a.5.5,0,0,0-.71.71l3.39,3.39H.5a.5.5,0,0,0,0,1H20.3L16.86,8.68a.5.5,0,1,0,.71.71l4.24-4.24,0,0h0A.5.5,0,0,0,21.85,4.39Z" fill="%23fff"/%3E%3C/svg%3E') center center no-repeat;
  background-size: 1.875rem;
  width: 1.875rem;
  height: 1.875rem;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.u-button--red {
  color: #fff;
  background-color: #f53d31;
}

.u-button--red:hover {
  background-color: #e8190b;
  color: #fff;
}

.u-button--green {
  color: #fff;
  background-color: #8d9b86;
}

.u-button--green:hover {
  background-color: #73826c;
  color: #fff;
}

.u-button--outline {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
}

.u-button--outline:hover {
  background-color: #f53d31;
  color: #fff;
  border: 1px solid #f53d31;
}

a.fasc-button {
  background: #f53d31 !important;
  color: #e8190b !important;
}

a.fasc-button:hover {
  background-color: #e8190b !important;
  color: #fff !important;
  border-color: #e8190b;
}

.u-button--search {
  padding: 0.3125rem;
  background-color: transparent;
}

.u-button--search:hover {
  background-color: transparent;
}

.u-button--search::after {
  display: none;
}

.ajax-load-more-wrap {
  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%;
}

.alm-load-more-btn.done {
  pointer-events: none;
  opacity: 0.4;
  background-color: #b2adaa;
  border-color: #b2adaa;
}

.alm-btn-wrap {
  width: 100%;
}

/* ------------------------------------*\
    $MESSAGING
\*------------------------------------ */

/* ------------------------------------*\
    $ICONS
\*------------------------------------ */

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

.u-icon path {
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.u-icon--xs {
  width: 0.625rem;
  height: 0.625rem;
}

.u-icon--s {
  width: 1.25rem;
  height: 1.25rem;
}

.u-icon--m {
  width: 1.5625rem;
  height: 1.5625rem;
}

.u-icon--l {
  width: 3.75rem;
  height: 3.75rem;
}

.u-icon--xl {
  width: 3.75rem;
  height: 3.75rem;
}

.u-icon--arrow-prev {
  background: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.67 36.68"%3E%3Ctitle%3Eo-arrow--carousel--prev%3C/title%3E%3Cpath d="M.15,18.91,17.83,36.58a.5.5,0,0,0,.7-.7L1.05,18.39,18.53.91a.5.5,0,0,0,0-.71.5.5,0,0,0-.71,0L.15,17.88a.5.5,0,0,0-.12.51A.5.5,0,0,0,.15,18.91Z" fill="%23fff"/%3E%3C/svg%3E') center center no-repeat;
  left: 0;
  background-size: 0.9375rem auto;
}

.u-icon--arrow-next {
  background: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.67 36.68"%3E%3Ctitle%3Eo-arrow--carousel%3C/title%3E%3Cpath d="M18.53,17.82.85.15A.5.5,0,0,0,.15.85L17.63,18.34.15,35.82a.5.5,0,1,0,.71.71L18.53,18.85a.5.5,0,0,0,.12-.51A.5.5,0,0,0,18.53,17.82Z" fill="%23fff"/%3E%3C/svg%3E') center center no-repeat;
  right: 0;
  background-size: 0.9375rem auto;
}

.u-icon--arrow--small {
  background: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"%3E%3Ctitle%3Eo-arrow--small%3C/title%3E%3Cpath d="M7.5,4.62,3.25.38a.5.5,0,0,0-.71.71L6.44,5,2.5,8.91a.5.5,0,1,0,.71.71L7.45,5.38l0,0h0A.5.5,0,0,0,7.5,4.62Z" fill="%2331302e"/%3E%3C/svg%3E') center center no-repeat;
  left: 0;
  background-size: 0.625rem auto;
}

/* ------------------------------------*\
    $LIST TYPES
\*------------------------------------ */

.u-list__title {
  margin-bottom: 1.25rem;
}

.u-list__details {
  border-left: 1px solid #b2adaa;
  padding-left: 1.25rem;
}

/* ------------------------------------*\
    $NAVIGATION
\*------------------------------------ */

.c-nav__primary {
  position: absolute;
  top: 3.75rem;
  left: 0;
  width: 100%;
  background-color: #f5f4ed;
  -webkit-box-shadow: 0 2px 0 rgba(178, 173, 170, 0.4);
          box-shadow: 0 2px 0 rgba(178, 173, 170, 0.4);
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

@media (min-width: 1101px) {
  .c-nav__primary {
    position: relative;
    top: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: auto;
  }
}

.c-nav__primary.this-is-active .c-primary-nav__list {
  display: block;
}

.c-nav__primary.this-is-active .c-nav__toggle .c-nav__toggle-span--1 {
  opacity: 0;
}

.c-nav__primary.this-is-active .c-nav__toggle .c-nav__toggle-span--2 {
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -0.25rem;
  right: -0.125rem;
}

.c-nav__primary.this-is-active .c-nav__toggle .c-nav__toggle-span--3 {
  -webkit-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -0.625rem;
  right: -0.125rem;
}

.c-nav__primary.this-is-active .c-nav__toggle .c-nav__toggle-span--4::after {
  content: "Close";
}

.c-nav__toggle {
  position: absolute;
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3.75rem;
  width: 3.75rem;
  top: -3.75rem;
  right: 0;
}

@media (min-width: 1101px) {
  .c-nav__toggle {
    display: none;
  }
}

.c-nav__toggle .c-nav__toggle-span {
  display: block;
  background-color: #fff;
  width: 1.875rem;
  height: 0.0625rem;
  margin-bottom: 0.3125rem;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  -o-transition: -o-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease, -o-transform 0.25s ease;
  position: relative;
  border: 0;
  outline: 0;
}

.c-nav__toggle .c-nav__toggle-span--4 {
  margin: 0;
  background-color: transparent;
  height: auto;
  color: #fff;
  display: block;
}

.c-nav__toggle .c-nav__toggle-span--4::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  content: "Menu";
  padding-top: 0.1875rem;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 0.1875rem;
  letter-spacing: 0.07812rem;
  font-size: 9px;
}

.c-primary-nav__list {
  height: auto;
  width: 100%;
  display: none;
}

@media (min-width: 1101px) {
  .c-primary-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-primary-nav__list-toggle {
  border-bottom: 1px solid rgba(178, 173, 170, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
}

@media (min-width: 1101px) {
  .c-primary-nav__list-toggle {
    border: 0;
    height: 5rem;
  }
}

.c-primary-nav__list-toggle a {
  width: calc(100% - 50px);
  padding: 0.625rem 0.625rem;
  font-weight: 700;
}

@media (min-width: 1101px) {
  .c-primary-nav__list-toggle a {
    width: auto;
  }
}

@media (min-width: 1301px) {
  .c-primary-nav__list-toggle a {
    padding: 1.25rem;
  }
}

.c-primary-nav__list-toggle span {
  display: none;
  position: relative;
  height: 100%;
  width: 3.125rem;
  padding: 0.3125rem 0.625rem;
  text-align: right;
  cursor: pointer;
}

.c-primary-nav__list-toggle span svg {
  width: 0.9375rem;
  height: 0.9375rem;
  right: 0;
  top: 0.1875rem;
  position: relative;
}

.c-primary-nav__list-item {
  position: relative;
  cursor: pointer;
}

@media (min-width: 1101px) {
  .c-primary-nav__list-item.active {
    background-color: #9aa794;
  }
}

.c-primary-nav__list-item.this-is-active {
  background-color: #e3e0cc;
}

@media (min-width: 1101px) {
  .c-primary-nav__list-item.this-is-active {
    background-color: #9aa794;
  }
}

.c-primary-nav__list-item.this-is-active .c-primary-nav__list-toggle span svg {
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  right: 1.375rem;
}

.c-primary-nav__list-item.this-is-active .c-sub-nav__list {
  display: block;
}

@media (min-width: 1101px) {
  .c-primary-nav__list-item.has-sub-nav .c-primary-nav__list-link {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    font-size: 1rem;
  }
}

.c-primary-nav__list-item.has-sub-nav .c-primary-nav__list-toggle {
  position: relative;
}

.c-primary-nav__list-item.has-sub-nav .c-primary-nav__list-toggle span {
  display: block;
  height: 2.375rem;
  width: 3.75rem;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  border-left: 1px solid rgba(178, 173, 170, 0.4);
  z-index: 999;
}

.c-primary-nav__list-item.has-sub-nav .c-primary-nav__list-toggle span svg {
  right: 1.3125rem;
  top: 0.5625rem;
}

@media (min-width: 1101px) {
  .c-primary-nav__list-item.has-sub-nav .c-primary-nav__list-toggle span {
    display: none;
  }
}

@media (min-width: 1101px) {
  .c-primary-nav__list-link {
    font-size: 0.75rem;
    letter-spacing: 0.125rem;
    white-space: nowrap;
    color: #fff;
  }

  .c-primary-nav__list-link:hover {
    color: #fff;
  }
}

.c-sub-nav__list {
  background-color: #fff;
  display: none;
}

@media (min-width: 1101px) {
  .c-sub-nav__list {
    position: absolute;
    left: 0;
    width: 15.625rem;
    -webkit-box-shadow: 0 1px 2px rgba(178, 173, 170, 0.5);
            box-shadow: 0 1px 2px rgba(178, 173, 170, 0.5);
  }
}

@media (min-width: 1101px) {
  .c-sub-nav__list-item.active {
    background-color: #f5f4ed;
  }
}

.c-sub-nav__list-link {
  font-family: "Esteban", serif;
  font-size: 1rem;
  line-height: 1.625rem;
  padding: 0.3125rem 1.25rem;
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(178, 173, 170, 0.4);
}

@media (min-width: 701px) {
  .c-sub-nav__list-link {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.c-sub-nav__list-link:hover {
  background-color: #f5f4ed;
  color: #24374d;
}

.c-secondary-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-secondary-nav__link {
  padding: 0 0.625rem;
  color: #24374d;
}

.c-secondary-nav__link.this-is-active {
  color: #8d9b86;
}

.c-breadcrumbs span {
  color: #b2adaa;
}

/* ------------------------------------*\
    $PAGE SECTIONS
\*------------------------------------ */

.c-section {
  padding: 2.5rem 0;
}

@media (min-width: 701px) {
  .c-section {
    padding: 5rem 0;
  }
}

.c-section__blocks {
  padding-top: 0;
}

.c-slideshow__image {
  position: relative;
  min-height: 70vh;
  z-index: 0;
}

.c-slideshow__content {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  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;
}

.c-section-hero {
  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;
  height: auto;
}

.c-section-hero::after {
  z-index: 1 !important;
}

.c-section-hero--short {
  min-height: 15.625rem;
}

@media (min-width: 701px) {
  .c-section-hero--short {
    min-height: 21.875rem;
  }
}

@media (min-width: 1101px) {
  .c-section-hero--short {
    min-height: 28.125rem;
  }
}

.c-section-hero--tall {
  min-height: 21.875rem;
}

@media (min-width: 701px) {
  .c-section-hero--tall {
    min-height: 70vh;
  }
}

.c-section-hero__content {
  position: relative;
  z-index: 2;
}

.c-section-hero__caption {
  position: absolute;
  z-index: 999;
  bottom: 0.3125rem;
  left: 0.3125rem;
}

.c-section-events__title {
  position: relative;
  z-index: 1;
}

.c-section-events__title::after {
  content: "Happenings";
  font-size: 9rem;
  line-height: 1;
  color: #fff;
  opacity: 0.1;
  position: absolute;
  z-index: 0;
  top: -4.5rem;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: none;
}

@media (min-width: 701px) {
  .c-section-events__title::after {
    display: block;
  }
}

.c-section-events__feed {
  z-index: 2;
}

.c-section-news__title {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
}

@media (min-width: 701px) {
  .c-section-news__title {
    margin-top: 5rem;
  }
}

.c-section-news__title::after {
  content: "Stay in the Loop";
  font-size: 9rem;
  line-height: 1;
  color: #fff;
  opacity: 0.1;
  position: absolute;
  z-index: 0;
  top: -4.5rem;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: none;
}

@media (min-width: 701px) {
  .c-section-news__title::after {
    display: block;
  }
}

.c-section-news__title + .c-section {
  z-index: 2;
  padding-top: 2.5rem;
}

.c-section-related {
  padding-bottom: 1.25rem;
}

.c-section__featured-pages {
  position: relative;
}

.c-section__featured-pages::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #24374d;
  position: absolute;
  top: 0;
  left: 0;
}

/* ------------------------------------*\
    $SPECIFIC FORMS
\*------------------------------------ */

/* Chrome/Opera/Safari */

::-webkit-input-placeholder {
  color: #b2adaa;
}

/* Firefox 19+ */

::-moz-placeholder {
  color: #b2adaa;
}

/* IE 10+ */

:-ms-input-placeholder {
  color: #b2adaa;
}

/* Firefox 18- */

:-moz-placeholder {
  color: #b2adaa;
}

label {
  margin-top: 1.25rem;
  width: 100%;
  font-size: 0.6875rem;
  line-height: 1.0625rem;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.125rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 901px) {
  label {
    font-size: 0.75rem;
    line-height: 1.125rem;
    letter-spacing: 0.1875rem;
  }
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"%3E%3Ctitle%3EArrow Down%3C/title%3E%3Cpath d="M5.38,7.5,9.62,3.25a.5.5,0,1,0-.71-.71L5,6.44,1.09,2.5a.5.5,0,0,0-.71,0,.51.51,0,0,0,0,.71L4.62,7.45h0a.5.5,0,0,0,.7.1Z" fill="%2331302e"/%3E%3C/svg%3E') #fff center right 0.625rem no-repeat;
  background-size: 0.625rem;
}

input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
textarea,
select {
  width: 100%;
  font-size: 1rem;
}

input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=url]:focus,
textarea:focus,
select:focus {
  border-color: #24374d;
}

input[type=checkbox],
input[type=radio] {
  outline: none;
  border: none;
  margin: 0 0.3125rem 0 0;
  height: 1.25rem;
  width: 1.25rem;
  line-height: 1.25rem;
  background-size: 1.25rem;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  display: block;
  float: left;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  background-color: #fff;
  position: relative;
  top: 0.1875rem;
  border-width: 1px;
  border-style: solid;
  border-color: #b2adaa;
}

input[type=radio] {
  border-radius: 3.125rem;
}

input[type=checkbox]:checked {
  border-color: #24374d;
  background: #24374d url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"%3E%3Ctitle%3Eo-icon--check%3C/title%3E%3Cpath d="M15.71,3.31,8.41,14,4.2,8.91,2.66,10.19l5.91,7.18L17.35,4.44Z" fill="%23fff"/%3E%3C/svg%3E') center center no-repeat;
}

input[type=radio]:checked {
  border-color: #24374d;
  background: #24374d url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"%3E%3Ctitle%3Eo-icon--radio%3C/title%3E%3Ccircle cx="10" cy="10" r="5.63" fill="%23fff"/%3E%3C/svg%3E') center center no-repeat;
}

input[type=checkbox] + span,
input[type=radio] + span {
  display: inline-block;
  cursor: pointer;
  position: relative;
}

input[type=submit] {
  color: #fff;
  padding-right: 1.25rem;
  cursor: pointer;
}

div.wpcf7 {
  margin: 0 auto;
}

.wpcf7-form-control.wpcf7-checkbox,
.wpcf7-form-control.wpcf7-radio {
  width: 100%;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.25rem;
}

.wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  margin-top: 0.3125rem;
  margin-left: 0;
}

label + .wpcf7-form-control-wrap .wpcf7-form-control {
  margin-top: 0;
}

.o-filter-select {
  padding: 0;
  border: 0;
  outline: 0;
  color: #24374d;
  width: 7.8125rem;
  margin-left: 1.25rem;
  font-family: "Esteban", serif;
  font-size: 1rem;
  line-height: 1.625rem;
}

@media (min-width: 701px) {
  .o-filter-select {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track::after,
.slick-track::before {
  content: "";
  display: table;
}

.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-slideshow .slick-slide {
  visibility: hidden;
  opacity: 0;
  background-color: #31302e !important;
  z-index: -1;
  -webkit-transition: all 0.5s cubic-bezier(0.28, 0, 0.18, 1) !important;
  -o-transition: all 0.5s cubic-bezier(0.28, 0, 0.18, 1) !important;
  transition: all 0.5s cubic-bezier(0.28, 0, 0.18, 1) !important;
}

.slick-slideshow .slick-slide.slick-active {
  z-index: 1;
  visibility: visible;
  opacity: 1 !important;
}

.slick-slideshow.slick-slider .slick-background {
  -webkit-transition: -webkit-transform 11.5s cubic-bezier(0.28, 0, 0.18, 1);
  transition: -webkit-transform 11.5s cubic-bezier(0.28, 0, 0.18, 1);
  -o-transition: -o-transform 11.5s cubic-bezier(0.28, 0, 0.18, 1);
  transition: transform 11.5s cubic-bezier(0.28, 0, 0.18, 1);
  transition: transform 11.5s cubic-bezier(0.28, 0, 0.18, 1), -webkit-transform 11.5s cubic-bezier(0.28, 0, 0.18, 1), -o-transform 11.5s cubic-bezier(0.28, 0, 0.18, 1);
  -webkit-transition-delay: 0.25s;
       -o-transition-delay: 0.25s;
          transition-delay: 0.25s;
  -webkit-transform: scale(1.1, 1.1);
       -o-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

.slick-slideshow.slick-slider .slick-active > .slick-background {
  -webkit-transform: scale(1.001, 1.001) translate3d(0, 0, 0);
          transform: scale(1.001, 1.001) translate3d(0, 0, 0);
  -webkit-transform-origin: 50% 50%;
       -o-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.slick-arrow {
  display: block;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #31302e;
  position: absolute;
  top: 50%;
  z-index: 99;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.slick-arrow:hover {
  background-color: #24374d;
}

@media (max-width: 500px) {
  .slick-arrow {
    display: none !important;
  }
}

.slick-gallery .slick-dots {
  height: 2.5rem;
  line-height: 2.5rem;
  width: 100%;
  list-style: none;
  text-align: center;
}

.slick-gallery .slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 0.3125rem;
  cursor: pointer;
}

.slick-gallery .slick-dots li button {
  padding: 0;
  border-radius: 3.125rem;
  border: 0;
  display: block;
  height: 0.625rem;
  width: 0.625rem;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  background: #b2adaa;
}

.slick-gallery .slick-dots li::before,
.slick-gallery .slick-dots li button::after {
  display: none !important;
}

.slick-gallery .slick-dots li.slick-active button {
  background-color: #24374d;
}

/* Magnific Popup CSS */

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 10002;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mfp-container::before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container::before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 10004;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur {
  overflow: hidden;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 10003;
}

.mfp-preloader a {
  color: #ccc;
}

.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  cursor: pointer;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 10005;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

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

button::after,
button::before {
  display: none;
}

.mfp-close {
  width: 100%;
  min-width: 3.125rem;
  height: 3.125rem;
  position: fixed;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 1.25rem 0;
  background: transparent url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.92 21.92"%3E%3Ctitle%3Eicon--close%3C/title%3E%3Cpolygon points="11.67 10.96 21.92 0.71 21.21 0 10.96 10.25 0.71 0 0 0.71 10.25 10.96 0 21.21 0.71 21.92 10.96 11.67 21.21 21.92 21.92 21.21 11.67 10.96" fill="%23fff"/%3E%3C/svg%3E') top right 0.625rem no-repeat;
  background-size: 1.875rem;
  text-indent: 9999px;
  margin-top: 0.625rem;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  background-color: transparent;
}

@media (min-width: 701px) {
  .mfp-close {
    position: absolute;
    height: 1.875rem;
    margin-top: 0.9375rem;
  }
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 0.875rem;
  line-height: 1.125rem;
  white-space: nowrap;
  font-family: "Esteban", serif;
  font-weight: bold;
}

.mfp-arrow {
  opacity: 0.65;
  padding: 0.625rem;
  width: 4.375rem;
  height: 70%;
  display: block;
  position: absolute;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  background-color: transparent;
}

.mfp-arrow-left {
  left: 0;
  background: transparent url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"%3E%3Ctitle%3Eicon--arrow-carousel--left%3C/title%3E%3Cpolygon points="20.16 0 20.85 0.51 10.22 15 20.86 29.49 20.16 30 9.14 15 20.16 0" fill="%23fff"/%3E%3C/svg%3E') center center no-repeat;
  background-size: auto 3.125rem;
}

.mfp-arrow-right {
  right: 0;
  background: transparent url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"%3E%3Ctitle%3Eicon--arrow-carousel--right%3C/title%3E%3Cpolygon points="9.85 30 9.15 29.49 19.78 15 9.14 0.51 9.85 0 20.86 15 9.85 30" fill="%23fff"/%3E%3C/svg%3E') center center no-repeat;
  background-size: auto 3.125rem;
}

/* Main image in popup */

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 60px 0 60px;
  margin: 0 auto;
}

/* The shadow behind the image */

.mfp-figure {
  line-height: 0;
}

.mfp-figure::after {
  content: '';
  position: absolute;
  left: 0;
  top: 60px;
  bottom: 60px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -56px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

/* ------------------------------------*\
    $PAGE STRUCTURE
\*------------------------------------ */

/* ------------------------------------*\
    $ARTICLE
\*------------------------------------ */

.c-article__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media (min-width: 501px) {
  .c-article__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .c-article__content--left {
    width: 3.75rem;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    margin-right: 2.5rem;
  }

  .c-article__content--right {
    width: calc(100% - 100px);
  }
}

.c-article__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 2.5rem;
  z-index: 1;
}

@media (min-width: 501px) {
  .c-article__share {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-article__share-link {
  margin-left: 0.625rem;
}

@media (min-width: 501px) {
  .c-article__share-link {
    margin-left: 0;
    margin-top: 0.625rem;
  }
}

.c-article__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #b2adaa;
  padding-top: 1.25rem;
}

.c-article__nav--inner {
  width: 50%;
}

.c-article__nav--inner:first-child {
  padding-right: 0.625rem;
}

.c-article__nav--inner:last-child {
  padding-left: 0.625rem;
}

.c-article-product .c-article__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 701px) {
  .c-article-product .c-article__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (min-width: 701px) {
  .c-article-product .c-article__body .c-article--left {
    width: 40%;
    padding-right: 1.25rem;
  }
}

@media (min-width: 701px) {
  .c-article-product .c-article__body .c-article--right {
    width: 60%;
    padding-left: 1.25rem;
  }
}

.c-article-product .c-article__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 501px) {
  .c-article-product .c-article__footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.c-article-product .c-article__footer--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 501px) {
  .c-article-product .c-article__footer--left > * {
    margin: 0 1.25rem 0 0;
  }
}

@media (max-width: 500px) {
  .c-article-product .c-article__footer--right {
    margin-top: 1.25rem;
  }
}

.c-article-product .c-article__footer--right .c-article__share {
  margin: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-article-product .c-article__footer--right .c-article__share > * {
  margin-top: 0;
}

@media (min-width: 501px) {
  .c-article-product .c-article__footer--right .c-article__share > * {
    margin-left: 0.625rem;
  }
}

.c-article__body ol,
.c-article__body
ul {
  margin-left: 0;
  margin-top: 0;
}

.c-article__body ol li,
.c-article__body
  ul li {
  list-style: none;
  padding-left: 1.25rem;
  text-indent: -0.625rem;
}

.c-article__body ol li::before,
.c-article__body
    ul li::before {
  color: #8d9b86;
  width: 0.625rem;
  display: inline-block;
  font-size: 1.875rem;
}

.c-article__body ol li li,
.c-article__body
    ul li li {
  list-style: none;
}

.c-article__body ol {
  counter-reset: item;
}

.c-article__body ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
  font-size: 90%;
}

.c-article__body ol li li {
  counter-reset: item;
}

.c-article__body ol li li::before {
  content: "\2010";
}

.c-article__body ul li::before {
  content: "\2022";
}

.c-article__body ul li li::before {
  content: "\25E6";
}

.c-article {
  margin-left: auto;
  margin-right: auto;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

.c-article__body__image {
  outline: 0;
}

.c-article__body > *,
.c-article__body figcaption,
.c-article__body ul {
  max-width: 43.75rem;
  margin: 0 auto;
}

.c-article__body > .c-article--left {
  max-width: 100%;
  margin-bottom: 1.25rem;
}

.c-article__body.has-dropcap > p:first-child::first-letter {
  color: #24374d;
  float: left;
  font-size: 3.75rem;
  margin-top: 0.9375rem;
  margin-right: 0.625rem;
}

.c-article__body a {
  text-decoration: underline;
}

.c-article__body .o-button {
  text-decoration: none;
}

.c-article__body p,
.c-article__body ul,
.c-article__body ol,
.c-article__body dt,
.c-article__body dd {
  font-family: "Esteban", serif;
  font-size: 1rem;
  line-height: 1.625rem;
}

@media (min-width: 701px) {
  .c-article__body p,
  .c-article__body ul,
  .c-article__body ol,
  .c-article__body dt,
  .c-article__body dd {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.c-article__body p span,
.c-article__body p strong span {
  font-family: "Esteban", serif !important;
}

.c-article__body strong {
  font-weight: bold;
}

.c-article__body > p:empty,
.c-article__body > h2:empty,
.c-article__body > h3:empty {
  display: none;
}

.c-article__body > h1,
.c-article__body > h2,
.c-article__body > h3,
.c-article__body > h4,
.c-article__body > h5 {
  margin-top: 2.5rem;
}

.c-article__body > h1:first-child,
.c-article__body > h2:first-child,
.c-article__body > h3:first-child,
.c-article__body > h4:first-child,
.c-article__body > h5:first-child {
  margin-top: 0;
}

.c-article__body > h1 {
  font-size: 1.625rem;
  line-height: 2.25rem;
  font-family: "Esteban", serif;
  font-weight: 400;
}

@media (min-width: 901px) {
  .c-article__body > h1 {
    font-size: 2.25rem;
    line-height: 2.875rem;
  }
}

.c-article__body > h2 {
  font-size: 1.375rem;
  line-height: 1.75rem;
  font-family: "Esteban", serif;
  font-weight: 400;
}

@media (min-width: 901px) {
  .c-article__body > h2 {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}

.c-article__body > h3 {
  font-size: 1.125rem;
  line-height: 1.875rem;
  font-family: "Esteban", serif;
}

@media (min-width: 901px) {
  .c-article__body > h3 {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}

.c-article__body h4,
.c-article__body h5 {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.1875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #24374d;
  margin-bottom: -1.875rem;
}

.c-article__body h1 + ul,
.c-article__body h2 + ul,
.c-article__body h3 + ul,
.c-article__body h4 + ul,
.c-article__body h5 + ul {
  display: block;
  margin-top: 1.875rem;
}

.c-article__body img {
  height: auto;
}

.c-article__body hr {
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem;
}

@media (min-width: 901px) {
  .c-article__body hr {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}

.c-article__body figcaption {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-family: "Esteban", serif;
  font-style: italic;
}

@media (min-width: 901px) {
  .c-article__body figcaption {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}

.c-article__body blockquote {
  padding-left: 1.25rem;
  border-left: 1px solid #b2adaa;
}

.c-article__body blockquote p {
  font-size: 1.125rem;
  line-height: 1.875rem;
  font-family: "Esteban", serif;
  color: #24374d;
  font-style: italic;
}

@media (min-width: 901px) {
  .c-article__body blockquote p {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}

@media (min-width: 901px) {
  .c-article__body blockquote {
    padding-left: 2.5rem;
  }
}

.c-article__body .wp-caption-text {
  display: block;
  line-height: 1.3;
  text-align: left;
  margin-top: 0.3125rem;
}

.c-article__body .aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.c-article__body .aligncenter figcaption {
  text-align: center;
}

.c-article__body .alignleft,
.c-article__body .alignright {
  min-width: 50%;
  max-width: 50%;
}

.c-article__body .alignleft img,
.c-article__body .alignright img {
  width: 100%;
}

.c-article__body .alignleft {
  float: left;
  margin: 0 1.875rem 1.25rem 0;
}

.c-article__body .alignright {
  float: right;
  margin: 0 0 1.25rem 1.875rem;
}

@media (min-width: 901px) {
  .c-article__body .alignright {
    margin-right: -6.25rem;
  }
}

.c-article__body .size-thumbnail {
  max-width: 25rem;
  height: auto;
}

.c-article--right .alignleft,
.c-article--right .alignright {
  min-width: 33.33%;
  max-width: 33.33%;
}

.c-article--right .alignleft img,
.c-article--right .alignright img {
  width: 100%;
}

@media (min-width: 901px) {
  .c-article--right .alignright {
    margin-right: 0;
  }
}

/* ------------------------------------*\
    $SIDEBAR
\*------------------------------------ */

/* ------------------------------------*\
    $FOOTER
\*------------------------------------ */

.c-footer {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.c-footer--inner {
  position: relative;
  overflow: hidden;
}

.c-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% - 40px);
}

@media (min-width: 701px) {
  .c-footer__links {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-preferred-size: 18.75rem;
        flex-basis: 18.75rem;
  }

  .c-footer__links > div {
    width: 40%;
    max-width: 25rem;
  }
}

@media (min-width: 701px) {
  .c-footer__nav {
    margin-top: 0 !important;
  }
}

.c-footer__nav-list {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  -webkit-column-width: 8.75rem;
     -moz-column-width: 8.75rem;
          column-width: 8.75rem;
}

.c-footer__nav-list a {
  font-size: 0.6875rem;
  line-height: 1.0625rem;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 0.625rem;
  letter-spacing: 0.15625rem;
  display: block;
}

@media (min-width: 901px) {
  .c-footer__nav-list a {
    font-size: 0.75rem;
    line-height: 1.125rem;
    letter-spacing: 0.1875rem;
  }
}

.c-footer__nav-list a:hover {
  color: #b2adaa;
}

.c-footer__scroll {
  width: 12.5rem;
  height: 3.75rem;
  display: block;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  left: auto;
  right: -6.875rem;
  top: -0.625rem;
  z-index: 4;
}

@media (min-width: 701px) {
  .c-footer__scroll {
    top: 1.25rem;
    left: -4.375rem;
    bottom: auto;
    margin: 0 auto !important;
  }
}

.c-footer__scroll a {
  width: 100%;
  height: auto;
  display: block;
}

.c-footer__social {
  position: relative;
}

.c-footer__social::before,
.c-footer__social::after {
  content: "";
  display: block;
  height: 0.0625rem;
  background-color: #b2adaa;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: calc(50% - 40px);
  position: absolute;
}

.c-footer__social::before {
  left: 0;
}

.c-footer__social::after {
  right: 0;
}

.c-footer__social a {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #b2adaa;
  margin: 0 auto;
  text-align: center;
}

.c-footer__social a .u-icon {
  position: relative;
  top: 0.5rem;
}

.c-footer__social a .u-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0 auto;
}

.c-footer__social a:hover {
  background-color: #b2adaa;
}

.c-footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.25rem !important;
}

@media (min-width: 901px) {
  .c-footer__copyright {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 900px) {
  .c-footer__copyright > div {
    margin-top: 0.625rem;
  }

  .c-footer__copyright > div:first-child {
    margin-top: 0;
  }
}

.c-footer__affiliate {
  width: 8.75rem;
}

/* ------------------------------------*\
    $HEADER
\*------------------------------------ */

.c-utility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.5rem;
}

.c-utility__search form {
  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;
}

.c-utility__search form input,
.c-utility__search form button {
  height: 2.5rem;
  margin: 0;
  border: 0;
  padding: 0;
}

.c-utility__search form input {
  width: 100%;
  text-align: right;
  max-width: 7.5rem;
}

@media (min-width: 501px) {
  .c-utility__search form input {
    max-width: none;
    min-width: 15.625rem;
  }
}

.c-utility__search form input::-webkit-input-placeholder {
  font-size: 0.6875rem;
  line-height: 1.0625rem;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #b2adaa;
  text-align: right;
}

.c-utility__search form input::-moz-placeholder {
  font-size: 0.6875rem;
  line-height: 1.0625rem;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #b2adaa;
  text-align: right;
}

.c-utility__search form input::-ms-input-placeholder {
  font-size: 0.6875rem;
  line-height: 1.0625rem;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #b2adaa;
  text-align: right;
}

.c-utility__search form input::placeholder {
  font-size: 0.6875rem;
  line-height: 1.0625rem;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #b2adaa;
  text-align: right;
}

@media (min-width: 901px) {
  .c-utility__search form input::-webkit-input-placeholder {
    font-size: 0.75rem;
    line-height: 1.125rem;
    letter-spacing: 0.1875rem;
  }
  .c-utility__search form input::-moz-placeholder {
    font-size: 0.75rem;
    line-height: 1.125rem;
    letter-spacing: 0.1875rem;
  }
  .c-utility__search form input::-ms-input-placeholder {
    font-size: 0.75rem;
    line-height: 1.125rem;
    letter-spacing: 0.1875rem;
  }
  .c-utility__search form input::placeholder {
    font-size: 0.75rem;
    line-height: 1.125rem;
    letter-spacing: 0.1875rem;
  }
}

.c-utility__search form button {
  padding-right: 0;
  padding-left: 1.25rem;
}

.c-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 3.75rem;
}

@media (min-width: 1101px) {
  .c-header {
    height: 5rem;
  }
}

.c-logo {
  display: block;
  height: auto;
  width: 11.875rem;
  position: relative;
  left: -0.625rem;
}

@media (min-width: 1101px) {
  .c-logo {
    height: auto;
    width: 15.625rem;
    left: 0;
  }
}

.c-page-header {
  position: relative;
  z-index: 1;
  padding-top: 2.5rem;
}

.c-page-header__icon {
  background: #fff;
  border-radius: 100%;
  width: 9.375rem;
  height: 9.375rem;
  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;
  margin: -6.25rem auto 0 auto;
}

.c-page-header + .c-section-events {
  margin-top: 5rem;
}

/* ------------------------------------*\
    $MAIN CONTENT AREA
\*------------------------------------ */

.c-article .yarpp-related {
  display: none;
}

.yarpp-related {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

.yarpp-related h3 {
  font-weight: normal;
}

.page.business-partners img {
  width: calc(50% - 45px);
  height: auto;
  margin: 1.25rem;
  display: inline-block;
}

.page.events .c-block,
.page.events .c-block__date {
  background-color: #f5f4ed;
}

/* ------------------------------------*\
    $MODIFIERS
\*------------------------------------ */

/* ------------------------------------*\
    $ANIMATIONS & TRANSITIONS
\*------------------------------------ */

/* ------------------------------------*\
    $BORDERS
\*------------------------------------ */

.u-border {
  border: 1px solid #b2adaa;
}

.u-border--white {
  background-color: #fff;
  border-color: #fff;
}

.u-border--black {
  background-color: #31302e;
  border-color: #31302e;
}

.u-hr--small {
  width: 3.75rem;
  height: 0.0625rem;
  background-color: #31302e;
  border: 0;
  outline: 0;
  display: block;
  margin: 0 auto;
}

.u-hr--white {
  background-color: #fff;
}

.u-hr--gray {
  background-color: #b2adaa;
}

.o-divider {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  font-style: normal;
}

/* ------------------------------------*\
    $COLOR MODIFIERS
\*------------------------------------ */

/**
 * Text Colors
 */

.u-color--black {
  color: #31302e;
}

.u-color--white {
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.u-color--gray {
  color: #b2adaa;
}

.u-color--primary {
  color: #8d9b86;
}

.u-color--secondary {
  color: #24374d;
}

.u-color--tan {
  color: #f5f4ed;
}

/**
 * Background Colors
 */

.u-background-color--none {
  background: none;
}

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

.u-background-color--black {
  background-color: #31302e;
}

.u-background-color--primary {
  background-color: #8d9b86;
}

.u-background-color--secondary {
  background-color: #24374d;
}

.u-background-color--tertiary {
  background-color: #f53d31;
}

.u-background-color--tan {
  background-color: #f5f4ed;
}

/**
 * Path Fills
 */

.u-path-fill--white path {
  fill: #fff;
}

.u-path-fill--black path {
  fill: #31302e;
}

.u-fill--white {
  fill: #fff;
}

.u-fill--black {
  fill: #31302e;
}

/* ------------------------------------*\
    $DISPLAY STATES
\*------------------------------------ */

/**
 * Completely remove from the flow and screen readers.
 */

.is-hidden {
  display: none !important;
  visibility: hidden !important;
}

.u-hide {
  display: none;
}

/**
 * Completely remove from the flow but leave available to screen readers.
 */

.is-vishidden,
.screen-reader-text,
.sr-only {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
}

.has-overlay {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(49, 48, 46, 0.45)));
  background: -webkit-linear-gradient(rgba(49, 48, 46, 0.45));
  background: -o-linear-gradient(rgba(49, 48, 46, 0.45));
  background: linear-gradient(rgba(49, 48, 46, 0.45));
}

/**
 * Display Classes
 */

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

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

.u-display--table {
  display: table;
}

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

@media (max-width: 500px) {
  .u-hide-until--s {
    display: none;
  }
}

@media (max-width: 700px) {
  .u-hide-until--m {
    display: none;
  }
}

@media (max-width: 900px) {
  .u-hide-until--l {
    display: none;
  }
}

@media (max-width: 1100px) {
  .u-hide-until--xl {
    display: none;
  }
}

@media (max-width: 1300px) {
  .u-hide-until--xxl {
    display: none;
  }
}

@media (max-width: 1500px) {
  .u-hide-until--xxxl {
    display: none;
  }
}

@media (min-width: 501px) {
  .u-hide-after--s {
    display: none;
  }
}

@media (min-width: 701px) {
  .u-hide-after--m {
    display: none;
  }
}

@media (min-width: 901px) {
  .u-hide-after--l {
    display: none;
  }
}

@media (min-width: 1101px) {
  .u-hide-after--xl {
    display: none;
  }
}

@media (min-width: 1301px) {
  .u-hide-after--xxl {
    display: none;
  }
}

@media (min-width: 1501px) {
  .u-hide-after--xxxl {
    display: none;
  }
}

/* ------------------------------------*\
    $FILTER STYLES
\*------------------------------------ */

/* ------------------------------------*\
    $SPACING
\*------------------------------------ */

/**
 * Padding
 */

.u-padding {
  padding: 1.25rem;
}

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

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

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

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

.u-padding--quarter {
  padding: 0.3125rem;
}

.u-padding--quarter--top {
  padding-top: 0.3125rem;
}

.u-padding--quarter--bottom {
  padding-bottom: 0.3125rem;
}

.u-padding--half {
  padding: 0.625rem;
}

.u-padding--half--top {
  padding-top: 0.625rem;
}

.u-padding--half--bottom {
  padding-bottom: 0.625rem;
}

.u-padding--and-half {
  padding: 1.875rem;
}

.u-padding--and-half--top {
  padding-top: 1.875rem;
}

.u-padding--and-half--bottom {
  padding-bottom: 1.875rem;
}

.u-padding--double {
  padding: 2.5rem;
}

.u-padding--double--top {
  padding-top: 2.5rem;
}

.u-padding--double--bottom {
  padding-bottom: 2.5rem;
}

.u-padding--triple {
  padding: 3.75rem;
}

.u-padding--quad {
  padding: 5rem;
}

.u-padding--zero {
  padding: 0;
}

.u-padding--zero--top {
  padding-top: 0;
}

.u-padding--zero--bottom {
  padding-bottom: 0;
}

/**
 * Space
 */

.u-space {
  margin: 1.25rem;
}

.u-space--top {
  margin-top: 1.25rem;
}

.u-space--bottom {
  margin-bottom: 1.25rem;
}

.u-space--left {
  margin-left: 1.25rem;
}

.u-space--right {
  margin-right: 1.25rem;
}

.u-space--quarter {
  margin: 0.3125rem;
}

.u-space--quarter--top {
  margin-top: 0.3125rem;
}

.u-space--quarter--bottom {
  margin-bottom: 0.3125rem;
}

.u-space--quarter--left {
  margin-left: 0.3125rem;
}

.u-space--quarter--right {
  margin-right: 0.3125rem;
}

.u-space--half {
  margin: 0.625rem;
}

.u-space--half--top {
  margin-top: 0.625rem;
}

.u-space--half--bottom {
  margin-bottom: 0.625rem;
}

.u-space--half--left {
  margin-left: 0.625rem;
}

.u-space--half--right {
  margin-right: 0.625rem;
}

.u-space--and-half {
  margin: 1.875rem;
}

.u-space--and-half--top {
  margin-top: 1.875rem;
}

.u-space--and-half--bottom {
  margin-bottom: 1.875rem;
}

.u-space--double {
  margin: 2.5rem;
}

.u-space--double--top {
  margin-top: 2.5rem;
}

.u-space--double--bottom {
  margin-bottom: 2.5rem;
}

.u-space--triple {
  margin: 3.75rem;
}

.u-space--quad {
  margin: 5rem;
}

.u-space--zero {
  margin: 0;
}

.u-space--zero--top {
  margin-top: 0;
}

.u-space--zero--bottom {
  margin-bottom: 0;
}

/**
 * Spacing
 */

.u-spacing > * + * {
  margin-top: 1.25rem;
}

@media (max-width: 900px) {
  .u-spacing--until-large > * + * {
    margin-top: 1.25rem;
  }
}

.u-spacing--quarter > * + * {
  margin-top: 0.3125rem;
}

.u-spacing--half > * + * {
  margin-top: 0.625rem;
}

.u-spacing--one-and-half > * + * {
  margin-top: 1.875rem;
}

.u-spacing--double > * + * {
  margin-top: 2.5rem;
}

.u-spacing--triple > * + * {
  margin-top: 3.75rem;
}

.u-spacing--quad > * + * {
  margin-top: 5rem;
}

.u-spacing--zero > * + * {
  margin-top: 0;
}

/* ------------------------------------*\
    $TRUMPS
\*------------------------------------ */

/* ------------------------------------*\
    $HELPER/TRUMP CLASSES
\*------------------------------------ */

.js-toggle,
.js-toggle-parent {
  cursor: pointer;
}

.disable-link {
  pointer-events: none;
}

.u-overlay,
.u-overlay--full {
  position: relative;
}

.u-overlay::after,
.u-overlay--full::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0.35))) no-repeat border-box;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%) no-repeat border-box;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%) no-repeat border-box;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%) no-repeat border-box;
  z-index: -1;
}

.u-overlay--bottom {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.25))) no-repeat border-box, -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.3))) no-repeat border-box;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%) no-repeat border-box, -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%) no-repeat border-box;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%) no-repeat border-box, -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%) no-repeat border-box;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%) no-repeat border-box, linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%) no-repeat border-box;
}

/**
 * Clearfix - extends outer container with floated children.
 */

.u-clear-fix {
  zoom: 1;
}

.u-clear-fix::after,
.u-clear-fix::before {
  content: " ";
  display: table;
}

.u-clear-fix::after {
  clear: both;
}

.u-float--right {
  float: right;
}

/**
 * Hide elements only present and necessary for js enabled browsers.
 */

.no-js .no-js-hide {
  display: none;
}

/**
 * Positioning
 */

.u-position--relative {
  position: relative;
}

.u-position--absolute {
  position: absolute;
}

/**
 * Alignment
 */

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

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

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

.u-center-block {
  margin-left: auto;
  margin-right: auto;
}

.u-align--center {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-align--right {
  margin-left: auto;
}

/**
 * Background Covered
 */

.u-background--cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.u-background-image {
  background-size: 100%;
  background-repeat: no-repeat;
}

.u-background--texture {
  background: #24374d url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2476.03 73.66"%3E%3Ctitle%3Eo-texture--paper%3C/title%3E%3Cpath d="M2476,0V40.75c-.34,0-.67,0-1,0-1.94,0-4.28-1.55-5.84.39s-5.84,3.12-7,2.34-5.45-2-6.62-.78a7,7,0,0,1-5.45,1.56c-1.55-.39-2.73,3.11-4.28,3.11s-3.12.78-4.67-.39-1.17,0-3.51,1.17-4.29,1.56-5.84.39-3.5-2-5.45-1.17-6.62.39-8.18,1.56-3.5,1.56-4.28,3.12a3.27,3.27,0,0,1-5.46,0c-1.55-2.34-3.5-3.12-5.45-2.34s-3.89,2.34-6.23,1.17S2391,49,2389,51.29s-4.28,2-6.23,2.34-3.89.38-5.84,1.16-6.23,2-6.23,2-2.73,3.89-3.89,4.68-4.29.77-4.68-.4-6.22-1.55-6.22-1.55-5.85,2-7.79,2.33-4.68,2.73-6.24,3.12a12.6,12.6,0,0,1-6.62,0c-2.72-.78-5.06.39-8.17.39s-5.45-.39-7,0-4.29-.39-2.73-1.56-1.95-2.33-1.95-2.33-1.16-2.74-2.33-1.18-2.34,2.73-4.68,2.73-4.28,0-5.84.78.39-2.33-1.55-2.33-2.73,0-3.9,2.33a5.56,5.56,0,0,1-3.89,2.73s-2.35-3.12-3.12-2-3.9,2.34-5.84,2.72-3.9-2.33-4.68-1.16a4.79,4.79,0,0,1-3.88,1.94c-1.57,0-6.24-.78-6.24-.78a19.16,19.16,0,0,0-5.06-1.16,13,13,0,0,0-5.85,1.55c-1.16.78-5.84,1.18-7,1.18s-6.62-1.18-7.78-1.18-5.47-1.94-7.41-2.33-3.12,0-5.84-1.17-3.9-.78-6.23-2-3.89.78-5.06-.39a2.61,2.61,0,0,0-3.9,0c-1.17,1.17-1.56,1.56-3.5.78A20.79,20.79,0,0,0,2205.6,61h-6.22c-1.17,0-3.12-1.55-3.12-1.55a10.72,10.72,0,0,0-3.12,1.16c-1.16.79-2.33,1.57-3.5,0s-3.89-2.72-4.28-1.55-1.56,2.72-3.51,1.94-4.67.4-4.67.4-3.89.38-5.06-.4-4.29-2.34-5.46-1.55-5.45,3.89-5.45,3.89-5.45,1.56-6.23.39-1.56-1.56-2.33-2.73-2.34-.39-4.29-1.55a30.37,30.37,0,0,0-3.89-1.95,40.6,40.6,0,0,0-5.06.78,9,9,0,0,0-3.89,3.12,5.82,5.82,0,0,1-5.07,2.33c-2.34,0-5.84,1.17-8.18,1.17s-2.34-1.17-3.9-3.12-7-2.72-8.17-2.72-3.51-.4-5.46-.4-4.28,3.12-6.61,3.12-6.23-1.94-6.23-1.94-3.11.38-5.07.38-3.11-1.16-5.06-1.16-3.11-.78-4.67-1.17-3.51-1.17-5.45-.78-4.28,1.17-5.85,1.17-1.55-.39-4.27,0-3.9,2.33-4.29.78,1.17-.4-.4-1.56-4.27-1.17-5.44-1.17-4.28,1.95-5.45,2.73-3.12,1.94-4.29,1.94-2-2.34-3.5-1.94-3.89,3.11-6.23,2.34a30.31,30.31,0,0,0-6.63-1.56c-1.16,0-3.5,1.16-3.5-.39s-2.72-3.12-2.72-3.12c-1.56.39-2.72,0-4.68.39s-5.84-.78-7-.78h-5.07c-1.17,0-3.89-.39-5.06,0s-2.73,2.34-3.89,2.34h-3.51c-1.16,0-3.11-.78-4.67,0s-3.12,3.12-5.06,2.72-.78-1.16-.78-2.34-.39-1.94-1.95-1.94-3.12.78-7,0-5.07-.39-7,.39-6.23.78-6.23.78-4.67-.78-5.84-.78-3.89,1.95-7,1.95-10.13.78-12.07,1.55-3.12,2.34-6.23,1.95-5.85-1.56-7-.38-4.67,1.94-5.83,2.33a17.83,17.83,0,0,1-3.89.39,2.69,2.69,0,0,1-1.18-2c0-1.17-1.16-2.34-2.33-1.55s-4.29,2.33-4.29,2.33-3.11,2.34-3.11.78,2.34-2.73,1.55-3.9-4.67-2.33-7-1.16-7.4,1.16-7.4,1.16a46.38,46.38,0,0,0-5.45.39c-2.73.4-7,.4-8.18-.39s-4.68-.77-4.68-.77-4.67-1.18-6.23-1.56a50.46,50.46,0,0,0-8.56-1.17c-2.34,0-7,.78-8.18,1.55s-7.39,0-9.73,0h-5.84c-1.17,0-6.63-.77-8.18.4s-5.07,3.12-7,2.72a49.53,49.53,0,0,0-7-.78c-1.55,0-6.62-.39-9.35.4s-2.72.38-7,.78-5.06,1.55-7,.38-3.12-1.56-4.28-2.34-2.73,0-5.45-.77-3.51-1.95-5.84-2.34a34.11,34.11,0,0,0-7.79-.78c-4.29,0-8.18,0-10.13-1.17a14.48,14.48,0,0,0-6.23-1.55c-1.17,0-6.23,3.89-6.23,3.89s-5.06-.39-6.23-1.17,2.34-3.11-.78-3.89-5.84-.39-7,.39-5.46.78-5.46.78-4.67-1.56-7-1.17a82.42,82.42,0,0,1-8.17,1.17c-1.56,0-7,0-8.19.77s-6.61,1.56-6.61,1.56-5.46-.39-7.4-1.56-6.62-1.16-9.35-.39-5.06,4.67-7.4,3.51-5.84-3.12-7.78-3.12-7,.78-7.41-.77a17,17,0,0,1-.77-4.29c0-1.56-4.29-3.5-4.29-3.5s-4.67.78-6.22,2.33a24.71,24.71,0,0,1-7.79,5.07,9.46,9.46,0,0,1-7.41-.39c-1.94-.78-7,.78-8.56,2.33s-3.12.78-3.9-.78-5.45-1.94-6.62-1.94-6.23-.39-8.56,1.17-5.46,3.89-6.63,2.33-6.61-2.33-8.56-3.5-2.73-3.12-5.07-3.9-4.67-1.16-6.62-1.94-4.66-2.73-6.61-2.73a11.33,11.33,0,0,1-5.46-1.17c-1.16-.78-5.45-.78-6.61-1.56a18.6,18.6,0,0,0-7-1.94c-1.94,0-5.84.78-7.78-1.17a19.63,19.63,0,0,0-5.07-3.9c-1.56-.77-4.28,0-5.84-1.94s0-4.29-2.72-4.29-4.29.39-5.85-.39a10.72,10.72,0,0,0-5.06-1.16,10.68,10.68,0,0,1-4.67-.78c-2.33-.78-5.06-1.56-7-.78s-5.85-2.34-7.79-.78-8.18,5.84-9.73,3.89-2-3.89-3.9-5.06a11.72,11.72,0,0,0-6.23-1.95c-2.34,0-3.11,2.73-5.45,2.73s-6.62-1.95-7.79-.78-3.9,3.5-5.06,1.95-3.9-2.34-4.68-1.17-4.28,2.73-4.28.78-.78-3.9-2-4.29a15,15,0,0,0-4.67-.38c-2.34,0-6.23.77-7,1.94s-4.67,3.12-5.45,1.56-4.67-2.73-5.84-2.73-7,.39-7,.39-3.51-2.33-5.06-.78-5.46,2.73-7,2.34-5.06.78-7.79.78-5.84-2.34-7.4-1.17-4.68,4.67-5.84,3.12-3.89-2.34-5.45-1.56-7,2.72-8.57,2.34a14.59,14.59,0,0,0-7,.77c-1.56.78-5.45,1.17-6.62,0s-2.33-1.16-4.67-.38-6.23,2.72-7.4,1.55a5,5,0,0,0-4.67-1.55c-2,.38-7,.77-10.13,1.16s-4.28,2.34-6.62,2.34-5.06-.39-6.62,0-3.12,1.17-5.45.39-5.46-1.56-7-2-4.67,1.56-7,1.17-3.5-2.33-6.62-1.17-5.06-.38-7.79,0-3.9,3.9-7,2.34-6.24-2.34-7-3.5-6.23-2.73-7.39-2.34a47.5,47.5,0,0,0-6.63,2.72c-1.16.78-7.79-.38-10.51-.78a51.19,51.19,0,0,0-7-.38c-1.56,0-3.9.39-5.06-1.56s-5.06-1.56-6.23-1.17-3.51-3.51-3.51-3.51h-5.84c-1.17,0-3.5-3.89-4.28-1.94s-3.51,3.12-4.68,3.12a38.45,38.45,0,0,1-6.62-.79c-1.17-.39-3.89,1.95-5.45,2.34a13.14,13.14,0,0,0-4.67,2.34c-1.56,1.17-8.17,3.89-9.35,4.67s-2.33,2.34-5.84,3.89a82.14,82.14,0,0,1-9,3.51c-3.5,1.17-7,1.95-7-.78s-5.85,0-4.29-2.34.39-2.72.39-3.89-1.94-2.33-4.67-.78a5.83,5.83,0,0,1-5.45,0s-2.34-3.89-4.29-3.89-4.28,0-5.84,1.94-3.89,2.73-5.06,1.17-8.17-.39-9.73,0a18.9,18.9,0,0,1-6.63,0,21.47,21.47,0,0,0-7-.39c-2,.39-7,.78-7,.78a20.9,20.9,0,0,0-5.45-2.72c-2.73-.78-5.85-.78-8.57-1.95s-6.62-2-7.4,0-1.56,1.95-4.28,1.95-7.79,0-9,.38-4.67.4-6.23.4-4.29,3.11-5.84,1.55-2.34-1.55-4.68.39-4.28,2.73-5.45,1.17S1035,26,1033.85,26s-6.22,1.55-8.17,1.55-4.29.78-7,0-6.62-1.94-7.79-.78-2.72,4.68-5.06,4.68-7.4-.39-9-1.17-4.29-.39-6.23.78-.39,3.11-3.51,2.72-4.67-1.16-5.83.39-2.73,4.68-5.07,3.9-2.33-1.56-3.5-2.72-4.29-2.73-7-1.18-5.45,2.73-8.18,2-5.84-1.55-8.18-.77a16.27,16.27,0,0,0-5.84,3.11c-1.17,1.17-3.12.39-4.67-.78s-5.45-2.33-6.23-.39a5.54,5.54,0,0,1-5.07,3.5c-2.33,0-3.89,2.34-7,1.95a21,21,0,0,0-7.41.39c-1.55.39-2.72,1.56-4.28,3.12s-3.89,2.33-4.67,1.16-4.28-2.72-5.06-1.16A4.77,4.77,0,0,1,893.27,49c-3.5-.78-3.11-.39-4.67,1.56a6.59,6.59,0,0,1-5.06,2.34c-1.16,0-.39,3.11-4.28,3.11s-4.29.78-6.62-.78-3.12-1.55-6.23-1.55a9.63,9.63,0,0,1-6.62-3.12c-1.17-1.17-1.95-.39-5.85-.39s-7,3.12-9.73,2-5.84-1.56-11.29-2-4.29,0-8.18-1.17-5.45-3.11-7.79-2-5.84,2.34-7,1.56-7,0-9-.78-5.45-1.17-9.73-1.55-11.29-.78-12.46-2.34-4.29.78-7.4-1.56-5.84-1.95-7-3.5-3.12-1.56-4.28-3.12-3.12-1.16-5.46-.78-7.4-3.11-10.51-2-4.68,3.9-8.18,3.9-5.84-1.17-7.78,0-7.79,1.17-10.13,1.17-6.23-3.12-8.18-1.17S706,40.77,704,40.38s-7.4-1.16-8.57-.77a30.89,30.89,0,0,1-6.62.77c-2,0-3.5.78-6.62.78s-4.67-.78-8.18.78-5.45,2-7.78.78-9.35,0-10.13-3.11,1.17-5.07-2.72-4.29-5.84.78-6.62-.39-3.51-4.28-7.4-4.28-9-1.56-9-3.9-4.67-1.55-5.45-3.89-1.56-3.5-4.67-4.28a33.87,33.87,0,0,0-8.18-1.17c-2.34,0-3.9.38-6.23-.78s-3.51-3.51-6.62-3.12-6.62,2-9,1.17-5.45,0-7-.77-5.45,1.55-7.4,1.16-5.45,1.17-7.78,1.17a16.48,16.48,0,0,1-7-1.17c-3.11-1.16-5.45-3.11-7.39-3.89s-5.46-2.34-9.35-1.56-5.84,0-7.79-.39-7,0-10.12-.39S517.1,3,516.32,4.56s-.78,4.67-4.28,2.72-3.12-1.17-4.67.4-4.68.77-4.68.77-3.5,2.34-4.28.39a3.17,3.17,0,0,0-5.06-1.16c-1.56,1.55-3.12,1.16-4.68.39S486,5.34,482.83,6.51s-3.11,2.33-4.67.38-3.51-.39-7.79-.78-5.06-2.72-8.18.4-4.67,4.67-6.62,1.56-5.84-2-10.12-2-7,0-10.13,2a14.6,14.6,0,0,1-9.73,2.33c-3.51-.39-5.84-1.56-9-.39a35.3,35.3,0,0,1-10.12,2c-2.34,0-8.57-1.17-10.13,0s-7,6.23-7.79,3.11,2-5.45-1.17-6.23-7.39,0-9.73,0-5.45-.77-6.23,1.17-6.23,3.89-9,2a27.54,27.54,0,0,0-8.57-3.89c-2.72-.79-11.29-1.18-13.62-.39a48.36,48.36,0,0,0-9,4.67c-2.34,1.56-3.9.77-7.79,1.94s-9.35,3.12-10.9,1.17a7,7,0,0,0-7.4-2.73c-3.51.78-4.68,2.34-8.57,1.18s-5.84-2.73-7.4-2.73-5.84.78-10.51,0-5.85-.39-9-1.17-5.45.39-9,0-7.78-1.56-9.34-.78-5.84,4.28-9,4.28-3.5.4-5.06,1.17a19.34,19.34,0,0,1-6.23,1.17c-1.17,0-1.17,2.34-5.06,3.9s-3.51.77-7.4,1.55-9.35,5.07-10.51,5.07a25.83,25.83,0,0,1-6.63-.78c-3.11-.78-5.83,1.94-7.39,3.11s-9.35,3.9-11.3,3.9-8.57-.39-10.9-1.56-7.79.78-9.35,1.56-7.78.78-9.73.78-7.4-.4-8.57,0-3.5,0-6.23,1.94a7.55,7.55,0,0,1-7.4,1.17c-2.34-.78-5.06,2.73-7.79,0s-7.4-4.28-10.9-4.67-7.79,1.17-11.3-.39-3.89-2.34-7.39-1.56S88,32.6,84.07,31.43A22.77,22.77,0,0,0,74,31c-2.34.39-6.24,1.17-8.57.39s-6.62-1.95-9-1.17a11.22,11.22,0,0,0-5.06,3.12c-1.56,1.55-3.5,4.28-6.23,3.89s-5.06-.78-6.23.39-3.12,3.11-6.23,3.11a10.36,10.36,0,0,0-6.23,2.34c-1.17.78-5.84,2-7.79,3.12s-3.12,1.94-8.18,1.94-5.45,0-7.79-1.94A7.57,7.57,0,0,0,1,45.09V73.66H0V0Z" fill="%23fff"/%3E%3C/svg%3E') top -0.125rem center repeat-x;
  background-size: 110%;
  overflow: hidden;
}

/**
 * Flexbox
 */

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

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

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

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

/**
 * Misc
 */

.u-overflow--hidden {
  overflow: hidden;
}

.u-width--100p {
  width: 100%;
}


/*# sourceMappingURL=main.css.map*/