@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

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 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
@import url("https://fonts.googleapis.com/css?family=Gothic+A1:300,500,700,900");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,500,500i,700,700i,900,900i");
/* line 12, ../scss/partials/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
/* line 31, ../scss/partials/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 42, ../scss/partials/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
/* line 52, ../scss/partials/_normalize.scss */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 67, ../scss/partials/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
/* line 77, ../scss/partials/_normalize.scss */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
/* line 89, ../scss/partials/_normalize.scss */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
/* line 97, ../scss/partials/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 105, ../scss/partials/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 119, ../scss/partials/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
/* line 128, ../scss/partials/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
/* line 136, ../scss/partials/_normalize.scss */
b,
strong,
.strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
/* line 146, ../scss/partials/_normalize.scss */
dfn,
em,
.em {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
/* line 156, ../scss/partials/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
/* line 166, ../scss/partials/_normalize.scss */
p {
  -webkit-hyphens: none;
  -epub-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
}

/*
 * Addresses margins set differently in IE6/7.
 */
/* line 177, ../scss/partials/_normalize.scss */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
/* line 185, ../scss/partials/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
/* line 197, ../scss/partials/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
/* line 205, ../scss/partials/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 212, ../scss/partials/_normalize.scss */
q:before,
q:after {
  content: '';
  content: none;
}

/* line 218, ../scss/partials/_normalize.scss */
small, .small {
  font-size: 75%;
}

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

/* line 234, ../scss/partials/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 238, ../scss/partials/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
/* line 250, ../scss/partials/_normalize.scss */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

/* line 257, ../scss/partials/_normalize.scss */
dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
/* line 265, ../scss/partials/_normalize.scss */
menu {
  padding: 0 0 0 40px;
}

/* line 269, ../scss/partials/_normalize.scss */
ol,
ul {
  padding: 0;
  list-style-type: none;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
/* line 279, ../scss/partials/_normalize.scss */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
/* line 293, ../scss/partials/_normalize.scss */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
/* line 301, ../scss/partials/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
/* line 313, ../scss/partials/_normalize.scss */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
/* line 325, ../scss/partials/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
/* line 336, ../scss/partials/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
/* line 347, ../scss/partials/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 361, ../scss/partials/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 373, ../scss/partials/_normalize.scss */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
/* line 386, ../scss/partials/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 398, ../scss/partials/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
/* line 408, ../scss/partials/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 420, ../scss/partials/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 432, ../scss/partials/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 441, ../scss/partials/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 452, ../scss/partials/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 465, ../scss/partials/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 472, ../scss/partials/_normalize.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 479, ../scss/partials/_normalize.scss */
.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* line 487, ../scss/partials/_normalize.scss */
.clearfix, .cf, .comment-respond {
  zoom: 1;
}
/* line 489, ../scss/partials/_normalize.scss */
.clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
  content: "";
  display: table;
}
/* line 490, ../scss/partials/_normalize.scss */
.clearfix:after, .cf:after, .comment-respond:after {
  clear: both;
}

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

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

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
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

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;
  }
*/
/*
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
*/
/* line 72, ../scss/partials/_typography.scss */
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: none;
  -epub-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  -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";
}

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

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%;
*********************/
/******************************************************************
Site Name:
Author:

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);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
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? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
/* line 35, ../scss/partials/_grid.scss */
.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) {
  /* line 49, ../scss/partials/_grid.scss */
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  /* line 55, ../scss/partials/_grid.scss */
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  /* line 60, ../scss/partials/_grid.scss */
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  /* line 65, ../scss/partials/_grid.scss */
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  /* line 70, ../scss/partials/_grid.scss */
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  /* line 75, ../scss/partials/_grid.scss */
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  /* line 86, ../scss/partials/_grid.scss */
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  /* line 92, ../scss/partials/_grid.scss */
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  /* line 97, ../scss/partials/_grid.scss */
  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  /* line 102, ../scss/partials/_grid.scss */
  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  /* line 107, ../scss/partials/_grid.scss */
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  /* line 112, ../scss/partials/_grid.scss */
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }

  /* line 117, ../scss/partials/_grid.scss */
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }

  /* line 122, ../scss/partials/_grid.scss */
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }

  /* line 127, ../scss/partials/_grid.scss */
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }

  /* line 132, ../scss/partials/_grid.scss */
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  /* line 142, ../scss/partials/_grid.scss */
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  /* line 148, ../scss/partials/_grid.scss */
  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  /* line 153, ../scss/partials/_grid.scss */
  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  /* line 158, ../scss/partials/_grid.scss */
  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  /* line 163, ../scss/partials/_grid.scss */
  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  /* line 168, ../scss/partials/_grid.scss */
  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }

  /* line 173, ../scss/partials/_grid.scss */
  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }

  /* line 178, ../scss/partials/_grid.scss */
  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }

  /* line 183, ../scss/partials/_grid.scss */
  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }

  /* line 188, ../scss/partials/_grid.scss */
  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }

  /* line 193, ../scss/partials/_grid.scss */
  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }

  /* line 198, ../scss/partials/_grid.scss */
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }

  /* line 203, ../scss/partials/_grid.scss */
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }

  /* line 208, ../scss/partials/_grid.scss */
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }

  /* line 213, ../scss/partials/_grid.scss */
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }

  /* line 218, ../scss/partials/_grid.scss */
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }

  /* line 223, ../scss/partials/_grid.scss */
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }

  /* line 228, ../scss/partials/_grid.scss */
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }

  /* line 233, ../scss/partials/_grid.scss */
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }

  /* line 238, ../scss/partials/_grid.scss */
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }

  /* line 243, ../scss/partials/_grid.scss */
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%;
  }

  /* line 248, ../scss/partials/_grid.scss */
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
}
/*********************
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.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
/* line 15, ../scss/modules/_alerts.scss */
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

/* line 21, ../scss/modules/_alerts.scss */
.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

/* line 27, ../scss/modules/_alerts.scss */
.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

/* line 33, ../scss/modules/_alerts.scss */
.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

/* line 39, ../scss/modules/_alerts.scss */
.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

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

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http:

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

Here's a quick video to show how it works:
http:

*********************/
/* line 27, ../scss/modules/_buttons.scss */
.blue-btn, .comment-reply-link, #submit, .btn {
  display: inline-block;
  position: relative;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: #fff !important;
  font-size: 0.9em;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  padding: 10px 24px;
  border: 0;
  text-shadow: none;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
}
/* line 44, ../scss/modules/_buttons.scss */
.blue-btn:hover, .comment-reply-link:hover, #submit:hover, .btn:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus, .btn:focus {
  color: #fff !important;
  text-decoration: none;
  outline: none;
}
/* line 51, ../scss/modules/_buttons.scss */
.blue-btn:active, .comment-reply-link:active, #submit:active, .btn:active {
  top: 1px;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
/* line 62, ../scss/modules/_buttons.scss */
.blue-btn, .comment-reply-link, #submit, .btn {
  background-color: #867752;
  text-transform: uppercase;
}
/* line 67, ../scss/modules/_buttons.scss */
.blue-btn:hover, .comment-reply-link:hover, #submit:hover, .blue-btn:focus, .comment-reply-link:focus, #submit:focus, .btn:hover, .btn:focus {
  background-color: #796c4a;
}
/* line 72, ../scss/modules/_buttons.scss */
.blue-btn:active, .comment-reply-link:active, #submit:active, .btn:active {
  background-color: #766948;
}

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

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
*********************/
/* line 24, ../scss/modules/_forms.scss */
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 {
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #5c6b80;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: "Montserrat", sans-serif;
  background-color: #eaedf2;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
/* line 59, ../scss/modules/_forms.scss */
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 {
  background-color: #f7f8fa;
  outline: none;
}
/* line 66, ../scss/modules/_forms.scss */
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;
}
/* line 78, ../scss/modules/_forms.scss */
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+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
/* line 90, ../scss/modules/_forms.scss */
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;
}
/* line 96, ../scss/modules/_forms.scss */
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;
}

/* line 106, ../scss/modules/_forms.scss */
input[type="password"] {
  letter-spacing: 0.3em;
}

/* line 111, ../scss/modules/_forms.scss */
textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

/* line 118, ../scss/modules/_forms.scss */
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;
}
/* line 127, ../scss/modules/_forms.scss */
select::-ms-expand {
  display: none;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
/* line 8, ../scss/modules/_hamberg.scss */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

/* line 22, ../scss/modules/_hamberg.scss */
.hamburger:hover {
  opacity: 0.7;
}

/* line 24, ../scss/modules/_hamberg.scss */
.hamburger.is-active:hover {
  opacity: 0.7;
}

/* line 26, ../scss/modules/_hamberg.scss */
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

/* line 31, ../scss/modules/_hamberg.scss */
.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

/* line 37, ../scss/modules/_hamberg.scss */
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

/* line 41, ../scss/modules/_hamberg.scss */
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

/* line 50, ../scss/modules/_hamberg.scss */
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

/* line 53, ../scss/modules/_hamberg.scss */
.hamburger-inner::before {
  top: -10px;
}

/* line 55, ../scss/modules/_hamberg.scss */
.hamburger-inner::after {
  bottom: -10px;
}

/*
   * 3DX
   */
/* line 61, ../scss/modules/_hamberg.scss */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}

/* line 64, ../scss/modules/_hamberg.scss */
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 66, ../scss/modules/_hamberg.scss */
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 69, ../scss/modules/_hamberg.scss */
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}

/* line 72, ../scss/modules/_hamberg.scss */
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

/* line 74, ../scss/modules/_hamberg.scss */
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */
/* line 80, ../scss/modules/_hamberg.scss */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}

/* line 83, ../scss/modules/_hamberg.scss */
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 85, ../scss/modules/_hamberg.scss */
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 88, ../scss/modules/_hamberg.scss */
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}

/* line 91, ../scss/modules/_hamberg.scss */
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

/* line 93, ../scss/modules/_hamberg.scss */
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY
   */
/* line 99, ../scss/modules/_hamberg.scss */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}

/* line 102, ../scss/modules/_hamberg.scss */
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 104, ../scss/modules/_hamberg.scss */
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 107, ../scss/modules/_hamberg.scss */
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}

/* line 110, ../scss/modules/_hamberg.scss */
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

/* line 112, ../scss/modules/_hamberg.scss */
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY Reverse
   */
/* line 118, ../scss/modules/_hamberg.scss */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}

/* line 121, ../scss/modules/_hamberg.scss */
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 123, ../scss/modules/_hamberg.scss */
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 126, ../scss/modules/_hamberg.scss */
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}

/* line 129, ../scss/modules/_hamberg.scss */
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

/* line 131, ../scss/modules/_hamberg.scss */
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY
   */
/* line 137, ../scss/modules/_hamberg.scss */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}

/* line 140, ../scss/modules/_hamberg.scss */
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 142, ../scss/modules/_hamberg.scss */
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 145, ../scss/modules/_hamberg.scss */
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}

/* line 148, ../scss/modules/_hamberg.scss */
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

/* line 150, ../scss/modules/_hamberg.scss */
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY Reverse
   */
/* line 156, ../scss/modules/_hamberg.scss */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}

/* line 159, ../scss/modules/_hamberg.scss */
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 161, ../scss/modules/_hamberg.scss */
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* line 164, ../scss/modules/_hamberg.scss */
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

/* line 167, ../scss/modules/_hamberg.scss */
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

/* line 169, ../scss/modules/_hamberg.scss */
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * Arrow
   */
/* line 175, ../scss/modules/_hamberg.scss */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/* line 178, ../scss/modules/_hamberg.scss */
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */
/* line 184, ../scss/modules/_hamberg.scss */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/* line 187, ../scss/modules/_hamberg.scss */
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Alt
   */
/* line 193, ../scss/modules/_hamberg.scss */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* line 196, ../scss/modules/_hamberg.scss */
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* line 199, ../scss/modules/_hamberg.scss */
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/* line 204, ../scss/modules/_hamberg.scss */
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Alt Right
   */
/* line 212, ../scss/modules/_hamberg.scss */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* line 215, ../scss/modules/_hamberg.scss */
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* line 218, ../scss/modules/_hamberg.scss */
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/* line 223, ../scss/modules/_hamberg.scss */
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Turn
   */
/* line 231, ../scss/modules/_hamberg.scss */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

/* line 233, ../scss/modules/_hamberg.scss */
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/* line 235, ../scss/modules/_hamberg.scss */
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Turn Right
   */
/* line 241, ../scss/modules/_hamberg.scss */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

/* line 243, ../scss/modules/_hamberg.scss */
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/* line 245, ../scss/modules/_hamberg.scss */
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Boring
   */
/* line 251, ../scss/modules/_hamberg.scss */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

/* line 254, ../scss/modules/_hamberg.scss */
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

/* line 256, ../scss/modules/_hamberg.scss */
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

/* line 259, ../scss/modules/_hamberg.scss */
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
   * Collapse
   */
/* line 266, ../scss/modules/_hamberg.scss */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 272, ../scss/modules/_hamberg.scss */
.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

/* line 275, ../scss/modules/_hamberg.scss */
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 278, ../scss/modules/_hamberg.scss */
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 282, ../scss/modules/_hamberg.scss */
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

/* line 286, ../scss/modules/_hamberg.scss */
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Collapse Reverse
   */
/* line 294, ../scss/modules/_hamberg.scss */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 300, ../scss/modules/_hamberg.scss */
.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

/* line 303, ../scss/modules/_hamberg.scss */
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 306, ../scss/modules/_hamberg.scss */
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 310, ../scss/modules/_hamberg.scss */
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

/* line 314, ../scss/modules/_hamberg.scss */
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Elastic
   */
/* line 322, ../scss/modules/_hamberg.scss */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* line 326, ../scss/modules/_hamberg.scss */
.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

/* line 329, ../scss/modules/_hamberg.scss */
.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* line 333, ../scss/modules/_hamberg.scss */
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

/* line 336, ../scss/modules/_hamberg.scss */
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

/* line 339, ../scss/modules/_hamberg.scss */
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
   * Elastic Reverse
   */
/* line 346, ../scss/modules/_hamberg.scss */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* line 350, ../scss/modules/_hamberg.scss */
.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

/* line 353, ../scss/modules/_hamberg.scss */
.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* line 357, ../scss/modules/_hamberg.scss */
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}

/* line 360, ../scss/modules/_hamberg.scss */
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

/* line 363, ../scss/modules/_hamberg.scss */
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
   * Emphatic
   */
/* line 370, ../scss/modules/_hamberg.scss */
.hamburger--emphatic {
  overflow: hidden;
}

/* line 372, ../scss/modules/_hamberg.scss */
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

/* line 374, ../scss/modules/_hamberg.scss */
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

/* line 377, ../scss/modules/_hamberg.scss */
.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

/* line 381, ../scss/modules/_hamberg.scss */
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

/* line 385, ../scss/modules/_hamberg.scss */
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* line 390, ../scss/modules/_hamberg.scss */
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Emphatic Reverse
   */
/* line 399, ../scss/modules/_hamberg.scss */
.hamburger--emphatic-r {
  overflow: hidden;
}

/* line 401, ../scss/modules/_hamberg.scss */
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

/* line 403, ../scss/modules/_hamberg.scss */
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

/* line 406, ../scss/modules/_hamberg.scss */
.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

/* line 410, ../scss/modules/_hamberg.scss */
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

/* line 414, ../scss/modules/_hamberg.scss */
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* line 419, ../scss/modules/_hamberg.scss */
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Minus
   */
/* line 428, ../scss/modules/_hamberg.scss */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

/* line 431, ../scss/modules/_hamberg.scss */
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

/* line 435, ../scss/modules/_hamberg.scss */
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

/* line 438, ../scss/modules/_hamberg.scss */
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
   * Slider
   */
/* line 444, ../scss/modules/_hamberg.scss */
.hamburger--slider .hamburger-inner {
  top: 2px;
}

