@charset "UTF-8";
/**
 * Function to access $verticalSpacing map
 */
/*

Vertical Rhythm Mixin

This mixin is to help create a typograhpical baseline grid but also to allow for specifying different line heights or bottom margins if you need to.

In this mixin you can specifiy the font size in PX and it will calculate the REM based on your $doc-font-size & $doc-line-height variables.

	@include font-size(24);

It will also create a bottom margin based on the $doc-font-size & $doc-line-height variables unless you specify that it shouldn't have one -

	@include font-size(24, no);

Or if you want to specify a different bottom margin to be generated -

	@include font-size(24,32);

This mixin also generates a pixel-less line height by default unless you specify that you either don't want one where I'd suggest declaring 1 within the mixin -

	@include font-size(24, yes, 1);

There's also the option to specify a different line-height for it to generate to, where you would specify the line-height in (effectively) it's pixel value -

	@include font-size(24, yes, 40);

*/
/*

	REMs with PX fallback mixin

	Sometimes you would only want to define the fonts' size on an element.
	Rather than make the vertical rhythm mixin more convoluted here is a separate mixin
	to be used to give REMs for modern browsers and PX for OldIE and Opera mini

*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}


.h-ir {
  color: transparent;
  font: 0/0 a;
  text-shadow: none;
}

.title--with-decoration:after, .g-logo,
.h-hide-text {
  text-indent: 300%;
  white-space: nowrap;
  overflow: hidden;
}

@media all and (-ms-high-contrast: none) {
  .h-hide-text {
    /* IE10 */
    text-indent: -9999px;
  }
  *::-ms-backdrop, .h-hide-text {
    /* IE11 */
    text-indent: -9999px;
  }
}


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

.screen-reader-response,
.h-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.focusable.screen-reader-response:active, .focusable.screen-reader-response:focus,
.h-visually-hidden.focusable:active,
.h-visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* Text meant only for screen readers. */
.h-screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.h-screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}


.cf:before,
.cf:after {
  content: "";
  display: table;
}


.cf:after {
  clear: both;
}

.widget > ul,
.h-plain-list {
  list-style: none;
  list-style-image: none;
}


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


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


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


.h-float-left {
  float: left;
}


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


.h-centered {
  margin-right: auto;
  margin-left: auto;
}

.h-skipnav {
  background: transparent;
  color: #000000;
  left: 0;
  padding: 1rem 1.5rem;
  position: absolute;
  top: -4.2rem;
  transition: all 0.2s ease-in-out;
  z-index: 100;
}

.h-skipnav:focus {
  background: #FFFFFF;
  left: 0;
  outline: 0;
  position: absolute;
  top: 0;
  transition: all 0.2s ease-in-out;
}

/*
 * Space object
 * ------------
 *
 * Adds typographic spacing to an element.
 *
 * This object is extended by some core
 * typographic elements.
 *
 *     <div class="space"> ... </div>
 *     <p> ... </p>
 */
.owl-spacing > * + * {
  margin-top: 0.875rem;
}

@media all and (min-width: 64em) {
  .owl-spacing > * + * {
    margin-top: 1rem;
  }
}

.special-owl-spacing > * + *,
.special-owl-spacing > * > * + *,
.special-owl-spacing > * > * > * + *,
.special-owl-spacing > * > * > * > * + * {
  margin-top: 0.875rem;
}

@media all and (min-width: 64em) {
  .special-owl-spacing > * + *,
  .special-owl-spacing > * > * + *,
  .special-owl-spacing > * > * > * + *,
  .special-owl-spacing > * > * > * > * + * {
    margin-top: 1rem;
  }
}

@media all and (max-width: 29.9375em) {
  .owl-spacing--until-xsmall > * + * {
    margin-top: 0.875rem;
  }
}

@media all and (max-width: 37.4375em) {
  .owl-spacing--until-small > * + * {
    margin-top: 0.875rem;
  }
}

@media all and (max-width: 47.9375em) {
  .owl-spacing--until-medium > * + * {
    margin-top: 0.875rem;
  }
}

@media all and (max-width: 63.9375em) {
  .owl-spacing--until-large > * + * {
    margin-top: 0.875rem;
  }
}

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

.owl-spacing--quarter > * + * {
  margin-top: 0.21875rem;
}

@media all and (min-width: 64em) {
  .owl-spacing--quarter > * + * {
    margin-top: 0.25rem;
  }
}

.owl-spacing--half > * + * {
  margin-top: 0.4375rem;
}

@media all and (min-width: 64em) {
  .owl-spacing--half > * + * {
    margin-top: 0.5rem;
  }
}

@media all and (max-width: 29.9375em) {
  .owl-spacing--half--until-xsmall > * + * {
    margin-top: 0.4375rem;
  }
}

@media all and (max-width: 37.4375em) {
  .owl-spacing--half--until-small > * + * {
    margin-top: 0.4375rem;
  }
}

@media all and (max-width: 47.9375em) {
  .owl-spacing--half--until-medium > * + * {
    margin-top: 0.4375rem;
  }
}

.owl-spacing--double > * + * {
  margin-top: 1.75rem;
}

@media all and (min-width: 64em) {
  .owl-spacing--double > * + * {
    margin-top: 2rem;
  }
}

@media all and (max-width: 37.4375em) {
  .owl-spacing--double--until-small > * + * {
    margin-top: 1.75rem;
  }
}

@media all and (max-width: 47.9375em) {
  .owl-spacing--double--until-medium > * + * {
    margin-top: 1.75rem;
  }
}

.owl-spacing--triple > * + * {
  margin-top: 2.625rem;
}

@media all and (min-width: 64em) {
  .owl-spacing--triple > * + * {
    margin-top: 3rem;
  }
}

@media all and (min-width: 37.5em) {
  .owl-spacing--triple--from-small > * + * {
    margin-top: 2.625rem;
  }
}

@media all and (max-width: 37.4375em) {
  .owl-spacing--triple--until-small > * + * {
    margin-top: 2.625rem;
  }
}

@media all and (max-width: 47.9375em) {
  .owl-spacing--triple--until-medium > * + * {
    margin-top: 2.625rem;
  }
}

.owl-spacing--quad > * + * {
  margin-top: 3.5rem;
}

@media all and (min-width: 64em) {
  .owl-spacing--quad > * + * {
    margin-top: 4rem;
  }
}

/**
 * Padding Above object
 * ------------------
 *
 * Adds padding to the top of an element.
 *
 *     <p class="space-above"> ... </p>
 *     <p> ... </p>
 */
.owl-padding > * + * {
  padding-top: 0.875rem;
}

@media all and (min-width: 64em) {
  .owl-padding > * + * {
    padding-top: 1rem;
  }
}

.owl-padding--double > * + * {
  padding-top: 1.75rem;
}

@media all and (min-width: 64em) {
  .owl-padding--double > * + * {
    padding-top: 2rem;
  }
}

.owl-padding--triple > * + * {
  padding-top: 2.625rem;
}

@media all and (min-width: 64em) {
  .owl-padding--triple > * + * {
    padding-top: 3rem;
  }
}

/**
 * Space Above object
 * ------------------
 *
 * Adds typographic spacing to the top of an element.
 *
 *     <p class="space-above"> ... </p>
 *     <p> ... </p>
 */
.space-above {
  margin-top: 0.875rem;
}

@media all and (min-width: 64em) {
  .space-above {
    margin-top: 1rem;
  }
}

@media all and (max-width: 63.9375em) {
  .space-above--until-large {
    margin-top: 0.875rem;
  }
}

.space-above--half {
  margin-top: 0.4375rem;
}

@media all and (min-width: 64em) {
  .space-above--half {
    margin-top: 0.5rem;
  }
}

.space-above--none {
  margin-top: 0;
}

.space-above--double {
  margin-top: 1.75rem;
}

@media all and (min-width: 64em) {
  .space-above--double {
    margin-top: 2rem;
  }
}

.space-above--triple {
  margin-top: 2.625rem;
}

@media all and (min-width: 64em) {
  .space-above--triple {
    margin-top: 3rem;
  }
}

@media all and (max-width: 47.9375em) {
  .space-above--triple--until-medium {
    margin-top: 2.625rem;
  }
}

/**
 * Space Below object
 * ------------------
 *
 * Adds typographic spacing to the bottom of an element.
 *
 *     <p class="space-below"> ... </p>
 *     <p> ... </p>
 */
.space-below {
  margin-bottom: 0.875rem;
}

@media all and (min-width: 64em) {
  .space-below {
    margin-bottom: 1rem;
  }
}

.space-below--double {
  margin-bottom: 1.75rem;
}

@media all and (min-width: 64em) {
  .space-below--double {
    margin-bottom: 2rem;
  }
}

.space-below--triple {
  margin-bottom: 2.625rem;
}

@media all and (min-width: 64em) {
  .space-below--triple {
    margin-bottom: 3rem;
  }
}

/*
 * Cramp object
 * ------------
 *
 * Remove typographic spacing from an element.
 *
 *     <p class="cramp"> ... </p>
 */
