@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, basic classes, 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.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

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

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
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.
 */
[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.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
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.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

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

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

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -ms-hyphens: auto;
      hyphens: auto;
}

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0;
}

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

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: "";
  content: none;
}

small, .small {
  font-size: 75%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px;
}

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

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

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
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.
 */
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.
 */
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.
 */
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.
 */
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.
 */
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.
 */
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.
 */
input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          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).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -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.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
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.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

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

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

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

.clearfix, .cf, .comment-respond {
  zoom: 1;
}
.clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
  content: "";
  display: block;
}
.clearfix:after, .cf:after, .comment-respond:after {
  clear: both;
}

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

/******************************************************************
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? */
/*********************
ANIMATION
*********************/
/*********************
CIRCLE & TRIANGLE
*********************/
/*********************
MEDIA QUERIES
*********************/
/******************************************************************
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)
*********************/
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-family: proxima-nova, Helvetica, Arial, sans-serif;
  font-weight: 500;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
  color: #000;
}
h1.serif, .h1.serif, h2.serif, .h2.serif, h3.serif, .h3.serif, h4.serif, .h4.serif, h5.serif, .h5.serif {
  font-family: bookmania, Cambria, Times New Roman, Times, serif;
}

h1, .h1 {
  font-size: 1.75em;
  line-height: 1em;
  font-weight: 900;
}
h1.page-title, .h1.page-title {
  font-family: bookmania, Cambria, Times New Roman, Times, serif;
}
@media only screen and (min-width: 768px) {
  h1, .h1 {
    font-size: 2em;
    line-height: 1.333em;
  }
}
@media only screen and (min-width: 1030px) {
  h1, .h1 {
    font-size: 2.5em;
    line-height: 1.333em;
  }
}
@media only screen and (min-width: 1030px) {
  h1, .h1 {
    font-size: 2.5em;
    line-height: 1.333em;
  }
}
@media only screen and (max-height: 1080px) {
  h1, .h1 {
    font-size: 1.25em;
    line-height: 1em;
  }
}

h2, .h2 {
  font-size: 1.25em;
  line-height: 1em;
  margin-bottom: 0.375em;
}
@media only screen and (min-width: 768px) {
  h2, .h2 {
    font-size: 1.5em;
    line-height: 1.3em;
  }
}
@media only screen and (min-width: 1030px) {
  h2, .h2 {
    font-size: 1.75em;
    line-height: 1.4em;
  }
}
@media only screen and (min-width: 1030px) {
  h2, .h2 {
    font-size: 1.75em;
    line-height: 1.4em;
  }
}
@media only screen and (max-height: 1080px) {
  h2, .h2 {
    font-size: 1.25em;
    line-height: 1em;
  }
}

h3, .h3 {
  font-size: 1em;
}
@media only screen and (min-width: 768px) {
  h3, .h3 {
    font-size: 1.05em;
  }
}
@media only screen and (min-width: 1030px) {
  h3, .h3 {
    font-size: 1.4em;
  }
}
@media only screen and (min-width: 1030px) {
  h3, .h3 {
    font-size: 1.4em;
  }
}
@media only screen and (max-height: 1080px) {
  h3, .h3 {
    font-size: 1em;
  }
}

h4, .h4 {
  font-size: 0.85em;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
}
@media only screen and (min-width: 768px) {
  h4, .h4 {
    font-size: 1em;
  }
}
@media only screen and (min-width: 1030px) {
  h4, .h4 {
    font-size: 1.1em;
  }
}
@media only screen and (min-width: 1030px) {
  h4, .h4 {
    font-size: 1.1em;
  }
}
@media only screen and (max-height: 1080px) {
  h4, .h4 {
    font-size: 0.85em;
  }
}
@media only screen and (min-width: 768px) {
  h4.mobile-only, .h4.mobile-only {
    display: none;
  }
}

h5, .h5 {
  font-family: bookmania, Cambria, Times New Roman, Times, serif;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media only screen and (min-width: 1030px) {
  h5, .h5 {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1030px) {
  h5, .h5 {
    font-size: 1.125rem;
  }
}
@media only screen and (max-height: 1080px) {
  h5, .h5 {
    font-size: 0.85em;
  }
}

h6, .h6 {
  font-family: bookmania, Cambria, Times New Roman, Times, serif;
  font-size: 0.85em;
}
@media only screen and (min-width: 1030px) {
  h6, .h6 {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1030px) {
  h6, .h6 {
    font-size: 1.125rem;
  }
}
@media only screen and (max-height: 1080px) {
  h6, .h6 {
    font-size: 0.85em;
  }
}

/******************************************************************
PARAGRAPH STYLES
******************************************************************/
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: none;
  -ms-hyphens: none;
      hyphens: none;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #330033;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #1a001a;
}
a:active, a:visited:active {
  color: black;
}
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);
}

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

Stylesheet: Accessibility Stylesheet

******************************************************************/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

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

******************************************************************/
.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 only screen and (max-width: 768px) {
  .m-all {
    float: left;
    padding-right: 1.5rem;
    width: 100%;
    padding-right: 0;
  }
  .m-1of2, .m-2of4, .m-3of6, .m-4of8, .m-5of10, .m-6of12 {
    float: left;
    padding-right: 1.5rem;
    width: 50%;
  }
  .m-1of3, .m-2of6, .m-3of9, .m-4of12 {
    float: left;
    padding-right: 1.5rem;
    width: 33.33%;
  }
  .m-2of3, .m-4of6, .m-6of9, .m-8of12 {
    float: left;
    padding-right: 1.5rem;
    width: 66.66%;
  }
  .m-1of4, .m-2of8, .m-3of12 {
    float: left;
    padding-right: 1.5rem;
    width: 25%;
  }
  .m-3of4, .m-6of8, .m-9of12 {
    float: left;
    padding-right: 1.5rem;
    width: 75%;
  }
  .m-1of5, .m-2of10 {
    float: left;
    padding-right: 1.5rem;
    width: 20%;
  }
  .m-2of5, .m-4of10 {
    float: left;
    padding-right: 1.5rem;
    width: 40%;
  }
  .m-3of5, .m-6of10 {
    float: left;
    padding-right: 1.5rem;
    width: 60%;
  }
  .m-4of5, .m-8of10 {
    float: left;
    padding-right: 1.5rem;
    width: 80%;
  }
  .m-1of6, .m-2of12 {
    float: left;
    padding-right: 1.5rem;
    width: 16.6666666667%;
  }
  .m-1of7 {
    float: left;
    padding-right: 1.5rem;
    width: 14.2857142857%;
  }
  .m-2of7 {
    float: left;
    padding-right: 1.5rem;
    width: 28.5714286%;
  }
  .m-3of7 {
    float: left;
    padding-right: 1.5rem;
    width: 42.8571429%;
  }
  .m-4of7 {
    float: left;
    padding-right: 1.5rem;
    width: 57.1428572%;
  }
  .m-5of7 {
    float: left;
    padding-right: 1.5rem;
    width: 71.4285715%;
  }
  .m-6of7 {
    float: left;
    padding-right: 1.5rem;
    width: 85.7142857%;
  }
  .m-1of8 {
    float: left;
    padding-right: 1.5rem;
    width: 12.5%;
  }
  .m-3of8 {
    float: left;
    padding-right: 1.5rem;
    width: 37.5%;
  }
  .m-5of8 {
    float: left;
    padding-right: 1.5rem;
    width: 62.5%;
  }
  .m-7of8 {
    float: left;
    padding-right: 1.5rem;
    width: 87.5%;
  }
  .m-1of9 {
    float: left;
    padding-right: 1.5rem;
    width: 11.1111111111%;
  }
  .m-2of9 {
    float: left;
    padding-right: 1.5rem;
    width: 22.2222222222%;
  }
  .m-4of9 {
    float: left;
    padding-right: 1.5rem;
    width: 44.4444444444%;
  }
  .m-5of9 {
    float: left;
    padding-right: 1.5rem;
    width: 55.5555555555%;
  }
  .m-7of9 {
    float: left;
    padding-right: 1.5rem;
    width: 77.7777777777%;
  }
  .m-8of9 {
    float: left;
    padding-right: 1.5rem;
    width: 88.8888888888%;
  }
  .m-1of10 {
    float: left;
    padding-right: 1.5rem;
    width: 10%;
  }
  .m-3of10 {
    float: left;
    padding-right: 1.5rem;
    width: 20%;
  }
  .m-7of10 {
    float: left;
    padding-right: 1.5rem;
    width: 70%;
  }
  .m-9of10 {
    float: left;
    padding-right: 1.5rem;
    width: 90%;
  }
  .m-1of11 {
    float: left;
    padding-right: 1.5rem;
    width: 9.0909090909%;
  }
  .m-2of11 {
    float: left;
    padding-right: 1.5rem;
    width: 18.1818181818%;
  }
  .m-3of11 {
    float: left;
    padding-right: 1.5rem;
    width: 27.2727272727%;
  }
  .m-4of11 {
    float: left;
    padding-right: 1.5rem;
    width: 36.3636363636%;
  }
  .m-5of11 {
    float: left;
    padding-right: 1.5rem;
    width: 45.4545454546%;
  }
  .m-6of11 {
    float: left;
    padding-right: 1.5rem;
    width: 54.5454545455%;
  }
  .m-7of11 {
    float: left;
    padding-right: 1.5rem;
    width: 63.6363636364%;
  }
  .m-8of11 {
    float: left;
    padding-right: 1.5rem;
    width: 72.7272727273%;
  }
  .m-9of11 {
    float: left;
    padding-right: 1.5rem;
    width: 81.8181818182%;
  }
  .m-10of11 {
    float: left;
    padding-right: 1.5rem;
    width: 90.9090909091%;
  }
  .m-1of12 {
    float: left;
    padding-right: 1.5rem;
    width: 8.33%;
  }
  .m-5of12 {
    float: left;
    padding-right: 1.5rem;
    width: 41.65%;
  }
  .m-7of12 {
    float: left;
    padding-right: 1.5rem;
    width: 58.1%;
  }
  .m-10of12 {
    float: left;
    padding-right: 1.5rem;
    width: 83.3%;
  }
  .m-11of12 {
    float: left;
    padding-right: 1.5rem;
    width: 91.63%;
  }
}
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .h-all {
    float: left;
    padding-right: 1.5rem;
    width: 100%;
    padding-right: 0;
  }
  .h-1of2, .h-2of4, .h-3of6, .h-4of8, .h-5of10, .h-6of12 {
    float: left;
    padding-right: 1.5rem;
    width: 50%;
  }
  .h-1of3, .h-2of6, .h-3of9, .h-4of12 {
    float: left;
    padding-right: 1.5rem;
    width: 33.33%;
  }
  .h-2of3, .h-4of6, .h-6of9, .h-8of12 {
    float: left;
    padding-right: 1.5rem;
    width: 66.66%;
  }
  .h-1of4, .h-2of8, .h-3of12 {
    float: left;
    padding-right: 1.5rem;
    width: 25%;
  }
  .h-3of4, .h-6of8, .h-9of12 {
    float: left;
    padding-right: 1.5rem;
    width: 75%;
  }
  .h-1of5, .h-2of10 {
    float: left;
    padding-right: 1.5rem;
    width: 20%;
  }
  .h-2of5, .h-4of10 {
    float: left;
    padding-right: 1.5rem;
    width: 40%;
  }
  .h-3of5, .h-6of10 {
    float: left;
    padding-right: 1.5rem;
    width: 60%;
  }
  .h-4of5, .h-8of10 {
    float: left;
    padding-right: 1.5rem;
    width: 80%;
  }
  .h-1of6, .h-2of12 {
    float: left;
    padding-right: 1.5rem;
    width: 16.6666666667%;
  }
  .h-1of7 {
    float: left;
    padding-right: 1.5rem;
    width: 14.2857142857%;
  }
  .h-2of7 {
    float: left;
    padding-right: 1.5rem;
    width: 28.5714286%;
  }
  .h-3of7 {
    float: left;
    padding-right: 1.5rem;
    width: 42.8571429%;
  }
  .h-4of7 {
    float: left;
    padding-right: 1.5rem;
    width: 57.1428572%;
  }
  .h-5of7 {
    float: left;
    padding-right: 1.5rem;
    width: 71.4285715%;
  }
  .h-6of7 {
    float: left;
    padding-right: 1.5rem;
    width: 85.7142857%;
  }
  .h-1of8 {
    float: left;
    padding-right: 1.5rem;
    width: 12.5%;
  }
  .h-3of8 {
    float: left;
    padding-right: 1.5rem;
    width: 37.5%;
  }
  .h-5of8 {
    float: left;
    padding-right: 1.5rem;
    width: 62.5%;
  }
  .h-7of8 {
    float: left;
    padding-right: 1.5rem;
    width: 87.5%;
  }
  .h-1of9 {
    float: left;
    padding-right: 1.5rem;
    width: 11.1111111111%;
  }
  .h-2of9 {
    float: left;
    padding-right: 1.5rem;
    width: 22.2222222222%;
  }
  .h-4of9 {
    float: left;
    padding-right: 1.5rem;
    width: 44.4444444444%;
  }
  .h-5of9 {
    float: left;
    padding-right: 1.5rem;
    width: 55.5555555555%;
  }
  .h-7of9 {
    float: left;
    padding-right: 1.5rem;
    width: 77.7777777777%;
  }
  .h-8of9 {
    float: left;
    padding-right: 1.5rem;
    width: 88.8888888888%;
  }
  .h-1of10 {
    float: left;
    padding-right: 1.5rem;
    width: 10%;
  }
  .h-3of10 {
    float: left;
    padding-right: 1.5rem;
    width: 20%;
  }
  .h-7of10 {
    float: left;
    padding-right: 1.5rem;
    width: 70%;
  }
  .h-9of10 {
    float: left;
    padding-right: 1.5rem;
    width: 90%;
  }
  .h-1of11 {
    float: left;
    padding-right: 1.5rem;
    width: 9.0909090909%;
  }
  .h-2of11 {
    float: left;
    padding-right: 1.5rem;
    width: 18.1818181818%;
  }
  .h-3of11 {
    float: left;
    padding-right: 1.5rem;
    width: 27.2727272727%;
  }
  .h-4of11 {
    float: left;
    padding-right: 1.5rem;
    width: 36.3636363636%;
  }
  .h-5of11 {
    float: left;
    padding-right: 1.5rem;
    width: 45.4545454546%;
  }
  .h-6of11 {
    float: left;
    padding-right: 1.5rem;
    width: 54.5454545455%;
  }
  .h-7of11 {
    float: left;
    padding-right: 1.5rem;
    width: 63.6363636364%;
  }
  .h-8of11 {
    float: left;
    padding-right: 1.5rem;
    width: 72.7272727273%;
  }
  .h-9of11 {
    float: left;
    padding-right: 1.5rem;
    width: 81.8181818182%;
  }
  .h-10of11 {
    float: left;
    padding-right: 1.5rem;
    width: 90.9090909091%;
  }
  .h-1of12 {
    float: left;
    padding-right: 1.5rem;
    width: 8.33%;
  }
  .h-5of12 {
    float: left;
    padding-right: 1.5rem;
    width: 41.65%;
  }
  .h-7of12 {
    float: left;
    padding-right: 1.5rem;
    width: 58.1%;
  }
  .h-10of12 {
    float: left;
    padding-right: 1.5rem;
    width: 83.3%;
  }
  .h-11of12 {
    float: left;
    padding-right: 1.5rem;
    width: 91.63%;
  }
}
/* Portrait tablet to landscape */
@media only screen and (min-width: 768px) and (max-width: 1030px) {
  .t-all {
    float: left;
    padding-right: 1.5rem;
    width: 100%;
    padding-right: 0;
  }
  .t-1of2, .t-2of4, .t-3of6, .t-4of8, .t-5of10, .t-6of12 {
    float: left;
    padding-right: 1.5rem;
    width: 50%;
  }
  .t-1of3, .t-2of6, .t-3of9, .t-4of12 {
    float: left;
    padding-right: 1.5rem;
    width: 33.33%;
  }
  .t-2of3, .t-4of6, .t-6of9, .t-8of12 {
    float: left;
    padding-right: 1.5rem;
    width: 66.66%;
  }
  .t-1of4, .t-2of8, .t-3of12 {
    float: left;
    padding-right: 1.5rem;
    width: 25%;
  }
  .t-3of4, .t-6of8, .t-9of12 {
    float: left;
    padding-right: 1.5rem;
    width: 75%;
  }
  .t-1of5, .t-2of10 {
    float: left;
    padding-right: 1.5rem;
    width: 20%;
  }
  .t-2of5, .t-4of10 {
    float: left;
    padding-right: 1.5rem;
    width: 40%;
  }
  .t-3of5, .t-6of10 {
    float: left;
    padding-right: 1.5rem;
    width: 60%;
  }
  .t-4of5, .t-8of10 {
    float: left;
    padding-right: 1.5rem;
    width: 80%;
  }
  .t-1of6, .t-2of12 {
    float: left;
    padding-right: 1.5rem;
    width: 16.6666666667%;
  }
  .t-1of7 {
    float: left;
    padding-right: 1.5rem;
    width: 14.2857142857%;
  }
  .t-2of7 {
    float: left;
    padding-right: 1.5rem;
    width: 28.5714286%;
  }
  .t-3of7 {
    float: left;
    padding-right: 1.5rem;
    width: 42.8571429%;
  }
  .t-4of7 {
    float: left;
    padding-right: 1.5rem;
    width: 57.1428572%;
  }
  .t-5of7 {
    float: left;
    padding-right: 1.5rem;
    width: 71.4285715%;
  }
  .t-6of7 {
    float: left;
    padding-right: 1.5rem;
    width: 85.7142857%;
  }
  .t-1of8 {
    float: left;
    padding-right: 1.5rem;
    width: 12.5%;
  }
  .t-3of8 {
    float: left;
    padding-right: 1.5rem;
    width: 37.5%;
  }
  .t-5of8 {
    float: left;
    padding-right: 1.5rem;
    width: 62.5%;
  }
  .t-7of8 {
    float: left;
    padding-right: 1.5rem;
    width: 87.5%;
  }
  .t-1of9 {
    float: left;
    padding-right: 1.5rem;
    width: 11.1111111111%;
  }
  .t-2of9 {
    float: left;
    padding-right: 1.5rem;
    width: 22.2222222222%;
  }
  .t-4of9 {
    float: left;
    padding-right: 1.5rem;
    width: 44.4444444444%;
  }
  .t-5of9 {
    float: left;
    padding-right: 1.5rem;
    width: 55.5555555555%;
  }
  .t-7of9 {
    float: left;
    padding-right: 1.5rem;
    width: 77.7777777777%;
  }
  .t-8of9 {
    float: left;
    padding-right: 1.5rem;
    width: 88.8888888888%;
  }
  .t-1of10 {
    float: left;
    padding-right: 1.5rem;
    width: 10%;
  }
  .t-3of10 {
    float: left;
    padding-right: 1.5rem;
    width: 20%;
  }
  .t-7of10 {
    float: left;
    padding-right: 1.5rem;
    width: 70%;
  }
  .t-9of10 {
    float: left;
    padding-right: 1.5rem;
    width: 90%;
  }
  .t-1of11 {
    float: left;
    padding-right: 1.5rem;
    width: 9.0909090909%;
  }
  .t-2of11 {
    float: left;
    padding-right: 1.5rem;
    width: 18.1818181818%;
  }
  .t-3of11 {
    float: left;
    padding-right: 1.5rem;
    width: 27.2727272727%;
  }
  .t-4of11 {
    float: left;
    padding-right: 1.5rem;
    width: 36.3636363636%;
  }
  .t-5of11 {
    float: left;
    padding-right: 1.5rem;
    width: 45.4545454546%;
  }
  .t-6of11 {
    float: left;
    padding-right: 1.5rem;
    width: 54.5454545455%;
  }
  .t-7of11 {
    float: left;
    padding-right: 1.5rem;
    width: 63.6363636364%;
  }
  .t-8of11 {
    float: left;
    padding-right: 1.5rem;
    width: 72.7272727273%;
  }
  .t-9of11 {
    float: left;
    padding-right: 1.5rem;
    width: 81.8181818182%;
  }
  .t-10of11 {
    float: left;
    padding-right: 1.5rem;
    width: 90.9090909091%;
  }
  .t-1of12 {
    float: left;
    padding-right: 1.5rem;
    width: 8.33%;
  }
  .t-5of12 {
    float: left;
    padding-right: 1.5rem;
    width: 41.65%;
  }
  .t-7of12 {
    float: left;
    padding-right: 1.5rem;
    width: 58.1%;
  }
  .t-10of12 {
    float: left;
    padding-right: 1.5rem;
    width: 83.3%;
  }
  .t-11of12 {
    float: left;
    padding-right: 1.5rem;
    width: 91.63%;
  }
}
/* Landscape to small desktop */
@media only screen and (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 1.5rem;
    width: 100%;
    padding-right: 0;
  }
  .d-1of2, .d-2of4, .d-3of6, .d-4of8, .d-5of10, .d-6of12 {
    float: left;
    padding-right: 1.5rem;
    width: 50%;
  }
  .d-1of3, .d-2of6, .d-3of9, .d-4of12 {
    float: left;
    padding-right: 1.5rem;
    width: 33.33%;
  }
  .d-2of3, .d-4of6, .d-6of9, .d-8of12 {
    float: left;
    padding-right: 1.5rem;
    width: 66.66%;
  }
  .d-1of4, .d-2of8, .d-3of12 {
    float: left;
    padding-right: 1.5rem;
    width: 25%;
  }
  .d-3of4, .d-6of8, .d-9of12 {
    float: left;
    padding-right: 1.5rem;
    width: 75%;
  }
  .d-1of5, .d-2of10 {
    float: left;
    padding-right: 1.5rem;
    width: 20%;
  }
  .d-2of5, .d-4of10 {
    float: left;
    padding-right: 1.5rem;
    width: 40%;
  }
  .d-3of5, .d-6of10 {
    float: left;
    padding-right: 1.5rem;
    width: 60%;
  }
  .d-4of5, .d-8of10 {
    float: left;
    padding-right: 1.5rem;
    width: 80%;
  }
  .d-1of6, .d-2of12 {
    float: left;
    padding-right: 1.5rem;
    width: 16.6666666667%;
  }
  .d-1of7 {
    float: left;
    padding-right: 1.5rem;
    width: 14.2857142857%;
  }
  .d-2of7 {
    float: left;
    padding-right: 1.5rem;
    width: 28.5714286%;
  }
  .d-3of7 {
    float: left;
    padding-right: 1.5rem;
    width: 42.8571429%;
  }
  .d-4of7 {
    float: left;
    padding-right: 1.5rem;
    width: 57.1428572%;
  }
  .d-5of7 {
    float: left;
    padding-right: 1.5rem;
    width: 71.4285715%;
  }
  .d-6of7 {
    float: left;
    padding-right: 1.5rem;
    width: 85.7142857%;
  }
  .d-1of8 {
    float: left;
    padding-right: 1.5rem;
    width: 12.5%;
  }
  .d-3of8 {
    float: left;
    padding-right: 1.5rem;
    width: 37.5%;
  }
  .d-5of8 {
    float: left;
    padding-right: 1.5rem;
    width: 62.5%;
  }
  .d-7of8 {
    float: left;
    padding-right: 1.5rem;
    width: 87.5%;
  }
  .d-1of9 {
    float: left;
    padding-right: 1.5rem;
    width: 11.1111111111%;
  }
  .d-2of9 {
    float: left;
    padding-right: 1.5rem;
    width: 22.2222222222%;
  }
  .d-4of9 {
    float: left;
    padding-right: 1.5rem;
    width: 44.4444444444%;
  }
  .d-5of9 {
    float: left;
    padding-right: 1.5rem;
    width: 55.5555555555%;
  }
  .d-7of9 {
    float: left;
    padding-right: 1.5rem;
    width: 77.7777777777%;
  }
  .d-8of9 {
    float: left;
    padding-right: 1.5rem;
    width: 88.8888888888%;
  }
  .d-1of10 {
    float: left;
    padding-right: 1.5rem;
    width: 10%;
  }
  .d-3of10 {
    float: left;
    padding-right: 1.5rem;
    width: 20%;
  }
  .d-7of10 {
    float: left;
    padding-right: 1.5rem;
    width: 70%;
  }
  .d-9of10 {
    float: left;
    padding-right: 1.5rem;
    width: 90%;
  }
  .d-1of11 {
    float: left;
    padding-right: 1.5rem;
    width: 9.0909090909%;
  }
  .d-2of11 {
    float: left;
    padding-right: 1.5rem;
    width: 18.1818181818%;
  }
  .d-3of11 {
    float: left;
    padding-right: 1.5rem;
    width: 27.2727272727%;
  }
  .d-4of11 {
    float: left;
    padding-right: 1.5rem;
    width: 36.3636363636%;
  }
  .d-5of11 {
    float: left;
    padding-right: 1.5rem;
    width: 45.4545454546%;
  }
  .d-6of11 {
    float: left;
    padding-right: 1.5rem;
    width: 54.5454545455%;
  }
  .d-7of11 {
    float: left;
    padding-right: 1.5rem;
    width: 63.6363636364%;
  }
  .d-8of11 {
    float: left;
    padding-right: 1.5rem;
    width: 72.7272727273%;
  }
  .d-9of11 {
    float: left;
    padding-right: 1.5rem;
    width: 81.8181818182%;
  }
  .d-10of11 {
    float: left;
    padding-right: 1.5rem;
    width: 90.9090909091%;
  }
  .d-1of12 {
    float: left;
    padding-right: 1.5rem;
    width: 8.33%;
  }
  .d-5of12 {
    float: left;
    padding-right: 1.5rem;
    width: 41.65%;
  }
  .d-7of12 {
    float: left;
    padding-right: 1.5rem;
    width: 58.1%;
  }
  .d-10of12 {
    float: left;
    padding-right: 1.5rem;
    width: 83.3%;
  }
  .d-11of12 {
    float: left;
    padding-right: 1.5rem;
    width: 91.63%;
  }
}
@media only screen and (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 1.5rem;
    width: 100%;
    padding-right: 0;
  }
  .d-1of2, .d-2of4, .d-3of6, .d-4of8, .d-5of10, .d-6of12 {
    float: left;
    padding-right: 1.5rem;
    width: 50%;
  }
  .d-1of3, .d-2of6, .d-3of9, .d-4of12 {
    float: left;
    padding-right: 1.5rem;
    width: 33.33%;
  }
  .d-2of3, .d-4of6, .d-6of9, .d-8of12 {
    float: left;
    padding-right: 1.5rem;
    width: 66.66%;
  }
  .d-1of4, .d-2of8, .d-3of12 {
    float: left;
    padding-right: 1.5rem;
    width: 25%;
  }
  .d-3of4, .d-6of8, .d-9of12 {
    float: left;
    padding-right: 1.5rem;
    width: 75%;
  }
  .d-1of5, .d-2of10 {
    float: left;
    padding-right: 1.5rem;
    width: 20%;
  }
  .d-2of5, .d-4of10 {
    float: left;
    padding-right: 1.5rem;
    width: 40%;
  }
  .d-3of5, .d-6of10 {
    float: left;
    padding-right: 1.5rem;
    width: 60%;
  }
  .d-4of5, .d-8of10 {
    float: left;
    padding-right: 1.5rem;
    width: 80%;
  }
  .d-1of6, .d-2of12 {
    float: left;
    padding-right: 1.5rem;
    width: 16.6666666667%;
  }
  .d-1of7 {
    float: left;
    padding-right: 1.5rem;
    width: 14.2857142857%;
  }
  .d-2of7 {
    float: left;
    padding-right: 1.5rem;
    width: 28.5714286%;
  }
  .d-3of7 {
    float: left;
    padding-right: 1.5rem;
    width: 42.8571429%;
  }
  .d-4of7 {
    float: left;
    padding-right: 1.5rem;
    width: 57.1428572%;
  }
  .d-5of7 {
    float: left;
    padding-right: 1.5rem;
    width: 71.4285715%;
  }
  .d-6of7 {
    float: left;
    padding-right: 1.5rem;
    width: 85.7142857%;
  }
  .d-1of8 {
    float: left;
    padding-right: 1.5rem;
    width: 12.5%;
  }
  .d-3of8 {
    float: left;
    padding-right: 1.5rem;
    width: 37.5%;
  }
  .d-5of8 {
    float: left;
    padding-right: 1.5rem;
    width: 62.5%;
  }
  .d-7of8 {
    float: left;
    padding-right: 1.5rem;
    width: 87.5%;
  }
  .d-1of9 {
    float: left;
    padding-right: 1.5rem;
    width: 11.1111111111%;
  }
  .d-2of9 {
    float: left;
    padding-right: 1.5rem;
    width: 22.2222222222%;
  }
  .d-4of9 {
    float: left;
    padding-right: 1.5rem;
    width: 44.4444444444%;
  }
  .d-5of9 {
    float: left;
    padding-right: 1.5rem;
    width: 55.5555555555%;
  }
  .d-7of9 {
    float: left;
    padding-right: 1.5rem;
    width: 77.7777777777%;
  }
  .d-8of9 {
    float: left;
    padding-right: 1.5rem;
    width: 88.8888888888%;
  }
  .d-1of10 {
    float: left;
    padding-right: 1.5rem;
    width: 10%;
  }
  .d-3of10 {
    float: left;
    padding-right: 1.5rem;
    width: 20%;
  }
  .d-7of10 {
    float: left;
    padding-right: 1.5rem;
    width: 70%;
  }
  .d-9of10 {
    float: left;
    padding-right: 1.5rem;
    width: 90%;
  }
  .d-1of11 {
    float: left;
    padding-right: 1.5rem;
    width: 9.0909090909%;
  }
  .d-2of11 {
    float: left;
    padding-right: 1.5rem;
    width: 18.1818181818%;
  }
  .d-3of11 {
    float: left;
    padding-right: 1.5rem;
    width: 27.2727272727%;
  }
  .d-4of11 {
    float: left;
    padding-right: 1.5rem;
    width: 36.3636363636%;
  }
  .d-5of11 {
    float: left;
    padding-right: 1.5rem;
    width: 45.4545454546%;
  }
  .d-6of11 {
    float: left;
    padding-right: 1.5rem;
    width: 54.5454545455%;
  }
  .d-7of11 {
    float: left;
    padding-right: 1.5rem;
    width: 63.6363636364%;
  }
  .d-8of11 {
    float: left;
    padding-right: 1.5rem;
    width: 72.7272727273%;
  }
  .d-9of11 {
    float: left;
    padding-right: 1.5rem;
    width: 81.8181818182%;
  }
  .d-10of11 {
    float: left;
    padding-right: 1.5rem;
    width: 90.9090909091%;
  }
  .d-1of12 {
    float: left;
    padding-right: 1.5rem;
    width: 8.33%;
  }
  .d-5of12 {
    float: left;
    padding-right: 1.5rem;
    width: 41.65%;
  }
  .d-7of12 {
    float: left;
    padding-right: 1.5rem;
    width: 58.1%;
  }
  .d-10of12 {
    float: left;
    padding-right: 1.5rem;
    width: 83.3%;
  }
  .d-11of12 {
    float: left;
    padding-right: 1.5rem;
    width: 91.63%;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Animation Stylesheet

******************************************************************/
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade_out {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_out {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade_down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-3em);
            transform: translateY(-3em);
  }
  80% {
    opacity: 1;
  }
  99% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@keyframes fade_down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-3em);
            transform: translateY(-3em);
  }
  80% {
    opacity: 1;
  }
  99% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3em);
            transform: translateY(3em);
  }
  80% {
    opacity: 1;
  }
  99% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3em);
            transform: translateY(3em);
  }
  80% {
    opacity: 1;
  }
  99% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes fade_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(3em);
            transform: translateX(3em);
  }
  80% {
    opacity: 1;
  }
  99% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@keyframes fade_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(3em);
            transform: translateX(3em);
  }
  80% {
    opacity: 1;
  }
  99% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes fade_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-3em);
            transform: translateX(-3em);
  }
  80% {
    opacity: 1;
  }
  99% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@keyframes fade_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-3em);
            transform: translateX(-3em);
  }
  80% {
    opacity: 1;
  }
  99% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