/* line 446, ../scss/modules/_hamberg.scss */
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

/* line 451, ../scss/modules/_hamberg.scss */
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

/* line 454, ../scss/modules/_hamberg.scss */
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

/* line 456, ../scss/modules/_hamberg.scss */
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

/* line 459, ../scss/modules/_hamberg.scss */
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
   * Slider Reverse
   */
/* line 465, ../scss/modules/_hamberg.scss */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}

/* line 467, ../scss/modules/_hamberg.scss */
.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

/* line 472, ../scss/modules/_hamberg.scss */
.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}

/* line 475, ../scss/modules/_hamberg.scss */
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/* line 477, ../scss/modules/_hamberg.scss */
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}

/* line 480, ../scss/modules/_hamberg.scss */
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
   * Spin
   */
/* line 486, ../scss/modules/_hamberg.scss */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 489, ../scss/modules/_hamberg.scss */
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

/* line 491, ../scss/modules/_hamberg.scss */
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 494, ../scss/modules/_hamberg.scss */
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 498, ../scss/modules/_hamberg.scss */
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

/* line 502, ../scss/modules/_hamberg.scss */
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin Reverse
   */
/* line 510, ../scss/modules/_hamberg.scss */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 513, ../scss/modules/_hamberg.scss */
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

/* line 515, ../scss/modules/_hamberg.scss */
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 518, ../scss/modules/_hamberg.scss */
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 522, ../scss/modules/_hamberg.scss */
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

/* line 526, ../scss/modules/_hamberg.scss */
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spring
   */
/* line 534, ../scss/modules/_hamberg.scss */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}

/* line 537, ../scss/modules/_hamberg.scss */
.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 540, ../scss/modules/_hamberg.scss */
.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 544, ../scss/modules/_hamberg.scss */
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

/* line 547, ../scss/modules/_hamberg.scss */
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

/* line 551, ../scss/modules/_hamberg.scss */
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
   * Spring Reverse
   */
/* line 559, ../scss/modules/_hamberg.scss */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 565, ../scss/modules/_hamberg.scss */
.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

/* line 568, ../scss/modules/_hamberg.scss */
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 571, ../scss/modules/_hamberg.scss */
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 575, ../scss/modules/_hamberg.scss */
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}

/* line 579, ../scss/modules/_hamberg.scss */
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand
   */
/* line 587, ../scss/modules/_hamberg.scss */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

/* line 589, ../scss/modules/_hamberg.scss */
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 591, ../scss/modules/_hamberg.scss */
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 594, ../scss/modules/_hamberg.scss */
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

/* line 598, ../scss/modules/_hamberg.scss */
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 602, ../scss/modules/_hamberg.scss */
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand Reverse
   */
/* line 610, ../scss/modules/_hamberg.scss */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

/* line 612, ../scss/modules/_hamberg.scss */
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 614, ../scss/modules/_hamberg.scss */
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 617, ../scss/modules/_hamberg.scss */
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

/* line 621, ../scss/modules/_hamberg.scss */
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 625, ../scss/modules/_hamberg.scss */
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Squeeze
   */
/* line 633, ../scss/modules/_hamberg.scss */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 636, ../scss/modules/_hamberg.scss */
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

/* line 638, ../scss/modules/_hamberg.scss */
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 641, ../scss/modules/_hamberg.scss */
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 645, ../scss/modules/_hamberg.scss */
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

/* line 649, ../scss/modules/_hamberg.scss */
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Vortex
   */
/* line 657, ../scss/modules/_hamberg.scss */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

/* line 660, ../scss/modules/_hamberg.scss */
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

/* line 664, ../scss/modules/_hamberg.scss */
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}

/* line 666, ../scss/modules/_hamberg.scss */
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}

/* line 669, ../scss/modules/_hamberg.scss */
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

/* line 672, ../scss/modules/_hamberg.scss */
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

/* line 674, ../scss/modules/_hamberg.scss */
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

/* line 677, ../scss/modules/_hamberg.scss */
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
   * Vortex Reverse
   */
/* line 684, ../scss/modules/_hamberg.scss */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

/* line 687, ../scss/modules/_hamberg.scss */
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

/* line 691, ../scss/modules/_hamberg.scss */
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}

/* line 693, ../scss/modules/_hamberg.scss */
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}

/* line 696, ../scss/modules/_hamberg.scss */
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

/* line 699, ../scss/modules/_hamberg.scss */
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

/* line 701, ../scss/modules/_hamberg.scss */
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

/* line 704, ../scss/modules/_hamberg.scss */
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/* line 1, ../scss/modules/_slider.scss */
.page-hero-slider {
  /* Reset */
  /* Slider */
  /* Legend */
  /* Contents */
  /* Switch */
  /* Animation */
}
/* line 6, ../scss/modules/_slider.scss */
.page-hero-slider #slider {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}
@keyframes load {
  from {
    left: -100%;
  }
  to {
    left: 0;
  }
}
/* line 23, ../scss/modules/_slider.scss */
.page-hero-slider .slides {
  width: 100%;
  height: 100%;
  position: relative;
}
/* line 32, ../scss/modules/_slider.scss */
.page-hero-slider .slider {
  width: 100%;
  height: 500px;
  float: left;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}
/* line 43, ../scss/modules/_slider.scss */
.page-hero-slider .slide img {
  width: 100%;
  height: 100%;
}
/* line 48, ../scss/modules/_slider.scss */
.page-hero-slider .slide img {
  width: 100%;
  height: 100%;
}
/* line 53, ../scss/modules/_slider.scss */
.page-hero-slider .image {
  width: 100%;
  height: 100%;
}
/* line 58, ../scss/modules/_slider.scss */
.page-hero-slider .image img {
  width: 100%;
  height: 100%;
}
/* line 64, ../scss/modules/_slider.scss */
.page-hero-slider .legend {
  border: 500px solid transparent;
  border-left: 800px solid rgba(52, 73, 94, 0.7);
  border-bottom: 0;
  position: absolute;
  bottom: 0;
}
/* line 73, ../scss/modules/_slider.scss */
.page-hero-slider .content {
  overflow: hidden;
}
/* line 80, ../scss/modules/_slider.scss */
.page-hero-slider .content-txt {
  position: relative;
  font-size: 1.2em;
  padding: 2em 0 2em 0;
  text-shadow: 1px 1px #444;
}
@media only screen and (min-width: 481px) {
  /* line 80, ../scss/modules/_slider.scss */
  .page-hero-slider .content-txt {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  /* line 80, ../scss/modules/_slider.scss */
  .page-hero-slider .content-txt {
    max-width: 100%;
    padding: 5em 0 6em 0;
  }
}
@media only screen and (min-width: 1030px) {
  /* line 80, ../scss/modules/_slider.scss */
  .page-hero-slider .content-txt {
    max-width: 60%;
  }
}
@media only screen and (min-width: 1240px) {
  /* line 80, ../scss/modules/_slider.scss */
  .page-hero-slider .content-txt {
    max-width: 60%;
  }
}
/* line 105, ../scss/modules/_slider.scss */
.page-hero-slider .content-txt P {
  font-size: 1em;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  /* line 105, ../scss/modules/_slider.scss */
  .page-hero-slider .content-txt P {
    font-size: 1.4em;
  }
}
/* line 113, ../scss/modules/_slider.scss */
.page-hero-slider .content-txt .btn {
  float: right;
}
/* line 116, ../scss/modules/_slider.scss */
.page-hero-slider .content-txt.centered {
  margin: auto;
  text-align: center;
  padding: 6em 0 6em 0;
}
/* line 121, ../scss/modules/_slider.scss */
.page-hero-slider .content-txt.centered .btn {
  float: none;
}
/* line 127, ../scss/modules/_slider.scss */
.page-hero-slider .content-txt h1 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
  font-size: 1.5em;
  padding-bottom: 10px;
  font-weight: 900;
}
@media only screen and (min-width: 768px) {
  /* line 127, ../scss/modules/_slider.scss */
  .page-hero-slider .content-txt h1 {
    font-size: 2em;
  }
}
@media only screen and (min-width: 1030px) {
  /* line 127, ../scss/modules/_slider.scss */
  .page-hero-slider .content-txt h1 {
    font-size: 2.5em;
  }
}
/* line 150, ../scss/modules/_slider.scss */
.page-hero-slider .content-txt h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: 14px;
  font-style: italic;
  text-align: left;
  margin-left: 30px;
}
/* line 161, ../scss/modules/_slider.scss */
.page-hero-slider .switch {
  width: 120px;
  height: 10px;
  position: absolute;
  bottom: 50px;
  z-index: 99;
  left: 30px;
}
/* line 170, ../scss/modules/_slider.scss */
.page-hero-slider .switch > ul {
  list-style: none;
}
/* line 174, ../scss/modules/_slider.scss */
.page-hero-slider .switch > ul > li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  float: left;
  margin-right: 5px;
  cursor: pointer;
}
/* line 184, ../scss/modules/_slider.scss */
.page-hero-slider .switch ul {
  overflow: hidden;
}
/* line 188, ../scss/modules/_slider.scss */
.page-hero-slider .on {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f39c12;
  position: relative;
  -webkit-animation: on 30s infinite;
  -moz-animation: on 30s infinite;
  animation: on 30s infinite;
}
@-webkit-keyframes slide {
  0%,
        100% {
    margin-left: 0%;
  }
  21% {
    margin-left: 0%;
  }
  25% {
    margin-left: 0%;
  }
  46% {
    margin-left: 0%;
  }
  50% {
    margin-left: -100%;
  }
  71% {
    margin-left: -100%;
  }
  75% {
    margin-left: -100%;
  }
  96% {
    margin-left: -100%;
  }
}
@-moz-keyframes slide {
  0%,
        100% {
    margin-left: 0%;
  }
  21% {
    margin-left: 0%;
  }
  25% {
    margin-left: 0%;
  }
  46% {
    margin-left: 0%;
  }
  50% {
    margin-left: -100%;
  }
  71% {
    margin-left: -100%;
  }
  75% {
    margin-left: -100%;
  }
  96% {
    margin-left: -100%;
  }
}
@keyframes slide {
  0%,
        100% {
    margin-left: 0%;
  }
  21% {
    margin-left: 0%;
  }
  25% {
    margin-left: 0%;
  }
  46% {
    margin-left: 0%;
  }
  50% {
    margin-left: -100%;
  }
  71% {
    margin-left: -100%;
  }
  75% {
    margin-left: -100%;
  }
  96% {
    margin-left: -100%;
  }
}
@-webkit-keyframes content-s {
  0% {
    left: -420px;
  }
  10% {
    left: 0px;
  }
  30% {
    left: 0px;
  }
  40% {
    left: 0px;
  }
  50% {
    left: 0px;
  }
  60% {
    left: 0px;
  }
  70% {
    left: 0;
  }
  80% {
    left: -420px;
  }
  90% {
    left: -420px;
  }
  100% {
    left: -420px;
  }
}
@-moz-keyframes content-s {
  0% {
    left: -420px;
  }
  10% {
    left: 0px;
  }
  30% {
    left: 0px;
  }
  40% {
    left: 0px;
  }
  50% {
    left: 0px;
  }
  60% {
    left: 0px;
  }
  70% {
    left: 0;
  }
  80% {
    left: -420px;
  }
  90% {
    left: -420px;
  }
  100% {
    left: -420px;
  }
}
@keyframes content-s {
  0% {
    left: -420px;
  }
  10% {
    left: 20px;
  }
  15% {
    left: 0px;
  }
  30% {
    left: 0px;
  }
  40% {
    left: 0px;
  }
  50% {
    left: 0px;
  }
  60% {
    left: 0px;
  }
  70% {
    left: 0;
  }
  80% {
    left: -420px;
  }
  90% {
    left: -420px;
  }
  100% {
    left: -420px;
  }
}
@-webkit-keyframes on {
  0%,
        100% {
    margin-left: 0%;
  }
  21% {
    margin-left: 0%;
  }
  25% {
    margin-left: 15px;
  }
  46% {
    margin-left: 15px;
  }
  50% {
    margin-left: 30px;
  }
  71% {
    margin-left: 30px;
  }
  75% {
    margin-left: 45px;
  }
  96% {
    margin-left: 45px;
  }
}
@-moz-keyframes on {
  0%,
        100% {
    margin-left: 0%;
  }
  21% {
    margin-left: 0%;
  }
  25% {
    margin-left: 15px;
  }
  46% {
    margin-left: 15px;
  }
  50% {
    margin-left: 30px;
  }
  71% {
    margin-left: 30px;
  }
  75% {
    margin-left: 45px;
  }
  96% {
    margin-left: 45px;
  }
}
@keyframes on {
  0%,
        100% {
    margin-left: 0%;
  }
  21% {
    margin-left: 0%;
  }
  25% {
    margin-left: 15px;
  }
  46% {
    margin-left: 15px;
  }
  50% {
    margin-left: 30px;
  }
  71% {
    margin-left: 30px;
  }
  75% {
    margin-left: 45px;
  }
  96% {
    margin-left: 45px;
  }
}
/* line 551, ../scss/modules/_slider.scss */
.breweries-slider button.slick-prev {
  top: 21%;
}
@media only screen and (min-width: 980px) {
  /* line 551, ../scss/modules/_slider.scss */
  .breweries-slider button.slick-prev {
    left: -28px;
  }
}
/* line 556, ../scss/modules/_slider.scss */
.breweries-slider button.slick-prev:before {
  color: #134A27 !important;
}
/* line 560, ../scss/modules/_slider.scss */
.breweries-slider button.slick-next {
  top: 21%;
}
@media only screen and (min-width: 980px) {
  /* line 560, ../scss/modules/_slider.scss */
  .breweries-slider button.slick-next {
    right: -28px;
  }
}
/* line 565, ../scss/modules/_slider.scss */
.breweries-slider button.slick-next:before {
  color: #134A27 !important;
}
/* line 570, ../scss/modules/_slider.scss */
.breweries-slider .brewery {
  padding: 0 8px;
}
/* line 573, ../scss/modules/_slider.scss */
.breweries-slider .brewery .image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  text-align: center;
}
/* line 578, ../scss/modules/_slider.scss */
.breweries-slider .brewery .image-container img {
  max-height: 100%;
  width: auto;
  height: 100%;
  max-width: unset;
  margin: auto;
}
/* line 586, ../scss/modules/_slider.scss */
.breweries-slider .brewery .details {
  text-align: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 12px;
}
/* line 609, ../scss/modules/_slider.scss */
.breweries-slider .brewery .details > * {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}
/* line 620, ../scss/modules/_slider.scss */
.breweries-slider .brewery .details h3, .breweries-slider .brewery .details h5 {
  margin: 0;
}
/* line 623, ../scss/modules/_slider.scss */
.breweries-slider .brewery .details h3 {
  height: 75px;
  margin-top: 12px;
  line-height: 1.2em;
}
@media only screen and (min-width: 1030px) {
  /* line 623, ../scss/modules/_slider.scss */
  .breweries-slider .brewery .details h3 {
    font-size: 1.2vw;
  }
}
/* line 637, ../scss/modules/_slider.scss */
.breweries-slider .brewery .details h5 {
  font-size: .7em;
  margin-bottom: 15px;
}
/* line 640, ../scss/modules/_slider.scss */
.breweries-slider .brewery .details h5 span {
  visibility: hidden;
}
/* line 644, ../scss/modules/_slider.scss */
.breweries-slider .brewery .details p {
  font-size: .75em;
  height: 155px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}

/* Slider */
/* line 3, ../scss/modules/_slick.scss */
.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;
}

/* line 17, ../scss/modules/_slick.scss */
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
/* line 24, ../scss/modules/_slick.scss */
.slick-list:focus {
  outline: none;
}
/* line 28, ../scss/modules/_slick.scss */
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

/* line 33, ../scss/modules/_slick.scss */
.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);
}