.cramp {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.cramp-upper {
  margin-top: 0 !important;
}

.cramp-lower {
  margin-bottom: 0 !important;
}

@media all and (min-width: 37.5em) and (max-width: 47.9375em) {
  .cramp--small-medium {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media all and (min-width: 48em) and (max-width: 63.9375em) {
  .cramp--medium-large {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media all and (min-width: 64em) {
  .cramp--large-up {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

/*

Base Styles
===========

HTML, BODY, #wrapper styles

*/
html {
  /* font-size needs to be set (in px) using the $doc-font-size variable which is called in the _bizarro.sass reset file */
  font-family: "Muli", "Helvetica Neue", Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
}

@-webkit-viewport {
  width: device-width;
}

@-moz-viewport {
  width: device-width;
}

@-ms-viewport {
  width: device-width;
}

@-o-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

*, *:before, *:after {
  box-sizing: border-box;
}

body {
  color: #242424;
  background-color: #b60000;
  min-width: 320px;
  overflow-x: hidden;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0;
}

@media all and (min-width: 64em) {
  body {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 1.19048;
    margin-bottom: 0;
  }
}

@media all and (max-width: 47.9375em) {
  #container {
    overflow-x: hidden;
  }
}

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

audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

ul, ol, dd, menu, dl, figure, pre, table, fieldset, legend, hr,
h1, h2, h3, h4, h5, h6, p, a {
  margin: 0;
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  width: 90%;
}

/*

Icons
======

*/
/* This triggers a redraw in IE to Fix IE8's :before content rendering. */
html:hover [class^="icon--"],
html:hover [class*=" icon--"],
html:hover [class^="icon--right-"]:after,
html:hover [class*=" icon--right-"]:after,
html:hover [class^="icon--left-"]:before,
html:hover [class*=" icon--left-"]:before {
  -ms-zoom: 1;
}

.icon,
[class^="icon--right-"]:after,
[class*=" icon--right-"]:after,
[class^="icon--left-"]:before,
[class*=" icon--left-"]:before {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 2rem;
  height: 2rem;
  fill: currentColor;
  background-size: 2rem;
}

[class*="icon--left-"],
[class*="icon--right-"] {
  position: relative;
}

[class*="icon--left-"] {
  padding-left: 52px !important;
}

[class*="icon--right-"] {
  padding-right: 52px !important;
}

[class*="icon--left-"]:before,
[class*="icon--right-"]:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

[class*="icon--left-"]:before {
  left: 10px;
}

[class*="icon--right-"]:after {
  right: 10px;
}

.icon.icon--xsmall,
.icon--xsmall:before,
.icon--xsmall:after {
  width: 0.625rem;
  height: 0.625rem;
  background-size: 0.625rem;
}

.icon.icon--small,
.icon--small:before,
.icon--small:after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
}

.icon--small[class*="icon--left-"] {
  padding-left: 27px !important;
}

.icon--small[class*="icon--left-"]:before {
  left: 5px;
}

.icon--small[class*="icon--right-"] {
  padding-right: 27px !important;
}

.icon--small[class*="icon--right-"]:after {
  right: 5px;
}

.icon--large,
.icon--large:before,
.icon--large:after {
  width: 4rem;
  height: 4rem;
  background-size: 4rem;
}

.icon--large[class*="icon--left-"] {
  padding-left: 94px !important;
}

.icon--large[class*="icon--left-"]:before {
  left: 15px;
}

.icon--large[class*="icon--right-"] {
  padding-right: 94px !important;
}

.icon--large[class*="icon--right-"]:after {
  right: 15px;
}

/* =======================================================================================
Example showing how to change the color/size of the icons:
.icon--name {
	font-size: 32px; // works because "width" & "height" were set using em units
	color: red; // works for single-colored icons, because "fill" was set to "currentColor"
}

.icon-tomato,
.icon--left-tomato:before,
.icon--right-tomato:after {
	background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/131442/tomato.svg);
}

Inline:
<span class="icon icon-{icon-name}"></span>

Prepend:
<div class="icon--left-{icon-name}"></div>

Append:
<div class="icon--right-{icon-name}"></div>

Size modifiers:
<span class="icon icon-{icon-name} icon--small"></span>
<div class="icon--right-{icon-name} icon--large"></div>
<span class="icon icon-{icon-name} icon--responsive"></span>


======================================================================================== */
/* Arrow Icons */
.icon-down-arrow,
.icon--left-down-arrow:before,
.icon--right-down-arrow:after {
  background-image: url("../img/icons/svg/icon--down-arrow.svg");
  transform: translate(0, 0);
  transition: all 0.25s ease;
}

.rotated .icon-down-arrow, .rotated
.icon--left-down-arrow:before, .rotated
.icon--right-down-arrow:after {
  transform: rotate(180deg);
}

.icon-down-arrow--white,
.icon--left-down-arrow--white:before,
.icon--right-down-arrow--white:after {
  background-image: url("../img/icons/svg/icon--down-arrow-white.svg");
  transform: translate(0, 0);
  transition: all 0.25s ease;
}

.rotated .icon-down-arrow--white, .rotated
.icon--left-down-arrow--white:before, .rotated
.icon--right-down-arrow--white:after {
  transform: rotate(180deg);
}

/* Search Icon */
.icon-search,
.icon--left-search:before,
.icon--right-search:after {
  background-image: url("../img/icons/svg/icon--search.svg");
}

/* Contact/Location Icons */
.icon-phone,
.icon--left-phone:before,
.icon--right-phone:after {
  background-image: url("../img/icons/svg/icon--phone.svg");
}

.icon-email,
.icon--left-email:before,
.icon--right-email:after {
  background-image: url("../img/icons/svg/icon--email.svg");
  margin-top: 0.25rem;
}

.icon-location,
.icon--left-location:before,
.icon--right-location:after {
  background-image: url("../img/icons/svg/icon--location.svg");
  margin-top: 0.25rem;
}

/* Social Icons */
.icon-instagram,
.icon--left-instagram:before,
.icon--right-instagram:after {
  background-image: url("../img/icons/svg/icon--instagram.svg");
}

main .icon-instagram,
main .icon--left-instagram:before,
main .icon--right-instagram:after {
  background-image: url("../img/icons/svg/icon--instagram-green.svg");
}

.icon-twitter,
.icon--left-twitter:before,
.icon--right-twitter:after {
  background-image: url("../img/icons/svg/icon--twitter.svg");
}

main .icon-twitter,
main .icon--left-twitter:before,
main .icon--right-twitter:after {
  background-image: url("../img/icons/svg/icon--twitter-green.svg");
}

/*

Images
======

    <img alt="" class="img-rounded" src="http://fillmurray.com/300/300" />
    <img alt="" class="img-circle" src="http://fillmurray.com/300/300" />
    <img alt="" class="img-polaroid" src="http://fillmurray.com/300/300" />

*/
img {
  max-width: 100%;
  height: auto !important;
  border-width: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

.img-rounded {
  border-radius: 4px;
}

.img-circle {
  border-radius: 50%;
}

.img-polaroid {
  background-color: #FFFFFF;
  border: 1px solid #e6e6e6;
  box-shadow: 0 1px 3px rgba(0, 0, 3, 0.2);
  padding: 12px;
}

img.fullwidth,
.post-thumbnail--fullwidth img {
  width: 100%;
  max-width: auto;
}

/*

Figure & Figcaption
===================

    <figure>
        <img alt="" src="img/tmp/rock-hammer-1.jpg">
        <figcaption>Figure caption</figcaption>
    </figure>

*/
/*

Grids
=====

*/
/* ==========================================================================
    GRIDLEX
    Just a Flexbox Grid System - v. 2.7.1
========================================================================== */
[class~="grid"],
[class*="grid-"],
[class*="grid_"] {
  box-sizing: border-box;
  display: flex;
  flex-flow: row wrap;
  margin: 0 -1rem;
}

[class~="col"],
[class*="col-"],
[class*="col_"] {
  box-sizing: border-box;
  padding: 0 1rem 1rem;
  max-width: 100%;
}

[class~="col"],
[class*="col_"] {
  flex: 1 1 0%;
}

[class*="col-"] {
  flex: none;
}

[class~="grid"][class~="col"],
[class~="grid"][class*="col-"],
[class~="grid"][class*="col_"],
[class*="grid-"][class~="col"],
[class*="grid-"][class*="col-"],
[class*="grid-"][class*="col_"],
[class*="grid_"][class~="col"],
[class*="grid_"][class*="col-"],
[class*="grid_"][class*="col_"] {
  margin: 0;
  padding: 0;
}

/************************
    HELPERS SUFFIXES
*************************/
[class*="grid-"][class*="-noGutter"] {
  margin: 0;
}

[class*="grid-"][class*="-noGutter"] > [class~="col"],
[class*="grid-"][class*="-noGutter"] > [class*="col-"] {
  padding: 0;
}

[class*="grid-"][class*="-noWrap"] {
  flex-wrap: nowrap;
}

[class*="grid-"][class*="-center"] {
  justify-content: center;
}

[class*="grid-"][class*="-right"] {
  justify-content: flex-end;
  align-self: flex-end;
  margin-left: auto;
}

[class*="grid-"][class*="-top"] {
  align-items: flex-start;
}

[class*="grid-"][class*="-middle"] {
  align-items: center;
}

[class*="grid-"][class*="-bottom"] {
  align-items: flex-end;
}

[class*="grid-"][class*="-reverse"] {
  flex-direction: row-reverse;
}

[class*="grid-"][class*="-column"] {
  flex-direction: column;
}

[class*="grid-"][class*="-column"] > [class*="col-"] {
  flex-basis: auto;
}

[class*="grid-"][class*="-column-reverse"] {
  flex-direction: column-reverse;
}

[class*="grid-"][class*="-spaceBetween"] {
  justify-content: space-between;
}

[class*="grid-"][class*="-spaceAround"] {
  justify-content: space-around;
}

[class*="grid-"][class*="-equalHeight"] > [class~="col"],
[class*="grid-"][class*="-equalHeight"] > [class*="col-"],
[class*="grid-"][class*="-equalHeight"] > [class*="col_"] {
  align-self: stretch;
}

[class*="grid-"][class*="-equalHeight"] > [class~="col"] > *,
[class*="grid-"][class*="-equalHeight"] > [class*="col-"] > *,
[class*="grid-"][class*="-equalHeight"] > [class*="col_"] > * {
  height: 100%;
}

[class*="grid-"][class*="-noBottom"] > [class~="col"],
[class*="grid-"][class*="-noBottom"] > [class*="col-"],
[class*="grid-"][class*="-noBottom"] > [class*="col_"] {
  padding-bottom: 0;
}

[class*="col-"][class*="-top"] {
  align-self: flex-start;
}

[class*="col-"][class*="-middle"] {
  align-self: center;
}

[class*="col-"][class*="-bottom"] {
  align-self: flex-end;
}

[class*="col-"][class*="-first"] {
  order: -1;
}

[class*="col-"][class*="-last"] {
  order: 1;
}

/************************
    GRID BY NUMBER
*************************/
[class*="grid-1"] > [class~="col"],
[class*="grid-1"] > [class*="col-"],
[class*="grid-1"] > [class*="col_"] {
  flex-basis: 100%;
  max-width: 100%;
}

[class*="grid-2"] > [class~="col"],
[class*="grid-2"] > [class*="col-"],
[class*="grid-2"] > [class*="col_"] {
  flex-basis: 50%;
  max-width: 50%;
}

[class*="grid-3"] > [class~="col"],
[class*="grid-3"] > [class*="col-"],
[class*="grid-3"] > [class*="col_"] {
  flex-basis: 33.33333%;
  max-width: 33.33333%;
}

[class*="grid-4"] > [class~="col"],
[class*="grid-4"] > [class*="col-"],
[class*="grid-4"] > [class*="col_"] {
  flex-basis: 25%;
  max-width: 25%;
}

[class*="grid-5"] > [class~="col"],
[class*="grid-5"] > [class*="col-"],
[class*="grid-5"] > [class*="col_"] {
  flex-basis: 20%;
  max-width: 20%;
}

[class*="grid-6"] > [class~="col"],
[class*="grid-6"] > [class*="col-"],
[class*="grid-6"] > [class*="col_"] {
  flex-basis: 16.66667%;
  max-width: 16.66667%;
}

[class*="grid-7"] > [class~="col"],
[class*="grid-7"] > [class*="col-"],
[class*="grid-7"] > [class*="col_"] {
  flex-basis: 14.28571%;
  max-width: 14.28571%;
}

[class*="grid-8"] > [class~="col"],
[class*="grid-8"] > [class*="col-"],
[class*="grid-8"] > [class*="col_"] {
  flex-basis: 12.5%;
  max-width: 12.5%;
}

[class*="grid-9"] > [class~="col"],
[class*="grid-9"] > [class*="col-"],
[class*="grid-9"] > [class*="col_"] {
  flex-basis: 11.11111%;
  max-width: 11.11111%;
}

[class*="grid-10"] > [class~="col"],
[class*="grid-10"] > [class*="col-"],
[class*="grid-10"] > [class*="col_"] {
  flex-basis: 10%;
  max-width: 10%;
}

[class*="grid-11"] > [class~="col"],
[class*="grid-11"] > [class*="col-"],
[class*="grid-11"] > [class*="col_"] {
  flex-basis: 9.09091%;
  max-width: 9.09091%;
}

[class*="grid-12"] > [class~="col"],
[class*="grid-12"] > [class*="col-"],
[class*="grid-12"] > [class*="col_"] {
  flex-basis: 8.33333%;
  max-width: 8.33333%;
}

@media (max-width: 80em) {
  [class*="_lg-1"] > [class~="col"],
  [class*="_lg-1"] > [class*="col-"],
  [class*="_lg-1"] > [class*="col_"] {
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*="_lg-2"] > [class~="col"],
  [class*="_lg-2"] > [class*="col-"],
  [class*="_lg-2"] > [class*="col_"] {
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*="_lg-3"] > [class~="col"],
  [class*="_lg-3"] > [class*="col-"],
  [class*="_lg-3"] > [class*="col_"] {
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class*="_lg-4"] > [class~="col"],
  [class*="_lg-4"] > [class*="col-"],
  [class*="_lg-4"] > [class*="col_"] {
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*="_lg-5"] > [class~="col"],
  [class*="_lg-5"] > [class*="col-"],
  [class*="_lg-5"] > [class*="col_"] {
    flex-basis: 20%;
    max-width: 20%;
  }
  [class*="_lg-6"] > [class~="col"],
  [class*="_lg-6"] > [class*="col-"],
  [class*="_lg-6"] > [class*="col_"] {
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class*="_lg-7"] > [class~="col"],
  [class*="_lg-7"] > [class*="col-"],
  [class*="_lg-7"] > [class*="col_"] {
    flex-basis: 14.28571%;
    max-width: 14.28571%;
  }
  [class*="_lg-8"] > [class~="col"],
  [class*="_lg-8"] > [class*="col-"],
  [class*="_lg-8"] > [class*="col_"] {
    flex-basis: 12.5%;
    max-width: 12.5%;
  }
  [class*="_lg-9"] > [class~="col"],
  [class*="_lg-9"] > [class*="col-"],
  [class*="_lg-9"] > [class*="col_"] {
    flex-basis: 11.11111%;
    max-width: 11.11111%;
  }
  [class*="_lg-10"] > [class~="col"],
  [class*="_lg-10"] > [class*="col-"],
  [class*="_lg-10"] > [class*="col_"] {
    flex-basis: 10%;
    max-width: 10%;
  }
  [class*="_lg-11"] > [class~="col"],
  [class*="_lg-11"] > [class*="col-"],
  [class*="_lg-11"] > [class*="col_"] {
    flex-basis: 9.09091%;
    max-width: 9.09091%;
  }
  [class*="_lg-12"] > [class~="col"],
  [class*="_lg-12"] > [class*="col-"],
  [class*="_lg-12"] > [class*="col_"] {
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
}

@media (max-width: 64em) {
  [class*="_md-1"] > [class~="col"],
  [class*="_md-1"] > [class*="col-"],
  [class*="_md-1"] > [class*="col_"] {
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*="_md-2"] > [class~="col"],
  [class*="_md-2"] > [class*="col-"],
  [class*="_md-2"] > [class*="col_"] {
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*="_md-3"] > [class~="col"],
  [class*="_md-3"] > [class*="col-"],
  [class*="_md-3"] > [class*="col_"] {
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class*="_md-4"] > [class~="col"],
  [class*="_md-4"] > [class*="col-"],
  [class*="_md-4"] > [class*="col_"] {
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*="_md-5"] > [class~="col"],
  [class*="_md-5"] > [class*="col-"],
  [class*="_md-5"] > [class*="col_"] {
    flex-basis: 20%;
    max-width: 20%;
  }
  [class*="_md-6"] > [class~="col"],
  [class*="_md-6"] > [class*="col-"],
  [class*="_md-6"] > [class*="col_"] {
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class*="_md-7"] > [class~="col"],
  [class*="_md-7"] > [class*="col-"],
  [class*="_md-7"] > [class*="col_"] {
    flex-basis: 14.28571%;
    max-width: 14.28571%;
  }
  [class*="_md-8"] > [class~="col"],
  [class*="_md-8"] > [class*="col-"],
  [class*="_md-8"] > [class*="col_"] {
    flex-basis: 12.5%;
    max-width: 12.5%;
  }
  [class*="_md-9"] > [class~="col"],
  [class*="_md-9"] > [class*="col-"],
  [class*="_md-9"] > [class*="col_"] {
    flex-basis: 11.11111%;
    max-width: 11.11111%;
  }
  [class*="_md-10"] > [class~="col"],
  [class*="_md-10"] > [class*="col-"],
  [class*="_md-10"] > [class*="col_"] {
    flex-basis: 10%;
    max-width: 10%;
  }
  [class*="_md-11"] > [class~="col"],
  [class*="_md-11"] > [class*="col-"],
  [class*="_md-11"] > [class*="col_"] {
    flex-basis: 9.09091%;
    max-width: 9.09091%;
  }
  [class*="_md-12"] > [class~="col"],
  [class*="_md-12"] > [class*="col-"],
  [class*="_md-12"] > [class*="col_"] {
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
}

@media (max-width: 47.9375em) {
  [class*="_sm-1"] > [class~="col"],
  [class*="_sm-1"] > [class*="col-"],
  [class*="_sm-1"] > [class*="col_"] {
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*="_sm-2"] > [class~="col"],
  [class*="_sm-2"] > [class*="col-"],
  [class*="_sm-2"] > [class*="col_"] {
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*="_sm-3"] > [class~="col"],
  [class*="_sm-3"] > [class*="col-"],
  [class*="_sm-3"] > [class*="col_"] {
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class*="_sm-4"] > [class~="col"],
  [class*="_sm-4"] > [class*="col-"],
  [class*="_sm-4"] > [class*="col_"] {
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*="_sm-5"] > [class~="col"],
  [class*="_sm-5"] > [class*="col-"],
  [class*="_sm-5"] > [class*="col_"] {
    flex-basis: 20%;
    max-width: 20%;
  }
  [class*="_sm-6"] > [class~="col"],
  [class*="_sm-6"] > [class*="col-"],
  [class*="_sm-6"] > [class*="col_"] {
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class*="_sm-7"] > [class~="col"],
  [class*="_sm-7"] > [class*="col-"],
  [class*="_sm-7"] > [class*="col_"] {
    flex-basis: 14.28571%;
    max-width: 14.28571%;
  }
  [class*="_sm-8"] > [class~="col"],
  [class*="_sm-8"] > [class*="col-"],
  [class*="_sm-8"] > [class*="col_"] {
    flex-basis: 12.5%;
    max-width: 12.5%;
  }
  [class*="_sm-9"] > [class~="col"],
  [class*="_sm-9"] > [class*="col-"],
  [class*="_sm-9"] > [class*="col_"] {
    flex-basis: 11.11111%;
    max-width: 11.11111%;
  }
  [class*="_sm-10"] > [class~="col"],
  [class*="_sm-10"] > [class*="col-"],
  [class*="_sm-10"] > [class*="col_"] {
    flex-basis: 10%;
    max-width: 10%;
  }
  [class*="_sm-11"] > [class~="col"],
  [class*="_sm-11"] > [class*="col-"],
  [class*="_sm-11"] > [class*="col_"] {
    flex-basis: 9.09091%;
    max-width: 9.09091%;
  }
  [class*="_sm-12"] > [class~="col"],
  [class*="_sm-12"] > [class*="col-"],
  [class*="_sm-12"] > [class*="col_"] {
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
}

@media (max-width: 37.5em) {
  [class*="_xs-1"] > [class~="col"],
  [class*="_xs-1"] > [class*="col-"],
  [class*="_xs-1"] > [class*="col_"] {
    flex-basis: 100%;
    max-width: 100%;
  }
  [class*="_xs-2"] > [class~="col"],
  [class*="_xs-2"] > [class*="col-"],
  [class*="_xs-2"] > [class*="col_"] {
    flex-basis: 50%;
    max-width: 50%;
  }
  [class*="_xs-3"] > [class~="col"],
  [class*="_xs-3"] > [class*="col-"],
  [class*="_xs-3"] > [class*="col_"] {
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class*="_xs-4"] > [class~="col"],
  [class*="_xs-4"] > [class*="col-"],
  [class*="_xs-4"] > [class*="col_"] {
    flex-basis: 25%;
    max-width: 25%;
  }
  [class*="_xs-5"] > [class~="col"],
  [class*="_xs-5"] > [class*="col-"],
  [class*="_xs-5"] > [class*="col_"] {
    flex-basis: 20%;
    max-width: 20%;
  }
  [class*="_xs-6"] > [class~="col"],
  [class*="_xs-6"] > [class*="col-"],
  [class*="_xs-6"] > [class*="col_"] {
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class*="_xs-7"] > [class~="col"],
  [class*="_xs-7"] > [class*="col-"],
  [class*="_xs-7"] > [class*="col_"] {
    flex-basis: 14.28571%;
    max-width: 14.28571%;
  }
  [class*="_xs-8"] > [class~="col"],
  [class*="_xs-8"] > [class*="col-"],
  [class*="_xs-8"] > [class*="col_"] {
    flex-basis: 12.5%;
    max-width: 12.5%;
  }
  [class*="_xs-9"] > [class~="col"],
  [class*="_xs-9"] > [class*="col-"],
  [class*="_xs-9"] > [class*="col_"] {
    flex-basis: 11.11111%;
    max-width: 11.11111%;
  }
  [class*="_xs-10"] > [class~="col"],
  [class*="_xs-10"] > [class*="col-"],
  [class*="_xs-10"] > [class*="col_"] {
    flex-basis: 10%;
    max-width: 10%;
  }
  [class*="_xs-11"] > [class~="col"],
  [class*="_xs-11"] > [class*="col-"],
  [class*="_xs-11"] > [class*="col_"] {
    flex-basis: 9.09091%;
    max-width: 9.09091%;
  }
  [class*="_xs-12"] > [class~="col"],
  [class*="_xs-12"] > [class*="col-"],
  [class*="_xs-12"] > [class*="col_"] {
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
}

/************************
    COLS SIZES
*************************/
[class~="grid"] > [class*="col-1"],
[class*="grid-"] > [class*="col-1"],
[class*="grid_"] > [class*="col-1"] {
  flex-basis: 8.33333%;
  max-width: 8.33333%;
}

[class~="grid"] > [class*="col-2"],
[class*="grid-"] > [class*="col-2"],
[class*="grid_"] > [class*="col-2"] {
  flex-basis: 16.66667%;
  max-width: 16.66667%;
}

[class~="grid"] > [class*="col-3"],
[class*="grid-"] > [class*="col-3"],
[class*="grid_"] > [class*="col-3"] {
  flex-basis: 25%;
  max-width: 25%;
}

[class~="grid"] > [class*="col-4"],
[class*="grid-"] > [class*="col-4"],
[class*="grid_"] > [class*="col-4"] {
  flex-basis: 33.33333%;
  max-width: 33.33333%;
}

[class~="grid"] > [class*="col-5"],
[class*="grid-"] > [class*="col-5"],
[class*="grid_"] > [class*="col-5"] {
  flex-basis: 41.66667%;
  max-width: 41.66667%;
}

[class~="grid"] > [class*="col-6"],
[class*="grid-"] > [class*="col-6"],
[class*="grid_"] > [class*="col-6"] {
  flex-basis: 50%;
  max-width: 50%;
}

[class~="grid"] > [class*="col-7"],
[class*="grid-"] > [class*="col-7"],
[class*="grid_"] > [class*="col-7"] {
  flex-basis: 58.33333%;
  max-width: 58.33333%;
}

[class~="grid"] > [class*="col-8"],
[class*="grid-"] > [class*="col-8"],
[class*="grid_"] > [class*="col-8"] {
  flex-basis: 66.66667%;
  max-width: 66.66667%;
}

[class~="grid"] > [class*="col-9"],
[class*="grid-"] > [class*="col-9"],
[class*="grid_"] > [class*="col-9"] {
  flex-basis: 75%;
  max-width: 75%;
}

[class~="grid"] > [class*="col-10"],
[class*="grid-"] > [class*="col-10"],
[class*="grid_"] > [class*="col-10"] {
  flex-basis: 83.33333%;
  max-width: 83.33333%;
}

[class~="grid"] > [class*="col-11"],
[class*="grid-"] > [class*="col-11"],
[class*="grid_"] > [class*="col-11"] {
  flex-basis: 91.66667%;
  max-width: 91.66667%;
}

[class~="grid"] > [class*="col-12"],
[class*="grid-"] > [class*="col-12"],
[class*="grid_"] > [class*="col-12"] {
  flex-basis: 100%;
  max-width: 100%;
}

[class~="grid"] > [data-push-left*="off-0"],
[class*="grid-"] > [data-push-left*="off-0"],
[class*="grid_"] > [data-push-left*="off-0"] {
  margin-left: 0;
}

[class~="grid"] > [data-push-left*="off-1"],
[class*="grid-"] > [data-push-left*="off-1"],
[class*="grid_"] > [data-push-left*="off-1"] {
  margin-left: 8.33333%;
}

[class~="grid"] > [data-push-left*="off-2"],
[class*="grid-"] > [data-push-left*="off-2"],
[class*="grid_"] > [data-push-left*="off-2"] {
  margin-left: 16.66667%;
}

[class~="grid"] > [data-push-left*="off-3"],
[class*="grid-"] > [data-push-left*="off-3"],
[class*="grid_"] > [data-push-left*="off-3"] {
  margin-left: 25%;
}

[class~="grid"] > [data-push-left*="off-4"],
[class*="grid-"] > [data-push-left*="off-4"],
[class*="grid_"] > [data-push-left*="off-4"] {
  margin-left: 33.33333%;
}

[class~="grid"] > [data-push-left*="off-5"],
[class*="grid-"] > [data-push-left*="off-5"],
[class*="grid_"] > [data-push-left*="off-5"] {
  margin-left: 41.66667%;
}

[class~="grid"] > [data-push-left*="off-6"],
[class*="grid-"] > [data-push-left*="off-6"],
[class*="grid_"] > [data-push-left*="off-6"] {
  margin-left: 50%;
}

[class~="grid"] > [data-push-left*="off-7"],
[class*="grid-"] > [data-push-left*="off-7"],
[class*="grid_"] > [data-push-left*="off-7"] {
  margin-left: 58.33333%;
}

[class~="grid"] > [data-push-left*="off-8"],
[class*="grid-"] > [data-push-left*="off-8"],
[class*="grid_"] > [data-push-left*="off-8"] {
  margin-left: 66.66667%;
}

[class~="grid"] > [data-push-left*="off-9"],
[class*="grid-"] > [data-push-left*="off-9"],
[class*="grid_"] > [data-push-left*="off-9"] {
  margin-left: 75%;
}

[class~="grid"] > [data-push-left*="off-10"],
[class*="grid-"] > [data-push-left*="off-10"],
[class*="grid_"] > [data-push-left*="off-10"] {
  margin-left: 83.33333%;
}

[class~="grid"] > [data-push-left*="off-11"],
[class*="grid-"] > [data-push-left*="off-11"],
[class*="grid_"] > [data-push-left*="off-11"] {
  margin-left: 91.66667%;
}

[class~="grid"] > [data-push-right*="off-0"],
[class*="grid-"] > [data-push-right*="off-0"],
[class*="grid_"] > [data-push-right*="off-0"] {
  margin-right: 0;
}

[class~="grid"] > [data-push-right*="off-1"],
[class*="grid-"] > [data-push-right*="off-1"],
[class*="grid_"] > [data-push-right*="off-1"] {
  margin-right: 8.33333%;
}

[class~="grid"] > [data-push-right*="off-2"],
[class*="grid-"] > [data-push-right*="off-2"],
[class*="grid_"] > [data-push-right*="off-2"] {
  margin-right: 16.66667%;
}

[class~="grid"] > [data-push-right*="off-3"],
[class*="grid-"] > [data-push-right*="off-3"],
[class*="grid_"] > [data-push-right*="off-3"] {
  margin-right: 25%;
}

[class~="grid"] > [data-push-right*="off-4"],
[class*="grid-"] > [data-push-right*="off-4"],
[class*="grid_"] > [data-push-right*="off-4"] {
  margin-right: 33.33333%;
}

[class~="grid"] > [data-push-right*="off-5"],
[class*="grid-"] > [data-push-right*="off-5"],
[class*="grid_"] > [data-push-right*="off-5"] {
  margin-right: 41.66667%;
}

[class~="grid"] > [data-push-right*="off-6"],
[class*="grid-"] > [data-push-right*="off-6"],
[class*="grid_"] > [data-push-right*="off-6"] {
  margin-right: 50%;
}

[class~="grid"] > [data-push-right*="off-7"],
[class*="grid-"] > [data-push-right*="off-7"],
[class*="grid_"] > [data-push-right*="off-7"] {
  margin-right: 58.33333%;
}

[class~="grid"] > [data-push-right*="off-8"],
[class*="grid-"] > [data-push-right*="off-8"],
[class*="grid_"] > [data-push-right*="off-8"] {
  margin-right: 66.66667%;
}

[class~="grid"] > [data-push-right*="off-9"],
[class*="grid-"] > [data-push-right*="off-9"],
[class*="grid_"] > [data-push-right*="off-9"] {
  margin-right: 75%;
}

[class~="grid"] > [data-push-right*="off-10"],
[class*="grid-"] > [data-push-right*="off-10"],
[class*="grid_"] > [data-push-right*="off-10"] {
  margin-right: 83.33333%;
}

[class~="grid"] > [data-push-right*="off-11"],
[class*="grid-"] > [data-push-right*="off-11"],
[class*="grid_"] > [data-push-right*="off-11"] {
  margin-right: 91.66667%;
}

@media (max-width: 80em) {
  [class~="grid"] > [class*="_lg-1"],
  [class*="grid-"] > [class*="_lg-1"],
  [class*="grid_"] > [class*="_lg-1"] {
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  [class~="grid"] > [class*="_lg-2"],
  [class*="grid-"] > [class*="_lg-2"],
  [class*="grid_"] > [class*="_lg-2"] {
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class~="grid"] > [class*="_lg-3"],
  [class*="grid-"] > [class*="_lg-3"],
  [class*="grid_"] > [class*="_lg-3"] {
    flex-basis: 25%;
    max-width: 25%;
  }
  [class~="grid"] > [class*="_lg-4"],
  [class*="grid-"] > [class*="_lg-4"],
  [class*="grid_"] > [class*="_lg-4"] {
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class~="grid"] > [class*="_lg-5"],
  [class*="grid-"] > [class*="_lg-5"],
  [class*="grid_"] > [class*="_lg-5"] {
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
  [class~="grid"] > [class*="_lg-6"],
  [class*="grid-"] > [class*="_lg-6"],
  [class*="grid_"] > [class*="_lg-6"] {
    flex-basis: 50%;
    max-width: 50%;
  }
  [class~="grid"] > [class*="_lg-7"],
  [class*="grid-"] > [class*="_lg-7"],
  [class*="grid_"] > [class*="_lg-7"] {
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
  [class~="grid"] > [class*="_lg-8"],
  [class*="grid-"] > [class*="_lg-8"],
  [class*="grid_"] > [class*="_lg-8"] {
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
  [class~="grid"] > [class*="_lg-9"],
  [class*="grid-"] > [class*="_lg-9"],
  [class*="grid_"] > [class*="_lg-9"] {
    flex-basis: 75%;
    max-width: 75%;
  }
  [class~="grid"] > [class*="_lg-10"],
  [class*="grid-"] > [class*="_lg-10"],
  [class*="grid_"] > [class*="_lg-10"] {
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
  [class~="grid"] > [class*="_lg-11"],
  [class*="grid-"] > [class*="_lg-11"],
  [class*="grid_"] > [class*="_lg-11"] {
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
  [class~="grid"] > [class*="_lg-12"],
  [class*="grid-"] > [class*="_lg-12"],
  [class*="grid_"] > [class*="_lg-12"] {
    flex-basis: 100%;
    max-width: 100%;
  }
  [class~="grid"] > [data-push-left*="_lg-0"],
  [class*="grid-"] > [data-push-left*="_lg-0"],
  [class*="grid_"] > [data-push-left*="_lg-0"] {
    margin-left: 0;
  }
  [class~="grid"] > [data-push-left*="_lg-1"],
  [class*="grid-"] > [data-push-left*="_lg-1"],
  [class*="grid_"] > [data-push-left*="_lg-1"] {
    margin-left: 8.33333%;
  }
  [class~="grid"] > [data-push-left*="_lg-2"],
  [class*="grid-"] > [data-push-left*="_lg-2"],
  [class*="grid_"] > [data-push-left*="_lg-2"] {
    margin-left: 16.66667%;
  }
  [class~="grid"] > [data-push-left*="_lg-3"],
  [class*="grid-"] > [data-push-left*="_lg-3"],
  [class*="grid_"] > [data-push-left*="_lg-3"] {
    margin-left: 25%;
  }
  [class~="grid"] > [data-push-left*="_lg-4"],
  [class*="grid-"] > [data-push-left*="_lg-4"],
  [class*="grid_"] > [data-push-left*="_lg-4"] {
    margin-left: 33.33333%;
  }
  [class~="grid"] > [data-push-left*="_lg-5"],
  [class*="grid-"] > [data-push-left*="_lg-5"],
  [class*="grid_"] > [data-push-left*="_lg-5"] {
    margin-left: 41.66667%;
  }
  [class~="grid"] > [data-push-left*="_lg-6"],
  [class*="grid-"] > [data-push-left*="_lg-6"],
  [class*="grid_"] > [data-push-left*="_lg-6"] {
    margin-left: 50%;
  }
  [class~="grid"] > [data-push-left*="_lg-7"],
  [class*="grid-"] > [data-push-left*="_lg-7"],
  [class*="grid_"] > [data-push-left*="_lg-7"] {
    margin-left: 58.33333%;
  }
  [class~="grid"] > [data-push-left*="_lg-8"],
  [class*="grid-"] > [data-push-left*="_lg-8"],
  [class*="grid_"] > [data-push-left*="_lg-8"] {
    margin-left: 66.66667%;
  }
  [class~="grid"] > [data-push-left*="_lg-9"],
  [class*="grid-"] > [data-push-left*="_lg-9"],
  [class*="grid_"] > [data-push-left*="_lg-9"] {
    margin-left: 75%;
  }
  [class~="grid"] > [data-push-left*="_lg-10"],
  [class*="grid-"] > [data-push-left*="_lg-10"],
  [class*="grid_"] > [data-push-left*="_lg-10"] {
    margin-left: 83.33333%;
  }
  [class~="grid"] > [data-push-left*="_lg-11"],
  [class*="grid-"] > [data-push-left*="_lg-11"],
  [class*="grid_"] > [data-push-left*="_lg-11"] {
    margin-left: 91.66667%;
  }
  [class~="grid"] > [data-push-right*="_lg-0"],
  [class*="grid-"] > [data-push-right*="_lg-0"],
  [class*="grid_"] > [data-push-right*="_lg-0"] {
    margin-right: 0;
  }
  [class~="grid"] > [data-push-right*="_lg-1"],
  [class*="grid-"] > [data-push-right*="_lg-1"],
  [class*="grid_"] > [data-push-right*="_lg-1"] {
    margin-right: 8.33333%;
  }
  [class~="grid"] > [data-push-right*="_lg-2"],
  [class*="grid-"] > [data-push-right*="_lg-2"],
  [class*="grid_"] > [data-push-right*="_lg-2"] {
    margin-right: 16.66667%;
  }
  [class~="grid"] > [data-push-right*="_lg-3"],
  [class*="grid-"] > [data-push-right*="_lg-3"],
  [class*="grid_"] > [data-push-right*="_lg-3"] {
    margin-right: 25%;
  }
  [class~="grid"] > [data-push-right*="_lg-4"],
  [class*="grid-"] > [data-push-right*="_lg-4"],
  [class*="grid_"] > [data-push-right*="_lg-4"] {
    margin-right: 33.33333%;
  }
  [class~="grid"] > [data-push-right*="_lg-5"],
  [class*="grid-"] > [data-push-right*="_lg-5"],
  [class*="grid_"] > [data-push-right*="_lg-5"] {
    margin-right: 41.66667%;
  }
  [class~="grid"] > [data-push-right*="_lg-6"],
  [class*="grid-"] > [data-push-right*="_lg-6"],
  [class*="grid_"] > [data-push-right*="_lg-6"] {
    margin-right: 50%;
  }
  [class~="grid"] > [data-push-right*="_lg-7"],
  [class*="grid-"] > [data-push-right*="_lg-7"],
  [class*="grid_"] > [data-push-right*="_lg-7"] {
    margin-right: 58.33333%;
  }
  [class~="grid"] > [data-push-right*="_lg-8"],
  [class*="grid-"] > [data-push-right*="_lg-8"],
  [class*="grid_"] > [data-push-right*="_lg-8"] {
    margin-right: 66.66667%;
  }
  [class~="grid"] > [data-push-right*="_lg-9"],
  [class*="grid-"] > [data-push-right*="_lg-9"],
  [class*="grid_"] > [data-push-right*="_lg-9"] {
    margin-right: 75%;
  }
  [class~="grid"] > [data-push-right*="_lg-10"],
  [class*="grid-"] > [data-push-right*="_lg-10"],
  [class*="grid_"] > [data-push-right*="_lg-10"] {
    margin-right: 83.33333%;
  }
  [class~="grid"] > [data-push-right*="_lg-11"],
  [class*="grid-"] > [data-push-right*="_lg-11"],
  [class*="grid_"] > [data-push-right*="_lg-11"] {
    margin-right: 91.66667%;
  }
  [class~="grid"] [class*="_lg-first"],
  [class*="grid-"] [class*="_lg-first"],
  [class*="grid_"] [class*="_lg-first"] {
    order: -1;
  }
  [class~="grid"] [class*="_lg-last"],
  [class*="grid-"] [class*="_lg-last"],
  [class*="grid_"] [class*="_lg-last"] {
    order: 1;
  }
}

@media (max-width: 64em) {
  [class~="grid"] > [class*="_md-1"],
  [class*="grid-"] > [class*="_md-1"],
  [class*="grid_"] > [class*="_md-1"] {
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  [class~="grid"] > [class*="_md-2"],
  [class*="grid-"] > [class*="_md-2"],
  [class*="grid_"] > [class*="_md-2"] {
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class~="grid"] > [class*="_md-3"],
  [class*="grid-"] > [class*="_md-3"],
  [class*="grid_"] > [class*="_md-3"] {
    flex-basis: 25%;
    max-width: 25%;
  }
  [class~="grid"] > [class*="_md-4"],
  [class*="grid-"] > [class*="_md-4"],
  [class*="grid_"] > [class*="_md-4"] {
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class~="grid"] > [class*="_md-5"],
  [class*="grid-"] > [class*="_md-5"],
  [class*="grid_"] > [class*="_md-5"] {
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
  [class~="grid"] > [class*="_md-6"],
  [class*="grid-"] > [class*="_md-6"],
  [class*="grid_"] > [class*="_md-6"] {
    flex-basis: 50%;
    max-width: 50%;
  }
  [class~="grid"] > [class*="_md-7"],
  [class*="grid-"] > [class*="_md-7"],
  [class*="grid_"] > [class*="_md-7"] {
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
  [class~="grid"] > [class*="_md-8"],
  [class*="grid-"] > [class*="_md-8"],
  [class*="grid_"] > [class*="_md-8"] {
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
  [class~="grid"] > [class*="_md-9"],
  [class*="grid-"] > [class*="_md-9"],
  [class*="grid_"] > [class*="_md-9"] {
    flex-basis: 75%;
    max-width: 75%;
  }
  [class~="grid"] > [class*="_md-10"],
  [class*="grid-"] > [class*="_md-10"],
  [class*="grid_"] > [class*="_md-10"] {
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
  [class~="grid"] > [class*="_md-11"],
  [class*="grid-"] > [class*="_md-11"],
  [class*="grid_"] > [class*="_md-11"] {
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
  [class~="grid"] > [class*="_md-12"],
  [class*="grid-"] > [class*="_md-12"],
  [class*="grid_"] > [class*="_md-12"] {
    flex-basis: 100%;
    max-width: 100%;
  }
  [class~="grid"] > [data-push-left*="_md-0"],
  [class*="grid-"] > [data-push-left*="_md-0"],
  [class*="grid_"] > [data-push-left*="_md-0"] {
    margin-left: 0;
  }
  [class~="grid"] > [data-push-left*="_md-1"],
  [class*="grid-"] > [data-push-left*="_md-1"],
  [class*="grid_"] > [data-push-left*="_md-1"] {
    margin-left: 8.33333%;
  }
  [class~="grid"] > [data-push-left*="_md-2"],
  [class*="grid-"] > [data-push-left*="_md-2"],
  [class*="grid_"] > [data-push-left*="_md-2"] {
    margin-left: 16.66667%;
  }
  [class~="grid"] > [data-push-left*="_md-3"],
  [class*="grid-"] > [data-push-left*="_md-3"],
  [class*="grid_"] > [data-push-left*="_md-3"] {
    margin-left: 25%;
  }
  [class~="grid"] > [data-push-left*="_md-4"],
  [class*="grid-"] > [data-push-left*="_md-4"],
  [class*="grid_"] > [data-push-left*="_md-4"] {
    margin-left: 33.33333%;
  }
  [class~="grid"] > [data-push-left*="_md-5"],
  [class*="grid-"] > [data-push-left*="_md-5"],
  [class*="grid_"] > [data-push-left*="_md-5"] {
    margin-left: 41.66667%;
  }
  [class~="grid"] > [data-push-left*="_md-6"],
  [class*="grid-"] > [data-push-left*="_md-6"],
  [class*="grid_"] > [data-push-left*="_md-6"] {
    margin-left: 50%;
  }
  [class~="grid"] > [data-push-left*="_md-7"],
  [class*="grid-"] > [data-push-left*="_md-7"],
  [class*="grid_"] > [data-push-left*="_md-7"] {
    margin-left: 58.33333%;
  }
  [class~="grid"] > [data-push-left*="_md-8"],
  [class*="grid-"] > [data-push-left*="_md-8"],
  [class*="grid_"] > [data-push-left*="_md-8"] {
    margin-left: 66.66667%;
  }
  [class~="grid"] > [data-push-left*="_md-9"],
  [class*="grid-"] > [data-push-left*="_md-9"],
  [class*="grid_"] > [data-push-left*="_md-9"] {
    margin-left: 75%;
  }
  [class~="grid"] > [data-push-left*="_md-10"],
  [class*="grid-"] > [data-push-left*="_md-10"],
  [class*="grid_"] > [data-push-left*="_md-10"] {
    margin-left: 83.33333%;
  }
  [class~="grid"] > [data-push-left*="_md-11"],
  [class*="grid-"] > [data-push-left*="_md-11"],
  [class*="grid_"] > [data-push-left*="_md-11"] {
    margin-left: 91.66667%;
  }
  [class~="grid"] > [data-push-right*="_md-0"],
  [class*="grid-"] > [data-push-right*="_md-0"],
  [class*="grid_"] > [data-push-right*="_md-0"] {
    margin-right: 0;
  }
  [class~="grid"] > [data-push-right*="_md-1"],
  [class*="grid-"] > [data-push-right*="_md-1"],
  [class*="grid_"] > [data-push-right*="_md-1"] {
    margin-right: 8.33333%;
  }
  [class~="grid"] > [data-push-right*="_md-2"],
  [class*="grid-"] > [data-push-right*="_md-2"],
  [class*="grid_"] > [data-push-right*="_md-2"] {
    margin-right: 16.66667%;
  }
  [class~="grid"] > [data-push-right*="_md-3"],
  [class*="grid-"] > [data-push-right*="_md-3"],
  [class*="grid_"] > [data-push-right*="_md-3"] {
    margin-right: 25%;
  }
  [class~="grid"] > [data-push-right*="_md-4"],
  [class*="grid-"] > [data-push-right*="_md-4"],
  [class*="grid_"] > [data-push-right*="_md-4"] {
    margin-right: 33.33333%;
  }
  [class~="grid"] > [data-push-right*="_md-5"],
  [class*="grid-"] > [data-push-right*="_md-5"],
  [class*="grid_"] > [data-push-right*="_md-5"] {
    margin-right: 41.66667%;
  }
  [class~="grid"] > [data-push-right*="_md-6"],
  [class*="grid-"] > [data-push-right*="_md-6"],
  [class*="grid_"] > [data-push-right*="_md-6"] {
    margin-right: 50%;
  }
  [class~="grid"] > [data-push-right*="_md-7"],
  [class*="grid-"] > [data-push-right*="_md-7"],
  [class*="grid_"] > [data-push-right*="_md-7"] {
    margin-right: 58.33333%;
  }
  [class~="grid"] > [data-push-right*="_md-8"],
  [class*="grid-"] > [data-push-right*="_md-8"],
  [class*="grid_"] > [data-push-right*="_md-8"] {
    margin-right: 66.66667%;
  }
  [class~="grid"] > [data-push-right*="_md-9"],
  [class*="grid-"] > [data-push-right*="_md-9"],
  [class*="grid_"] > [data-push-right*="_md-9"] {
    margin-right: 75%;
  }
  [class~="grid"] > [data-push-right*="_md-10"],
  [class*="grid-"] > [data-push-right*="_md-10"],
  [class*="grid_"] > [data-push-right*="_md-10"] {
    margin-right: 83.33333%;
  }
  [class~="grid"] > [data-push-right*="_md-11"],
  [class*="grid-"] > [data-push-right*="_md-11"],
  [class*="grid_"] > [data-push-right*="_md-11"] {
    margin-right: 91.66667%;
  }
  [class~="grid"] [class*="_md-first"],
  [class*="grid-"] [class*="_md-first"],
  [class*="grid_"] [class*="_md-first"] {
    order: -1;
  }
  [class~="grid"] [class*="_md-last"],
  [class*="grid-"] [class*="_md-last"],
  [class*="grid_"] [class*="_md-last"] {
    order: 1;
  }
}

@media (max-width: 47.9375em) {
  [class~="grid"] > [class*="_sm-1"],
  [class*="grid-"] > [class*="_sm-1"],
  [class*="grid_"] > [class*="_sm-1"] {
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  [class~="grid"] > [class*="_sm-2"],
  [class*="grid-"] > [class*="_sm-2"],
  [class*="grid_"] > [class*="_sm-2"] {
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class~="grid"] > [class*="_sm-3"],
  [class*="grid-"] > [class*="_sm-3"],
  [class*="grid_"] > [class*="_sm-3"] {
    flex-basis: 25%;
    max-width: 25%;
  }
  [class~="grid"] > [class*="_sm-4"],
  [class*="grid-"] > [class*="_sm-4"],
  [class*="grid_"] > [class*="_sm-4"] {
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class~="grid"] > [class*="_sm-5"],
  [class*="grid-"] > [class*="_sm-5"],
  [class*="grid_"] > [class*="_sm-5"] {
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
  [class~="grid"] > [class*="_sm-6"],
  [class*="grid-"] > [class*="_sm-6"],
  [class*="grid_"] > [class*="_sm-6"] {
    flex-basis: 50%;
    max-width: 50%;
  }
  [class~="grid"] > [class*="_sm-7"],
  [class*="grid-"] > [class*="_sm-7"],
  [class*="grid_"] > [class*="_sm-7"] {
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
  [class~="grid"] > [class*="_sm-8"],
  [class*="grid-"] > [class*="_sm-8"],
  [class*="grid_"] > [class*="_sm-8"] {
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
  [class~="grid"] > [class*="_sm-9"],
  [class*="grid-"] > [class*="_sm-9"],
  [class*="grid_"] > [class*="_sm-9"] {
    flex-basis: 75%;
    max-width: 75%;
  }
  [class~="grid"] > [class*="_sm-10"],
  [class*="grid-"] > [class*="_sm-10"],
  [class*="grid_"] > [class*="_sm-10"] {
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
  [class~="grid"] > [class*="_sm-11"],
  [class*="grid-"] > [class*="_sm-11"],
  [class*="grid_"] > [class*="_sm-11"] {
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
  [class~="grid"] > [class*="_sm-12"],
  [class*="grid-"] > [class*="_sm-12"],
  [class*="grid_"] > [class*="_sm-12"] {
    flex-basis: 100%;
    max-width: 100%;
  }
  [class~="grid"] > [data-push-left*="_sm-0"],
  [class*="grid-"] > [data-push-left*="_sm-0"],
  [class*="grid_"] > [data-push-left*="_sm-0"] {
    margin-left: 0;
  }
  [class~="grid"] > [data-push-left*="_sm-1"],
  [class*="grid-"] > [data-push-left*="_sm-1"],
  [class*="grid_"] > [data-push-left*="_sm-1"] {
    margin-left: 8.33333%;
  }
  [class~="grid"] > [data-push-left*="_sm-2"],
  [class*="grid-"] > [data-push-left*="_sm-2"],
  [class*="grid_"] > [data-push-left*="_sm-2"] {
    margin-left: 16.66667%;
  }
  [class~="grid"] > [data-push-left*="_sm-3"],
  [class*="grid-"] > [data-push-left*="_sm-3"],
  [class*="grid_"] > [data-push-left*="_sm-3"] {
    margin-left: 25%;
  }
  [class~="grid"] > [data-push-left*="_sm-4"],
  [class*="grid-"] > [data-push-left*="_sm-4"],
  [class*="grid_"] > [data-push-left*="_sm-4"] {
    margin-left: 33.33333%;
  }
  [class~="grid"] > [data-push-left*="_sm-5"],
  [class*="grid-"] > [data-push-left*="_sm-5"],
  [class*="grid_"] > [data-push-left*="_sm-5"] {
    margin-left: 41.66667%;
  }
  [class~="grid"] > [data-push-left*="_sm-6"],
  [class*="grid-"] > [data-push-left*="_sm-6"],
  [class*="grid_"] > [data-push-left*="_sm-6"] {
    margin-left: 50%;
  }
  [class~="grid"] > [data-push-left*="_sm-7"],
  [class*="grid-"] > [data-push-left*="_sm-7"],
  [class*="grid_"] > [data-push-left*="_sm-7"] {
    margin-left: 58.33333%;
  }
  [class~="grid"] > [data-push-left*="_sm-8"],
  [class*="grid-"] > [data-push-left*="_sm-8"],
  [class*="grid_"] > [data-push-left*="_sm-8"] {
    margin-left: 66.66667%;
  }
  [class~="grid"] > [data-push-left*="_sm-9"],
  [class*="grid-"] > [data-push-left*="_sm-9"],
  [class*="grid_"] > [data-push-left*="_sm-9"] {
    margin-left: 75%;
  }
  [class~="grid"] > [data-push-left*="_sm-10"],
  [class*="grid-"] > [data-push-left*="_sm-10"],
  [class*="grid_"] > [data-push-left*="_sm-10"] {
    margin-left: 83.33333%;
  }
  [class~="grid"] > [data-push-left*="_sm-11"],
  [class*="grid-"] > [data-push-left*="_sm-11"],
  [class*="grid_"] > [data-push-left*="_sm-11"] {
    margin-left: 91.66667%;
  }
  [class~="grid"] > [data-push-right*="_sm-0"],
  [class*="grid-"] > [data-push-right*="_sm-0"],
  [class*="grid_"] > [data-push-right*="_sm-0"] {
    margin-right: 0;
  }
  [class~="grid"] > [data-push-right*="_sm-1"],
  [class*="grid-"] > [data-push-right*="_sm-1"],
  [class*="grid_"] > [data-push-right*="_sm-1"] {
    margin-right: 8.33333%;
  }
  [class~="grid"] > [data-push-right*="_sm-2"],
  [class*="grid-"] > [data-push-right*="_sm-2"],
  [class*="grid_"] > [data-push-right*="_sm-2"] {
    margin-right: 16.66667%;
  }
  [class~="grid"] > [data-push-right*="_sm-3"],
  [class*="grid-"] > [data-push-right*="_sm-3"],
  [class*="grid_"] > [data-push-right*="_sm-3"] {
    margin-right: 25%;
  }
  [class~="grid"] > [data-push-right*="_sm-4"],
  [class*="grid-"] > [data-push-right*="_sm-4"],
  [class*="grid_"] > [data-push-right*="_sm-4"] {
    margin-right: 33.33333%;
  }
  [class~="grid"] > [data-push-right*="_sm-5"],
  [class*="grid-"] > [data-push-right*="_sm-5"],
  [class*="grid_"] > [data-push-right*="_sm-5"] {
    margin-right: 41.66667%;
  }
  [class~="grid"] > [data-push-right*="_sm-6"],
  [class*="grid-"] > [data-push-right*="_sm-6"],
  [class*="grid_"] > [data-push-right*="_sm-6"] {
    margin-right: 50%;
  }
  [class~="grid"] > [data-push-right*="_sm-7"],
  [class*="grid-"] > [data-push-right*="_sm-7"],
  [class*="grid_"] > [data-push-right*="_sm-7"] {
    margin-right: 58.33333%;
  }
  [class~="grid"] > [data-push-right*="_sm-8"],
  [class*="grid-"] > [data-push-right*="_sm-8"],
  [class*="grid_"] > [data-push-right*="_sm-8"] {
    margin-right: 66.66667%;
  }
  [class~="grid"] > [data-push-right*="_sm-9"],
  [class*="grid-"] > [data-push-right*="_sm-9"],
  [class*="grid_"] > [data-push-right*="_sm-9"] {
    margin-right: 75%;
  }
  [class~="grid"] > [data-push-right*="_sm-10"],
  [class*="grid-"] > [data-push-right*="_sm-10"],
  [class*="grid_"] > [data-push-right*="_sm-10"] {
    margin-right: 83.33333%;
  }
  [class~="grid"] > [data-push-right*="_sm-11"],
  [class*="grid-"] > [data-push-right*="_sm-11"],
  [class*="grid_"] > [data-push-right*="_sm-11"] {
    margin-right: 91.66667%;
  }
  [class~="grid"] [class*="_sm-first"],
  [class*="grid-"] [class*="_sm-first"],
  [class*="grid_"] [class*="_sm-first"] {
    order: -1;
  }
  [class~="grid"] [class*="_sm-last"],
  [class*="grid-"] [class*="_sm-last"],
  [class*="grid_"] [class*="_sm-last"] {
    order: 1;
  }
}

@media (max-width: 37.5em) {
  [class~="grid"] > [class*="_xs-1"],
  [class*="grid-"] > [class*="_xs-1"],
  [class*="grid_"] > [class*="_xs-1"] {
    flex-basis: 8.33333%;
    max-width: 8.33333%;
  }
  [class~="grid"] > [class*="_xs-2"],
  [class*="grid-"] > [class*="_xs-2"],
  [class*="grid_"] > [class*="_xs-2"] {
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
  [class~="grid"] > [class*="_xs-3"],
  [class*="grid-"] > [class*="_xs-3"],
  [class*="grid_"] > [class*="_xs-3"] {
    flex-basis: 25%;
    max-width: 25%;
  }
  [class~="grid"] > [class*="_xs-4"],
  [class*="grid-"] > [class*="_xs-4"],
  [class*="grid_"] > [class*="_xs-4"] {
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  [class~="grid"] > [class*="_xs-5"],
  [class*="grid-"] > [class*="_xs-5"],
  [class*="grid_"] > [class*="_xs-5"] {
    flex-basis: 41.66667%;
    max-width: 41.66667%;
  }
  [class~="grid"] > [class*="_xs-6"],
  [class*="grid-"] > [class*="_xs-6"],
  [class*="grid_"] > [class*="_xs-6"] {
    flex-basis: 50%;
    max-width: 50%;
  }
  [class~="grid"] > [class*="_xs-7"],
  [class*="grid-"] > [class*="_xs-7"],
  [class*="grid_"] > [class*="_xs-7"] {
    flex-basis: 58.33333%;
    max-width: 58.33333%;
  }
  [class~="grid"] > [class*="_xs-8"],
  [class*="grid-"] > [class*="_xs-8"],
  [class*="grid_"] > [class*="_xs-8"] {
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
  [class~="grid"] > [class*="_xs-9"],
  [class*="grid-"] > [class*="_xs-9"],
  [class*="grid_"] > [class*="_xs-9"] {
    flex-basis: 75%;
    max-width: 75%;
  }
  [class~="grid"] > [class*="_xs-10"],
  [class*="grid-"] > [class*="_xs-10"],
  [class*="grid_"] > [class*="_xs-10"] {
    flex-basis: 83.33333%;
    max-width: 83.33333%;
  }
  [class~="grid"] > [class*="_xs-11"],
  [class*="grid-"] > [class*="_xs-11"],
  [class*="grid_"] > [class*="_xs-11"] {
    flex-basis: 91.66667%;
    max-width: 91.66667%;
  }
  [class~="grid"] > [class*="_xs-12"],
  [class*="grid-"] > [class*="_xs-12"],
  [class*="grid_"] > [class*="_xs-12"] {
    flex-basis: 100%;
    max-width: 100%;
  }
  [class~="grid"] > [data-push-left*="_xs-0"],
  [class*="grid-"] > [data-push-left*="_xs-0"],
  [class*="grid_"] > [data-push-left*="_xs-0"] {
    margin-left: 0;
  }
  [class~="grid"] > [data-push-left*="_xs-1"],
  [class*="grid-"] > [data-push-left*="_xs-1"],
  [class*="grid_"] > [data-push-left*="_xs-1"] {
    margin-left: 8.33333%;
  }
  [class~="grid"] > [data-push-left*="_xs-2"],
  [class*="grid-"] > [data-push-left*="_xs-2"],
  [class*="grid_"] > [data-push-left*="_xs-2"] {
    margin-left: 16.66667%;
  }
  [class~="grid"] > [data-push-left*="_xs-3"],
  [class*="grid-"] > [data-push-left*="_xs-3"],
  [class*="grid_"] > [data-push-left*="_xs-3"] {
    margin-left: 25%;
  }
  [class~="grid"] > [data-push-left*="_xs-4"],
  [class*="grid-"] > [data-push-left*="_xs-4"],
  [class*="grid_"] > [data-push-left*="_xs-4"] {
    margin-left: 33.33333%;
  }
  [class~="grid"] > [data-push-left*="_xs-5"],
  [class*="grid-"] > [data-push-left*="_xs-5"],
  [class*="grid_"] > [data-push-left*="_xs-5"] {
    margin-left: 41.66667%;
  }
  [class~="grid"] > [data-push-left*="_xs-6"],
  [class*="grid-"] > [data-push-left*="_xs-6"],
  [class*="grid_"] > [data-push-left*="_xs-6"] {
    margin-left: 50%;
  }
  [class~="grid"] > [data-push-left*="_xs-7"],
  [class*="grid-"] > [data-push-left*="_xs-7"],
  [class*="grid_"] > [data-push-left*="_xs-7"] {
    margin-left: 58.33333%;
  }
  [class~="grid"] > [data-push-left*="_xs-8"],
  [class*="grid-"] > [data-push-left*="_xs-8"],
  [class*="grid_"] > [data-push-left*="_xs-8"] {
    margin-left: 66.66667%;
  }
  [class~="grid"] > [data-push-left*="_xs-9"],
  [class*="grid-"] > [data-push-left*="_xs-9"],
  [class*="grid_"] > [data-push-left*="_xs-9"] {
    margin-left: 75%;
  }
  [class~="grid"] > [data-push-left*="_xs-10"],
  [class*="grid-"] > [data-push-left*="_xs-10"],
  [class*="grid_"] > [data-push-left*="_xs-10"] {
    margin-left: 83.33333%;
  }
  [class~="grid"] > [data-push-left*="_xs-11"],
  [class*="grid-"] > [data-push-left*="_xs-11"],
  [class*="grid_"] > [data-push-left*="_xs-11"] {
    margin-left: 91.66667%;
  }
  [class~="grid"] > [data-push-right*="_xs-0"],
  [class*="grid-"] > [data-push-right*="_xs-0"],
  [class*="grid_"] > [data-push-right*="_xs-0"] {
    margin-right: 0;
  }
  [class~="grid"] > [data-push-right*="_xs-1"],
  [class*="grid-"] > [data-push-right*="_xs-1"],
  [class*="grid_"] > [data-push-right*="_xs-1"] {
    margin-right: 8.33333%;
  }
  [class~="grid"] > [data-push-right*="_xs-2"],
  [class*="grid-"] > [data-push-right*="_xs-2"],
  [class*="grid_"] > [data-push-right*="_xs-2"] {
    margin-right: 16.66667%;
  }
  [class~="grid"] > [data-push-right*="_xs-3"],
  [class*="grid-"] > [data-push-right*="_xs-3"],
  [class*="grid_"] > [data-push-right*="_xs-3"] {
    margin-right: 25%;
  }
  [class~="grid"] > [data-push-right*="_xs-4"],
  [class*="grid-"] > [data-push-right*="_xs-4"],
  [class*="grid_"] > [data-push-right*="_xs-4"] {
    margin-right: 33.33333%;
  }
  [class~="grid"] > [data-push-right*="_xs-5"],
  [class*="grid-"] > [data-push-right*="_xs-5"],
  [class*="grid_"] > [data-push-right*="_xs-5"] {
    margin-right: 41.66667%;
  }
  [class~="grid"] > [data-push-right*="_xs-6"],
  [class*="grid-"] > [data-push-right*="_xs-6"],
  [class*="grid_"] > [data-push-right*="_xs-6"] {
    margin-right: 50%;
  }
  [class~="grid"] > [data-push-right*="_xs-7"],
  [class*="grid-"] > [data-push-right*="_xs-7"],
  [class*="grid_"] > [data-push-right*="_xs-7"] {
    margin-right: 58.33333%;
  }
  [class~="grid"] > [data-push-right*="_xs-8"],
  [class*="grid-"] > [data-push-right*="_xs-8"],
  [class*="grid_"] > [data-push-right*="_xs-8"] {
    margin-right: 66.66667%;
  }
  [class~="grid"] > [data-push-right*="_xs-9"],
  [class*="grid-"] > [data-push-right*="_xs-9"],
  [class*="grid_"] > [data-push-right*="_xs-9"] {
    margin-right: 75%;
  }
  [class~="grid"] > [data-push-right*="_xs-10"],
  [class*="grid-"] > [data-push-right*="_xs-10"],
  [class*="grid_"] > [data-push-right*="_xs-10"] {
    margin-right: 83.33333%;
  }
  [class~="grid"] > [data-push-right*="_xs-11"],
  [class*="grid-"] > [data-push-right*="_xs-11"],
  [class*="grid_"] > [data-push-right*="_xs-11"] {
    margin-right: 91.66667%;
  }
  [class~="grid"] [class*="_xs-first"],
  [class*="grid-"] [class*="_xs-first"],
  [class*="grid_"] [class*="_xs-first"] {
    order: -1;
  }
  [class~="grid"] [class*="_xs-last"],
  [class*="grid-"] [class*="_xs-last"],
  [class*="grid_"] [class*="_xs-last"] {
    order: 1;
  }
}

/************************
    HIDING COLS
*************************/
@media (max-width: 80em) {
  [class*="lg-hidden"] {
    display: none;
  }
}

@media (max-width: 64em) {
  [class*="md-hidden"] {
    display: none;
  }
}

@media (max-width: 47.9375em) {
  [class*="sm-hidden"] {
    display: none;
  }
}

@media (max-width: 37.5em) {
  [class*="xs-hidden"] {
    display: none;
  }
}

/*

Main
====

Styles for the main element

*/
main {
  background-color: #FFFFFF;
}

/*

Headings
========

    <h1>This is the primary headline</h1>
    <h2>This is the secondary headline</h2>
    <h3>This is the tertiary headline</h3>
    <h4>This is the average headline</h4>
    <h5>This is the small headline</h5>
    <h6>This is the micro headline</h6>

*/
h1, .h1, h2, .h2, h3, .h3 {
  font-family: "Playfair Display", Georgia, Times, "Times New Roman", serif;
}

h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Muli", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
}

h1, .h1,
h2, .h2 {
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1.14706;
  margin-bottom: 0;
}

@media all and (min-width: 48em) {
  h1, .h1,
  h2, .h2 {
    font-size: 54px;
    font-size: 3.375rem;
    line-height: 1.09259;
    margin-bottom: 0;
  }
}

@media all and (min-width: 64em) {
  h1, .h1,
  h2, .h2 {
    font-size: 74px;
    font-size: 4.625rem;
    line-height: 1.06757;
    margin-bottom: 0;
  }
}

h3, .h3 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.20833;
  margin-bottom: 0;
}

@media all and (min-width: 48em) {
  h3, .h3 {
    font-size: 27px;
    font-size: 1.6875rem;
    line-height: 1.18519;
    margin-bottom: 0;
  }
}

@media all and (min-width: 64em) {
  h3, .h3 {
    font-size: 34px;
    font-size: 2.125rem;
    line-height: 1.14706;
    margin-bottom: 0;
  }
}

h4, .h4 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0;
}

@media all and (min-width: 48em) {
  h4, .h4 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.16667;
    margin-bottom: 0;
  }
}

.title--with-decoration {
  color: #242424;
}

.title--with-decoration:after {
  content: "";
  background-image: url("../img/title-decoration.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  vertical-align: middle;
  background-size: 154px 45px;
  height: 45px;
  width: 154px;
}

/*

Body Copy
========

    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam ac ligula non felis fermentum tincidunt. Suspendisse sapien odio, vestibulum euismod metus at, aliquet dapibus purus. Suspendisse lacinia sit amet ante eget gravida.</p>

    <p class="lead">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam ac ligula non felis fermentum tincidunt. Suspendisse sapien odio, vestibulum euismod metus at, aliquet dapibus purus. Suspendisse lacinia sit amet ante eget gravida.</p>

*/
/* --- used if wanting to style the first paragraph slightly differently --- */
::-moz-selection {
  background: rgba(172, 64, 181, 0.49);
}

::selection {
  background: rgba(172, 64, 181, 0.49);
}

/*

Body Copy Classes
=================

    <p class="text-muted">faded out a little</p>
    <p class="text-primary">this really is something to look at</p>
    <p class="text-success">winner, winner. chicken dinner!</p>
    <p class="text-info">just a bit of info</p>
    <p class="text-warning">be careful now, take heed</p>
    <p class="text-danger">ooh, high voltage</p>

*/
.text-muted {
  color: #cecece;
}

.text-subtle {
  color: #a0a0a0;
}

.text-primary {
  color: #b60000;
}

.text-success {
  color: #5CB85C;
}

.text-info {
  color: #5BC0DE;
}

.text-warning {
  color: #F0AD4E;
}

.text-danger {
  color: #D9534F;
}

/*

Links
=====

	<a href="">this is a link</a>
	<a class="is-selected" href="">this link is selected</a>

*/
a {
  color: #b60000;
}

a:visited {
  color: #830000;
}

a:hover {
  color: #ff0404;
}

a:focus {
  color: #ff0404;
}

a:active {
  color: #ff5050;
}

.widget li a, .g-footer-nav__list a,
.unstyled-link {
  color: inherit;
  text-decoration: none;
}

.widget li a:visited, .g-footer-nav__list a:visited,
.unstyled-link:visited {
  color: inherit;
}

.widget li a:hover, .g-footer-nav__list a:hover,
.unstyled-link:hover {
  color: #ff0404;
}

.widget li a:focus, .g-footer-nav__list a:focus,
.unstyled-link:focus {
  color: #ff0404;
}

.widget li a:active, .g-footer-nav__list a:active,
.unstyled-link:active {
  color: #ff5050;
}

.unstyled-child-link a {
  color: inherit;
  text-decoration: none;
}

.unstyled-child-link a:visited {
  color: inherit;
}

.unstyled-child-link a:hover {
  color: #ff0404;
}

.unstyled-child-link a:focus {
  color: #ff0404;
}

.unstyled-child-link a:active {
  color: #ff5050;
}

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

.hover--underline:hover, .hover--underline:focus {
  text-decoration: underline;
}

/*

Blockquotes
===========

    <blockquote>
        <p>You can put a cat in an oven, but that don't make it a biscuit.</p>
    </blockquote>

*/
blockquote:not(.testimonial__content),
.testimonial {
  background-color: #ededed;
  border-left: 4px solid;
  border-color: #b60000;
  color: inherit;
  margin-left: 0;
  margin-right: 0;
  padding: 1rem;
}

blockquote:not(.testimonial__content) > * + *,
.testimonial > * + * {
  margin-top: 0.875rem;
}

@media all and (min-width: 64em) {
  blockquote:not(.testimonial__content) > * + *,
  .testimonial > * + * {
    margin-top: 1rem;
  }
}

.testimonial__content {
  font-style: italic;
  margin-bottom: 0;
  position: relative;
}

.testimonial__content > p:first-child {
  text-indent: 25px;
}

.testimonial__content:before {
  position: absolute;
  top: 2.5rem;
  left: -2.5rem;
  content: '“';
  font-size: 8rem;
  line-height: 0.1rem;
}

.testimonial__caption > .testimonial__item + .testimonial__item:before {
  content: " - ";
  display: inline-block;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

/*

Miscellaneous Typography
=======================

	<p><strong>rendered as bold text</strong></p>

	<p><em>rendered as italic text</em></p>

	<p><del>rendered as deleted text</del></p>

	<p><dfn>defines a definition term</dfn></p>

	<p><abbr title="extended abbr text should show when mouse over">&lt;abbr&gt; abbr - extended text when mouseover.</abbr></p>
	<p><acronym title="extended acronym text should show when mouse over">&lt;acronym&gt; acronym - extended text when mouseover.</acronym></p>

	<address>This would be rendered the address</address>

	<small>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</small>


*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
  cursor: help;
}


.small,
small {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.28571;
  margin-bottom: 0;
}

kbd {
  color: #666666;
  font-family: inherit;
  font-size: 87.5%;
  line-height: 90%;
  background-color: #f9f9f9;
  margin: 0 0.25rem;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  padding: 0.3334em 0.5em;
  box-shadow: inset 0 1px 0 white;
}

mark {
  background-color: #f0debc;
  line-height: 90%;
  padding: 0 0.125em;
}

/*

Unordered Lists
===============

	<ul>
		<li>An unordered list item</li>
		<li>An unordered list item</li>
		<li>An unordered list item</li>
		<li>An unordered list item</li>
		<ul>
			<li>An unordered list item</li>
			<li>An unordered list item</li>
			<li>An unordered list item</li>
			<li>An unordered list item</li>
		</ul>
	</ul>

*/
ul {
  list-style-position: inside;
  padding-left: 0;
}

/*

## Ordered Lists
```
<ol>
	<li>An unordered list item</li>
	<li>An unordered list item</li>
	<li>An unordered list item</li>
	<li>An unordered list item</li>
	<ol>
		<li>An unordered list item</li>
		<li>An unordered list item</li>
		<li>An unordered list item</li>
		<li>An unordered list item</li>
	</ol>
</ol>
```
*/
ol {
  list-style-position: inside;
  padding-left: 0;
}

/*

## Description Lists

```
<dl>
    <dt>Term</dt>
    <dd>Description</dd>
    <dt>Term</dt>
    <dd>Description</dd>
</dl>
...

*/
dl {
  list-style-position: inside;
  padding-left: 0;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/*
  Special Lists 
*/
/*=============================*/
/* Inline Lists */
/*=============================*/
.inline-list--simple {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -1.5rem;
}

.inline-list__item,
.inline-list--simple .menu-item {
  margin-left: 0;
  flex: 0 1 auto;
}

@media all and (-ms-high-contrast: none) {
  .inline-list__item,
  .inline-list--simple .menu-item {
    /* IE10 */
    flex-basis: auto;
  }
  *::-ms-backdrop,
  .inline-list__item,
  .inline-list--simple .menu-item {
    /* IE11 */
    flex-basis: auto;
  }
}

.inline-list--simple .inline-list__item,
.inline-list--simple .menu-item {
  border-left: 1.5rem solid transparent;
}

.inline-list__item-child {
  height: 100%;
}

@media all and (min-width: 48em) {
  .inline-list--max-two-medium-up {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -1.5rem;
  }
}

@media all and (min-width: 48em) {
  .inline-list--max-two-medium-up .inline-list__item {
    margin-left: 0;
    flex-basis: 0;
    width: 49.9%;
    min-width: 49.9%;
    max-width: 49.9%;
    flex-basis: 49.9%;
    border-left: 1.5rem solid transparent;
  }
}

@media all and (min-width: 48em) {
  .inline-list--max-two-medium-up .inline-list__item:nth-child(n+3) {
    margin-top: 2rem;
  }
}

@media all and (min-width: 37.5em) and (max-width: 47.9375em) {
  .inline-list--max-two-small-medium {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -1.5rem;
  }
}

@media all and (min-width: 37.5em) and (max-width: 47.9375em) {
  .inline-list--max-two-small-medium .inline-list__item {
    margin-left: 0;
    flex-basis: 0;
    width: 49.9%;
    min-width: 49.9%;
    max-width: 49.9%;
    flex-basis: 49.9%;
    border-left: 1.5rem solid transparent;
  }
}

@media all and (min-width: 37.5em) and (max-width: 47.9375em) {
  .inline-list--max-two-small-medium .inline-list__item:nth-child(n+3) {
    margin-top: 2rem;
  }
}

@media all and (min-width: 48em) {
  .inline-list--max-three-medium-up {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -1.5rem;
  }
}

@media all and (max-width: 47.9375em) {
  .inline-list--max-three-medium-up .inline-list__item {
    margin-right: auto;
    margin-left: auto;
  }
}

@media all and (min-width: 48em) {
  .inline-list--max-three-medium-up .inline-list__item {
    margin-left: 0;
    flex-basis: 0;
    width: 33%;
    min-width: 33%;
    max-width: 33%;
    flex-basis: 33%;
    border-left: 1.5rem solid transparent;
  }
}

@media all and (min-width: 48em) {
  .inline-list--max-three-medium-up .inline-list__item:nth-child(n+4) {
    margin-top: 3rem;
  }
}

/*

Main Navigation
===============

	<nav class="main-nav" role="navigation">
		<ul class="main-nav-list">
			<li class="main-nav-item"><a class="main-nav-link" href="">A main link</a></li>
			<li class="main-nav-item"><a class="main-nav-link" href="">A main link</a></li>
			<li class="main-nav-item"><a class="main-nav-link" href="">A main link</a></li>
			<li class="main-nav-item"><a class="main-nav-link" href="">A main link</a></li>
		</ul>
	</nav>

*/
.main-nav-container {
  background-color: #FFFFFF;
}

.main-nav {
  width: 100%;
}

@media all and (min-width: 48em) {
  .main-nav {
    display: inline-block;
    vertical-align: middle;
  }
}

.main-nav__list {
  list-style: none;
  list-style-image: none;
  margin: 0;
}

.js .main-nav__list {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.main-nav__list.active {
  max-height: 50em;
}

@media all and (min-width: 48em) {
  .main-nav__list {
    display: flex;
    justify-content: space-between;
  }
  .js .main-nav__list {
    max-height: none;
    overflow: visible;
  }
}

.main-nav__list .menu-item {
  position: relative;
  vertical-align: top;
}

@media all and (min-width: 48em) {
  .main-nav__list .menu-item {
    align-items: center;
    display: flex;
    margin-left: 0;
  }
}

.main-nav__list .menu-item a {
  color: #242424;
  display: block;
  padding: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  height: 100%;
}

@media all and (max-width: 47.9375em) {
  .main-nav__list .menu-item a {
    border-top: 1px solid;
  }
}

@media all and (min-width: 48em) {
  .main-nav__list .menu-item a {
    display: flex;
    align-items: center;
    border-top: 12px solid #e9d220;
  }
}

.main-nav__list .menu-item a:hover, .main-nav__list .menu-item a:focus, .main-nav__list .menu-item a:active {
  color: #242424;
  background-color: #ffe9e9;
  border-top-color: #b60000;
}

/* Sub Menus ---------------- */
.sub-menu {
  display: none;
  background-color: #b60000;
  list-style: none;
  list-style-image: none;
  min-width: 200px;
  z-index: 300;
}

@media all and (min-width: 48em) {
  .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.sub-menu .menu-item {
  float: none;
  margin: 0;
  padding: 0;
  display: block;
  white-space: pre-wrap;
  width: 100%;
}

@media all and (min-width: 48em) {
  .main-nav__list .menu-item.menu-item-has-children > a {
    display: flex;
    flex-direction: row;
    wrap: nowrap;
  }
}

.main-nav__list .menu-item > .sub-menu a {
  background-color: #b60000;
  color: #FFFFFF;
  padding-left: 0.5rem;
}

.main-nav__list .menu-item > .sub-menu a:hover, .main-nav__list .menu-item > .sub-menu a:focus, .main-nav__list .menu-item > .sub-menu a:active {
  background-color: #e90000;
  color: #FFFFFF;
}

@media all and (min-width: 48em) {
  .main-nav__list .menu-item > .sub-menu a {
    border-top: 1px solid;
  }
}

.accordion-toggle {
  padding: 0 .5em;
}

@media all and (max-width: 47.9375em) {
  .accordion-toggle {
    position: absolute;
    top: 0;
    z-index: 100;
    font-size: 1.7em;
    line-height: 2;
    right: 0;
    border-left: 1px solid #242424;
    transition: all 0.25s ease;
  }
}

/* Main nav mobile button ---------------- */
.navigation-menu {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  transition: all 0.25s ease;
}

@media all and (min-width: 48em) {
  .navigation-menu {
    display: none;
  }
}

/*

Pagination Navigation
=====================

<nav class="pagination">
	<ul class="page-numbers">
		<li><a class="prev page-numbers" href="#0">←</a></li>
		<li><a class="page-numbers" href="#0">1</a></li>
		<li><span class="page-numbers current">2</span></li>
		<li><a class="page-numbers" href="#0">3</a></li>
		<li><a class="next page-numbers" href="#0">→</a></li>
	</ul>
</nav>

*/
.pagination > ul {
  clear: both;
  overflow: hidden;
  width: 100%;
}

.pagination li {
  display: block;
  float: left;
  margin-bottom: 0.5rem;
  margin-left: 0;
  margin-right: 0.25rem;
  margin-top: 0.5rem;
}

.pagination li:hover a, .pagination li:focus a, .pagination li:active a {
  background-color: #ff0404;
  color: #FFFFFF;
}

.pagination a {
  text-decoration: none;
}

.pagination a, .pagination span {
  border: 1px solid #cecece;
  display: block;
  font-weight: 700;
  line-height: 2;
  min-width: 2.25rem;
  padding: 0 0.5rem;
  text-align: center;
}

.pagination .page-numbers.current {
  background-color: #b60000;
  border: 1px solid #9d0000;
  color: #FFFFFF;
}

/*

Alerts
=====================

<div class="alert alert--success">
	<p><strong>Well done!</strong> You successfully read this important alert message.</p>
</div>

<div class="alert alert--info">
	<p><strong>Heads up!</strong> This alert needs your attention, but it's not super important.</p>
</div>

<div class="alert alert--warning">
	<p><strong>Warning!</strong> Best check yo self, you're not looking too good.</p>
</div>

<div class="alert alert--danger">
	<p><strong>Oh snap!</strong> Change a few things up and try submitting again.</p>
</div>

*/
.alert {
  margin-bottom: "24px";
  margin-bottom: "1.5rem";
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 4px;
  padding: 16px;
}

.alert--success {
  background-color: #5CB85C;
}

.alert--success > p {
  color: #1e441e;
}

.alert--info {
  background-color: #5BC0DE;
}

.alert--info > p {
  color: #175b70;
}

.alert--warning {
  background-color: #F0AD4E;
}

.alert--warning > p {
  color: #81500b;
}

.alert--danger {
  background-color: #D9534F;
}

.alert--danger > p {
  color: #611715;
}

/*

Tiles
=====

<div class="tile">
	<p>This is a tile</p>
</div>

*/
.tile {
  background-color: #FFFFFF;
  display: block;
  min-height: 1rem;
  min-width: 4rem;
  position: relative;
}

/* Clickable Tile 

<a class="tile tile--clickable" tabindex="0">
	<p>This is a clickable tile</p>
</a>

*/
.tile--clickable {
  cursor: pointer;
  transition: 250ms cubic-bezier(0.5, 0, 0.1, 1);
}

/* Raised Tile 

<div class="tile tile--raised">
	<p>This is a raised tile</p>
</div>

*/
.tile--raised {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.tile--even-height {
  height: 100%;
}

.tile--rounded {
  border-radius: 8px;
  overflow: hidden;
}

.tile--bordered {
  border: 1px solid #cecece;
}

.tile--bordered--subtle {
  border-color: #ededed;
}

.tile--subtle {
  background-color: #ededed;
}

/* Inner Tile 

<div class="tile">
	<div class="tile__inner tile__inner--padded">
		<p>This is a tile with inner padding</p>
	</div>
</div>

*/
.tile__inner {
  position: relative;
  background-clip: padding-box;
}

.tile__inner--padded {
  padding: 1rem;
}

.tile__inner--padded-small {
  padding: 0.5rem;
}

.tile__inner--padded-large {
  padding: 1.5rem;
}

.tile__inner--loud {
  background-color: #b60000;
  color: #FFFFFF;
}

/*

Blocks
======

<div class="block">
	<p>This is a block</p>
</div>

*/
.block {
  background-color: #FFFFFF;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}

@media all and (min-width: 48em) {
  .block {
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}

@media all and (min-width: 64em) {
  .block {
    padding-bottom: 5rem;
    padding-top: 5rem;
  }
}

.block + .block {
  border-top: 1px solid;
}

.block--no-border-top {
  border-top: none !important;
}

.block--no-bottom-padding {
  padding-bottom: 0;
}

.block--no-top-padding {
  padding-top: 0;
}

.block--success {
  background-color: #5CB85C;
}

.block--info {
  background-color: #5BC0DE;
}

.block--warning {
  background-color: #F0AD4E;
}

.block--danger {
  background-color: #D9534F;
}

.block--cta {
  color: #FFFFFF;
  background-color: #910049;
}

.block--decorative {
  background-image: url("../img/backgrounds/block-decoration.png");
  background-repeat: repeat;
}

/*------------------------------------*\
	$BEAUTONS.CSS
\*------------------------------------*/
/**
 * beautons is a beautifully simple button toolkit.
 *
 * LICENSE
 * 
 * Copyright 2013 Harry Roberts
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 * http://apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * 
 */
/*!*
 * 
 * @csswizardry -- csswizardry.com/beautons
 * 
 */
/*------------------------------------*\
	$BASE
\*------------------------------------*/
/**
* Base button styles.
*
*  1. Allow us to better style box model properties.
*  2. Line different sized buttons up a little nicer.
*  3. Stop buttons wrapping and looking broken.
*  4. Make buttons inherit font styles.
*  5. Force all elements using beautons to appear clickable.
*  6. Normalise box model styles.
*  7. If the button’s text is 1em, and the button is (3 * font-size) tall, then
*     there is 1em of space above and below that text. We therefore apply 1em
*     of space to the left and right, as padding, to keep consistent spacing.
*  8. Basic cosmetics for default buttons. Change or override at will.
*  9. Fixes odd inner spacing in IE7.
* 10. Don’t allow buttons to have underlines; it kinda ruins the illusion.
* 11. Prevents from inheriting default anchor styles.
*/

.btn {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  white-space: nowrap;
  /* [3] */
  font-family: inherit;
  /* [4] */
  font-size: 100%;
  /* [4] */
  cursor: pointer;
  /* [5] */
  border: none;
  /* [6] */
  margin: 0;
  /* [6] */
  padding-top: 0;
  /* [6] */
  padding-bottom: 0;
  /* [6] */
  line-height: 3;
  /* [7] */
  height: 3em;
  /* [7] */
  padding-right: 1em;
  /* [7] */
  padding-left: 1em;
  /* [7] */
  background-color: #2c77ba;
  /* [8] */
  border-radius: 4px;
  /* [8] */
  overflow: visible;
  /* [9] */
  text-decoration: none;
  /* [10] */
}


.btn:hover,
.btn:active,
.btn:focus,
.btn:visited {
  text-decoration: none;
  /* [10] */
  color: #FFFFFF;
  /* [11] */
}


.btn:hover,
.btn:focus {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}


.btn:active,
.btn:focus {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5) inset;
}


.btn::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*------------------------------------*\
	$SIZES
\*------------------------------------*/
/**
 * Button size modifiers.
 *
 * These all follow the same sizing rules as above; text is 1em, space around it
 * remains uniform.
 */
.btn--small {
  padding-right: 0.5em;
  padding-left: 0.5em;
  line-height: 2;
  height: 2em;
}

.btn--large {
  padding-right: 1.5em;
  padding-left: 1.5em;
  line-height: 4;
  height: 4em;
}

.btn--huge {
  padding-right: 2em;
  padding-left: 2em;
  line-height: 5;
  height: 5em;
}

/**
 * These buttons will fill the entirety of their container.
 *
 * 1. Remove padding so that widths and paddings don’t conflict.
 */
.btn--full {
  width: 00%;
  padding-right: 0;
  /* [1] */
  padding-left: 0;
  /* [1] */
  text-align: center;
}

/*------------------------------------*\
	$FONT-SIZES
\*------------------------------------*/
/**
 * Button font-size modifiers.
 */

.btn--alpha {
  font-size: 3rem;
}


.btn--beta {
  font-size: 2rem;
}


.btn--gamma {
  font-size: 1rem;
}

/**
 * Make the button inherit sizing from its parent.
 */
.btn--natural {
  vertical-align: baseline;
  font-size: inherit;
  line-height: inherit;
  height: auto;
  padding-right: 0.5em;
  padding-left: 0.5em;
}

/*------------------------------------*\
	$FUNCTIONS
\*------------------------------------*/
/**
 * Button function modifiers.
 */

.btn--primary {
  color: #FFFFFF;
  background-color: #b60000;
}


.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active {
  color: #FFFFFF;
  background-color: #830000;
}


.btn--primary:visited {
  color: #f2f2f2;
}


.btn--secondary {
  color: #FFFFFF;
  background-color: #910049;
}


.btn--secondary:hover,
.btn--secondary:focus,
.btn--secondary:active {
  color: #FFFFFF;
  background-color: #5e002f;
}


.btn--secondary:visited {
  color: #f2f2f2;
}

/**
 * Positive actions; e.g. sign in, purchase, submit, etc.
 */
.btn--positive {
  background-color: #4A993E;
  color: #fff;
}

/**
 * Negative actions; e.g. close account, delete photo, remove friend, etc.
 */
.btn--negative {
  background-color: #b33630;
  color: #fff;
}

/**
 * Inactive, disabled buttons.
 * 
 * 1. Make the button look like normal text when hovered.
 */
.btn--inactive,
.btn--inactive:hover,
.btn--inactive:active,
.btn--inactive:focus {
  background-color: #ddd;
  color: #777;
  cursor: default;
  /* [1] */
  box-shadow: none;
}

/*------------------------------------*\
	$STYLES
\*------------------------------------*/
/**
 * Button style modifiers.
 *
 * 1. Use an overly-large number to ensure completely rounded, pill-like ends.
 */
.btn--soft {
  border-radius: 200px;
  /* [1] */
}

.btn--hard {
  border-radius: 0;
}

/*

Forms
=====

<form action="/">
	<fieldset>
		<label for="name">Name</label>
		<input type="text" id="name" class="form-text" />
		<p class="form-help">This is help text under the form field.</p>
		<label for="email">Email</label>
		<input type="email" id="email" class="form-text" />
	</fieldset>
	<fieldset>
		<label for="gender">Gender</label>
		<select id="gender">
			<option>Male</option>
			<option>Female</option>
			<option>Cylon</option>
		</select>
	</fieldset>
	<fieldset class="radio">
		<label for="notifications">Notifications</label>
		<ul>
			<li><label><input type="radio" name="notifications" /> Send me email</label></li>
			<li><label><input type="radio" name="notifications" /> Don't send me email</label></li>
			<li><label><input type="radio" name="notifications" /> Send me flowers</label></li>
		</ul>
	</fieldset>
	<fieldset>
		<label for="url">URL</label>
		<input type="url" id="url" class="form-text" placeholder="http://yourdomain.com" />
	</fieldset>
	<fieldset>
		<label for="bio">Bio</label>
		<textarea id="bio"></textarea>
	</fieldset>
	<fieldset class="check">
		<label><input type="checkbox" /> I accept the terms of service and lorem ipsum.</label>
	</fieldset>
	<fieldset class="form-actions">
		<button type="submit">Submit</button>
	</fieldset>
</form>

*/
fieldset {
  border: none;
  padding: 0;
}

label {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.28571;
  margin-bottom: 0;
  font-weight: bold;
  text-transform: uppercase;
}

label > i {
  font-weight: normal;
  text-transform: lowercase;
}

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select,
textarea {
  display: block;
}

input[type="color"][disabled], input[type="color"].is-disabled,
input[type="date"][disabled],
input[type="date"].is-disabled,
input[type="datetime"][disabled],
input[type="datetime"].is-disabled,
input[type="datetime-local"][disabled],
input[type="datetime-local"].is-disabled,
input[type="email"][disabled],
input[type="email"].is-disabled,
input[type="month"][disabled],
input[type="month"].is-disabled,
input[type="number"][disabled],
input[type="number"].is-disabled,
input[type="password"][disabled],
input[type="password"].is-disabled,
input[type="search"][disabled],
input[type="search"].is-disabled,
input[type="tel"][disabled],
input[type="tel"].is-disabled,
input[type="text"][disabled],
input[type="text"].is-disabled,
input[type="time"][disabled],
input[type="time"].is-disabled,
input[type="url"][disabled],
input[type="url"].is-disabled,
input[type="week"][disabled],
input[type="week"].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

input[type="button"],
input[type="date"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="submit"],
input[type="text"],
input[type="tel"],
input[type="url"],
textarea {
  border-radius: 4px;
}

input[type="date"],
input[type="email"],
input[type="text"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
textarea {
  padding: 0.5rem;
}

input[type="email"],
input[type="date"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
textarea {
  width: 100%;
  border: 1px solid #7a7a7a;
}

input[type="submit"] {
  text-transform: uppercase;
}

textarea {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
  margin-bottom: 0;
  display: block;
  clear: both;
  width: 100%;
}

input[type="password"] {
  letter-spacing: 0.3em;
}

.input-group {
  display: flex;
  flex-direction: row;
  wrap: nowrap;
}

.input-group__content {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.input-group__button-container .btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.wpcf7-form {
  display: flex;
  flex-wrap: wrap;
}

.form-group--primary,
.form-group--secondary {
  padding: 0.5rem;
}

@media all and (min-width: 48em) {
  .form-group--primary,
  .form-group--secondary {
    padding: 1rem;
    max-width: 50%;
  }
}

.form-group--primary {
  flex-grow: 1;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
}

.form-group--secondary {
  flex-grow: 2;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
}

.cf-response {
  min-width: 100%;
}

.wpcf7-acceptance label {
  display: inline-block;
  font-weight: normal;
  line-height: 1.5;
  text-transform: none;
}

.wpcf7-acceptance [type="checkbox"] {
  margin-left: -1em;
}

.wpcf7-not-valid-tip,
.wpcf7-not-valid-tip-no-ajax {
  color: #D9534F;
}

input.wpcf7-not-valid,
textarea.wpcf7-not-valid {
  border-color: #D9534F;
}

.wpcf7-validation-errors,
.wpcf7-response-output,
.wpcf7-mail-sent-ok {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.27273;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  padding: 0.5rem;
  box-shadow: 1px 2px 3px #252525;
}

.wpcf7-validation-errors {
  background-color: #D9534F;
  border: 4px solid #b52b27;
}

.wpcf7-response-output {
  background-color: #F0AD4E;
  border: 4px solid #df8a13;
}

.wpcf7-mail-sent-ok {
  background-color: #5CB85C;
  border: 4px solid #3d8b3d;
}

div.wpcf7-response-output {
  margin-bottom: 0.5rem;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0.5rem;
}

.wpcf7-display-none {
  display: none;
}

/*

Search Forms
============

	<form action="/" class="search">
		<fieldset>
			<input type="text" placeholder="Search" />
			<button type="submit">Go!</button>
		</fieldset>
	</form>

*/
/*

Widgets
=======

Put your 'widgets' here


<div class="widget owl-spacing widget_archive">
	<header class="widget__header">
		<h3 class="widget__title cramp">Archives</h3>
	</header>
	<ul>
		<li><a href="http://template-site.liam.local/2018/03/">March 2018</a></li>
		<li><a href="http://template-site.liam.local/2018/02/">February 2018</a></li>
		<li><a href="http://template-site.liam.local/2018/01/">January 2018</a></li>
		<li><a href="http://template-site.liam.local/2017/12/">December 2017</a></li>
		<li><a href="http://template-site.liam.local/2017/11/">November 2017</a></li>
		<li><a href="http://template-site.liam.local/2017/10/">October 2017</a></li>
		<li><a href="http://template-site.liam.local/2017/09/">September 2017</a></li>
		<li><a href="http://template-site.liam.local/2017/08/">August 2017</a></li>
	</ul>
</div>



*/
.widget:not(:first-of-type) {
  padding-top: 2rem;
}

.widget + .widget {
  border-top: 1px solid;
}

.widget li a {
  display: block;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

/******************************************************************
Site Name:
Author:

Stylesheet: WordPress Media Stylesheet

******************************************************************/
/* Alignment */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  margin-bottom: 1rem;
  /*rtl:ignore*/
  margin-left: 1rem;
}

.aligncenter {
  clear: both;
  display: block;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

img.alignnone {
  margin: 0.3125em 0 1rem;
}

.content__inner .alignwide,
.content__inner .alignfull {
  clear: both;
  position: relative;
}

.content__inner .alignwide {
  margin-left: auto;
  margin-right: auto;
  max-width: 100vw;
}

@media all and (min-width: 64em) {
  .content__inner .alignwide {
    margin-left: -50px;
    margin-right: -50px;
    max-width: 1200px;
  }
}

@media all and (min-width: 80em) {
  .content__inner .alignwide {
    margin-left: -75px;
    margin-right: -75px;
    max-width: 1250px;
  }
}

.content__inner .alignfull {
  margin-left: calc( -100vw / 2 + 100% / 2);
  margin-right: calc( -100vw / 2 + 100% / 2);
  max-width: 100vw;
}

.centered-media-content {
  text-align: center;
}

/* Blog/News Post Images and Captions */
.wp-caption {
  max-width: 100%;
  background: transparent;
  border: none;
}

@media all and (min-width: 48em) {
  .wp-caption.aligncenter {
    position: relative;
    left: calc( calc(8 * (100vw / 12) - 28px) / 2);
    transform: translateX(-50%);
  }
}

@media all and (min-width: 64em) {
  .wp-caption.aligncenter {
    left: calc( calc(6 * (100vw / 12) - 28px) / 2);
  }
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-image figcaption {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.wp-caption-dt {
  margin: 0;
}

.wp-caption .wp-caption-text,
.wp-caption-dd {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.57143;
  margin-bottom: 0;
  color: #7a7a7a;
  font-style: italic;
  padding-top: 0.5rem;
}

@media all and (min-width: 48em) {
  .wp-caption .wp-caption-text,
  .wp-caption-dd {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
}

.mceTemp + ul,
.mceTemp + ol {
  list-style-position: inside;
}

/******************************************************************
Site Name:
Author:

Stylesheet: WordPress Embeds Stylesheet

******************************************************************/
.wp-block-embed {
  margin-bottom: 1em;
}

.wp-block-embed figcaption {
  color: #555d66;
  font-size: 13px;
  margin-bottom: 1em;
  margin-top: .5em;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  text-align: center;
}

.wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper,
.wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper,
.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper,
.wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper,
.wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper,
.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper,
.wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper {
  position: relative;
}

.wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper::before,
.wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper::before,
.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before,
.wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper::before,
.wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper::before,
.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before,
.wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper::before {
  content: "";
  display: block;
  padding-top: 50%;
}

.wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper::before {
  padding-top: 42.85%;
}

.wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper::before {
  padding-top: 50%;
}

.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before {
  padding-top: 56.25%;
}

.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before {
  padding-top: 75%;
}

.wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper::before {
  padding-top: 100%;
}

.wp-block-embed.wp-embed-aspect-9-6 .wp-block-embed__wrapper::before {
  padding-top: 66.66%;
}

.wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper::before {
  padding-top: 200%;
}

/******************************************************************

Stylesheet: WordPress Gallery Stylesheet

<ul class="wp-block-gallery columns-3 is-cropped">
	<li class="blocks-gallery-item">
		<figure>
		<img src="example.jpg" class="wp-image-75">
		</figure>
	</li>
	<li class="blocks-gallery-item">
		<figure>
			<img src="image6.jpg" class="wp-image-76">
		</figure>
	</li>
	<li class="blocks-gallery-item">
		<figure>
			<img src="shop-bg.jpg" class="wp-image-77">
			<figcaption>Gallery background</figcaption>
		</figure>
	</li>
	<li class="blocks-gallery-item">
		<figure>
			<img src="gallery-bg.jpg" class="wp-image-78">
			<figcaption>Shop background</figcaption>
		</figure>
	</li>
</ul>

******************************************************************/
.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  margin: 0 1rem 1rem 0;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.wp-block-gallery .blocks-gallery-image figure,
.wp-block-gallery .blocks-gallery-item figure {
  margin: 0;
  height: 100%;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .wp-block-gallery .blocks-gallery-image figure,
  .wp-block-gallery .blocks-gallery-item figure {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
}

.wp-block-gallery .blocks-gallery-image img,
.wp-block-gallery .blocks-gallery-item img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wp-block-gallery .blocks-gallery-image img,
.wp-block-gallery .blocks-gallery-item img {
  width: 100%;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .wp-block-gallery .blocks-gallery-image img,
  .wp-block-gallery .blocks-gallery-item img {
    width: auto;
  }
}

.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  padding: 40px 10px 5px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.3) 60%, transparent);
}

.wp-block-gallery .blocks-gallery-image figcaption img,
.wp-block-gallery .blocks-gallery-item figcaption img {
  display: inline;
}

.wp-block-gallery.is-cropped .blocks-gallery-image a,
.wp-block-gallery.is-cropped .blocks-gallery-image img,
.wp-block-gallery.is-cropped .blocks-gallery-item a,
.wp-block-gallery.is-cropped .blocks-gallery-item img {
  width: 100%;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .wp-block-gallery.is-cropped .blocks-gallery-image a,
  .wp-block-gallery.is-cropped .blocks-gallery-image img,
  .wp-block-gallery.is-cropped .blocks-gallery-item a,
  .wp-block-gallery.is-cropped .blocks-gallery-item img {
    height: 100% !important;
    flex: 1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  width: calc((100% - 16px)/ 2);
}

.wp-block-gallery .blocks-gallery-image:nth-of-type(even),
.wp-block-gallery .blocks-gallery-item:nth-of-type(even) {
  margin-right: 0;
}

.wp-block-gallery.columns-1 .blocks-gallery-image,
.wp-block-gallery.columns-1 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
}

@media all and (min-width: 37.5em) {
  .wp-block-gallery.columns-3 .blocks-gallery-image,
  .wp-block-gallery.columns-3 .blocks-gallery-item {
    width: calc((100% - 16px * 2)/ 3);
    margin-right: 16px;
  }
  .wp-block-gallery.columns-4 .blocks-gallery-image,
  .wp-block-gallery.columns-4 .blocks-gallery-item {
    width: calc((100% - 16px * 3)/ 4);
    margin-right: 16px;
  }
  .wp-block-gallery.columns-5 .blocks-gallery-image,
  .wp-block-gallery.columns-5 .blocks-gallery-item {
    width: calc((100% - 16px * 4)/ 5);
    margin-right: 16px;
  }
  .wp-block-gallery.columns-6 .blocks-gallery-image,
  .wp-block-gallery.columns-6 .blocks-gallery-item {
    width: calc((100% - 16px * 5)/ 6);
    margin-right: 16px;
  }
  .wp-block-gallery.columns-7 .blocks-gallery-image,
  .wp-block-gallery.columns-7 .blocks-gallery-item {
    width: calc((100% - 16px * 6)/ 7);
    margin-right: 16px;
  }
  .wp-block-gallery.columns-8 .blocks-gallery-image,
  .wp-block-gallery.columns-8 .blocks-gallery-item {
    width: calc((100% - 16px * 7)/ 8);
    margin-right: 16px;
  }
  .wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),
  .wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n) {
    margin-right: 0;
  }
  .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),
  .wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),
  .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n) {
    margin-right: 0;
  }
  .wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),
  .wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n) {
    margin-right: 0;
  }
  .wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),
  .wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n) {
    margin-right: 0;
  }
  .wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),
  .wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n) {
    margin-right: 0;
  }
  .wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),
  .wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n) {
    margin-right: 0;
  }
  .wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),
  .wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n) {
    margin-right: 0;
  }
}

.wp-block-gallery .blocks-gallery-image:last-child,
.wp-block-gallery .blocks-gallery-item:last-child {
  margin-right: 0;
}

.wp-block-gallery .blocks-gallery-item.has-add-item-button {
  width: 100%;
}

.wp-block-gallery.alignleft,
.wp-block-gallery.alignright {
  max-width: 305px;
  width: 100%;
}

.wp-block-gallery.aligncenter,
.wp-block-gallery.alignleft,
.wp-block-gallery.alignright {
  display: flex;
}

.wp-block-gallery.aligncenter .blocks-gallery-item figure {
  justify-content: center;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Gutenberg Stylesheet

Place all your styles in the .edit-post-visual-editor block 
below. We're importing our main styles so that the Gutenberg
styles in the editor match what you will see on the front end.

******************************************************************/
.edit-post-visual-editor .size-auto,
.edit-post-visual-editor .size-full,
.edit-post-visual-editor .size-large,
.edit-post-visual-editor .size-medium,
.edit-post-visual-editor .size-thumbnail {
  max-width: 100%;
  height: auto;
}

/**
* Assigning colors to blocks.
* Change/add more classes for your block colors:
* .has-your-theme-color-background-color {}
* .has-your-theme-color-color {}
*
* See here: https://wordpress.org/gutenberg/handbook/extensibility/theme-support/
*/
.has-studio-bio-blue-background-color {
  background-color: #0056ac;
}

.has-studio-bio-blue-color {
  color: #0056ac;
}

/* Style the Gutenberg page */
/* Main editor column width */
/* Width of "wide" blocks */
/* Width of "full-wide" blocks */
body.gutenberg-editor-page .editor-block-list__block[data-align="full"] {
  max-width: none;
}

.wp-block-column > * + * {
  margin-top: 0.875rem;
}

@media all and (min-width: 64em) {
  .wp-block-column > * + * {
    margin-top: 1rem;
  }
}

/******************************************************************
Site Name:
Author:

Stylesheet: WordPress Plugins Stylesheet

******************************************************************/
.wsp-container > * + * {
  margin-top: 0.875rem;
}

@media all and (min-width: 64em) {
  .wsp-container > * + * {
    margin-top: 1rem;
  }
}

.wsp-container .wsp-archives-title {
  display: none !important;
  visibility: hidden;
}

.wsp-archives-list > * + * {
  margin-top: 0.875rem;
}

@media all and (min-width: 64em) {
  .wsp-archives-list > * + * {
    margin-top: 1rem;
  }
}

/*
Globals
*/
.g-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid;
}

@media all and (min-width: 48em) {
  .g-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
  }
}

.g-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

@media all and (max-width: 47.9375em) {
  .g-header__inner {
    flex-direction: column;
  }
}

.g-footer {
  background-color: #b60000;
  color: #FFFFFF;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.g-logo-container {
  padding: 1rem;
  vertical-align: middle;
}

.g-logo {
  background-image: url("../img/site-logo.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  vertical-align: middle;
  background-size: 180px 85px;
  height: 85px;
  width: 180px;
}

@media all and (min-width: 64em) {
  .g-logo {
    background-size: 280px 131px;
    height: 131px;
    width: 280px;
  }
}

.g-nav-container {
  vertical-align: middle;
  display: flex;
}

@media all and (min-width: 48em) {
  .g-nav-container {
    border-top: 12px solid #e9d220;
    margin-right: -3000px;
    padding-right: 3000px;
  }
}

.g-nav {
  display: flex;
}

@media all and (max-width: 47.9375em) {
  .g-nav {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
}

@media all and (min-width: 48em) {
  .g-nav {
    margin-top: -12px;
  }
}

.g-secondary-nav {
  background-color: #252525;
  color: #FFFFFF;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.g-secondary-nav__inner {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

@media all and (min-width: 48em) {
  .g-secondary-nav__inner {
    flex-direction: row;
  }
}

.g-essential-info-bar {
  background-color: #b60000;
  color: #FFFFFF;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.g-essential-info-bar__inner {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media all and (min-width: 48em) {
  .g-essential-info-bar__inner {
    flex-direction: row;
  }
}

.g-footer-nav__list {
  list-style: none;
  list-style-image: none;
  margin: 0;
}

@media all and (min-width: 48em) {
  .g-footer-nav__list {
    display: flex;
    justify-content: space-between;
  }
}

body.hidden-scroll {
  overflow: hidden;
}

.sl-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #282828;
  opacity: 0.9;
  display: none;
  z-index: 1035;
}

.sl-wrapper {
  z-index: 1040;
}

.sl-wrapper button {
  border: 0 none;
  background: transparent;
  font-size: 28px;
  padding: 0;
  cursor: pointer;
}

.sl-wrapper button:hover {
  opacity: 0.7;
}

.sl-wrapper .sl-close {
  display: none;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 10060;
  margin-top: -14px;
  margin-right: -14px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  font-family: Arial, Baskerville, monospace;
  color: #000;
  font-size: 3rem;
}

.sl-wrapper .sl-close:focus {
  outline: none;
}

.sl-wrapper .sl-counter {
  display: none;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1060;
  color: #000;
  font-size: 1rem;
}

.sl-wrapper .sl-navigation {
  width: 100%;
  display: none;
}

.sl-wrapper .sl-navigation button {
  position: fixed;
  top: 50%;
  margin-top: -22px;
  height: 44px;
  width: 22px;
  line-height: 44px;
  text-align: center;
  display: block;
  z-index: 10060;
  font-family: Arial, Baskerville, monospace;
  color: #000;
}

.sl-wrapper .sl-navigation button.sl-next {
  right: 5px;
  font-size: 2rem;
}

.sl-wrapper .sl-navigation button.sl-prev {
  left: 5px;
  font-size: 2rem;
}

.sl-wrapper .sl-navigation button:focus {
  outline: none;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 10px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 10px;
    font-size: 3rem;
  }
}

@media (min-width: 50em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 20px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 20px;
    font-size: 3rem;
  }
}

.sl-wrapper .sl-image {
  position: fixed;
  touch-action: none;
  z-index: 10000;
}

.sl-wrapper .sl-image img {
  margin: 0;
  padding: 0;
  display: block;
  border: 0 none;
  width: 100%;
  height: auto;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}

@media (min-width: 50em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}

.sl-wrapper .sl-image iframe {
  background: #000;
  border: 0 none;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}

@media (min-width: 50em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}

.sl-wrapper .sl-image .sl-caption {
  display: none;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.sl-wrapper .sl-image .sl-caption.pos-top {
  bottom: auto;
  top: 0;
}

.sl-wrapper .sl-image .sl-caption.pos-outside {
  bottom: auto;
}

.sl-wrapper .sl-image .sl-download {
  display: none;
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #000;
  z-index: 1060;
}

.sl-spinner {
  display: none;
  border: 5px solid #333;
  border-radius: 40px;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 1007;
  -webkit-animation: pulsate 1s ease-out infinite;
  animation: pulsate 1s ease-out infinite;
}

.sl-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.sl-transition {
  transition: transform ease 200ms;
}

@-webkit-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/*
Shame CSS
	This is not a dumping ground. It is a staging area for hacks that are
	intended to be fixed and resolved so as not to sully our
	production-ready codebase. Hacks are necessary, but they are not
	permanent, nor are they acceptable long-term. You are not done when
	you've moved your selector and rules here.

	This is not intended to be an easy fix, or a simple way out. You will
	spend time writing out your shame, and you will make it known that
	you indeed had to resort to a hack with your next commit

	Rules:
		1) Your documentation should be written in block comment format so
		  that your shame is publically visible in the compiled stylesheet
		  (also helpful for debugging)

		2) Name yourself so we can all scorn your lack of front-end prowess
		  (or talk to you about any questions we have)

		3) Name the location your code would go were it not such a horrible
		  travesty to the name of stylesheet.

		4) Give the motive behind your sociopathic manipulation of CSS, what
		  areas are affected, what this solves, and most importantly...

		5) How would you go about rectifying the horrible crimes you have
		  committed given more time.
*/
/* Hero Banner */
/**

<figure class="hero-banner hero-banner--basic">
	<img src="hero-banner-default.jpg" class="attachment-full-width-hero-banner size-full-width-hero-banner" alt="">
</figure>

**/
.hero-banner {
  background-color: rgba(0, 0, 0, 0.25);
  min-height: 100px;
  position: relative;
  width: 100%;
}

.hero-banner--basic img {
  max-width: 100%;
  min-height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.hero-banner--complex {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-banner--deep {
  background-image: url("../img/backgrounds/page-header-deep-bg--small.jpg");
  color: #FFFFFF;
  min-height: 350px;
}

@media all and (min-width: 37.5em) {
  .hero-banner--deep {
    background-image: url("../img/backgrounds/page-header-deep-bg--medium.jpg");
    height: 60vh;
  }
}

@media all and (min-width: 48em) {
  .hero-banner--deep {
    background-image: url("../img/backgrounds/page-header-deep-bg--large.jpg");
  }
}

@media all and (min-width: 64em) {
  .hero-banner--deep {
    background-image: url("../img/backgrounds/page-header-deep-bg--xlarge.jpg");
  }
}

.hero-banner__content {
  background-color: rgba(95, 24, 85, 0.75);
  max-width: 90%;
  padding: 1rem;
  z-index: 1;
}

@media all and (max-width: 37.4375em) {
  .hero-banner__content {
    min-width: 280px;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
}

@media all and (min-width: 48em) {
  .hero-banner__content {
    max-width: 474px;
    padding: 1.5rem;
  }
}

@media all and (min-width: 30em) {
  .hero-banner--deep .hero-banner__content {
    padding: 1.5rem;
  }
}

@media all and (min-width: 37.5em) {
  .hero-banner--deep .hero-banner__content {
    min-width: 450px;
  }
}

@media all and (min-width: 48em) {
  .hero-banner--deep .hero-banner__content {
    min-width: 500px;
  }
}

.hero-banner__content h1 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.27778;
  margin-bottom: 0;
}

@media all and (min-width: 48em) {
  .hero-banner__content h1 {
    font-size: 46px;
    font-size: 2.875rem;
    line-height: 1.21739;
    margin-bottom: 0;
  }
}

.hero-banner__content h1 div {
  font-weight: normal;
  font-family: "Muli", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.28571;
  margin-bottom: 0;
}

@media all and (min-width: 48em) {
  .hero-banner__content h1 div {
    font-size: 31px;
    font-size: 1.9375rem;
    line-height: 1.25806;
    margin-bottom: 0;
  }
}

@media all and (min-width: 64em) {
  .hero-banner__content h1 div {
    font-size: 38px;
    font-size: 2.375rem;
    line-height: 1.21053;
    margin-bottom: 0;
  }
}

.no-flexbox .hero-banner__content {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media all and (max-width: 47.9375em) {
  .sidebar--primary {
    border-top: 1px solid;
    padding-top: 1.5rem;
  }
}

@media all and (min-width: 48em) {
  .sidebar--primary {
    border-left: 1px solid;
    padding-left: 1rem;
  }
}

@media all and (min-width: 64em) {
  .sidebar--primary {
    padding-left: 1.5rem;
  }
}

.owl-bordered > * + * {
  border-top: 1px solid;
}

@media all and (min-width: 48em) {
  .section--narrow {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
}

@media all and (min-width: 64em) {
  .section--narrow {
    max-width: 80%;
  }
}

@media all and (min-width: 37.5em) {
  .section--xnarrow {
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
  }
}

@media all and (min-width: 48em) {
  .section--xnarrow {
    max-width: 70%;
  }
}

@media all and (min-width: 64em) {
  .section--xnarrow {
    max-width: 60%;
  }
}

.columns {
  -moz-column-gap: 2em;
       column-gap: 2em;
}

.columns--1 {
  width: 100%;
}

.columns--2 {
  -moz-columns: 18.75rem 2;
       columns: 18.75rem 2;
}

.columns--3 {
  -moz-columns: 18.75rem 3;
       columns: 18.75rem 3;
}

.section--content-with-images .section--content__inner {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -1rem;
  margin-left: -1rem;
  margin-right: -1rem;
}

.section--content-with-images__content {
  flex: 1 1 300px;
  margin: 1rem;
  margin-top: 0.5rem;
  width: calc(50% - 1rem);
}

.section--content-with-images__images {
  flex: 1 1 300px;
  margin: 1rem;
  margin-top: 0.5rem;
  width: calc(100% - 1rem);
}

.image-list__item img {
  width: 100%;
}

.gallery ul {
  display: grid;
  grid-gap: 0;
  grid-template-columns: repeat(2, 1fr);
}

@media all and (min-width: 37.5em) {
  .gallery ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media all and (min-width: 48em) {
  .gallery ul {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery_image {
  display: block;
  width: 100%;
}

.gallery_image img {
  width: 100%;
}

.entry-content--excerpt {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.26667;
  margin-bottom: 0;
}

@media all and (min-width: 64em) {
  .entry-content--excerpt {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.22222;
    margin-bottom: 0;
  }
}

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    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) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
  }
}

/* endif */
