/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block; }

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

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

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

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

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

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

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

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * 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; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * 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; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

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

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 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 */ }

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold; }

/**
 * 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; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * 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; }

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 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 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
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 and cancel buttons in Chrome and Safari on OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

/**
 * 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 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

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

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.clearfix, .cf {
  zoom: 1; }
  .clearfix:before, .clearfix:after, .cf:before, .cf:after {
    content: "";
    display: table; }
  .clearfix:after, .cf:after {
    clear: both; }

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

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

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*!
 * Font Awesome Free 5.0.8 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome5';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/fa-regular-400.eot");
  src: url("../fonts/fa-regular-400d41d.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.woff") format("woff"), url("../fonts/fa-regular-400.ttf") format("truetype"), url("../fonts/fa-regular-400.svg#fontawesome") format("svg"); }

@font-face {
  font-family: 'FontAwesome5';
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/fa-solid-900.eot");
  src: url("../fonts/fa-solid-900d41d.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.woff") format("woff"), url("../fonts/fa-solid-900.ttf") format("truetype"), url("../fonts/fa-solid-900.svg#fontawesome") format("svg"); }

@font-face {
  font-family: 'FontAwesome5Brands';
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/fa-brands-400.eot");
  src: url("../fonts/fa-brands-400d41d.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff"), url("../fonts/fa-brands-400.ttf") format("truetype"), url("../fonts/fa-brands-400.svg#fontawesome") format("svg"); }

.fa,
.fas,
.far,
.fal,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

.far {
  font-family: 'FontAwesome5';
  font-weight: 400; }

.fa,
.fas {
  font-family: 'FontAwesome5';
  font-weight: 900; }

.fab {
  font-family: 'FontAwesome5Brands'; }

.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  animation: fa-spin 1s infinite steps(8); }

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

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1); }

.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-card:before {
  content: "\f2bb"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-adn:before {
  content: "\f170"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-algolia:before {
  content: "\f36c"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-amazon-pay:before {
  content: "\f42c"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-amilia:before {
  content: "\f36d"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-android:before {
  content: "\f17b"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-apper:before {
  content: "\f371"; }

.fa-apple:before {
  content: "\f179"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-archive:before {
  content: "\f187"; }

.fa-arrow-alt-circle-down:before {
  content: "\f358"; }

.fa-arrow-alt-circle-left:before {
  content: "\f359"; }

.fa-arrow-alt-circle-right:before {
  content: "\f35a"; }

.fa-arrow-alt-circle-up:before {
  content: "\f35b"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-arrows-alt-h:before {
  content: "\f337"; }

.fa-arrows-alt-v:before {
  content: "\f338"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-audible:before {
  content: "\f373"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-aws:before {
  content: "\f375"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-band-aid:before {
  content: "\f462"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-bars:before {
  content: "\f0c9"; }

.fa-baseball-ball:before {
  content: "\f433"; }

.fa-basketball-ball:before {
  content: "\f434"; }

.fa-bath:before {
  content: "\f2cd"; }

.fa-battery-empty:before {
  content: "\f244"; }

.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-bed:before {
  content: "\f236"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitcoin:before {
  content: "\f379"; }

.fa-bity:before {
  content: "\f37a"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-blackberry:before {
  content: "\f37b"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-blogger-b:before {
  content: "\f37d"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-bold:before {
  content: "\f032"; }

.fa-bolt:before {
  content: "\f0e7"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-book:before {
  content: "\f02d"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-box:before {
  content: "\f466"; }

.fa-boxes:before {
  content: "\f468"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-bug:before {
  content: "\f188"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-bus:before {
  content: "\f207"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-calendar:before {
  content: "\f133"; }

.fa-calendar-alt:before {
  content: "\f073"; }

.fa-calendar-check:before {
  content: "\f274"; }

.fa-calendar-minus:before {
  content: "\f272"; }

.fa-calendar-plus:before {
  content: "\f271"; }

.fa-calendar-times:before {
  content: "\f273"; }

.fa-camera:before {
  content: "\f030"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-car:before {
  content: "\f1b9"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-caret-square-down:before {
  content: "\f150"; }

.fa-caret-square-left:before {
  content: "\f191"; }

.fa-caret-square-right:before {
  content: "\f152"; }

.fa-caret-square-up:before {
  content: "\f151"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-apple-pay:before {
  content: "\f416"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-centercode:before {
  content: "\f380"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-chart-area:before {
  content: "\f1fe"; }

.fa-chart-bar:before {
  content: "\f080"; }

.fa-chart-line:before {
  content: "\f201"; }

.fa-chart-pie:before {
  content: "\f200"; }

.fa-check:before {
  content: "\f00c"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-chess:before {
  content: "\f439"; }

.fa-chess-bishop:before {
  content: "\f43a"; }

.fa-chess-board:before {
  content: "\f43c"; }

.fa-chess-king:before {
  content: "\f43f"; }

.fa-chess-knight:before {
  content: "\f441"; }

.fa-chess-pawn:before {
  content: "\f443"; }

.fa-chess-queen:before {
  content: "\f445"; }

.fa-chess-rook:before {
  content: "\f447"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-circle:before {
  content: "\f111"; }

.fa-circle-notch:before {
  content: "\f1ce"; }

.fa-clipboard:before {
  content: "\f328"; }

.fa-clipboard-check:before {
  content: "\f46c"; }

.fa-clipboard-list:before {
  content: "\f46d"; }

.fa-clock:before {
  content: "\f017"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-closed-captioning:before {
  content: "\f20a"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-cloud-download-alt:before {
  content: "\f381"; }

.fa-cloud-upload-alt:before {
  content: "\f382"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-code:before {
  content: "\f121"; }

.fa-code-branch:before {
  content: "\f126"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cog:before {
  content: "\f013"; }

.fa-cogs:before {
  content: "\f085"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-comment:before {
  content: "\f075"; }

.fa-comment-alt:before {
  content: "\f27a"; }

.fa-comments:before {
  content: "\f086"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-compress:before {
  content: "\f066"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-copy:before {
  content: "\f0c5"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-crop:before {
  content: "\f125"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-css3-alt:before {
  content: "\f38b"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-cut:before {
  content: "\f0c4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-deaf:before {
  content: "\f2a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-dna:before {
  content: "\f471"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dollar-sign:before {
  content: "\f155"; }

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-dot-circle:before {
  content: "\f192"; }

.fa-download:before {
  content: "\f019"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-edge:before {
  content: "\f282"; }

.fa-edit:before {
  content: "\f044"; }

.fa-eject:before {
  content: "\f052"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-ember:before {
  content: "\f423"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-envira:before {
  content: "\f299"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-euro-sign:before {
  content: "\f153"; }

.fa-exchange-alt:before {
  content: "\f362"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-expand:before {
  content: "\f065"; }

.fa-expand-arrows-alt:before {
  content: "\f31e"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-external-link-alt:before {
  content: "\f35d"; }

.fa-external-link-square-alt:before {
  content: "\f360"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-dropper:before {
  content: "\f1fb"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-facebook-messenger:before {
  content: "\f39f"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-female:before {
  content: "\f182"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-alt:before {
  content: "\f15c"; }

.fa-file-archive:before {
  content: "\f1c6"; }

.fa-file-audio:before {
  content: "\f1c7"; }

.fa-file-code:before {
  content: "\f1c9"; }

.fa-file-excel:before {
  content: "\f1c3"; }

.fa-file-image:before {
  content: "\f1c5"; }

.fa-file-pdf:before {
  content: "\f1c1"; }

.fa-file-powerpoint:before {
  content: "\f1c4"; }

.fa-file-video:before {
  content: "\f1c8"; }

.fa-file-word:before {
  content: "\f1c2"; }

.fa-film:before {
  content: "\f008"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-first-aid:before {
  content: "\f479"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-flag:before {
  content: "\f024"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-fly:before {
  content: "\f417"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-font:before {
  content: "\f031"; }

.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-font-awesome-flag:before {
  content: "\f425"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-fonticons-fi:before {
  content: "\f3a2"; }

.fa-football-ball:before {
  content: "\f44e"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-fort-awesome-alt:before {
  content: "\f3a3"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-frown:before {
  content: "\f119"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-gavel:before {
  content: "\f0e3"; }

.fa-gem:before {
  content: "\f3a5"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-github:before {
  content: "\f09b"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-gitkraken:before {
  content: "\f3a6"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-gitter:before {
  content: "\f426"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-gofore:before {
  content: "\f3a7"; }

.fa-golf-ball:before {
  content: "\f450"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-google-drive:before {
  content: "\f3aa"; }

.fa-google-play:before {
  content: "\f3ab"; }

.fa-google-plus:before {
  content: "\f2b3"; }

.fa-google-plus-g:before {
  content: "\f0d5"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-gulp:before {
  content: "\f3ae"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-hand-lizard:before {
  content: "\f258"; }

.fa-hand-paper:before {
  content: "\f256"; }

.fa-hand-peace:before {
  content: "\f25b"; }

.fa-hand-point-down:before {
  content: "\f0a7"; }

.fa-hand-point-left:before {
  content: "\f0a5"; }

.fa-hand-point-right:before {
  content: "\f0a4"; }

.fa-hand-point-up:before {
  content: "\f0a6"; }

.fa-hand-pointer:before {
  content: "\f25a"; }

.fa-hand-rock:before {
  content: "\f255"; }

.fa-hand-scissors:before {
  content: "\f257"; }

.fa-hand-spock:before {
  content: "\f259"; }

.fa-handshake:before {
  content: "\f2b5"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-hdd:before {
  content: "\f0a0"; }

.fa-heading:before {
  content: "\f1dc"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-heart:before {
  content: "\f004"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-history:before {
  content: "\f1da"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-home:before {
  content: "\f015"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-hospital:before {
  content: "\f0f8"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

.fa-hotjar:before {
  content: "\f3b1"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-start:before {
  content: "\f251"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-image:before {
  content: "\f03e"; }

.fa-images:before {
  content: "\f302"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-industry:before {
  content: "\f275"; }

.fa-info:before {
  content: "\f129"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-italic:before {
  content: "\f033"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-key:before {
  content: "\f084"; }

.fa-keyboard:before {
  content: "\f11c"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-lemon:before {
  content: "\f094"; }

.fa-less:before {
  content: "\f41d"; }

.fa-level-down-alt:before {
  content: "\f3be"; }

.fa-level-up-alt:before {
  content: "\f3bf"; }

.fa-life-ring:before {
  content: "\f1cd"; }

.fa-lightbulb:before {
  content: "\f0eb"; }

.fa-line:before {
  content: "\f3c0"; }

.fa-link:before {
  content: "\f0c1"; }

.fa-linkedin:before {
  content: "\f08c"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-lira-sign:before {
  content: "\f195"; }

.fa-list:before {
  content: "\f03a"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-lock:before {
  content: "\f023"; }

.fa-lock-open:before {
  content: "\f3c1"; }

.fa-long-arrow-alt-down:before {
  content: "\f309"; }

.fa-long-arrow-alt-left:before {
  content: "\f30a"; }

.fa-long-arrow-alt-right:before {
  content: "\f30b"; }

.fa-long-arrow-alt-up:before {
  content: "\f30c"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-male:before {
  content: "\f183"; }

.fa-map:before {
  content: "\f279"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-map-marker-alt:before {
  content: "\f3c5"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-medapps:before {
  content: "\f3c6"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-medium-m:before {
  content: "\f3c7"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-medrt:before {
  content: "\f3c8"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-meh:before {
  content: "\f11a"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-minus:before {
  content: "\f068"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-mobile:before {
  content: "\f10b"; }

.fa-mobile-alt:before {
  content: "\f3cd"; }

.fa-modx:before {
  content: "\f285"; }

.fa-monero:before {
  content: "\f3d0"; }

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-moon:before {
  content: "\f186"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-music:before {
  content: "\f001"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-newspaper:before {
  content: "\f1ea"; }

.fa-nintendo-switch:before {
  content: "\f418"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-paste:before {
  content: "\f0ea"; }

.fa-patreon:before {
  content: "\f3d9"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-pen-square:before {
  content: "\f14b"; }

.fa-pencil-alt:before {
  content: "\f303"; }

.fa-percent:before {
  content: "\f295"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phone:before {
  content: "\f095"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-phone-volume:before {
  content: "\f2a0"; }

.fa-php:before {
  content: "\f457"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-pills:before {
  content: "\f484"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-plane:before {
  content: "\f072"; }

.fa-play:before {
  content: "\f04b"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-playstation:before {
  content: "\f3df"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-plus:before {
  content: "\f067"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-pound-sign:before {
  content: "\f154"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-print:before {
  content: "\f02f"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-pushed:before {
  content: "\f3e1"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-python:before {
  content: "\f3e2"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-question:before {
  content: "\f128"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-quidditch:before {
  content: "\f458"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-random:before {
  content: "\f074"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-red-river:before {
  content: "\f3e3"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-rendact:before {
  content: "\f3e4"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-road:before {
  content: "\f018"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-rupee-sign:before {
  content: "\f156"; }

.fa-safari:before {
  content: "\f267"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-save:before {
  content: "\f0c7"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-search:before {
  content: "\f002"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-server:before {
  content: "\f233"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-share:before {
  content: "\f064"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-shekel-sign:before {
  content: "\f20b"; }

.fa-shield-alt:before {
  content: "\f3ed"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-shipping-fast:before {
  content: "\f48b"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-sign-in-alt:before {
  content: "\f2f6"; }

.fa-sign-language:before {
  content: "\f2a7"; }

.fa-sign-out-alt:before {
  content: "\f2f5"; }

.fa-signal:before {
  content: "\f012"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f3ef"; }

.fa-sliders-h:before {
  content: "\f1de"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-smile:before {
  content: "\f118"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-alpha-down:before {
  content: "\f15d"; }

.fa-sort-alpha-up:before {
  content: "\f15e"; }

.fa-sort-amount-down:before {
  content: "\f160"; }

.fa-sort-amount-up:before {
  content: "\f161"; }

.fa-sort-down:before {
  content: "\f0dd"; }

.fa-sort-numeric-down:before {
  content: "\f162"; }

.fa-sort-numeric-up:before {
  content: "\f163"; }

.fa-sort-up:before {
  content: "\f0de"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-square-full:before {
  content: "\f45c"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-staylinked:before {
  content: "\f3f5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-steam-symbol:before {
  content: "\f3f6"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-sticker-mule:before {
  content: "\f3f7"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stopwatch:before {
  content: "\f2f2"; }

.fa-strava:before {
  content: "\f428"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-subway:before {
  content: "\f239"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-sun:before {
  content: "\f185"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-sync:before {
  content: "\f021"; }

.fa-sync-alt:before {
  content: "\f2f1"; }

.fa-syringe:before {
  content: "\f48e"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-table-tennis:before {
  content: "\f45d"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-tablet-alt:before {
  content: "\f3fa"; }

.fa-tachometer-alt:before {
  content: "\f3fd"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-taxi:before {
  content: "\f1ba"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f3fe"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-thermometer:before {
  content: "\f491"; }

.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbtack:before {
  content: "\f08d"; }

.fa-ticket-alt:before {
  content: "\f3ff"; }

.fa-times:before {
  content: "\f00d"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-tint:before {
  content: "\f043"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-train:before {
  content: "\f238"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-trash-alt:before {
  content: "\f2ed"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-trello:before {
  content: "\f181"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-tv:before {
  content: "\f26c"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-typo3:before {
  content: "\f42b"; }

.fa-uber:before {
  content: "\f402"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-undo:before {
  content: "\f0e2"; }

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-university:before {
  content: "\f19c"; }

.fa-unlink:before {
  content: "\f127"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-upload:before {
  content: "\f093"; }

.fa-usb:before {
  content: "\f287"; }

.fa-user:before {
  content: "\f007"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-users:before {
  content: "\f0c0"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-utensil-spoon:before {
  content: "\f2e5"; }

.fa-utensils:before {
  content: "\f2e7"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-venus:before {
  content: "\f221"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-viber:before {
  content: "\f409"; }

.fa-video:before {
  content: "\f03d"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-vk:before {
  content: "\f189"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-warehouse:before {
  content: "\f494"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-weight:before {
  content: "\f496"; }

.fa-weixin:before {
  content: "\f1d7"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-whatsapp-square:before {
  content: "\f40c"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-whmcs:before {
  content: "\f40d"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-window-close:before {
  content: "\f410"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-won-sign:before {
  content: "\f159"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-wordpress-simple:before {
  content: "\f411"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-xbox:before {
  content: "\f412"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-y-combinator:before {
  content: "\f23b"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-youtube-square:before {
  content: "\f431"; }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  /*
  -ms-word-wrap: break-word;
  word-break: break-word; //non-standart css for webkit
  word-wrap: break-word;
*/
  /*
  -webkit-hyphens: auto;
     -moz-hyphens: auto;
          hyphens: auto;
*/
  /*
  -webkit-hyphenate-before: 2;
   -webkit-hyphenate-after: 3;
           hyphenate-lines: 3;
*/
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig"; }

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

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
TRANSFORM
*********************/
/*********************
ANIMATION
*********************/
/*********************
BACKGROUND COLOR OPACITY
*********************/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SHADOW
*********************/
/* @include box-shadow(1px 1px 0 0 #000000); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************

Stylesheet: Grid Stylesheet

http://gridsetapp.com - Love this site. Responsive Grids made easy.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important; }

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .m-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .m-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .m-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .m-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }
  .m-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .m-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .m-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .m-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .m-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .m-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .m-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .m-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }
  .m-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .m-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }
  .m-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .m-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; } }

/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }
  .t-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .t-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .t-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .t-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .t-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .t-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .t-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .t-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }
  .t-3of8 {
    float: left;
    padding-right: 0.75em;
    width: 37.5%; }
  .t-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .t-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }
  .t-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .t-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; }
  .t-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.66%; }
  .t-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.33%; }
  .t-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.66%; } }

/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }
  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }
  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }
  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }
  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }
  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }
  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }
  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }
  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }
  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }
  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }
  .d-3of8 {
    float: left;
    padding-right: 0.75em;
    width: 37.5%; }
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; }
  .d-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.66%; }
  .d-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.33%; }
  .d-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.66%; } }

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

Stylesheet: Flex Styles

******************************************************************/
.flex {
  display: flex; }