/* line 42, ../scss/modules/_slick.scss */
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* line 50, ../scss/modules/_slick.scss */
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
/* line 56, ../scss/modules/_slick.scss */
.slick-track:after {
  clear: both;
}
/* line 60, ../scss/modules/_slick.scss */
.slick-loading .slick-track {
  visibility: hidden;
}

/* line 64, ../scss/modules/_slick.scss */
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
/* line 68, ../scss/modules/_slick.scss */
[dir="rtl"] .slick-slide {
  float: right;
}
/* line 71, ../scss/modules/_slick.scss */
.slick-slide img {
  display: block;
}
/* line 74, ../scss/modules/_slick.scss */
.slick-slide.slick-loading img {
  display: none;
}
/* line 80, ../scss/modules/_slick.scss */
.slick-slide.dragging img {
  pointer-events: none;
}
/* line 84, ../scss/modules/_slick.scss */
.slick-initialized .slick-slide {
  display: block;
}
/* line 88, ../scss/modules/_slick.scss */
.slick-loading .slick-slide {
  visibility: hidden;
}
/* line 92, ../scss/modules/_slick.scss */
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* line 98, ../scss/modules/_slick.scss */
.slick-arrow.slick-hidden {
  display: none;
}

/*
// Default Variables

// Slick icon entity codes outputs the following
// "\2190" outputs ascii character "←"
// "\2192" outputs ascii character "→"
// "\2022" outputs ascii character "•"
*/
/* Slider */
/* Icons */
/* Arrows */
/* line 67, ../scss/modules/_slick-theme.scss */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 40px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
/* line 85, ../scss/modules/_slick-theme.scss */
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
/* line 89, ../scss/modules/_slick-theme.scss */
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
/* line 93, ../scss/modules/_slick-theme.scss */
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
/* line 96, ../scss/modules/_slick-theme.scss */
.slick-prev:before,
.slick-next:before {
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 107, ../scss/modules/_slick-theme.scss */
.slick-prev {
  left: 25px;
  z-index: 1;
}
/* line 112, ../scss/modules/_slick-theme.scss */
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
/* line 116, ../scss/modules/_slick-theme.scss */
.slick-prev:before {
  content: "";
  font-size: 3rem;
  font-weight: 900;
}
/* line 120, ../scss/modules/_slick-theme.scss */
[dir="rtl"] .slick-prev:before {
  content: "";
}

/* line 126, ../scss/modules/_slick-theme.scss */
.slick-next {
  right: 25px;
  z-index: 1;
}
/* line 131, ../scss/modules/_slick-theme.scss */
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
/* line 135, ../scss/modules/_slick-theme.scss */
.slick-next:before {
  font-size: 3rem;
  font-weight: 900;
  content: "";
}
/* line 139, ../scss/modules/_slick-theme.scss */
[dir="rtl"] .slick-next:before {
  content: "";
}

/* Dots */
/* line 147, ../scss/modules/_slick-theme.scss */
.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

/* line 152, ../scss/modules/_slick-theme.scss */
.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
/* line 161, ../scss/modules/_slick-theme.scss */
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
/* line 169, ../scss/modules/_slick-theme.scss */
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
/* line 181, ../scss/modules/_slick-theme.scss */
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
/* line 183, ../scss/modules/_slick-theme.scss */
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
/* line 187, ../scss/modules/_slick-theme.scss */
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "Font Awesome 5 Free";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* line 204, ../scss/modules/_slick-theme.scss */
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* line 1, ../scss/modules/_content-slider.scss */
.beer-carousel {
  margin: 0;
  width: 100%;
  min-height: 400px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
@media screen and (max-width: 768px) {
  /* line 12, ../scss/modules/_content-slider.scss */
  .beer-carousel {
    min-height: 800px;
  }
}

/* line 17, ../scss/modules/_content-slider.scss */
* {
  box-sizing: border-box;
}

/* line 22, ../scss/modules/_content-slider.scss */
.carousel {
  width: 100%;
  height: 100%;
  display: flex;
  max-height: 550px;
  overflow: hidden;
  position: relative;
  height: 400px;
}
@media screen and (max-width: 768px) {
  /* line 31, ../scss/modules/_content-slider.scss */
  .carousel {
    height: 800px;
    max-height: 800px;
  }
}

/* line 38, ../scss/modules/_content-slider.scss */
.carousel-item {
  visibility: visible;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
  position: relative;
  background-color: transparent;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  position: absolute;
  z-index: 0;
  transition: 0.6s all linear;
}
@media screen and (max-width: 768px) {
  /* line 55, ../scss/modules/_content-slider.scss */
  .carousel-item {
    flex-wrap: wrap;
  }
}

/* line 61, ../scss/modules/_content-slider.scss */
.carousel-item__info {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-flex-direction: column;
  order: 1;
  left: 0;
  margin: auto;
  margin-left: 0;
  padding: 0 40px 0 0;
  width: 50%;
}
@media screen and (max-width: 768px) {
  /* line 78, ../scss/modules/_content-slider.scss */
  .carousel-item__info {
    height: 50%;
    order: 2;
    padding: 0;
    width: 100%;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding: 0 10px;
  }
}

/* line 90, ../scss/modules/_content-slider.scss */
.carousel-item__image {
  width: 500px;
  min-width: 300px;
  max-width: 50%;
  height: 100%;
  order: 2;
  align-self: flex-end;
  flex-basis: 50%;
  -webkit-order: 2;
  -webkit-align-self: flex-end;
  -webkit-flex-basis: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  transform: translateX(100%);
  transition: 0.6s all ease-in-out;
}
@media screen and (max-width: 768px) {
  /* line 110, ../scss/modules/_content-slider.scss */
  .carousel-item__image {
    height: auto;
    order: 1;
    padding: 0;
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    max-width: 100%;
  }
}
/* line 120, ../scss/modules/_content-slider.scss */
.carousel-item__image img {
  width: 100%;
  height: auto;
  margin: 0 !important;
}

/* line 127, ../scss/modules/_content-slider.scss */
.carousel-item__subtitle {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
  font-size: 10px;
  text-transform: uppercase;
  margin: 0;
  color: #7E7E7E;
  font-weight: 700;
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s all ease-in-out;
}

/* line 141, ../scss/modules/_content-slider.scss */
.carousel-item__title:not(:last-child) {
  margin: 10px 0 15px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.65em;
  line-height: 45px;
  letter-spacing: 3px;
  font-weight: 700;
  color: #2C2C2C;
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s all ease-in-out;
}

/* line 156, ../scss/modules/_content-slider.scss */
.carousel-item__description {
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s all ease-in-out;
  margin-top: 35px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #5c6b80;
  line-height: 1.5;
  margin-bottom: 35px;
  font-size: .9em;
}
/* line 168, ../scss/modules/_content-slider.scss */
.carousel-item__description .excerpt-read-more {
  display: none;
}

/* line 201, ../scss/modules/_content-slider.scss */
.carousel-item__btn {
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin: 0;
  text-decoration: none;
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s all ease-in-out;
  transform: none;
}
/* line 219, ../scss/modules/_content-slider.scss */
.carousel-item__btn:hover, .carousel-item__btn:focus {
  color: #fff;
}

/* line 224, ../scss/modules/_content-slider.scss */
.carousel__nav {
  position: absolute;
  right: 0;
  z-index: 2;
  background-color: transparent;
  top: calc(50% - 25px);
  width: 50%;
  min-width: 300px;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  /* line 239, ../scss/modules/_content-slider.scss */
  .carousel__nav {
    width: 100%;
    max-width: 100%;
    top: calc(25% - 25px);
  }
}
/* line 246, ../scss/modules/_content-slider.scss */
.carousel__nav span#moveLeft {
  float: left;
}
/* line 248, ../scss/modules/_content-slider.scss */
.carousel__nav span#moveLeft:before {
  font-size: 3rem;
  font-weight: 900;
  content: "";
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 768px) {
  /* line 259, ../scss/modules/_content-slider.scss */
  .carousel__nav span#moveLeft:before {
    color: #134A27;
  }
}
/* line 265, ../scss/modules/_content-slider.scss */
.carousel__nav span#moveRight {
  float: right;
}
/* line 267, ../scss/modules/_content-slider.scss */
.carousel__nav span#moveRight:before {
  font-size: 3rem;
  font-weight: 900;
  content: "";
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 768px) {
  /* line 278, ../scss/modules/_content-slider.scss */
  .carousel__nav span#moveRight:before {
    color: #134A27;
  }
}

/* line 288, ../scss/modules/_content-slider.scss */
.carousel__icon {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  fill: #5d5d5d;
}

/* line 295, ../scss/modules/_content-slider.scss */
.carousel__arrow {
  cursor: pointer;
  display: inline-block;
  padding: 11px 15px;
  position: relative;
}

/* line 313, ../scss/modules/_content-slider.scss */
.active {
  z-index: 1;
  display: flex;
  visibility: visible;
}

/* line 319, ../scss/modules/_content-slider.scss */
.active .carousel-item__subtitle, .active .carousel-item__title, .active .carousel-item__description, .active .carousel-item__btn {
  transform: translateY(0);
  opacity: 1;
  transition: 0.6s all ease-in-out;
  visibility: visible;
}

/* line 329, ../scss/modules/_content-slider.scss */
.active .carousel-item__image {
  transition: 0.6s all ease-in-out;
  transform: translateX(0);
}

/* -------------------------------- 

Primary style

-------------------------------- */
/* line 6, ../scss/modules/_timeline.scss */
.page-template-template-about-us {
    /* -------------------------------- 

Patterns - reusable parts of our design

-------------------------------- */
    /* -------------------------------- 

Vertical Timeline - by CodyHouse.co

-------------------------------- */
}
/* line 37, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__content .timeline-feature-image {
  max-width: 100%;
}
/* line 39, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__content .timeline-feature-image img {
  width: 100%;
  height: auto;
}
/* line 43, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__content .timeline-feature-image.alignleft {
  float: none;
}
/* line 46, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__content .timeline-feature-image.alignright {
  float: none;
}
/* line 50, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__content .content {
  padding: 15px;
  max-width: 100%;
}
/* line 53, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__content .content.alignleft {
  float: none;
}
/* line 56, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__content .content.alignright {
  float: none;
}
@media only screen and (min-width: 1170px) {
  /* line 63, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-is-hidden {
    visibility: hidden;
  }
}
/* line 96, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline {
  overflow: hidden;
  margin: 2em auto;
}
/* line 101, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__container {
  position: relative;
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 2em 0;
}
/* line 109, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__container::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 4px;
  background: #867752;
}
@media only screen and (min-width: 1170px) {
  /* line 121, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  /* line 126, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__container::before {
    left: 50%;
    margin-left: -2px;
  }
}
/* line 132, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__block {
  position: relative;
  margin: 2em 0;
}
/* line 137, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__block:after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}
/* line 144, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__block:first-child {
  margin-top: 0;
}
/* line 148, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__block:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1170px) {
  /* line 153, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__block {
    margin: 2em 0;
  }
}
/* line 158, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
}
/* line 169, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__img img {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
}
/* line 180, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__img.cd-timeline__img--picture {
  background: #134A27;
}
/* line 184, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__img.cd-timeline__img--movie {
  background: #c03b44;
}
/* line 188, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__img.cd-timeline__img--location {
  background: #f0ca45;
}
@media only screen and (min-width: 1170px) {
  /* line 193, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__img {
    width: 30px;
    height: 30px;
    left: 50%;
    margin-left: -15px;
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  /* line 203, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__img.cd-timeline__img--bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-1 0.6s;
    animation: cd-bounce-1 0.6s;
  }
}
@-webkit-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* line 248, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__content {
  position: relative;
  margin-left: 60px;
  background: white;
  padding: 1em;
  -webkit-box-shadow: 0 3px 0 #d7e4ed;
  box-shadow: 0 3px 0 #d7e4ed;
}
@media only screen and (min-width: 768px) {
  /* line 256, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__content .timeline-feature-image {
    max-width: 50%;
  }
  /* line 258, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__content .timeline-feature-image img {
    width: 100%;
    height: auto;
  }
  /* line 262, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__content .timeline-feature-image.alignleft {
    float: left;
  }
  /* line 265, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__content .timeline-feature-image.alignright {
    float: right;
  }
  /* line 269, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__content .content {
    padding: 15px;
    max-width: 50%;
  }
  /* line 272, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__content .content.alignleft {
    float: left;
  }
  /* line 275, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__content .content.alignright {
    float: right;
  }
}
/* line 282, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__content:after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}
/* line 289, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__content::before {
  /* triangle next to content block */
  content: '';
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid white;
}
/* line 301, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__content h2 {
  color: #303e49;
}
/* line 305, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__content p,
.page-template-template-about-us .cd-timeline__read-more,
.page-template-template-about-us .cd-timeline__date {
  font-size: 1.3rem;
}
/* line 311, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__content p {
  margin: 1em 0;
  line-height: 1.3em;
}
/* line 315, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__content p img {
  max-width: 100%;
  height: auto;
}
/* line 322, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__read-more,
.page-template-template-about-us .cd-timeline__date {
  display: inline-block;
}
/* line 327, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__read-more {
  float: right;
  padding: .8em 1em;
  background: #acb7c0;
  color: white;
  border-radius: 0.25em;
}
/* line 335, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__read-more:hover {
  background-color: #bac4cb;
}
/* line 339, ../scss/modules/_timeline.scss */
.page-template-template-about-us .cd-timeline__date {
  float: left;
  padding: .8em 0;
  opacity: .7;
}
@media only screen and (min-width: 768px) {
  /* line 347, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__content h2 {
    font-size: 1.25rem;
    letter-spacing: 1px;
    line-height: 1.15em;
  }
  /* line 354, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__content p {
    font-size: 1em;
  }
  /* line 356, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__content p img {
    max-width: 100%;
    height: auto;
  }
  /* line 363, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__read-more,
  .page-template-template-about-us .cd-timeline__date {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1170px) {
  /* line 370, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__content {
    margin-left: 0;
    padding: 1.6em;
    width: 45%;
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  /* line 379, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__content::before {
    top: 24px;
    left: 100%;
    border-color: transparent;
    border-left-color: white;
  }
  /* line 386, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__read-more {
    float: left;
  }
  /* line 390, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__date {
    position: absolute;
    width: 100%;
    left: 122%;
    top: 6px;
    font-size: 1.6rem;
  }
  /* line 398, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__block:nth-child(even) .cd-timeline__content {
    float: right;
  }
  /* line 402, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__block:nth-child(even) .cd-timeline__content::before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: white;
  }
  /* line 410, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__block:nth-child(even) .cd-timeline__read-more {
    float: right;
  }
  /* line 414, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__block:nth-child(even) .cd-timeline__date {
    left: auto;
    right: 122%;
    text-align: right;
  }
  /* line 420, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__content.cd-timeline__content--bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2 0.6s;
    animation: cd-bounce-2 0.6s;
  }
}
@media only screen and (min-width: 1170px) {
  /* line 6, ../scss/modules/_timeline.scss */
  .page-template-template-about-us {
    /* inverse bounce effect on even content blocks */
  }
  /* line 430, ../scss/modules/_timeline.scss */
  .page-template-template-about-us .cd-timeline__block:nth-child(even) .cd-timeline__content.cd-timeline__content--bounce-in {
    -webkit-animation: cd-bounce-2-inverse 0.6s;
    animation: cd-bounce-2-inverse 0.6s;
  }
}
@-webkit-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/*********************
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.
*********************/
/******************************************************************
Site Name:
Author:

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
*********************/
/* line 18, ../scss/breakpoints/_base.scss */
body {
  font-family: "Montserrat", sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #5c6b80;
  background-color: #eaedf2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: none;
  -epub-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
}

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* line 42, ../scss/breakpoints/_base.scss */
.home .about-intro {
  padding-bottom: 0px !important;
}