.js .check-scroll-element .item {
  opacity: 0;
}
.js .check-scroll-element.viewed .item {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.js .check-scroll-element.viewed .item:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.js .check-scroll-element.viewed .item:nth-child(2) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.js .check-scroll-element.viewed .item:nth-child(3) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.js .check-scroll-element.viewed .item:nth-child(4) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.js .check-scroll-element.viewed .item:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.js .check-scroll-element.viewed .item:nth-child(6) {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}
.js .check-scroll-element.viewed .item:nth-child(7) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.js .check-scroll-element.viewed .item:nth-child(8) {
  -webkit-animation-delay: 1.75s;
          animation-delay: 1.75s;
}
.js .check-scroll-element.viewed .item:nth-child(9) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.js .check-scroll-element.viewed .item:nth-child(10) {
  -webkit-animation-delay: 2.25s;
          animation-delay: 2.25s;
}
.js .check-scroll-element.viewed .item:nth-child(11) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.js .check-scroll-element.viewed .item:nth-child(12) {
  -webkit-animation-delay: 2.75s;
          animation-delay: 2.75s;
}
.js .check-scroll-element.viewed .item:nth-child(13) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.js .check-scroll-element.viewed .item:nth-child(14) {
  -webkit-animation-delay: 3.25s;
          animation-delay: 3.25s;
}
.js .check-scroll-element.viewed .item:nth-child(15) {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}
.js .check-scroll-element.viewed .item:nth-child(n+16) {
  -webkit-animation-delay: 3.75s;
          animation-delay: 3.75s;
}

/******************************************************************
ANIMATE CSS
******************************************************************/
/*!
 * animate.css - https://daneden.github.io/animate.css/
 * animate.css - http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse, #home-filters .each-filter.loading::before {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
      transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn, #featured-content,
#recent-news, #contextual-footer-info .contextual-footer-content .each-footer-content.active, #contextual-footer-info, .each-news-post:not(.hidden)[data-first-load], .each-faculty-post:not(.hidden)[data-first-load], .each-program-archive:not(.hidden),
.each-course-archive:not(.hidden), .each-hunk, .hunks-wrapper {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp, .post-wrapper, #home-news .each-news-post, #columns-wrapper .each-column-item.visible, .each-news-post, .each-faculty-post, .each-program-archive,
.each-course-archive, .subway-wrapper .map-wrapper, .subway-wrapper .hunks-wrapper {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    height: 0px;
    padding: 0;
  }
}
@-webkit-keyframes collapseOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    height: 0px;
    padding: 0;
  }
}
@keyframes collapseOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    height: 0px;
    padding: 0;
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    height: 0px;
    padding: 0;
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip, .flip.post-wrapper, .flip#featured-content,
.flip#recent-news, #home-filters .flip.each-filter.loading::before, #home-news .flip.each-news-post, #columns-wrapper .flip.each-column-item.visible, #contextual-footer-info .contextual-footer-content .flip.each-footer-content.active, .flip#contextual-footer-info, .flip.each-news-post, .flip.each-faculty-post, .flip.each-program-archive,
.flip.each-course-archive, .subway-wrapper .flip.map-wrapper, .flip.each-hunk, .flip.hunks-wrapper {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated, .post-wrapper, #featured-content,
#recent-news, #home-filters .each-filter.loading::before, #home-news .each-news-post, #columns-wrapper .each-column-item.visible, #contextual-footer-info .contextual-footer-content .each-footer-content.active, #contextual-footer-info, .each-news-post, .each-faculty-post, .each-program-archive:not(.hidden),
.each-course-archive:not(.hidden), .each-program-archive,
.each-course-archive, .subway-wrapper .map-wrapper, .each-hunk, .hunks-wrapper {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite, .infinite.post-wrapper, .infinite#featured-content,
.infinite#recent-news, #home-filters .each-filter.loading::before, #home-news .infinite.each-news-post, #columns-wrapper .infinite.each-column-item.visible, #contextual-footer-info .contextual-footer-content .infinite.each-footer-content.active, #contextual-footer-info .contextual-footer-content #home-filters .each-footer-content.active.each-filter.loading::before, #home-filters #contextual-footer-info .contextual-footer-content .each-footer-content.active.each-filter.loading::before, .infinite#contextual-footer-info, .infinite.each-news-post, .infinite.each-faculty-post, .infinite.each-program-archive,
.infinite.each-course-archive, .subway-wrapper .infinite.map-wrapper, .infinite.each-hunk, .infinite.hunks-wrapper {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s, .delay-1s.post-wrapper, .delay-1s#featured-content,
.delay-1s#recent-news, #home-filters .delay-1s.each-filter.loading::before, #home-news .delay-1s.each-news-post, #columns-wrapper .delay-1s.each-column-item.visible, #contextual-footer-info .contextual-footer-content .delay-1s.each-footer-content.active, .delay-1s#contextual-footer-info, .delay-1s.each-news-post, .delay-1s.each-faculty-post, .delay-1s.each-program-archive,
.delay-1s.each-course-archive, .subway-wrapper .delay-1s.map-wrapper, .delay-1s.each-hunk, .delay-1s.hunks-wrapper {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s, .delay-2s.post-wrapper, .delay-2s#featured-content,
.delay-2s#recent-news, #home-filters .delay-2s.each-filter.loading::before, #home-news .delay-2s.each-news-post, #columns-wrapper .delay-2s.each-column-item.visible, #contextual-footer-info .contextual-footer-content .delay-2s.each-footer-content.active, .delay-2s#contextual-footer-info, .delay-2s.each-news-post, .delay-2s.each-faculty-post, .delay-2s.each-program-archive,
.delay-2s.each-course-archive, .subway-wrapper .delay-2s.map-wrapper, .delay-2s.each-hunk, .delay-2s.hunks-wrapper {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s, .delay-3s.post-wrapper, .delay-3s#featured-content,
.delay-3s#recent-news, #home-filters .delay-3s.each-filter.loading::before, #home-news .delay-3s.each-news-post, #columns-wrapper .delay-3s.each-column-item.visible, #contextual-footer-info .contextual-footer-content .delay-3s.each-footer-content.active, .delay-3s#contextual-footer-info, .delay-3s.each-news-post, .delay-3s.each-faculty-post, .delay-3s.each-program-archive,
.delay-3s.each-course-archive, .subway-wrapper .delay-3s.map-wrapper, .delay-3s.each-hunk, .delay-3s.hunks-wrapper {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s, .delay-4s.post-wrapper, .delay-4s#featured-content,
.delay-4s#recent-news, #home-filters .delay-4s.each-filter.loading::before, #home-news .delay-4s.each-news-post, #columns-wrapper .delay-4s.each-column-item.visible, #contextual-footer-info .contextual-footer-content .delay-4s.each-footer-content.active, .delay-4s#contextual-footer-info, .delay-4s.each-news-post, .delay-4s.each-faculty-post, .delay-4s.each-program-archive,
.delay-4s.each-course-archive, .subway-wrapper .delay-4s.map-wrapper, .delay-4s.each-hunk, .delay-4s.hunks-wrapper {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s, .delay-5s.post-wrapper, .delay-5s#featured-content,
.delay-5s#recent-news, #home-filters .delay-5s.each-filter.loading::before, #home-news .delay-5s.each-news-post, #columns-wrapper .delay-5s.each-column-item.visible, #contextual-footer-info .contextual-footer-content .delay-5s.each-footer-content.active, .delay-5s#contextual-footer-info, .delay-5s.each-news-post, .delay-5s.each-faculty-post, .delay-5s.each-program-archive,
.delay-5s.each-course-archive, .subway-wrapper .delay-5s.map-wrapper, .delay-5s.each-hunk, .delay-5s.hunks-wrapper {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast, .fast.post-wrapper, .fast#featured-content,
.fast#recent-news, #home-filters .fast.each-filter.loading::before, #home-news .fast.each-news-post, #columns-wrapper .fast.each-column-item.visible, #contextual-footer-info .contextual-footer-content .fast.each-footer-content.active, .fast#contextual-footer-info, .fast.each-news-post, .fast.each-faculty-post, .fast.each-program-archive,
.fast.each-course-archive, .subway-wrapper .fast.map-wrapper, .fast.each-hunk, .fast.hunks-wrapper {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster, .faster.post-wrapper, .faster#featured-content,
.faster#recent-news, #home-filters .faster.each-filter.loading::before, #home-news .faster.each-news-post, #columns-wrapper .faster.each-column-item.visible, #contextual-footer-info .contextual-footer-content .faster.each-footer-content.active, .faster#contextual-footer-info, .faster.each-news-post, .faster.each-faculty-post, .faster.each-program-archive,
.faster.each-course-archive, .subway-wrapper .faster.map-wrapper, .faster.each-hunk, .faster.hunks-wrapper {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow, .slow.post-wrapper, .slow#featured-content,
.slow#recent-news, #home-filters .slow.each-filter.loading::before, #home-news .slow.each-news-post, #columns-wrapper .slow.each-column-item.visible, #contextual-footer-info .contextual-footer-content .slow.each-footer-content.active, .slow#contextual-footer-info, .slow.each-news-post, .slow.each-faculty-post, .slow.each-program-archive,
.slow.each-course-archive, .subway-wrapper .slow.map-wrapper, .slow.each-hunk, .slow.hunks-wrapper {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower, .slower.post-wrapper, .slower#featured-content,
.slower#recent-news, #home-filters .slower.each-filter.loading::before, #home-news .slower.each-news-post, #columns-wrapper .slower.each-column-item.visible, #contextual-footer-info .contextual-footer-content .slower.each-footer-content.active, .slower#contextual-footer-info, .slower.each-news-post, .slower.each-faculty-post, .slower.each-program-archive,
.slower.each-course-archive, .subway-wrapper .slower.map-wrapper, .slower.each-hunk, .slower.hunks-wrapper {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated, .post-wrapper, #featured-content,
  #recent-news, #home-filters .each-filter.loading::before, #home-news .each-news-post, #columns-wrapper .each-column-item.visible, #contextual-footer-info .contextual-footer-content .each-footer-content.active, #contextual-footer-info, .each-news-post, .each-faculty-post, .each-program-archive:not(.hidden),
  .each-course-archive:not(.hidden), .each-program-archive,
  .each-course-archive, .subway-wrapper .map-wrapper, .each-hunk, .hunks-wrapper {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Basic Classes

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

******************************************************************/
/*********************
GENERAL STYLES
*********************/
body {
  font-family: proxima-nova, Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#lean_overlay {
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: #000;
  display: none;
}

/*********************
LAYOUT & GRID STYLES
*********************/
.wp-activate-container,
.wrap {
  width: 96%;
  max-width: 1040px;
  margin: 0 auto;
}

.content-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.thumb-image-wrapper img {
  max-height: 50vh;
  max-width: 1080px;
  height: auto;
  width: auto;
  float: left;
}

.thumb-wrapper {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.thumb-wrapper img {
  margin: auto;
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .article-header > .thumb-wrapper {
    position: relative;
    padding: 0;
    margin: 0;
    width: 100vw;
    width: calc(100% + 5vw + 3em);
    margin-left: calc(-2.5vw - 1.5em);
    margin-right: calc(-2.5vw - 1.5em);
    overflow: hidden;
    padding-bottom: 60%;
  }
  .article-header > .thumb-wrapper img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    min-height: 100%;
    min-width: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
  }
}

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

img {
  max-width: 100%;
  height: auto;
}
img.size-circle-small, img.size-circle-medium, img.size-circle-large {
  border-radius: 50%;
  overflow: hidden;
}

/*********************
BACKGROUNDS
*********************/
.bg-alternate:nth-of-type(odd) {
  background-color: #CCCCCC;
}
.bg-alternate:nth-of-type(odd) input[type=text],
.bg-alternate:nth-of-type(odd) input[type=password],
.bg-alternate:nth-of-type(odd) input[type=datetime],
.bg-alternate:nth-of-type(odd) input[type=datetime-local],
.bg-alternate:nth-of-type(odd) input[type=date],
.bg-alternate:nth-of-type(odd) input[type=month],
.bg-alternate:nth-of-type(odd) input[type=time],
.bg-alternate:nth-of-type(odd) input[type=week],
.bg-alternate:nth-of-type(odd) input[type=number],
.bg-alternate:nth-of-type(odd) input[type=email],
.bg-alternate:nth-of-type(odd) input[type=url],
.bg-alternate:nth-of-type(odd) input[type=search],
.bg-alternate:nth-of-type(odd) input[type=tel],
.bg-alternate:nth-of-type(odd) input[type=color],
.bg-alternate:nth-of-type(odd) select,
.bg-alternate:nth-of-type(odd) textarea,
.bg-alternate:nth-of-type(odd) .field {
  background-color: #d9d9d9;
}
.bg-alternate:nth-of-type(odd).default-display-post {
  background-color: transparent;
}
.bg-alternate:nth-of-type(odd).default-display-post > article {
  background-color: #CCCCCC;
}
.bg-alternate:nth-of-type(even) {
  background-color: #fff;
}
.bg-alternate:nth-of-type(even).default-display-post {
  background-color: transparent;
}
.bg-alternate:nth-of-type(even).default-display-post > article {
  background-color: #fff;
}

/*********************
OVERLAYS
*********************/
video.bg, img.bg, video.cover, img.cover, .cover, .bg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  min-height: 100%;
  min-width: 100%;
  max-width: none;
  max-height: none;
  opacity: 0.5;
  z-index: 5;
  margin: 0;
}

video.cover, img.cover, .cover {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
}
.overlay.show {
  visibility: visible;
  opacity: 1;
}
.overlay.black {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}
.overlay.white {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
}

/*********************
TOGGLE TERMS
*********************/
.toggle-terms h3:after {
  padding-left: 0.25em;
}
.toggle-terms h3.up:after {
  content: "▴";
}
.toggle-terms h3.down:after {
  content: "▾";
}

/*********************
POSTS & CONTENT STYLES
*********************/
#container,
#header {
  width: 95vw;
  float: none;
  margin: auto;
}
@media only screen and (min-width: 1030px) {
  #container,
  #header {
    width: 90vw;
  }
}
@media only screen and (min-width: 1030px) {
  #container,
  #header {
    width: 90vw;
  }
}

#content {
  max-width: 1400px;
  float: none;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: margin ease-in-out 0.2s;
  transition: margin ease-in-out 0.2s;
}
@media only screen and (min-width: 1030px) {
  #content {
    margin-top: 200px;
  }
}
@media only screen and (min-width: 1030px) {
  #content {
    margin-top: 200px;
  }
}
#content #inner-content {
  float: left;
  width: 100%;
}

.home #content {
  max-width: none;
}

#home-filters::before, #home-perspective::after, #home-events::after, #ad-blocks-wrapper::before, .each-home-column ul.menu::after,
.widget_nav_menu ul.menu::after, .contextual-footer-filters::before, #featured-content::after {
  content: "";
  background: #CCCCCC;
  width: 80%;
  height: 1px;
  float: left;
  margin: 0 10%;
}

.wireframe-block .wireframe-title {
  background: #CCCCCC;
  height: 30px;
  margin-bottom: 1.25rem;
}
.wireframe-block .wireframe-content {
  background: #CCCCCC;
  height: 75px;
  margin-bottom: 1.25rem;
}
.wireframe-block .wireframe-button {
  background: #CCCCCC;
  height: 30px;
  float: right;
  width: 30%;
  margin-bottom: 1.25rem;
}

span.smaller {
  font-size: 0.75rem;
}

.hentry {
  background-color: #fff;
  border-radius: 3px;
  margin-bottom: 1.5em;
}
.hentry header {
  padding: 1.5em;
}
@media only screen and (max-width: 481px) {
  .hentry section.entry-content {
    padding: 0 1.5em;
  }
}
.hentry footer {
  padding: 1.5em;
}
.hentry footer p {
  margin: 0;
}
.hentry .page-content header,
.hentry .page-content footer {
  padding: 1.5em 0;
}

/* end .hentry */
.single-title,
.entry-title {
  margin: 0;
}

/* post meta */
.byline {
  color: #4D4D4D;
  font-style: italic;
  margin: 0;
}
.meta {
  color: #4D4D4D;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.meta.categories {
  text-align: left;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-top: 0rem;
  margin-bottom: 0;
  padding: 1.5rem;
}

/* entry content */
#signup-content,
.entry-content,
.hunks-wrapper {
  /*
  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.
  */
}
@media only screen and (min-width: 1030px) {
  #signup-content,
  .entry-content,
  .hunks-wrapper {
    padding: 1.5em 1.5em 0;
  }
}
@media only screen and (min-width: 1030px) {
  #signup-content,
  .entry-content,
  .hunks-wrapper {
    padding: 1.5em 1.5em 0;
  }
}
#signup-content p,
.entry-content p,
.hunks-wrapper p {
  margin: 0 0 1.5em;
}
#signup-content ul, #signup-content ol,
.entry-content ul,
.entry-content ol,
.hunks-wrapper ul,
.hunks-wrapper ol {
  margin-left: 1.5rem;
}
#signup-content ul,
.entry-content ul,
.hunks-wrapper ul {
  list-style-type: disc;
  list-style-position: outside;
}
#signup-content ul.none, #signup-content ul.none ul,
.entry-content ul.none,
.entry-content ul.none ul,
.hunks-wrapper ul.none,
.hunks-wrapper ul.none ul {
  list-style-type: none;
  list-style-position: outside;
}
#signup-content ul.none li, #signup-content ul.none ul li,
.entry-content ul.none li,
.entry-content ul.none ul li,
.hunks-wrapper ul.none li,
.hunks-wrapper ul.none ul li {
  padding-left: 0;
}
#signup-content ul.disc, #signup-content ul.disc ul,
.entry-content ul.disc,
.entry-content ul.disc ul,
.hunks-wrapper ul.disc,
.hunks-wrapper ul.disc ul {
  list-style-type: disc;
  list-style-position: outside;
}
#signup-content ul.circle, #signup-content ul.circle ul,
.entry-content ul.circle,
.entry-content ul.circle ul,
.hunks-wrapper ul.circle,
.hunks-wrapper ul.circle ul {
  list-style-type: circle;
  list-style-position: outside;
}
#signup-content ul.square, #signup-content ul.square ul,
.entry-content ul.square,
.entry-content ul.square ul,
.hunks-wrapper ul.square,
.hunks-wrapper ul.square ul {
  list-style-type: square;
  list-style-position: outside;
}
#signup-content ul ul,
.entry-content ul ul,
.hunks-wrapper ul ul {
  margin-top: 0;
}
#signup-content ul li,
.entry-content ul li,
.hunks-wrapper ul li {
  margin-bottom: 0em;
  padding-left: 1rem;
}
#signup-content ul li::marker,
.entry-content ul li::marker,
.hunks-wrapper ul li::marker {
  font-size: 0.5rem;
  text-align: center;
}
#signup-content ol,
.entry-content ol,
.hunks-wrapper ol {
  list-style-type: decimal;
  list-style-position: outside;
}
#signup-content ol.none, #signup-content ol.none ol,
.entry-content ol.none,
.entry-content ol.none ol,
.hunks-wrapper ol.none,
.hunks-wrapper ol.none ol {
  list-style-type: none;
  list-style-position: outside;
}
#signup-content ol.none li, #signup-content ol.none ol li,
.entry-content ol.none li,
.entry-content ol.none ol li,
.hunks-wrapper ol.none li,
.hunks-wrapper ol.none ol li {
  padding-left: 0;
}
#signup-content ol.alpha, #signup-content ol.alpha ol,
.entry-content ol.alpha,
.entry-content ol.alpha ol,
.hunks-wrapper ol.alpha,
.hunks-wrapper ol.alpha ol {
  list-style-type: upper-alpha;
  list-style-position: outside;
}
#signup-content ol.num, #signup-content ol.num ol,
.entry-content ol.num,
.entry-content ol.num ol,
.hunks-wrapper ol.num,
.hunks-wrapper ol.num ol {
  list-style-type: decimal;
  list-style-position: outside;
}
#signup-content ol ol,
.entry-content ol ol,
.hunks-wrapper ol ol {
  margin-top: 0;
}
#signup-content ol li,
.entry-content ol li,
.hunks-wrapper ol li {
  margin-bottom: 0em;
  padding-left: 1rem;
}
#signup-content ol li::marker,
.entry-content ol li::marker,
.hunks-wrapper ol li::marker {
  font-weight: 200;
  font-size: 1.125rem;
}
#signup-content table,
.entry-content table,
.hunks-wrapper table {
  width: 100%;
  border: 0;
  margin-bottom: 1.5em;
}
#signup-content table caption,
.entry-content table caption,
.hunks-wrapper table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #4D4D4D;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#signup-content tr,
.entry-content tr,
.hunks-wrapper tr {
  border: 0;
}
#signup-content tr:nth-child(even),
.entry-content tr:nth-child(even),
.hunks-wrapper tr:nth-child(even) {
  background-color: #F2F2F2;
}
#signup-content td,
.entry-content td,
.hunks-wrapper td {
  padding: 5px 15px;
  border: 0;
}
#signup-content td:last-child,
.entry-content td:last-child,
.hunks-wrapper td:last-child {
  border-right: 0;
}
#signup-content th,
.entry-content th,
.hunks-wrapper th {
  background-color: #F2F2F2;
  border: 0;
  font-weight: bold;
  text-align: left;
  padding: 5px 15px;
}
#signup-content .block-link,
.entry-content .block-link,
.hunks-wrapper .block-link {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}
#signup-content .block-link:hover,
.entry-content .block-link:hover,
.hunks-wrapper .block-link:hover {
  color: #000;
}
#signup-content .block-link:hover h1, #signup-content .block-link:hover h2, #signup-content .block-link:hover h3, #signup-content .block-link:hover h4, #signup-content .block-link:hover h5, #signup-content .block-link:hover h6,
.entry-content .block-link:hover h1,
.entry-content .block-link:hover h2,
.entry-content .block-link:hover h3,
.entry-content .block-link:hover h4,
.entry-content .block-link:hover h5,
.entry-content .block-link:hover h6,
.hunks-wrapper .block-link:hover h1,
.hunks-wrapper .block-link:hover h2,
.hunks-wrapper .block-link:hover h3,
.hunks-wrapper .block-link:hover h4,
.hunks-wrapper .block-link:hover h5,
.hunks-wrapper .block-link:hover h6 {
  font-weight: bold;
}
#signup-content .block-link:visited, #signup-content .block-link:active,
.entry-content .block-link:visited,
.entry-content .block-link:active,
.hunks-wrapper .block-link:visited,
.hunks-wrapper .block-link:active {
  color: #000;
}
#signup-content .pullquote,
#signup-content blockquote,
.entry-content .pullquote,
.entry-content blockquote,
.hunks-wrapper .pullquote,
.hunks-wrapper blockquote {
  margin: 0 0 1.5em 0;
  float: left;
  padding: 0 3rem;
  position: relative;
  font-family: bookmania, Cambria, Times New Roman, Times, serif;
  font-weight: bold;
  font-style: italic;
}
#signup-content dd,
.entry-content dd,
.hunks-wrapper dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
#signup-content img,
.entry-content img,
.hunks-wrapper img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
  height: auto;
}
#signup-content figure,
.entry-content figure,
.hunks-wrapper figure {
  margin: 0 0 1.5em 0;
}
#signup-content figure img,
.entry-content figure img,
.hunks-wrapper figure img {
  margin: 0;
}
#signup-content figure figcaption,
.entry-content figure figcaption,
.hunks-wrapper figure figcaption {
  color: #4D4D4D;
  font-size: 0.85rem;
}
@media only screen and (min-width: 481px) {
  #signup-content,
  .entry-content,
  .hunks-wrapper {
    /* at this larger size, we can start to align images */
  }
  #signup-content .alignleft, #signup-content img.alignleft,
  .entry-content .alignleft,
  .entry-content img.alignleft,
  .hunks-wrapper .alignleft,
  .hunks-wrapper img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  #signup-content .alignright, #signup-content img.alignright,
  .entry-content .alignright,
  .entry-content img.alignright,
  .hunks-wrapper .alignright,
  .hunks-wrapper img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  #signup-content .aligncenter, #signup-content img.aligncenter,
  .entry-content .aligncenter,
  .entry-content img.aligncenter,
  .hunks-wrapper .aligncenter,
  .hunks-wrapper img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }
  #signup-content .pullquote,
  .entry-content .pullquote,
  .hunks-wrapper .pullquote {
    float: right;
    max-width: 50%;
    margin-left: 5%;
    margin-right: -20%;
  }
}
#signup-content .size-auto,
#signup-content .size-full,
#signup-content .size-large,
#signup-content .size-medium,
#signup-content .size-thumbnail,
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail,
.hunks-wrapper .size-auto,
.hunks-wrapper .size-full,
.hunks-wrapper .size-large,
.hunks-wrapper .size-medium,
.hunks-wrapper .size-thumbnail {
  max-width: 100%;
  height: auto;
}
#signup-content pre,
.entry-content pre,
.hunks-wrapper pre {
  background: #000;
  color: #CCCCCC;
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}

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

/* end .wp-caption */
.tags {
  margin: 0;
}

.taxonomies .separator:last-of-type {
  display: none;
}

.acf-map {
  min-height: 300px;
}

.default-display-post {
  margin: 1em 0;
  width: 100%;
}
.default-display-post > article {
  margin: 0;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .half-listing .default-display-post, .third-listing .default-display-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
    margin: 1%;
    width: 48%;
    float: left;
  }
  .half-listing .default-display-post > article, .third-listing .default-display-post > article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .half-listing .default-display-post > article > *, .third-listing .default-display-post > article > * {
    width: 100%;
  }
  .half-listing .default-display-post > article footer, .third-listing .default-display-post > article footer {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .half-listing .default-display-post.bg-alternate:nth-of-type(4n) > article, .half-listing .default-display-post.bg-alternate:nth-of-type(4n-3) > article, .third-listing .default-display-post.bg-alternate:nth-of-type(4n) > article, .third-listing .default-display-post.bg-alternate:nth-of-type(4n-3) > article {
    background-color: #CCCCCC;
  }
  .half-listing .default-display-post.bg-alternate:nth-of-type(4n-1) > article, .half-listing .default-display-post.bg-alternate:nth-of-type(4n-2) > article, .third-listing .default-display-post.bg-alternate:nth-of-type(4n-1) > article, .third-listing .default-display-post.bg-alternate:nth-of-type(4n-2) > article {
    background-color: #fff;
  }
}
@media only screen and (min-width: 1030px) {
  .third-listing .default-display-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
    margin: 1%;
    width: 31%;
    float: left;
  }
  .third-listing .default-display-post > article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .third-listing .default-display-post > article > * {
    width: 100%;
  }
  .third-listing .default-display-post > article footer {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .third-listing .default-display-post.bg-alternate {
    margin: 0;
  }
  .third-listing .default-display-post.bg-alternate:nth-of-type(odd) > article {
    background-color: #CCCCCC;
  }
  .third-listing .default-display-post.bg-alternate:nth-of-type(even) > article {
    background-color: #fff;
  }
}
@media only screen and (min-width: 1030px) {
  .third-listing .default-display-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
    margin: 1%;
    width: 31%;
    float: left;
  }
  .third-listing .default-display-post > article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .third-listing .default-display-post > article > * {
    width: 100%;
  }
  .third-listing .default-display-post > article footer {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .third-listing .default-display-post.bg-alternate {
    margin: 0;
  }
  .third-listing .default-display-post.bg-alternate:nth-of-type(odd) > article {
    background-color: #CCCCCC;
  }
  .third-listing .default-display-post.bg-alternate:nth-of-type(even) > article {
    background-color: #fff;
  }
}
#loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.search-results-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.search-results-wrapper .search-results-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 1rem 0;
}
.search-results-wrapper .search-results-header h4 {
  float: left;
  margin: 0;
}
.search-results-wrapper .search-results-header div.no-results {
  margin: 0 auto;
  float: none;
}
.search-results-wrapper .search-results-header div.no-results h4 {
  width: 100%;
}
.search-results-wrapper .search-results-header .header-read-more {
  float: right;
}
.search-results-wrapper .search-result-highlight {
  font-weight: bold;
  text-decoration: underline;
}
.search-results-wrapper .each-search-result {
  margin-bottom: 1.25rem;
}
.search-results-wrapper .each-search-result h3 {
  margin: 0;
}
.search-results-wrapper .each-search-result h3 a:link {
  color: #000;
}
.search-results-wrapper .each-search-result h3 a:link:hover, .search-results-wrapper .each-search-result h3 a:link:focus {
  color: #330033;
}

.each-thumb {
  position: relative;
}

/******************************************************************
SUBWAY CHUNKS CSS
******************************************************************/
.hunks-wrapper {
  float: right;
}
.hunks-wrapper .text-wrapper {
  float: left;
  margin: 0px;
}
@media only screen and (max-width: 767px) {
  .hunks-wrapper.m-6of7 {
    width: 91%;
  }
}

.load-previous {
  padding: 1.5rem 0;
  text-align: center;
  float: right;
}