.center-v {
  display: flex;
  align-items: center; }

.center-h {
  display: flex;
  justify-content: center; }

.center-vh {
  display: flex;
  align-items: center;
  justify-content: center; }

/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-success, .alert-error, .alert-info, .alert-help {
  border: 2px solid;
  margin: 1.5em;
  padding: 1em; }

.alert-help {
  background: #ebe16f;
  border-color: #e8dc59; }

.alert-info {
  background: #d5edf8;
  border-color: #bfe4f4; }

.alert-error {
  background: #fbe3e4;
  border-color: #f8cdce; }

.alert-success {
  background: #e6efc2;
  border-color: #deeaae; }

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

Stylesheet: Button Styles

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.
*********************/
.btn-accent, .accent-btn, .btn-secondary, .secondary-btn, .btn, .button, button, .gform_button, .btn-primary, .primary-btn {
  background-color: #fcb61a;
  border: 0;
  color: #404042;
  cursor: pointer;
  display: inline-block;
  font-family: "trade-gothic-next", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 1em;
  font-weight: 800;
  line-height: 1em;
  padding: 0.875em 2.25em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out; }
  .btn-accent:hover, .accent-btn:hover, .btn-secondary:hover, .secondary-btn:hover, .btn:hover, .button:hover, button:hover, .gform_button:hover, .btn-primary:hover, .primary-btn:hover, .btn-accent:focus, .accent-btn:focus, .btn-secondary:focus, .secondary-btn:focus, .btn:focus, .button:focus, button:focus, .gform_button:focus, .btn-primary:focus, .primary-btn:focus, .btn-accent:active, .accent-btn:active, .btn-secondary:active, .secondary-btn:active, .btn:active, .button:active, button:active, .gform_button:active, .btn-primary:active, .primary-btn:active {
    background-color: #fdc64c;
    color: #404042;
    outline: none;
    text-decoration: none;
    -webkit-transition: background-color 0.14s ease-in-out;
    transition: background-color 0.14s ease-in-out; }
  .btn-accent:active, .accent-btn:active, .btn-secondary:active, .secondary-btn:active, .btn:active, .button:active, button:active, .gform_button:active, .btn-primary:active, .primary-btn:active {
    top: 1px; }

.btn-secondary, .secondary-btn {
  background-color: #336094;
  color: #fff; }
  .btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .secondary-btn:hover, .secondary-btn:focus, .secondary-btn:active {
    background-color: #4079ba;
    color: #fff; }

.btn-accent, .accent-btn {
  background-color: #404042;
  color: #fff; }
  .btn-accent:hover, .btn-accent:focus, .btn-accent:active, .accent-btn:hover, .accent-btn:focus, .accent-btn:active {
    background-color: #59595c;
    color: #fff; }

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

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: solid 1px #404042;
  border-radius: 0;
  box-shadow: none;
  color: #404042;
  display: block;
  font-family: "Lato", "trade-gothic-next", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 0.875em !important;
  line-height: 1.5 !important;
  padding: 0.75em 0.714285em !important;
  vertical-align: middle;
  width: 100%;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out; }
  input[type="text"]::placeholder,
  input[type="password"]::placeholder,
  input[type="datetime"]::placeholder,
  input[type="datetime-local"]::placeholder,
  input[type="date"]::placeholder,
  input[type="month"]::placeholder,
  input[type="time"]::placeholder,
  input[type="week"]::placeholder,
  input[type="number"]::placeholder,
  input[type="email"]::placeholder,
  input[type="url"]::placeholder,
  input[type="search"]::placeholder,
  input[type="tel"]::placeholder,
  input[type="color"]::placeholder,
  select::placeholder,
  textarea::placeholder,
  .field::placeholder {
    color: #4d4d4f;
    font-style: italic; }
  input[type="text"]:focus, input[type="text"]:active,
  input[type="password"]:focus,
  input[type="password"]:active,
  input[type="datetime"]:focus,
  input[type="datetime"]:active,
  input[type="datetime-local"]:focus,
  input[type="datetime-local"]:active,
  input[type="date"]:focus,
  input[type="date"]:active,
  input[type="month"]:focus,
  input[type="month"]:active,
  input[type="time"]:focus,
  input[type="time"]:active,
  input[type="week"]:focus,
  input[type="week"]:active,
  input[type="number"]:focus,
  input[type="number"]:active,
  input[type="email"]:focus,
  input[type="email"]:active,
  input[type="url"]:focus,
  input[type="url"]:active,
  input[type="search"]:focus,
  input[type="search"]:active,
  input[type="tel"]:focus,
  input[type="tel"]:active,
  input[type="color"]:focus,
  input[type="color"]:active,
  select:focus,
  select:active,
  textarea:focus,
  textarea:active,
  .field:focus,
  .field:active {
    outline: none; }
  input[type="text"].error, input[type="text"].is-invalid,
  input[type="password"].error,
  input[type="password"].is-invalid,
  input[type="datetime"].error,
  input[type="datetime"].is-invalid,
  input[type="datetime-local"].error,
  input[type="datetime-local"].is-invalid,
  input[type="date"].error,
  input[type="date"].is-invalid,
  input[type="month"].error,
  input[type="month"].is-invalid,
  input[type="time"].error,
  input[type="time"].is-invalid,
  input[type="week"].error,
  input[type="week"].is-invalid,
  input[type="number"].error,
  input[type="number"].is-invalid,
  input[type="email"].error,
  input[type="email"].is-invalid,
  input[type="url"].error,
  input[type="url"].is-invalid,
  input[type="search"].error,
  input[type="search"].is-invalid,
  input[type="tel"].error,
  input[type="tel"].is-invalid,
  input[type="color"].error,
  input[type="color"].is-invalid,
  select.error,
  select.is-invalid,
  textarea.error,
  textarea.is-invalid,
  .field.error,
  .field.is-invalid {
    color: #fbe3e4;
    border-color: #fbe3e4;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
    outline-color: #fbe3e4; }
  input[type="text"].success, input[type="text"].is-valid,
  input[type="password"].success,
  input[type="password"].is-valid,
  input[type="datetime"].success,
  input[type="datetime"].is-valid,
  input[type="datetime-local"].success,
  input[type="datetime-local"].is-valid,
  input[type="date"].success,
  input[type="date"].is-valid,
  input[type="month"].success,
  input[type="month"].is-valid,
  input[type="time"].success,
  input[type="time"].is-valid,
  input[type="week"].success,
  input[type="week"].is-valid,
  input[type="number"].success,
  input[type="number"].is-valid,
  input[type="email"].success,
  input[type="email"].is-valid,
  input[type="url"].success,
  input[type="url"].is-valid,
  input[type="search"].success,
  input[type="search"].is-valid,
  input[type="tel"].success,
  input[type="tel"].is-valid,
  input[type="color"].success,
  input[type="color"].is-valid,
  select.success,
  select.is-valid,
  textarea.success,
  textarea.is-valid,
  .field.success,
  .field.is-valid {
    color: #e6efc2;
    border-color: #e6efc2;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
    outline-color: #e6efc2; }
  input[type="text"][disabled], input[type="text"].is-disabled,
  input[type="password"][disabled],
  input[type="password"].is-disabled,
  input[type="datetime"][disabled],
  input[type="datetime"].is-disabled,
  input[type="datetime-local"][disabled],
  input[type="datetime-local"].is-disabled,
  input[type="date"][disabled],
  input[type="date"].is-disabled,
  input[type="month"][disabled],
  input[type="month"].is-disabled,
  input[type="time"][disabled],
  input[type="time"].is-disabled,
  input[type="week"][disabled],
  input[type="week"].is-disabled,
  input[type="number"][disabled],
  input[type="number"].is-disabled,
  input[type="email"][disabled],
  input[type="email"].is-disabled,
  input[type="url"][disabled],
  input[type="url"].is-disabled,
  input[type="search"][disabled],
  input[type="search"].is-disabled,
  input[type="tel"][disabled],
  input[type="tel"].is-disabled,
  input[type="color"][disabled],
  input[type="color"].is-disabled,
  select[disabled],
  select.is-disabled,
  textarea[disabled],
  textarea.is-disabled,
  .field[disabled],
  .field.is-disabled {
    cursor: not-allowed;
    border-color: #cfcfcf;
    opacity: 0.6; }
    input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
    input[type="password"][disabled]:focus,
    input[type="password"][disabled]:active,
    input[type="password"].is-disabled:focus,
    input[type="password"].is-disabled:active,
    input[type="datetime"][disabled]:focus,
    input[type="datetime"][disabled]:active,
    input[type="datetime"].is-disabled:focus,
    input[type="datetime"].is-disabled:active,
    input[type="datetime-local"][disabled]:focus,
    input[type="datetime-local"][disabled]:active,
    input[type="datetime-local"].is-disabled:focus,
    input[type="datetime-local"].is-disabled:active,
    input[type="date"][disabled]:focus,
    input[type="date"][disabled]:active,
    input[type="date"].is-disabled:focus,
    input[type="date"].is-disabled:active,
    input[type="month"][disabled]:focus,
    input[type="month"][disabled]:active,
    input[type="month"].is-disabled:focus,
    input[type="month"].is-disabled:active,
    input[type="time"][disabled]:focus,
    input[type="time"][disabled]:active,
    input[type="time"].is-disabled:focus,
    input[type="time"].is-disabled:active,
    input[type="week"][disabled]:focus,
    input[type="week"][disabled]:active,
    input[type="week"].is-disabled:focus,
    input[type="week"].is-disabled:active,
    input[type="number"][disabled]:focus,
    input[type="number"][disabled]:active,
    input[type="number"].is-disabled:focus,
    input[type="number"].is-disabled:active,
    input[type="email"][disabled]:focus,
    input[type="email"][disabled]:active,
    input[type="email"].is-disabled:focus,
    input[type="email"].is-disabled:active,
    input[type="url"][disabled]:focus,
    input[type="url"][disabled]:active,
    input[type="url"].is-disabled:focus,
    input[type="url"].is-disabled:active,
    input[type="search"][disabled]:focus,
    input[type="search"][disabled]:active,
    input[type="search"].is-disabled:focus,
    input[type="search"].is-disabled:active,
    input[type="tel"][disabled]:focus,
    input[type="tel"][disabled]:active,
    input[type="tel"].is-disabled:focus,
    input[type="tel"].is-disabled:active,
    input[type="color"][disabled]:focus,
    input[type="color"][disabled]:active,
    input[type="color"].is-disabled:focus,
    input[type="color"].is-disabled:active,
    select[disabled]:focus,
    select[disabled]:active,
    select.is-disabled:focus,
    select.is-disabled:active,
    textarea[disabled]:focus,
    textarea[disabled]:active,
    textarea.is-disabled:focus,
    textarea.is-disabled:active,
    .field[disabled]:focus,
    .field[disabled]:active,
    .field.is-disabled:focus,
    .field.is-disabled:active {
      background-color: #d5edf8; }

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

input[type="checkbox"],
input[type="radio"] {
  margin: 0 0 0 0.0625em !important; }

textarea {
  line-height: 1.5em;
  max-width: 100%;
  min-height: 120px; }

select {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
  margin: 0 !important; }

/*********************
EXTRA STYLES
*********************/
body .gform_wrapper {
  margin-top: 3em !important; }
  body .gform_wrapper .gform_heading .gform_required_legend {
    display: none;
    visibility: hidden; }
  body .gform_wrapper .gform_body .gform_fields {
    display: block; }
    body .gform_wrapper .gform_body .gform_fields .gfield {
      margin-top: 1.5em; }
      body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container,
      body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex {
        margin-top: 2px !important; }
      body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container .gfield_select {
        margin-left: 0; }
      body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container .gfield_checkbox,
      body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container .gfield_radio {
        margin: 0;
        width: 100%; }
      body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex.ginput_container_name {
        margin-top: -14px !important; }
        body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex.ginput_container_name span.name_first,
        body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex.ginput_container_name span.name_last,
        body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex.ginput_container_name span.name_middle {
          margin: 16px 0 0 0;
          padding: 0; }
      body .gform_wrapper .gform_body .gform_fields .gfield.field_sublabel_below .ginput_container label {
        margin-bottom: 0; }
  body .gform_wrapper .gform_footer {
    margin: 1.5em 0 0 0 !important;
    padding: 0 !important; }
    body .gform_wrapper .gform_footer .gform_button {
      margin: 0 !important; }

@media only screen and (min-width: 581px) {
  body .gform_wrapper .gform_heading {
    margin-bottom: 2em; }
  body .gform_wrapper .gform_body .gform_fields .gfield {
    padding-right: 0; }
    body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container {
      margin-top: 0 !important; }
    body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex.ginput_container_name {
      display: flex;
      flex-wrap: nowrap;
      justify-content: space-between;
      margin-top: 0 !important;
      width: 100%; }
      body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex.ginput_container_name span.name_first,
      body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex.ginput_container_name span.name_last,
      body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex.ginput_container_name span.name_middle {
        flex-basis: 50%;
        margin-top: 0;
        padding: 0; }
      body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex.ginput_container_name span.name_first {
        padding-right: 12px !important; }
      body .gform_wrapper .gform_body .gform_fields .gfield .ginput_complex.ginput_container_name span.name_last {
        padding-left: 12px !important; }
    body .gform_wrapper .gform_body .gform_fields .gfield.gf_left_half, body .gform_wrapper .gform_body .gform_fields .gfield.gf_right_half {
      display: inline-block;
      width: 50%; }
      body .gform_wrapper .gform_body .gform_fields .gfield.gf_left_half .ginput_container input, body .gform_wrapper .gform_body .gform_fields .gfield.gf_right_half .ginput_container input {
        margin-top: 0; }
    body .gform_wrapper .gform_body .gform_fields .gfield.gf_left_half {
      padding-right: 12px; }
    body .gform_wrapper .gform_body .gform_fields .gfield.gf_right_half {
      padding-left: 12px; } }

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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  min-height: 400px; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  position: relative;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

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

.slick-arrow {
  color: #fff;
  font-size: 42px;
  line-height: 1em;
  position: absolute;
  top: 50%;
  z-index: 99999;
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%); }
  .slick-arrow.pull-right {
    right: 15%; }
  .slick-arrow.pull-left {
    left: 15%; }

/*********************
CUSTOM SLIDER STYLES
*********************/
.slick-dots {
  bottom: 0;
  left: 4%;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute; }
  .slick-dots li {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 100%;
    display: inline-block;
    height: 20px;
    margin-right: 10px;
    overflow: hidden;
    text-indent: -999px;
    width: 20px; }
    .slick-dots li:last-of-type {
      margin-right: 0; }
    .slick-dots li.slick-active {
      background: #fff; }

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  background-color: #fff;
  color: #404042;
  font-family: "trade-gothic-next", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  body.open-menu {
    overflow: hidden; }

::-moz-selection {
  background: #fcb61a;
  color: #404042; }

::selection {
  background: #fcb61a;
  color: #404042; }

.offscreen {
  border: 0;
  clip: rect(1px 1px 1px 1px);
  /* for Internet Explorer */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }
  .offscreen:focus {
    clip: auto;
    height: auto;
    overflow: auto;
    position: relative;
    width: auto; }

.iframe-container {
  height: 0;
  margin: auto;
  overflow: hidden;
  padding-bottom: 56.25%;
  padding-top: 30px;
  position: relative;
  text-align: center; }

.iframe-container iframe,
.iframe-container object,
.iframe-container embed {
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%; }

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
.no-js #is-loading {
  display: none; }

/*********************
LAYOUT & GRID STYLES
*********************/
.page-center,
.pc {
  margin: 0 auto;
  width: 90%; }

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

.bg-img {
  background: center center/cover no-repeat #d3f0f5;
  min-height: 100px;
  overflow: hidden;
  position: relative; }

.bg-overlay {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: flex-end;
  position: absolute;
  width: 100%;
  z-index: 0;
  background-color: #336094;
  background-color: rgba(51, 96, 148, 0.8); }

.no-list {
  list-style: none;
  margin: 0;
  padding: 0; }

.searchform {
  display: flex; }
  .searchform .searchbox {
    background-color: #fff;
    border: 0.05em solid #404042;
    border-radius: 0;
    color: #969696;
    margin: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .searchform .searchbox:active, .searchform .searchbox:focus {
      border-color: #336094;
      color: #404042; }
  .searchform .btn-search {
    padding: 0.5em 1em; }

.archive .taxonomy-description,
.home .taxonomy-description,
.blog .taxonomy-description,
.search .taxonomy-description {
  color: #fff;
  margin: 1em 0 0 0; }
  .archive .taxonomy-description p,
  .home .taxonomy-description p,
  .blog .taxonomy-description p,
  .search .taxonomy-description p {
    margin: 0; }

.archive .hentry,
.home .hentry,
.blog .hentry,
.search .hentry {
  margin: 0 0 2.5em; }
  .archive .hentry:last-child,
  .home .hentry:last-child,
  .blog .hentry:last-child,
  .search .hentry:last-child {
    margin-bottom: 0; }
  .archive .hentry .entry-header,
  .home .hentry .entry-header,
  .blog .hentry .entry-header,
  .search .hentry .entry-header {
    padding-bottom: 0.5em; }
    .archive .hentry .entry-header .entry-title,
    .home .hentry .entry-header .entry-title,
    .blog .hentry .entry-header .entry-title,
    .search .hentry .entry-header .entry-title {
      margin: 0; }
  .archive .hentry .entry-content .excerpt-read-more,
  .home .hentry .entry-content .excerpt-read-more,
  .blog .hentry .entry-content .excerpt-read-more,
  .search .hentry .entry-content .excerpt-read-more {
    color: #336094; }
  .archive .hentry .article-footer,
  .home .hentry .article-footer,
  .blog .hentry .article-footer,
  .search .hentry .article-footer {
    margin-top: 0.5em; }

#map {
  min-height: 300px; }

/*********************
LINK STYLES
*********************/
a {
  color: #336094;
  font-weight: 800;
  text-decoration: none; }
  a:hover, a:focus {
    color: #26476e;
    text-decoration: underline; }
  a:link {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }

/*********************
HEADING STYLES
*********************/
.wf-loading h1, .wf-loading .h1, .wf-loading h2, .wf-loading .h2, .wf-loading h3, .wf-loading .h3, .wf-loading h4, .wf-loading .h4, .wf-loading h5, .wf-loading .h5, .wf-loading p, .wf-loading a, .wf-loading label, .wf-loading input, .wf-loading .btn {
  visibility: hidden; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  font-family: "eurostile", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 1em;
  margin: 0 0 0.6em 0;
  text-rendering: optimizelegibility;
  word-break: break-word;
  word-wrap: break-word; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
    text-decoration: none; }

h1, .h1 {
  font-size: 2.5em;
  line-height: 0.9em; }

h2, .h2 {
  font-size: 2.125em; }

h3, .h3 {
  font-size: 1.75em;
  line-height: 1.2em; }

h4, .h4 {
  font-size: 1.5em;
  font-style: italic;
  font-weight: 400; }

h5, .h5 {
  font-size: 1.125em;
  letter-spacing: 0.1em;
  margin: 1em 0;
  text-transform: uppercase; }

/*********************
HEADER STYLES
*********************/
.container {
  left: 0;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }
  .container::before {
    content: '';
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: visible;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out; }
  .container.open-menu {
    left: -300px;
    overflow: visible;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
    .container.open-menu::before {
      opacity: 1;
      z-index: 2; }

.header {
  left: 0;
  position: absolute;
  top: 1.25em;
  z-index: 1; }

.inner-header {
  background-color: #fff;
  padding: 0.75em 1.25em; }

.header_primary-header {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.header_logo_link {
  padding: 0; }

.logo {
  max-width: 170px; }

.menu-toggle {
  cursor: pointer;
  height: 2.5em;
  position: relative;
  width: 3.375em; }
  .menu-toggle span {
    background-color: #336094;
    display: block;
    height: 0.35em;
    position: absolute;
    width: 100%;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out; }
    .menu-toggle span:nth-child(1) {
      left: 0;
      top: 0; }
    .menu-toggle span:nth-child(2) {
      left: 0;
      top: 44%; }
    .menu-toggle span:nth-child(3) {
      bottom: 0;
      left: 0; }

.header_nav-wrap {
  background-color: #fff;
  height: 100vh;
  left: 100%;
  max-width: 300px;
  overflow-y: scroll;
  padding: 2.75em 1em 5.5em 1em;
  position: absolute;
  top: -1.25em; }

.menu-close {
  cursor: pointer;
  height: 2.5em;
  margin: auto 0.75em 0.75em auto;
  position: relative;
  width: 3.375em; }
  .menu-close span {
    background-color: #336094;
    display: block;
    height: 0.35em;
    position: absolute;
    width: 100%;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out; }
    .menu-close span:nth-child(1), .menu-close span:nth-child(2) {
      left: -0.25em;
      top: 1em;
      width: 3.875em;
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg); }
    .menu-close span:nth-child(2) {
      -moz-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg); }

.header_nav {
  margin-bottom: 0.5em; }

/* Stack navigation vertically on smaller screens when sidebar is present */
@media (max-width: 767px) {
  .header_nav-wrap {
    display: block !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 2.75em 0 5.5em 0 !important;
    width: 100% !important;
    max-width: 300px !important;
    box-sizing: border-box !important;
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE and Edge */
  }
  /* Hide scrollbar for Chrome, Safari and Opera */
  .header_nav-wrap::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    background: transparent !important;
  }
  .header_nav-wrap .menu-close {
    position: absolute !important;
    top: 0.75em !important;
    right: 0.75em !important;
    margin: 0 !important;
    z-index: 10 !important;
  }
  .header_nav-wrap .header_nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    margin: 3.5em auto 1.5em auto !important;
    text-align: center !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .header_nav-wrap .header_nav #menu-main-menu,
  .header_nav-wrap .header_nav .nav.top-nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    list-style: none !important;
    margin: 0 auto !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 250px !important;
    align-items: stretch !important;
    box-sizing: border-box !important;
  }
  .header_nav-wrap .header_nav #menu-main-menu li,
  .header_nav-wrap .header_nav .nav.top-nav li {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 0 0.5em 0 !important;
    box-sizing: border-box !important;
  }
  .header_nav-wrap .header_nav #menu-main-menu li a,
  .header_nav-wrap .header_nav .nav.top-nav li a {
    display: block !important;
    width: 100% !important;
    padding: 1em !important;
    text-align: center !important;
    font-size: 1.1em !important;
    box-sizing: border-box !important;
  }
  .header_nav-wrap .header_phone,
  .header_nav-wrap .header_phone_link {
    display: block !important;
    width: 100% !important;
    max-width: 250px !important;
    text-align: center !important;
    margin: 1.5em auto 0 auto !important;
    padding: 1em !important;
    font-size: 1.2em !important;
    box-sizing: border-box !important;
  }
}

.nav li a {
  display: block;
  color: #404042;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.2em;
  padding: 0.75em;
  text-decoration: none; }
  .nav li a:hover, .nav li a:focus {
    text-decoration: underline; }

.nav li ul.sub-menu,
.nav li ul.children {
  list-style-type: none;
  margin-left: 1.5em;
  padding: 0; }

.nav li.current-menu-item a,
.nav li.current_page_item a {
  text-decoration: underline; }

.nav li.current-menu-item ul.sub-menu li a,
.nav li.current-menu-item ul.children li a,
.nav li.current_page_item ul.sub-menu li a,
.nav li.current_page_item ul.children li a {
  text-decoration: none; }

.magnifying-glass {
  display: none; }

.header_nav-wrap .searchform {
  margin-bottom: 1.25em; }

.header_phone_link {
  font-family: "eurostile", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 1.375em;
  line-height: 1em;
  padding-bottom: 4em; }

/*********************
FEATURED IMAGE STYLES
*********************/
.feat-img {
  align-items: center;
  display: flex;
  min-height: 25em; }

.feat-img_article-header {
  padding: 8.75em 0 2em 0;
  z-index: 0; }
  .feat-img_article-header .page-title,
  .feat-img_article-header .entry-title {
    color: #fff;
    margin: 0;
    text-transform: uppercase; }

/*********************
POSTS & CONTENT STYLES
*********************/
.content {
  margin: 3.5em 0;
  min-height: 200px; }

.main {
  padding-right: 0; }

.byline {
  color: #9fa6b4;
  font-style: italic;
  margin: 1em 0 0 0; }

.entry-content h1:last-child, .entry-content .h1:last-child, .entry-content h2:last-child, .entry-content .h2:last-child, .entry-content h3:last-child, .entry-content .h3:last-child, .entry-content h4:last-child, .entry-content .h4:last-child, .entry-content h5:last-child, .entry-content .h5:last-child, .entry-content p:last-child, .entry-content ul:last-child, .entry-content ol:last-child, .entry-content table:last-child, .entry-content dl:last-child, .entry-content dd:last-child, .entry-content blockquote:last-child, .entry-content img:last-child, .entry-content figure:last-child, .entry-content .wp-block-columns:last-child, .entry-content .wp-block-image:last-child, .entry-content pre:last-child, .entry-content code:last-child, .entry-content kbd:last-child, .entry-content samp:last-child, .entry-content .wp-caption:last-child, .entry-content .wpmf-gallerys:last-child, .entry-content .gform_wrapper:last-child {
  margin-bottom: 0; }

.entry-content p, .entry-content ul, .entry-content ol, .entry-content table, .entry-content dl, .entry-content dd, .entry-content blockquote, .entry-content img, .entry-content figure, .entry-content .wp-block-columns, .entry-content .wp-block-image, .entry-content pre, .entry-content code, .entry-content kbd, .entry-content samp, .entry-content .wp-caption, .entry-content .wpmf-gallerys, .entry-content .gform_wrapper {
  margin: 0 0 1.5em 0; }

.entry-content ul, .entry-content ol {
  padding-left: 1.75em; }
  .entry-content ul.no-list, .entry-content ol.no-list {
    padding-left: 0; }

.entry-content table {
  border: 1px solid #404042;
  width: 100%; }
  .entry-content table caption {
    color: #9fa6b4;
    font-size: 0.75em;
    letter-spacing: 0.1em;
    margin: 0 0 0.5em;
    text-transform: uppercase; }
  .entry-content table tr {
    border-bottom: 1px solid #404042; }
    .entry-content table tr:nth-child(odd) {
      background-color: #f9f9f9; }
    .entry-content table tr:last-child {
      border-bottom: 0; }
  .entry-content table td {
    padding: 0.5em;
    border-right: 1px solid #404042; }
    .entry-content table td:last-child {
      border-right: 0; }
  .entry-content table th {
    background-color: #ececec;
    border-right: 1px solid #404042; }
    .entry-content table th:last-child {
      border-right: 0; }

.entry-content blockquote {
  background-color: #eaedf2;
  border-left: 3px solid #336094;
  font-style: italic;
  margin: 1.75em 0 1.75em 1.25em;
  padding: 0.75em; }

.entry-content dl dd {
  color: #9fa6b4;
  font-size: 0.85em;
  margin-left: 0; }
  .entry-content dl dd:last-child {
    margin-bottom: 0; }

.entry-content img {
  display: block;
  height: auto;
  max-width: 100%; }

.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
  max-width: 100%; }

.entry-content pre, .entry-content code, .entry-content kbd, .entry-content samp {
  background: #404042;
  border-radius: 0.25em;
  color: #fff;
  display: block;
  font-size: 0.9em;
  padding: 1.75em; }

.alignleft,
img.alignleft {
  text-align: left; }

.alignright,
img.alignright {
  text-align: right; }

.aligncenter,
img.aligncenter {
  text-align: center; }

.wp-caption {
  border: 1px solid #404042;
  max-width: 100%;
  padding: 0.5em; }
  .wp-caption img {
    margin-bottom: 0;
    width: 100%; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 0.5em 0 0;
    text-align: center; }

.wpmf-gallerys .gallery .gallery-item {
  padding: 0.25em !important; }
  .wpmf-gallerys .gallery .gallery-item .gallery-caption {
    font-size: 0.85em;
    margin: 0.5em 0 0; }

.tags {
  margin: 0; }

/*********************
HOME STYLES
*********************/
.home_feat-img_container .feat-img {
  background-color: #fcb61a;
  min-height: 34.375em; }

.home_feat-img_container .bg-overlay {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.9)));
  background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.9));
  background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.9));
  background-image: -o-linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.9));
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.9)); }

.home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap {
  max-width: 560px; }
  .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap h1, .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .h1, .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap h2, .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .h2, .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap h3, .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .h3, .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap h4, .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .h4, .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap h5, .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .h5 {
    color: #336094;
    margin-bottom: 0.142857em; }
  .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap p, .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap ul, .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap ol {
    font-size: 1.25em; }
  .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper {
    margin-top: 1.875em !important; }
    .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form {
      display: flex; }
      .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body {
        margin-right: 1em; }
        .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield:first-child {
          margin-top: 0; }
        .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .gfield_label {
          display: none;
          visibility: hidden; }
        .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container {
          margin: 0 !important; }
          .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input[type="text"],
          .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input[type="number"],
          .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input[type="email"],
          .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input[type="url"],
          .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container select,
          .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea {
            min-width: 150px; }
      .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_footer {
        margin: 0 !important; }
        .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_footer .button {
          background-color: #404042;
          color: #fff; }
          .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_footer .button:hover, .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_footer .button:focus, .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_footer .button:active {
            background-color: #59595c;
            color: #fff; }

.home_module_wrap {
  margin: 5.25em 0 4.125em 0; }
  .home_module_wrap .page-center {
    max-width: 1040px;
    text-align: center; }

.home_module_headline {
  color: #336094;
  margin-bottom: 1.25em; }

.home_module_list {
  margin-bottom: -2.875em; }

.home_module_list-item {
  background-color: #f0f2f6;
  margin-bottom: 2.875em;
  padding: 2.25em 2.375em; }
  .home_module_list-item.bg-blue {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#eaeff6), to(#b5c8de));
    background-image: -webkit-linear-gradient(135deg, #eaeff6, #b5c8de);
    background-image: -moz-linear-gradient(135deg, #eaeff6, #b5c8de);
    background-image: -o-linear-gradient(135deg, #eaeff6, #b5c8de);
    background-image: linear-gradient(135deg, #eaeff6, #b5c8de); }
  .home_module_list-item.bg-yellow {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fdf6e5), to(#fae5b5));
    background-image: -webkit-linear-gradient(135deg, #fdf6e5, #fae5b5);
    background-image: -moz-linear-gradient(135deg, #fdf6e5, #fae5b5);
    background-image: -o-linear-gradient(135deg, #fdf6e5, #fae5b5);
    background-image: linear-gradient(135deg, #fdf6e5, #fae5b5); }
  .home_module_list-item.bg-light-blue {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#e9f6f8), to(#ccebf0));
    background-image: -webkit-linear-gradient(135deg, #e9f6f8, #ccebf0);
    background-image: -moz-linear-gradient(135deg, #e9f6f8, #ccebf0);
    background-image: -o-linear-gradient(135deg, #e9f6f8, #ccebf0);
    background-image: linear-gradient(135deg, #e9f6f8, #ccebf0); }
  .home_module_list-item.bg-orange {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#faecdd), to(#f6d9bb));
    background-image: -webkit-linear-gradient(135deg, #faecdd, #f6d9bb);
    background-image: -moz-linear-gradient(135deg, #faecdd, #f6d9bb);
    background-image: -o-linear-gradient(135deg, #faecdd, #f6d9bb);
    background-image: linear-gradient(135deg, #faecdd, #f6d9bb); }

.home_module_img {
  display: inline-block;
  margin-bottom: 0.75em;
  max-width: 128px; }

.home_module_content h1, .home_module_content .h1, .home_module_content h2, .home_module_content .h2, .home_module_content h3, .home_module_content .h3, .home_module_content h4, .home_module_content .h4, .home_module_content h5, .home_module_content .h5 {
  margin-bottom: 0; }

.home_module_content p, .home_module_content ul, .home_module_content ol {
  margin: 0.25em 0; }

.home_module_btn {
  margin-top: 3.75em; }

.home_slider-sect_wrap {
  padding: 5.375em 0 6em;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#c6e4e9));
  background-image: -webkit-linear-gradient(135deg, #fff, #c6e4e9);
  background-image: -moz-linear-gradient(135deg, #fff, #c6e4e9);
  background-image: -o-linear-gradient(135deg, #fff, #c6e4e9);
  background-image: linear-gradient(135deg, #fff, #c6e4e9); }

.home_slider-sect_headline {
  margin-bottom: 1.28572em;
  text-align: center; }

.home_slider-sect_slider .slick-arrow {
  color: #404042; }
  .home_slider-sect_slider .slick-arrow.pull-left {
    left: 0; }
  .home_slider-sect_slider .slick-arrow.pull-right {
    right: 0; }

.home_slider-sect_slide {
  padding: 0 3em; }

.home_slider-sect_img-wrap {
  margin: 0 auto 1.75em;
  text-align: center;
  width: 80%; }

.home_slider-sect_img-link {
  cursor: default;
  display: inline-block;
  pointer-events: none; }

.home_slider-sect_img {
  max-width: 370px; }

.home_slider-sect_content-wrap ul, .home_slider-sect_content-wrap ol {
  list-style: disc;
  padding-left: 2em; }

.home_slider-sect_content-link {
  display: inline-block; }

.home_slider-sect_content-headline {
  margin-bottom: 0; }

.home_slider-sect_btn {
  margin-top: 1.875em; }

.home_fw-sect_img {
  background-color: #7fd5e3;
  padding: 5vw 0; }

.home_fw-sect_content-wrap {
  padding: 3.875em;
  text-align: center;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.8); }
  .home_fw-sect_content-wrap p, .home_fw-sect_content-wrap ul, .home_fw-sect_content-wrap ol {
    font-size: 1.25em; }

.home_fw-sect_btn {
  margin-top: 0.5em; }

.home_form-sect_wrap {
  margin: 5em 0; }
  .home_form-sect_wrap .page-center {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -3em; }

.home_form-sect_col {
  margin-bottom: 3em;
  width: 100%; }

.home_form-sect_content h1, .home_form-sect_content .h1, .home_form-sect_content h2, .home_form-sect_content .h2, .home_form-sect_content h3, .home_form-sect_content .h3, .home_form-sect_content h4, .home_form-sect_content .h4, .home_form-sect_content h5, .home_form-sect_content .h5 {
  color: #336094;
  margin-bottom: 0.142857em; }

.home_form-sect_content p, .home_form-sect_content ul, .home_form-sect_content ol {
  font-size: 1.25em;
  margin-top: 0; }

.home_form-sect_form {
  margin-top: 1em; }
  .home_form-sect_form .gform_wrapper {
    margin-top: 0 !important; }
    .home_form-sect_form .gform_wrapper form .gform_body .gform_fields .gfield:first-child {
      margin-top: 0; }
    .home_form-sect_form .gform_wrapper form .gform_body .gform_fields .gfield .gfield_label {
      display: none;
      visibility: hidden; }
    .home_form-sect_form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container {
      margin: 0 !important; }
      .home_form-sect_form .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_name .name_first {
        margin-top: 0; }

/*********************
VENDING MACHINE STYLES
*********************/
.machine_list-item {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3.5em;
  width: 100%; }
  .machine_list-item:last-child {
    margin-bottom: 0; }

.machine_list-item_img-link {
  margin-bottom: 1em;
  min-height: 175px;
  width: 100%; }

.machine_list-item_content-wrap {
  width: 100%; }

.machine_list-item_name-link {
  color: #404042; }
  .machine_list-item_name-link:hover, .machine_list-item_name-link:focus {
    color: #404042; }

.machine_list-item_excerpt {
  margin: 1.625em 0; }

/*********************
VENDING MACHINE SINGLE PARENT STYLES
*********************/
.vending-container {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  margin-top: -3em !important; }

.vending-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3em; }

.vending-img {
  margin-bottom: 2em;
  max-width: 150px; }

.vending-headline {
  font-size: 1.25em;
  text-align: center;
  width: 100%; }

.vending-text {
  margin: 1em;
  text-align: center; }

/*********************
LOCATION PAGE STYLES
*********************/
.location_list-item {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3.5em;
  width: 100%; }
  .location_list-item:last-child {
    margin-bottom: 0; }

.location_list-item_img-link {
  margin-bottom: 1em;
  min-height: 175px;
  width: 100%; }

.location_list-item_content-wrap {
  width: 100%; }

.location_list-item_name-link {
  color: #404042; }
  .location_list-item_name-link:hover, .location_list-item_name-link:focus {
    color: #404042; }

.location_list-item_excerpt {
  margin: 1.625em 0; }

/*********************
LOCATION SINGLE STYLES
*********************/
.location_sections_wrap {
  margin-top: 6.25em; }

.location_section_row-wrap {
  margin-bottom: 3.75em; }
  .location_section_row-wrap .page-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
  .location_section_row-wrap.reverse-direction .page-center {
    flex-direction: column-reverse; }

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

.location_section_row.half-width {
  width: 100%; }
  .location_section_row.half-width:first-child {
    margin-bottom: 2em; }

.location-section.section_wysiwyg_wrap {
  margin: 0 auto;
  max-width: 650px;
  text-align: center; }
  .location-section.section_wysiwyg_wrap .gform_body,
  .location-section.section_wysiwyg_wrap .gform_footer {
    text-align: left; }

.location-section.section_checklist_wrap .section_checklist_list-item {
  padding: 0.5em 0 0.5em 2.5em;
  position: relative; }
  .location-section.section_checklist_wrap .section_checklist_list-item::before {
    color: #336094;
    content: url("../images/check-icon.svg");
    left: 0;
    position: absolute;
    top: 54%;
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); }

.location-section.section_bg-img_wrap {
  margin: 0 -6%; }
  .location-section.section_bg-img_wrap .section_bg-img {
    min-height: 400px; }

.location-section.section_banner_wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .location-section.section_banner_wrap .section_banner_headline {
    text-align: center;
    width: 100%; }

.location-section.section_img_wrap {
  margin: 0 auto; }

.location-section.section_form_wrap {
  width: 100%; }
  .location-section.section_form_wrap .section_form_content {
    margin-bottom: 1.5em; }
  .location-section.section_form_wrap .section_form_container .gform_wrapper {
    margin: 0 !important; }

/*********************
BLOG STYLES
*********************/
.blog_list {
  display: flex;
  flex-wrap: wrap;
  margin: 2em 0 -1.5em; }

.blog_list-item {
  display: flex;
  margin-bottom: 1.5em; }

.blog_list-item_content {
  background-color: #f2f2f2;
  border: 1px solid #404042;
  border-radius: 3px;
  box-shadow: 1px 1px 6px -3px #404042; }

.blog_list-item_img-link {
  display: block; }

.blog_list-item_inner-wrap {
  padding: 1.25em 1.35em 1.5em; }

.blog_list-item_name {
  margin-bottom: 0.25em; }

.blog_list-item_excerpt {
  margin: 0 0 1em; }

/*********************
FOOTER CTA STYLES
*********************/
.footer_cta_wrap {
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 4em; }

.footer_cta_form-wrap {
  margin-bottom: 3.5em;
  width: 100%; }
  .footer_cta_form-wrap .gform_wrapper {
    margin: 0 !important; }

/*********************
GUTENBERG STYLES
*********************/
.wp-block-columns .wp-block-column.no-content {
  display: none;
  visibility: hidden; }

.wp-block-columns .wp-block-column.content-col {
  flex-basis: 100% !important;
  margin: 0 auto;
  max-width: 650px; }

/*********************
PAGE NAVI STYLES
*********************/
.pagination,
.wp-prev-next {
  margin: 3em 0 0 0; }

.pagination ul {
  display: flex;
  justify-content: flex-start;
  list-style-type: none;
  margin: 0;
  padding: 0;
  white-space: nowrap; }
  .pagination ul li {
    margin-right: 0.25em;
    padding: 0; }
    .pagination ul li:last-child {
      margin-right: 0; }
    .pagination ul li a, .pagination ul li.current {
      display: block;
      font-size: 1em;
      font-weight: 400;
      line-height: 1em;
      padding: 0.75em;
      text-decoration: none; }
      .pagination ul li a:hover, .pagination ul li a:focus, .pagination ul li.current:hover, .pagination ul li.current:focus {
        background-color: #336094;
        color: #fff; }
      .pagination ul li a.current, .pagination ul li.current.current {
        border: 4px solid #336094;
        color: #404042;
        cursor: default;
        padding: 0.5em; }
        .pagination ul li a.current:hover, .pagination ul li a.current:focus, .pagination ul li.current.current:hover, .pagination ul li.current.current:focus {
          background-color: transparent; }

.wp-prev-next .prev-link {
  float: left; }

.wp-prev-next .next-link {
  float: right; }

/*********************
SIDEBARS & ASIDES
*********************/
.sidebar {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3.25em; }
  .sidebar.no-sidebar {
    display: none;
    visibility: hidden; }

.widget {
  margin: 0 0 2.25em;
  width: 100%; }
  .widget:last-child {
    margin-bottom: 0; }
  .widget .widgettitle {
    border-bottom: 1px solid #404042;
    display: inline-block;
    margin-bottom: 0.5em; }
  .widget ul {
    margin: 0;
    padding: 0 0 0 1.5em; }
    .widget ul li ul {
      padding-left: 1em; }

.no-widgets {
  background-color: #fff;
  border: 1px solid #404042;
  padding: 1.5em;
  text-align: center; }
  .no-widgets p {
    margin: 0; }

/*********************
FOOTER STYLES
*********************/
.footer {
  background-color: #336094;
  color: #fff; }

.footer_block_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 1.875em; }

.footer_block {
  margin-bottom: 2em;
  text-align: center; }

.footer_headline {
  font-size: 1.75em; }

.footer_logo {
  display: none;
  visibility: hidden; }

.footer_logo_link {
  display: inline-block; }

.footer_logo_img {
  max-width: 300px; }

.footer_links {
  order: 2; }

.footer_nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  text-align: center; }
   .footer_nav li {
    line-height: 1.25em;
    padding: 0 0 0.75em 0;
    width: 100%; }
    .footer_nav li:last-child {
      padding-bottom: 0; }
  .footer_nav li a {
    color: #fff;
    display: inline-block;
    font-weight: 400; }

.footer_contact {
  order: 1; }

.footer_contact_list-item {
  line-height: 1.2em;
  margin-bottom: 0.625em; }
  .footer_contact_list-item:last-child {
    margin-bottom: 0; }

.footer_contact_link {
  color: #fff;
  display: inline-block;
  font-weight: 400; }
  .footer_contact_link:hover, .footer_contact_link:focus, .footer_contact_link:active {
    color: #fff; }

.footer_contact_email {
  line-height: 1.2em; }

.footer_contact_address {
  display: inline-block;
  line-height: 1.2em; }

.footer_btn-social {
  order: 3; }

.footer_btn {
  font-family: "eurostile", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 1.375em;
  padding: 0.5em 1.36366em; }

.footer_social-media {
  margin-top: 1.25em; }
  .footer_social-media .social-media_wrap .social-media_icons li {
    display: inline-block; }
    .footer_social-media .social-media_wrap .social-media_icons li a {
      color: #fff;
      display: inline-block;
      font-size: 1.75em;
      padding: 0.125em 0.5em; }

.footer_copyright-source {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-style: italic;
  justify-content: center;
  line-height: 1.2em;
  padding: 1em 0;
  text-align: center; }

.footer_copyright-source_divider {
  font-size: 1.5em;
  font-style: normal;
  padding: 0 0.25em; }

.footer_source a {
  color: #fff;
  font-weight: 700;
  text-decoration: none; }
  .footer_source a:hover, .footer_source a:active {
    text-decoration: underline; }

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 581px) {
  /******************************************************************

Stylesheet: 581px and Up Stylesheet

******************************************************************/
  /*********************
GENERAL STYLES
*********************/
  /*********************
LAYOUT & GRID STYLES
*********************/
  /*********************
HEADING STYLES
*********************/
  /*********************
HEADER STYLES
*********************/
  /*********************
FEATURED IMAGE STYLES
*********************/
  /*********************
POSTS & CONTENT STYLES
*********************/
  .alignleft,
  img.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em; }
  .alignright,
  img.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em; }
  .aligncenter,
  img.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto; }
  /*********************
HOME STYLES
*********************/
  .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input[type="text"],
  .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input[type="number"],
  .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input[type="email"],
  .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input[type="url"],
  .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container select,
  .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea {
    min-width: 190px; }
  .home_slider-sect_slide {
    align-items: center;
    display: flex !important;
    justify-content: space-between; }
  .home_slider-sect_img-wrap {
    margin: 0;
    width: 46%; }
  .home_slider-sect_content-wrap {
    width: 46%; }
  /*********************
VENDING MACHINE STYLES
*********************/
  /*********************
VENDING MACHINE SINGLE PARENT STYLES
*********************/
  /*********************
LOCATION PAGE STYLES
*********************/
  /*********************
LOCATION SINGLE STYLES
*********************/
  /*********************
BLOG STYLES
*********************/
  /*********************
FOOTER CTA STYLES
*********************/
  /*********************
GUTENBERG STYLES
*********************/
  /*********************
PAGE NAVI STYLES
*********************/
  /*********************
SIDEBARS & ASIDES
*********************/
  /*********************
FOOTER STYLES
*********************/ }

/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************

Stylesheet: 768px and Up Stylesheet

******************************************************************/
  /*********************
GENERAL STYLES
*********************/
  /*********************
LAYOUT & GRID STYLES
*********************/
  .page-center,
  .pc {
    width: 94%; }
  /*********************
HEADING STYLES
*********************/
  h1, .h1 {
    font-size: 3.5em; }
  h2, .h2 {
    font-size: 2.5em; }
  /*********************
HEADER STYLES
*********************/
  .container.open-menu {
    left: -400px; }
  .header_nav-wrap {
    max-width: 400px; }
  /*********************
FEATURED IMAGE STYLES
*********************/
  /*********************
POSTS & CONTENT STYLES
*********************/
  /*********************
HOME STYLES
*********************/
  .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input[type="text"],
  .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input[type="number"],
  .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input[type="email"],
  .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container input[type="url"],
  .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container select,
  .home_feat-img_container .feat-img_article-header .feat-img_article-content_wrap .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container textarea {
    min-width: 270px; }
  .home_module_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; }
  .home_module_list-item {
    width: 44%; }
  .home_slider-sect_slide {
    padding: 0 5vw; }
  .home_slider-sect_img-link {
    cursor: pointer;
    pointer-events: visible; }
  .home_fw-sect_img {
    padding: 3vw 0; }
  .home_fw-sect_content-wrap {
    padding: 3.875em 7.375em; }
  .home_form-sect_col {
    width: 48%; }
  /*********************
VENDING MACHINE STYLES
*********************/
  .machine_list-item {
    margin-bottom: 5em; }
    .machine_list-item:nth-child(even) {
      flex-direction: row-reverse; }
  .machine_list-item_img-link {
    margin: 0;
    min-height: 300px;
    width: 48%; }
  .machine_list-item_content-wrap {
    width: 48%; }
  /*********************
VENDING MACHINE SINGLE PARENT STYLES
*********************/
  /*********************
LOCATION PAGE STYLES
*********************/
  .location_list-item {
    margin-bottom: 5em; }
    .location_list-item:nth-child(even) {
      flex-direction: row-reverse; }
  .location_list-item_img-link {
    margin: 0;
    min-height: 300px;
    width: 48%; }
  .location_list-item_content-wrap {
    width: 48%; }
  /*********************
LOCATION SINGLE STYLES
*********************/
  .location_section_row-wrap.reverse-direction .page-center {
    flex-direction: row; }
  .location_section_row.half-width {
    align-items: center;
    display: flex;
    margin: 0 !important; }
    .location_section_row.half-width:nth-child(odd) {
      padding-right: 1.5em; }
    .location_section_row.half-width:nth-child(even) {
      padding-left: 1.5em; }
    .location_section_row.half-width.width-10 {
      width: 10%; }
    .location_section_row.half-width.width-20 {
      width: 20%; }
    .location_section_row.half-width.width-30 {
      width: 30%; }
    .location_section_row.half-width.width-40 {
      width: 40%; }
    .location_section_row.half-width.width-50 {
      width: 50%; }
    .location_section_row.half-width.width-60 {
      width: 60%; }
    .location_section_row.half-width.width-70 {
      width: 70%; }
    .location_section_row.half-width.width-80 {
      width: 80%; }
    .location_section_row.half-width.width-90 {
      width: 90%; }
    .location_section_row.half-width .section_wysiwyg_wrap {
      margin: 0;
      max-width: none;
      text-align: left; }
  .location-section.section_wysiwyg_wrap p {
    font-size: 1.25em;
    font-weight: 300; }
    .location-section.section_wysiwyg_wrap p .btn {
      font-size: 0.8em; }
  .location-section.section_checklist_wrap .section_checklist_list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 auto;
    max-width: 975px; }
    .location-section.section_checklist_wrap .section_checklist_list .section_checklist_list-item {
      padding: 0.5em 0.5em 0.5em 3em; }
      .location-section.section_checklist_wrap .section_checklist_list .section_checklist_list-item::before {
        left: 0.5em; }
  .location-section.section_banner_wrap {
    justify-content: space-evenly; }
    .location-section.section_banner_wrap .section_banner_headline {
      margin: 0;
      padding-right: 0.25em;
      width: auto; }
  /*********************
BLOG STYLES
*********************/
  .blog_list-item {
    padding: 0 0.75em; }
    .blog_list-item:nth-child(odd) {
      padding-left: 0; }
    .blog_list-item:nth-child(even) {
      padding-right: 0; }
  /*********************
FOOTER CTA STYLES
*********************/
  .footer_cta_wrap {
    flex-direction: row;
    margin-top: 5.75em; }
  .footer_cta_img {
    width: 48%; }
  .footer_cta_form-wrap {
    margin: 0;
    width: 48%; }
  /*********************
GUTENBERG STYLES
*********************/
  /*********************
PAGE NAVI STYLES
*********************/
  /*********************
SIDEBARS & ASIDES
*********************/
  .sidebar {
    margin-top: 0;
    padding-left: 2.25em; }
  /*********************
FOOTER STYLES
*********************/
  .footer_block_wrap {
    flex-wrap: nowrap;
    margin-bottom: 0; }
  .footer_block {
    margin-bottom: 0;
    padding-right: 1.5em;
    text-align: left;
    width: auto; }
  .footer_headline {
    font-size: 2.125em;
    margin-bottom: 0.5em; }
  .footer_logo {
    order: 1; }
  .footer_links {
    order: 2; }
  .footer_nav {
    max-height: none;
    padding: 0; }
    .footer_nav li {
      padding: 0 1em 0.5em 0;
      width: auto; }
  .footer_contact {
    order: 3; }
  .footer_btn-social {
    order: 4;
    text-align: right; }
  .footer_social-media .social-media_wrap .social-media_icons li {
    padding-right: 0.875em; }
    .footer_social-media .social-media_wrap .social-media_icons li:last-child {
      padding-right: 0; }
    .footer_social-media .social-media_wrap .social-media_icons li a {
      font-size: 1.5em;
      padding: 0; }
  .footer_copyright-source {
    justify-content: flex-end; }
  .footer_copyright-source_divider {
    padding: 0 0.5em; } }

/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************

Stylesheet: 1030px and Up Stylesheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
  /*********************
GENERAL STYLES
*********************/
  /*********************
LAYOUT & GRID STYLES
*********************/
  .page-center,
  .pc {
    max-width: 1200px; }
  /*********************
HEADING STYLES
*********************/
  /*********************
HEADER STYLES
*********************/
  .header_primary-header {
    flex-wrap: nowrap;
    position: relative; }
  .nav-search-icons {
    display: none;
    visibility: hidden; }
  .header_nav-wrap {
    align-items: center;
    background-color: transparent;
    display: flex;
    height: auto;
    justify-content: flex-end;
    left: unset;
    max-width: none;
    overflow: visible;
    padding: 0 0 0 1em;
    position: relative;
    top: unset; }
  .menu-close {
    display: none;
    visibility: hidden; }
  .header_nav {
    margin: 0;
    display: flex;
    justify-content: center; }
  .header_nav-wrap {
    gap: 2.5rem;
    align-items: center; }
  .header_phone {
    white-space: nowrap;
    margin-left: 0; }
  .nav {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    gap: 2rem; }
    .nav li {
      padding: 0 0.5em; }
      .nav li a {
        display: inline-block;
        font-size: 1em;
        padding: 0.5em 0;
        text-align: center; }
      .nav li:first-child {
        padding-left: 0; }
      .nav li:last-child {
        padding-right: 0; }
      .nav li ul.sub-menu,
      .nav li ul.children {
        background-color: #fff;
        border: 1px solid #404042;
        margin: 0;
        position: absolute;
        visibility: hidden;
        z-index: 8999; }
        .nav li ul.sub-menu li,
        .nav li ul.children li {
          padding: 0; }
          .nav li ul.sub-menu li a,
          .nav li ul.children li a {
            color: #404042;
            display: block;
            min-width: 6.25em;
            padding: 0.75em;
            text-align: left; }
            .nav li ul.sub-menu li a:hover, .nav li ul.sub-menu li a:focus,
            .nav li ul.children li a:hover,
            .nav li ul.children li a:focus {
              background-color: #f9f9f9; }
          .nav li ul.sub-menu li:last-child a,
          .nav li ul.children li:last-child a {
            border-bottom: 0; }
          .nav li ul.sub-menu li ul,
          .nav li ul.children li ul {
            bottom: -1px;
            left: 100%; }
      .nav li:hover > ul {
        top: auto;
        visibility: visible; }
  .magnifying-glass {
    border: 0.125em solid #404042;
    border-radius: 1em;
    cursor: pointer;
    display: inline-block;
    height: 0.75em;
    margin: 0.5em 1.25em 1em 1em;
    position: relative;
    width: 0.75em;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .magnifying-glass::before, .magnifying-glass::after {
      background-color: #404042;
      border-radius: 1em;
      bottom: -0.25em;
      content: "";
      display: inline-block;
      height: 0.125em;
      position: absolute;
      right: -0.4375em;
      width: 0.625em;
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      -webkit-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
    .magnifying-glass:hover {
      border-color: #59595c;
      -webkit-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
      .magnifying-glass:hover::before, .magnifying-glass:hover::after {
        background-color: #59595c;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out; }
    .magnifying-glass.open {
      border-width: 0; }
      .magnifying-glass.open::before, .magnifying-glass.open::after {
        bottom: 0.1875em;
        right: -0.375em;
        width: 1.375em; }
      .magnifying-glass.open::after {
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg); }
  .header_nav-wrap .searchform {
    background-color: #fff;
    margin: 0;
    max-width: 50%;
    opacity: 0;
    overflow: hidden;
    padding: 0.325em;
    position: absolute;
    right: -60%;
    top: 220%;
    visibility: hidden;
    z-index: 10;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out; }
    .header_nav-wrap .searchform.search-open {
      opacity: 1;
      right: -1.25em;
      visibility: visible;
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }
    .header_nav-wrap .searchform .searchbox {
      border: none; }
  .header_phone_link {
    padding: 0; }
  /*********************
FEATURED IMAGE STYLES
*********************/
  .feat-img .bg-overlay {
    width: 60%; }
  .feat-img_article-header {
    max-width: 734px; }
    .feat-img_article-header .page-center {
      width: 90%; }
  /*********************
POSTS & CONTENT STYLES
*********************/
  /*********************
HOME STYLES
*********************/
  .home_feat-img_container .bg-overlay {
    display: none;
    visibility: hidden; }
  .home_module_list {
    justify-content: space-between; }
  .home_module_list-item {
    width: 30%; }
  /*********************
VENDING MACHINE STYLES
*********************/
  .machine_list-item_img-link {
    width: 61.5%; }
  .machine_list-item_content-wrap {
    width: 34.5%; }
  /*********************
VENDING MACHINE SINGLE PARENT STYLES
*********************/
  /*********************
LOCATION PAGE STYLES
*********************/
  .location_list-item_img-link {
    width: 61.5%; }
  .location_list-item_content-wrap {
    width: 34.5%; }
  /*********************
LOCATION SINGLE STYLES
*********************/
  /*********************
BLOG STYLES
*********************/
  .blog_list-item:nth-child(odd), .blog_list-item:nth-child(even) {
    padding: 0 0.75em; }
  .blog_list-item:nth-child(3n-2) {
    padding-left: 0; }
  .blog_list-item:nth-child(3n) {
    padding-right: 0; }
  /*********************
FOOTER CTA STYLES
*********************/
  /*********************
GUTENBERG STYLES
*********************/
  /*********************
PAGE NAVI STYLES
*********************/
  /*********************
SIDEBARS & ASIDES
*********************/
  /*********************
FOOTER STYLES
*********************/
  .footer_logo {
    display: block;
    visibility: visible; }
  .footer_links {
    width: 30%; }
  .footer_nav {
    max-height: 192px; }
  .footer_contact {
    width: 22%; }
  .footer_copyright-source {
    padding-top: 0; } }

/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************

Stylesheet: Super Large Monitor Stylesheet

You can add some advanced styles here if you like. This kicks in
on larger screens.

******************************************************************/
  /*********************
GENERAL STYLES
*********************/
  /*********************
LAYOUT & GRID STYLES
*********************/
  /*********************
HEADING STYLES
*********************/
  /*********************
HEADER STYLES
*********************/
  .nav li {
    padding: 0 1.25em; }
  .magnifying-glass {
    margin: 0.5em 2.25em 1em 2em; }
  /*********************
FEATURED IMAGE STYLES
*********************/
  .feat-img .bg-overlay {
    width: 50.625%; }
  .feat-img_article-header {
    max-width: 644px; }
    .feat-img_article-header .page-center {
      width: 88%; }
  /*********************
POSTS & CONTENT STYLES
*********************/
  /*********************
HOME STYLES
*********************/
  .home_feat-img_container .feat-img {
    justify-content: center;
    padding-right: 39em; }
  /*********************
VENDING MACHINE STYLES
*********************/
  /*********************
VENDING MACHINE SINGLE PARENT STYLES
*********************/
  /*********************
LOCATION PAGE STYLES
*********************/
  /*********************
LOCATION SINGLE STYLES
*********************/
  /*********************
BLOG STYLES
*********************/
  /*********************
FOOTER CTA STYLES
*********************/
  /*********************
GUTENBERG STYLES
*********************/
  /*********************
PAGE NAVI STYLES
*********************/
  /*********************
SIDEBARS & ASIDES
*********************/
  /*********************
FOOTER STYLES
*********************/
  .footer_nav li {
    padding: 0 3em 0.5em 0; } }

/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/ }

.home_form-sect_wrap {
  margin: 5em 0; }
  .home_form-sect_wrap .page-center {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: -3em;
    text-align: center; }

.home_form-sect_col {
  margin-bottom: 3em;
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
  width: 100%; }

.home_form-sect_content,
.home_form-sect_form {
  text-align: center; }