/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* line 146, ../scss/breakpoints/_base.scss */
.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  text-align: center;
  margin: auto;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
/* line 158, ../scss/breakpoints/_base.scss */
.wrap {
  width: 96%;
  margin: 0 auto;
}

/*********************
LINK STYLES
*********************/
/* line 167, ../scss/breakpoints/_base.scss */
a,
a:visited {
  color: #2980b9;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
/* line 172, ../scss/breakpoints/_base.scss */
a:hover, a:focus,
a:visited:hover,
a:visited:focus {
  color: #216693;
}
/* line 179, ../scss/breakpoints/_base.scss */
a.btn:hover, a.btn:focus,
a:visited.btn:hover,
a:visited.btn:focus {
  color: #fff;
}
/* line 189, ../scss/breakpoints/_base.scss */
a:link,
a:visited:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
/* line 203, ../scss/breakpoints/_base.scss */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  text-rendering: optimizelegibility;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
  margin: 0;
  /*
  if you're going to use webfonts, be sure to check your weights
  http:
  */
  /* removing text decoration from all headline links */
}
/* line 224, ../scss/breakpoints/_base.scss */
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a {
  text-decoration: none;
}

/* line 229, ../scss/breakpoints/_base.scss */
h1,
.h1 {
  font-size: 2.5em;
  line-height: 1.333em;
}

/* line 234, ../scss/breakpoints/_base.scss */
h2.section-heading,
.h2.section-heading, h3.section-heading,
.h3.section-heading {
  margin-top: 0;
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
}
/* line 241, ../scss/breakpoints/_base.scss */
h2.section-heading span,
.h2.section-heading span, h3.section-heading span,
.h3.section-heading span {
  background-color: #eaedf2;
  padding: 0 1em;
  display: inline-block;
}
/* line 245, ../scss/breakpoints/_base.scss */
h2.section-heading span a,
.h2.section-heading span a, h3.section-heading span a,
.h3.section-heading span a {
  color: inherit;
}
/* line 250, ../scss/breakpoints/_base.scss */
h2.section-heading:before,
.h2.section-heading:before, h3.section-heading:before,
.h3.section-heading:before {
  height: 1px;
  display: block;
  content: "";
  background: #134A27;
  width: 100%;
  z-index: -1;
  bottom: 50%;
  position: absolute;
}

/* line 262, ../scss/breakpoints/_base.scss */
h2,
.h2 {
  font-size: 1.75em;
  line-height: 1.4em;
  margin-bottom: 0.375em;
}

/* line 273, ../scss/breakpoints/_base.scss */
h3,
.h3 {
  font-size: 1.225em;
  letter-spacing: 2px;
}

/* line 282, ../scss/breakpoints/_base.scss */
h4,
.h4 {
  font-size: 1.1em;
  font-weight: 700;
}

/* line 288, ../scss/breakpoints/_base.scss */
h5,
.h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/*********************
HEADER STYLES
*********************/
/* line 300, ../scss/breakpoints/_base.scss */
.header {
  background-color: #fff;
}

/* line 305, ../scss/breakpoints/_base.scss */
#logo {
  margin: 0.75em 0;
  text-align: center;
}
/* line 309, ../scss/breakpoints/_base.scss */
#logo a {
  color: #fff;
}
/* line 311, ../scss/breakpoints/_base.scss */
#logo a img {
  transform: scale(1.15) translateY(15px);
}

/* line 317, ../scss/breakpoints/_base.scss */
#searchform div input {
  margin: auto;
}

/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
/* line 333, ../scss/breakpoints/_base.scss */
nav .ham {
  color: #fff;
  padding: 15px;
}

/* line 338, ../scss/breakpoints/_base.scss */
.nav-container {
  background-color: #134A27;
}

/* line 341, ../scss/breakpoints/_base.scss */
#menu-main-menu {
  height: 0;
  transition: 1s all ease-in-out;
  overflow: hidden;
}
/* line 345, ../scss/breakpoints/_base.scss */
#menu-main-menu.open {
  height: auto;
}

/* line 349, ../scss/breakpoints/_base.scss */
.nav {
  border-bottom: 0;
  margin: 0;
  background-color: #134A27;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 354, ../scss/breakpoints/_base.scss */
.nav li {
  /*
  so you really have to rethink your dropdowns for mobile.
  you don't want to have it expand too much because the
  screen is so small. How you manage your menu should
  depend on the project. Here's some great info on it:
  http:
  */
}
/* line 356, ../scss/breakpoints/_base.scss */
.nav li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.75em;
  /*
  remember this is for mobile ONLY, so there's no need
  to even declare hover styles here, you can do it in
  the style.scss file where it's relevant. We want to
  keep this file as small as possible!
  */
}
/* line 368, ../scss/breakpoints/_base.scss */
.nav li a:hover, .nav li a:focus {
  text-decoration: none;
}
/* line 375, ../scss/breakpoints/_base.scss */
.nav li:hover a {
  border-bottom: 2px solid #1d733c;
  padding-bottom: calc(0.75em - 2px);
  text-decoration: none !important;
}
/* line 381, ../scss/breakpoints/_base.scss */
.nav li:hover > a {
  background-color: #1d733c;
}
/* line 383, ../scss/breakpoints/_base.scss */
.nav li:hover > a:hover {
  color: #fff;
}
/* line 391, ../scss/breakpoints/_base.scss */
.nav li:hover:after {
  width: 100%;
}
/* line 406, ../scss/breakpoints/_base.scss */
.nav li ul.sub-menu,
.nav li ul.children {
  display: none;
}
/* line 412, ../scss/breakpoints/_base.scss */
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 30px;
}
/* line 415, ../scss/breakpoints/_base.scss */
.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: transparent;
}

/* end .nav */
/*********************
POSTS & CONTENT STYLES
*********************/
/* line 458, ../scss/breakpoints/_base.scss */
.hentry {
  background-color: #eaedf2;
  border-radius: 3px;
  margin-bottom: 1.5em;
}
/* line 463, ../scss/breakpoints/_base.scss */
.hentry header {
  padding: 1.5em;
}
/* line 467, ../scss/breakpoints/_base.scss */
.hentry footer {
  padding: 1.5em;
  border-top: 1px solid #f8f9fa;
}
/* line 471, ../scss/breakpoints/_base.scss */
.hentry footer p {
  margin: 0;
}

/* end .hentry */
/* line 481, ../scss/breakpoints/_base.scss */
.single-title,
.page-title,
.entry-title {
  margin: 0;
}

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
/* line 522, ../scss/breakpoints/_base.scss */
.byline {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}

/* entry content */
/* line 531, ../scss/breakpoints/_base.scss */
.entry-content {
  padding: 1.5em 10px;
  margin-bottom: 25px;
  /*
  		image alignment on a screen this size may be
  		a bit difficult. It's set to start aligning
  		and floating images at the next breakpoint,
  		but it's up to you. Feel free to change it up.
  		*/
}
/* line 535, ../scss/breakpoints/_base.scss */
.entry-content.cta-banner-container {
  background-size: cover;
  min-height: 400px;
  background-position: center center;
}
/* line 540, ../scss/breakpoints/_base.scss */
.entry-content.cta-banner-container .cta-banner-content {
  color: #ffffff;
  text-align: right;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  text-shadow: 1px 1px #000000;
}
/* line 563, ../scss/breakpoints/_base.scss */
.entry-content.cta-banner-container .cta-banner-content h1, .entry-content.cta-banner-container .cta-banner-content h2, .entry-content.cta-banner-container .cta-banner-content h3, .entry-content.cta-banner-container .cta-banner-content h4, .entry-content.cta-banner-container .cta-banner-content h5 {
  letter-spacing: unset;
}
/* line 566, ../scss/breakpoints/_base.scss */
.entry-content.cta-banner-container .cta-banner-content h3 {
  font-size: 1.5em;
  font-weight: 900;
  margin-bottom: 0;
}
/* line 572, ../scss/breakpoints/_base.scss */
.entry-content.cta-banner-container .cta-banner-content h5 {
  margin-bottom: 0;
  margin-top: 0;
  font-size: .7em;
}
/* line 578, ../scss/breakpoints/_base.scss */
.entry-content.cta-banner-container .cta-banner-content p {
  max-width: 70%;
}
/* line 585, ../scss/breakpoints/_base.scss */
.entry-content p {
  margin: 0 0 1.5em;
}
/* line 614, ../scss/breakpoints/_base.scss */
.entry-content table {
  width: 100%;
  border: 1px solid #eaedf2;
  margin-bottom: 1.5em;
}
/* line 619, ../scss/breakpoints/_base.scss */
.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #9fa6b4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* line 628, ../scss/breakpoints/_base.scss */
.entry-content tr {
  border-bottom: 1px solid #eaedf2;
}
/* line 631, ../scss/breakpoints/_base.scss */
.entry-content tr:nth-child(even) {
  background-color: #f8f9fa;
}
/* line 636, ../scss/breakpoints/_base.scss */
.entry-content td {
  padding: 7px;
  border-right: 1px solid #eaedf2;
}
/* line 640, ../scss/breakpoints/_base.scss */
.entry-content td:last-child {
  border-right: 0;
}
/* line 645, ../scss/breakpoints/_base.scss */
.entry-content th {
  background-color: #f8f9fa;
  border-bottom: 1px solid #eaedf2;
  border-right: 1px solid #eaedf2;
}
/* line 650, ../scss/breakpoints/_base.scss */
.entry-content th:last-child {
  border-right: 0;
}
/* line 655, ../scss/breakpoints/_base.scss */
.entry-content blockquote {
  margin: 0 0 1.5em 0.75em;
  padding: 0 0 0 0.75em;
  border-left: 3px solid #2980b9;
  font-style: italic;
  color: #9fa6b4;
}
/* line 670, ../scss/breakpoints/_base.scss */
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
/* line 677, ../scss/breakpoints/_base.scss */
.entry-content img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
  height: auto;
}
/* line 704, ../scss/breakpoints/_base.scss */
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
  max-width: 100%;
  height: auto;
}
/* line 713, ../scss/breakpoints/_base.scss */
.entry-content pre {
  background: #323944;
  color: #f8f9fa;
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}

/* end .entry-content */
/* line 726, ../scss/breakpoints/_base.scss */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */
}
/* line 732, ../scss/breakpoints/_base.scss */
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
/* line 738, ../scss/breakpoints/_base.scss */
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
/* line 779, ../scss/breakpoints/_base.scss */
.tags {
  margin: 0;
}

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
/* line 787, ../scss/breakpoints/_base.scss */
.pagination,
.wp-prev-next {
  margin: 1.5em 0;
}

/* line 792, ../scss/breakpoints/_base.scss */
.pagination {
  text-align: center;
}
/* line 795, ../scss/breakpoints/_base.scss */
.pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
/* line 804, ../scss/breakpoints/_base.scss */
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #eaedf2;
}
/* line 813, ../scss/breakpoints/_base.scss */
.pagination a,
.pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 0.75em;
  min-width: 1em;
  display: inline-block;
  color: #fff;
  background: #867752;
}
/* line 827, ../scss/breakpoints/_base.scss */
.pagination a:hover, .pagination a:focus,
.pagination span:hover,
.pagination span:focus {
  background-color: #867752;
  color: #fff;
}
/* line 834, ../scss/breakpoints/_base.scss */
.pagination .current {
  cursor: default;
  color: #5c6b80;
  background: transparent;
}
/* line 839, ../scss/breakpoints/_base.scss */
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #5c6b80;
}

/* end .bones_page_navi */
/* fallback previous & next links */
/* line 855, ../scss/breakpoints/_base.scss */
.wp-prev-next .prev-link {
  float: left;
}
/* line 859, ../scss/breakpoints/_base.scss */
.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
/* line 872, ../scss/breakpoints/_base.scss */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #f8f9fa;
  /* number of comments span */
}

/* line 892, ../scss/breakpoints/_base.scss */
.commentlist {
  margin: 0;
  list-style-type: none;
}

/* line 897, ../scss/breakpoints/_base.scss */
.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #f8f9fa;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */
}
/* line 904, ../scss/breakpoints/_base.scss */
.comment .comment-author {
  padding: 7px;
  border: 0;
}
/* line 910, ../scss/breakpoints/_base.scss */
.comment .vcard {
  margin-left: 50px;
}
/* line 913, ../scss/breakpoints/_base.scss */
.comment .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
/* line 921, ../scss/breakpoints/_base.scss */
.comment .vcard time {
  display: block;
  font-size: 0.9em;
  font-style: italic;
}
/* line 926, ../scss/breakpoints/_base.scss */
.comment .vcard time a {
  color: #9fa6b4;
  text-decoration: none;
}
/* line 930, ../scss/breakpoints/_base.scss */
.comment .vcard time a:hover {
  text-decoration: underline;
}
/* line 940, ../scss/breakpoints/_base.scss */
.comment .vcard .avatar {
  position: absolute;
  left: 16px;
  border-radius: 50%;
}
/* line 950, ../scss/breakpoints/_base.scss */
.comment:last-child {
  margin-bottom: 0;
}
/* line 954, ../scss/breakpoints/_base.scss */
.comment .children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}
/* line 982, ../scss/breakpoints/_base.scss */
.comment[class*=depth-] {
  margin-top: 1.1em;
}
/* line 986, ../scss/breakpoints/_base.scss */
.comment.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
/* line 991, ../scss/breakpoints/_base.scss */
.comment:not(.depth-1) {
  margin-top: 0;
  margin-left: 7px;
  padding: 7px;
}
/* line 1008, ../scss/breakpoints/_base.scss */
.comment.odd {
  background-color: #fff;
}
/* line 1012, ../scss/breakpoints/_base.scss */
.comment.even {
  background: #f8f9fa;
}

/* comment meta */
/* comment content */
/* line 1056, ../scss/breakpoints/_base.scss */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}

/* end .commentlist .comment_content */
/* comment reply link */
/* line 1067, ../scss/breakpoints/_base.scss */
.comment-reply-link {
  font-size: 0.9em;
  float: right;
}

/* end .commentlist .comment-reply-link */
/* edit comment link */
/* line 1080, ../scss/breakpoints/_base.scss */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em;
}

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
/* line 1093, ../scss/breakpoints/_base.scss */
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #f8f9fa;
}

/* line 1099, ../scss/breakpoints/_base.scss */
#reply-title {
  margin: 0;
}

/* line 1103, ../scss/breakpoints/_base.scss */
.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
/* line 1108, ../scss/breakpoints/_base.scss */
.logged-in-as a {
  color: #5c6b80;
}

/* line 1113, ../scss/breakpoints/_base.scss */
.comment-form-comment {
  margin: 1.5em 0 0.75em;
}

/* line 1117, ../scss/breakpoints/_base.scss */
.form-allowed-tags {
  padding: 1.5em;
  background-color: #f8f9fa;
  font-size: 0.9em;
}

/* comment submit button */
/* line 1124, ../scss/breakpoints/_base.scss */
#submit {
  float: right;
  font-size: 1em;
}

/* comment form title */
/* line 1131, ../scss/breakpoints/_base.scss */
#comment-form-title {
  margin: 0 0 1.1em;
}

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
/* line 1144, ../scss/breakpoints/_base.scss */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}

/* no comments */
/* line 1149, ../scss/breakpoints/_base.scss */
.nocomments {
  margin: 0 20px 1.1em;
}

/*********************
SIDEBARS & ASIDES
*********************/
/* line 1165, ../scss/breakpoints/_base.scss */
.widget ul li {
  /* deep nesting */
}

/* line 1182, ../scss/breakpoints/_base.scss */
.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em;
}

/*********************
FOOTER STYLES
*********************/
/* line 1195, ../scss/breakpoints/_base.scss */
.footer {
  clear: both;
  background-color: #134A27;
  color: #fff;
  text-align: center;
}
/* line 1203, ../scss/breakpoints/_base.scss */
.footer a {
  color: #fff;
  text-decoration: none;
}
/* line 1207, ../scss/breakpoints/_base.scss */
.footer a:visited, .footer a:hover {
  color: #fff;
}