.subway-wrapper .sj-subway {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.subway-wrapper .hunks-wrapper {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.subway-wrapper .hunks-wrapper .each-hunk {
  float: right;
  position: relative;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
  opacity: 0;
  -webkit-animation: fade_in 0.5s forwards;
          animation: fade_in 0.5s forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.subway-wrapper .hunks-wrapper .each-hunk:first-child {
  padding-top: 0;
}
.subway-wrapper .hunks-wrapper .each-hunk:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.subway-wrapper .hunks-wrapper .each-hunk:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.subway-wrapper .hunks-wrapper .each-hunk:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.subway-wrapper .hunks-wrapper .each-hunk:nth-child(4) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.subway-wrapper .hunks-wrapper .each-hunk:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.subway-wrapper .hunks-wrapper .each-hunk::after {
  content: "";
  width: 80px;
  height: 1px;
  background: #757575;
  left: 0;
  bottom: 0;
  position: absolute;
}
.subway-wrapper .hunks-wrapper .each-hunk:last-of-type::after {
  display: none;
}
.subway-wrapper .map-wrapper {
  max-height: 80vh;
  position: sticky;
  top: 10vh;
  padding-right: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .subway-wrapper .map-wrapper.m-1of7 {
    width: 9%;
  }
}
@media only screen and (min-width: 768px) {
  .subway-wrapper .map-wrapper {
    padding-right: 1.5rem;
  }
}
@-moz-document url-prefix() {
  .subway-wrapper .map-wrapper {
    top: 16vh;
  }
}
@media \0 screen\,screen\9  {
  .subway-wrapper .map-wrapper.fixed {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    width: auto;
    -webkit-transition: 0.25s ease-in-out opacity;
    transition: 0.25s ease-in-out opacity;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  .subway-wrapper .map-wrapper.fixed {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    width: auto;
    -webkit-transition: 0.25s ease-in-out opacity;
    transition: 0.25s ease-in-out opacity;
  }
}
.subway-wrapper .map-wrapper .map-bg {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media \0 screen\,screen\9  {
  .subway-wrapper .map-wrapper .map-bg {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  .subway-wrapper .map-wrapper .map-bg {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.subway-wrapper .map-wrapper .map-bg::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: auto;
  right: 10px;
  background: #757575;
}
@media \0 screen\,screen\9  {
  .subway-wrapper .map-wrapper .map-bg::after {
    height: auto;
    top: 0;
    bottom: 0;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  .subway-wrapper .map-wrapper .map-bg::after {
    height: auto;
    top: 0;
    bottom: 0;
  }
}
.subway-wrapper .map-wrapper .each-subway-map {
  cursor: pointer;
  width: 100%;
  color: #B3B3B3;
  position: relative;
  -webkit-box-flex: 0.001;
      -ms-flex-positive: 0.001;
          flex-grow: 0.001;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media \0 screen\,screen\9  {
  .subway-wrapper .map-wrapper .each-subway-map {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .subway-wrapper .map-wrapper .each-subway-map:last-of-type, .subway-wrapper .map-wrapper .each-subway-map:last-of-type.active {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  .subway-wrapper .map-wrapper .each-subway-map {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .subway-wrapper .map-wrapper .each-subway-map:last-of-type, .subway-wrapper .map-wrapper .each-subway-map:last-of-type.active {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
.subway-wrapper .map-wrapper .each-subway-map:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.subway-wrapper .map-wrapper .each-subway-map:first-of-type .subway-map-title {
  z-index: 9;
}
.subway-wrapper .map-wrapper .each-subway-map:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.subway-wrapper .map-wrapper .each-subway-map:last-of-type .subway-map-title {
  z-index: 9;
}
@media only screen and (max-width: 481px) {
  .subway-wrapper .map-wrapper .each-subway-map.active .subway-map-styling::before {
    right: 5px;
  }
}
.subway-wrapper .map-wrapper .each-subway-map .subway-map-styling {
  margin: 0 auto;
  text-align: left;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  width: 100%;
  min-height: 28px;
}
.subway-wrapper .map-wrapper .each-subway-map .subway-map-styling::before {
  content: "";
  position: absolute;
  margin: auto;
  right: 6px;
  top: 0;
  bottom: 0;
  left: auto;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid #757575;
  z-index: 4;
}
@media only screen and (min-width: 768px) {
  .subway-wrapper .map-wrapper .each-subway-map .subway-map-styling::before {
    right: 0;
    width: 20px;
    height: 20px;
  }
}
@media only screen and (min-width: 1030px) {
  .subway-wrapper .map-wrapper .each-subway-map .subway-map-styling::before {
    right: 0;
  }
}
@media only screen and (min-width: 1030px) {
  .subway-wrapper .map-wrapper .each-subway-map .subway-map-styling::before {
    right: 0;
  }
}
.subway-wrapper .map-wrapper .each-subway-map .subway-map-styling::after {
  content: "";
  position: absolute;
  margin: auto;
  right: -4px;
  top: 0;
  bottom: 0;
  left: auto;
  border-radius: 50%;
  width: 20px;
  height: 10px;
  background: #fff;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .subway-wrapper .map-wrapper .each-subway-map .subway-map-styling::after {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (min-width: 1030px) {
  .subway-wrapper .map-wrapper .each-subway-map .subway-map-styling::after {
    right: -4px;
  }
}
@media only screen and (min-width: 1030px) {
  .subway-wrapper .map-wrapper .each-subway-map .subway-map-styling::after {
    right: -4px;
  }
}
.subway-wrapper .map-wrapper .each-subway-map .subway-map-styling .subway-map-title {
  position: relative;
  text-align: right;
  width: 100%;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 2.5em 5px 5px;
  display: none;
}
@media only screen and (min-width: 768px) {
  .subway-wrapper .map-wrapper .each-subway-map .subway-map-styling .subway-map-title {
    display: block;
  }
}
@media only screen and (min-width: 1030px) {
  .subway-wrapper .map-wrapper .each-subway-map .subway-map-styling .subway-map-title {
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 1030px) {
  .subway-wrapper .map-wrapper .each-subway-map .subway-map-styling .subway-map-title {
    font-size: 0.85rem;
  }
}
.subway-wrapper .map-wrapper .each-subway-map.no-animation {
  -webkit-transition: none;
  transition: none;
}
.subway-wrapper .map-wrapper .each-subway-map.active {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-transition: none;
  transition: none;
}
@media only screen and (max-width: 481px) {
  .subway-wrapper .map-wrapper .each-subway-map.active .subway-map-styling::before {
    border-width: 2px;
  }
}
.subway-wrapper .map-wrapper .each-subway-map.active, .subway-wrapper .map-wrapper .each-subway-map:hover {
  color: #000;
}
.subway-wrapper .map-wrapper .each-subway-map.active .subway-map-title::before, .subway-wrapper .map-wrapper .each-subway-map:hover .subway-map-title::before {
  border-color: #853795;
}

.comparison-wrapper .each-comparison {
  padding: 50px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  background: #fff;
  cursor: pointer;
}
.comparison-wrapper .each-comparison:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.comparison-wrapper .each-comparison p:last-of-type {
  margin-bottom: 0;
}

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

.pagination {
  text-align: center;
  width: 100%;
}
.pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #757575;
}
.pagination li:last-child {
  border-right: none;
}
.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: block;
  color: #853795;
}
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
  background-color: #853795;
  color: #fff;
}
.pagination .current {
  cursor: default;
  color: #000;
}
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #000;
}
.search-results .pagination,
.search-results .pagination ul,
.search-results .pagination ul.page-numbers {
  margin-left: auto;
  margin-right: auto;
}
.search-results .pagination li,
.search-results .pagination ul li,
.search-results .pagination ul.page-numbers li {
  padding: 0;
}

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left;
}
.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/*********************
TEXT ALIGNS
*********************/
.text-center {
  text-align: center;
}

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

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

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

/*********************
NO MARGINS
*********************/
.no-margin, .no-margins {
  margin: 0 !important;
}

.no-margin-top, .no-top-margin {
  margin-top: 0 !important;
}

.no-margin-right, .no-right-margin {
  margin-right: 0 !important;
}

.no-margin-bottom, .no-bottom-margin {
  margin-bottom: 0 !important;
}

.no-margin-left, .no-left-margin {
  margin-left: 0 !important;
}

/*********************
FLOATS
*********************/
.float-right {
  float: right;
}

.float-left {
  float: left;
}

.float-none {
  float: none;
}

.clear-both {
  clear: both;
}

hr.clear-both {
  height: 0px;
  overflow: hidden;
  background: transparent;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  margin: 0;
}

/*********************
POSITION STICKY
*********************/
.sticky {
  position: fixed;
}
.sticky.sticky-fixed {
  position: fixed;
}

.mobile .sticky, .tablet .sticky, .firefox .sticky {
  position: -moz-sticky;
  position: -o-sticky;
  position: -ms-sticky;
  position: sticky;
}
.mobile .sticky.sticky-fixed, .tablet .sticky.sticky-fixed, .firefox .sticky.sticky-fixed {
  position: fixed;
}

/*********************
DISPLAYS
*********************/
.display-none {
  display: none;
}

.display-block {
  display: block;
}

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

.display-inline {
  display: inline;
}

.mobile-show, .m-show {
  display: block;
}

@media only screen and (min-width: 1030px) {
  .mobile-show, .m-show {
    display: none;
  }
}
@media only screen and (min-width: 1030px) {
  .mobile-show, .m-show {
    display: none;
  }
}
@media only screen and (max-width: 1030px) {
  .mobile-hide {
    display: none !important;
  }
  .m-hide {
    display: none;
  }
}
.flex-wrap, .flex-stretch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

.flex-nowrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

.flex-center, #action-menu div.g-btn, #action-menu div.comment-reply-link, #action-menu a.g-btn, #action-menu a.comment-reply-link, .flex-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-left, .flex-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

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

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

.flex-around, .flex-saround, .flex-space-around, .flex-sparound {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

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

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

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

.grid-container,
.acf-masonry-gallery {
  width: 100%;
  float: left;
  display: -ms-grid;
  display: grid;
  grid-auto-rows: 150px;
}
.grid-container .item,
.acf-masonry-gallery .item {
  padding: 0.125em 0.25em 0.125em 0;
}
.grid-container .item:nth-child(3n-1),
.acf-masonry-gallery .item:nth-child(3n-1) {
  padding: 0.125em;
}
.grid-container .item:nth-child(3n),
.acf-masonry-gallery .item:nth-child(3n) {
  padding: 0.125em 0 0.125em 0.25em;
}
.grid-container .item a,
.acf-masonry-gallery .item a {
  text-decoration: none;
}
.grid-container .item img,
.acf-masonry-gallery .item img {
  margin: 0;
}
.grid-container .item.long,
.acf-masonry-gallery .item.long {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.grid-container .item.tall,
.acf-masonry-gallery .item.tall {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.grid-container .gallery-item,
.acf-masonry-gallery .gallery-item {
  display: block;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.grid-container .gallery-item .gallery-item-height,
.acf-masonry-gallery .gallery-item .gallery-item-height {
  display: table;
  padding-bottom: 100%;
}
.grid-container .gallery-item .gallery-item-height.desktop-height,
.acf-masonry-gallery .gallery-item .gallery-item-height.desktop-height {
  display: table;
}
.grid-container .gallery-item .gallery-item-height.tablet-height, .grid-container .gallery-item .gallery-item-height.mobile-height,
.acf-masonry-gallery .gallery-item .gallery-item-height.tablet-height,
.acf-masonry-gallery .gallery-item .gallery-item-height.mobile-height {
  display: none;
}
@media only screen and (max-width: 768px) {
  .grid-container .gallery-item .gallery-item-height.desktop-height, .grid-container .gallery-item .gallery-item-height.mobile-height,
  .acf-masonry-gallery .gallery-item .gallery-item-height.desktop-height,
  .acf-masonry-gallery .gallery-item .gallery-item-height.mobile-height {
    display: none;
  }
  .grid-container .gallery-item .gallery-item-height.tablet-height,
  .acf-masonry-gallery .gallery-item .gallery-item-height.tablet-height {
    display: table;
  }
}
@media only screen and (max-width: 481px) {
  .grid-container .gallery-item .gallery-item-height.desktop-height, .grid-container .gallery-item .gallery-item-height.tablet-height,
  .acf-masonry-gallery .gallery-item .gallery-item-height.desktop-height,
  .acf-masonry-gallery .gallery-item .gallery-item-height.tablet-height {
    display: none;
  }
  .grid-container .gallery-item .gallery-item-height.mobile-height,
  .acf-masonry-gallery .gallery-item .gallery-item-height.mobile-height {
    display: table;
  }
}
.grid-container .gallery-item .overlay,
.acf-masonry-gallery .gallery-item .overlay {
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  color: #fff;
  font-size: 2em;
  -webkit-transition: 0.25s ease-in-out all, 0s 0.25s linear visibility;
  transition: 0.25s ease-in-out all, 0s 0.25s linear visibility;
}
.grid-container .gallery-item .overlay i,
.acf-masonry-gallery .gallery-item .overlay i {
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
  -webkit-animation-duration: 0.25s;
          animation-duration: 0.25s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.grid-container .gallery-item:hover .overlay,
.acf-masonry-gallery .gallery-item:hover .overlay {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.25s ease-in-out all, 0s linear visibility;
  transition: 0.25s ease-in-out all, 0s linear visibility;
}
.grid-container .gallery-item:hover .overlay i,
.acf-masonry-gallery .gallery-item:hover .overlay i {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}
.grid-container .gallery-item.item-column-2,
.acf-masonry-gallery .gallery-item.item-column-2 {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.grid-container .gallery-item.item-column-3,
.acf-masonry-gallery .gallery-item.item-column-3 {
  -ms-grid-column-span: 3;
  grid-column: span 3;
}
.grid-container .gallery-item.item-column-4,
.acf-masonry-gallery .gallery-item.item-column-4 {
  -ms-grid-column-span: 4;
  grid-column: span 4;
}
.grid-container .gallery-item.item-column-5,
.acf-masonry-gallery .gallery-item.item-column-5 {
  -ms-grid-column-span: 5;
  grid-column: span 5;
}
.grid-container .gallery-item.item-row-2,
.acf-masonry-gallery .gallery-item.item-row-2 {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.grid-container .gallery-item.item-row-3,
.acf-masonry-gallery .gallery-item.item-row-3 {
  -ms-grid-row-span: 3;
  grid-row: span 3;
}
.grid-container .gallery-item.item-row-4,
.acf-masonry-gallery .gallery-item.item-row-4 {
  -ms-grid-row-span: 4;
  grid-row: span 4;
}
.grid-container .gallery-item.item-row-5,
.acf-masonry-gallery .gallery-item.item-row-5 {
  -ms-grid-row-span: 5;
  grid-row: span 5;
}
.grid-container, .grid-container.grid-3,
.acf-masonry-gallery,
.acf-masonry-gallery.grid-3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 481px) {
  .grid-container, .grid-container.grid-3,
  .acf-masonry-gallery,
  .acf-masonry-gallery.grid-3 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .grid-container .gallery-item.item-column-2, .grid-container .gallery-item.item-column-3, .grid-container .gallery-item.item-column-4, .grid-container .gallery-item.item-column-5, .grid-container.grid-3 .gallery-item.item-column-2, .grid-container.grid-3 .gallery-item.item-column-3, .grid-container.grid-3 .gallery-item.item-column-4, .grid-container.grid-3 .gallery-item.item-column-5,
  .acf-masonry-gallery .gallery-item.item-column-2,
  .acf-masonry-gallery .gallery-item.item-column-3,
  .acf-masonry-gallery .gallery-item.item-column-4,
  .acf-masonry-gallery .gallery-item.item-column-5,
  .acf-masonry-gallery.grid-3 .gallery-item.item-column-2,
  .acf-masonry-gallery.grid-3 .gallery-item.item-column-3,
  .acf-masonry-gallery.grid-3 .gallery-item.item-column-4,
  .acf-masonry-gallery.grid-3 .gallery-item.item-column-5 {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
  .grid-container .gallery-item.item-row-2, .grid-container .gallery-item.item-row-3, .grid-container .gallery-item.item-row-4, .grid-container .gallery-item.item-row-5, .grid-container.grid-3 .gallery-item.item-row-2, .grid-container.grid-3 .gallery-item.item-row-3, .grid-container.grid-3 .gallery-item.item-row-4, .grid-container.grid-3 .gallery-item.item-row-5,
  .acf-masonry-gallery .gallery-item.item-row-2,
  .acf-masonry-gallery .gallery-item.item-row-3,
  .acf-masonry-gallery .gallery-item.item-row-4,
  .acf-masonry-gallery .gallery-item.item-row-5,
  .acf-masonry-gallery.grid-3 .gallery-item.item-row-2,
  .acf-masonry-gallery.grid-3 .gallery-item.item-row-3,
  .acf-masonry-gallery.grid-3 .gallery-item.item-row-4,
  .acf-masonry-gallery.grid-3 .gallery-item.item-row-5 {
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
}
.grid-container.grid-1,
.acf-masonry-gallery.grid-1 {
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.grid-container.grid-1 .gallery-item.item-column-2, .grid-container.grid-1 .gallery-item.item-column-3, .grid-container.grid-1 .gallery-item.item-column-4, .grid-container.grid-1 .gallery-item.item-column-5,
.acf-masonry-gallery.grid-1 .gallery-item.item-column-2,
.acf-masonry-gallery.grid-1 .gallery-item.item-column-3,
.acf-masonry-gallery.grid-1 .gallery-item.item-column-4,
.acf-masonry-gallery.grid-1 .gallery-item.item-column-5 {
  -ms-grid-column-span: 1;
  grid-column: span 1;
}
.grid-container.grid-1 .gallery-item.item-row-2, .grid-container.grid-1 .gallery-item.item-row-3, .grid-container.grid-1 .gallery-item.item-row-4, .grid-container.grid-1 .gallery-item.item-row-5,
.acf-masonry-gallery.grid-1 .gallery-item.item-row-2,
.acf-masonry-gallery.grid-1 .gallery-item.item-row-3,
.acf-masonry-gallery.grid-1 .gallery-item.item-row-4,
.acf-masonry-gallery.grid-1 .gallery-item.item-row-5 {
  -ms-grid-row-span: 1;
  grid-row: span 1;
}
.grid-container.grid-2,
.acf-masonry-gallery.grid-2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 481px) {
  .grid-container.grid-2,
  .acf-masonry-gallery.grid-2 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .grid-container.grid-2 .gallery-item.item-column-2, .grid-container.grid-2 .gallery-item.item-column-3, .grid-container.grid-2 .gallery-item.item-column-4, .grid-container.grid-2 .gallery-item.item-column-5,
  .acf-masonry-gallery.grid-2 .gallery-item.item-column-2,
  .acf-masonry-gallery.grid-2 .gallery-item.item-column-3,
  .acf-masonry-gallery.grid-2 .gallery-item.item-column-4,
  .acf-masonry-gallery.grid-2 .gallery-item.item-column-5 {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
  .grid-container.grid-2 .gallery-item.item-row-2, .grid-container.grid-2 .gallery-item.item-row-3, .grid-container.grid-2 .gallery-item.item-row-4, .grid-container.grid-2 .gallery-item.item-row-5,
  .acf-masonry-gallery.grid-2 .gallery-item.item-row-2,
  .acf-masonry-gallery.grid-2 .gallery-item.item-row-3,
  .acf-masonry-gallery.grid-2 .gallery-item.item-row-4,
  .acf-masonry-gallery.grid-2 .gallery-item.item-row-5 {
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
}
.grid-container.grid-4,
.acf-masonry-gallery.grid-4 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 768px) {
  .grid-container.grid-4,
  .acf-masonry-gallery.grid-4 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-container.grid-4 .gallery-item.item-column-3, .grid-container.grid-4 .gallery-item.item-column-4, .grid-container.grid-4 .gallery-item.item-column-5,
  .acf-masonry-gallery.grid-4 .gallery-item.item-column-3,
  .acf-masonry-gallery.grid-4 .gallery-item.item-column-4,
  .acf-masonry-gallery.grid-4 .gallery-item.item-column-5 {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
  .grid-container.grid-4 .gallery-item.item-row-3, .grid-container.grid-4 .gallery-item.item-row-4, .grid-container.grid-4 .gallery-item.item-row-5,
  .acf-masonry-gallery.grid-4 .gallery-item.item-row-3,
  .acf-masonry-gallery.grid-4 .gallery-item.item-row-4,
  .acf-masonry-gallery.grid-4 .gallery-item.item-row-5 {
    -ms-grid-row-span: 2;
    grid-row: span 2;
  }
}
@media only screen and (max-width: 481px) {
  .grid-container.grid-4,
  .acf-masonry-gallery.grid-4 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .grid-container.grid-4 .gallery-item.item-column-2, .grid-container.grid-4 .gallery-item.item-column-3, .grid-container.grid-4 .gallery-item.item-column-4, .grid-container.grid-4 .gallery-item.item-column-5,
  .acf-masonry-gallery.grid-4 .gallery-item.item-column-2,
  .acf-masonry-gallery.grid-4 .gallery-item.item-column-3,
  .acf-masonry-gallery.grid-4 .gallery-item.item-column-4,
  .acf-masonry-gallery.grid-4 .gallery-item.item-column-5 {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
  .grid-container.grid-4 .gallery-item.item-row-2, .grid-container.grid-4 .gallery-item.item-row-3, .grid-container.grid-4 .gallery-item.item-row-4, .grid-container.grid-4 .gallery-item.item-row-5,
  .acf-masonry-gallery.grid-4 .gallery-item.item-row-2,
  .acf-masonry-gallery.grid-4 .gallery-item.item-row-3,
  .acf-masonry-gallery.grid-4 .gallery-item.item-row-4,
  .acf-masonry-gallery.grid-4 .gallery-item.item-row-5 {
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
}
.grid-container.grid-5,
.acf-masonry-gallery.grid-5 {
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
}
@media only screen and (max-width: 768px) {
  .grid-container.grid-5,
  .acf-masonry-gallery.grid-5 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-container.grid-5 .gallery-item.item-column-4, .grid-container.grid-5 .gallery-item.item-column-5,
  .acf-masonry-gallery.grid-5 .gallery-item.item-column-4,
  .acf-masonry-gallery.grid-5 .gallery-item.item-column-5 {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }
  .grid-container.grid-5 .gallery-item.item-row-4, .grid-container.grid-5 .gallery-item.item-row-5,
  .acf-masonry-gallery.grid-5 .gallery-item.item-row-4,
  .acf-masonry-gallery.grid-5 .gallery-item.item-row-5 {
    -ms-grid-row-span: 3;
    grid-row: span 3;
  }
}
@media only screen and (max-width: 481px) {
  .grid-container.grid-5,
  .acf-masonry-gallery.grid-5 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .grid-container.grid-5 .gallery-item.item-column-2, .grid-container.grid-5 .gallery-item.item-column-3, .grid-container.grid-5 .gallery-item.item-column-4, .grid-container.grid-5 .gallery-item.item-column-5,
  .acf-masonry-gallery.grid-5 .gallery-item.item-column-2,
  .acf-masonry-gallery.grid-5 .gallery-item.item-column-3,
  .acf-masonry-gallery.grid-5 .gallery-item.item-column-4,
  .acf-masonry-gallery.grid-5 .gallery-item.item-column-5 {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
  .grid-container.grid-5 .gallery-item.item-row-2, .grid-container.grid-5 .gallery-item.item-row-3, .grid-container.grid-5 .gallery-item.item-row-4, .grid-container.grid-5 .gallery-item.item-row-5,
  .acf-masonry-gallery.grid-5 .gallery-item.item-row-2,
  .acf-masonry-gallery.grid-5 .gallery-item.item-row-3,
  .acf-masonry-gallery.grid-5 .gallery-item.item-row-4,
  .acf-masonry-gallery.grid-5 .gallery-item.item-row-5 {
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
}
.grid-container.grid-fill,
.acf-masonry-gallery.grid-fill {
  -ms-grid-columns: 40px 50px auto 50px 40px;
  grid-template-columns: 40px 50px auto 50px 40px;
}
.grid-container.grid-fit,
.acf-masonry-gallery.grid-fit {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

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

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

.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://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
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://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.g-btn, .comment-reply-link,
input.button,
input.button:visited,
.button,
.button:visited,
.btn,
#submit,
.btn:visited,
button,
button:visited,
input[type=image],
input[type=image]:visited,
input[type=submit],
input[type=submit]:visited,
input[type=button],
input[type=button]:visited {
  display: inline-block;
  position: relative;
  font-family: proxima-nova, Helvetica, Arial, sans-serif;
  text-decoration: none;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  padding: 0.25em 0.5em;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}
.disabled.g-btn, .disabled.comment-reply-link, [disabled].g-btn, [disabled].comment-reply-link,
input.button.disabled,
input.button[disabled],
input.button:visited.disabled,
input.button:visited[disabled],
.button.disabled,
.button[disabled],
.button:visited.disabled,
.button:visited[disabled],
.btn.disabled,
.disabled#submit,
.btn[disabled],
[disabled]#submit,
.btn:visited.disabled,
.btn:visited[disabled],
button.disabled,
button[disabled],
button:visited.disabled,
button:visited[disabled],
input[type=image].disabled,
input[type=image][disabled],
input[type=image]:visited.disabled,
input[type=image]:visited[disabled],
input[type=submit].disabled,
input[type=submit][disabled],
input[type=submit]:visited.disabled,
input[type=submit]:visited[disabled],
input[type=button].disabled,
input[type=button][disabled],
input[type=button]:visited.disabled,
input[type=button]:visited[disabled] {
  opacity: 0.7;
  cursor: no-drop;
  cursor: not-allowed;
}
.disabled.g-btn:before, .disabled.comment-reply-link:before, [disabled].g-btn:before, [disabled].comment-reply-link:before,
input.button.disabled:before,
input.button[disabled]:before,
input.button:visited.disabled:before,
input.button:visited[disabled]:before,
.button.disabled:before,
.button[disabled]:before,
.button:visited.disabled:before,
.button:visited[disabled]:before,
.btn.disabled:before,
.disabled#submit:before,
.btn[disabled]:before,
[disabled]#submit:before,
.btn:visited.disabled:before,
.btn:visited[disabled]:before,
button.disabled:before,
button[disabled]:before,
button:visited.disabled:before,
button:visited[disabled]:before,
input[type=image].disabled:before,
input[type=image][disabled]:before,
input[type=image]:visited.disabled:before,
input[type=image]:visited[disabled]:before,
input[type=submit].disabled:before,
input[type=submit][disabled]:before,
input[type=submit]:visited.disabled:before,
input[type=submit]:visited[disabled]:before,
input[type=button].disabled:before,
input[type=button][disabled]:before,
input[type=button]:visited.disabled:before,
input[type=button]:visited[disabled]:before {
  display: none;
}
.disabled.g-btn span, .disabled.comment-reply-link span, [disabled].g-btn span, [disabled].comment-reply-link span,
input.button.disabled span,
input.button[disabled] span,
input.button:visited.disabled span,
input.button:visited[disabled] span,
.button.disabled span,
.button[disabled] span,
.button:visited.disabled span,
.button:visited[disabled] span,
.btn.disabled span,
.disabled#submit span,
.btn[disabled] span,
[disabled]#submit span,
.btn:visited.disabled span,
.btn:visited[disabled] span,
button.disabled span,
button[disabled] span,
button:visited.disabled span,
button:visited[disabled] span,
input[type=image].disabled span,
input[type=image][disabled] span,
input[type=image]:visited.disabled span,
input[type=image]:visited[disabled] span,
input[type=submit].disabled span,
input[type=submit][disabled] span,
input[type=submit]:visited.disabled span,
input[type=submit]:visited[disabled] span,
input[type=button].disabled span,
input[type=button][disabled] span,
input[type=button]:visited.disabled span,
input[type=button]:visited[disabled] span {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.disabled.g-btn, .disabled.comment-reply-link, .disabled.g-btn:hover, .disabled.comment-reply-link:hover, .disabled.g-btn:focus, .disabled.comment-reply-link:focus, [disabled].g-btn, [disabled].comment-reply-link, [disabled].g-btn:hover, [disabled].comment-reply-link:hover, [disabled].g-btn:focus, [disabled].comment-reply-link:focus, .g-btn:visited.disabled, .comment-reply-link:visited.disabled, .g-btn:visited.disabled:hover, .comment-reply-link:visited.disabled:hover, .g-btn:visited.disabled:focus, .comment-reply-link:visited.disabled:focus, .g-btn:visited[disabled], .comment-reply-link:visited[disabled], .g-btn:visited[disabled]:hover, .comment-reply-link:visited[disabled]:hover, .g-btn:visited[disabled]:focus, .comment-reply-link:visited[disabled]:focus,
input.button.disabled,
input.button.disabled:hover,
input.button.disabled:focus,
input.button[disabled],
input.button[disabled]:hover,
input.button[disabled]:focus,
input.button:visited.disabled,
input.button:visited.disabled:hover,
input.button:visited.disabled:focus,
input.button:visited[disabled],
input.button:visited[disabled]:hover,
input.button:visited[disabled]:focus,
.button.disabled,
.button.disabled:hover,
.button.disabled:focus,
.button[disabled],
.button[disabled]:hover,
.button[disabled]:focus,
.button:visited.disabled,
.button:visited.disabled:hover,
.button:visited.disabled:focus,
.button:visited[disabled],
.button:visited[disabled]:hover,
.button:visited[disabled]:focus,
.btn.disabled,
.disabled#submit,
.btn.disabled:hover,
.disabled#submit:hover,
.btn.disabled:focus,
.disabled#submit:focus,
.btn[disabled],
[disabled]#submit,
.btn[disabled]:hover,
[disabled]#submit:hover,
.btn[disabled]:focus,
[disabled]#submit:focus,
.btn:visited.disabled,
#submit:visited.disabled,
.btn:visited.disabled:hover,
#submit:visited.disabled:hover,
.btn:visited.disabled:focus,
#submit:visited.disabled:focus,
.btn:visited[disabled],
#submit:visited[disabled],
.btn:visited[disabled]:hover,
#submit:visited[disabled]:hover,
.btn:visited[disabled]:focus,
#submit:visited[disabled]:focus,
button.disabled,
button.disabled:hover,
button.disabled:focus,
button[disabled],
button[disabled]:hover,
button[disabled]:focus,
button:visited.disabled,
button:visited.disabled:hover,
button:visited.disabled:focus,
button:visited[disabled],
button:visited[disabled]:hover,
button:visited[disabled]:focus,
input[type=image].disabled,
input[type=image].disabled:hover,
input[type=image].disabled:focus,
input[type=image][disabled],
input[type=image][disabled]:hover,
input[type=image][disabled]:focus,
input[type=image]:visited.disabled,
input[type=image]:visited.disabled:hover,
input[type=image]:visited.disabled:focus,
input[type=image]:visited[disabled],
input[type=image]:visited[disabled]:hover,
input[type=image]:visited[disabled]:focus,
input[type=submit].disabled,
input[type=submit].disabled:hover,
input[type=submit].disabled:focus,
input[type=submit][disabled],
input[type=submit][disabled]:hover,
input[type=submit][disabled]:focus,
input[type=submit]:visited.disabled,
input[type=submit]:visited.disabled:hover,
input[type=submit]:visited.disabled:focus,
input[type=submit]:visited[disabled],
input[type=submit]:visited[disabled]:hover,
input[type=submit]:visited[disabled]:focus,
input[type=button].disabled,
input[type=button].disabled:hover,
input[type=button].disabled:focus,
input[type=button][disabled],
input[type=button][disabled]:hover,
input[type=button][disabled]:focus,
input[type=button]:visited.disabled,
input[type=button]:visited.disabled:hover,
input[type=button]:visited.disabled:focus,
input[type=button]:visited[disabled],
input[type=button]:visited[disabled]:hover,
input[type=button]:visited[disabled]:focus {
  color: #CCCCCC;
}
.g-btn:hover, .comment-reply-link:hover, .g-btn:focus, .comment-reply-link:focus,
input.button:hover,
input.button:focus,
input.button:visited:hover,
input.button:visited:focus,
.button:hover,
.button:focus,
.button:visited:hover,
.button:visited:focus,
.btn:hover,
#submit:hover,
.btn:focus,
#submit:focus,
.btn:visited:hover,
.btn:visited:focus,
button:hover,
button:focus,
button:visited:hover,
button:visited:focus,
input[type=image]:hover,
input[type=image]:focus,
input[type=image]:visited:hover,
input[type=image]:visited:focus,
input[type=submit]:hover,
input[type=submit]:focus,
input[type=submit]:visited:hover,
input[type=submit]:visited:focus,
input[type=button]:hover,
input[type=button]:focus,
input[type=button]:visited:hover,
input[type=button]:visited:focus {
  color: #fff;
  background-color: #853795;
  text-decoration: none;
  outline: none;
}
.g-btn:active, .comment-reply-link:active,
input.button:active,
input.button:visited:active,
.button:active,
.button:visited:active,
.btn:active,
#submit:active,
.btn:visited:active,
button:active,
button:visited:active,
input[type=image]:active,
input[type=image]:visited:active,
input[type=submit]:active,
input[type=submit]:visited:active,
input[type=button]:active,
input[type=button]:visited:active {
  top: 1px;
  background-color: #642970;
}
.minion.g-btn, .minion.comment-reply-link,
input.button.minion,
.button.minion,
.btn.minion,
.minion#submit,
button.minion,
input[type=image].minion,
input[type=submit].minion,
input[type=button].minion {
  padding: 0.25em 0.5em;
}
.boss.g-btn, .boss.comment-reply-link,
input.button.boss,
.button.boss,
.btn.boss,
.boss#submit,
button.boss,
input[type=image].boss,
input[type=submit].boss,
input[type=button].boss {
  padding: 0.75em 3em;
}

.g-btn, .comment-reply-link {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.85rem;
}
.g-btn:hover, .comment-reply-link:hover, .g-btn:focus, .comment-reply-link:focus {
  border-color: #853795;
  background-color: #853795;
  color: #fff;
}
.g-btn:visited, .comment-reply-link:visited {
  border-color: #853795;
  color: #853795;
  background: #fff;
}
.g-btn:active, .comment-reply-link:active, .g-btn.active, .active.comment-reply-link {
  top: 1px;
  background-color: #642970;
  border-color: #642970;
}
.g-btn.minion, .minion.comment-reply-link {
  padding: 0.25em 0.5em;
}
.g-btn.boss, .boss.comment-reply-link {
  padding: 0.75em 3em;
}

.arrow-btn {
  display: inline-block;
  position: relative;
  font-family: proxima-nova, Helvetica, Arial, sans-serif;
  text-decoration: none;
  padding: 0.25em 0.5em;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
  background-color: #fff;
  color: #000;
  width: 100%;
  float: left;
  margin-bottom: 1rem;
  padding-left: 0;
  padding-right: 0;
  font-weight: normal;
}
.arrow-btn.disabled, .arrow-btn[disabled] {
  opacity: 0.7;
  cursor: no-drop;
  cursor: not-allowed;
}
.arrow-btn.disabled:before, .arrow-btn[disabled]:before {
  display: none;
}
.arrow-btn.disabled span, .arrow-btn[disabled] span {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.arrow-btn.disabled, .arrow-btn.disabled:hover, .arrow-btn.disabled:focus, .arrow-btn[disabled], .arrow-btn[disabled]:hover, .arrow-btn[disabled]:focus {
  color: #CCCCCC;
}
.arrow-btn:visited {
  color: #000;
  background: #fff;
}
.arrow-btn:after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f061";
  float: right;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
.arrow-btn:hover, .arrow-btn:focus {
  background: #fff;
  color: #330033;
  font-weight: 700;
}
.arrow-btn:hover:after, .arrow-btn:focus:after {
  font-weight: 700;
  color: #330033;
}
.arrow-btn:active, .arrow-btn.active {
  top: 1px;
}
.arrow-btn.minion {
  padding: 0.25em 0.5em;
}
.arrow-btn.boss {
  padding: 0.75em 3em;
}

/******************************************************************
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
*********************/
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,
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select]) {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  vertical-align: middle;
  padding: 0.625em 0.5em 0.625em 0.5em;
  border: 1px solid #757575;
  width: 100%;
  min-height: 30px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  color: #000;
  font-size: 1em;
  font-family: proxima-nova, Helvetica, Arial, sans-serif;
  line-height: 1em;
  z-index: 2;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
input[type=text]:focus, input[type=text]:active, input[type=text].active,
input[type=password]:focus,
input[type=password]:active,
input[type=password].active,
input[type=datetime]:focus,
input[type=datetime]:active,
input[type=datetime].active,
input[type=datetime-local]:focus,
input[type=datetime-local]:active,
input[type=datetime-local].active,
input[type=date]:focus,
input[type=date]:active,
input[type=date].active,
input[type=month]:focus,
input[type=month]:active,
input[type=month].active,
input[type=time]:focus,
input[type=time]:active,
input[type=time].active,
input[type=week]:focus,
input[type=week]:active,
input[type=week].active,
input[type=number]:focus,
input[type=number]:active,
input[type=number].active,
input[type=email]:focus,
input[type=email]:active,
input[type=email].active,
input[type=url]:focus,
input[type=url]:active,
input[type=url].active,
input[type=search]:focus,
input[type=search]:active,
input[type=search].active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=tel].active,
input[type=color]:focus,
input[type=color]:active,
input[type=color].active,
select:focus,
select:active,
select.active,
textarea:focus,
textarea:active,
textarea.active,
.field:focus,
.field:active,
.field.active,
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select]):focus,
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select]):active,
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select]).active {
  border-color: #853795;
  outline: none;
  padding: 0.25em 0.5em 1em 0.5em;
}
input[type=text]:focus + label, input[type=text]:active + label, input[type=text].active + label,
input[type=password]:focus + label,
input[type=password]:active + label,
input[type=password].active + label,
input[type=datetime]:focus + label,
input[type=datetime]:active + label,
input[type=datetime].active + label,
input[type=datetime-local]:focus + label,
input[type=datetime-local]:active + label,
input[type=datetime-local].active + label,
input[type=date]:focus + label,
input[type=date]:active + label,
input[type=date].active + label,
input[type=month]:focus + label,
input[type=month]:active + label,
input[type=month].active + label,
input[type=time]:focus + label,
input[type=time]:active + label,
input[type=time].active + label,
input[type=week]:focus + label,
input[type=week]:active + label,
input[type=week].active + label,
input[type=number]:focus + label,
input[type=number]:active + label,
input[type=number].active + label,
input[type=email]:focus + label,
input[type=email]:active + label,
input[type=email].active + label,
input[type=url]:focus + label,
input[type=url]:active + label,
input[type=url].active + label,
input[type=search]:focus + label,
input[type=search]:active + label,
input[type=search].active + label,
input[type=tel]:focus + label,
input[type=tel]:active + label,
input[type=tel].active + label,
input[type=color]:focus + label,
input[type=color]:active + label,
input[type=color].active + label,
select:focus + label,
select:active + label,
select.active + label,
textarea:focus + label,
textarea:active + label,
textarea.active + label,
.field:focus + label,
.field:active + label,
.field.active + label,
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select]):focus + label,
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select]):active + label,
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select]).active + label {
  color: #000;
  font-size: 70%;
  padding: 1px 6px;
  z-index: 3;
  text-transform: uppercase;
  top: 100%;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  text-align: right;
}
input[type=text] label,
input[type=password] label,
input[type=datetime] label,
input[type=datetime-local] label,
input[type=date] label,
input[type=month] label,
input[type=time] label,
input[type=week] label,
input[type=number] label,
input[type=email] label,
input[type=url] label,
input[type=search] label,
input[type=tel] label,
input[type=color] label,
select label,
textarea label,
.field label,
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select]) label {
  z-index: 1;
}
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,
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select]).error,
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select]).is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  outline-color: #fbe3e4;
}
input[type=text].success, input[type=text].is-valid,
input[type=password].success,
input[type=password].is-valid,
input[type=datetime].success,
input[type=datetime].is-valid,
input[type=datetime-local].success,
input[type=datetime-local].is-valid,
input[type=date].success,
input[type=date].is-valid,
input[type=month].success,
input[type=month].is-valid,
input[type=time].success,
input[type=time].is-valid,
input[type=week].success,
input[type=week].is-valid,
input[type=number].success,
input[type=number].is-valid,
input[type=email].success,
input[type=email].is-valid,
input[type=url].success,
input[type=url].is-valid,
input[type=search].success,
input[type=search].is-valid,
input[type=tel].success,
input[type=tel].is-valid,
input[type=color].success,
input[type=color].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid,
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select]).success,
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select]).is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  outline-color: #e6efc2;
}
input[type=text][disabled], input[type=text].is-disabled,
input[type=password][disabled],
input[type=password].is-disabled,
input[type=datetime][disabled],
input[type=datetime].is-disabled,
input[type=datetime-local][disabled],
input[type=datetime-local].is-disabled,
input[type=date][disabled],
input[type=date].is-disabled,
input[type=month][disabled],
input[type=month].is-disabled,
input[type=time][disabled],
input[type=time].is-disabled,
input[type=week][disabled],
input[type=week].is-disabled,
input[type=number][disabled],
input[type=number].is-disabled,
input[type=email][disabled],
input[type=email].is-disabled,
input[type=url][disabled],
input[type=url].is-disabled,
input[type=search][disabled],
input[type=search].is-disabled,
input[type=tel][disabled],
input[type=tel].is-disabled,
input[type=color][disabled],
input[type=color].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled,
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select])[disabled],
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select]).is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type=text][disabled]:focus, input[type=text][disabled]:active, input[type=text].is-disabled:focus, input[type=text].is-disabled:active,
input[type=password][disabled]:focus,
input[type=password][disabled]:active,
input[type=password].is-disabled:focus,
input[type=password].is-disabled:active,
input[type=datetime][disabled]:focus,
input[type=datetime][disabled]:active,
input[type=datetime].is-disabled:focus,
input[type=datetime].is-disabled:active,
input[type=datetime-local][disabled]:focus,
input[type=datetime-local][disabled]:active,
input[type=datetime-local].is-disabled:focus,
input[type=datetime-local].is-disabled:active,
input[type=date][disabled]:focus,
input[type=date][disabled]:active,
input[type=date].is-disabled:focus,
input[type=date].is-disabled:active,
input[type=month][disabled]:focus,
input[type=month][disabled]:active,
input[type=month].is-disabled:focus,
input[type=month].is-disabled:active,
input[type=time][disabled]:focus,
input[type=time][disabled]:active,
input[type=time].is-disabled:focus,
input[type=time].is-disabled:active,
input[type=week][disabled]:focus,
input[type=week][disabled]:active,
input[type=week].is-disabled:focus,
input[type=week].is-disabled:active,
input[type=number][disabled]:focus,
input[type=number][disabled]:active,
input[type=number].is-disabled:focus,
input[type=number].is-disabled:active,
input[type=email][disabled]:focus,
input[type=email][disabled]:active,
input[type=email].is-disabled:focus,
input[type=email].is-disabled:active,
input[type=url][disabled]:focus,
input[type=url][disabled]:active,
input[type=url].is-disabled:focus,
input[type=url].is-disabled:active,
input[type=search][disabled]:focus,
input[type=search][disabled]:active,
input[type=search].is-disabled:focus,
input[type=search].is-disabled:active,
input[type=tel][disabled]:focus,
input[type=tel][disabled]:active,
input[type=tel].is-disabled:focus,
input[type=tel].is-disabled:active,
input[type=color][disabled]:focus,
input[type=color][disabled]:active,
input[type=color].is-disabled:focus,
input[type=color].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active,
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select])[disabled]:focus,
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select])[disabled]:active,
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select]).is-disabled:focus,
#container .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([type=select]).is-disabled:active {
  background-color: #d5edf8;
}

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

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

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

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

fieldset.input-wrapper {
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0), screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  fieldset.input-wrapper {
    display: block;
  }
}
fieldset.input-wrapper label {
  -webkit-transition: background 0.2s, color 0.2s, top 0.2s, bottom 0.2s, right 0.2s, left 0.2s;
  transition: background 0.2s, color 0.2s, top 0.2s, bottom 0.2s, right 0.2s, left 0.2s;
  position: absolute;
  padding: 5px 4px;
  top: 0;
  width: 100%;
  z-index: -1;
}
fieldset.input-wrapper label.active {
  color: #000;
  font-size: 70%;
  padding: 1px 6px;
  z-index: 2;
  text-transform: uppercase;
  top: 100%;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  text-align: right;
}
fieldset.input-wrapper input[type=checkbox] + label,
fieldset.input-wrapper input[type=radio] + label {
  position: relative;
}
/*********************
GRAVITY FORMS
*********************/
#container .gform_wrapper .ginput_complex .ginput_left,
#container .gform_wrapper .ginput_complex .ginput_right {
  float: left;
}

#container .gform_wrapper .ginput_complex.ginput_container_address span.ginput_right + span.ginput_left {
  padding-right: 0px !important;
}

.gform_wrapper ul.gform_fields {
  margin: 0;
}
.gform_wrapper ul.gform_fields .ginput_full {
  margin-bottom: 0.75rem;
}
.gform_wrapper ul.gform_fields li.gfield {
  position: relative;
}
.gform_wrapper ul.gform_fields li.gfield.button-radio .gfield_radio li {
  display: inline-block;
}
.gform_wrapper ul.gform_fields li.gfield.button-radio ul.gfield_radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gform_wrapper ul.gform_fields li.gfield.button-radio input {
  display: none;
}
.gform_wrapper ul.gform_fields li.gfield.button-radio input:checked + label {
  background: #853795;
  border-color: #853795;
  color: #fff;
}
.gform_wrapper ul.gform_fields li.gfield.button-radio label {
  border: 2px solid #000;
  text-align: center;
  font-weight: bold;
  padding: 5px 10px;
  max-width: 100%;
  position: relative;
}
.gform_wrapper ul.gform_fields .ginput_container_checkbox input {
  margin-top: 0;
}
.gform_wrapper ul.gform_fields .ginput_container_checkbox label {
  position: relative;
}
.gform_wrapper select {
  min-height: 45px;
}
.gform_wrapper select option {
  min-height: 45px;
}
.gform_wrapper label {
  font-size: 0.85rem;
}
.gform_wrapper .ginput_container,
.gform_wrapper .ginput_container.ginput_complex {
  position: relative;
}
.gform_wrapper .ginput_container input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]).active,
.gform_wrapper .ginput_container.ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]).active {
  padding: 0.625em 0.5em 0.625em 0.5em !important;
}
.gform_wrapper .ginput_container input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus, .gform_wrapper .ginput_container input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):active,
.gform_wrapper .ginput_container.ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,
.gform_wrapper .ginput_container.ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):active {
  border-color: #853795;
  outline: none;
  padding: 0.625em 0.5em 0.625em 0.5em !important;
}
.gform_wrapper .ginput_container input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus + label, .gform_wrapper .ginput_container input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):active + label,
.gform_wrapper .ginput_container.ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus + label,
.gform_wrapper .ginput_container.ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):active + label {
  color: #000;
  font-size: 70%;
  padding: 1px 6px;
  z-index: 2;
  text-transform: uppercase;
  top: 100%;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  text-align: right;
}
.gform_wrapper .ginput_container .ginput_complex .ginput_full,
.gform_wrapper .ginput_container .ginput_complex .ginput_left,
.gform_wrapper .ginput_container .ginput_complex .ginput_right,
.gform_wrapper .ginput_container.ginput_complex .ginput_complex .ginput_full,
.gform_wrapper .ginput_container.ginput_complex .ginput_complex .ginput_left,
.gform_wrapper .ginput_container.ginput_complex .ginput_complex .ginput_right {
  min-height: 30px;
}
#gform_wrapper_44 {
  max-width: 500px;
  float: none;
  margin: auto;
}
#gform_wrapper_44 .gform_footer {
  text-align: center;
  line-height: 0;
}
#gform_wrapper_44 .field, #gform_wrapper_44 input, #gform_wrapper_44 label {
  max-width: 100%;
}

/*********************
SEARCH FORMS
*********************/
#searchform {
  margin: 1.5rem 0 0 0;
}

#onscreen-search-form,
#site-search-form,
#searchform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#onscreen-search-form input,
#site-search-form input,
#searchform input {
  margin: 0;
  border: 0;
  border-bottom: 1px solid #000;
}
#onscreen-search-form #onscreen-search-submit,
#onscreen-search-form #site-search-submit,
#onscreen-search-form #searchsubmit,
#site-search-form #onscreen-search-submit,
#site-search-form #site-search-submit,
#site-search-form #searchsubmit,
#searchform #onscreen-search-submit,
#searchform #site-search-submit,
#searchform #searchsubmit {
  padding: 0.25rem 0.5rem;
}
#onscreen-search-form #onscreen-search-submit,
#site-search-form #onscreen-search-submit,
#searchform #onscreen-search-submit {
  font-size: 1.5rem;
  width: 10vw;
  height: 7vh;
  background: #fff;
  color: #000;
  border: 1px solid #757575;
}
@media only screen and (min-width: 768px) {
  #onscreen-search-form #onscreen-search-submit,
  #site-search-form #onscreen-search-submit,
  #searchform #onscreen-search-submit {
    font-size: 0.85rem;
    width: auto;
    height: auto;
    border: 0;
    border-bottom: 1px solid #000;
  }
}
#onscreen-search-form #onscreen-search-submit.active,
#site-search-form #onscreen-search-submit.active,
#searchform #onscreen-search-submit.active {
  border: 2px solid #000;
}
@media only screen and (min-width: 768px) {
  #onscreen-search-form #onscreen-search-submit.active,
  #site-search-form #onscreen-search-submit.active,
  #searchform #onscreen-search-submit.active {
    border: 0;
    border-bottom: 1px solid #000;
  }
}

#site-search-form,
#searchform {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#onscreen-search-form {
  position: fixed;
  bottom: 7.5vh;
  right: 0;
  z-index: 11;
}
#onscreen-search-form input {
  display: none;
  border-radius: 0;
}
@media only screen and (min-width: 768px) {
  #onscreen-search-form {
    position: relative;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    bottom: 0;
    float: right;
  }
  #onscreen-search-form input {
    display: block;
    min-width: 150px;
  }
}

#site-search-form fieldset {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media only screen and (max-width: 1030px) {
  #site-search-form fieldset {
    width: 100%;
  }
}
#site-search-form #site-search-submit {
  padding: 0.5rem;
}

#loginform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 400px;
  margin: auto;
}
#loginform fieldset {
  width: 100%;
  margin: 0 0 0.75rem 0;
}

#onscreen-search-input {
  border-color: #CCCCCC;
}
@media only screen and (max-width: 1030px) {
  #onscreen-search-input {
    display: none;
  }
}

#site-search-input {
  min-width: 600px;
  width: 80%;
  border-color: #000;
  min-height: 40px;
}
@media only screen and (max-width: 1030px) {
  #site-search-input {
    min-width: 100%;
  }
}

#main .gform_wrapper .ginput_complex.ginput_container_address .ginput_right label {
  width: calc(100% - 8px);
}

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

Stylesheet: Owl Carousel

******************************************************************/
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated, .owl-carousel .post-wrapper, .owl-carousel #featured-content,
.owl-carousel #recent-news, .owl-carousel #home-filters .each-filter.loading::before, #home-filters .owl-carousel .each-filter.loading::before, .owl-carousel #home-news .each-news-post, #home-news .owl-carousel .each-news-post, .owl-carousel #columns-wrapper .each-column-item.visible, #columns-wrapper .owl-carousel .each-column-item.visible, .owl-carousel #contextual-footer-info .contextual-footer-content .each-footer-content.active, #contextual-footer-info .contextual-footer-content .owl-carousel .each-footer-content.active, .owl-carousel #contextual-footer-info, .owl-carousel .each-news-post, .owl-carousel .each-faculty-post, .owl-carousel .each-program-archive,
.owl-carousel .each-course-archive, .owl-carousel .hunks-wrapper, .owl-carousel .each-hunk, .owl-carousel .subway-wrapper .map-wrapper, .subway-wrapper .owl-carousel .map-wrapper {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../library/images/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
      -ms-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

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

Stylesheet: fancyBox

******************************************************************/
body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  height: 100%;
  left: 0;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.87;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.25s, visibility 0s linear 0.25s;
  transition: opacity 0.25s, visibility 0s linear 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity 0.25s, visibility 0s;
  transition: opacity 0.25s, visibility 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  text-align: center;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: opacity, -webkit-transform;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  height: 100%;
  margin-right: -0.25em;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--next {
  z-index: 99995;
}

.fancybox-slide--image {
  overflow: visible;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px 6px 0 6px;
}

.fancybox-slide--iframe {
  padding: 44px 44px 0;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0 0 6px 0;
  max-width: 100%;
  overflow: auto;
  padding: 0;
  padding: 24px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  margin: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: opacity, -webkit-transform;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-drag .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-dragging .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

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

.fancybox-slide--html .fancybox-content {
  margin-bottom: 6px;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  margin: 0;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
  height: calc(100% - 44px);
  margin-bottom: 44px;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  vertical-align: top;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  outline: none;
  padding: 10px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  vertical-align: top;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:focus,
.fancybox-button:hover {
  color: #fff;
}

.fancybox-button.disabled,
.fancybox-button.disabled:hover,
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
}

.fancybox-button svg {
  display: block;
  overflow: visible;
  position: relative;
  shape-rendering: geometricPrecision;
}

.fancybox-button svg path {
  fill: transparent;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 3;
}

.fancybox-button--play svg path:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg path:nth-child(1) {
  display: none;
}

.fancybox-button--play svg path,
.fancybox-button--share svg path,
.fancybox-button--thumbs svg path {
  fill: currentColor;
}

.fancybox-button--share svg path {
  stroke-width: 1;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  height: 38px;
  opacity: 0;
  padding: 6px;
  position: absolute;
  top: 50%;
  width: 38px;
}

.fancybox-show-nav .fancybox-navigation .fancybox-button {
  -webkit-transition: opacity 0.25s, visibility 0s, color 0.25s;
  transition: opacity 0.25s, visibility 0s, color 0.25s;
}

.fancybox-navigation .fancybox-button::after {
  content: "";
  left: -25px;
  padding: 50px;
  position: absolute;
  top: -25px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  right: 6px;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #555;
  cursor: pointer;
  height: 44px;
  margin: 0;
  padding: 6px;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  z-index: 10;
}

.fancybox-close-small svg {
  fill: transparent;
  opacity: 0.8;
  stroke: currentColor;
  stroke-width: 1.5;
  -webkit-transition: stroke 0.1s;
  transition: stroke 0.1s;
}

.fancybox-close-small:focus {
  outline: none;
}

.fancybox-close-small:hover svg {
  opacity: 1;
}

.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--video .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small {
  color: #ccc;
  padding: 5px;
  right: -12px;
  top: -44px;
}

.fancybox-slide--image .fancybox-close-small:hover svg,
.fancybox-slide--video .fancybox-close-small:hover svg,
.fancybox-slide--iframe .fancybox-close-small:hover svg {
  background: transparent;
  color: #fff;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
  display: none;
}

/* Caption */
.fancybox-caption {
  bottom: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 25px 44px 25px 44px;
  right: 0;
}

.fancybox-caption::before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEtCAQAAABjBcL7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUKM+Vk8EOgDAIQ0vj/3+xBw8qIZZueFnIKC90MCAI8DlrkHGeqqGIU6lVigrBtpCWqeRWoHDNqs0F7VNVBVxmHRlvoVqjaYkdnDIaivH2HqZ5+oZj3JUzWB+cOz4G48Bg+tsJ/tqu4dLC/4Xb+0GcF5BwBC0AA53qAAAAAElFTkSuQmCC);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -25px;
  z-index: -1;
}

.fancybox-caption::after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  content: "";
  display: block;
  left: 44px;
  position: absolute;
  right: 44px;
  top: 0;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 0.8s infinite linear;
  animation: fancybox-rotate 0.8s infinite linear;
  background: transparent;
  border: 6px solid rgba(100, 100, 100, 0.5);
  border-radius: 100%;
  border-top-color: #fff;
  height: 60px;
  left: 50%;
  margin: -30px 0 0 -30px;
  opacity: 0.6;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 60px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #fff;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs > ul {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x > ul {
  overflow: hidden;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs > ul > li {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}