/*
	if you checked out the link above:
	http:
	you'll want to style the footer nav
	a bit more in-depth. Remember to keep
	it simple because you'll have to
	override these styles for the desktop
	view.
	*/
/* end .footer-links */
/* autoprefixer grid: autoplace */
/* line 1248, ../scss/breakpoints/_base.scss */
.recipes {
  min-height: 400px;
}
/* line 1252, ../scss/breakpoints/_base.scss */
.recipes .recipe {
  background-size: cover;
  background-position: center center;
  margin-bottom: 25px;
  position: relative;
}
/* line 1257, ../scss/breakpoints/_base.scss */
.recipes .recipe:first-child {
  grid-row: span 2;
}
/* line 1263, ../scss/breakpoints/_base.scss */
.recipes .recipe .recipe-teaser {
  z-index: 1;
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 15px;
}
/* line 1290, ../scss/breakpoints/_base.scss */
.recipes .recipe .recipe-teaser * {
  color: #fff;
}
/* line 1294, ../scss/breakpoints/_base.scss */
.recipes .recipe .recipe-teaser h2 {
  border-bottom: 1px solid #fff;
  width: 90%;
  text-align: center;
  margin-bottom: 0;
  font-size: 1.4em;
}
/* line 1302, ../scss/breakpoints/_base.scss */
.recipes .recipe .recipe-teaser h3 {
  margin: 0 0 10px;
  font-size: .9em;
}
/* line 1307, ../scss/breakpoints/_base.scss */
.recipes .recipe .recipe-teaser p {
  width: 90%;
  text-align: center;
}

/* line 1315, ../scss/breakpoints/_base.scss */
.header {
  background: #FFFFFF;
}
/* line 1318, ../scss/breakpoints/_base.scss */
.header .nav-container {
  background-color: #134A27;
}
/* line 1324, ../scss/breakpoints/_base.scss */
.header .header-container .header-content {
  text-align: right;
}
/* line 1327, ../scss/breakpoints/_base.scss */
.header .header-container .header-content .phone {
  display: block;
  text-align: center;
}
/* line 1332, ../scss/breakpoints/_base.scss */
.header .header-container .header-content .phone a {
  color: #134A27;
  font-weight: 700;
}
/* line 1336, ../scss/breakpoints/_base.scss */
.header .header-container .header-content .phone a:hover, .header .header-container .header-content .phone a:visited {
  color: #134A27;
}
/* line 1343, ../scss/breakpoints/_base.scss */
.header .header-container .header-content .social {
  display: none;
  font-size: 1.2em;
  color: #134A27;
}
/* line 1349, ../scss/breakpoints/_base.scss */
.header .header-container .header-content .social a {
  color: #134A27;
  font-weight: 900;
  margin-left: 10px;
}
/* line 1354, ../scss/breakpoints/_base.scss */
.header .header-container .header-content .social a:hover {
  color: #1d733c;
}
/* line 1360, ../scss/breakpoints/_base.scss */
.header .header-container .header-content .social a:not(:last-child) {
  margin: 0 10px;
}
/* line 1369, ../scss/breakpoints/_base.scss */
.header .header-container .header-content .search form div {
  display: grid;
  position: relative;
}
/* line 1373, ../scss/breakpoints/_base.scss */
.header .header-container .header-content .search form div label {
  position: absolute;
  z-index: -1;
}
/* line 1377, ../scss/breakpoints/_base.scss */
.header .header-container .header-content .search form div input {
  width: 94%;
}
/* line 1384, ../scss/breakpoints/_base.scss */
.header .header-container .header-content .download {
  display: none;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
/* line 1404, ../scss/breakpoints/_base.scss */
.header .header-container .header-content .download .do-the-deed .view-asset img {
  display: none;
}

/* line 1414, ../scss/breakpoints/_base.scss */
.header-banner-container {
  height: 40vh;
  min-height: 300px;
  max-height: 400px;
  position: relative;
  background-size: cover;
  background-position: center center;
  margin-bottom: 60px;
}
/* line 1422, ../scss/breakpoints/_base.scss */
.header-banner-container .title-bar {
  background-color: #eaedf2;
  position: absolute;
  bottom: -55px;
  left: 0;
  width: 100%;
  padding-top: 10px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1d5632+94,ffffff+98,ffffff+100&1+34,1+86,0+100 */
}
/* line 1435, ../scss/breakpoints/_base.scss */
.header-banner-container .title-bar h1 {
  position: relative;
  margin: 0;
  color: #323944;
  font-weight: 900;
  margin: auto;
  font-size: 2.25em;
  text-transform: uppercase;
}

/* line 1447, ../scss/breakpoints/_base.scss */
.feature-flex-container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
/* line 1466, ../scss/breakpoints/_base.scss */
.feature-flex-container .flex-item {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 45%;
  -ms-flex: 0 1 45%;
  flex: 0 1 45%;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  min-width: 100px;
  position: relative;
}
/* line 1479, ../scss/breakpoints/_base.scss */
.feature-flex-container .flex-item .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 15px;
  color: #fff;
}
/* line 1486, ../scss/breakpoints/_base.scss */
.feature-flex-container .flex-item .title a {
  text-decoration: none;
  color: #fff;
}

/* line 1494, ../scss/breakpoints/_base.scss */
.beer-search-container, .download-search-container {
  position: relative;
}
/* line 1497, ../scss/breakpoints/_base.scss */
.beer-search-container i, .download-search-container i {
  position: absolute;
  top: 25%;
  left: 10px;
}
/* line 1503, ../scss/breakpoints/_base.scss */
.beer-search-container #beer-search, .beer-search-container #download-search, .download-search-container #beer-search, .download-search-container #download-search {
  border: 1px solid #cccccc;
  border-radius: 100px;
  width: 225px;
  padding-left: 50px;
  transition: 2s all ease-in-out;
}
/* line 1510, ../scss/breakpoints/_base.scss */
.beer-search-container #beer-search:focus, .beer-search-container #download-search:focus, .download-search-container #beer-search:focus, .download-search-container #download-search:focus {
  width: 50%;
}
/* line 1514, ../scss/breakpoints/_base.scss */
.beer-search-container #download-search, .download-search-container #download-search {
  width: 100%;
}
/* line 1516, ../scss/breakpoints/_base.scss */
.beer-search-container #download-search:focus, .download-search-container #download-search:focus {
  width: 100%;
}

/* line 1524, ../scss/breakpoints/_base.scss */
.beer-style-listing .beer-style {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 400px 1fr;
  grid-template-rows: 400px auto;
  grid-template-areas: "gutter-left center gutter-right";
  margin-bottom: 25px;
  opacity: 1;
}
/* line 1533, ../scss/breakpoints/_base.scss */
.beer-style-listing .beer-style.hidden {
  display: none;
}
/* line 1537, ../scss/breakpoints/_base.scss */
.beer-style-listing .beer-style .img-container {
  grid-column: center;
  position: relative;
  overflow: hidden;
}
/* line 1542, ../scss/breakpoints/_base.scss */
.beer-style-listing .beer-style .img-container .details {
  position: absolute;
  bottom: 0;
  color: white;
  background: rgba(19, 74, 39, 0.7);
  height: 2.9em;
  width: 100%;
  transition: 2s all ease-in-out;
  color: #fff;
  text-align: right;
}
/* line 1553, ../scss/breakpoints/_base.scss */
.beer-style-listing .beer-style .img-container .details h2 {
  text-align: center;
}
/* line 1558, ../scss/breakpoints/_base.scss */
.beer-style-listing .beer-style .img-container .details.open {
  height: 100%;
}
/* line 1562, ../scss/breakpoints/_base.scss */
.beer-style-listing .beer-style .img-container .details .description {
  padding: .25em 25px;
  font-size: .8em;
}
/* line 1566, ../scss/breakpoints/_base.scss */
.beer-style-listing .beer-style .img-container .details .description p {
  text-align: left;
}
/* line 1570, ../scss/breakpoints/_base.scss */
.beer-style-listing .beer-style .img-container .details .description a {
  font-size: .8em;
}
/* line 1577, ../scss/breakpoints/_base.scss */
.beer-style-listing .beer-style .img-container:hover .details {
  height: 100%;
}
/* line 1583, ../scss/breakpoints/_base.scss */
.beer-style-listing .beer-style .beer-listing {
  display: none;
  border-left: none;
}

/* line 1590, ../scss/breakpoints/_base.scss */
.social-share-container {
  text-align: center;
}
/* line 1592, ../scss/breakpoints/_base.scss */
.social-share-container a {
  color: #134A27;
}
/* line 1594, ../scss/breakpoints/_base.scss */
.social-share-container a i {
  font-size: 2em;
  margin: 0px 10px;
}