.fancybox-thumbs > ul > li {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fancybox-thumbs > ul > li:before {
  border: 4px solid #4ea7f9;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs .fancybox-thumbs-active:before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs > ul > li {
    max-width: calc(100% - 10px);
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Slideshow Styles

******************************************************************/
.sj-slideshow .each-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  min-height: 300px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sj-slideshow .each-slide .slide-content {
  padding: 1em;
  color: #fff;
}
.sj-slideshow .owl-dots {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.sj-slideshow .owl-dots .owl-dot {
  border: 2px solid #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-left: 15px;
}
.sj-slideshow .owl-dots .owl-dot.active {
  background: #fff;
}

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

Stylesheet: Font Awesome PRO Styles

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

@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/fa-light-300.eot");
  src: url("../fonts/fa-light-300.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-light-300.woff2") format("woff2"), url("../fonts/fa-light-300.woff") format("woff"), url("../fonts/fa-light-300.ttf") format("truetype"), url("../fonts/fa-light-300.svg#fontawesome") format("svg");
}
.fal {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
}

@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/fa-regular-400.eot");
  src: url("../fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.woff") format("woff"), url("../fonts/fa-regular-400.ttf") format("truetype"), url("../fonts/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

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

/*!
 * Font Awesome Pro 5.1.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
.fa,
.fas,
.far,
.fal,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-ul > li {
  position: relative;
}

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

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

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

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

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

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

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

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

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

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

.fa-inverse {
  color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-allergies:before {
  content: "\f461";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-angry:before {
  content: "\f556";
}

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

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

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

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

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

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

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

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

.fa-archway:before {
  content: "\f557";
}

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

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

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

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

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

.fa-arrow-alt-from-bottom:before {
  content: "\f346";
}

.fa-arrow-alt-from-left:before {
  content: "\f347";
}

.fa-arrow-alt-from-right:before {
  content: "\f348";
}

.fa-arrow-alt-from-top:before {
  content: "\f349";
}

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

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

.fa-arrow-alt-square-down:before {
  content: "\f350";
}

.fa-arrow-alt-square-left:before {
  content: "\f351";
}

.fa-arrow-alt-square-right:before {
  content: "\f352";
}

.fa-arrow-alt-square-up:before {
  content: "\f353";
}

.fa-arrow-alt-to-bottom:before {
  content: "\f34a";
}

.fa-arrow-alt-to-left:before {
  content: "\f34b";
}

.fa-arrow-alt-to-right:before {
  content: "\f34c";
}

.fa-arrow-alt-to-top:before {
  content: "\f34d";
}

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

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

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

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

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

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

.fa-arrow-from-bottom:before {
  content: "\f342";
}

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

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

.fa-arrow-from-top:before {
  content: "\f345";
}

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

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

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

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

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

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

.fa-arrow-to-bottom:before {
  content: "\f33d";
}

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

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

.fa-arrow-to-top:before {
  content: "\f341";
}

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

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

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

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

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

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

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

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

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

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

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

.fa-atlas:before {
  content: "\f558";
}

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

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

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

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

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

.fa-award:before {
  content: "\f559";
}

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

.fa-backspace:before {
  content: "\f55a";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-basketball-hoop:before {
  content: "\f435";
}

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

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

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

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

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

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

.fa-battery-slash:before {
  content: "\f377";
}

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

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

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

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

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

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

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

.fa-bezier-curve:before {
  content: "\f55b";
}

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

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

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

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

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

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

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

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

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

.fa-blanket:before {
  content: "\f498";
}

.fa-blender:before {
  content: "\f517";
}

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

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

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

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

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

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

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

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

.fa-bong:before {
  content: "\f55c";
}

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

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

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

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

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

.fa-bowling-pins:before {
  content: "\f437";
}

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

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

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

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

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

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

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

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

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

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

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

.fa-boxing-glove:before {
  content: "\f438";
}

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

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

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

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-browser:before {
  content: "\f37e";
}

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

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

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

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

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

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

.fa-burn:before {
  content: "\f46a";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-chess-clock-alt:before {
  content: "\f43e";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-church:before {
  content: "\f51d";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-club:before {
  content: "\f327";
}

.fa-cocktail:before {
  content: "\f561";
}

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

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

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

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

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

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

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

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

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

.fa-coins:before {
  content: "\f51e";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-compact-disc:before {
  content: "\f51f";
}

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

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

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

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

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

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

.fa-container-storage:before {
  content: "\f4b7";
}

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

.fa-conveyor-belt:before {
  content: "\f46e";
}

.fa-conveyor-belt-alt:before {
  content: "\f46f";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

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

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

.fa-couch:before {
  content: "\f4b8";
}

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

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

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

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

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

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

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

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

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

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

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

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

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

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

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

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

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

.fa-cricket:before {
  content: "\f449";
}

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

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

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

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

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

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

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

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

.fa-curling:before {
  content: "\f44a";
}

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

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

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

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

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

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

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

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

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

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

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

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

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

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

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

.fa-digital-tachograph:before {
  content: "\f566";
}

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

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

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

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

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

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

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

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

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

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

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

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

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

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

.fa-dove:before {
  content: "\f4ba";
}

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

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

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

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

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

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

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

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

.fa-dumbbell:before {
  content: "\f44b";
}

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

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

.fa-ebay:before {
  content: "\f4f4";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-equals:before {
  content: "\f52c";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

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

.fa-field-hockey:before {
  content: "\f44c";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-file-invoice-dollar:before {
  content: "\f571";
}

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

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

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

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

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

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

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

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

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

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

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

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

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

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

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

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

.fa-fingerprint:before {
  content: "\f577";
}

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

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

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

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

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

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

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

.fa-fish:before {
  content: "\f578";
}

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

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

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

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

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

.fa-flushed:before {
  content: "\f579";
}

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

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

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

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

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

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

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

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

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

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

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

.fa-football-helmet:before {
  content: "\f44f";
}

.fa-forklift:before {
  content: "\f47a";
}

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

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

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

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

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

.fa-fragile:before {
  content: "\f4bb";
}

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

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

.fa-frog:before {
  content: "\f52e";
}

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

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

.fa-fulcrum:before {
  content: "\f50b";
}

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

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

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

.fa-gas-pump:before {
  content: "\f52f";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-glasses:before {
  content: "\f530";
}

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

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

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

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

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

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

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

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

.fa-golf-club:before {
  content: "\f451";
}

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

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

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

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

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

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

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

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

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

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

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

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

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

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

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

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

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

.fa-h1:before {
  content: "\f313";
}

.fa-h2:before {
  content: "\f314";
}

.fa-h3:before {
  content: "\f315";
}

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

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

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

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-box:before {
  content: "\f47b";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-seedling:before {
  content: "\f4bf";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-holding-water:before {
  content: "\f4c1";
}

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

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

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

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

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

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

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

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

.fa-hand-receiving:before {
  content: "\f47c";
}

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

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

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

.fa-hands:before {
  content: "\f4c2";
}

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

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-hands-usd:before {
  content: "\f4c5";
}

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

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

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

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

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

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

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

.fa-headset:before {
  content: "\f590";
}

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

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

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

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

.fa-helicopter:before {
  content: "\f533";
}

.fa-hexagon:before {
  content: "\f312";
}

.fa-highlighter:before {
  content: "\f591";
}

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

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

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

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

.fa-hockey-sticks:before {
  content: "\f454";
}

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

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

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

.fa-hornbill:before {
  content: "\f592";
}

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

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

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

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotel:before {
  content: "\f594";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-infinity:before {
  content: "\f534";
}

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

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

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

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

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

.fa-inventory:before {
  content: "\f480";
}

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

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

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

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

.fa-jack-o-lantern:before {
  content: "\f30e";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi-order:before {
  content: "\f50e";
}

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

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

.fa-joint:before {
  content: "\f595";
}

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

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

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

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

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

.fa-keybase:before {
  content: "\f4f5";
}

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

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

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

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

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

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

.fa-lamp:before {
  content: "\f4ca";
}

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

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

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

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

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

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

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

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

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

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

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

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

.fa-less-than-equal:before {
  content: "\f537";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-loveseat:before {
  content: "\f4cc";
}

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

.fa-luchador:before {
  content: "\f455";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

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

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

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

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

.fa-mailchimp:before {
  content: "\f59e";
}

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

.fa-mandalorian:before {
  content: "\f50f";
}

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

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

.fa-map-marked-alt:before {
  content: "\f5a0";
}

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

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

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

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

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

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

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

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

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

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

.fa-mastodon:before {
  content: "\f4f6";
}

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

.fa-medal:before {
  content: "\f5a2";
}

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

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

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

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

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

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

.fa-megaport:before {
  content: "\f5a3";
}

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

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

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-money-bill-wave:before {
  content: "\f53a";
}

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

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

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

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

.fa-mortar-pestle:before {
  content: "\f5a7";
}

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

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

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

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

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

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

.fa-nimblr:before {
  content: "\f5a8";
}

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

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

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

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

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

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

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

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

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

.fa-octagon:before {
  content: "\f306";
}

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

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

.fa-old-republic:before {
  content: "\f510";
}

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

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

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

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

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

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

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

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

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

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

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

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

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

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

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

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

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

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

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

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

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

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

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

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

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

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

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

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

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

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

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-pennant:before {
  content: "\f456";
}

.fa-people-carry:before {
  content: "\f4ce";
}

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

.fa-percentage:before {
  content: "\f541";
}

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

.fa-person-carry:before {
  content: "\f4cf";
}

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

.fa-person-dolly-empty:before {
  content: "\f4d1";
}

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

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

.fa-phoenix-squadron:before {
  content: "\f511";
}

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

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

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

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

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

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

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

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-alt:before {
  content: "\f3de";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-hexagon:before {
  content: "\f300";
}

.fa-plus-octagon:before {
  content: "\f301";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-question-square:before {
  content: "\f2fd";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-racquet:before {
  content: "\f45a";
}

.fa-ramp-loading:before {
  content: "\f4d4";
}

.fa-random:before {
  content: "\f074";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-rectangle-landscape:before {
  content: "\f2fa";
}

.fa-rectangle-portrait:before {
  content: "\f2fb";
}

.fa-rectangle-wide:before {
  content: "\f2fc";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-rendact:before {
  content: "\f3e4";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-repeat:before {
  content: "\f363";
}

.fa-repeat-1:before {
  content: "\f365";
}

.fa-repeat-1-alt:before {
  content: "\f366";
}

.fa-repeat-alt:before {
  content: "\f364";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-retweet-alt:before {
  content: "\f361";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-scanner:before {
  content: "\f488";
}

.fa-scanner-keyboard:before {
  content: "\f489";
}

.fa-scanner-touchscreen:before {
  content: "\f48a";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scrubber:before {
  content: "\f2f8";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-all:before {
  content: "\f367";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield:before {
  content: "\f132";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-shield-check:before {
  content: "\f2f7";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shipping-timed:before {
  content: "\f48c";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-shuttlecock:before {
  content: "\f45b";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-sliders-h-square:before {
  content: "\f3f0";
}

.fa-sliders-v:before {
  content: "\f3f1";
}

.fa-sliders-v-square:before {
  content: "\f3f2";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-plus:before {
  content: "\f5b9";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-spade:before {
  content: "\f2f4";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-spinner-third:before {
  content: "\f3f4";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-exclamation:before {
  content: "\f2f3";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablet-android:before {
  content: "\f3fb";
}

.fa-tablet-android-alt:before {
  content: "\f3fc";
}

.fa-tablet-rugged:before {
  content: "\f48f";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer:before {
  content: "\f0e4";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tennis-ball:before {
  content: "\f45e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-times-hexagon:before {
  content: "\f2ee";
}

.fa-times-octagon:before {
  content: "\f2f0";
}

.fa-times-square:before {
  content: "\f2d3";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-train:before {
  content: "\f238";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-tree-alt:before {
  content: "\f400";
}

.fa-trello:before {
  content: "\f181";
}

.fa-triangle:before {
  content: "\f2ec";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-trophy-alt:before {
  content: "\f2eb";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-container:before {
  content: "\f4dc";
}

.fa-truck-couch:before {
  content: "\f4dd";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-ramp:before {
  content: "\f4e0";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-tv-retro:before {
  content: "\f401";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-usb:before {
  content: "\f287";
}

.fa-usd-circle:before {
  content: "\f2e8";
}

.fa-usd-square:before {
  content: "\f2e9";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-fork:before {
  content: "\f2e3";
}

.fa-utensil-knife:before {
  content: "\f2e4";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-utensils-alt:before {
  content: "\f2e6";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-plus:before {
  content: "\f4e1";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f2e2";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-warehouse-alt:before {
  content: "\f495";
}

.fa-watch:before {
  content: "\f2e1";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whistle:before {
  content: "\f460";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-window:before {
  content: "\f40e";
}

.fa-window-alt:before {
  content: "\f40f";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*!
* Font Awesome Pro 5.1.0 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license (Commercial License)
*/
.fa.fa-glass:before {
  content: "\f000";
}

.fa.fa-meetup {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-star-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-star-o:before {
  content: "\f005";
}

.fa.fa-remove:before {
  content: "\f00d";
}

.fa.fa-close:before {
  content: "\f00d";
}

.fa.fa-gear:before {
  content: "\f013";
}

.fa.fa-trash-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-trash-o:before {
  content: "\f2ed";
}

.fa.fa-file-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-file-o:before {
  content: "\f15b";
}

.fa.fa-clock-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-clock-o:before {
  content: "\f017";
}

.fa.fa-arrow-circle-o-down {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-down:before {
  content: "\f358";
}

.fa.fa-arrow-circle-o-up {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-up:before {
  content: "\f35b";
}

.fa.fa-play-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-play-circle-o:before {
  content: "\f144";
}

.fa.fa-repeat:before {
  content: "\f01e";
}

.fa.fa-rotate-right:before {
  content: "\f01e";
}

.fa.fa-refresh:before {
  content: "\f021";
}

.fa.fa-list-alt {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-dedent:before {
  content: "\f03b";
}

.fa.fa-video-camera:before {
  content: "\f03d";
}

.fa.fa-picture-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-picture-o:before {
  content: "\f03e";
}

.fa.fa-photo {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-photo:before {
  content: "\f03e";
}

.fa.fa-image {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-image:before {
  content: "\f03e";
}

.fa.fa-pencil:before {
  content: "\f303";
}

.fa.fa-map-marker:before {
  content: "\f3c5";
}

.fa.fa-pencil-square-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-pencil-square-o:before {
  content: "\f044";
}

.fa.fa-share-square-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-share-square-o:before {
  content: "\f14d";
}

.fa.fa-check-square-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-check-square-o:before {
  content: "\f14a";
}

.fa.fa-arrows:before {
  content: "\f0b2";
}

.fa.fa-times-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-times-circle-o:before {
  content: "\f057";
}

.fa.fa-check-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-check-circle-o:before {
  content: "\f058";
}

.fa.fa-mail-forward:before {
  content: "\f064";
}

.fa.fa-eye {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-eye-slash {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-warning:before {
  content: "\f071";
}

.fa.fa-calendar:before {
  content: "\f073";
}

.fa.fa-arrows-v:before {
  content: "\f338";
}

.fa.fa-arrows-h:before {
  content: "\f337";
}

.fa.fa-bar-chart {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-bar-chart:before {
  content: "\f080";
}

.fa.fa-bar-chart-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-bar-chart-o:before {
  content: "\f080";
}

.fa.fa-twitter-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-facebook-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gears:before {
  content: "\f085";
}

.fa.fa-thumbs-o-up {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-thumbs-o-up:before {
  content: "\f164";
}

.fa.fa-thumbs-o-down {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-thumbs-o-down:before {
  content: "\f165";
}

.fa.fa-heart-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-heart-o:before {
  content: "\f004";
}

.fa.fa-sign-out:before {
  content: "\f2f5";
}

.fa.fa-linkedin-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-linkedin-square:before {
  content: "\f08c";
}

.fa.fa-thumb-tack:before {
  content: "\f08d";
}

.fa.fa-external-link:before {
  content: "\f35d";
}

.fa.fa-sign-in:before {
  content: "\f2f6";
}

.fa.fa-github-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-lemon-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-lemon-o:before {
  content: "\f094";
}

.fa.fa-square-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-square-o:before {
  content: "\f0c8";
}

.fa.fa-bookmark-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-bookmark-o:before {
  content: "\f02e";
}

.fa.fa-twitter {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-facebook {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-facebook:before {
  content: "\f39e";
}

.fa.fa-facebook-f {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-facebook-f:before {
  content: "\f39e";
}

.fa.fa-github {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-credit-card {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-feed:before {
  content: "\f09e";
}

.fa.fa-hdd-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-hdd-o:before {
  content: "\f0a0";
}

.fa.fa-hand-o-right {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa.fa-hand-o-left {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa.fa-hand-o-up {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa.fa-hand-o-down {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa.fa-arrows-alt:before {
  content: "\f31e";
}

.fa.fa-group:before {
  content: "\f0c0";
}

.fa.fa-chain:before {
  content: "\f0c1";
}

.fa.fa-scissors:before {
  content: "\f0c4";
}

.fa.fa-files-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-files-o:before {
  content: "\f0c5";
}

.fa.fa-floppy-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-floppy-o:before {
  content: "\f0c7";
}

.fa.fa-navicon:before {
  content: "\f0c9";
}

.fa.fa-reorder:before {
  content: "\f0c9";
}

.fa.fa-pinterest {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pinterest-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus:before {
  content: "\f0d5";
}

.fa.fa-money {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-money:before {
  content: "\f3d1";
}

.fa.fa-unsorted:before {
  content: "\f0dc";
}

.fa.fa-sort-desc:before {
  content: "\f0dd";
}

.fa.fa-sort-asc:before {
  content: "\f0de";
}

.fa.fa-linkedin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-linkedin:before {
  content: "\f0e1";
}

.fa.fa-rotate-left:before {
  content: "\f0e2";
}

.fa.fa-legal:before {
  content: "\f0e3";
}

.fa.fa-tachometer:before {
  content: "\f3fd";
}

.fa.fa-dashboard:before {
  content: "\f3fd";
}

.fa.fa-comment-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-comment-o:before {
  content: "\f075";
}

.fa.fa-comments-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-comments-o:before {
  content: "\f086";
}

.fa.fa-flash:before {
  content: "\f0e7";
}

.fa.fa-clipboard {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-paste {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-paste:before {
  content: "\f328";
}

.fa.fa-lightbulb-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa.fa-exchange:before {
  content: "\f362";
}

.fa.fa-cloud-download:before {
  content: "\f381";
}

.fa.fa-cloud-upload:before {
  content: "\f382";
}

.fa.fa-bell-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-bell-o:before {
  content: "\f0f3";
}

.fa.fa-cutlery:before {
  content: "\f2e7";
}

.fa.fa-file-text-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-file-text-o:before {
  content: "\f15c";
}

.fa.fa-building-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-building-o:before {
  content: "\f1ad";
}

.fa.fa-hospital-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-hospital-o:before {
  content: "\f0f8";
}

.fa.fa-tablet:before {
  content: "\f3fa";
}

.fa.fa-mobile:before {
  content: "\f3cd";
}

.fa.fa-mobile-phone:before {
  content: "\f3cd";
}

.fa.fa-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-circle-o:before {
  content: "\f111";
}

.fa.fa-mail-reply:before {
  content: "\f3e5";
}

.fa.fa-github-alt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-folder-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-folder-o:before {
  content: "\f07b";
}

.fa.fa-folder-open-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-folder-open-o:before {
  content: "\f07c";
}

.fa.fa-smile-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-smile-o:before {
  content: "\f118";
}

.fa.fa-frown-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-frown-o:before {
  content: "\f119";
}

.fa.fa-meh-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-meh-o:before {
  content: "\f11a";
}

.fa.fa-keyboard-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-keyboard-o:before {
  content: "\f11c";
}

.fa.fa-flag-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-flag-o:before {
  content: "\f024";
}

.fa.fa-mail-reply-all:before {
  content: "\f122";
}

.fa.fa-star-half-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-star-half-o:before {
  content: "\f089";
}

.fa.fa-star-half-empty {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-star-half-empty:before {
  content: "\f089";
}

.fa.fa-star-half-full {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-star-half-full:before {
  content: "\f089";
}

.fa.fa-code-fork:before {
  content: "\f126";
}

.fa.fa-chain-broken:before {
  content: "\f127";
}

.fa.fa-shield:before {
  content: "\f3ed";
}

.fa.fa-calendar-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-calendar-o:before {
  content: "\f133";
}

.fa.fa-maxcdn {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-html5 {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-css3 {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ticket:before {
  content: "\f3ff";
}

.fa.fa-minus-square-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-minus-square-o:before {
  content: "\f146";
}

.fa.fa-level-up:before {
  content: "\f3bf";
}

.fa.fa-level-down:before {
  content: "\f3be";
}

.fa.fa-pencil-square:before {
  content: "\f14b";
}

.fa.fa-external-link-square:before {
  content: "\f360";
}

.fa.fa-compass {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-caret-square-o-down {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa.fa-toggle-down {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-toggle-down:before {
  content: "\f150";
}

.fa.fa-caret-square-o-up {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa.fa-toggle-up {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-toggle-up:before {
  content: "\f151";
}

.fa.fa-caret-square-o-right {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa.fa-toggle-right {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-toggle-right:before {
  content: "\f152";
}

.fa.fa-eur:before {
  content: "\f153";
}

.fa.fa-euro:before {
  content: "\f153";
}

.fa.fa-gbp:before {
  content: "\f154";
}

.fa.fa-usd:before {
  content: "\f155";
}

.fa.fa-dollar:before {
  content: "\f155";
}

.fa.fa-inr:before {
  content: "\f156";
}

.fa.fa-rupee:before {
  content: "\f156";
}

.fa.fa-jpy:before {
  content: "\f157";
}

.fa.fa-cny:before {
  content: "\f157";
}

.fa.fa-rmb:before {
  content: "\f157";
}

.fa.fa-yen:before {
  content: "\f157";
}

.fa.fa-rub:before {
  content: "\f158";
}

.fa.fa-ruble:before {
  content: "\f158";
}

.fa.fa-rouble:before {
  content: "\f158";
}

.fa.fa-krw:before {
  content: "\f159";
}

.fa.fa-won:before {
  content: "\f159";
}

.fa.fa-btc {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bitcoin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bitcoin:before {
  content: "\f15a";
}

.fa.fa-file-text:before {
  content: "\f15c";
}

.fa.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa.fa-youtube-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-youtube {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-xing {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-xing-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-youtube-play {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-youtube-play:before {
  content: "\f167";
}

.fa.fa-dropbox {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-stack-overflow {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-instagram {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-flickr {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-adn {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bitbucket {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bitbucket-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bitbucket-square:before {
  content: "\f171";
}

.fa.fa-tumblr {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-tumblr-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-long-arrow-down:before {
  content: "\f309";
}

.fa.fa-long-arrow-up:before {
  content: "\f30c";
}

.fa.fa-long-arrow-left:before {
  content: "\f30a";
}

.fa.fa-long-arrow-right:before {
  content: "\f30b";
}

.fa.fa-apple {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-windows {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-android {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-linux {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-dribbble {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-skype {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-foursquare {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-trello {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gratipay {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gittip {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gittip:before {
  content: "\f184";
}

.fa.fa-sun-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-sun-o:before {
  content: "\f185";
}

.fa.fa-moon-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-moon-o:before {
  content: "\f186";
}

.fa.fa-vk {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-weibo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-renren {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pagelines {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-stack-exchange {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-right {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-right:before {
  content: "\f35a";
}

.fa.fa-arrow-circle-o-left {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-left:before {
  content: "\f359";
}

.fa.fa-caret-square-o-left {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa.fa-toggle-left {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-toggle-left:before {
  content: "\f191";
}

.fa.fa-dot-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-dot-circle-o:before {
  content: "\f192";
}

.fa.fa-vimeo-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-try:before {
  content: "\f195";
}

.fa.fa-turkish-lira:before {
  content: "\f195";
}

.fa.fa-plus-square-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-plus-square-o:before {
  content: "\f0fe";
}

.fa.fa-slack {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wordpress {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-openid {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-institution:before {
  content: "\f19c";
}

.fa.fa-bank:before {
  content: "\f19c";
}

.fa.fa-mortar-board:before {
  content: "\f19d";
}

.fa.fa-yahoo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-reddit {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-reddit-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-stumbleupon-circle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-stumbleupon {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-delicious {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-digg {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pied-piper-pp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pied-piper-alt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-drupal {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-joomla {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-spoon:before {
  content: "\f2e5";
}

.fa.fa-behance {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-behance-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-steam {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-steam-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-automobile:before {
  content: "\f1b9";
}

.fa.fa-cab:before {
  content: "\f1ba";
}

.fa.fa-envelope-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-envelope-o:before {
  content: "\f0e0";
}

.fa.fa-deviantart {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-soundcloud {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-file-pdf-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa.fa-file-word-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-file-word-o:before {
  content: "\f1c2";
}

.fa.fa-file-excel-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa.fa-file-powerpoint-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa.fa-file-image-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-file-image-o:before {
  content: "\f1c5";
}

.fa.fa-file-photo-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-file-photo-o:before {
  content: "\f1c5";
}

.fa.fa-file-picture-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-file-picture-o:before {
  content: "\f1c5";
}

.fa.fa-file-archive-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa.fa-file-zip-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-file-zip-o:before {
  content: "\f1c6";
}

.fa.fa-file-audio-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa.fa-file-sound-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-file-sound-o:before {
  content: "\f1c7";
}

.fa.fa-file-video-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-file-video-o:before {
  content: "\f1c8";
}

.fa.fa-file-movie-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-file-movie-o:before {
  content: "\f1c8";
}

.fa.fa-file-code-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-file-code-o:before {
  content: "\f1c9";
}

.fa.fa-vine {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-codepen {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-jsfiddle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-life-ring {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-life-bouy {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-life-bouy:before {
  content: "\f1cd";
}

.fa.fa-life-buoy {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-life-buoy:before {
  content: "\f1cd";
}

.fa.fa-life-saver {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-life-saver:before {
  content: "\f1cd";
}

.fa.fa-support {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-support:before {
  content: "\f1cd";
}

.fa.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa.fa-rebel {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ra {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ra:before {
  content: "\f1d0";
}

.fa.fa-resistance {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-resistance:before {
  content: "\f1d0";
}

.fa.fa-empire {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ge {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ge:before {
  content: "\f1d1";
}

.fa.fa-git-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-git {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-hacker-news {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-y-combinator-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-y-combinator-square:before {
  content: "\f1d4";
}

.fa.fa-yc-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-yc-square:before {
  content: "\f1d4";
}

.fa.fa-tencent-weibo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-qq {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-weixin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wechat {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wechat:before {
  content: "\f1d7";
}

.fa.fa-send:before {
  content: "\f1d8";
}

.fa.fa-paper-plane-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-paper-plane-o:before {
  content: "\f1d8";
}

.fa.fa-send-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-send-o:before {
  content: "\f1d8";
}

.fa.fa-circle-thin {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-circle-thin:before {
  content: "\f111";
}

.fa.fa-header:before {
  content: "\f1dc";
}

.fa.fa-sliders:before {
  content: "\f1de";
}

.fa.fa-futbol-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-futbol-o:before {
  content: "\f1e3";
}

.fa.fa-soccer-ball-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-soccer-ball-o:before {
  content: "\f1e3";
}

.fa.fa-slideshare {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-twitch {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-yelp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-newspaper-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa.fa-paypal {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-wallet {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-visa {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-mastercard {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-discover {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-amex {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-paypal {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-stripe {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bell-slash-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-bell-slash-o:before {
  content: "\f1f6";
}

.fa.fa-trash:before {
  content: "\f2ed";
}

.fa.fa-copyright {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-eyedropper:before {
  content: "\f1fb";
}

.fa.fa-area-chart:before {
  content: "\f1fe";
}

.fa.fa-pie-chart:before {
  content: "\f200";
}

.fa.fa-line-chart:before {
  content: "\f201";
}

.fa.fa-lastfm {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-lastfm-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ioxhost {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-angellist {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-cc:before {
  content: "\f20a";
}

.fa.fa-ils:before {
  content: "\f20b";
}

.fa.fa-shekel:before {
  content: "\f20b";
}

.fa.fa-sheqel:before {
  content: "\f20b";
}

.fa.fa-meanpath {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-meanpath:before {
  content: "\f2b4";
}

.fa.fa-buysellads {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-connectdevelop {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-dashcube {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-forumbee {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-leanpub {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-sellsy {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-shirtsinbulk {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-simplybuilt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-skyatlas {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-diamond {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-diamond:before {
  content: "\f3a5";
}

.fa.fa-intersex:before {
  content: "\f224";
}

.fa.fa-facebook-official {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-facebook-official:before {
  content: "\f09a";
}

.fa.fa-pinterest-p {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-whatsapp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-hotel:before {
  content: "\f236";
}

.fa.fa-viacoin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-medium {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-y-combinator {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-yc {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-yc:before {
  content: "\f23b";
}

.fa.fa-optin-monster {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-opencart {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-expeditedssl {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-battery-4:before {
  content: "\f240";
}

.fa.fa-battery:before {
  content: "\f240";
}

.fa.fa-battery-3:before {
  content: "\f241";
}

.fa.fa-battery-2:before {
  content: "\f242";
}

.fa.fa-battery-1:before {
  content: "\f243";
}

.fa.fa-battery-0:before {
  content: "\f244";
}

.fa.fa-object-group {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-object-ungroup {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-sticky-note-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-sticky-note-o:before {
  content: "\f249";
}

.fa.fa-cc-jcb {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-diners-club {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-clone {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-hourglass-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-hourglass-o:before {
  content: "\f254";
}

.fa.fa-hourglass-1:before {
  content: "\f251";
}

.fa.fa-hourglass-2:before {
  content: "\f252";
}

.fa.fa-hourglass-3:before {
  content: "\f253";
}

.fa.fa-hand-rock-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-hand-rock-o:before {
  content: "\f255";
}

.fa.fa-hand-grab-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-hand-grab-o:before {
  content: "\f255";
}

.fa.fa-hand-paper-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-hand-paper-o:before {
  content: "\f256";
}

.fa.fa-hand-stop-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-hand-stop-o:before {
  content: "\f256";
}

.fa.fa-hand-scissors-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa.fa-hand-lizard-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa.fa-hand-spock-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-hand-spock-o:before {
  content: "\f259";
}

.fa.fa-hand-pointer-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa.fa-hand-peace-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa.fa-registered {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-creative-commons {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gg {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gg-circle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-tripadvisor {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-odnoklassniki {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-odnoklassniki-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-get-pocket {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wikipedia-w {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-safari {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-chrome {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-firefox {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-opera {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-internet-explorer {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-television:before {
  content: "\f26c";
}

.fa.fa-contao {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-500px {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-amazon {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-calendar-plus-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa.fa-calendar-minus-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa.fa-calendar-times-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-calendar-times-o:before {
  content: "\f273";
}

.fa.fa-calendar-check-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-calendar-check-o:before {
  content: "\f274";
}

.fa.fa-map-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-map-o:before {
  content: "\f279";
}

.fa.fa-commenting {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-commenting:before {
  content: "\f4ad";
}

.fa.fa-commenting-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-commenting-o:before {
  content: "\f4ad";
}

.fa.fa-houzz {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-vimeo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-vimeo:before {
  content: "\f27d";
}

.fa.fa-black-tie {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-fonticons {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-reddit-alien {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-edge {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-credit-card-alt:before {
  content: "\f09d";
}

.fa.fa-codiepie {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-modx {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-fort-awesome {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-usb {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-product-hunt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-mixcloud {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-scribd {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pause-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-pause-circle-o:before {
  content: "\f28b";
}

.fa.fa-stop-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-stop-circle-o:before {
  content: "\f28d";
}

.fa.fa-bluetooth {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bluetooth-b {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gitlab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wpbeginner {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wpforms {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-envira {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wheelchair-alt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wheelchair-alt:before {
  content: "\f368";
}

.fa.fa-question-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-question-circle-o:before {
  content: "\f059";
}

.fa.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa.fa-asl-interpreting:before {
  content: "\f2a3";
}

.fa.fa-deafness:before {
  content: "\f2a4";
}

.fa.fa-hard-of-hearing:before {
  content: "\f2a4";
}

.fa.fa-glide {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-glide-g {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-signing:before {
  content: "\f2a7";
}

.fa.fa-viadeo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-viadeo-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-snapchat {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-snapchat-ghost {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-snapchat-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pied-piper {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-first-order {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-yoast {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-themeisle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-official {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa.fa-google-plus-circle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-circle:before {
  content: "\f2b3";
}

.fa.fa-font-awesome {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-fa {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-fa:before {
  content: "\f2b4";
}

.fa.fa-handshake-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-handshake-o:before {
  content: "\f2b5";
}

.fa.fa-envelope-open-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-envelope-open-o:before {
  content: "\f2b6";
}

.fa.fa-linode {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-address-book-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-address-book-o:before {
  content: "\f2b9";
}

.fa.fa-vcard:before {
  content: "\f2bb";
}

.fa.fa-address-card-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-address-card-o:before {
  content: "\f2bb";
}

.fa.fa-vcard-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-vcard-o:before {
  content: "\f2bb";
}

.fa.fa-user-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-user-circle-o:before {
  content: "\f2bd";
}

.fa.fa-user-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-user-o:before {
  content: "\f007";
}

.fa.fa-id-badge {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-drivers-license:before {
  content: "\f2c2";
}

.fa.fa-id-card-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-id-card-o:before {
  content: "\f2c2";
}

.fa.fa-drivers-license-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-drivers-license-o:before {
  content: "\f2c2";
}

.fa.fa-quora {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-free-code-camp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-telegram {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-thermometer-4:before {
  content: "\f2c7";
}

.fa.fa-thermometer:before {
  content: "\f2c7";
}

.fa.fa-thermometer-3:before {
  content: "\f2c8";
}

.fa.fa-thermometer-2:before {
  content: "\f2c9";
}

.fa.fa-thermometer-1:before {
  content: "\f2ca";
}

.fa.fa-thermometer-0:before {
  content: "\f2cb";
}

.fa.fa-bathtub:before {
  content: "\f2cd";
}

.fa.fa-s15:before {
  content: "\f2cd";
}

.fa.fa-window-maximize {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-window-restore {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-times-rectangle:before {
  content: "\f410";
}

.fa.fa-window-close-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-window-close-o:before {
  content: "\f410";
}

.fa.fa-times-rectangle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-times-rectangle-o:before {
  content: "\f410";
}

.fa.fa-bandcamp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-grav {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-etsy {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-imdb {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ravelry {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-eercast {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-eercast:before {
  content: "\f2da";
}

.fa.fa-snowflake-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fa.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa.fa-superpowers {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wpexplorer {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-spotify {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Woocommerce Styles

******************************************************************/
@-webkit-keyframes rotate-spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 1.5rem;
  border: 1px solid #757575;
  border-left-width: 5px;
  padding: 1em 1em 1em 1.5em;
  margin: 1.5rem;
  font-size: 1.25rem;
}
.woocommerce-message:before,
.woocommerce-error:before,
.woocommerce-info:before {
  content: "";
  position: absolute;
  top: 50%;
  top: calc(50% - 0.5em);
  left: 0;
  border-top: 0.5em solid transparent;
  border-left: 0.5em solid #757575;
  border-bottom: 0.5em solid transparent;
}
.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .button {
  min-width: 150px;
  width: 100%;
  max-width: 30%;
  margin-left: 1em;
  text-align: center;
}

.woocommerce-message {
  border-color: #7dd667;
}
.woocommerce-message:before {
  border-left-color: #7dd667;
}

.woocommerce-error {
  border-color: #FF1437;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.woocommerce-error:before {
  border-left-color: #FF1437;
}
.woocommerce-error li {
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0.25em 0;
  width: 100%;
}

.woocommerce-checkout .woocommerce-error {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.woocommerce-checkout .woocommerce-error li {
  display: block;
  margin: 0;
  padding: 0.25em 0;
}
.woocommerce-checkout .woocommerce-info {
  display: block;
}

.woocommerce-cart .woocommerce-message {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.woocommerce .woocommerce-result-count {
  float: left;
}
.woocommerce .woocommerce-ordering {
  width: initial;
  float: right;
}
.woocommerce .woocommerce-ordering select {
  width: initial;
}
.woocommerce .woocommerce-breadcrumb {
  display: none;
  font-size: 1.2rem;
  margin: 1em 0;
}
.woocommerce .cart:not(table) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.woocommerce .cart:not(table) .quantity {
  float: left;
}
.woocommerce table.cart .actions-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.woocommerce table.cart .actions-flex label {
  width: 100%;
  font-size: 1.2rem;
  padding: 0 0 0.25em;
}
.woocommerce table.cart .product-remove .remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  border-radius: 5em;
  padding: 0.16em 0.3em 0.25em;
  background-color: #FF1437;
  color: #fff;
  font-size: 1.25em;
  text-decoration: none;
  line-height: 1;
}
.woocommerce table.cart .product-remove .remove:hover, .woocommerce table.cart .product-remove .remove:focus {
  background-color: #ff2e4d;
}
.woocommerce #content .images {
  overflow: hidden;
  padding-bottom: 2em;
}
.woocommerce .coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.woocommerce .coupon .input-text {
  width: initial;
}
.woocommerce .product_meta {
  font-size: 1.2rem;
  margin: 1em 0;
}
.woocommerce .woocommerce-tabs {
  display: block;
  width: 100%;
  clear: both;
  float: none;
}
.woocommerce .woocommerce-tabs .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0;
}
.woocommerce .woocommerce-tabs .tabs li {
  list-style-type: none;
  list-style-position: inside;
  list-style-image: none;
  margin: 0;
}
.woocommerce .woocommerce-tabs .tabs li a {
  display: block;
  padding: 1em 1.5em;
  background-color: #757575;
  color: #fff;
  text-decoration: none;
}
.woocommerce .woocommerce-tabs .tabs li.active a {
  background-color: #000;
}
.woocommerce .woocommerce-tabs .wc-tab {
  background-color: #CCCCCC;
  border: 1px solid #757575;
}
.woocommerce .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  list-style-type: none;
  list-style-position: inside;
  list-style-image: none;
  margin: 1em 0;
  width: 100%;
  clear: both;
  float: none;
}
.woocommerce .products a {
  text-decoration: none;
}
.woocommerce .products:before, .woocommerce .products:after {
  display: none;
}
.woocommerce .products .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  list-style-position: inside;
  list-style-image: none;
  margin: 1em 1%;
  width: 100%;
  max-width: 300px;
}
.woocommerce .products .product > * {
  width: 100%;
}
.woocommerce .products .product a:not(.button):not(.added_to_cart) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.woocommerce .products .product a:not(.button):not(.added_to_cart) > * {
  width: 100%;
}
.woocommerce .products .product .price {
  display: block;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: 1em;
}
.woocommerce .products .product .added_to_cart {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding: 0.25em 0;
  display: block;
  text-align: center;
}
.woocommerce .products .product .button {
  display: block;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  text-align: center;
  text-transform: capitalize;
}
.woocommerce .products .product .button.loading {
  position: relative;
  cursor: no-drop;
  cursor: not-allowed;
  cursor: wait;
}
.woocommerce .products .product .button.loading:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  margin: 0 auto;
  border: 2.5px solid #757575;
  border-radius: 2em;
  border-top-color: #fff;
  width: 0.6em;
  height: 0.6em;
  -webkit-animation: rotate-spin 2s linear infinite;
  animation: rotate-spin 2s linear infinite;
}
.woocommerce .products .product .button.loading:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #7dd667;
  z-index: 4;
}
.woocommerce .products .product .image-wrapper {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}
.woocommerce .products .product .image-wrapper img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  margin: 0;
}
.woocommerce .products > *:not(.product) {
  width: 100%;
}
.woocommerce .products.related {
  clear: both;
  float: none;
}
.woocommerce .products.related .product h2 {
  font-size: 1.5em;
}
@media only screen and (min-width: 300px) {
  .woocommerce .products.related .product {
    width: 48%;
  }
}
.woocommerce .blockOverlay {
  background-image: url("../images/ajax-loader.gif") !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: auto;
}
.woocommerce #payment .payment_methods {
  margin: 1em 0;
}
.woocommerce #payment .payment_methods li {
  list-style-image: none;
  list-style-position: inside;
  list-style-type: none;
  margin: 1em 0;
  padding: 1.5em;
  border: 1px solid #757575;
  background-color: #CCCCCC;
}
.woocommerce #payment .payment_methods li p {
  margin: 0.5em 0 0;
}
.woocommerce #payment img {
  margin: 0 0.75em;
  max-height: 50px;
}
.woocommerce #payment .place-order {
  text-align: center;
  font-size: 1.25em;
}

.checkout.woocommerce-checkout.processing {
  background-image: url("../images/ajax-loader.gif") !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: auto;
  opacity: 0.5;
}

.single-product .product-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-product .product-gallery .woocommerce-product-gallery__image {
  padding: 0.5em;
}
.single-product .product-gallery .woocommerce-product-gallery__image, .single-product .product-gallery .woocommerce-product-gallery__image * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-product .product-gallery .woocommerce-product-gallery__image a {
  height: 75px;
  width: 75px;
  border: 1px solid #757575;
}
.single-product .product-gallery .woocommerce-product-gallery__image a.active {
  border-color: #FF1437;
}
.single-product .product-gallery .woocommerce-product-gallery__image img {
  margin: 0;
  width: auto;
  height: auto;
}
.single-product .product-gallery .woocommerce-product-gallery__image.portrait img {
  max-width: none;
  height: 100%;
  max-height: 150px;
}
.single-product .product-gallery .woocommerce-product-gallery__image.landscape img {
  width: 100%;
  max-width: 150px;
  max-height: none;
}
.single-product .image-wrapper {
  padding-bottom: 1em;
  width: 100%;
}
.single-product .image-wrapper, .single-product .image-wrapper * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-product .image-wrapper img {
  margin: 0 auto;
}
.single-product .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.single-product .owl-item *:not(img) {
  height: 100%;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  display: block;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  float: right;
  width: 100%;
  background-color: #CCCCCC;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  padding: 1rem 1.5rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation:before {
  content: "My Account";
  display: block;
  margin: 0;
  padding: 0.5rem 1.5rem;
  padding: calc(0.5rem + 7px) 1.5rem;
  background-color: #333333;
  color: #fff;
  font-family: proxima-nova, Helvetica, Arial, sans-serif;
  font-size: 2em;
  font-weight: 700;
}
.woocommerce-account .woocommerce-MyAccount-content {
  float: left;
  width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.woocommerce-account article {
  position: relative;
}
.woocommerce-account .woocommerce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  min-height: 300px;
}

#yith-wacp-popup .yith-wacp-wrapper .yith-wacp-close {
  color: #fff;
  background-color: #333333;
  text-decoration: none;
}

@media only screen and (min-width: 481px) {
  .woocommerce .products .product {
    width: 48%;
  }
  .woocommerce .products.related .product {
    width: 31%;
  }
}
@media only screen and (min-width: 768px) {
  .woocommerce .col2-set {
    width: 100%;
  }
  .woocommerce .col2-set:after {
    content: "";
    display: block;
    clear: both;
    float: none;
  }
  .woocommerce .col2-set .col-1 {
    float: left;
    width: 48%;
  }
  .woocommerce .col2-set .col-2 {
    float: right;
    width: 48%;
  }
  .woocommerce #content {
    width: 100%;
  }
  .woocommerce #content .images {
    float: left;
    width: 48%;
    padding-bottom: 0;
  }
  .woocommerce #content .summary {
    float: right;
    width: 48%;
  }
  .woocommerce .products.related .product {
    width: 23%;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    position: absolute;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    top: 0;
    left: 0;
    width: 33.3333333333%;
    width: 33.33%;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    padding: 1.5em 0 0 1.5em;
  }
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-account article > header {
    padding-left: 33.3333333333%;
    padding-left: 33.33%;
    padding-left: calc(33.33% + 3em);
  }
}
@media only screen and (min-width: 1030px) {
  .woocommerce .products .product {
    width: 31%;
  }
  .woocommerce .products.related .product {
    width: 18%;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 28.5714285714%;
    width: 28.5714286%;
  }
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-account article > header {
    padding-left: 28.5714285714%;
    padding-left: 28.5714286%;
    padding-left: calc(28.5714286% + 3em);
  }
}
@media only screen and (min-width: 1030px) {
  .woocommerce .products .product {
    width: 31%;
  }
  .woocommerce .products.related .product {
    width: 18%;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 28.5714285714%;
    width: 28.5714286%;
  }
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-account article > header {
    padding-left: 28.5714285714%;
    padding-left: 28.5714286%;
    padding-left: calc(28.5714286% + 3em);
  }
}
@media only screen and (max-width: 481px) {
  .woocommerce-thankyou-order-details {
    margin: 0;
    list-style-type: none;
    list-style-position: inside;
  }
  .woocommerce-thankyou-order-details li {
    margin: 0;
    padding: 0.5em;
    list-style-type: none;
    list-style-position: inside;
    border: 1px solid #757575;
    border-top: none;
  }
  .woocommerce-thankyou-order-details li:first-of-type {
    border-top: 1px solid #757575;
  }
  .woocommerce-thankyou-order-details li:nth-of-type(even) {
    background-color: #CCCCCC;
  }
  .shop_table {
    width: 100%;
    border-top: none;
    border-right: 1px solid #757575;
    border-bottom: none;
    border-left: 1px solid #757575;
    margin-bottom: 1.5em;
  }
  .shop_table .product-remove .remove {
    float: right;
  }
  .shop_table thead {
    display: none;
  }
  .shop_table tbody,
  .shop_table tr,
  .shop_table td,
  .shop_table th,
  .shop_table tfoot {
    display: block;
    border: none;
  }
  .shop_table tr {
    border-bottom: 1px solid #757575;
  }
  .shop_table tr:first-of-type, .shop_table tr:first-child {
    border-top: 1px solid #757575;
  }
  .shop_table tr:nth-of-type(even), .shop_table tr:nth-child(even) {
    background-color: #CCCCCC;
  }
  .shop_table td {
    padding: 0.5em;
    border-bottom: 1px solid #757575;
  }
  .shop_table td:last-of-type, .shop_table td:last-child {
    border-right: 0;
  }
  .shop_table th {
    background-color: #CCCCCC;
    border-bottom: 1px solid #757575;
  }
  .shop_table th:last-of-type, .shop_table th:last-child {
    border-right: 0;
  }
  .shop_table .product-thumbnail {
    text-align: center;
  }
  .shop_table .product-thumbnail img {
    margin: 0 auto;
  }
  .shop_table .product-name,
  .shop_table .product-price,
  .shop_table .product-quantity,
  .shop_table .product-subtotal,
  .shop_table .product-total {
    position: relative;
    padding-left: 40%;
    border-top: 1px solid #757575;
  }
  .shop_table .product-name:before,
  .shop_table .product-price:before,
  .shop_table .product-quantity:before,
  .shop_table .product-subtotal:before,
  .shop_table .product-total:before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 35%;
    width: calc(40% - 0.5em);
    max-width: 35%;
    max-width: calc(40% - 0.5em);
    height: 100%;
    padding: 0 0.5em;
    border-right: 1px solid #757575;
    font-weight: 700;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .shop_table .product-name .product-name,
  .shop_table .product-name .product-price,
  .shop_table .product-name .product-quantity,
  .shop_table .product-name .product-subtotal,
  .shop_table .product-name .product-total,
  .shop_table .product-price .product-name,
  .shop_table .product-price .product-price,
  .shop_table .product-price .product-quantity,
  .shop_table .product-price .product-subtotal,
  .shop_table .product-price .product-total,
  .shop_table .product-quantity .product-name,
  .shop_table .product-quantity .product-price,
  .shop_table .product-quantity .product-quantity,
  .shop_table .product-quantity .product-subtotal,
  .shop_table .product-quantity .product-total,
  .shop_table .product-subtotal .product-name,
  .shop_table .product-subtotal .product-price,
  .shop_table .product-subtotal .product-quantity,
  .shop_table .product-subtotal .product-subtotal,
  .shop_table .product-subtotal .product-total,
  .shop_table .product-total .product-name,
  .shop_table .product-total .product-price,
  .shop_table .product-total .product-quantity,
  .shop_table .product-total .product-subtotal,
  .shop_table .product-total .product-total {
    padding: 0;
    border: none;
  }
  .shop_table .product-name .product-name:before,
  .shop_table .product-name .product-price:before,
  .shop_table .product-name .product-quantity:before,
  .shop_table .product-name .product-subtotal:before,
  .shop_table .product-name .product-total:before,
  .shop_table .product-price .product-name:before,
  .shop_table .product-price .product-price:before,
  .shop_table .product-price .product-quantity:before,
  .shop_table .product-price .product-subtotal:before,
  .shop_table .product-price .product-total:before,
  .shop_table .product-quantity .product-name:before,
  .shop_table .product-quantity .product-price:before,
  .shop_table .product-quantity .product-quantity:before,
  .shop_table .product-quantity .product-subtotal:before,
  .shop_table .product-quantity .product-total:before,
  .shop_table .product-subtotal .product-name:before,
  .shop_table .product-subtotal .product-price:before,
  .shop_table .product-subtotal .product-quantity:before,
  .shop_table .product-subtotal .product-subtotal:before,
  .shop_table .product-subtotal .product-total:before,
  .shop_table .product-total .product-name:before,
  .shop_table .product-total .product-price:before,
  .shop_table .product-total .product-quantity:before,
  .shop_table .product-total .product-subtotal:before,
  .shop_table .product-total .product-total:before {
    content: "";
    padding: 0;
    border: none;
  }
  .shop_table .product-name:before {
    content: "Product: ";
  }
  .shop_table .product-price:before {
    content: "Price: ";
  }
  .shop_table .product-quantity:before {
    content: "Quantity: ";
  }
  .shop_table .product-subtotal:before {
    content: "Subtotal: ";
  }
  .shop_table .product-total:before {
    content: "Total: ";
  }
}
/*********************
IMPORTING COMPONENTS
This are the component styles.
Components compose of the different theme templates.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: 404 Stylesheet

******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Archive Stylesheet

******************************************************************/
.archive-title {
  width: 100%;
}

#featured-content.archive-wrapper {
  padding-top: 0;
}

#featured-content {
  position: relative;
  padding-bottom: 1.5rem;
}
#featured-content::after {
  position: absolute;
  bottom: 0;
}

.archive-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 50px 0;
}
.archive-wrapper.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.archive-wrapper.no-padding-bottom {
  padding-bottom: 0;
}
.archive-wrapper#recent-news, .archive-wrapper#cvi-wrapper, .archive-wrapper.cvi-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  padding-top: 0;
}
@media \0 screen\,screen\9  {
  .archive-wrapper#recent-news, .archive-wrapper#cvi-wrapper, .archive-wrapper.cvi-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .archive-wrapper#recent-news .each-news-post, .archive-wrapper#cvi-wrapper .each-news-post, .archive-wrapper.cvi-wrapper .each-news-post {
    max-width: 33.333%;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  .archive-wrapper#recent-news, .archive-wrapper#cvi-wrapper, .archive-wrapper.cvi-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .archive-wrapper#recent-news .each-news-post, .archive-wrapper#cvi-wrapper .each-news-post, .archive-wrapper.cvi-wrapper .each-news-post {
    max-width: 33.333%;
  }
}
@media only screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75) and (max-width: 481px), only screen and (min-width: 0\0 ) and (min-resolution: 72dpi) and (max-width: 481px) {
  .archive-wrapper#recent-news .each-news-post, .archive-wrapper#cvi-wrapper .each-news-post, .archive-wrapper.cvi-wrapper .each-news-post {
    max-width: 50%;
  }
}
@media only screen and (max-width: 481px) {
  .archive-wrapper#recent-news, .archive-wrapper#cvi-wrapper, .archive-wrapper.cvi-wrapper {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.archive-wrapper#recent-news .each-news-post, .archive-wrapper#cvi-wrapper .each-news-post, .archive-wrapper.cvi-wrapper .each-news-post {
  padding-right: 1.5rem;
}

.each-hunk .text-wrapper.page-content {
  font-size: 1.25rem;
}

.thumb-circle-wrapper {
  float: none;
  margin: auto;
}
.thumb-circle-wrapper img {
  border-radius: 50%;
  max-width: 150px;
}

.programs-filters-wrapper,
.people-filters-wrapper,
.cvi-filters-wrapper {
  z-index: 2;
  background: #fff;
  opacity: 0;
  -webkit-animation: fade_in 0.5s forwards;
          animation: fade_in 0.5s forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-transition: top 0.25s ease-in-out;
  transition: top 0.25s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 1.5rem;
}

.programs-filters,
.people-filters,
.cvi-filters {
  padding: 1.5em 0 1.5em 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.programs-filters a,
.people-filters a,
.cvi-filters a {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.programs-filters a.active,
.people-filters a.active,
.cvi-filters a.active {
  color: #fff;
}
.programs-filters a:last-of-type,
.people-filters a:last-of-type,
.cvi-filters a:last-of-type {
  margin-right: 0;
}

.cvi-filters-wrapper {
  display: block;
  padding: 1.5em 0;
  margin-bottom: 0;
  position: relative;
}
.cvi-filters-wrapper .cvi-filters {
  padding: 0;
  margin-bottom: 1.5rem;
}
.cvi-filters-wrapper .cvi-filters:last-of-type {
  margin-bottom: 0;
}

.archive-programs-wrapper {
  margin-top: 1.5rem;
}

.each-program-archive,
.each-course-archive {
  margin-bottom: 1rem;
}
.each-program-archive.hidden,
.each-course-archive.hidden {
  display: none;
}
.each-program-archive a:link, .each-program-archive a:visited,
.each-course-archive a:link,
.each-course-archive a:visited {
  color: #000;
  text-decoration: none;
}
.each-program-archive a:link:hover h3, .each-program-archive a:visited:hover h3,
.each-course-archive a:link:hover h3,
.each-course-archive a:visited:hover h3 {
  font-weight: 700;
}
.each-program-archive a:link:hover h3:after, .each-program-archive a:visited:hover h3:after,
.each-course-archive a:link:hover h3:after,
.each-course-archive a:visited:hover h3:after {
  font-weight: 700;
}
.each-program-archive a:link.arrow-btn, .each-program-archive a:visited.arrow-btn,
.each-course-archive a:link.arrow-btn,
.each-course-archive a:visited.arrow-btn {
  font-weight: normal;
  font-size: 1.125rem;
}
.each-program-archive .course-details,
.each-course-archive .course-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.each-program-archive .meta,
.each-course-archive .meta {
  text-transform: uppercase;
  font-size: 0.85rem;
}
.each-program-archive .meta .each-program,
.each-course-archive .meta .each-program {
  padding: 0 5px;
  color: #757575;
  position: relative;
  display: inline-block;
}
.each-program-archive .meta .each-program::after,
.each-course-archive .meta .each-program::after {
  content: "";
  display: block;
  height: 10px;
  width: 1px;
  background: #757575;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.each-program-archive .meta .each-program:last-child::after,
.each-course-archive .meta .each-program:last-child::after {
  display: none;
}
.each-program-archive .meta .each-program:first-child,
.each-course-archive .meta .each-program:first-child {
  padding-left: 0;
}
.each-program-archive h3,
.each-course-archive h3 {
  margin: 0;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  font-size: 1.5rem;
  position: relative;
  padding-right: 25px;
}
.each-program-archive h3 span,
.each-course-archive h3 span {
  font-size: 1.25rem;
}
.each-program-archive h3::after,
.each-course-archive h3::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f061";
  float: right;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.each-thumb {
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.each-thumb img {
  max-width: 100%;
  height: auto;
  width: auto;
  float: left;
}
@media \0 screen\,screen\9  {
  .each-thumb img {
    width: 100%;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  .each-thumb img {
    width: 100%;
  }
}

.each-event-post h4 {
  margin: 0;
}
.each-event-post .event-dates {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
@media only screen and (min-width: 1030px) {
  .each-event-post .event-dates {
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 1030px) {
  .each-event-post .event-dates {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-height: 950px) {
  .each-event-post .event-dates {
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
  }
}
.each-event-post .event-excerpt {
  margin-bottom: 1rem;
}
.each-event-post .categories {
  text-transform: uppercase;
  font-size: 0.75rem;
  text-align: right;
  font-weight: bold;
}

.each-news-post {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-grid-column-span: 1;
  grid-column: span 1;
  -ms-grid-row-span: 1;
  grid-row: span 1;
}
@media only screen and (max-height: 1080px) {
  .each-news-post {
    margin-bottom: 1rem;
  }
}
.each-news-post .each-thumb {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.each-news-post.featured-news-post {
  -ms-grid-column-span: 1;
  grid-column: span 1;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.each-news-post.featured-news-post .each-thumb img {
  margin-bottom: 0.5rem;
}
.each-news-post .news-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.each-news-post .news-details .each-excerpt {
  margin: 0;
  font-size: 0.9rem;
  position: relative;
  margin-bottom: 1rem;
}

.categories {
  text-transform: uppercase;
  font-size: 0.75rem;
  text-align: left;
  font-weight: bold;
}
.categories a:link, .categories a:active, .categories a:visited {
  text-decoration: none;
}

.people-archive-listing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.each-faculty-post {
  margin: 25px 0;
}
.each-faculty-post:not([data-first-load]):nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.each-faculty-post:not([data-first-load]):nth-child(2) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.each-faculty-post:not([data-first-load]):nth-child(3) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.each-faculty-post:not([data-first-load]):nth-child(4) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.each-faculty-post:not([data-first-load]):nth-child(5) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.each-faculty-post:not([data-first-load]):nth-child(6) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.each-faculty-post:not([data-first-load]):nth-child(7) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.each-faculty-post:not([data-first-load]):nth-child(8) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.each-faculty-post:not([data-first-load]):nth-child(9) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.each-faculty-post:not([data-first-load]):nth-child(n+10) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.each-faculty-post.hidden {
  display: none;
}
.each-faculty-post h4 {
  margin: 0;
}
.each-faculty-post .each-excerpt {
  margin: 0;
  font-size: 0.9rem;
}
.each-faculty-post .categories {
  text-transform: uppercase;
  font-size: 0.75rem;
  text-align: left;
  font-weight: bold;
}
.each-faculty-post .each-icon {
  font-size: 5rem;
  text-align: center;
  line-height: 1rem;
}
.each-faculty-post .post-details {
  font-size: 0.75rem;
  text-transform: uppercase;
}
.each-faculty-post .each-thumb {
  text-align: left;
}
.each-faculty-post .each-thumb img {
  max-width: 150px;
  width: 100%;
  float: none;
  margin: auto;
}
.each-faculty-post .each-icon .each-icon-bg {
  text-align: center;
  max-width: 150px;
  width: 100%;
  background: #330033;
  border-radius: 50%;
  color: #fff;
}
.each-faculty-post .each-icon .each-icon-bg i {
  color: #fff;
  margin: 23% 0;
}

.each-news-post {
  margin: 25px 0;
}
.each-news-post:not([data-first-load]):nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.each-news-post:not([data-first-load]):nth-child(2) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.each-news-post:not([data-first-load]):nth-child(3) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.each-news-post:not([data-first-load]):nth-child(4) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.each-news-post:not([data-first-load]):nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.each-news-post:not([data-first-load]):nth-child(6) {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}
.each-news-post:not([data-first-load]):nth-child(7) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.each-news-post:not([data-first-load]):nth-child(8) {
  -webkit-animation-delay: 1.75s;
          animation-delay: 1.75s;
}
.each-news-post:not([data-first-load]):nth-child(9) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.each-news-post:not([data-first-load]):nth-child(n+10) {
  -webkit-animation-delay: 2.25s;
          animation-delay: 2.25s;
}
.each-news-post.hidden {
  display: none;
}
.each-news-post h4 {
  margin: 0;
}
.each-news-post .categories {
  text-transform: uppercase;
  font-size: 0.75rem;
  text-align: left;
  font-weight: bold;
}

.each-file-post {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.each-file-post .file-icon {
  font-size: 3rem;
  text-align: center;
  line-height: 1rem;
  width: auto;
  margin-right: 0.85rem;
}
.each-file-post .file-details h4 {
  margin: 0;
}
.each-file-post .file-details .meta.categories {
  padding: 0;
}

.each-perspectives-issue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.each-perspectives-issue .perspectives-title {
  display: none;
}
.each-perspectives-issue .each-perspective {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.each-perspectives-issue .each-perspective h4 {
  margin-bottom: 0.75rem;
}
.each-perspectives-issue .each-featured-perspective {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.each-perspectives-issue .each-featured-perspective,
.each-perspectives-issue .each-perspective {
  margin: 1.5rem 0;
}
.each-perspectives-issue .each-featured-perspective .each-excerpt,
.each-perspectives-issue .each-perspective .each-excerpt {
  margin-bottom: 0.5rem;
}

.each-featured-perspective {
  margin-bottom: 1.5rem;
}
.each-featured-perspective .featured-post-thumbnail {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  padding-bottom: 66%;
}
.each-featured-perspective .featured-post-thumbnail img {
  margin-bottom: 0;
}
.each-featured-perspective h2.h1 {
  margin: 0;
}

.full-width-editor a {
  font-weight: 600;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Author Stylesheet

******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Comments Stylesheet

******************************************************************/
/* h3 comment title */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #CCCCCC;
  /* number of comments span */
}
.commentlist {
  margin: 0;
  list-style-type: none;
}

.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #CCCCCC;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */
}
.comment .comment-author {
  padding: 7px;
  border: 0;
}
.comment .vcard {
  margin-left: 50px;
}
.comment .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
.comment .vcard time {
  display: block;
  font-size: 0.9em;
  font-style: italic;
}
.comment .vcard time a {
  color: #4D4D4D;
  text-decoration: none;
}
.comment .vcard time a:hover {
  text-decoration: underline;
}
.comment .vcard .avatar {
  position: absolute;
  left: 16px;
  border-radius: 50%;
}
.comment:last-child {
  margin-bottom: 0;
}
.comment .children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}
.comment[class*=depth-] {
  margin-top: 1.1em;
}
.comment.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
.comment:not(.depth-1) {
  margin-top: 0;
  margin-left: 7px;
  padding: 7px;
}
.comment.odd {
  background-color: #fff;
}
.comment.even {
  background: #CCCCCC;
}
/* comment meta */
/* comment content */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}

/* end .commentlist .comment_content */
/* comment reply link */
.comment-reply-link {
  font-size: 0.9em;
  float: right;
} /* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em;
}

/******************************************************************
COMMENT FORM STYLES
******************************************************************/
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #CCCCCC;
}

#reply-title {
  margin: 0;
}

.logged-in-as {
  color: #4D4D4D;
  font-style: italic;
  margin: 0;
}
.logged-in-as a {
  color: #000;
}

.comment-form-comment {
  margin: 1.5em 0 0.75em;
}

.form-allowed-tags {
  padding: 1.5em;
  background-color: #CCCCCC;
  font-size: 0.9em;
}

/* comment submit button */
#submit {
  float: right;
}
#signup-content #submit {
  float: none;
  font-size: 1em;
  width: auto;
}

/* comment form title */
#comment-form-title {
  margin: 0 0 1.1em;
}

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}

/* no comments */
.nocomments {
  margin: 0 20px 1.1em;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Footer Stylesheet

******************************************************************/
#footer, .footer {
  clear: both;
  color: #000;
  max-width: 1400px;
  margin: auto;
}

.home #footer, .home .footer {
  display: none;
}
@media only screen and (max-width: 768px) {
  .home #footer, .home .footer {
    display: block;
    margin-bottom: 10vh;
  }
}

#inner-footer {
  padding: 1rem;
}

.footer-title {
  text-transform: uppercase;
  font-weight: bold;
  padding: 0.75rem 0 0 0;
}

.contextual-footer-filters {
  background: #fff;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  bottom: 0px;
  left: 0px;
  right: 0px;
  top: auto;
  width: 100%;
  overflow: visible;
}
.contextual-footer-filters::before {
  display: block;
}
.contextual-footer-filters::before {
  position: absolute;
  top: auto;
  bottom: 0;
  display: none;
  width: 75%;
  margin: 0 12.5%;
  background: #757575;
}
.contextual-footer-filters.active {
  width: 90vw;
}
@media only screen and (min-width: 768px) {
  .contextual-footer-filters.active {
    height: auto;
    width: 100%;
  }
}
.contextual-footer-filters h4 {
  width: 100%;
  padding: 1rem 2rem;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 100%;
}
@media only screen and (min-width: 768px) {
  .contextual-footer-filters {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .contextual-footer-filters::before {
    display: block;
  }
  .contextual-footer-filters h4 {
    display: none;
  }
}
@media only screen and (min-width: 1030px) {
  .contextual-footer-filters {
    width: 100%;
  }
}
@media only screen and (min-width: 1030px) {
  .contextual-footer-filters {
    width: 100%;
  }
}
.contextual-footer-filters .each-footer-filter {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  color: #757575;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 80%;
  margin: 0 10%;
  border-bottom: 1px solid #CCCCCC;
}
@media only screen and (min-width: 768px) {
  .contextual-footer-filters .each-footer-filter {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    margin: 0;
    border-bottom: 0;
  }
}
@media only screen and (min-width: 1030px) {
  .contextual-footer-filters .each-footer-filter {
    width: 25%;
  }
}
@media only screen and (min-width: 1030px) {
  .contextual-footer-filters .each-footer-filter {
    width: 25%;
  }
}
.contextual-footer-filters .each-footer-filter:nth-child(2) a:link::before,
.contextual-footer-filters .each-footer-filter:nth-child(2) a:visited::before {
  border-color: #853795;
}
.contextual-footer-filters .each-footer-filter:nth-child(3) a:link::before,
.contextual-footer-filters .each-footer-filter:nth-child(3) a:visited::before {
  border-color: #e02826;
}
.contextual-footer-filters .each-footer-filter:nth-child(4) a:link::before,
.contextual-footer-filters .each-footer-filter:nth-child(4) a:visited::before {
  border-color: #6ebe4a;
}
.contextual-footer-filters .each-footer-filter a:link,
.contextual-footer-filters .each-footer-filter a:visited {
  position: relative;
  padding: 20px 5px;
  text-decoration: none;
  color: #000;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 1030px) {
  .contextual-footer-filters .each-footer-filter a:link,
  .contextual-footer-filters .each-footer-filter a:visited {
    padding: 1.25rem 1.25rem 1.625rem 1.25rem;
  }
}
@media only screen and (min-width: 1030px) {
  .contextual-footer-filters .each-footer-filter a:link,
  .contextual-footer-filters .each-footer-filter a:visited {
    padding: 1.25rem 1.25rem 1.625rem 1.25rem;
  }
}
.contextual-footer-filters .each-footer-filter a:link::before,
.contextual-footer-filters .each-footer-filter a:visited::before {
  content: "";
  position: absolute;
  top: auto;
  bottom: -10px;
  margin: auto;
  left: 0;
  right: 0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 1px solid #757575;
  z-index: 4;
}
.contextual-footer-filters .each-footer-filter a:link::after,
.contextual-footer-filters .each-footer-filter a:visited::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: -14px;
  margin: auto;
  left: 0;
  right: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background: #fff;
  z-index: 3;
}
.contextual-footer-filters .each-footer-filter a:link:hover,
.contextual-footer-filters .each-footer-filter a:visited:hover {
  color: #000;
}
.contextual-footer-filters .each-footer-filter a:link:hover::before,
.contextual-footer-filters .each-footer-filter a:visited:hover::before {
  border-width: 2px;
}
.contextual-footer-filters .each-footer-filter a:link span,
.contextual-footer-filters .each-footer-filter a:visited span {
  width: 100%;
  font-size: 0.85rem;
  float: left;
  text-align: center;
}
.contextual-footer-filters .each-footer-filter:active, .contextual-footer-filters .each-footer-filter.active {
  color: #000;
  border-color: #000;
}
.contextual-footer-filters .each-footer-filter:active::before, .contextual-footer-filters .each-footer-filter.active::before {
  border-width: 2px;
}
.contextual-footer-filters .each-footer-filter:active:nth-child(2)::before, .contextual-footer-filters .each-footer-filter:active:nth-child(7)::before, .contextual-footer-filters .each-footer-filter.active:nth-child(2)::before, .contextual-footer-filters .each-footer-filter.active:nth-child(7)::before {
  border-color: #853795;
}
.contextual-footer-filters .each-footer-filter:active:nth-child(3)::before, .contextual-footer-filters .each-footer-filter:active:nth-child(6)::before, .contextual-footer-filters .each-footer-filter.active:nth-child(3)::before, .contextual-footer-filters .each-footer-filter.active:nth-child(6)::before {
  border-color: #e02826;
}
.contextual-footer-filters .each-footer-filter:active:nth-child(4)::before, .contextual-footer-filters .each-footer-filter:active:nth-child(5)::before, .contextual-footer-filters .each-footer-filter.active:nth-child(4)::before, .contextual-footer-filters .each-footer-filter.active:nth-child(5)::before {
  border-color: #6ebe4a;
}

#contextual-footer-info {
  padding: 50px 0;
  display: none;
}
@media only screen and (min-width: 768px) {
  #contextual-footer-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#contextual-footer-info .contextual-footer-content {
  float: left;
  width: 100%;
  padding: 1.5rem 1rem;
}
#contextual-footer-info .contextual-footer-content .each-footer-content {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#contextual-footer-info .contextual-footer-content .each-footer-content.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#contextual-footer-info .contextual-footer-content .each-footer-content > div:last-child .each-footer-context {
  border-right: 0;
}
#contextual-footer-info .contextual-footer-content .each-footer-content .each-excerpt {
  display: none;
}

.each-course-footer, .each-footer-context, .each-semester-footer {
  padding: 25px 0;
  border-right: 1px solid #757575;
}
.each-course-footer a:link, .each-course-footer a:visited, .each-footer-context a:link, .each-footer-context a:visited, .each-semester-footer a:link, .each-semester-footer a:visited {
  text-decoration: none;
  color: #000;
}
.each-course-footer h4, .each-course-footer h5, .each-footer-context h4, .each-footer-context h5, .each-semester-footer h4, .each-semester-footer h5 {
  margin: 0;
}
.each-course-footer .course-details, .each-course-footer .post-details, .each-course-footer .semester-details, .each-footer-context .course-details, .each-footer-context .post-details, .each-footer-context .semester-details, .each-semester-footer .course-details, .each-semester-footer .post-details, .each-semester-footer .semester-details {
  font-size: 0.75rem;
}
.each-course-footer .course-details .meta, .each-course-footer .post-details .meta, .each-course-footer .semester-details .meta, .each-footer-context .course-details .meta, .each-footer-context .post-details .meta, .each-footer-context .semester-details .meta, .each-semester-footer .course-details .meta, .each-semester-footer .post-details .meta, .each-semester-footer .semester-details .meta {
  text-align: left;
  text-transform: uppercase;
}
.each-course-footer .course-details .meta .each-program, .each-course-footer .post-details .meta .each-program, .each-course-footer .semester-details .meta .each-program, .each-footer-context .course-details .meta .each-program, .each-footer-context .post-details .meta .each-program, .each-footer-context .semester-details .meta .each-program, .each-semester-footer .course-details .meta .each-program, .each-semester-footer .post-details .meta .each-program, .each-semester-footer .semester-details .meta .each-program {
  padding: 0 5px;
  color: #757575;
  position: relative;
  display: inline-block;
}
.each-course-footer .course-details .meta .each-program::after, .each-course-footer .post-details .meta .each-program::after, .each-course-footer .semester-details .meta .each-program::after, .each-footer-context .course-details .meta .each-program::after, .each-footer-context .post-details .meta .each-program::after, .each-footer-context .semester-details .meta .each-program::after, .each-semester-footer .course-details .meta .each-program::after, .each-semester-footer .post-details .meta .each-program::after, .each-semester-footer .semester-details .meta .each-program::after {
  content: "";
  display: block;
  height: 10px;
  width: 1px;
  background: #808080;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.each-course-footer .course-details .meta .each-program:last-child::after, .each-course-footer .post-details .meta .each-program:last-child::after, .each-course-footer .semester-details .meta .each-program:last-child::after, .each-footer-context .course-details .meta .each-program:last-child::after, .each-footer-context .post-details .meta .each-program:last-child::after, .each-footer-context .semester-details .meta .each-program:last-child::after, .each-semester-footer .course-details .meta .each-program:last-child::after, .each-semester-footer .post-details .meta .each-program:last-child::after, .each-semester-footer .semester-details .meta .each-program:last-child::after {
  display: none;
}

ul.footer-nav {
  padding: 1.5rem 0;
  max-width: 1200px;
  margin: auto;
  float: none;
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  margin-top: 0.5em;
}
@media only screen and (min-width: 1030px) {
  ul.footer-nav {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
}
@media only screen and (min-width: 1030px) {
  ul.footer-nav {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
}
@media screen and (min-color-index: 0) and (-webkit-min-device-pixel-ratio: 0) {
  ul.footer-nav {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    ul.footer-nav {
      -webkit-column-count: 1;
         -moz-column-count: 1;
              column-count: 1;
    }
  }
}
ul.footer-nav a {
  color: #000;
  text-decoration: none;
  padding: 0.75rem;
  display: inline-block;
  width: 100%;
}
ul.footer-nav li {
  -webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
  page-break-inside: avoid; /* Firefox */
  -moz-column-break-inside: avoid;
       break-inside: avoid; /* IE 10+ */
  width: 100%;
}
ul.footer-nav li ul {
  padding-left: 1.25rem;
  border-left: 1px solid #757575;
}
ul.footer-nav li ul li {
  font-weight: normal;
  text-transform: none;
}
ul.footer-nav li ul li a {
  padding: 0.2rem 0;
}
ul.footer-nav > li {
  text-transform: uppercase;
  font-weight: 700;
}
@media screen and (min-color-index: 0) and (-webkit-min-device-pixel-ratio: 0) {
  ul.footer-nav > li {
    display: inline;
    width: 100%;
    float: left;
  }
}
@media only screen and (min-color-index: 0) and (-webkit-min-device-pixel-ratio: 0) and (min-width: 768px) {
  ul.footer-nav > li {
    width: 25%;
  }
}
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    ul.footer-nav > li {
      display: inline;
      width: 100%;
      float: left;
    }
    @media only screen and (min-width: 768px) {
      ul.footer-nav > li {
        width: 25%;
      }
    }
  }
}

/* end .footer-links */
_::-webkit-full-page-media, _:future, :root .safari_only {
  /* end .footer-links */
}
_::-webkit-full-page-media ul.footer-nav, _:future ul.footer-nav, :root .safari_only ul.footer-nav {
  -webkit-column-count: 1;
          column-count: 1;
}
_::-webkit-full-page-media ul.footer-nav > li, _:future ul.footer-nav > li, :root .safari_only ul.footer-nav > li {
  display: inline;
  width: 50%;
  float: left;
}
@media (min-width: 1030px) {
  _::-webkit-full-page-media ul.footer-nav > li, _:future ul.footer-nav > li, :root .safari_only ul.footer-nav > li {
    width: 25%;
  }
}

.copyright-wrap {
  padding: 10px 0;
}
@media only screen and (max-width: 1030px) {
  .copyright-wrap {
    padding-right: 10vw;
  }
}
@media only screen and (max-width: 1030px) and (min-width: 768px) {
  .copyright-wrap {
    padding-right: 5vw;
  }
}

.copyright {
  margin: 0;
  text-align: center;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Front Page Stylesheet

******************************************************************/
@media only screen and (max-width: 481px) {
  .home #main {
    padding-right: 7vw;
  }
}
@media only screen and (min-width: 1030px) and (max-height: 950px) {
  .home .each-excerpt {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .home #principals-welcome {
    line-height: 1.5;
  }
  .home #principals-welcome .height-wrapper {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
  .home #menu-programs-list,
  .home #principals-welcome {
    font-size: 0.9em;
  }
  .home #menu-programs-list {
    line-height: 1.25;
  }
  .home #home-events > div:nth-child(odd) {
    padding-left: 0;
    padding-right: 1rem;
  }
  .home #home-events > div:nth-child(even) {
    padding-right: 0;
    padding-left: 1rem;
  }
  .home h4,
  .home .h4,
  .home #home-events,
  .home #home-events .each-event-post,
  .home .each-featured-perspective,
  .home #principals-welcome,
  .home #home-perspective {
    margin-bottom: 1em;
  }
  .home .each-thumb {
    margin-bottom: 0.5em;
  }
}
@media only screen and (min-width: 1030px) and (max-height: 800px) {
  .home #principals-welcome {
    line-height: 1.25;
  }
  .home #principals-welcome .height-wrapper {
    -webkit-line-clamp: 3;
  }
  .home #menu-programs-list {
    line-height: 1;
  }
  .home #home-events > div:nth-child(odd) {
    padding-right: 0.75rem;
  }
  .home #home-events > div:nth-child(even) {
    padding-left: 0.75rem;
  }
  .home h4,
  .home .h4,
  .home #home-events,
  .home #home-events .each-event-post,
  .home .each-featured-perspective,
  .home #principals-welcome,
  .home #home-perspective {
    margin-bottom: 0.75em;
  }
  .home .each-thumb {
    margin-bottom: 0.25em;
  }
  .home .each-home-column ul.menu li.programs-style a .menu-text-wrapper .menu-title,
  .home .widget_nav_menu ul.menu li.programs-style a .menu-text-wrapper .menu-title {
    font-size: 1.125em;
  }
}
@media only screen and (min-width: 1030px) and (max-height: 750px) {
  .home #principals-welcome .height-wrapper {
    -webkit-line-clamp: 2;
  }
  .home .each-home-column ul.menu li.programs-style a .menu-text-wrapper .menu-title,
  .home .widget_nav_menu ul.menu li.programs-style a .menu-text-wrapper .menu-title {
    font-size: 1em;
  }
}
@media only screen and (min-width: 1030px) and (max-height: 950px) {
  .home .each-excerpt {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .home #principals-welcome {
    line-height: 1.5;
  }
  .home #principals-welcome .height-wrapper {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
  .home #menu-programs-list,
  .home #principals-welcome {
    font-size: 0.9em;
  }
  .home #menu-programs-list {
    line-height: 1.25;
  }
  .home #home-events > div:nth-child(odd) {
    padding-left: 0;
    padding-right: 1rem;
  }
  .home #home-events > div:nth-child(even) {
    padding-right: 0;
    padding-left: 1rem;
  }
  .home h4,
  .home .h4,
  .home #home-events,
  .home #home-events .each-event-post,
  .home .each-featured-perspective,
  .home #principals-welcome,
  .home #home-perspective {
    margin-bottom: 1em;
  }
  .home .each-thumb {
    margin-bottom: 0.5em;
  }
}
@media only screen and (min-width: 1030px) and (max-height: 800px) {
  .home #principals-welcome {
    line-height: 1.25;
  }
  .home #principals-welcome .height-wrapper {
    -webkit-line-clamp: 3;
  }
  .home #menu-programs-list {
    line-height: 1;
  }
  .home #home-events > div:nth-child(odd) {
    padding-right: 0.75rem;
  }
  .home #home-events > div:nth-child(even) {
    padding-left: 0.75rem;
  }
  .home h4,
  .home .h4,
  .home #home-events,
  .home #home-events .each-event-post,
  .home .each-featured-perspective,
  .home #principals-welcome,
  .home #home-perspective {
    margin-bottom: 0.75em;
  }
  .home .each-thumb {
    margin-bottom: 0.25em;
  }
  .home .each-home-column ul.menu li.programs-style a .menu-text-wrapper .menu-title,
  .home .widget_nav_menu ul.menu li.programs-style a .menu-text-wrapper .menu-title {
    font-size: 1.125em;
  }
}
@media only screen and (min-width: 1030px) and (max-height: 750px) {
  .home #principals-welcome .height-wrapper {
    -webkit-line-clamp: 2;
  }
  .home .each-home-column ul.menu li.programs-style a .menu-text-wrapper .menu-title,
  .home .widget_nav_menu ul.menu li.programs-style a .menu-text-wrapper .menu-title {
    font-size: 1em;
  }
}

#site-modal {
  background: #fff;
  padding: 25px;
  width: 95%;
  margin: auto;
  max-width: 600px;
  position: relative;
}

#modal-trigger {
  opacity: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

.each-home-column .widget,
.widget_nav_menu .widget {
  padding: 10px;
  float: left;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .each-home-column .widget,
  .widget_nav_menu .widget {
    width: 33%;
  }
}
@media only screen and (min-width: 1030px) {
  .each-home-column .widget,
  .widget_nav_menu .widget {
    width: 100%;
  }
}
@media only screen and (min-width: 1030px) {
  .each-home-column .widget,
  .widget_nav_menu .widget {
    width: 100%;
  }
}
.each-home-column .widget:first-child,
.widget_nav_menu .widget:first-child {
  padding-top: 0;
}
.each-home-column[data-order="1"] h4,
.widget_nav_menu[data-order="1"] h4 {
  color: #e02826;
}
.each-home-column[data-order="2"] h4,
.widget_nav_menu[data-order="2"] h4 {
  color: #6ebe4a;
}
.each-home-column[data-order="3"] h4,
.widget_nav_menu[data-order="3"] h4 {
  color: #853795;
}
.each-home-column ul.menu,
.widget_nav_menu ul.menu {
  float: left;
  width: 100%;
  margin: 0 0 25px 0;
  padding-bottom: 25px;
  position: relative;
}
@media only screen and (min-width: 1030px) {
  .each-home-column ul.menu,
  .widget_nav_menu ul.menu {
    margin: 0;
  }
}
@media only screen and (min-width: 1030px) {
  .each-home-column ul.menu,
  .widget_nav_menu ul.menu {
    margin: 0;
  }
}
.each-home-column ul.menu::after,
.widget_nav_menu ul.menu::after {
  position: absolute;
  bottom: 0;
}
@media only screen and (min-width: 1030px) {
  .each-home-column ul.menu::after,
  .widget_nav_menu ul.menu::after {
    display: none;
  }
}
@media only screen and (min-width: 1030px) {
  .each-home-column ul.menu::after,
  .widget_nav_menu ul.menu::after {
    display: none;
  }
}
.each-home-column ul.menu li,
.widget_nav_menu ul.menu li {
  width: 100%;
}
.each-home-column ul.menu li.programs-style a,
.widget_nav_menu ul.menu li.programs-style a {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0.25em 0;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
@media only screen and (min-width: 1030px) {
  .each-home-column ul.menu li.programs-style a,
  .widget_nav_menu ul.menu li.programs-style a {
    padding: 0.5em 0;
  }
}
@media only screen and (min-width: 1030px) {
  .each-home-column ul.menu li.programs-style a,
  .widget_nav_menu ul.menu li.programs-style a {
    padding: 0.5em 0;
  }
}
@media only screen and (max-height: 1080px) {
  .each-home-column ul.menu li.programs-style a,
  .widget_nav_menu ul.menu li.programs-style a {
    padding: 0.25em 0;
  }
}
.each-home-column ul.menu li.programs-style a:hover,
.widget_nav_menu ul.menu li.programs-style a:hover {
  font-weight: 700;
  text-decoration: none;
}
.each-home-column ul.menu li.programs-style a:hover .menu-icon::before,
.widget_nav_menu ul.menu li.programs-style a:hover .menu-icon::before {
  font-weight: 700;
}
.each-home-column ul.menu li.programs-style a .menu-text-wrapper,
.widget_nav_menu ul.menu li.programs-style a .menu-text-wrapper {
  max-width: 90%;
}
.each-home-column ul.menu li.programs-style a .menu-text-wrapper .menu-title,
.widget_nav_menu ul.menu li.programs-style a .menu-text-wrapper .menu-title {
  font-size: 1.125rem;
  display: inline-block;
}
.each-home-column ul.menu li.programs-style a .menu-text-wrapper .menu-description,
.widget_nav_menu ul.menu li.programs-style a .menu-text-wrapper .menu-description {
  font-size: 0.85rem;
  margin-left: 0.5rem;
  display: inline-block;
}
.each-home-column ul.menu li.programs-style a .menu-icon,
.widget_nav_menu ul.menu li.programs-style a .menu-icon {
  max-width: 10%;
  float: right;
  margin-left: auto;
}
.each-home-column ul.menu li.programs-style a .menu-icon::before,
.widget_nav_menu ul.menu li.programs-style a .menu-icon::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f061";
}

.each-home-column {
  padding: 1rem;
  -webkit-animation: fade_in 0.5s forwards;
          animation: fade_in 0.5s forwards;
  opacity: 0;
}
@media only screen and (min-width: 1030px) {
  .each-home-column {
    padding: 0 1rem;
  }
}
@media only screen and (min-width: 1030px) {
  .each-home-column {
    padding: 0 1rem;
  }
}

#column-one,
#column-five {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
#column-one .wireframe-block,
#column-five .wireframe-block {
  display: none;
}

#column-four {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

#column-three {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

#column-two {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

#columns-width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (min-width: 1030px) {
  #column-one {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #column-one .wireframe-block {
    display: block;
  }
  #column-two {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #column-three {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  #column-four {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  #column-five {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  #column-five .wireframe-block {
    display: block;
  }
  #columns-wrapper {
    overflow: hidden;
    width: 100%;
    height: 80vh;
    padding-top: 1.25rem;
    margin-bottom: 10vh;
  }
  #columns-width {
    position: relative;
    width: 167%;
    left: -33.5%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
    height: 100%;
    overflow: hidden;
  }
  #columns-width.slide-left {
    left: -66%;
  }
  #columns-width.slide-right {
    left: 0%;
  }
}
@media only screen and (min-width: 1030px) {
  #column-one {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #column-one .wireframe-block {
    display: block;
  }
  #column-two {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #column-three {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  #column-four {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  #column-five {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  #column-five .wireframe-block {
    display: block;
  }
  #columns-wrapper {
    overflow: hidden;
    width: 100%;
    height: 80vh;
    padding-top: 1.25rem;
    margin-bottom: 10vh;
  }
  #columns-width {
    position: relative;
    width: 167%;
    left: -33.5%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
    height: 100%;
    overflow: hidden;
  }
  #columns-width.slide-left {
    left: -66%;
  }
  #columns-width.slide-right {
    left: 0%;
  }
}
@media only screen and (min-width: 1030px) {
  #columns-wrapper .each-column-item {
    opacity: 0;
  }
  #columns-wrapper .each-column-item.hidden {
    opacity: 0 !important;
    visibility: hidden;
  }
}
@media only screen and (min-width: 1030px) {
  #columns-wrapper .each-column-item {
    opacity: 0;
  }
  #columns-wrapper .each-column-item.hidden {
    opacity: 0 !important;
    visibility: hidden;
  }
}
#columns-wrapper .each-column-item.visible {
  visibility: visible;
}
#columns-wrapper .each-column-item.visible:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
#columns-wrapper .each-column-item.visible:nth-child(2) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
#columns-wrapper .each-column-item.visible:nth-child(3) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
#columns-wrapper .each-column-item.visible:nth-child(4) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
#columns-wrapper .each-column-item.visible:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
#columns-wrapper .each-column-item.visible:nth-child(6) {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}

#ad-blocks-wrapper {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding-top: 25px;
}
#ad-blocks-wrapper::before {
  position: absolute;
  top: 0;
  opacity: 0;
}
@media only screen and (min-width: 1030px) {
  #ad-blocks-wrapper::before {
    opacity: 1;
  }
}
@media only screen and (min-width: 1030px) {
  #ad-blocks-wrapper::before {
    opacity: 1;
  }
}
#ad-blocks-wrapper[data-order="1"] ul li a::before {
  background: #6ebe4a;
}
#ad-blocks-wrapper[data-order="2"] ul li a::before {
  background: #e02826;
}
#ad-blocks-wrapper[data-order="3"] ul li a::before {
  background: #853795;
}
#ad-blocks-wrapper ul {
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0 0 1.5rem 0;
}
#ad-blocks-wrapper ul::after {
  position: absolute;
  bottom: 0;
}
#ad-blocks-wrapper ul li {
  width: 48%;
  margin-right: 2%;
  margin-bottom: 2%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#ad-blocks-wrapper ul li a {
  color: #000;
  width: 100%;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  position: relative;
  font-size: 1.125rem;
  position: relative;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#ad-blocks-wrapper ul li a .image-wrapper {
  float: left;
  width: 100%;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  overflow: hidden;
  padding-bottom: 66%;
}
#ad-blocks-wrapper ul li a:hover {
  font-weight: 700;
  text-decoration: none;
}
#ad-blocks-wrapper ul li a:hover .menu-title::after {
  font-weight: 700;
}
#ad-blocks-wrapper ul li a:hover .menu-description {
  opacity: 1;
}
#ad-blocks-wrapper ul li a img {
  float: left;
  max-width: 100%;
}
#ad-blocks-wrapper ul li a .menu-title {
  float: left;
  width: 100%;
  justify-self: flex-end;
}
@media only screen and (max-height: 1080px) {
  #ad-blocks-wrapper ul li a .menu-title {
    font-size: 0.85rem;
  }
}
#ad-blocks-wrapper ul li a .menu-title::after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f061";
  position: relative;
  float: right;
  z-index: 2;
}
#ad-blocks-wrapper ul li a .menu-title, #ad-blocks-wrapper ul li a .menu-description, #ad-blocks-wrapper ul li a .menu-icon {
  z-index: 2;
}

#principals-welcome {
  margin: 0 0 25px 0;
  position: relative;
}
@media only screen and (min-width: 1030px) {
  #principals-welcome .height-wrapper {
    overflow: hidden;
    line-height: 1.45rem; /* fallback */
    max-height: 10rem; /* fallback */
  }
}
@media only screen and (min-width: 1030px) {
  #principals-welcome .height-wrapper {
    overflow: hidden;
    line-height: 1.45rem; /* fallback */
    max-height: 10rem; /* fallback */
  }
}

#home-news {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
#home-news[data-order="1"] h4 a {
  color: #6ebe4a;
}
#home-news[data-order="2"] h4 a {
  color: #e02826;
}
#home-news[data-order="3"] h4 a {
  color: #853795;
}
#home-news .each-news-post:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
#home-news .each-news-post:nth-child(2) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
#home-news .each-news-post:nth-child(3) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
#home-news .each-news-post:nth-child(4) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
#home-news .each-news-post:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
#home-news .each-news-post:nth-child(6) {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}
#home-news .each-news-post h4 {
  margin: 0;
}
#home-news .each-news-post .each-excerpt {
  margin: 0;
}

#home-events {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
#home-events[data-order="1"] h4 a {
  color: #6ebe4a;
}
#home-events[data-order="2"] h4 a {
  color: #e02826;
}
#home-events[data-order="3"] h4 a {
  color: #853795;
}
@media only screen and (min-width: 768px) {
  #home-events > div:nth-child(2) {
    padding-right: 0;
    padding-left: 1.5rem;
  }
}
#home-events .each-event-post {
  margin-bottom: 1.25rem;
}
#home-filters-trigger {
  display: none;
}
#home-filters-trigger i {
  margin: auto;
  float: none;
}

#home-perspective {
  position: relative;
  margin: 25px 0;
  overflow: hidden;
}
@media only screen and (min-width: 1030px) {
  #home-perspective {
    margin: 0 0 1.25rem 0;
    padding: 0;
  }
}
@media only screen and (min-width: 1030px) {
  #home-perspective {
    margin: 0 0 1.25rem 0;
    padding: 0;
  }
}
#home-perspective::after {
  position: absolute;
  bottom: 0;
  left: 0;
}
#home-perspective .perspectives-title {
  display: block;
  margin-bottom: 0.5rem;
}
#home-perspective .featured-post-thumbnail {
  margin-bottom: 1rem;
  text-align: center;
}
@media only screen and (max-height: 1080px) {
  #home-perspective .each-featured-perspective p.meta {
    margin: 0;
  }
}

#home-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  height: 100vh;
  width: 0;
  z-index: 8;
  overflow: hidden;
  -webkit-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
@media only screen and (min-width: 768px) {
  #home-filters {
    z-index: 5;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
#home-filters::before {
  position: absolute;
  top: 0;
  display: none;
  width: 85%;
  margin: 0 7.5%;
  background: #CCCCCC;
}
#home-filters #home-filters-overlay {
  display: none;
}
@media only screen and (max-width: 768px) {
  #home-filters #home-filters-overlay {
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
  }
}
#home-filters.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90vw;
  -webkit-box-shadow: 0px 0px 9px 4px rgba(0, 0, 0, 0.33);
          box-shadow: 0px 0px 9px 4px rgba(0, 0, 0, 0.33);
  overflow: auto;
}
@media only screen and (min-width: 768px) {
  #home-filters.active {
    height: auto;
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media only screen and (max-width: 768px) {
  #home-filters.active {
    overflow: visible;
  }
  #home-filters.active #home-filters-overlay {
    opacity: 1;
    width: 10vw;
    -webkit-transition: all ease-in-out 0.2s 0.2s, width linear 0s;
    transition: all ease-in-out 0.2s 0.2s, width linear 0s;
  }
}
@media only screen and (min-width: 768px) {
  #home-filters {
    background: #fff;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    width: calc(100% - 6vw);
    height: 8vh;
    overflow: visible;
  }
  #home-filters::before {
    display: block;
  }
  #home-filters::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 100%;
    height: 100%;
    width: 6vw;
    background: #fff;
  }
}
@media only screen and (min-width: 1030px) {
  #home-filters {
    width: 100vw;
    height: 7vh;
  }
}
@media only screen and (min-width: 1030px) {
  #home-filters {
    width: 100vw;
    height: 7vh;
  }
}
#home-filters .each-filter {
  -webkit-animation: fade_in 0.5s forwards;
          animation: fade_in 0.5s forwards;
  opacity: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  color: #757575;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 5px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 1rem;
  width: 100%;
  outline: none;
  border-bottom: 1px solid #CCCCCC;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
#home-filters .each-filter:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
#home-filters .each-filter:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
#home-filters .each-filter:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
#home-filters .each-filter:nth-child(4) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
#home-filters .each-filter:nth-child(5) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
#home-filters .each-filter:nth-child(6) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
#home-filters .each-filter:nth-child(7) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
#home-filters .each-filter:nth-child(8) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
#home-filters .each-filter:nth-child(9) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
#home-filters .each-filter:nth-child(10) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
#home-filters .each-filter:nth-child(11) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
#home-filters .each-filter:nth-child(12) {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
#home-filters .each-filter:nth-child(13) {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
#home-filters .each-filter:nth-child(14) {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
#home-filters .each-filter:nth-child(15) {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
@media only screen and (min-width: 768px) {
  #home-filters .each-filter {
    padding: 0.75px;
    width: auto;
    border: 0;
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 1030px) {
  #home-filters .each-filter {
    padding: 1.25rem;
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 1030px) {
  #home-filters .each-filter {
    padding: 1.25rem;
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 768px) {
  #home-filters .each-filter::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: auto;
    margin: auto;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    border: 1px solid #757575;
    z-index: 4;
    -webkit-transition: border-color 0.25s ease-in-out, background 0.25s ease-in-out;
    transition: border-color 0.25s ease-in-out, background 0.25s ease-in-out;
  }
  #home-filters .each-filter::after {
    content: "";
    margin: auto;
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    bottom: auto;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background: #fff;
    z-index: 3;
  }
}
@media \0 screen\,screen\9  {
  #home-filters .each-filter.home-filter i {
    font-size: 1.25em;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  #home-filters .each-filter.home-filter i {
    font-size: 1.25em;
  }
}
@media only screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75) and (min-width: 1030px), only screen and (min-width: 0\0 ) and (min-resolution: 72dpi) and (min-width: 1030px) {
  #home-filters .each-filter.home-filter i {
    margin-left: -0.5em;
  }
}
@media only screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75) and (min-width: 1030px), only screen and (min-width: 0\0 ) and (min-resolution: 72dpi) and (min-width: 1030px) {
  #home-filters .each-filter.home-filter i {
    margin-left: -0.5em;
  }
}
#home-filters .each-filter::before {
  border-width: 2px;
}
#home-filters .each-filter:nth-child(1)::before, #home-filters .each-filter:nth-child(7)::before {
  background: #853795;
  border-color: #853795;
}
#home-filters .each-filter:nth-child(2)::before, #home-filters .each-filter:nth-child(6)::before {
  background: #6ebe4a;
  border-color: #6ebe4a;
}
#home-filters .each-filter:nth-child(3)::before, #home-filters .each-filter:nth-child(5)::before {
  background: #e02826;
  border-color: #e02826;
}
#home-filters .each-filter:hover {
  color: #000;
}
#home-filters .each-filter:hover::before {
  border-width: 2px;
}
#home-filters .each-filter:hover:nth-child(1)::before, #home-filters .each-filter:hover:nth-child(7)::before, #home-filters .each-filter:hover:nth-child(2)::before, #home-filters .each-filter:hover:nth-child(6)::before, #home-filters .each-filter:hover:nth-child(3)::before, #home-filters .each-filter:hover:nth-child(5)::before {
  background: transparent;
}
#home-filters .each-filter:active, #home-filters .each-filter.active {
  color: #000;
  border-left: 2px solid;
}
@media only screen and (max-width: 768px) {
  #home-filters .each-filter:active, #home-filters .each-filter.active {
    border-left-width: 0.25em;
  }
}
#home-filters .each-filter:active.home-filter, #home-filters .each-filter.active.home-filter {
  border-left: 1px solid;
}
@media only screen and (min-width: 768px) {
  #home-filters .each-filter:active, #home-filters .each-filter.active {
    border-left: 0px;
    border-color: #000;
  }
  #home-filters .each-filter:active::before, #home-filters .each-filter.active::before {
    border-width: 2px;
    background: transparent;
  }
}
#home-filters .each-filter:active:nth-child(1), #home-filters .each-filter:active:nth-child(7), #home-filters .each-filter.active:nth-child(1), #home-filters .each-filter.active:nth-child(7) {
  border-left-color: #853795;
}
#home-filters .each-filter:active:nth-child(1)::before, #home-filters .each-filter:active:nth-child(7)::before, #home-filters .each-filter.active:nth-child(1)::before, #home-filters .each-filter.active:nth-child(7)::before {
  border-color: #853795;
}
#home-filters .each-filter:active:nth-child(2), #home-filters .each-filter:active:nth-child(6), #home-filters .each-filter.active:nth-child(2), #home-filters .each-filter.active:nth-child(6) {
  border-left-color: #6ebe4a;
}
#home-filters .each-filter:active:nth-child(2)::before, #home-filters .each-filter:active:nth-child(6)::before, #home-filters .each-filter.active:nth-child(2)::before, #home-filters .each-filter.active:nth-child(6)::before {
  border-color: #6ebe4a;
}
#home-filters .each-filter:active:nth-child(3), #home-filters .each-filter:active:nth-child(5), #home-filters .each-filter.active:nth-child(3), #home-filters .each-filter.active:nth-child(5) {
  border-left-color: #e02826;
}
#home-filters .each-filter:active:nth-child(3)::before, #home-filters .each-filter:active:nth-child(5)::before, #home-filters .each-filter.active:nth-child(3)::before, #home-filters .each-filter.active:nth-child(5)::before {
  border-color: #e02826;
}
@media only screen and (max-width: 767px) {
  #home-filters .each-filter.loading {
    overflow: hidden;
  }
  #home-filters .each-filter.loading:not(.home-filter) {
    padding-left: 1em;
  }
  #home-filters .each-filter.loading:not(.home-filter):before {
    content: "";
    position: absolute;
    top: calc(50% - 0.5em);
    left: -0.5em;
    border-width: 2px;
    border-style: solid;
    border-bottom-color: #F2F2F2;
    border-top-color: #F2F2F2;
    border-right-color: #F2F2F2;
    border-radius: 5em;
    width: 1em;
    height: 1em;
    background: transparent;
    -webkit-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
  }
}
#home-filters .each-filter.home-filter {
  display: none;
  position: fixed;
  bottom: 23vh;
  right: 0;
  left: auto;
  width: 10vw;
  height: 7vh;
  margin: auto;
  border: 1px solid #CCCCCC;
  background: #fff;
  z-index: 9;
  font-size: 1.5rem;
}
#home-filters .each-filter.home-filter.active {
  border-color: #000;
  border-width: 2px;
}
#home-filters .each-filter.home-filter:hover {
  border-width: 2px;
  background: #000;
}
#home-filters .each-filter.home-filter:hover i {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  #home-filters .each-filter.home-filter {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 0;
    right: 0;
    top: -23px;
    bottom: auto;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    border-color: #757575;
    font-size: 0.75rem;
  }
}
#home-filters .each-filter.home-filter::after, #home-filters .each-filter.home-filter::before {
  display: none;
}

.yt-container .wp-youtube-live.dead, .yt-container .wp-youtube-live.live {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.yt-container .wp-youtube-live.dead iframe, .yt-container .wp-youtube-live.live iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Header Stylesheet

******************************************************************/
@media only screen and (max-width: 481px) {
  body[data-overlay-active=mobile-nav] #container,
  body[data-overlay-active=home-filters] #container {
    height: 100vh;
    overflow-y: hidden;
  }
  body[data-overlay-active=mobile-nav] #header,
  body[data-overlay-active=home-filters] #header {
    padding: 0;
    background: transparent;
  }
  body[data-overlay-active=mobile-nav] #header #action-nav-wrapper,
  body[data-overlay-active=home-filters] #header #action-nav-wrapper {
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  body[data-overlay-active=mobile-nav] #header #logo,
  body[data-overlay-active=home-filters] #header #logo {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  body[data-overlay-active=mobile-nav] #onscreen-search-form,
  body[data-overlay-active=home-filters] #onscreen-search-form {
    z-index: 7;
  }
  body[data-overlay-active=mobile-nav] #header #logo,
  body[data-overlay-active=home-filters] #header #logo {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  body[data-overlay-active=mobile-nav] #inner-header,
  body[data-overlay-active=home-filters] #inner-header {
    padding: 0;
  }
}

@media only screen and (max-width: 768px) {
  body[data-overlay-active=mobile-nav] #header {
    z-index: 8;
  }
}

#header, .header {
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 9;
}
#header.large .large-logo, #header.scroll-show .large-logo, .header.large .large-logo, .header.scroll-show .large-logo {
  position: relative;
  left: 0;
  z-index: 2;
  width: 100%;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@-moz-document url-prefix() {
  #header.large .large-logo, #header.scroll-show .large-logo, .header.large .large-logo, .header.scroll-show .large-logo {
    display: block;
    -webkit-transition: all 0.25s ease-in-out, opacity 0s linear;
    transition: all 0.25s ease-in-out, opacity 0s linear;
  }
}
@media \0 screen\,screen\9  {
  #header.large .large-logo, #header.scroll-show .large-logo, .header.large .large-logo, .header.scroll-show .large-logo {
    display: block;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  #header.large .large-logo, #header.scroll-show .large-logo, .header.large .large-logo, .header.scroll-show .large-logo {
    display: block;
  }
}
#header.large .large-logo img, #header.scroll-show .large-logo img, .header.large .large-logo img, .header.scroll-show .large-logo img {
  margin: 1em 0;
  min-height: 70px;
  width: 100%;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media only screen and (max-height: 800px) {
  #header.large .large-logo img, #header.scroll-show .large-logo img, .header.large .large-logo img, .header.scroll-show .large-logo img {
    margin: 0;
  }
}
@media only screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75) and (min-width: 768px), only screen and (min-width: 0\0 ) and (min-resolution: 72dpi) and (min-width: 768px) {
  #header.large .large-logo img, #header.scroll-show .large-logo img, .header.large .large-logo img, .header.scroll-show .large-logo img {
    min-width: 300px;
  }
}
@media only screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75) and (max-width: 768px), only screen and (min-width: 0\0 ) and (min-resolution: 72dpi) and (max-width: 768px) {
  #header.large .large-logo img, #header.scroll-show .large-logo img, .header.large .large-logo img, .header.scroll-show .large-logo img {
    min-height: 35px;
    min-width: 150px;
  }
}
#header.large .small-logo, #header.scroll-show .small-logo, .header.large .small-logo, .header.scroll-show .small-logo {
  position: absolute;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease-in-out, visibility 0s 0.25s linear, z-index 0s 0.25s linear;
  transition: all 0.25s ease-in-out, visibility 0s 0.25s linear, z-index 0s 0.25s linear;
}
@-moz-document url-prefix() {
  #header.large .small-logo, #header.scroll-show .small-logo, .header.large .small-logo, .header.scroll-show .small-logo {
    -webkit-transition: all 0.25s ease-in-out, visibility 0s 0.25s linear, z-index 0s 0.25s linear, opacity 0s linear;
    transition: all 0.25s ease-in-out, visibility 0s 0.25s linear, z-index 0s 0.25s linear, opacity 0s linear;
  }
}
@media \0 screen\,screen\9  {
  #header.large .small-logo, #header.scroll-show .small-logo, .header.large .small-logo, .header.scroll-show .small-logo {
    display: none;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  #header.large .small-logo, #header.scroll-show .small-logo, .header.large .small-logo, .header.scroll-show .small-logo {
    display: none;
  }
}
#header.large .small-logo img, #header.scroll-show .small-logo img, .header.large .small-logo img, .header.scroll-show .small-logo img {
  max-height: 65px;
  min-height: 0;
  width: 48.5%;
  margin: 1.2em 0;
}
@-moz-document url-prefix() {
  #header.large .small-logo img, #header.scroll-show .small-logo img, .header.large .small-logo img, .header.scroll-show .small-logo img {
    max-height: 70px;
    margin: 1em 0;
  }
  @media \0 screen\,screen\9  {
    #header.large .small-logo img, #header.scroll-show .small-logo img, .header.large .small-logo img, .header.scroll-show .small-logo img {
      min-height: 0;
    }
  }
  @media screen and (min-width: 0\0 ) and (min--moz-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
    #header.large .small-logo img, #header.scroll-show .small-logo img, .header.large .small-logo img, .header.scroll-show .small-logo img {
      min-height: 0;
    }
  }
}
#header.large #top-nav-wrapper, #header.scroll-show #top-nav-wrapper, .header.large #top-nav-wrapper, .header.scroll-show #top-nav-wrapper {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (min-width: 1030px) {
  #header.large #inner-header, #header.scroll-show #inner-header, .header.large #inner-header, .header.scroll-show #inner-header {
    padding: 0 1rem;
  }
}
@media only screen and (min-width: 1030px) {
  #header.large #inner-header, #header.scroll-show #inner-header, .header.large #inner-header, .header.scroll-show #inner-header {
    padding: 0 1rem;
  }
}
@media only screen and (max-height: 950px) {
  #header.large #inner-header, #header.scroll-show #inner-header, .header.large #inner-header, .header.scroll-show #inner-header {
    padding: 0rem 1rem 0.5rem 1rem;
  }
}
#header .large-logo, .header .large-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease-in-out, visibility 0s 0.25s linear, z-index 0s 0.25s linear;
  transition: all 0.25s ease-in-out, visibility 0s 0.25s linear, z-index 0s 0.25s linear;
}
@-moz-document url-prefix() {
  #header .large-logo, .header .large-logo {
    position: relative;
    -webkit-transition: all 0.25s ease-in-out, visibility 0s 0.25s linear, z-index 0s 0.25s linear, opacity 0s linear;
    transition: all 0.25s ease-in-out, visibility 0s 0.25s linear, z-index 0s 0.25s linear, opacity 0s linear;
  }
}
@media \0 screen\,screen\9  {
  #header .large-logo, .header .large-logo {
    display: none;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  #header .large-logo, .header .large-logo {
    display: none;
  }
}
#header .large-logo img, .header .large-logo img {
  margin: 0;
  min-height: 0;
  -webkit-transition: all 0.25s ease-in-out, visibility 0s 0.25s linear, z-index 0s 0.25s linear;
  transition: all 0.25s ease-in-out, visibility 0s 0.25s linear, z-index 0s 0.25s linear;
}
@-moz-document url-prefix() {
  #header .large-logo img, .header .large-logo img {
    min-height: 12px;
  }
}
#header .small-logo, .header .small-logo {
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@-moz-document url-prefix() {
  #header .small-logo, .header .small-logo {
    display: block;
    position: absolute;
    width: 100%;
    -webkit-transition: all 0.25s ease-in-out, opacity 0s linear;
    transition: all 0.25s ease-in-out, opacity 0s linear;
  }
}
@media \0 screen\,screen\9  {
  #header .small-logo, .header .small-logo {
    display: block;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  #header .small-logo, .header .small-logo {
    display: block;
  }
}
#header .small-logo img, .header .small-logo img {
  max-height: 25px;
  min-height: 25px;
  width: 57px;
  margin: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media \0 screen\,screen\9  {
  #header .small-logo img, .header .small-logo img {
    min-height: 0;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  #header .small-logo img, .header .small-logo img {
    min-height: 0;
  }
}
#header:before, #header:after, .header:before, .header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 2.5vw;
  height: 100%;
  background: #fff;
}
#header:before, .header:before {
  left: auto;
  right: 100%;
}

#inner-header {
  padding: 0.5rem 1rem;
}
@media only screen and (min-width: 1030px) {
  #inner-header {
    padding: 0;
  }
}
@media only screen and (min-width: 1030px) {
  #inner-header {
    padding: 0;
  }
}

@media only screen and (max-width: 481px) {
  .admin-bar #header, .admin-bar .header {
    top: 0;
  }
}
@media only screen and (min-width: 768px) {
  .admin-bar #header, .admin-bar .header {
    top: 32px;
  }
}
@media only screen and (min-width: 1030px) {
  .admin-bar #header, .admin-bar .header {
    top: 32px;
  }
}
@media only screen and (min-width: 1030px) {
  .admin-bar #header, .admin-bar .header {
    top: 32px;
  }
}

#action-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media only screen and (max-width: 481px) {
  #action-menu {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
#action-menu div.g-btn, #action-menu div.comment-reply-link, #action-menu a.g-btn, #action-menu a.comment-reply-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 0.5rem;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #action-menu div.g-btn, #action-menu div.comment-reply-link, #action-menu a.g-btn, #action-menu a.comment-reply-link {
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 481px) {
  #action-menu div.g-btn, #action-menu div.comment-reply-link, #action-menu a.g-btn, #action-menu a.comment-reply-link {
    margin-bottom: 0.25rem;
  }
}
#action-menu div.g-btn:last-of-type, #action-menu div.comment-reply-link:last-of-type, #action-menu a.g-btn:last-of-type, #action-menu a.comment-reply-link:last-of-type {
  margin-right: 0;
}
#action-menu div.g-btn.active, #action-menu div.active.comment-reply-link, #action-menu a.g-btn.active, #action-menu a.active.comment-reply-link {
  color: #fff;
}

ul.icon-menu li.icon-menu {
  width: auto;
  display: inline-block;
}
ul.icon-menu li.icon-menu a {
  padding: 0.5rem 1rem;
}
ul.icon-menu li.icon-menu a::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f0c1";
  font-size: 1.25rem;
  background: none;
  top: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 0;
}
ul.icon-menu li.icon-menu a span {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
ul.icon-menu li.icon-menu a span:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}
ul.icon-menu li.icon-menu.facebook-f a::before {
  font-family: "Font Awesome 5 Brands";
  content: "\f39e";
}
ul.icon-menu li.icon-menu.instagram a::before {
  font-family: "Font Awesome 5 Brands";
  content: "\f16d";
}
ul.icon-menu li.icon-menu.youtube a::before {
  font-family: "Font Awesome 5 Brands";
  content: "\f167";
}