/* line 1606, ../scss/breakpoints/_base.scss */
.beer-style-page .beer-style-beers {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10px;
}
/* line 1626, ../scss/breakpoints/_base.scss */
.beer-style-page .beer-style-beers .section-heading {
  margin-bottom: 25px;
}
/* line 1629, ../scss/breakpoints/_base.scss */
.beer-style-page .beer-style-beers .beer-icon {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 80%;
  -ms-flex: 0 1 80%;
  flex: 0 1 80%;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: flex-start;
  align-self: flex-start;
  padding: 10%;
  padding-bottom: 0px;
}
/* line 1641, ../scss/breakpoints/_base.scss */
.beer-style-page .beer-style-beers .beer-icon a {
  display: block;
  position: relative;
  text-decoration: none;
}
/* line 1646, ../scss/breakpoints/_base.scss */
.beer-style-page .beer-style-beers .beer-icon a div img {
  width: 100%;
  height: auto;
}
/* line 1651, ../scss/breakpoints/_base.scss */
.beer-style-page .beer-style-beers .beer-icon a .title {
  display: block;
  bottom: 0;
  width: 100%;
  color: #323944;
  padding: 2px 5px;
  text-align: center;
  font-size: 1.35em;
}
/* line 1665, ../scss/breakpoints/_base.scss */
.beer-style-page .you-may-also-like {
  padding-bottom: 25px;
}
/* line 1667, ../scss/breakpoints/_base.scss */
.beer-style-page .you-may-also-like .related-beer-wrapper {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
/* line 1686, ../scss/breakpoints/_base.scss */
.beer-style-page .you-may-also-like .related-beer-wrapper .related-beer {
  width: 20%;
  min-width: 200px;
  height: 200px;
  position: relative;
}
/* line 1691, ../scss/breakpoints/_base.scss */
.beer-style-page .you-may-also-like .related-beer-wrapper .related-beer p {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  background-color: rgba(19, 74, 39, 0.9);
  margin: 0;
  padding: 2px 10px;
  color: #fff;
}
/* line 1700, ../scss/breakpoints/_base.scss */
.beer-style-page .you-may-also-like .related-beer-wrapper .related-beer p a {
  color: #fff;
  text-decoration: none;
}

/* line 1711, ../scss/breakpoints/_base.scss */
.single-beer aside {
  padding: 1.5em 10px;
}
/* line 1714, ../scss/breakpoints/_base.scss */
.single-beer .beer-stats {
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #134A27;
  padding: 25px 20px;
  margin-bottom: 35px;
}
/* line 1720, ../scss/breakpoints/_base.scss */
.single-beer .beer-stats > div {
  margin-bottom: 10px;
  width: 100%;
  display: flex;
}
/* line 1725, ../scss/breakpoints/_base.scss */
.single-beer .beer-stats p {
  margin: 0;
  display: inline-block;
}
/* line 1729, ../scss/breakpoints/_base.scss */
.single-beer .beer-stats label {
  display: inline-block;
  font-weight: 700;
  padding-right: 3em;
  font-size: 1em;
  width: 105px;
}
/* line 1737, ../scss/breakpoints/_base.scss */
.single-beer .featured-image, .single-beer .beer-custom-side {
  text-align: center;
  margin-bottom: 35px;
}
/* line 1740, ../scss/breakpoints/_base.scss */
.single-beer .featured-image img, .single-beer .beer-custom-side img {
  width: 100%;
  height: auto;
  max-width: 480px;
  margin: auto;
  margin-bottom: 25px;
}
/* line 1748, ../scss/breakpoints/_base.scss */
.single-beer .featured-image p :last-child, .single-beer .beer-custom-side p :last-child {
  margin-bottom: 0;
}
/* line 1755, ../scss/breakpoints/_base.scss */
.single-beer .downloads input {
  display: none;
}
/* line 1758, ../scss/breakpoints/_base.scss */
.single-beer .downloads .btn {
  width: 100%;
}
/* line 1762, ../scss/breakpoints/_base.scss */
.single-beer .related-content {
  padding: 1.5em 0;
  margin-bottom: 4em;
}
/* line 1766, ../scss/breakpoints/_base.scss */
.single-beer .related-content .related-recipes, .single-beer .related-content .you-may-like {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 .75em;
}
/* line 1786, ../scss/breakpoints/_base.scss */
.single-beer .related-content .related-recipes .heading, .single-beer .related-content .you-may-like .heading {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  margin-bottom: 15px;
}
/* line 1798, ../scss/breakpoints/_base.scss */
.single-beer .related-content .related-recipes .recipe, .single-beer .related-content .related-recipes .like, .single-beer .related-content .you-may-like .recipe, .single-beer .related-content .you-may-like .like {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 46%;
  -ms-flex: 0 1 46%;
  flex: 0 1 46%;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  background-size: cover;
  background-repeat: no-repeat;
  height: 240px;
  position: relative;
}
/* line 1812, ../scss/breakpoints/_base.scss */
.single-beer .related-content .related-recipes .recipe .title, .single-beer .related-content .related-recipes .like .title, .single-beer .related-content .you-may-like .recipe .title, .single-beer .related-content .you-may-like .like .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(19, 74, 39, 0.7);
  color: #fff;
  padding: 5px 15px;
  text-align: center;
}
/* line 1821, ../scss/breakpoints/_base.scss */
.single-beer .related-content .related-recipes .recipe .title a, .single-beer .related-content .related-recipes .like .title a, .single-beer .related-content .you-may-like .recipe .title a, .single-beer .related-content .you-may-like .like .title a {
  color: #fff;
  text-decoration: none;
}
/* line 1826, ../scss/breakpoints/_base.scss */
.single-beer .related-content .related-recipes .recipe .pic-preview, .single-beer .related-content .related-recipes .like .pic-preview, .single-beer .related-content .you-may-like .recipe .pic-preview, .single-beer .related-content .you-may-like .like .pic-preview {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/* line 1833, ../scss/breakpoints/_base.scss */
.single-beer .related-content .related-recipes .recipe .pic-preview ~ .title, .single-beer .related-content .related-recipes .like .pic-preview ~ .title, .single-beer .related-content .you-may-like .recipe .pic-preview ~ .title, .single-beer .related-content .you-may-like .like .pic-preview ~ .title {
  position: relative;
  display: block;
  background: none;
}
/* line 1837, ../scss/breakpoints/_base.scss */
.single-beer .related-content .related-recipes .recipe .pic-preview ~ .title a, .single-beer .related-content .related-recipes .like .pic-preview ~ .title a, .single-beer .related-content .you-may-like .recipe .pic-preview ~ .title a, .single-beer .related-content .you-may-like .like .pic-preview ~ .title a {
  color: #323944;
}

/* line 1848, ../scss/breakpoints/_base.scss */
.downloads-sort h2 {
  font-size: 1.2em;
}
/* line 1851, ../scss/breakpoints/_base.scss */
.downloads-sort .category-sort, .downloads-sort .brand-search {
  margin: 10px 0;
  border: 2px solid #134A27;
  padding: 20px 25px;
  padding-bottom: 35px;
  overflow: hidden;
  height: auto;
  max-height: 400px;
  position: relative;
  transition: 1s all ease-in-out;
}
/* line 1862, ../scss/breakpoints/_base.scss */
.downloads-sort .category-sort label, .downloads-sort .brand-search label {
  display: block;
  text-indent: 0px;
  line-height: 22px;
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 1866, ../scss/breakpoints/_base.scss */
.downloads-sort .category-sort label.hidden, .downloads-sort .brand-search label.hidden {
  display: none;
}
/* line 1879, ../scss/breakpoints/_base.scss */
.downloads-sort .category-sort label input, .downloads-sort .brand-search label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* line 1885, ../scss/breakpoints/_base.scss */
.downloads-sort .category-sort label input:checked ~ .checkmark:after, .downloads-sort .brand-search label input:checked ~ .checkmark:after {
  display: block;
}
/* line 1889, ../scss/breakpoints/_base.scss */
.downloads-sort .category-sort label .checkmark, .downloads-sort .brand-search label .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #867752;
}
/* line 1896, ../scss/breakpoints/_base.scss */
.downloads-sort .category-sort label .checkmark:after, .downloads-sort .brand-search label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* line 1901, ../scss/breakpoints/_base.scss */
.downloads-sort .category-sort label .checkmark:after, .downloads-sort .brand-search label .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* line 1914, ../scss/breakpoints/_base.scss */
.downloads-sort .category-sort label:hover input ~ .checkmark, .downloads-sort .brand-search label:hover input ~ .checkmark {
  background-color: #ccc;
}
/* line 1920, ../scss/breakpoints/_base.scss */
.downloads-sort .category-sort .more, .downloads-sort .brand-search .more {
  position: absolute;
  bottom: 0;
  right: 10px;
  cursor: pointer;
}
/* line 1925, ../scss/breakpoints/_base.scss */
.downloads-sort .category-sort .more .open, .downloads-sort .brand-search .more .open {
  display: inline-block;
}
/* line 1928, ../scss/breakpoints/_base.scss */
.downloads-sort .category-sort .more .close, .downloads-sort .brand-search .more .close {
  display: none;
}
/* line 1932, ../scss/breakpoints/_base.scss */
.downloads-sort .category-sort.expanded, .downloads-sort .brand-search.expanded {
  max-height: 100%;
}
/* line 1935, ../scss/breakpoints/_base.scss */
.downloads-sort .category-sort.expanded label.hidden, .downloads-sort .brand-search.expanded label.hidden {
  display: block;
}
/* line 1940, ../scss/breakpoints/_base.scss */
.downloads-sort .category-sort.expanded .more .open, .downloads-sort .brand-search.expanded .more .open {
  display: none;
}
/* line 1943, ../scss/breakpoints/_base.scss */
.downloads-sort .category-sort.expanded .more .close, .downloads-sort .brand-search.expanded .more .close {
  display: inline-block;
}

/* line 1950, ../scss/breakpoints/_base.scss */
.downloads-list {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
/* line 1969, ../scss/breakpoints/_base.scss */
.downloads-list .download {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  -webkit-box-shadow: 10px 10px 5px -5px #cccccc;
  -moz-box-shadow: 10px 10px 5px -5px #cccccc;
  box-shadow: 10px 10px 5px -5px #cccccc;
  margin-bottom: 15px;
}
/* line 1984, ../scss/breakpoints/_base.scss */
.downloads-list .download .thumbnail-container {
  width: 100%;
  height: 175px;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/* line 1991, ../scss/breakpoints/_base.scss */
.downloads-list .download .thumbnail-container .title {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 5px;
  background-color: rgba(19, 74, 39, 0.7);
  color: #fff;
}
/* line 2003, ../scss/breakpoints/_base.scss */
.downloads-list .download .details {
  padding: 0px 7px;
  font-size: 14px;
}
/* line 2007, ../scss/breakpoints/_base.scss */
.downloads-list .download .details p {
  margin: 0;
  overflow: hidden;
}
/* line 2012, ../scss/breakpoints/_base.scss */
.downloads-list .download .details select {
  margin-bottom: 0;
}
/* line 2015, ../scss/breakpoints/_base.scss */
.downloads-list .download .details div {
  font-size: 1em;
  text-align: right;
}
/* line 2018, ../scss/breakpoints/_base.scss */
.downloads-list .download .details div a {
  color: #867752;
}
/* line 2021, ../scss/breakpoints/_base.scss */
.downloads-list .download .details div i {
  color: #867752;
  margin-left: 15px;
  font-size: .8em;
}

/* line 2030, ../scss/breakpoints/_base.scss */
.brewery-listing {
  -webkit-justify-content: space-around;
  -ms-flex-pack: justify;
  justify-content: space-around;
  margin-bottom: 25px;
}
/* line 2035, ../scss/breakpoints/_base.scss */
.brewery-listing .flex-item {
  padding: 10px;
  flex: 0 1 90%;
}
/* line 2038, ../scss/breakpoints/_base.scss */
.brewery-listing .flex-item .brewery {
  border: 1px solid;
  height: 400px;
  width: 100%;
  text-align: center;
  margin: auto;
  background-color: #323944;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
/* line 2050, ../scss/breakpoints/_base.scss */
.brewery-listing .flex-item .brewery .details {
  position: absolute;
  bottom: 0;
  background-color: rgba(19, 74, 39, 0.8);
  color: #fff;
  transition-delay: .7s;
  transition-duration: 2s;
  height: 5.8em;
  overflow: hidden;
  width: 100%;
  padding-top: 6px;
}
/* line 2063, ../scss/breakpoints/_base.scss */
.brewery-listing .flex-item .brewery .details h2 {
  min-height: 3.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-bottom: 0;
  font-size: 1.6em;
}
/* line 2071, ../scss/breakpoints/_base.scss */
.brewery-listing .flex-item .brewery .details h2 a {
  color: #fff;
  text-decoration: none;
}
/* line 2077, ../scss/breakpoints/_base.scss */
.brewery-listing .flex-item .brewery .description {
  padding: 0 25px;
}
/* line 2080, ../scss/breakpoints/_base.scss */
.brewery-listing .flex-item .brewery .description p {
  font-size: .95em;
}
/* line 2088, ../scss/breakpoints/_base.scss */
.brewery-listing .flex-item .brewery:hover .details {
  height: 100%;
}

/* line 2096, ../scss/breakpoints/_base.scss */
.single-brewery #main {
  padding-top: 0;
  padding-right: 40px;
}
/* line 2100, ../scss/breakpoints/_base.scss */
.single-brewery .stats-container {
  border: 2px solid #134A27;
  padding: 25px 20px;
  margin-bottom: 25px;
}
/* line 2104, ../scss/breakpoints/_base.scss */
.single-brewery .stats-container .stats .brand-icon {
  text-align: center;
}
/* line 2106, ../scss/breakpoints/_base.scss */
.single-brewery .stats-container .stats .brand-icon img {
  max-width: 100%;
  height: auto;
}
/* line 2112, ../scss/breakpoints/_base.scss */
.single-brewery .stats-container .stats > div {
  margin-bottom: 25px;
}
/* line 2114, ../scss/breakpoints/_base.scss */
.single-brewery .stats-container .stats > div label {
  margin-right: 20px;
  font-weight: 700;
  font-size: 1em;
}
/* line 2119, ../scss/breakpoints/_base.scss */
.single-brewery .stats-container .stats > div:last-child {
  margin-bottom: 0;
}
/* line 2124, ../scss/breakpoints/_base.scss */
.single-brewery .stats-container .stats .brewery-links i {
  font-size: 1.45em;
  line-height: .35em;
  color: #867752;
  margin: 7px;
}
/* line 2134, ../scss/breakpoints/_base.scss */
.single-brewery .the-brews {
  margin-top: 25px;
}
/* line 2136, ../scss/breakpoints/_base.scss */
.single-brewery .the-brews .flex-item {
  flex: 0 1 100%;
}
/* line 2138, ../scss/breakpoints/_base.scss */
.single-brewery .the-brews .flex-item .brew {
  position: relative;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
}
/* line 2145, ../scss/breakpoints/_base.scss */
.single-brewery .the-brews .flex-item .brew img {
  width: 50%;
  height: auto;
}
/* line 2150, ../scss/breakpoints/_base.scss */
.single-brewery .the-brews .flex-item .details {
  bottom: 0;
  width: 100%;
}
/* line 2155, ../scss/breakpoints/_base.scss */
.single-brewery .the-brews .flex-item .details h2 {
  text-align: center;
  color: #5c6b80;
  width: 100%;
  line-height: .45em;
  padding-bottom: 5px;
  font-weight: 500;
  letter-spacing: unset;
  min-height: 63px;
  font-size: 1.65em;
  margin: 0;
}
/* line 2166, ../scss/breakpoints/_base.scss */
.single-brewery .the-brews .flex-item .details h2 a {
  color: #5c6b80;
  font-size: .5em;
  display: block;
  line-height: 1.3em;
}

/* line 2178, ../scss/breakpoints/_base.scss */
.post-type-archive-team .team-listing {
  margin-bottom: 25px;
}
/* line 2180, ../scss/breakpoints/_base.scss */
.post-type-archive-team .team-listing .section-heading {
  margin-top: 25px;
  margin-bottom: 25px;
}
/* line 2185, ../scss/breakpoints/_base.scss */
.post-type-archive-team .flex-item {
  flex: 0 1 100%;
  margin-bottom: 20px;
}
/* line 2192, ../scss/breakpoints/_base.scss */
.post-type-archive-team .flex-item.sales h2 {
  font-size: 1.4em;
}
/* line 2196, ../scss/breakpoints/_base.scss */
.post-type-archive-team .flex-item h2 {
  margin-bottom: .2em;
}
/* line 2199, ../scss/breakpoints/_base.scss */
.post-type-archive-team .flex-item h2 span.title {
  position: relative;
  padding: 0;
}
/* line 2205, ../scss/breakpoints/_base.scss */
.post-type-archive-team .flex-item .team-member {
  padding: 7px;
  height: 300px;
  width: 100%;
  text-align: center;
  background-color: #323944;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  transition: all 1s ease-in-out;
}
/* line 2216, ../scss/breakpoints/_base.scss */
.post-type-archive-team .flex-item .team-member:hover {
  transform: scale(1.1);
  cursor: pointer;
}
/* line 2220, ../scss/breakpoints/_base.scss */
.post-type-archive-team .flex-item .team-member .details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(17, 66, 35, 0.9);
  min-height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 7px;
}
/* line 2231, ../scss/breakpoints/_base.scss */
.post-type-archive-team .flex-item .team-member .details h2 {
  color: #fff;
  line-height: 1.1em;
  padding-top: 5px;
  font-size: 1.1em;
  letter-spacing: 2px;
}
/* line 2237, ../scss/breakpoints/_base.scss */
.post-type-archive-team .flex-item .team-member .details h2 a {
  color: #fff;
}
/* line 2239, ../scss/breakpoints/_base.scss */
.post-type-archive-team .flex-item .team-member .details h2 a span {
  display: block;
}
/* line 2241, ../scss/breakpoints/_base.scss */
.post-type-archive-team .flex-item .team-member .details h2 a span.title {
  font-size: .65em;
}
/* line 2247, ../scss/breakpoints/_base.scss */
.post-type-archive-team .flex-item .team-member .details .description {
  display: none;
}

/* line 2257, ../scss/breakpoints/_base.scss */
.fancybox-slide .description h2 span {
  background-color: #fff;
}
/* line 2263, ../scss/breakpoints/_base.scss */
.fancybox-slide .description .social-share-container a:hover, .fancybox-slide .description .social-share-container a:focus, .fancybox-slide .description .social-share-container a:visited {
  color: #134A27;
}

/* line 2270, ../scss/breakpoints/_base.scss */
.recipe-type-filter {
  text-align: center;
  margin-bottom: 25px;
}

/* line 2275, ../scss/breakpoints/_base.scss */
.recipe-listing .flex-item, .blog-listing .flex-item {
  height: 340px;
  flex: 0 1 100%;
  margin-bottom: 25px;
}
/* line 2279, ../scss/breakpoints/_base.scss */
.recipe-listing .flex-item .recipe, .recipe-listing .flex-item .post, .blog-listing .flex-item .recipe, .blog-listing .flex-item .post {
  height: 325px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/* line 2285, ../scss/breakpoints/_base.scss */
.recipe-listing .flex-item .recipe .details, .recipe-listing .flex-item .post .details, .blog-listing .flex-item .recipe .details, .blog-listing .flex-item .post .details {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
}
/* line 2290, ../scss/breakpoints/_base.scss */
.recipe-listing .flex-item .recipe .details:hover, .recipe-listing .flex-item .post .details:hover, .blog-listing .flex-item .recipe .details:hover, .blog-listing .flex-item .post .details:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
/* line 2294, ../scss/breakpoints/_base.scss */
.recipe-listing .flex-item .recipe .details h2, .recipe-listing .flex-item .post .details h2, .blog-listing .flex-item .recipe .details h2, .blog-listing .flex-item .post .details h2 {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  color: #fff;
  padding: 0 20px;
}
/* line 2302, ../scss/breakpoints/_base.scss */
.recipe-listing .flex-item .recipe .details h2 a, .recipe-listing .flex-item .post .details h2 a, .blog-listing .flex-item .recipe .details h2 a, .blog-listing .flex-item .post .details h2 a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
/* line 2310, ../scss/breakpoints/_base.scss */
.recipe-listing .flex-item .description, .blog-listing .flex-item .description {
  display: none;
}

/* line 2316, ../scss/breakpoints/_base.scss */
.blog-listing {
  margin-top: 1.2em;
}
/* line 2320, ../scss/breakpoints/_base.scss */
.blog-listing .flex-item .description h2 {
  font-size: 1.35em;
}
/* line 2325, ../scss/breakpoints/_base.scss */
.blog-listing .flex-item .post h2 {
  font-size: 1.35em;
}
/* line 2328, ../scss/breakpoints/_base.scss */
.blog-listing .flex-item .post .details {
  background-color: rgba(0, 0, 0, 0.5);
}
/* line 2330, ../scss/breakpoints/_base.scss */
.blog-listing .flex-item .post .details:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
/* line 2334, ../scss/breakpoints/_base.scss */
.blog-listing .flex-item .post .details .container {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  color: #fff;
  padding: 10px 20px;
}
/* line 2342, ../scss/breakpoints/_base.scss */
.blog-listing .flex-item .post .details .container h2 {
  position: relative;
  top: 0;
  transform: unset;
  margin-bottom: 0;
  padding: 0;
}
/* line 2349, ../scss/breakpoints/_base.scss */
.blog-listing .flex-item .post .details .container div {
  padding-bottom: 10px;
  font-size: .9em;
}
/* line 2352, ../scss/breakpoints/_base.scss */
.blog-listing .flex-item .post .details .container div a {
  color: white;
  font-weight: 700;
  text-decoration: none;
}

/* line 2365, ../scss/breakpoints/_base.scss */
.single-recipe .recipe-feature-image img {
  width: 100%;
  height: auto;
}
/* line 2370, ../scss/breakpoints/_base.scss */
.single-recipe .recipe-ingredient-list {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
/* line 2389, ../scss/breakpoints/_base.scss */
.single-recipe .recipe-ingredient-list .section-heading {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}
/* line 2400, ../scss/breakpoints/_base.scss */
.single-recipe .recipe-ingredient-list .list {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}
/* line 2411, ../scss/breakpoints/_base.scss */
.single-recipe .recipe-ingredient-list .credits {
  margin-top: 25px;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}
/* line 2424, ../scss/breakpoints/_base.scss */
.single-recipe .related-recipes, .single-recipe .you-may-like {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
/* line 2443, ../scss/breakpoints/_base.scss */
.single-recipe .related-recipes .heading, .single-recipe .you-may-like .heading {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}
/* line 2454, ../scss/breakpoints/_base.scss */
.single-recipe .related-recipes .recipe, .single-recipe .related-recipes .like, .single-recipe .you-may-like .recipe, .single-recipe .you-may-like .like {
  margin-bottom: 25px;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 100%;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  background-size: cover;
  background-repeat: no-repeat;
  height: 250px;
  position: relative;
}
/* line 2469, ../scss/breakpoints/_base.scss */
.single-recipe .related-recipes .recipe .title, .single-recipe .related-recipes .like .title, .single-recipe .you-may-like .recipe .title, .single-recipe .you-may-like .like .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(19, 74, 39, 0.7);
  color: #fff;
  padding: 5px 15px;
  text-align: center;
}
/* line 2478, ../scss/breakpoints/_base.scss */
.single-recipe .related-recipes .recipe .title a, .single-recipe .related-recipes .like .title a, .single-recipe .you-may-like .recipe .title a, .single-recipe .you-may-like .like .title a {
  color: #fff;
  text-decoration: none;
}

/* line 2486, ../scss/breakpoints/_base.scss */
.acf-map {
  width: 100%;
  height: 200px;
  border: #ccc solid 1px;
  margin: 20px 0;
}

/* fixes potential theme css conflict */
/* line 2494, ../scss/breakpoints/_base.scss */
.acf-map img {
  max-width: inherit !important;
}

/* line 2497, ../scss/breakpoints/_base.scss */
.breadcrumbs {
  padding: 0;
}

/* line 2500, ../scss/breakpoints/_base.scss */
.download-heading {
  font-size: 1.3em;
}

/* line 2504, ../scss/breakpoints/_base.scss */
.widget_categories.widget {
  margin: 0 0;
}
/* line 2507, ../scss/breakpoints/_base.scss */
.widget_categories h4 {
  background-color: #867752;
  color: white;
  padding: 5px 10px;
  border: none;
}
/* line 2513, ../scss/breakpoints/_base.scss */
.widget_categories ul {
  margin: 0;
}
/* line 2516, ../scss/breakpoints/_base.scss */
.widget_categories ul li {
  border-bottom: 1px solid #134A27;
  padding: 5px 10px;
}
/* line 2519, ../scss/breakpoints/_base.scss */
.widget_categories ul li a {
  text-decoration: none;
  color: #134A27;
  font-weight: 500;
  display: block;
}

/* line 2530, ../scss/breakpoints/_base.scss */
.single-post section .feature-image {
  display: inline-block;
  float: left;
  padding: 0 20px 0 0;
  max-width: 50%;
}
/* line 2535, ../scss/breakpoints/_base.scss */
.single-post section .feature-image:after {
  clear: both;
  display: block;
  content: "";
}
/* line 2541, ../scss/breakpoints/_base.scss */
.single-post section.entry-content {
  padding-top: 0;
}

/* line 2548, ../scss/breakpoints/_base.scss */
.archive .page-title {
  margin-top: 25px;
}

/* line 2552, ../scss/breakpoints/_base.scss */
#mailchimp-form {
  background-color: #134A27;
  color: #fff;
}

/*********************
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: 481px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 481px and Up Stylesheet
  
  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.
  
  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.
  
  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  /* line 24, ../scss/breakpoints/_481up.scss */
  .wrap {
    width: 96%;
  }

  /* line 27, ../scss/breakpoints/_481up.scss */
  #logo {
    text-align: center;
  }

  /* line 31, ../scss/breakpoints/_481up.scss */
  .header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  /* line 51, ../scss/breakpoints/_481up.scss */
  .header .header-container .header-content .phone {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  /* line 72, ../scss/breakpoints/_481up.scss */
  .header .header-container .header-content .social {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  /* line 92, ../scss/breakpoints/_481up.scss */
  .header .header-container .header-content .download {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    background-color: #fff;
  }

  /*********************
  NAVIGATION STYLES
  *********************/
  /* .menu is clearfixed inside mixins.scss */
  /* line 110, ../scss/breakpoints/_481up.scss */
  .menu {
    /* end .menu ul */
  }
  /* line 111, ../scss/breakpoints/_481up.scss */
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  /* line 112, ../scss/breakpoints/_481up.scss */
  .menu ul li {
    /*
    	plan your menus and drop-downs wisely.
    	*/
  }
  /* line 113, ../scss/breakpoints/_481up.scss */
  .menu ul li a {
    /*
    	you can use hover styles here even though this size
    	has the possibility of being a mobile device.
    	*/
  }

  /* end .menu */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  /* line 171, ../scss/breakpoints/_481up.scss */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  /* line 175, ../scss/breakpoints/_481up.scss */
  .entry-content .alignleft,
  .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  /* line 182, ../scss/breakpoints/_481up.scss */
  .entry-content .alignright,
  .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  /* line 189, ../scss/breakpoints/_481up.scss */
  .entry-content .aligncenter,
  .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }

  /* end .entry-content */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */
  /* line 241, ../scss/breakpoints/_481up.scss */
  .post-type-archive-team .flex-item {
    margin-bottom: 35px;
  }
}
/*********************
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) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Tablet & Small Desktop Stylesheet
  
  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!
  
  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  /* line 26, ../scss/breakpoints/_768up.scss */
  .wrap {
    width: 760px;
  }

  /*********************
  HEADER STYLES
  *********************/
  /*********************
  NAVIGATION STYLES
  *********************/
  /* line 42, ../scss/breakpoints/_768up.scss */
  .nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  /* line 44, ../scss/breakpoints/_768up.scss */
  .nav ul {
    background: #323944;
    margin-top: 0;
  }
  /* line 48, ../scss/breakpoints/_768up.scss */
  .nav li {
    float: left;
    position: relative;
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */
  }
  /* line 52, ../scss/breakpoints/_768up.scss */
  .nav li a {
    border-bottom: 0;
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  /* line 59, ../scss/breakpoints/_768up.scss */
  .nav li a:hover, .nav li a:focus {
    color: #fff;
    text-decoration: underline;
  }
  /* line 71, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu,
  .nav li ul.children {
    margin-top: 0;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    display: block;
    /* highlight sub-menu current page */
  }
  /* line 80, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded,
  .nav li ul.children.expanded {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 35px;
    padding: 35px 20px;
    min-width: 700px;
  }
  /* line 88, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded li:nth-child(2),
  .nav li ul.children.expanded li:nth-child(2) {
    -ms-grid-column: 3;
  }
  /* line 91, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded li:nth-child(3),
  .nav li ul.children.expanded li:nth-child(3) {
    -ms-grid-column: 5;
  }
  /* line 94, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded li:after,
  .nav li ul.children.expanded li:after {
    border: none;
  }
  /* line 97, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded li a,
  .nav li ul.children.expanded li a {
    border: none;
  }
  /* line 100, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded li.featured-menu-item,
  .nav li ul.children.expanded li.featured-menu-item {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-right: 25px;
    border-right: 1px solid #A8843A;
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-sow-span: 2;
    grid-row: span 2;
    display: none;
  }
  /* line 123, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded li.featured-menu-item h5, .nav li ul.sub-menu.expanded li.featured-menu-item p,
  .nav li ul.children.expanded li.featured-menu-item h5,
  .nav li ul.children.expanded li.featured-menu-item p {
    margin: 0;
  }
  /* line 126, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded li.featured-menu-item h5,
  .nav li ul.children.expanded li.featured-menu-item h5 {
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2em;
  }
  /* line 131, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded li.featured-menu-item p,
  .nav li ul.children.expanded li.featured-menu-item p {
    max-height: 99px;
    font-size: .8em;
    overflow: hidden;
    color: #fff;
  }
  /* line 137, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded li.featured-menu-item .menu-img-container,
  .nav li ul.children.expanded li.featured-menu-item .menu-img-container {
    width: 100%;
    overflow: hidden;
  }
  /* line 140, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded li.featured-menu-item .menu-img-container img,
  .nav li ul.children.expanded li.featured-menu-item .menu-img-container img {
    max-width: 100%;
    height: auto;
  }
  /* line 149, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded li.sub-row span.title,
  .nav li ul.children.expanded li.sub-row span.title {
    margin: 0;
    padding: 0;
    margin-bottom: 12px;
    display: inline-block;
    color: #ffffff;
    font-weight: 700;
    border-bottom: 1px solid;
    width: 50%;
  }
  /* line 160, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded li .sub-menu-row,
  .nav li ul.children.expanded li .sub-menu-row {
    font-size: .85em;
  }
  /* line 165, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded li .sub-menu-row li a,
  .nav li ul.children.expanded li .sub-menu-row li a {
    padding: .35em .75em 0;
    left: 0;
    position: relative;
  }
  /* line 172, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded li .sub-menu-row li:first-child a,
  .nav li ul.children.expanded li .sub-menu-row li:first-child a {
    padding-top: 0;
  }
  /* line 184, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded .view-all,
  .nav li ul.children.expanded .view-all {
    -ms-grid-column: 5;
    -ms-grid-row: 2;
    grid-column: 2 / span 2;
    text-align: center;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  /* line 207, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded .view-all.brews-and-styles,
  .nav li ul.children.expanded .view-all.brews-and-styles {
    grid-column: 2 / span 2;
  }
  /* line 210, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded .view-all .btn,
  .nav li ul.children.expanded .view-all .btn {
    font-size: .75em;
    display: block;
    text-align: center;
    margin-top: 10px;
    border-bottom: none !important;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 60%;
    -ms-flex: 0 1 60%;
    flex: 0 1 60%;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
  }
  /* line 225, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu.expanded .view-all .btn,
  .nav li ul.children.expanded .view-all .btn {
    -webkit-flex: 0 1 30%;
    -ms-flex: 0 1 30%;
    flex: 0 1 30%;
  }
  /* line 233, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu li,
  .nav li ul.children li {
    margin-bottom: 4px;
    /*
    if you need to go deeper, go nuts
    just remember deeper menus suck
    for usability. k, bai.
    */
  }
  /* line 235, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu li a,
  .nav li ul.children li a {
    padding-left: 10px;
    border-right: 0;
    display: block;
    width: 227px;
    border-bottom: 1px solid #ccc;
  }
  /* line 252, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu li:last-child a,
  .nav li ul.children li:last-child a {
    border-bottom: 0;
  }
  /* line 262, ../scss/breakpoints/_768up.scss */
  .nav li ul.sub-menu li ul,
  .nav li ul.children li ul {
    top: 0;
    left: 100%;
  }
  /* line 277, ../scss/breakpoints/_768up.scss */
  .nav li:hover > ul {
    top: auto;
    visibility: visible;
  }

  /* end .nav */
  /*********************
  SIDEBARS & ASIDES
  *********************/
  /* line 297, ../scss/breakpoints/_768up.scss */
  .sidebar {
    margin-top: 1.2em;
  }

  /* line 301, ../scss/breakpoints/_768up.scss */
  .widgettitle {
    border-bottom: 2px solid #444;
    margin-bottom: 0.75em;
  }

  /* line 306, ../scss/breakpoints/_768up.scss */
  .widget {
    padding: 0 10px;
    margin: 2.2em 0;
  }
  /* line 311, ../scss/breakpoints/_768up.scss */
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */
  }
  /* line 319, ../scss/breakpoints/_768up.scss */
  .widget ul li ul {
    margin-top: 0.75em;
    padding-left: 1em;
  }

  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  you'll probably need to do quite a bit
  of overriding here if you styled them for
  mobile. Make sure to double check these!
  */
  /* line 425, ../scss/breakpoints/_768up.scss */
  .footer {
    text-align: left;
  }
  /* line 427, ../scss/breakpoints/_768up.scss */
  .footer #inner-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr auto;
  }
  /* line 431, ../scss/breakpoints/_768up.scss */
  .footer #inner-footer:before {
    content: none;
  }
  /* line 434, ../scss/breakpoints/_768up.scss */
  .footer #inner-footer .company {
    text-align: left;
    margin-top: 2.2em;
  }
  /* line 438, ../scss/breakpoints/_768up.scss */
  .footer #inner-footer :nth-child(1) {
    -ms-grid-column: 1;
  }
  /* line 441, ../scss/breakpoints/_768up.scss */
  .footer #inner-footer :nth-child(2) {
    -ms-grid-column: 2;
  }
  /* line 444, ../scss/breakpoints/_768up.scss */
  .footer #inner-footer :nth-child(3) {
    -ms-grid-column: 3;
  }
  /* line 447, ../scss/breakpoints/_768up.scss */
  .footer #inner-footer :nth-child(4) {
    -ms-grid-column: 4;
  }
  /* line 450, ../scss/breakpoints/_768up.scss */
  .footer #inner-footer .copyright {
    grid-column: 1 / -1;
  }
  /* line 453, ../scss/breakpoints/_768up.scss */
  .footer #inner-footer > div {
    padding: 5px;
  }

  /* line 460, ../scss/breakpoints/_768up.scss */
  .footer-links ul li {
    /*
    be careful with the depth of your menus.
    it's very rare to have multi-depth menus in
    the footer.
    */
  }

  /* end .footer-links */
  /* line 475, ../scss/breakpoints/_768up.scss */
  .recipes {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "main side1" "main side1";
    grid-gap: 10px 20px;
    height: 400px;
    min-height: 400px;
  }
  /* line 483, ../scss/breakpoints/_768up.scss */
  .recipes .recipe {
    background-size: cover;
    background-position: center center;
    padding: 0;
    margin-bottom: 0px;
    position: relative;
  }
  /* line 488, ../scss/breakpoints/_768up.scss */
  .recipes .recipe .recipe-teaser {
    padding: 0;
  }
  /* line 490, ../scss/breakpoints/_768up.scss */
  .recipes .recipe .recipe-teaser h2 {
    font-size: 1.75em;
  }
  /* line 494, ../scss/breakpoints/_768up.scss */
  .recipes .recipe:first-child {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: span 2;
  }
  /* line 501, ../scss/breakpoints/_768up.scss */
  .recipes .recipe:nth-child(2) {
    -ms-grid-column: 3;
    -ms-grid-row: 1;
  }
  /* line 505, ../scss/breakpoints/_768up.scss */
  .recipes .recipe:last-child {
    -ms-grid-column: 3;
    -ms-grid-row: 3;
  }
  /* line 511, ../scss/breakpoints/_768up.scss */
  .recipes .recipe:not(:first-child) .recipe-teaser > h3, .recipes .recipe:not(:first-child) .recipe-teaser p, .recipes .recipe:not(:first-child) .recipe-teaser .btn {
    display: none;
  }
  /* line 514, ../scss/breakpoints/_768up.scss */
  .recipes .recipe:not(:first-child) .recipe-teaser h2 {
    border: none;
    font-size: .8em;
  }
  /* line 521, ../scss/breakpoints/_768up.scss */
  .recipes .recipe .recipe-teaser {
    z-index: 1;
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
  }
  /* line 545, ../scss/breakpoints/_768up.scss */
  .recipes .recipe .recipe-teaser:hover {
    background-color: rgba(0, 0, 0, 0.3);
  }
  /* line 549, ../scss/breakpoints/_768up.scss */
  .recipes .recipe .recipe-teaser h2, .recipes .recipe .recipe-teaser p {
    width: 60%;
  }

  /* line 558, ../scss/breakpoints/_768up.scss */
  .header nav .ham {
    display: none;
    color: #fff;
    padding: 15px;
  }
  /* line 565, ../scss/breakpoints/_768up.scss */
  .header .nav-container #menu-main-menu {
    height: auto;
    overflow: inherit;
  }
  /* line 570, ../scss/breakpoints/_768up.scss */
  .header .header-container {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 10px;
  }
  /* line 575, ../scss/breakpoints/_768up.scss */
  .header .header-container #logo {
    grid-column: 1;
  }
  /* line 578, ../scss/breakpoints/_768up.scss */
  .header .header-container .header-content {
    display: -ms-grid;
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
  }
  /* line 584, ../scss/breakpoints/_768up.scss */
  .header .header-container .header-content .phone {
    grid-column: 1 / span 2;
    -ms-grid-column-span: 2;
  }
  /* line 589, ../scss/breakpoints/_768up.scss */
  .header .header-container .header-content .social {
    grid-column: 3 /span 2;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
  }
  /* line 607, ../scss/breakpoints/_768up.scss */
  .header .header-container .header-content .search {
    grid-column: span 2;
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    display: flex;
  }
  /* line 624, ../scss/breakpoints/_768up.scss */
  .header .header-container .header-content .download {
    -ms-grid-row: 2;
    -ms-grid-column-span: 2;
    grid-column: span 2;
    background-color: #fff;
  }

  /* line 645, ../scss/breakpoints/_768up.scss */
  .beer-style-listing .beer-style {
    -ms-grid-columns: 300px 800px;
    grid-template-columns: 300px auto;
    grid-template-rows: 340px;
    grid-template-areas: "style-details beers";
    -webkit-box-shadow: 10px 10px 5px -5px #cccccc;
    -moz-box-shadow: 10px 10px 5px -5px #cccccc;
    box-shadow: 10px 10px 5px -5px #cccccc;
  }
  /* line 653, ../scss/breakpoints/_768up.scss */
  .beer-style-listing .beer-style .img-container {
    grid-column: style-details;
  }
  /* line 656, ../scss/breakpoints/_768up.scss */
  .beer-style-listing .beer-style .beer-listing {
    display: block;
    -ms-grid-column: 2;
    grid-column: beers;
    padding: 5px;
  }
  /* line 662, ../scss/breakpoints/_768up.scss */
  .beer-style-listing .beer-style .beer-listing:after {
    display: block;
    content: "";
    clear: both;
    height: 1px;
  }
  /* line 668, ../scss/breakpoints/_768up.scss */
  .beer-style-listing .beer-style .beer-listing .all-beers {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20%;
    height: 50%;
    float: left;
  }
  /* line 690, ../scss/breakpoints/_768up.scss */
  .beer-style-listing .beer-style .beer-listing .all-beers .btn {
    font-size: .7em;
  }
  /* line 694, ../scss/breakpoints/_768up.scss */
  .beer-style-listing .beer-style .beer-listing .beer-icon {
    width: 25%;
    height: 50%;
    float: left;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    margin-top: 3px;
  }
  /* line 702, ../scss/breakpoints/_768up.scss */
  .beer-style-listing .beer-style .beer-listing .beer-icon:nth-child(8), .beer-style-listing .beer-style .beer-listing .beer-icon:nth-child(9) {
    display: none;
  }
  /* line 706, ../scss/breakpoints/_768up.scss */
  .beer-style-listing .beer-style .beer-listing .beer-icon a {
    text-decoration: none;
    display: block;
    position: relative;
    color: #5c6b80;
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  /* line 732, ../scss/breakpoints/_768up.scss */
  .beer-style-listing .beer-style .beer-listing .beer-icon a div {
    margin-bottom: 0;
    border-radius: 10px;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    min-height: 105px;
  }
  /* line 747, ../scss/breakpoints/_768up.scss */
  .beer-style-listing .beer-style .beer-listing .beer-icon a div img {
    width: 100px;
    height: auto;
    margin: 0;
  }
  /* line 760, ../scss/breakpoints/_768up.scss */
  .beer-style-listing .beer-style .beer-listing .beer-icon a .title {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 2 1 auto;
    -ms-flex: 2 1 auto;
    flex: 2 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
  }

  /* line 781, ../scss/breakpoints/_768up.scss */
  .brewery-listing {
    -webkit-justify-content: space-evenly;
    -ms-flex-pack: justify;
    justify-content: space-evenly;
  }
  /* line 785, ../scss/breakpoints/_768up.scss */
  .brewery-listing .flex-item {
    flex: 0 1 49%;
  }
  /* line 787, ../scss/breakpoints/_768up.scss */
  .brewery-listing .flex-item .brewery {
    max-width: 400px;
  }

  /* line 826, ../scss/breakpoints/_768up.scss */
  .single-brewery .stats-container {
    float: right;
    border: 2px solid #134A27;
    padding: 25px 20px;
    margin-bottom: 25px;
  }
  /* line 831, ../scss/breakpoints/_768up.scss */
  .single-brewery .stats-container .stats {
    font-size: 1em;
  }
  /* line 834, ../scss/breakpoints/_768up.scss */
  .single-brewery .stats-container .stats > div {
    margin-bottom: 25px;
  }
  /* line 836, ../scss/breakpoints/_768up.scss */
  .single-brewery .stats-container .stats > div label {
    margin-right: 20px;
    font-weight: 700;
    font-size: 1em;
  }
  /* line 841, ../scss/breakpoints/_768up.scss */
  .single-brewery .stats-container .stats > div:last-child {
    margin-bottom: 0;
  }
  /* line 851, ../scss/breakpoints/_768up.scss */
  .single-brewery .the-brews .flex-item .brew img {
    width: 100%;
  }

  /* line 861, ../scss/breakpoints/_768up.scss */
  .downloads-list .download {
    flex: 0 1 48%;
  }

  /* line 867, ../scss/breakpoints/_768up.scss */
  .post-type-archive-team .flex-item {
    flex: 0 1 23%;
  }

  /* line 883, ../scss/breakpoints/_768up.scss */
  .fancybox-slide .description {
    max-width: 70%;
  }
  /* line 885, ../scss/breakpoints/_768up.scss */
  .fancybox-slide .description .alternate-image {
    padding-right: 25px;
  }
  /* line 887, ../scss/breakpoints/_768up.scss */
  .fancybox-slide .description .alternate-image img {
    width: 100%;
    height: auto;
  }

  /* line 894, ../scss/breakpoints/_768up.scss */
  .fancybox-slide--pdf .fancybox-content {
    width: 800px;
    height: 600px;
    max-width: 80%;
    max-height: 80%;
    margin: 0;
  }

  /* line 903, ../scss/breakpoints/_768up.scss */
  .recipe-listing .flex-item {
    height: 325px;
    overflow: hidden;
  }
  /* line 919, ../scss/breakpoints/_768up.scss */
  .recipe-listing .flex-item .description {
    display: none;
  }
  /* line 922, ../scss/breakpoints/_768up.scss */
  .recipe-listing .flex-item:nth-child(1) {
    height: 375px;
    flex: 0 1 100%;
    -webkit-box-shadow: 10px 10px 5px -5px #cccccc;
    -moz-box-shadow: 10px 10px 5px -5px #cccccc;
    box-shadow: 10px 10px 5px -5px #cccccc;
  }
  /* line 928, ../scss/breakpoints/_768up.scss */
  .recipe-listing .flex-item:nth-child(1) .recipe, .recipe-listing .flex-item:nth-child(1) .post {
    width: 50%;
    height: 100%;
    float: left;
    -webkit-box-shadow: 10px 10px 5px -5px #cccccc;
    -moz-box-shadow: 10px 10px 5px -5px #cccccc;
    box-shadow: 10px 10px 5px -5px #cccccc;
  }
  /* line 935, ../scss/breakpoints/_768up.scss */
  .recipe-listing .flex-item:nth-child(1) .recipe .details, .recipe-listing .flex-item:nth-child(1) .post .details {
    display: none;
  }
  /* line 939, ../scss/breakpoints/_768up.scss */
  .recipe-listing .flex-item:nth-child(1) .description {
    display: block;
    width: 50%;
    height: 100%;
    float: left;
    padding: 10px 20px;
    position: relative;
  }
  /* line 947, ../scss/breakpoints/_768up.scss */
  .recipe-listing .flex-item:nth-child(1) .description h2 a {
    color: #5c6b80;
    font-weight: 700;
  }
  /* line 952, ../scss/breakpoints/_768up.scss */
  .recipe-listing .flex-item:nth-child(1) .description .btn {
    float: right;
  }

  /* line 962, ../scss/breakpoints/_768up.scss */
  .single-recipe .related-recipes .recipe, .single-recipe .related-recipes .like, .single-recipe .you-may-like .recipe, .single-recipe .you-may-like .like {
    -webkit-flex: 0 1 49%;
    -ms-flex: 0 1 49%;
    flex: 0 1 49%;
  }

  /* line 970, ../scss/breakpoints/_768up.scss */
  #post-19 .entry-content {
    padding: 1.5em 20px;
  }
}
/*********************
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) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.
  
  ******************************************************************/
  /* line 12, ../scss/breakpoints/_1030up.scss */
  .wrap {
    width: 1030px;
  }

  /* line 15, ../scss/breakpoints/_1030up.scss */
  .entry-content {
    font-size: 17px;
  }

  /* line 18, ../scss/breakpoints/_1030up.scss */
  #logo {
    display: flex;
    align-items: center;
  }

  /* line 33, ../scss/breakpoints/_1030up.scss */
  .nav li ul.sub-menu.expanded li.featured-menu-item,
  .nav li ul.children.expanded li.featured-menu-item {
    -webkit-display: flex;
    -ms-display: flex;
    display: flex;
  }

  /* line 66, ../scss/breakpoints/_1030up.scss */
  .beer-style-listing .beer-style .beer-listing .beer-icon {
    width: 20%;
  }
  /* line 69, ../scss/breakpoints/_1030up.scss */
  .beer-style-listing .beer-style .beer-listing .beer-icon:nth-child(8), .beer-style-listing .beer-style .beer-listing .beer-icon:nth-child(9) {
    display: block;
  }

  /* line 94, ../scss/breakpoints/_1030up.scss */
  .beer-style-page .taxonomy-description p:nth-child(1) {
    margin-top: 0px;
  }
  /* line 97, ../scss/breakpoints/_1030up.scss */
  .beer-style-page .taxonomy-description:after {
    content: "";
    display: block;
    clear: both;
    height: 1px;
  }
  /* line 104, ../scss/breakpoints/_1030up.scss */
  .beer-style-page .beer-style-beers {
    padding: 1.5em 0;
  }
  /* line 106, ../scss/breakpoints/_1030up.scss */
  .beer-style-page .beer-style-beers .beer-icon {
    -webkit-flex: 0 1 40%;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
    padding: 10px;
  }
  /* line 112, ../scss/breakpoints/_1030up.scss */
  .beer-style-page .beer-style-beers .beer-icon:nth-child(2), .beer-style-page .beer-style-beers .beer-icon:nth-child(3) {
    padding-top: 0px !important;
  }
  /* line 122, ../scss/breakpoints/_1030up.scss */
  .beer-style-page .beer-style-beers .beer-icon a .title {
    font-size: 1em;
  }
  /* line 130, ../scss/breakpoints/_1030up.scss */
  .beer-style-page .you-may-also-like .related-beer-wrapper {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  /* line 147, ../scss/breakpoints/_1030up.scss */
  .brewery-listing .flex-item {
    flex: 0 1 31%;
    padding: 7px;
  }

  /* line 170, ../scss/breakpoints/_1030up.scss */
  .single-beer #main {
    padding-left: 25px;
  }

  /* line 187, ../scss/breakpoints/_1030up.scss */
  .single-brewery .the-brews {
    margin-top: 25px;
    justify-content: space-around;
  }
  /* line 190, ../scss/breakpoints/_1030up.scss */
  .single-brewery .the-brews .flex-item {
    flex: 0 1 31%;
    max-width: 150px;
    margin: 5px;
  }

  /* line 201, ../scss/breakpoints/_1030up.scss */
  .downloads-list .download {
    flex: 0 1 23%;
  }

  /* line 206, ../scss/breakpoints/_1030up.scss */
  .post-type-archive-team .team-listing {
    justify-content: space-around;
  }
  /* line 209, ../scss/breakpoints/_1030up.scss */
  .post-type-archive-team .flex-item {
    flex: 0 1 21%;
  }

  /* line 220, ../scss/breakpoints/_1030up.scss */
  .recipe-listing .flex-item, .blog-listing .flex-item {
    height: 325px;
    flex: 0 1 31%;
  }

  /* line 242, ../scss/breakpoints/_1030up.scss */
  .blog-listing .flex-item {
    height: 340px;
    flex: 0 1 47%;
    overflow: hidden;
  }
  /* line 258, ../scss/breakpoints/_1030up.scss */
  .blog-listing .flex-item .description {
    display: none;
  }
  /* line 261, ../scss/breakpoints/_1030up.scss */
  .blog-listing .flex-item:nth-child(1) {
    height: 375px;
    flex: 0 1 100%;
    -webkit-box-shadow: 10px 10px 5px -5px #cccccc;
    -moz-box-shadow: 10px 10px 5px -5px #cccccc;
    box-shadow: 10px 10px 5px -5px #cccccc;
  }
  /* line 267, ../scss/breakpoints/_1030up.scss */
  .blog-listing .flex-item:nth-child(1) .recipe, .blog-listing .flex-item:nth-child(1) .post {
    width: 50%;
    height: 100%;
    float: left;
    -webkit-box-shadow: 10px 10px 5px -5px #cccccc;
    -moz-box-shadow: 10px 10px 5px -5px #cccccc;
    box-shadow: 10px 10px 5px -5px #cccccc;
  }
  /* line 274, ../scss/breakpoints/_1030up.scss */
  .blog-listing .flex-item:nth-child(1) .recipe .details, .blog-listing .flex-item:nth-child(1) .post .details {
    display: none;
  }
  /* line 278, ../scss/breakpoints/_1030up.scss */
  .blog-listing .flex-item:nth-child(1) .description {
    display: block;
    width: 50%;
    height: 100%;
    float: left;
    padding: 10px 20px;
    position: relative;
  }
  /* line 286, ../scss/breakpoints/_1030up.scss */
  .blog-listing .flex-item:nth-child(1) .description h2 a {
    color: #5c6b80;
    font-weight: 700;
  }
  /* line 291, ../scss/breakpoints/_1030up.scss */
  .blog-listing .flex-item:nth-child(1) .description .btn {
    float: right;
  }

  /* line 301, ../scss/breakpoints/_1030up.scss */
  .single-recipe .related-recipes .recipe, .single-recipe .related-recipes .like, .single-recipe .you-may-like .recipe, .single-recipe .you-may-like .like {
    -webkit-flex: 0 1 23%;
    -ms-flex: 0 1 23%;
    flex: 0 1 23%;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Super Large Monitor Stylesheet
  
  You can add some advanced styles here if you like. This kicks in
  on larger screens.
  
  ******************************************************************/
  /* line 12, ../scss/breakpoints/_1240up.scss */
  .wrap {
    width: 1200px;
  }

  /* line 15, ../scss/breakpoints/_1240up.scss */
  #content {
    margin-top: 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) {
  /******************************************************************
  Site Name: 
  Author: 
  
  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.
  
  ******************************************************************/
  /* 
  
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:
  
  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }
  
  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:
  
  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }
  
  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 
  
  */
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Print Stylesheet
  
  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.
  
  ******************************************************************/
  /* line 13, ../scss/partials/_print.scss */
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* line 21, ../scss/partials/_print.scss */
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  /* line 26, ../scss/partials/_print.scss */
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  /* line 31, ../scss/partials/_print.scss */
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 36, ../scss/partials/_print.scss */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* line 42, ../scss/partials/_print.scss */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 47, ../scss/partials/_print.scss */
  thead {
    display: table-header-group;
  }

  /* line 51, ../scss/partials/_print.scss */
  tr, img {
    page-break-inside: avoid;
  }

  /* line 55, ../scss/partials/_print.scss */
  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  /* line 63, ../scss/partials/_print.scss */
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 68, ../scss/partials/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* line 74, ../scss/partials/_print.scss */
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
/* line 156, ../scss/style.scss */
.white {
  color: #ffffff;
}
/* line 158, ../scss/style.scss */
.white.btn {
  border: 1px solid #FFFFFF;
}