#header-flexible-content {
  padding: 1.5rem;
}
@media only screen and (min-width: 768px) {
  #header-flexible-content {
    padding: 0;
  }
}
#header-flexible-content ul.menu {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  padding: 1.5rem 0;
  max-width: 1200px;
  margin: auto;
  float: none;
  text-align: center;
  /* end .full-nav */
}
@media only screen and (min-width: 768px) {
  #header-flexible-content ul.menu {
    text-align: left;
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media only screen and (min-width: 1030px) {
  #header-flexible-content ul.menu {
    -webkit-column-count: 5;
       -moz-column-count: 5;
            column-count: 5;
  }
}
@media only screen and (min-width: 1030px) {
  #header-flexible-content ul.menu {
    -webkit-column-count: 5;
       -moz-column-count: 5;
            column-count: 5;
  }
}
#header-flexible-content ul.menu a {
  text-decoration: none;
  padding: 0.75rem;
  color: #000;
  display: inline-block;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #header-flexible-content ul.menu a {
    text-align: left;
  }
}
#header-flexible-content ul.menu > li {
  text-transform: uppercase;
  font-weight: 700;
}
#header-flexible-content ul.menu li {
  text-transform: uppercase;
  font-weight: 700;
  -webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
  page-break-inside: avoid; /* Firefox */
  -moz-column-break-inside: avoid;
       break-inside: avoid; /* IE 10+ */
  width: 100%;
  float: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#header-flexible-content ul.menu li.icon-menu {
  width: auto;
  display: inline-block;
}
#header-flexible-content ul.menu li ul {
  float: left;
  width: 100%;
  border: 0;
  border-left: 1px solid #757575;
  padding: 0 1.25rem;
  position: relative;
  visibility: visible;
  z-index: 1;
  -webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
  page-break-inside: avoid; /* Firefox */
  -moz-column-break-inside: avoid;
       break-inside: avoid; /* IE 10+ */
  background: none;
}
#header-flexible-content ul.menu li ul li {
  width: 100%;
  text-transform: none;
  font-weight: 400;
}
#header-flexible-content ul.menu li ul li a {
  padding: 0.2rem 0;
}

@media only screen and (min-width: 1030px) {
  .nav.full-nav {
    padding: 1.5rem;
  }
}
@media only screen and (min-width: 1030px) {
  .nav.full-nav {
    padding: 1.5rem;
  }
}

.search-form-wrapper {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 1030px) {
  .search-form-wrapper {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1030px) {
  .search-form-wrapper {
    margin-bottom: 0;
  }
}

#action-menu {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #action-menu {
    text-align: left;
  }
}

#header-message {
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
  opacity: 1;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
#header-message.grey-bg {
  background: repeating-linear-gradient(45deg, #a6a6a6, #a6a6a6 4px, #fff 4px, #fff 14px);
}
#header-message.red-bg {
  background: repeating-linear-gradient(45deg, #e02826, #e02826 10px, #fff 10px, #fff 20px);
}
#header-message.purple-bg {
  background: repeating-linear-gradient(45deg, #853795, #853795 10px, #fff 10px, #fff 20px);
}
#header-message.green-bg {
  background: repeating-linear-gradient(45deg, #6ebe4a, #6ebe4a 10px, #fff 10px, #fff 20px);
}
#header-message .header-message-text {
  background: #fff;
  padding: 25px;
  float: none;
  margin: auto;
  position: relative;
}
#header-message .header-message-text p {
  margin-top: 0;
}
#header-message .close-header-message {
  border: 0;
  position: absolute;
  top: 8px;
  right: 0;
  left: auto;
  height: 30px;
  width: 30px;
  border: 2px solid #a6a6a6;
  border-radius: 100%;
}
#header-message .close-header-message:hover, #header-message .close-header-message:focus, #header-message .close-header-message:active {
  background: #000;
  color: #fff;
  border-color: #fff;
}
#header-message .close-header-message::before {
  font-size: 0.85rem;
  content: "\f00d";
}
#header-message.active .header-message-text {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}
#header-message.inactive {
  max-height: 0px;
  padding: 0rem 1.25rem;
  opacity: 0;
}
@media only screen and (min-width: 1030px) {
  #header-message.scroll-hide {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: collapseOutUp;
            animation-name: collapseOutUp;
    -webkit-animation-duration: 0.25s;
            animation-duration: 0.25s;
  }
}
@media only screen and (min-width: 1030px) {
  #header-message.scroll-hide {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: collapseOutUp;
            animation-name: collapseOutUp;
    -webkit-animation-duration: 0.25s;
            animation-duration: 0.25s;
  }
}
@media only screen and (max-width: 1030px) {
  #header-message.scroll-hide > .m-all:not(.float-right) {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: collapseOutUp;
            animation-name: collapseOutUp;
    -webkit-animation-duration: 0.25s;
            animation-duration: 0.25s;
  }
}
@media only screen and (max-width: 1030px) and (min-width: 768px) {
  #header-message.scroll-hide #onscreen-search-form {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: collapseOutUp;
            animation-name: collapseOutUp;
    -webkit-animation-duration: 0.25s;
            animation-duration: 0.25s;
  }
}
#header-message.scroll-hide + #top-nav-wrapper {
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
#header-message.scroll-show {
  height: auto;
}
@media only screen and (min-width: 1030px) {
  #header-message.scroll-show {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
            animation-name: fadeInDown;
    -webkit-animation-duration: 0.25s;
            animation-duration: 0.25s;
  }
}
@media only screen and (min-width: 1030px) {
  #header-message.scroll-show {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
            animation-name: fadeInDown;
    -webkit-animation-duration: 0.25s;
            animation-duration: 0.25s;
  }
}
@media only screen and (max-width: 1030px) {
  #header-message.scroll-show > .m-all:not(.float-right) {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
            animation-name: fadeInDown;
    -webkit-animation-duration: 0.25s;
            animation-duration: 0.25s;
  }
}
@media only screen and (max-width: 1030px) and (min-width: 768px) {
  #header-message.scroll-show #onscreen-search-form {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
            animation-name: fadeInDown;
    -webkit-animation-duration: 0.25s;
            animation-duration: 0.25s;
  }
}
#header-message.scroll-show + #top-nav-wrapper {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

#action-nav-wrapper:not(.scroll-hide) {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 1030px) {
  #action-nav-wrapper.scroll-hide {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: fadeOutUp;
            animation-name: fadeOutUp;
    -webkit-animation-duration: 0.25s;
            animation-duration: 0.25s;
  }
}
@media only screen and (min-width: 1030px) {
  #action-nav-wrapper.scroll-hide {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: fadeOutUp;
            animation-name: fadeOutUp;
    -webkit-animation-duration: 0.25s;
            animation-duration: 0.25s;
  }
}
@media only screen and (max-width: 1030px) {
  #action-nav-wrapper.scroll-hide > .m-all:not(.float-right) {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: fadeOutUp;
            animation-name: fadeOutUp;
    -webkit-animation-duration: 0.25s;
            animation-duration: 0.25s;
  }
}
@media only screen and (max-width: 1030px) and (min-width: 768px) {
  #action-nav-wrapper.scroll-hide #onscreen-search-form {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: fadeOutUp;
            animation-name: fadeOutUp;
    -webkit-animation-duration: 0.25s;
            animation-duration: 0.25s;
  }
}
#action-nav-wrapper.scroll-hide + #top-nav-wrapper {
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
@media only screen and (min-width: 1030px) {
  #action-nav-wrapper.scroll-show {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
            animation-name: fadeInDown;
    -webkit-animation-duration: 0.25s;
            animation-duration: 0.25s;
  }
}
@media only screen and (min-width: 1030px) {
  #action-nav-wrapper.scroll-show {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
            animation-name: fadeInDown;
    -webkit-animation-duration: 0.25s;
            animation-duration: 0.25s;
  }
}
@media only screen and (max-width: 1030px) {
  #action-nav-wrapper.scroll-show > .m-all:not(.float-right) {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
            animation-name: fadeInDown;
    -webkit-animation-duration: 0.25s;
            animation-duration: 0.25s;
  }
}
@media only screen and (max-width: 1030px) and (min-width: 768px) {
  #action-nav-wrapper.scroll-show #onscreen-search-form {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
            animation-name: fadeInDown;
    -webkit-animation-duration: 0.25s;
            animation-duration: 0.25s;
  }
}
#action-nav-wrapper.scroll-show + #top-nav-wrapper {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

#header-slide-down {
  right: 0;
  position: absolute;
  height: 100vh;
  width: 0;
  background: #fff;
  color: #000;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  z-index: 8;
  overflow: visible;
}
@media only screen and (min-width: 768px) {
  #header-slide-down {
    background: #fff;
    color: #000;
    overflow: auto;
    width: 100%;
    height: 0;
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-name: slideOutUp;
            animation-name: slideOutUp;
  }
}
@media only screen and (min-width: 1030px) {
  #header-slide-down {
    position: relative;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media only screen and (min-width: 1030px) {
  #header-slide-down {
    position: relative;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media only screen and (max-width: 1030px) {
  #header-slide-down #header-slide-down-overlay {
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
  }
}
#header-slide-down.active {
  width: 90vw;
}
@media only screen and (min-width: 768px) {
  #header-slide-down.active {
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: slideInDown;
            animation-name: slideInDown;
    height: auto;
    width: 100%;
  }
}
@media only screen and (min-width: 1030px) {
  #header-slide-down.active {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media only screen and (min-width: 1030px) {
  #header-slide-down.active {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media only screen and (max-width: 1030px) {
  #header-slide-down.active #header-slide-down-overlay {
    opacity: 1;
    width: 10vw;
    -webkit-transition: all ease-in-out 0.2s 0.2s, width linear 0s;
    transition: all ease-in-out 0.2s 0.2s, width linear 0s;
  }
}
#header-slide-down .header-slide-down-wrapper {
  padding: 0;
  overflow: auto;
  height: 100%;
}
@media only screen and (min-width: 1030px) {
  #header-slide-down .header-slide-down-wrapper {
    padding: 1.5rem;
  }
}
@media only screen and (min-width: 1030px) {
  #header-slide-down .header-slide-down-wrapper {
    padding: 1.5rem;
  }
}
#header-slide-down .header-slide-down-wrapper .gform_body br {
  display: none;
}

@media only screen and (max-width: 481px) {
  .admin-bar #header-slide-down {
    top: 46px;
  }
}
@media only screen and (min-width: 768px) {
  .admin-bar #header-slide-down {
    top: 32px;
  }
}
@media only screen and (min-width: 1030px) {
  .admin-bar #header-slide-down {
    top: 0px;
  }
}
@media only screen and (min-width: 1030px) {
  .admin-bar #header-slide-down {
    top: 0px;
  }
}

#nav-toggle,
.close-header-message {
  background: #fff;
  float: right;
  z-index: 11;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 10vw;
  height: 7vh;
  border: 1px solid #757575;
}
@media only screen and (min-width: 768px) {
  #nav-toggle,
  .close-header-message {
    height: 8vh;
    width: 8vw;
  }
}
@media only screen and (min-width: 1030px) {
  #nav-toggle,
  .close-header-message {
    height: 37px;
    width: 30px;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 10px;
    border: 0;
  }
}
@media only screen and (min-width: 1030px) {
  #nav-toggle,
  .close-header-message {
    height: 37px;
    width: 30px;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 10px;
    border: 0;
  }
}
#nav-toggle::before,
.close-header-message::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f0c9";
  font-size: 1.25rem;
  background: none;
  top: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 0;
}
#nav-toggle::after,
.close-header-message::after {
  display: none;
}
#nav-toggle.active,
.close-header-message.active {
  background: #fff;
  border-width: 2px;
}
#nav-toggle.active::before,
.close-header-message.active::before {
  content: "\f00d";
}

@media only screen and (min-width: 768px) {
  .home #nav-toggle {
    border-left: 0;
  }
}
#action-nav-wrapper .close-header-message,
.no-action-header-wrapper .close-header-message {
  margin: 0;
}
#action-nav-wrapper .close-header-message::before,
.no-action-header-wrapper .close-header-message::before {
  content: "\f12a";
  font-weight: 900;
  font-size: 1rem;
  color: #e02826;
}
@media only screen and (min-width: 768px) {
  #action-nav-wrapper .close-header-message,
  .no-action-header-wrapper .close-header-message {
    bottom: 6vh;
  }
}
@media only screen and (min-width: 1030px) {
  #action-nav-wrapper .close-header-message,
  .no-action-header-wrapper .close-header-message {
    bottom: 0;
  }
}
@media only screen and (min-width: 1030px) {
  #action-nav-wrapper .close-header-message,
  .no-action-header-wrapper .close-header-message {
    bottom: 0;
  }
}

.close-modal {
  position: absolute;
  top: 5px;
  right: 15px;
  cursor: pointer;
}
.close-modal::before {
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f00d";
  font-size: 1.25rem;
}

#top-nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#top-nav-wrapper .menu {
  display: none;
}
@media only screen and (min-width: 1030px) {
  #top-nav-wrapper .menu {
    display: block;
  }
}
@media only screen and (min-width: 1030px) {
  #top-nav-wrapper .menu {
    display: block;
  }
}
#top-nav-wrapper .menu li a {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
}
#top-nav-wrapper .menu li.current-page-ancestor a,
#top-nav-wrapper .menu li.current-page-ancestor a:visited, #top-nav-wrapper .menu li.current-menu-item a,
#top-nav-wrapper .menu li.current-menu-item a:visited {
  color: #853795;
  position: relative;
}
#top-nav-wrapper .menu li.current-page-ancestor a::after,
#top-nav-wrapper .menu li.current-page-ancestor a:visited::after, #top-nav-wrapper .menu li.current-menu-item a::after,
#top-nav-wrapper .menu li.current-menu-item a:visited::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #853795;
  position: absolute;
  bottom: 0;
  left: 0;
}

.no-action-header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.no-action-header-wrapper nav {
  text-align: right;
}

#logo {
  margin: 0;
  position: relative;
  min-height: 35px;
}
@media only screen and (min-width: 1030px) {
  #logo {
    max-width: 15%;
  }
}
@media only screen and (min-width: 1030px) {
  #logo {
    max-width: 15%;
  }
}
#logo img {
  max-height: 70px;
  min-height: 70px;
  margin: 1em 0;
  float: left;
  width: 100%;
}
@media only screen and (max-height: 800px) {
  #logo img {
    margin: 0;
  }
}
@media \0 screen\,screen\9  {
  #logo img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  #logo img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
#logo a {
  color: #000;
  float: left;
  width: 100%;
}
#logo .logo-hover-wrapper {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#logo:hover .logo-hover-wrapper {
  opacity: 1;
}
#logo:hover .logo-wrapper {
  opacity: 0;
}
@media screen and (min-color-index: 0) and (-webkit-min-device-pixel-ratio: 0) {
  #logo {
    width: 100%;
  }
}
@media only screen and (min-color-index: 0) and (-webkit-min-device-pixel-ratio: 0) and (max-width: 1030px) {
  #logo {
    max-width: 300px;
  }
}
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    #logo {
      width: 100%;
    }
    @media only screen and (max-width: 1030px) {
      #logo {
        max-width: 300px;
      }
    }
  }
}

.menu {
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
}
@media only screen and (min-width: 1030px) {
  .menu {
    border: 0;
  }
  .menu ul {
    background: #333333;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1030px) {
  .menu {
    border: 0;
  }
  .menu ul {
    background: #333333;
    margin-top: 0;
  }
}
.menu li {
  /* highlight current page */
  /* end current highlighters */
  /*
  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://www.alistapart.com/articles/organizing-mobile/
  */
}
@media only screen and (min-width: 1030px) {
  .menu li {
    float: left;
    position: relative;
    /* showing sub-menus */
  }
  .menu li:hover > ul {
    top: auto;
    visibility: visible;
  }
}
@media only screen and (min-width: 1030px) {
  .menu li {
    float: left;
    position: relative;
    /* showing sub-menus */
  }
  .menu li:hover > ul {
    top: auto;
    visibility: visible;
  }
}
.menu li a {
  display: block;
  color: #000;
  text-decoration: none;
  padding: 0.75em;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
@media only screen and (min-width: 1030px) {
  .menu li a {
    border-bottom: 0;
  }
  .menu li a:hover, .menu li a:focus {
    color: #853795;
    text-decoration: none;
    font-weight: bold;
  }
}
@media only screen and (min-width: 1030px) {
  .menu li a {
    border-bottom: 0;
  }
  .menu li a:hover, .menu li a:focus {
    color: #853795;
    text-decoration: none;
    font-weight: bold;
  }
}
@media only screen and (min-width: 1030px) {
  .menu li ul.sub-menu,
  .menu li ul.children {
    margin-top: 0;
    border: 1px solid #ccc;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
  }
}
@media only screen and (min-width: 1030px) {
  .menu li ul.sub-menu,
  .menu li ul.children {
    margin-top: 0;
    border: 1px solid #ccc;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
  }
}
@media only screen and (min-width: 1030px) {
  .menu li ul.sub-menu li,
  .menu li ul.children li {
    /*
    if you need to go deeper, go nuts
    just remember deeper menus suck
    for usability. k, bai.
    */
  }
  .menu li ul.sub-menu li:last-child a,
  .menu li ul.children li:last-child a {
    border-bottom: 0;
  }
  .menu li ul.sub-menu li ul,
  .menu li ul.children li ul {
    top: 0;
    left: 100%;
  }
}
@media only screen and (min-width: 1030px) {
  .menu li ul.sub-menu li,
  .menu li ul.children li {
    /*
    if you need to go deeper, go nuts
    just remember deeper menus suck
    for usability. k, bai.
    */
  }
  .menu li ul.sub-menu li:last-child a,
  .menu li ul.children li:last-child a {
    border-bottom: 0;
  }
  .menu li ul.sub-menu li ul,
  .menu li ul.children li ul {
    top: 0;
    left: 100%;
  }
}
.menu li ul.sub-menu li a,
.menu li ul.children li a {
  padding-left: 30px;
}
@media only screen and (min-width: 1030px) {
  .menu li ul.sub-menu li a,
  .menu li ul.children li a {
    padding-left: 10px;
    border-right: 0;
    display: block;
  }
}
@media only screen and (min-width: 1030px) {
  .menu li ul.sub-menu li a,
  .menu li ul.children li a {
    padding-left: 10px;
    border-right: 0;
    display: block;
  }
}
/* end .nav */
/******************************************************************
Site Name:
Author:

Stylesheet: Index Stylesheet

******************************************************************/
.post-wrapper {
  margin-bottom: 1rem;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation: none;
          animation: none;
}
@media only screen and (min-width: 1030px) {
  .post-wrapper:not([data-shown]):nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .post-wrapper[data-shown="1"] {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .post-wrapper:not([data-shown]):nth-child(2) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
  .post-wrapper[data-shown="2"] {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
  .post-wrapper:not([data-shown]):nth-child(3) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .post-wrapper[data-shown="3"] {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .post-wrapper:not([data-shown]):nth-child(4) {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  .post-wrapper[data-shown="4"] {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  .post-wrapper:not([data-shown]):nth-child(5) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .post-wrapper[data-shown="5"] {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .post-wrapper:not([data-shown]):nth-child(6) {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  .post-wrapper[data-shown="6"] {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  .post-wrapper:not([data-shown]):nth-child(7) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .post-wrapper[data-shown="7"] {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .post-wrapper:not([data-shown]):nth-child(8) {
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
  .post-wrapper[data-shown="8"] {
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
  .post-wrapper:not([data-shown]):nth-child(9) {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  .post-wrapper[data-shown="9"] {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  .post-wrapper:not([data-shown]):nth-child(10) {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
  }
  .post-wrapper[data-shown="10"] {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
  }
  .post-wrapper:not([data-shown]):nth-child(11) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  .post-wrapper[data-shown="11"] {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  .post-wrapper:not([data-shown]):nth-child(12) {
    -webkit-animation-delay: 1.1s;
            animation-delay: 1.1s;
  }
  .post-wrapper[data-shown="12"] {
    -webkit-animation-delay: 1.1s;
            animation-delay: 1.1s;
  }
  .post-wrapper:not([data-shown]):nth-child(13) {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  .post-wrapper[data-shown="13"] {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  .post-wrapper:not([data-shown]):nth-child(14) {
    -webkit-animation-delay: 1.3s;
            animation-delay: 1.3s;
  }
  .post-wrapper[data-shown="14"] {
    -webkit-animation-delay: 1.3s;
            animation-delay: 1.3s;
  }
  .post-wrapper:not([data-shown]):nth-child(15) {
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
  }
  .post-wrapper[data-shown="15"] {
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
  }
  .post-wrapper:not([data-shown]):nth-child(n+16) {
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
  }
  .post-wrapper[data-shown="16"] {
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
  }
}
@media only screen and (min-width: 1030px) {
  .post-wrapper:not([data-shown]):nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .post-wrapper[data-shown="1"] {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .post-wrapper:not([data-shown]):nth-child(2) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
  .post-wrapper[data-shown="2"] {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
  .post-wrapper:not([data-shown]):nth-child(3) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .post-wrapper[data-shown="3"] {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .post-wrapper:not([data-shown]):nth-child(4) {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  .post-wrapper[data-shown="4"] {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  .post-wrapper:not([data-shown]):nth-child(5) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .post-wrapper[data-shown="5"] {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .post-wrapper:not([data-shown]):nth-child(6) {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  .post-wrapper[data-shown="6"] {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  .post-wrapper:not([data-shown]):nth-child(7) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .post-wrapper[data-shown="7"] {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .post-wrapper:not([data-shown]):nth-child(8) {
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
  .post-wrapper[data-shown="8"] {
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
  .post-wrapper:not([data-shown]):nth-child(9) {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  .post-wrapper[data-shown="9"] {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  .post-wrapper:not([data-shown]):nth-child(10) {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
  }
  .post-wrapper[data-shown="10"] {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
  }
  .post-wrapper:not([data-shown]):nth-child(11) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  .post-wrapper[data-shown="11"] {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  .post-wrapper:not([data-shown]):nth-child(12) {
    -webkit-animation-delay: 1.1s;
            animation-delay: 1.1s;
  }
  .post-wrapper[data-shown="12"] {
    -webkit-animation-delay: 1.1s;
            animation-delay: 1.1s;
  }
  .post-wrapper:not([data-shown]):nth-child(13) {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  .post-wrapper[data-shown="13"] {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  .post-wrapper:not([data-shown]):nth-child(14) {
    -webkit-animation-delay: 1.3s;
            animation-delay: 1.3s;
  }
  .post-wrapper[data-shown="14"] {
    -webkit-animation-delay: 1.3s;
            animation-delay: 1.3s;
  }
  .post-wrapper:not([data-shown]):nth-child(15) {
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
  }
  .post-wrapper[data-shown="15"] {
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
  }
  .post-wrapper:not([data-shown]):nth-child(n+16) {
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
  }
  .post-wrapper[data-shown="16"] {
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
  }
}

.load-more-wrapper {
  text-align: center;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Ajax Filter Stylesheet

******************************************************************/
/*********************
GENERAL AJAX FILTER STYLES
*********************/
.ajax-wrapper {
  position: relative;
  margin: 1em 0;
  padding: 5px;
}
.ajax-wrapper > *:not(.loading-overlay) {
  -webkit-transition: 0.25s ease-in-out filter;
  transition: 0.25s ease-in-out filter;
}
.ajax-wrapper .loading-overlay {
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.ajax-wrapper .loading-overlay p {
  display: block;
  margin: 0.5em 0;
  padding: 0.5em;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}
.ajax-wrapper.loading .loading-overlay {
  -ms-flex-line-pack: center;
      align-content: center;
  opacity: 1;
  visibility: visible;
  background-color: rgba(255, 255, 255, 0.5);
}
.home .ajax-wrapper.loading .loading-overlay {
  background-color: rgba(204, 204, 204, 0.5);
}
.ajax-wrapper.loading > *:not(.loading-overlay) {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}
.ajax-wrapper .ajax-load-more-btn {
  margin: 1em auto;
}
.ajax-wrapper .hide-load-more .ajax-load-more-btn {
  display: none;
}

.ajax-inner {
  width: 100%;
}

/*********************
TAXONOMY DESCRIPTION
*********************/
.term-description-padding {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/*********************
BUTTON AJAX FILTER STYLE
*********************/
.ajax-filter-btns,
.ajax-filter-post-type {
  margin: 1em 0;
}
.ajax-filter-btns .filter-tax,
.ajax-filter-btns .filter-post-type,
.ajax-filter-post-type .filter-tax,
.ajax-filter-post-type .filter-post-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  margin: 0.25em 0;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 481px) {
  .ajax-filter-btns .filter-tax,
  .ajax-filter-btns .filter-post-type,
  .ajax-filter-post-type .filter-tax,
  .ajax-filter-post-type .filter-post-type {
    width: auto;
    margin: 0.25em;
  }
}
.ajax-filter-btns h3,
.ajax-filter-post-type h3 {
  margin-top: 0;
}

/*********************
SIDEBAR AJAX FILTER STYLE
*********************/
.js .toggle-slide-wrapper .toggle-slide-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.js .toggle-slide-wrapper .toggle-slide-btn:after {
  content: "";
  margin-left: 0.25em;
  width: 0;
  height: 0;
  border-top: 0.25em solid #000;
  border-right: 0.25em solid transparent;
  border-left: 0.25em solid transparent;
  -webkit-transition: 0.25s ease-in-out all;
  transition: 0.25s ease-in-out all;
}
.js .toggle-slide-wrapper .toggle-slide-btn.is-open:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

/*********************
LOADING ANIMATION
*********************/
.loading-rect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  margin: 0 auto;
  width: 100%;
  height: 4em;
  text-align: center;
  font-size: 0.75em;
}
.loading-rect > div {
  display: inline-block;
  border: 1px solid #fff;
  height: 100%;
  width: 1em;
  margin: 1px;
  background-color: #000;
  -webkit-animation: ajax_loading_animation 1.2s infinite ease-in-out;
          animation: ajax_loading_animation 1.2s infinite ease-in-out;
}
.loading-rect .rect2 {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}
.loading-rect .rect3 {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
.loading-rect .rect4 {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}
.loading-rect .rect5 {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

@-webkit-keyframes ajax_loading_animation {
  0%, 40%, 100% {
    height: 1em;
  }
  20% {
    height: 4em;
  }
}

@keyframes ajax_loading_animation {
  0%, 40%, 100% {
    height: 1em;
  }
  20% {
    height: 4em;
  }
}
/*********************
ARCHIVE LISTING SIDEBAR
*********************/
.archive-listing-wrapper {
  padding: 1.5em;
  background-color: #CCCCCC;
}
.archive-listing-wrapper h3 {
  margin-top: 0;
}
.archive-listing-wrapper ul {
  margin: 0;
}

.archive-listing .none {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
.archive-listing .none > li {
  margin: 0;
  padding: 0.25em 0;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
}
.archive-listing.yearly .none {
  -webkit-column-count: 5;
     -moz-column-count: 5;
          column-count: 5;
}
@media only screen and (min-width: 768px) {
  .archive-listing.yearly .none {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
.archive-listing.monthly .none {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
@media only screen and (min-width: 481px) {
  .archive-listing.monthly .none {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}
@media only screen and (min-width: 768px) {
  .archive-listing.monthly .none {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

.ajax-hide {
  opacity: 0;
}

#ajax_loader {
  position: absolute;
  left: -30px;
  top: 0;
  bottom: 0;
  right: -30px;
  z-index: 4;
  background: #fff;
}
#ajax_loader.ajax-hide {
  display: none !important;
}

.sp {
  width: 32px;
  height: 32px;
  clear: both;
  margin: 60px auto;
}
.sp.sp-circle {
  border: 4px rgba(133, 55, 149, 0.25) solid;
  border-top: 4px #853795 solid;
  border-radius: 50%;
  -webkit-animation: spCircRot 0.6s infinite linear;
  animation: spCircRot 0.6s infinite linear;
}

@-webkit-keyframes spCircRot {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes spCircRot {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Sidebar Stylesheet

******************************************************************/
.widget_sjvst_upcoming_dates_widget ul,
.academic-dates-shortcode ul {
  list-style: none;
}
.widget_sjvst_upcoming_dates_widget ul li,
.academic-dates-shortcode ul li {
  width: 100%;
  margin-bottom: 0.5rem;
  float: left;
}
.widget_sjvst_upcoming_dates_widget ul li span,
.academic-dates-shortcode ul li span {
  width: 100%;
  float: left;
  text-align: left;
  padding-left: 1.5rem;
}
.widget_sjvst_upcoming_dates_widget ul li span:first-child,
.academic-dates-shortcode ul li span:first-child {
  padding-left: 0;
}

.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em;
}

@media only screen and (min-width: 768px) {
  .sidebar {
    margin-top: 2.2em;
  }
  .widgettitle {
    margin-bottom: 0.75em;
  }
  .widget {
    padding: 0 10px;
    margin: 0 0 1.25em 0;
    float: left;
    width: 100%;
  }
  .widget ul li {
    /* deep nesting */
  }
  .widget ul li ul {
    margin-top: 0.75em;
    padding-left: 1em;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Single Stylesheet

******************************************************************/
.people-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.people-details .each-thumb {
  margin-bottom: 0;
}
.people-details img {
  margin-bottom: 0;
}
.people-details h4 {
  margin: 0 0 1.5rem 0;
}
.people-details p {
  margin: 0 0 1.5rem 0;
}

.each-grouping a:link {
  color: #000;
}

.course-related-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.course-related {
  margin-bottom: 1.5rem;
}
.course-related .each-faculty-post {
  margin: 0 0 1.5rem 0;
}

.single-course-details {
  margin-bottom: 1.5rem;
}
.single-course-details p {
  margin-bottom: 0.5rem;
}

.single-courses_type footer {
  margin-top: 1.5rem;
}

.single-perspectives .subway-wrapper .hunks-wrapper .each-hunk::after {
  display: none;
}
.single-perspectives .hentry footer {
  padding-top: 0;
}

.bursary-page .bursary-filter .bursary-btn {
  padding: 8px 15px;
}
.bursary-page .bursary-filter .bursary-btn.active {
  color: white;
}
.bursary-page .bursary-filter .search-bar {
  margin-bottom: 30px !important;
}
.bursary-page .bursary-filter .sj-subway {
  margin-bottom: 35px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .bursary-page .bursary-filter .sj-subway {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.bursary-page .bursary-filter h3 {
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
}
.bursary-page .bursary-filter .bursary-search-btn {
  background-color: transparent;
  width: 40px;
  height: 40px;
  z-index: 10;
  margin: 3px 0 0 -40px;
}
.bursary-page .bursary-filter .archive-wrapper {
  padding: 50px 0 0 0;
}
.bursary-page .bursary-filter .archive-wrapper .sj-subway .level-of-study {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.bursary-page .bursary-filter .archive-wrapper .sj-subway .wrap-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .bursary-page .bursary-filter .archive-wrapper .sj-subway .wrap-left {
    padding-left: 20px;
    width: 27%;
  }
}
@media only screen and (min-width: 1030px) {
  .bursary-page .bursary-filter .archive-wrapper .sj-subway .wrap-left {
    padding-right: 1.5rem;
    padding-left: 100px;
    padding-left: 70px;
  }
}
@media only screen and (min-width: 1030px) {
  .bursary-page .bursary-filter .archive-wrapper .sj-subway .wrap-left {
    padding-right: 1.5rem;
    padding-left: 100px;
    padding-left: 70px;
  }
}
.bursary-page .bursary-filter .archive-wrapper .sj-subway .wrap-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  float: right;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .bursary-page .bursary-filter .archive-wrapper .sj-subway .wrap-right {
    width: 85%;
  }
}
@media only screen and (min-width: 1030px) {
  .bursary-page .bursary-filter .archive-wrapper .sj-subway .wrap-right {
    width: 73%;
  }
}
@media only screen and (min-width: 1030px) {
  .bursary-page .bursary-filter .archive-wrapper .sj-subway .wrap-right {
    width: 73%;
  }
}
.bursary-page .bursary-filter .archive-wrapper .sj-subway .input input {
  max-width: 600px;
  border: 1px solid black;
  padding: 0.625em 0.5em 0.625em 0.5em;
  position: relative;
}
.bursary-page .bursary-filter .archive-wrapper .sj-subway .input input:hover, .bursary-page .bursary-filter .archive-wrapper .sj-subway .input input:active, .bursary-page .bursary-filter .archive-wrapper .sj-subway .input input:focus {
  padding: 0.625em 0.5em 0.625em 0.5em;
}
.bursary-page .bursary-filter .filter-container .advanced-filters {
  position: relative;
  padding-right: 30px;
}
.bursary-page .bursary-filter .filter-container .advanced-filters:after {
  position: absolute;
  top: 25%;
  right: 5px;
}
.bursary-page .bursary-filter .filter-container .advanced-filters.less:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  content: "\f067";
  height: 15px;
  width: 15px;
}
.bursary-page .bursary-filter .filter-container .advanced-filters.more:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  content: "\f068";
  height: 15px;
  width: 15px;
}
.bursary-page .bursary-filter .filter-options {
  width: 100%;
  height: 0;
  display: none;
}
.bursary-page .bursary-filter .filter-options .filter-message {
  max-width: 600px;
}
.bursary-page .bursary-filter .filter-options .studies-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 600px;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  gap: 1em;
}
.bursary-page .bursary-filter .filter-options .studies-results .g-btn, .bursary-page .bursary-filter .filter-options .studies-results .comment-reply-link {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.bursary-page .bursary-filter .filter-options .sort-by {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
}
.bursary-page .bursary-filter .filter-options #bursary-categories-select.vscomp-ele, .bursary-page .bursary-filter .filter-options #bursary-citizen-select.vscomp-ele {
  max-width: 100%;
}
.bursary-page .bursary-filter .filter-options #bursary-categories-select .vscomp-wrapper, .bursary-page .bursary-filter .filter-options #bursary-citizen-select .vscomp-wrapper {
  max-width: 600px;
  border: 1px solid black;
}
.bursary-page .bursary-filter .filter-options #bursary-categories-select .vscomp-wrapper.opened .vscomp-toggle-button .vscomp-arrow::after, .bursary-page .bursary-filter .filter-options #bursary-citizen-select .vscomp-wrapper.opened .vscomp-toggle-button .vscomp-arrow::after {
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
  margin-top: 0;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.bursary-page .bursary-filter .filter-options #bursary-categories-select .vscomp-wrapper .vscomp-dropbox-container, .bursary-page .bursary-filter .filter-options #bursary-citizen-select .vscomp-wrapper .vscomp-dropbox-container {
  border: 1px solid black;
}
.bursary-page .bursary-filter .filter-options #bursary-categories-select .vscomp-wrapper .vscomp-toggle-button, .bursary-page .bursary-filter .filter-options #bursary-citizen-select .vscomp-wrapper .vscomp-toggle-button {
  border: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  height: 38px;
}
.bursary-page .bursary-filter .filter-options #bursary-categories-select .vscomp-wrapper .vscomp-toggle-button .vscomp-arrow::after, .bursary-page .bursary-filter .filter-options #bursary-citizen-select .vscomp-wrapper .vscomp-toggle-button .vscomp-arrow::after {
  border: 4px solid transparent;
  border-right-color: #111;
  border-bottom-color: #111;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.bursary-page .bursary-filter .filter-options #bursary-categories-select .vscomp-wrapper .vscomp-toggle-button .vscomp-value, .bursary-page .bursary-filter .filter-options #bursary-citizen-select .vscomp-wrapper .vscomp-toggle-button .vscomp-value {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.bursary-page .bursary-filter .filter-options #bursary-categories-select .vscomp-wrapper .vscomp-options, .bursary-page .bursary-filter .filter-options #bursary-citizen-select .vscomp-wrapper .vscomp-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bursary-page .bursary-filter .filter-options #bursary-categories-select .vscomp-wrapper .vscomp-options .vscomp-option, .bursary-page .bursary-filter .filter-options #bursary-citizen-select .vscomp-wrapper .vscomp-options .vscomp-option {
  width: 180px;
  word-break: break-word;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.bursary-page .bursary-filter .filter-options #bursary-categories-select .vscomp-wrapper .vscomp-options .vscomp-option .checkbox-icon, .bursary-page .bursary-filter .filter-options #bursary-citizen-select .vscomp-wrapper .vscomp-options .vscomp-option .checkbox-icon {
  width: 20px;
  height: 20px;
}
.bursary-page .bursary-filter .filter-options #bursary-categories-select .vscomp-wrapper .vscomp-options .vscomp-option .vscomp-option-text, .bursary-page .bursary-filter .filter-options #bursary-citizen-select .vscomp-wrapper .vscomp-options .vscomp-option .vscomp-option-text {
  text-transform: uppercase;
  font-weight: 600;
}
.bursary-page .bursary-filter .filter-options #bursary-categories-select .vscomp-wrapper .vscomp-options .vscomp-option.selected .checkbox-icon::before, .bursary-page .bursary-filter .filter-options #bursary-citizen-select .vscomp-wrapper .vscomp-options .vscomp-option.selected .checkbox-icon::before {
  content: "";
  background-color: #853795;
  position: absolute;
  width: 150%;
  height: 150%;
  margin: -4px;
}
.bursary-page .bursary-filter .filter-options #bursary-categories-select .vscomp-wrapper .vscomp-options .vscomp-option.selected .checkbox-icon::after, .bursary-page .bursary-filter .filter-options #bursary-citizen-select .vscomp-wrapper .vscomp-options .vscomp-option.selected .checkbox-icon::after {
  height: 90%;
  margin-left: 3px;
  border-color: #fff;
  border-left-color: transparent;
  border-top-color: transparent;
}
.bursary-page .bursary-filter .filter-options #bursary-categories-select .vscomp-wrapper .vscomp-options .vscomp-option.focused, .bursary-page .bursary-filter .filter-options #bursary-citizen-select .vscomp-wrapper .vscomp-options .vscomp-option.focused {
  background-color: #eee !important;
}
.bursary-page .bursary-filter .filter-options #bursary-categories-select .vscomp-wrapper .vscomp-search-input, .bursary-page .bursary-filter .filter-options #bursary-citizen-select .vscomp-wrapper .vscomp-search-input {
  border: none;
}
.bursary-page .bursary-filter .filter-options #bursary-categories-select .vscomp-wrapper .vscomp-search-input:focus, .bursary-page .bursary-filter .filter-options #bursary-citizen-select .vscomp-wrapper .vscomp-search-input:focus {
  padding: 0.625em 0.5em 0.625em 0.5em;
}
.bursary-page .bursary-filter .filter-options .citizen-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  cursor: pointer;
}
.bursary-page .bursary-filter .filter-options .citizen-toggle .checkbox-icon {
  width: 20px;
  height: 20px;
  position: relative;
  margin-right: 10px;
}
.bursary-page .bursary-filter .filter-options .citizen-toggle .checkbox-icon::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 2px solid #888;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.bursary-page .bursary-filter .filter-options .citizen-toggle .text {
  text-transform: uppercase;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-top: 5px;
}
.bursary-page .bursary-filter .filter-options .citizen-toggle.selected .checkbox-icon::after {
  width: 40%;
  height: 80%;
  margin-left: 3px;
  border-color: #fff;
  border-left-color: transparent;
  border-top-color: transparent;
  -webkit-transform: rotate(45deg) translate(1px, -4px);
      -ms-transform: rotate(45deg) translate(1px, -4px);
          transform: rotate(45deg) translate(1px, -4px);
}
.bursary-page .bursary-filter .filter-options .citizen-toggle.selected .checkbox-icon::before {
  content: "";
  background-color: #853795;
  position: absolute;
  width: 150%;
  height: 150%;
  margin: -4px;
}
.bursary-page .bursary-filter .filter-options .form-submission #bursary-search {
  width: 170px;
}
.bursary-page .bursary-filter .filter-options .form-reset #bursary-search-reset {
  margin-left: 10px;
  width: 170px;
}
.bursary-page .bursary-results .hunks-wrapper .each-hunk {
  padding-bottom: 80px !important;
  margin-bottom: 30px !important;
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}
@media only screen and (min-width: 768px) {
  .bursary-page .bursary-results .load-more {
    padding-left: 1.5em;
  }
}
.bursary-page .bursary-results .load-more .bursary-load-more {
  padding: 8px 15px;
}

.single-cvi_resources .entry-content .back-to-link a,
.single-cvi_resources .each-hunk .back-to-link a,
.tax-cvi_themes .entry-content .back-to-link a,
.tax-cvi_themes .each-hunk .back-to-link a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-cvi_resources .entry-content .back-to-link a img,
.single-cvi_resources .each-hunk .back-to-link a img,
.tax-cvi_themes .entry-content .back-to-link a img,
.tax-cvi_themes .each-hunk .back-to-link a img {
  margin: 0;
  padding-right: 15px;
  -webkit-transition: padding-right 0.25s ease-in;
  transition: padding-right 0.25s ease-in;
}
.single-cvi_resources .entry-content .back-to-link a:hover img,
.single-cvi_resources .each-hunk .back-to-link a:hover img,
.tax-cvi_themes .entry-content .back-to-link a:hover img,
.tax-cvi_themes .each-hunk .back-to-link a:hover img {
  padding-right: 25px;
}

/*********************
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.

  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    -webkit-filter: none !important;
            filter: none !important;
    -ms-filter: none !important;
  }
  @page {
    padding: 50px;
  }
  #logo {
    margin: 0;
    position: relative;
    min-height: 35px;
    max-width: 15%;
  }
  #logo img {
    max-height: 70px;
    min-height: 70px;
    margin: 1em 0;
    float: left;
    width: 100%;
  }
  #logo a {
    color: black;
    float: left;
    width: 100%;
  }
  #logo .logo-hover-wrapper {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  #logo:hover .logo-hover-wrapper {
    opacity: 1;
  }
  #logo:hover .logo-wrapper {
    opacity: 0;
  }
  .small-logo {
    display: none;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after,
  .arrow-btn:after {
    content: " (" attr(href) ")";
    float: left;
    width: 100%;
  }
  .file-icon a:after, .file-icon a:visited:after,
  .file-icon .arrow-btn:after {
    font-size: 1rem;
  }
  a abbr[title]:after, a:visited abbr[title]:after,
  .arrow-btn abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .arrow-btn {
    padding: 10px;
  }
  .arrow-btn:after {
    margin-left: 0.5em;
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  h2.m-all, h2.t-all, h2.d-all,
  h3.m-all,
  h3.t-all,
  h3.d-all {
    width: 100%;
    float: none;
  }
  #header, .header {
    position: static;
  }
  #content {
    margin-top: 0 !important;
  }
  .article-header {
    clear: both;
  }
  .hentry .article-header {
    padding-left: 0;
    padding-right: 0;
  }
  .article-header .thumb-wrapper,
  .article-header .thumb-image-wrapper {
    float: none;
    width: 100%;
    text-align: center;
  }
  .each-hunk {
    padding: 25px;
  }
  .each-hunk.flex-end {
    display: block;
  }
  .search .each-hunk.flex-end {
    width: 100%;
  }
  body .each-hunk .hunks-wrapper {
    float: none;
  }
  .each-hunk .text-wrapper.page-content {
    font-size: 1.25rem;
  }
  body .hunks-wrapper.d-3of4 {
    float: none;
    width: 100%;
  }
  .each-hunk.full-width .entry-content-inner,
  .each-hunk.full-width,
  .entry-content-inner,
  .text-wrapper,
  .sj-subway {
    margin: 0;
    width: 100%;
    max-width: none;
  }
  .each-home-column ul.menu li.programs-style a .menu-icon,
  .widget_nav_menu ul.menu li.programs-style a .menu-icon {
    float: none;
    margin: 0 1em;
  }
  .copyright {
    text-align: center;
  }
  .archive-wrapper.flex-end,
  .course-related-wrapper {
    display: block;
  }
  .people-archive-listing .each-faculty-post .thumb-circle-wrapper {
    max-width: 150px;
    float: left;
  }
  #home-perspective .featured-post-thumbnail,
  footer .site-by,
  .people-filters-wrapper,
  #contextual-footer-info,
  .each-featured-perspective > a,
  #action-nav-wrapper,
  #home-filters,
  #home-filters-trigger,
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
  .map-wrapper {
    display: none !important;
  }
  .subway-wrapper .hunks-wrapper .each-hunk,
  #columns-wrapper .each-column-item.visible,
  #contextual-footer-info,
  #contextual-footer-info .contextual-footer-content .each-footer-content.active,
  #featured-content,
  #home-filters .each-filter.loading:before,
  #home-news .each-news-post,
  #recent-news,
  .animated,
  .each-course-archive,
  .each-course-archive:not(.hidden),
  .each-news-post,
  .each-faculty-post,
  .each-hunk,
  .each-program-archive,
  .each-program-archive:not(.hidden),
  .hunks-wrapper,
  .post-wrapper,
  .subway-wrapper .map-wrapper,
  .animated {
    -webkit-animation: none !important;
            animation: none !important;
    opacity: 1 !important;
  }
  body.home .each-column-item,
  body.home #principals-welcome,
  body.home .menu {
    padding: 20px;
  }
  body.home h4.hidden {
    font-size: 1.5rem;
  }
  body.home #home-perspective {
    display: none;
  }
  body.home #column-four h4 {
    padding: 0 20px;
  }
  body.home #ad-blocks-wrapper::before {
    content: "Quick Links";
    font-size: 0.85em;
    font-weight: 700;
    padding: 0 20px;
    margin: 0 0 1.25rem 0;
    width: 100%;
    display: block;
  }
  body.home #home-events .m-1of2,
  body.home #column-three,
  body.home #column-four {
    width: 49%;
    display: inline-table;
  }
  #container.chrome .d-all {
    float: left;
    padding-right: 1.5rem;
    width: 100%;
    padding-right: 0;
  }
  #container.chrome .d-1of2, #container.chrome .d-2of4, #container.chrome .d-3of6, #container.chrome .d-4of8, #container.chrome .d-5of10, #container.chrome .d-6of12 {
    float: left;
    padding-right: 1.5rem;
    width: 50%;
  }
  #container.chrome .d-1of3, #container.chrome .d-2of6, #container.chrome .d-3of9, #container.chrome .d-4of12 {
    float: left;
    padding-right: 1.5rem;
    width: 33.33%;
  }
  #container.chrome .d-2of3, #container.chrome .d-4of6, #container.chrome .d-6of9, #container.chrome .d-8of12 {
    float: left;
    padding-right: 1.5rem;
    width: 66.66%;
  }
  #container.chrome .d-1of4, #container.chrome .d-2of8, #container.chrome .d-3of12 {
    float: left;
    padding-right: 1.5rem;
    width: 25%;
  }
  #container.chrome .d-3of4, #container.chrome .d-6of8, #container.chrome .d-9of12 {
    float: left;
    padding-right: 1.5rem;
    width: 75%;
  }
  #container.chrome .d-1of5, #container.chrome .d-2of10 {
    float: left;
    padding-right: 1.5rem;
    width: 20%;
  }
  #container.chrome .d-2of5, #container.chrome .d-4of10 {
    float: left;
    padding-right: 1.5rem;
    width: 40%;
  }
  #container.chrome .d-3of5, #container.chrome .d-6of10 {
    float: left;
    padding-right: 1.5rem;
    width: 60%;
  }
  #container.chrome .d-4of5, #container.chrome .d-8of10 {
    float: left;
    padding-right: 1.5rem;
    width: 80%;
  }
  #container.chrome .d-1of6, #container.chrome .d-2of12 {
    float: left;
    padding-right: 1.5rem;
    width: 16.6666666667%;
  }
  #container.chrome .d-1of7 {
    float: left;
    padding-right: 1.5rem;
    width: 14.2857142857%;
  }
  #container.chrome .d-2of7 {
    float: left;
    padding-right: 1.5rem;
    width: 28.5714286%;
  }
  #container.chrome .d-3of7 {
    float: left;
    padding-right: 1.5rem;
    width: 42.8571429%;
  }
  #container.chrome .d-4of7 {
    float: left;
    padding-right: 1.5rem;
    width: 57.1428572%;
  }
  #container.chrome .d-5of7 {
    float: left;
    padding-right: 1.5rem;
    width: 71.4285715%;
  }
  #container.chrome .d-6of7 {
    float: left;
    padding-right: 1.5rem;
    width: 85.7142857%;
  }
  #container.chrome .d-1of8 {
    float: left;
    padding-right: 1.5rem;
    width: 12.5%;
  }
  #container.chrome .d-3of8 {
    float: left;
    padding-right: 1.5rem;
    width: 37.5%;
  }
  #container.chrome .d-5of8 {
    float: left;
    padding-right: 1.5rem;
    width: 62.5%;
  }
  #container.chrome .d-7of8 {
    float: left;
    padding-right: 1.5rem;
    width: 87.5%;
  }
  #container.chrome .d-1of9 {
    float: left;
    padding-right: 1.5rem;
    width: 11.1111111111%;
  }
  #container.chrome .d-2of9 {
    float: left;
    padding-right: 1.5rem;
    width: 22.2222222222%;
  }
  #container.chrome .d-4of9 {
    float: left;
    padding-right: 1.5rem;
    width: 44.4444444444%;
  }
  #container.chrome .d-5of9 {
    float: left;
    padding-right: 1.5rem;
    width: 55.5555555555%;
  }
  #container.chrome .d-7of9 {
    float: left;
    padding-right: 1.5rem;
    width: 77.7777777777%;
  }
  #container.chrome .d-8of9 {
    float: left;
    padding-right: 1.5rem;
    width: 88.8888888888%;
  }
  #container.chrome .d-1of10 {
    float: left;
    padding-right: 1.5rem;
    width: 10%;
  }
  #container.chrome .d-3of10 {
    float: left;
    padding-right: 1.5rem;
    width: 20%;
  }
  #container.chrome .d-7of10 {
    float: left;
    padding-right: 1.5rem;
    width: 70%;
  }
  #container.chrome .d-9of10 {
    float: left;
    padding-right: 1.5rem;
    width: 90%;
  }
  #container.chrome .d-1of11 {
    float: left;
    padding-right: 1.5rem;
    width: 9.0909090909%;
  }
  #container.chrome .d-2of11 {
    float: left;
    padding-right: 1.5rem;
    width: 18.1818181818%;
  }
  #container.chrome .d-3of11 {
    float: left;
    padding-right: 1.5rem;
    width: 27.2727272727%;
  }
  #container.chrome .d-4of11 {
    float: left;
    padding-right: 1.5rem;
    width: 36.3636363636%;
  }
  #container.chrome .d-5of11 {
    float: left;
    padding-right: 1.5rem;
    width: 45.4545454546%;
  }
  #container.chrome .d-6of11 {
    float: left;
    padding-right: 1.5rem;
    width: 54.5454545455%;
  }
  #container.chrome .d-7of11 {
    float: left;
    padding-right: 1.5rem;
    width: 63.6363636364%;
  }
  #container.chrome .d-8of11 {
    float: left;
    padding-right: 1.5rem;
    width: 72.7272727273%;
  }
  #container.chrome .d-9of11 {
    float: left;
    padding-right: 1.5rem;
    width: 81.8181818182%;
  }
  #container.chrome .d-10of11 {
    float: left;
    padding-right: 1.5rem;
    width: 90.9090909091%;
  }
  #container.chrome .d-1of12 {
    float: left;
    padding-right: 1.5rem;
    width: 8.33%;
  }
  #container.chrome .d-5of12 {
    float: left;
    padding-right: 1.5rem;
    width: 41.65%;
  }
  #container.chrome .d-7of12 {
    float: left;
    padding-right: 1.5rem;
    width: 58.1%;
  }
  #container.chrome .d-10of12 {
    float: left;
    padding-right: 1.5rem;
    width: 83.3%;
  }
  #container.chrome .d-11of12 {
    float: left;
    padding-right: 1.5rem;
    width: 91.63%;
  }
  .hunks-wrapper.d-3of4 {
    float: none;
    width: 100%;
  }
  body.home #container.chrome .each-home-column {
    width: 100%;
  }
  body.home #container.chrome #home-events .m-1of2,
  body.home #container.chrome #column-three,
  body.home #container.chrome #column-four {
    width: 49%;
    display: inline-table;
  }
}