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

Stylesheet: Main Stylesheet

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

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

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
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 {
  -moz-box-sizing: content-box;
  -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;
  -moz-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: "\201C" "\201D" "\2018" "\2019"; }

/**
 * 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 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
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;
  -moz-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: table; }
  .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; }

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

Stylesheet: Variables

******************************************************************/
/******************************************************************
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
*********************/
/*********************
CSS3 GRADIENTS
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/*********************
FONT SIZING
*********************/
/******************************************************************

Stylesheet: Sass Functions

******************************************************************/
/*********************
COLOR FUNCTIONS
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
*********************/
/******************************************************************

Stylesheet: Typography

******************************************************************/
/*********************
FONTs
*********************/
/*
These are imported in the functions.php file.
*/
/*
some nice typographical defaults
*/
p {
  margin: 0 0 20px;
  line-height: 23px;
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig"; }

/*********************
LINK STYLES
*********************/
a {
  color: #00006b;
  text-decoration: none;
  /* mobile tap color */ }
  a:hover, a:focus {
    color: #00001f; }
  a:link {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  text-rendering: optimizelegibility;
  margin: 0 0 20px;
  line-height: 1.15em; }
  h1 .highlight, .h1 .highlight, h2 .highlight, .h2 .highlight, h3 .highlight, .h3 .highlight, h4 .highlight, .h4 .highlight, h5 .highlight, .h5 .highlight, h6 .highlight, .h6 .highlight {
    color: #8f0000; }

h1, .h1 {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 0.75rem; }

h2, .h2 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 0.625rem; }

h3, .h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #8f0000;
  margin: 0 0 0.6875rem; }

h4, .h4 {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #333;
  text-transform: uppercase;
  font-weight: 600; }

h5, .h5 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #8f0000; }

h6, .h6 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600; }

/******************************************************************

Stylesheet: Grid Stylesheet

******************************************************************/
@media screen and (max-width: 480px) {
  .mini-hide {
    display: none !important; } }

@media screen and (max-width: 767px) {
  .m-hide {
    display: none !important; }
  .mobile-hide {
    display: none !important; }
  .t-only {
    display: none !important; }
  .d-only {
    display: none !important; }
  .b-only {
    display: none !important; } }

@media screen and (min-width: 768px) and (max-width: 991px) {
  .t-hide {
    display: none !important; }
  .m-only {
    display: none !important; }
  .d-only {
    display: none !important; }
  .b-only {
    display: none !important; } }

@media screen and (min-width: 992px) and (max-width: 1379px) {
  .d-hide {
    display: none !important; }
  .m-only {
    display: none !important; }
  .t-only {
    display: none !important; }
  .b-only {
    display: none !important; } }

@media screen and (min-width: 1380px) {
  .d-hide {
    display: none !important; }
  .b-hide {
    display: none !important; }
  .m-only {
    display: none !important; }
  .t-only {
    display: none !important; } }

/**
 * Grid setup
 */
/**
 * Break point namespace object
 *
 */
/**
 * Class Name Defaults
 *
 * Define class names for columns, rows and offsets in case compatibility with other
 * libraries is necessary.
/**
 * Calculate column size percentage
 */
/**
 * Spacing mixin to create uniform margin/padding
 */
/**
 * Row wrapper class, flex box parent.
 */
.row {
  margin-left: -10px;
  margin-right: -10px; }

.col-m, .col-t, .col-d, .col-m-1, .col-m-2, .col-m-3, .col-m-4, .col-m-5, .col-m-6, .col-m-7, .col-m-8, .col-m-9, .col-m-10, .col-m-11, .col-m-12, .col-t-1, .col-t-2, .col-t-3, .col-t-4, .col-t-5, .col-t-6, .col-t-7, .col-t-8, .col-t-9, .col-t-10, .col-t-11, .col-t-12, .col-d-1, .col-d-2, .col-d-3, .col-d-4, .col-d-5, .col-d-6, .col-d-7, .col-d-8, .col-d-9, .col-d-10, .col-d-11, .col-d-12 {
  float: left;
  padding-left: 10px;
  padding-right: 10px; }

.col-m, .col-t, .col-d {
  max-width: 100%; }

/**
 * Generate a set of grid column classes using a namespace
 *
 * .col-[namespace] for intelligent column division
 * .col-[namespace]-[number] for a column that covers a specific number of columns (e.g. 1-12 by default)
 * .off-[namespace]-[number] for pushing a col a specific number of columns (e.g. 1-11 by default)
 */
/**
 * Build the grid in two steps, to help minimize file size
 * Step 1, for each namespace, create the grid-base
 * Step 2, for each namespace, wrap the col width/offset measurements in their breakpoint media query
 */
.col-m-1 {
  width: 8.33333%; }

.col-m-2 {
  width: 16.66667%; }

.col-m-3 {
  width: 25%; }

.col-m-4 {
  width: 33.33333%; }

.col-m-5 {
  width: 41.66667%; }

.col-m-6 {
  width: 50%; }

.col-m-7 {
  width: 58.33333%; }

.col-m-8 {
  width: 66.66667%; }

.col-m-9 {
  width: 75%; }

.col-m-10 {
  width: 83.33333%; }

.col-m-11 {
  width: 91.66667%; }

.col-m-12 {
  width: 100%; }

.off-m-1 {
  margin-left: 8.33333%; }

.off-m-2 {
  margin-left: 16.66667%; }

.off-m-3 {
  margin-left: 25%; }

.off-m-4 {
  margin-left: 33.33333%; }

.off-m-5 {
  margin-left: 41.66667%; }

.off-m-6 {
  margin-left: 50%; }

.off-m-7 {
  margin-left: 58.33333%; }

.off-m-8 {
  margin-left: 66.66667%; }

.off-m-9 {
  margin-left: 75%; }

.off-m-10 {
  margin-left: 83.33333%; }

.off-m-11 {
  margin-left: 91.66667%; }

@media only screen and (min-width: 768px) {
  .col-t-1 {
    width: 8.33333%; }
  .col-t-2 {
    width: 16.66667%; }
  .col-t-3 {
    width: 25%; }
  .col-t-4 {
    width: 33.33333%; }
  .col-t-5 {
    width: 41.66667%; }
  .col-t-6 {
    width: 50%; }
  .col-t-7 {
    width: 58.33333%; }
  .col-t-8 {
    width: 66.66667%; }
  .col-t-9 {
    width: 75%; }
  .col-t-10 {
    width: 83.33333%; }
  .col-t-11 {
    width: 91.66667%; }
  .col-t-12 {
    width: 100%; }
  .off-t-1 {
    margin-left: 8.33333%; }
  .off-t-2 {
    margin-left: 16.66667%; }
  .off-t-3 {
    margin-left: 25%; }
  .off-t-4 {
    margin-left: 33.33333%; }
  .off-t-5 {
    margin-left: 41.66667%; }
  .off-t-6 {
    margin-left: 50%; }
  .off-t-7 {
    margin-left: 58.33333%; }
  .off-t-8 {
    margin-left: 66.66667%; }
  .off-t-9 {
    margin-left: 75%; }
  .off-t-10 {
    margin-left: 83.33333%; }
  .off-t-11 {
    margin-left: 91.66667%; } }

@media only screen and (min-width: 992px) {
  .col-d-1 {
    width: 8.33333%; }
  .col-d-2 {
    width: 16.66667%; }
  .col-d-3 {
    width: 25%; }
  .col-d-4 {
    width: 33.33333%; }
  .col-d-5 {
    width: 41.66667%; }
  .col-d-6 {
    width: 50%; }
  .col-d-7 {
    width: 58.33333%; }
  .col-d-8 {
    width: 66.66667%; }
  .col-d-9 {
    width: 75%; }
  .col-d-10 {
    width: 83.33333%; }
  .col-d-11 {
    width: 91.66667%; }
  .col-d-12 {
    width: 100%; }
  .off-d-1 {
    margin-left: 8.33333%; }
  .off-d-2 {
    margin-left: 16.66667%; }
  .off-d-3 {
    margin-left: 25%; }
  .off-d-4 {
    margin-left: 33.33333%; }
  .off-d-5 {
    margin-left: 41.66667%; }
  .off-d-6 {
    margin-left: 50%; }
  .off-d-7 {
    margin-left: 58.33333%; }
  .off-d-8 {
    margin-left: 66.66667%; }
  .off-d-9 {
    margin-left: 75%; }
  .off-d-10 {
    margin-left: 83.33333%; }
  .off-d-11 {
    margin-left: 91.66667%; } }

/*********************
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-help, .alert-info, .alert-error, .alert-success {
  margin: 20px 0;
  padding: 10px 18px 8px;
  border-left: 5px solid #999;
  background: #efefef; }

.alert-help {
  border-color: #f4d81d; }

.alert-info {
  border-color: #1dc9f4; }

.alert-error {
  border-color: #f41d1d; }

.alert-success {
  border-color: #1df436; }

/******************************************************************
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

*********************/
.btn-blue, button,
input[type=submit], .slider .cta > a, .woocommerce div.product form.cart .button, .btn-red, .btn-white, .btn-grey, .gform_drop_area .gform_button_select_files {
  display: inline-block;
  position: relative;
  font-family: "Hind", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1em;
  font-weight: 600;
  padding: 13px 19px 9px;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.24s ease-in-out;
  -o-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out; }
  .btn-blue:hover, button:hover,
  input[type=submit]:hover, .slider .cta > a:hover, .woocommerce div.product form.cart .button:hover, .btn-red:hover, .btn-white:hover, .btn-grey:hover, .gform_drop_area .gform_button_select_files:hover, .btn-blue:focus, button:focus,
  input[type=submit]:focus, .slider .cta > a:focus, .woocommerce div.product form.cart .button:focus, .btn-red:focus, .btn-white:focus, .btn-grey:focus, .gform_drop_area .gform_button_select_files:focus {
    text-decoration: none;
    outline: none; }
  .btn-blue .fa, button .fa,
  input[type=submit] .fa, .slider .cta > a .fa, .woocommerce div.product form.cart .button .fa, .btn-red .fa, .btn-white .fa, .btn-grey .fa, .gform_drop_area .gform_button_select_files .fa {
    margin-right: 10px;
    line-height: 10px; }
  .thin.btn-blue, button.thin,
  input.thin[type=submit], .slider .cta > a.thin, .woocommerce div.product form.cart .thin.button, .thin.btn-red, .thin.btn-white, .thin.btn-grey, .gform_drop_area .thin.gform_button_select_files {
    font-size: 15px;
    font-size: 0.9375rem;
    padding: 7px 10px 5px; }
  .rounded.btn-blue, button.rounded,
  input.rounded[type=submit], .slider .cta > a.rounded, .woocommerce div.product form.cart .rounded.button, .rounded.btn-red, .rounded.btn-white, .rounded.btn-grey, .gform_drop_area .rounded.gform_button_select_files {
    border-radius: 4px; }

.btn-blue, button,
input[type=submit], .slider .cta > a, .woocommerce div.product form.cart .button {
  background-color: #00006b;
  color: #ffffff; }
  .btn-blue:hover, button:hover,
  input[type=submit]:hover, .slider .cta > a:hover, .woocommerce div.product form.cart .button:hover, .btn-blue:focus, button:focus,
  input[type=submit]:focus, .slider .cta > a:focus, .woocommerce div.product form.cart .button:focus, .btn-blue:active, button:active,
  input[type=submit]:active, .slider .cta > a:active, .woocommerce div.product form.cart .button:active {
    color: #ffffff;
    background-color: #00001f; }

.btn-red {
  background-color: #8f0000;
  color: #ffffff; }
  .btn-red:hover, .btn-red:focus, .btn-red:active {
    color: #ffffff;
    background-color: #430000; }

.btn-white {
  background-color: #ffffff;
  color: #00006b; }
  .btn-white:hover, .btn-white:focus, .btn-white:active {
    color: #00006b;
    background-color: #d9d9d9; }

.btn-grey, .gform_drop_area .gform_button_select_files {
  background-color: #ddd;
  color: #00006b; }
  .btn-grey:hover, .gform_drop_area .gform_button_select_files:hover, .btn-grey:focus, .gform_drop_area .gform_button_select_files:focus, .btn-grey:active, .gform_drop_area .gform_button_select_files:active {
    color: #00006b;
    background-color: #b7b7b7; }

/******************************************************************
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/

******************************************************************/
.gform_wrapper {
  border: 1px solid #ddd;
  border-bottom: 6px solid #ddd;
  padding: 44px 47px; }
  .gform_wrapper ul, .gform_wrapper ol {
    margin: 0 0 20px; }

label {
  font-weight: 500; }

.gform_footer {
  margin-top: 22px; }

.gfield_visibility_ {
  display: none;
  visibility: hidden;
  height: 0; }

.ginput_complex label {
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #888; }

.ginput_complex.gf_name_has_2 {
  margin: 0 -10px; }
  .ginput_complex.gf_name_has_2 > span {
    display: block;
    float: left;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px; }
  .ginput_complex.gf_name_has_2:after {
    content: '';
    display: block;
    clear: both; }

.gform_drop_area {
  background: #f5f5f5;
  border: 3px dashed #ddd;
  padding: 30px;
  text-align: center;
  color: #888; }
  .gform_drop_area .gform_button_select_files {
    margin: 0 10px; }

/*********************
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 {
  display: block;
  padding: 12px 25px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1 em;
  color: #999;
  vertical-align: middle;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  width: 100%;
  font-family: "Hind", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border-color 0.24s ease-in-out;
  -o-transition: border-color 0.24s ease-in-out;
  transition: border-color 0.24s ease-in-out; }
  input[type="text"]:focus, input[type="text"]:active,
  input[type="password"]:focus,
  input[type="password"]:active,
  input[type="datetime"]:focus,
  input[type="datetime"]:active,
  input[type="datetime-local"]:focus,
  input[type="datetime-local"]:active,
  input[type="date"]:focus,
  input[type="date"]:active,
  input[type="month"]:focus,
  input[type="month"]:active,
  input[type="time"]:focus,
  input[type="time"]:active,
  input[type="week"]:focus,
  input[type="week"]:active,
  input[type="number"]:focus,
  input[type="number"]:active,
  input[type="email"]:focus,
  input[type="email"]:active,
  input[type="url"]:focus,
  input[type="url"]:active,
  input[type="search"]:focus,
  input[type="search"]:active,
  input[type="tel"]:focus,
  input[type="tel"]:active,
  input[type="color"]:focus,
  input[type="color"]:active,
  select:focus,
  select:active,
  textarea:focus,
  textarea:active,
  .field:focus,
  .field:active {
    color: #333;
    border-color: #00006b;
    outline: none; }
  input[type="text"].error, input[type="text"].is-invalid,
  input[type="password"].error,
  input[type="password"].is-invalid,
  input[type="datetime"].error,
  input[type="datetime"].is-invalid,
  input[type="datetime-local"].error,
  input[type="datetime-local"].is-invalid,
  input[type="date"].error,
  input[type="date"].is-invalid,
  input[type="month"].error,
  input[type="month"].is-invalid,
  input[type="time"].error,
  input[type="time"].is-invalid,
  input[type="week"].error,
  input[type="week"].is-invalid,
  input[type="number"].error,
  input[type="number"].is-invalid,
  input[type="email"].error,
  input[type="email"].is-invalid,
  input[type="url"].error,
  input[type="url"].is-invalid,
  input[type="search"].error,
  input[type="search"].is-invalid,
  input[type="tel"].error,
  input[type="tel"].is-invalid,
  input[type="color"].error,
  input[type="color"].is-invalid,
  select.error,
  select.is-invalid,
  textarea.error,
  textarea.is-invalid,
  .field.error,
  .field.is-invalid {
    color: #f53535;
    border-color: #f53535;
    background-color: #ffffff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
    outline-color: #f53535; }
  input[type="text"].success, input[type="text"].is-valid,
  input[type="password"].success,
  input[type="password"].is-valid,
  input[type="datetime"].success,
  input[type="datetime"].is-valid,
  input[type="datetime-local"].success,
  input[type="datetime-local"].is-valid,
  input[type="date"].success,
  input[type="date"].is-valid,
  input[type="month"].success,
  input[type="month"].is-valid,
  input[type="time"].success,
  input[type="time"].is-valid,
  input[type="week"].success,
  input[type="week"].is-valid,
  input[type="number"].success,
  input[type="number"].is-valid,
  input[type="email"].success,
  input[type="email"].is-valid,
  input[type="url"].success,
  input[type="url"].is-valid,
  input[type="search"].success,
  input[type="search"].is-valid,
  input[type="tel"].success,
  input[type="tel"].is-valid,
  input[type="color"].success,
  input[type="color"].is-valid,
  select.success,
  select.is-valid,
  textarea.success,
  textarea.is-valid,
  .field.success,
  .field.is-valid {
    color: #35f54c;
    border-color: #35f54c;
    background-color: #ffffff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
    outline-color: #35f54c; }
  input[type="text"][disabled], input[type="text"].is-disabled,
  input[type="password"][disabled],
  input[type="password"].is-disabled,
  input[type="datetime"][disabled],
  input[type="datetime"].is-disabled,
  input[type="datetime-local"][disabled],
  input[type="datetime-local"].is-disabled,
  input[type="date"][disabled],
  input[type="date"].is-disabled,
  input[type="month"][disabled],
  input[type="month"].is-disabled,
  input[type="time"][disabled],
  input[type="time"].is-disabled,
  input[type="week"][disabled],
  input[type="week"].is-disabled,
  input[type="number"][disabled],
  input[type="number"].is-disabled,
  input[type="email"][disabled],
  input[type="email"].is-disabled,
  input[type="url"][disabled],
  input[type="url"].is-disabled,
  input[type="search"][disabled],
  input[type="search"].is-disabled,
  input[type="tel"][disabled],
  input[type="tel"].is-disabled,
  input[type="color"][disabled],
  input[type="color"].is-disabled,
  select[disabled],
  select.is-disabled,
  textarea[disabled],
  textarea.is-disabled,
  .field[disabled],
  .field.is-disabled {
    cursor: not-allowed;
    border-color: #888888;
    opacity: 0.6; }
    input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
    input[type="password"][disabled]:focus,
    input[type="password"][disabled]:active,
    input[type="password"].is-disabled:focus,
    input[type="password"].is-disabled:active,
    input[type="datetime"][disabled]:focus,
    input[type="datetime"][disabled]:active,
    input[type="datetime"].is-disabled:focus,
    input[type="datetime"].is-disabled:active,
    input[type="datetime-local"][disabled]:focus,
    input[type="datetime-local"][disabled]:active,
    input[type="datetime-local"].is-disabled:focus,
    input[type="datetime-local"].is-disabled:active,
    input[type="date"][disabled]:focus,
    input[type="date"][disabled]:active,
    input[type="date"].is-disabled:focus,
    input[type="date"].is-disabled:active,
    input[type="month"][disabled]:focus,
    input[type="month"][disabled]:active,
    input[type="month"].is-disabled:focus,
    input[type="month"].is-disabled:active,
    input[type="time"][disabled]:focus,
    input[type="time"][disabled]:active,
    input[type="time"].is-disabled:focus,
    input[type="time"].is-disabled:active,
    input[type="week"][disabled]:focus,
    input[type="week"][disabled]:active,
    input[type="week"].is-disabled:focus,
    input[type="week"].is-disabled:active,
    input[type="number"][disabled]:focus,
    input[type="number"][disabled]:active,
    input[type="number"].is-disabled:focus,
    input[type="number"].is-disabled:active,
    input[type="email"][disabled]:focus,
    input[type="email"][disabled]:active,
    input[type="email"].is-disabled:focus,
    input[type="email"].is-disabled:active,
    input[type="url"][disabled]:focus,
    input[type="url"][disabled]:active,
    input[type="url"].is-disabled:focus,
    input[type="url"].is-disabled:active,
    input[type="search"][disabled]:focus,
    input[type="search"][disabled]:active,
    input[type="search"].is-disabled:focus,
    input[type="search"].is-disabled:active,
    input[type="tel"][disabled]:focus,
    input[type="tel"][disabled]:active,
    input[type="tel"].is-disabled:focus,
    input[type="tel"].is-disabled:active,
    input[type="color"][disabled]:focus,
    input[type="color"][disabled]:active,
    input[type="color"].is-disabled:focus,
    input[type="color"].is-disabled:active,
    select[disabled]:focus,
    select[disabled]:active,
    select.is-disabled:focus,
    select.is-disabled:active,
    textarea[disabled]:focus,
    textarea[disabled]:active,
    textarea.is-disabled:focus,
    textarea.is-disabled:active,
    .field[disabled]:focus,
    .field[disabled]:active,
    .field.is-disabled:focus,
    .field.is-disabled:active {
      background-color: #35cff5; }
  input[type="text"].hidden,
  input[type="password"].hidden,
  input[type="datetime"].hidden,
  input[type="datetime-local"].hidden,
  input[type="date"].hidden,
  input[type="month"].hidden,
  input[type="time"].hidden,
  input[type="week"].hidden,
  input[type="number"].hidden,
  input[type="email"].hidden,
  input[type="url"].hidden,
  input[type="search"].hidden,
  input[type="tel"].hidden,
  input[type="color"].hidden,
  select.hidden,
  textarea.hidden,
  .field.hidden {
    display: none;
    visibility: hidden;
    height: 0;
    width: 0; }

input[type=checkbox],
input[type=radio] {
  margin-right: 8px; }

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

.gfield_required {
  margin-left: 5px;
  color: #fe2020; }

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

form#searchform {
  margin: 15px 0;
  padding: 30px;
  background: #8f0000;
  border: none;
  color: #ffffff;
  line-height: 20px; }
  form#searchform label {
    display: block;
    margin-bottom: 8px; }
  form#searchform input {
    border: 0;
    background: #ffffff;
    padding: 12px 44px 11px 25px;
    font-size: 15px;
    font-size: 0.9375rem;
    margin: 0; }
  form#searchform .searchcontent {
    position: relative; }
  form#searchform button,
  form#searchform input[type=submit] {
    font-size: 22px;
    font-size: 1.375rem;
    background: none;
    color: #333;
    padding: 0;
    position: absolute;
    right: 1px;
    bottom: 10px; }
    form#searchform button:hover, form#searchform button:active, form#searchform button:focus,
    form#searchform input[type=submit]:hover,
    form#searchform input[type=submit]:active,
    form#searchform input[type=submit]:focus {
      color: #8f0000; }

/*********************
BASE (MOBILE) SIZE
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
html.noscroll,
body.noscroll {
  overflow: hidden !important; }

body {
  font-family: "Hind", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #555555;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; }

html {
  overflow-x: hidden; }

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px; }

.right-col {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10px; }

.left-col {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10px; }

.single-product #content {
  margin-bottom: 65px; }

/*********************
HEADER STYLES
*********************/
.header {
  background-color: #ffffff; }

#top-header .logo {
  margin: 9px auto 20px; }
  #top-header .logo img {
    display: block;
    margin: 0 auto; }

#top-header .side {
  margin: 0 auto;
  text-align: right; }
  #top-header .side > span {
    display: inline-block; }
  #top-header .side .phonenumber {
    font-weight: 500;
    padding-top: 5px;
    float: left; }
  #top-header .side .links ul {
    margin: 0 0 20px; }
  #top-header .side .links li {
    display: inline-block;
    font-weight: 500;
    font-size: 15px;
    font-size: 0.9375rem; }
    #top-header .side .links li:last-child .fa {
      color: #54a60d; }
    #top-header .side .links li .fa {
      width: 20px;
      text-align: center; }
  #top-header .side .links a {
    background: #f5f5f5;
    display: inline-block;
    padding: 6px 9px 4px;
    color: inherit;
    text-transform: uppercase;
    border-radius: 16px; }

/*********************
SLIDER STYLES
*********************/
.slider {
  padding: 20px 0;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 32px;
  color: #000;
  overflow: hidden; }
  .slider .flexslider {
    position: relative; }
  .slider .description {
    margin-bottom: 20px; }
  .slider .slides {
    margin: 0 auto; }
    .slider .slides li {
      pointer-events: none;
      position: relative; }
      .slider .slides li.flex-active-slide {
        pointer-events: auto; }
  .slider .flex-control-nav {
    margin: 0;
    position: absolute;
    bottom: -25px;
    line-height: 1px;
    text-align: center;
    z-index: 5;
    width: 100%; }
    .slider .flex-control-nav li {
      display: inline-block; }
      .slider .flex-control-nav li a {
        display: inline-block;
        text-indent: -9999px;
        width: 8px;
        height: 8px;
        border-radius: 100%;
        margin: 3px;
        background: #000000; }
        .slider .flex-control-nav li a.flex-active {
          background: #54a60d; }

/*********************
NAVIGATION STYLES
*********************/
/*
Main Navigation
*/
#menu-header {
  background: #00006b; }
  #menu-header.active, #menu-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    z-index: 9999; }
  #menu-header.sticky {
    -webkit-animation-name: silde_from_top;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    -webkit-animation-delay: 0;
    -webkit-animation-play-state: running;
    -webkit-animation-fill-mode: forwards; }

@-webkit-keyframes silde_from_top {
  0% {
    top: -50px; }
  100% {
    top: 0; } }

@media (min-width: 601px) {
  .admin-bar #menu-header.active, .admin-bar #menu-header.sticky {
    padding-top: 46px; } }

@media (min-width: 783px) {
  .admin-bar #menu-header.active, .admin-bar #menu-header.sticky {
    padding-top: 32px; } }

#mobiletoggle {
  color: #ffffff;
  text-align: center;
  padding: 13px 20px; }
  #mobiletoggle .fa {
    margin-right: 10px; }

#menu-main-menu {
  display: none;
  border-bottom: 0;
  background: #f5f5f5;
  margin: 0 -20px;
  padding: 0 20px;
  border-bottom: 3px solid #ddd; }
  #menu-main-menu.active {
    display: block; }
  #menu-main-menu > li {
    text-transform: uppercase;
    font-weight: 500; }
  #menu-main-menu li {
    color: #00006b;
    border-bottom: 1px solid #ddd; }
    #menu-main-menu li:last-child {
      border-bottom: 0; }
    #menu-main-menu li a {
      display: inline-block;
      max-width: calc(100% - 60px);
      color: inherit;
      text-decoration: none;
      padding: 9px 10px; }
    #menu-main-menu li .open {
      font-size: 10px;
      font-size: 0.625rem;
      width: 50px;
      float: right;
      text-align: center;
      display: none;
      color: inherit;
      padding: 9px 10px;
      line-height: 24px; }
    #menu-main-menu li.menu-item-has-children > .open {
      display: inline-block; }
    #menu-main-menu li:after {
      content: '';
      display: block;
      clear: both; }
    #menu-main-menu li ul.sub-menu,
    #menu-main-menu li ul.children {
      display: none;
      text-transform: none;
      font-weight: normal;
      margin: 0;
      padding: 0 0 0 20px;
      border-top: 1px solid #e3e3e3; }
      #menu-main-menu li ul.sub-menu li,
      #menu-main-menu li ul.children li {
        border-bottom: 1px solid #e3e3e3; }
        #menu-main-menu li ul.sub-menu li:last-child,
        #menu-main-menu li ul.children li:last-child {
          border-bottom: 0; }
    #menu-main-menu li.active > ul.sub-menu,
    #menu-main-menu li.active > ul.children {
      display: block; }

/* end .nav */
/*********************
POSTS & CONTENT STYLES
*********************/
.archive-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  padding-bottom: 20px; }
  .archive-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0; }

.meta-post {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: #888;
  font-style: italic; }
  .meta-post > span {
    display: inline-block;
    margin-right: 20px; }

.homesearch {
  margin-bottom: 20px; }
  .homesearch form#searchform {
    margin: 0;
    font-size: 20px;
    font-size: 1.25rem;
    padding: 50px 40px 54px; }
    .homesearch form#searchform label {
      margin-bottom: 17px; }

.homeblock {
  background: #f5f5f5;
  padding: 40px; }
  .homeblock .date {
    width: 45px;
    background: #ffffff;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    padding: 7px 0 5px;
    line-height: 16px;
    float: left;
    margin-right: 22px; }
    .homeblock .date .month {
      font-size: 15px;
      font-size: 0.9375rem; }
    .homeblock .date .day {
      font-size: 20px;
      font-size: 1.25rem;
      font-weight: 600; }
  .homeblock .viewall {
    float: right; }
  .homeblock .courses li {
    padding: 25px 0 15px;
    border-bottom: 1px solid #ddd; }
    .homeblock .courses li:first-child {
      padding-top: 0; }
    .homeblock .courses li:last-child {
      border-bottom: 0;
      padding-bottom: 0; }
    .homeblock .courses li .title {
      font-size: 18px;
      font-size: 1.125rem;
      padding-left: 67px; }
      .homeblock .courses li .title .fa {
        margin-left: 10px;
        color: #54a60d; }
    .homeblock .courses li .location {
      padding-left: 67px; }
      .homeblock .courses li .location .fa {
        margin-right: 10px; }
  .homeblock .homelist li {
    border-radius: 70px;
    background: #ffffff;
    padding: 19px 33px 16px;
    margin-bottom: 10px; }
    .homeblock .homelist li:last-child {
      margin-bottom: 0; }
    .homeblock .homelist li .fa {
      text-align: center;
      width: 35px;
      font-size: 28px;
      font-size: 1.75rem;
      margin-right: 13px; }
    .homeblock .homelist li span:not(.fa) {
      vertical-align: top;
      display: inline-block;
      margin-top: 2px; }

#inner-content {
  padding-bottom: 65px; }

.left-col,
.right-col {
  padding-top: 40px; }

.archive-listing article {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd; }
  .archive-listing article:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0; }
  .archive-listing article h2 {
    margin-bottom: 0; }
  .archive-listing article p {
    margin-top: 10px;
    margin-bottom: 0; }

.search-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd; }
  .search-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0; }
  .search-item h2 {
    margin-bottom: 0; }
  .search-item p {
    margin-top: 10px;
    margin-bottom: 0; }
  .search-item .details {
    font-size: 1.125rem;
    font-weight: bold; }
    .search-item .details ul {
      font-style: italic; }
    .search-item .details li {
      display: inline-block;
      margin-right: 20px; }
      .search-item .details li .fa {
        margin-right: 5px;
        width: 15px;
        text-align: center; }
      .search-item .details li.date {
        color: #00006b; }
      .search-item .details li.location {
        color: #8f0000; }

.featured-image {
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 20px; }
  .featured-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 200px; }

.rule-title {
  position: relative;
  margin: 40px 0;
  border-bottom: 1px solid #ddd;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 17px;
  font-size: 1.0625rem; }
  .rule-title .title {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #FFF;
    padding: 0 10px; }

.partner-block {
  margin-bottom: 20px; }

.partner-item {
  display: block; }

.partner {
  margin-bottom: 20px; }
  .partner .item {
    position: relative;
    border: 1px solid #ddd;
    overflow: hidden; }
    .partner .item.active .overlay {
      top: 0; }
  .partner .imgwrap {
    height: 175px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative; }
    .partner .imgwrap img {
      max-width: 100%;
      max-height: 160px;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .partner .title {
    text-align: center;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #00006b;
    height: 95px;
    background: #f5f5f5;
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .partner .overlay {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 107, 0.92);
    text-transform: uppercase;
    font-weight: 500;
    -webkit-transition: top 0.24s ease-in-out;
    -o-transition: top 0.24s ease-in-out;
    transition: top 0.24s ease-in-out; }
    .partner .overlay .inner {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .partner .overlay a {
      display: block;
      color: #ffffff; }
      .partner .overlay a:not(:last-child) {
        margin-bottom: 20px; }
    .partner .overlay .fa {
      margin-right: 10px;
      font-size: 21px;
      font-size: 1.3125rem;
      top: 3px;
      position: relative; }

/*
	COURSES
*/
#courses .item {
  border: 1px solid #ddd;
  padding: 30px;
  margin-bottom: 20px; }
  #courses .item .details {
    background: #f5f5f5;
    padding: 30px;
    margin: 30px -30px -30px; }
    #courses .item .details ul li {
      margin-bottom: 10px; }
      #courses .item .details ul li:last-child {
        margin-bottom: 0; }
    #courses .item .details ul .fa {
      font-size: 18px;
      font-size: 1.125rem;
      width: 20px;
      margin-right: 5px;
      text-align: center; }
  #courses .item .pricing {
    text-align: center; }
    #courses .item .pricing .price {
      display: block;
      font-size: 26px;
      font-size: 1.625rem;
      color: #00006b;
      font-weight: 500; }
  #courses .item .icons {
    color: #54a60d;
    margin: -30px -30px 0;
    padding: 8px 12px 12px;
    background: #f5f5f5;
    position: relative;
    min-height: 38px; }
    #courses .item .icons > * {
      margin-left: 6px;
      font-size: 18px;
      font-size: 1.125rem;
      float: right; }
    #courses .item .icons .location {
      font-size: 15px;
      font-size: 0.9375rem;
      font-weight: bold;
      position: absolute;
      left: -1px;
      top: -1px;
      padding: 7px 18px 3px;
      margin-left: 0;
      color: #FFF;
      background: #54a60d; }
      #courses .item .icons .location.demand {
        background: #00006b; }
        #courses .item .icons .location.demand:after {
          border-top: 32px solid #00006b; }
      #courses .item .icons .location.virtual {
        background: #555; }
        #courses .item .icons .location.virtual:after {
          border-top: 32px solid #555; }
      #courses .item .icons .location .fa {
        font-size: 18px;
        font-size: 1.125rem;
        margin-right: 5px; }
      #courses .item .icons .location:after {
        content: '';
        width: 0;
        height: 0;
        border-top: 32px solid #54a60d;
        border-right: 32px solid transparent;
        position: absolute;
        top: 0;
        right: -32px; }
  #courses .item h3 {
    font-size: 22px;
    font-size: 1.375rem;
    margin: -30px -30px 0.6875rem;
    padding: 30px 20px;
    background: #f5f5f5; }

.statsblock {
  padding: 62px 44px;
  margin-top: 40px;
  margin-bottom: -25px; }
  .statsblock ul li {
    margin-bottom: 27px; }
    .statsblock ul li:after {
      content: '';
      display: block;
      clear: both; }
    .statsblock ul li:last-child {
      margin-bottom: 0; }
  .statsblock .value {
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    line-height: 78px;
    width: 78px;
    height: 78px;
    border: 5px solid #54a60d;
    border-radius: 100%;
    display: inline-block;
    margin-right: 25px;
    float: left; }
  .statsblock .text {
    position: relative;
    top: 28px; }

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

.pagination {
  text-align: center;
  clear: both; }
  .pagination ul {
    display: block; }
  .pagination li {
    padding: 0;
    margin: 0;
    display: inline-block;
    overflow: hidden; }
  .pagination a, .pagination span {
    font-size: 20px;
    font-size: 1.25rem;
    border-radius: 100%;
    padding: 1px 10px 0;
    margin: 5px;
    text-decoration: none;
    font-weight: 500;
    display: block;
    min-width: 31px; }
  .pagination .fa {
    font-size: 14px;
    font-size: 0.875rem; }
  .pagination a {
    color: #00006b;
    background: #f5f5f5; }
    .pagination a:hover, .pagination a:focus {
      background: #00006b;
      color: #ffffff; }
    .pagination a span {
      padding: 0;
      margin: 0;
      display: inline;
      background: none;
      color: inherit;
      min-width: 0; }
  .pagination span {
    color: #ffffff;
    background: #333; }

/* 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 */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #888888;
  /* 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 #888888;
  /* 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: #888888;
        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: #ffffff; }
  .comment.even {
    background: #888888; }

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

#reply-title {
  margin: 0; }

.logged-in-as {
  color: #888888;
  font-style: italic;
  margin: 0; }
  .logged-in-as a {
    color: #555555; }

.comment-form-comment {
  margin: 1.5em 0 0.75em; }

.form-allowed-tags {
  padding: 1.5em;
  background-color: #888888;
  font-size: 0.9em; }

/* comment submit button */
#submit {
  float: right;
  font-size: 1em; }

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

/*********************
SIDEBARS & ASIDES
*********************/
.siblings {
  margin-bottom: 15px; }
  .siblings > span a {
    background: #8f0000;
    border: 2px solid #8f0000;
    color: #ffffff; }
  .siblings > span.current_page_item a {
    background: none;
    color: #8f0000; }
  .siblings a {
    font-size: 15px;
    font-size: 0.9375rem;
    display: inline-block;
    padding: 8px 16px 6px;
    line-height: 1em;
    border-radius: 17px;
    background: #f5f5f5;
    border: 2px solid #f5f5f5;
    margin-bottom: 7px; }
  .siblings ul {
    margin: 0; }
    .siblings ul ul {
      margin-left: 15px; }
  .siblings .current_page_item > a {
    background: none; }

.widgettitle {
  margin-bottom: 5px; }

.widget {
  background: #f5f5f5;
  padding: 30px;
  margin-bottom: 30px; }
  .widget ul {
    margin: 0; }
    .widget ul li {
      margin-bottom: 1px;
      /* deep nesting */ }
      .widget ul li ul {
        margin-left: 20px; }

.no-widgets {
  background-color: #ffffff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #888888;
  border-radius: 2px;
  margin-bottom: 1.5em; }

form.filters {
  background: #f5f5f5;
  padding: 30px; }
  form.filters .block {
    border-top: 1px solid #ddd;
    padding: 20px 0; }
    form.filters .block:first-of-type {
      border-top: 0;
      padding: 0 0 20px; }
    form.filters .block label {
      display: block; }
    form.filters .block h6 {
      margin-bottom: 9px; }
    form.filters .block.search-block {
      padding-bottom: 0; }
      form.filters .block.search-block input {
        background: #ffffff;
        border: none;
        padding: 5px 12px;
        border-left: 3px solid #00006b; }

/*********************
FOOTER STYLES
*********************/
#backtotop {
  display: block;
  position: fixed;
  right: -50px;
  bottom: 35px;
  color: #ffffff;
  background: #00006b;
  padding: 3px 10px 0;
  border-radius: 6px;
  -webkit-transition: right 0.24s ease-in-out;
  -o-transition: right 0.24s ease-in-out;
  transition: right 0.24s ease-in-out; }
  #backtotop.show {
    right: 20px; }

#footercta {
  background: #00006b;
  padding: 18px 20px 28px;
  color: #ffffff;
  margin-bottom: 40px;
  font-size: 20px;
  font-size: 1.25rem; }
  #footercta > * {
    display: block;
    margin: 3px 20px; }
    #footercta > *.btn-white {
      display: inline-block; }

.footer {
  clear: both;
  background-color: #eee;
  color: #666; }

#footer-top {
  background: #333;
  color: #ffffff;
  padding: 11px 0 10px;
  margin-bottom: 42px;
  line-height: 27px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center; }
  #footer-top .wrap > span {
    display: inline-block; }
  #footer-top .phonenumber {
    position: relative;
    top: -8px;
    padding-top: 2px; }
  #footer-top .socialmedia {
    margin-left: 12px; }
  #footer-top .newsletter {
    margin: 6px 0 4px; }

.certifications {
  text-align: center;
  line-height: 22px; }
  .certifications .disclaimer {
    font-size: 13px;
    font-size: 0.8125rem;
    padding-bottom: 16px; }
    .certifications .disclaimer > *:last-child {
      margin-bottom: 0; }

.logos {
  text-align: center;
  margin-bottom: 39px;
  padding-bottom: 37px;
  border-bottom: 1px solid #ddd; }
  .logos .cert {
    display: inline-block;
    margin-right: 7px;
    height: 53px;
    margin-bottom: 7px; }
    .logos .cert:last-child {
      margin-right: 0; }
    .logos .cert span,
    .logos .cert a {
      display: block;
      height: 100%;
      width: 100%;
      position: relative; }
    .logos .cert img {
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }

.socialmedia a {
  display: block;
  width: 27px;
  height: 27px;
  line-height: 32px;
  margin-right: 12px;
  text-align: center;
  float: left;
  border-radius: 6px;
  background-color: #ffffff; }
  .socialmedia a .name {
    display: none; }
  .socialmedia a:last-child {
    margin-right: 0; }
  .socialmedia a:not(:hover) {
    color: #333 !important; }

/*
	if you checked out the link above:
	http://www.alistapart.com/articles/organizing-mobile/
	you'll want to style the footer nav
	a bit more in-depth. Remember to keep
	it simple because you'll have to
	override these styles for the desktop
	view.
	*/
/* end .footer-links */
/*********************
WOOCOMMERCE STYLES
*********************/
.variations-title {
  padding: 30px 30px 25px;
  margin-bottom: -50px;
  background: #f5f5f5; }

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #00006b;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500; }

.woocommerce div.product p.price {
  text-align: center;
  background: #f5f5f5;
  padding: 30px 30px 25px;
  margin-bottom: 20px; }

.woocommerce div.product form.cart {
  background: #f5f5f5;
  padding: 30px 30px 25px;
  margin-bottom: 20px; }
  .woocommerce div.product form.cart .variations {
    display: block; }
    .woocommerce div.product form.cart .variations * {
      display: block; }
    .woocommerce div.product form.cart .variations label {
      font-weight: normal;
      display: inline-block; }
    .woocommerce div.product form.cart .variations .value {
      line-height: 26px; }
      .woocommerce div.product form.cart .variations .value input {
        display: inline-block;
        margin-right: 8px; }
      .woocommerce div.product form.cart .variations .value div {
        cursor: pointer; }
        .woocommerce div.product form.cart .variations .value div label {
          cursor: pointer; }
      .woocommerce div.product form.cart .variations .value .reset_variations {
        font-weight: 500;
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid #ddd; }
    .woocommerce div.product form.cart .variations tr:not(:last-child) {
      padding-bottom: 20px; }
    .woocommerce div.product form.cart .variations tr:not(:first-child) {
      padding-top: 20px;
      border-top: 1px solid #ddd; }
    .woocommerce div.product form.cart .variations tr .label label {
      font-weight: 600;
      line-height: 24px; }
      .woocommerce div.product form.cart .variations tr .label label:before {
        font-family: FontAwesome;
        display: inline-block;
        vertical-align: middle;
        width: 20px;
        margin-right: 8px;
        margin-top: -3px; }
    .woocommerce div.product form.cart .variations tr:nth-child(2) .label label:before {
      content: "\f073"; }
    .woocommerce div.product form.cart .variations tr:nth-child(1) .label label:before {
      content: "\f041"; }
  .woocommerce div.product form.cart .single_variation_wrap {
    border-top: 20px solid #ffffff;
    padding: 30px 30px 0;
    margin: 0 -30px;
    text-align: center; }
  .woocommerce div.product form.cart .button {
    margin: 0 auto;
    float: none; }
    .woocommerce div.product form.cart .button:before {
      font-family: FontAwesome;
      display: inline-block;
      vertical-align: middle;
      width: 20px;
      margin-right: 8px;
      margin-top: -3px;
      content: '\f291'; }

.woocommerce div.product .stock {
  font-size: 16px;
  font-size: 1rem;
  color: #00006b;
  display: none; }

.woocommerce div.product .out-of-stock {
  color: #8f0000;
  display: none; }

.woocommerce .quantity .qty {
  padding: 4px 5px;
  border: 0;
  background: #ffffff;
  border-radius: 4px;
  color: #666; }
  .woocommerce .quantity .qty:active {
    color: #00006b; }

.woocommerce ul.products li.product {
  float: none;
  margin: 0 0 20px;
  width: 100%; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 22px;
    font-size: 1.375rem;
    padding: 30px 20px;
    background: #f5f5f5;
    color: #00006b; }
    .woocommerce ul.products li.product .woocommerce-loop-product__title:hover, .woocommerce ul.products li.product .woocommerce-loop-product__title:active, .woocommerce ul.products li.product .woocommerce-loop-product__title:focus {
      color: #00001f; }
  .woocommerce ul.products li.product .price {
    color: #00006b;
    font-size: 26px;
    font-size: 1.625rem;
    color: #00006b;
    font-weight: 500;
    display: block;
    padding: 0;
    margin: 15px 20px 15px;
    float: left; }
  .woocommerce ul.products li.product p {
    padding: 10px 20px;
    color: #333; }
  .woocommerce ul.products li.product .button {
    float: right;
    margin: 17px 20px 16px; }

.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text {
  width: auto;
  max-width: 150px;
  margin-right: 20px;
  padding: 3px 10px 2px; }

.woocommerce table.shop_table {
  border-radius: 0;
  border: 0;
  border-bottom: 3px solid #00006b; }
  .woocommerce table.shop_table .product-thumbnail {
    display: none; }
  .woocommerce table.shop_table td, .woocommerce table.shop_table th {
    border: 0;
    border-bottom: 1px solid #ddd;
    padding: 9px 12px; }
  .woocommerce table.shop_table tr.cart-subtotal th,
  .woocommerce table.shop_table tr.order-total th {
    text-align: right; }

.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th {
  border-top: 0;
  border-bottom: 0; }

.woocommerce-cart .cart-collaterals .cart_totals tr th {
  background: #00006b;
  color: #ffffff; }

.woocommerce #customer_details.col2-set .col-1, .woocommerce-page #customer_details.col2-set .col-1,
.woocommerce #customer_details.col2-set .col-2, .woocommerce-page #customer_details.col2-set .col-2 {
  clear: both;
  float: none !important;
  width: 100% !important;
  margin-right: 0 !important;
  text-align: left;
  padding-bottom: 20px; }

.select2-container--default .select2-selection--single {
  padding: 12px 25px;
  background: #f5f5f5;
  border-radius: 0;
  height: auto;
  font-size: 18px;
  font-size: 1.125rem; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 54px;
  width: 30px; }

.entry-content {
  /******************************************************************
Stylesheet: Elements Stylesheet
******************************************************************/
  /*
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.
*/ }
  .entry-content p {
    margin: 0 0 20px; }
  .entry-content hr {
    border: 0;
    border-bottom: 1px solid #ddd;
    margin: 20px 0; }
  .entry-content ul.content-list, .entry-content ol.content-list {
    margin: 0 0 20px 25px; }
    .entry-content ul.content-list li, .entry-content ol.content-list li {
      padding-left: 5px;
      margin-bottom: 9px; }
      .entry-content ul.content-list li:last-child, .entry-content ol.content-list li:last-child {
        margin-bottom: 0; }
  .entry-content ul.content-list {
    list-style: disc; }
  .entry-content ol.content-list {
    list-style: decimal; }
  .entry-content table {
    border: 0;
    margin: 0 0 20px 0;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border: 1px solid #ddd;
    border-bottom: 3px solid #00006b;
    border-top: 2px solid #00006b; }
  .entry-content tr {
    border: 0; }
    .entry-content tr:nth-child(even) {
      background: #f5f5f5; }
    .entry-content tr:last-child td {
      border-bottom: 0; }
  .entry-content td {
    border: 0;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 9px 12px; }
    .entry-content td:last-child {
      border-right: 0; }
  .entry-content th {
    font-weight: bold;
    border: none; }
  .entry-content thead th {
    background: #00006b;
    color: #ffffff; }
  .entry-content blockquote {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 27px;
    margin: 0 0 20px;
    border: 1px solid #ddd;
    border-left: 6px solid #00006b;
    font-style: italic;
    padding: 30px 50px; }
    .entry-content blockquote > *:last-child {
      margin-bottom: 0; }
  .entry-content dd {
    margin-left: 0;
    font-size: 0.9em;
    color: #787878;
    margin-bottom: 20px; }
  .entry-content img {
    margin: 0 0 20px 0;
    max-width: 100%;
    height: auto; }
  .entry-content .size-auto,
  .entry-content .size-full,
  .entry-content .size-large,
  .entry-content .size-medium,
  .entry-content .size-thumbnail {
    max-width: 100%;
    height: auto; }
  .entry-content pre {
    background: #000000;
    color: #888888;
    font-size: 0.9rem;
    padding: 20px;
    margin: 0 0 20px;
    border-radius: 3px; }

/*********************
LARGER MOBILE DEVICES
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection.

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
  /*
IMPORTANT NOTE ABOUT SASS 3.3 & UP
You can't use @extend within media queries
anymore, so just be aware that if you drop
them in here, they won't work.
*/
  /*********************
NAVIGATION STYLES
*********************/
  /* .menu is clearfixed inside mixins.scss */
  .menu {
    /* end .menu ul */ }
    .menu ul {
      /* end .menu ul li */
      /* highlight current page */
      /* end current highlighters */ }
      .menu ul li {
        /*
				plan your menus and drop-downs wisely.
				*/ }
        .menu ul li a {
          /*
					you can use hover styles here even though this size
					has the possibility of being a mobile device.
					*/ }
  /* end .menu */
  /*********************
POSTS & CONTENT STYLES
*********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */ }
    .entry-content .alignleft, .entry-content img.alignleft {
      margin-right: 1.5em;
      display: inline;
      float: left; }
    .entry-content .alignright, .entry-content img.alignright {
      margin-left: 1.5em;
      display: inline;
      float: right; }
    .entry-content .aligncenter, .entry-content img.aligncenter {
      margin-right: auto;
      margin-left: auto;
      display: block;
      clear: both; }
  /* end .entry-content */
  /*********************
FOOTER STYLES
*********************/
  /*
check your menus here. do they look good?
do they need tweaking?
*/
  /* end .footer-links */ }

/*********************
TABLET & SMALLER LAPTOPS
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
  /*********************
GENERAL STYLES
*********************/
  /*********************
LAYOUT & GRID STYLES
*********************/
  .left-col {
    float: left;
    width: 66.07143%;
    padding-left: 0;
    padding-right: 0; }
    .left-col.full {
      width: 100%; }
  .right-col {
    float: right;
    width: 29.80769%;
    padding-left: 0;
    padding-right: 0; }
    .right-col.full {
      width: 100%; }
  /*********************
HEADER STYLES
*********************/
  #top-header .logo {
    margin: 17px 20px 16px -5px;
    float: left; }
  #top-header .side {
    float: right;
    margin: 0 auto; }
    #top-header .side .phonenumber {
      float: none; }
    #top-header .side .links ul {
      margin: 0; }
    #top-header .side .links li .fa {
      margin-right: 11px; }
    #top-header .side .links a {
      padding: 6px 14px 4px; }
  #menu-header.active, #menu-header.sticky {
    overflow-y: visible; }
  /*********************
SLIDER STYLES
*********************/
  .slider {
    padding: 0;
    color: #ffffff; }
    .slider .slide-content-wrap {
      position: absolute;
      top: 50%;
      left: 50%;
      max-width: 1180px;
      width: 100%;
      padding: 0 20px;
      margin: 0 auto;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: 5; }
      .slider .slide-content-wrap .slide-content {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        text-align: center; }
    .slider h2 {
      font-size: 30px;
      font-size: 1.875rem;
      font-weight: 700;
      color: inherit;
      text-shadow: 2px 2px 2px #000; }
    .slider .description {
      font-size: 25px;
      font-size: 1.5625rem;
      text-shadow: 2px 2px 2px #000; }
    .slider .cta {
      margin-top: 25px; }
    .slider .cta > a {
      background-color: #ffffff;
      color: #00006b; }
      .slider .cta > a:hover, .slider .cta > a:focus, .slider .cta > a:active {
        color: #00006b;
        background-color: #d9d9d9; }
    .slider .slide-image {
      position: relative;
      overflow: hidden;
      height: 500px;
      width: 100%; }
      .slider .slide-image:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000000;
        opacity: 0.5;
        z-index: 4; }
      .slider .slide-image img {
        display: block;
        margin: 0;
        left: 50%;
        position: relative;
        margin-left: -960px;
        width: auto;
        height: 100%; }
    .slider .flex-control-nav {
      bottom: 40px; }
      .slider .flex-control-nav li a {
        background: #ffffff; }
  .flexslider {
    min-height: 500px; }
  /*********************
NAVIGATION STYLES
*********************/
  #menu-top-menu {
    display: block;
    text-align: right; }
    #menu-top-menu li {
      padding-top: 5px;
      margin-left: 21px;
      display: inline-block; }
      #menu-top-menu li a {
        display: inline-block;
        color: #555555; }
        #menu-top-menu li a:hover, #menu-top-menu li a:focus {
          color: #00001f; }
      #menu-top-menu li:first-child {
        margin-left: 0; }
  #menu-main-menu {
    display: block;
    padding: 0;
    background: none;
    border-bottom: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    #menu-main-menu ul {
      background: #f5f5f5;
      margin-top: 0;
      border-bottom: 3px solid #ddd; }
    #menu-main-menu > li.edge ul {
      right: 0; }
    #menu-main-menu li {
      float: left;
      position: relative;
      color: #ffffff;
      border-bottom: 0;
      /*
		plan your menus and drop-downs wisely.
		*/
      /* showing sub-menus */ }
      #menu-main-menu li a {
        border-bottom: 0;
        max-width: none;
        padding: 14px 18px 12px;
        /*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/ }
      #menu-main-menu li:hover, #menu-main-menu li:focus {
        background: #f5f5f5;
        color: #00001f; }
      #menu-main-menu li .open {
        width: auto;
        text-align: left;
        background: none; }
      #menu-main-menu li.menu-item-has-children {
        position: relative; }
        #menu-main-menu li.menu-item-has-children > a {
          padding-right: 40px !important; }
        #menu-main-menu li.menu-item-has-children > .open {
          position: absolute;
          top: 50%;
          right: 10px;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          line-height: normal;
          padding: 0; }
      #menu-main-menu li ul.sub-menu,
      #menu-main-menu li ul.children {
        display: block;
        position: absolute;
        visibility: hidden;
        z-index: 8999;
        padding: 0;
        border-top: 0;
        /* highlight sub-menu current page */ }
        #menu-main-menu li ul.sub-menu li,
        #menu-main-menu li ul.children li {
          color: #00006b;
          border-bottom: 0;
          float: none;
          /*
				if you need to go deeper, go nuts
				just remember deeper menus suck
				for usability. k, bai.
				*/ }
          #menu-main-menu li ul.sub-menu li a,
          #menu-main-menu li ul.children li a {
            padding: 8px 25px 6px;
            border-bottom: 1px solid #ddd;
            display: block;
            min-width: 180px;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            -ms-box-sizing: border-box;
            box-sizing: border-box;
            white-space: nowrap; }
          #menu-main-menu li ul.sub-menu li:hover, #menu-main-menu li ul.sub-menu li:focus,
          #menu-main-menu li ul.children li:hover,
          #menu-main-menu li ul.children li:focus {
            color: #ffffff;
            background: #333; }
            #menu-main-menu li ul.sub-menu li:hover > a, #menu-main-menu li ul.sub-menu li:focus > a,
            #menu-main-menu li ul.children li:hover > a,
            #menu-main-menu li ul.children li:focus > a {
              border-bottom: 1px solid #333; }
          #menu-main-menu li ul.sub-menu li:last-child a,
          #menu-main-menu li ul.children li:last-child a {
            border-bottom: 0; }
          #menu-main-menu li ul.sub-menu li ul,
          #menu-main-menu li ul.children li ul {
            top: 0;
            left: 100%; }
          #menu-main-menu li ul.sub-menu li.edge ul,
          #menu-main-menu li ul.children li.edge ul {
            left: -100%; }
      #menu-main-menu li:hover > ul {
        top: auto;
        visibility: visible; }
  /* end .nav */
  /*********************
POSTS & CONTENT STYLES
*********************/
  .partner:nth-child(2n+1) {
    clear: both; }
  #courses > .col-m-12:nth-child(2n+1) {
    clear: both; }
  #courses .item .details ul {
    float: left; }
  #courses .item .details .pricing {
    float: right; }
  /*********************
SIDEBARS & ASIDES
*********************/
  .widget ul li {
    /* deep nesting */ }
  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
FOOTER STYLES
*********************/
  #footercta {
    padding: 47px 20px;
    text-align: center; }
    #footercta > * {
      display: inline-block; }
  #footer-top .wrap > span {
    float: left;
    margin-right: 17px; }
    #footer-top .wrap > span:last-child {
      margin-right: 0;
      float: right; }
  #footer-top .phonenumber {
    position: static;
    top: auto; }
  #footer-top .socialmedia {
    margin-left: 0; }
  #footer-top .newsletter {
    margin: 0; }
  /*********************
FOOTER STYLES
*********************/
  .woocommerce ul.products li.product {
    float: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #ddd;
    margin: 0 20px 20px;
    width: calc(50% - 40px); }
    .woocommerce ul.products li.product:nth-child(2n+1) {
      clear: both; } }

/*********************
DESKTOP
*********************/
@media only screen and (min-width: 992px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
  .wrap {
    width: auto;
    max-width: 1220px;
    margin: 0 auto; }
  .left-col {
    width: 71.18644%;
    padding-right: 10px;
    padding-left: 10px; }
  .right-col {
    width: 23.72881%;
    padding-right: 10px;
    padding-left: 10px; }
  /*********************
HEADER STYLES
*********************/
  #menu-header .socialmedia {
    float: right;
    padding: 14px 0 14px; }
    #menu-header .socialmedia a {
      width: 22px;
      height: 22px;
      line-height: 27px; }
  /*********************
NAVIGATION STYLES
*********************/
  /*********************
POSTS & CONTENT STYLES
*********************/
  .partner:nth-child(2n+1) {
    clear: none; }
  .partner:nth-child(3n+1) {
    clear: both; }
  .partner .item:hover .overlay {
    top: 0; } }

/*********************
LARGE VIEWING SIZE
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Super Large Monitor Stylesheet

You can add some advanced styles here if you like. This kicks in
on larger screens.

******************************************************************/
  /*********************
NAVIGATION STYLES
*********************/
  #menu-main-menu li a {
    padding: 14px 34px 12px; }
  #menu-main-menu li.menu-item-has-children > a {
    padding-right: 46px; }
  #menu-main-menu li.menu-item-has-children > .open {
    right: 24px; } }

@media only screen and (min-width: 1240px) and (min-width: 1921px) {
  .slider .slide-image img {
    margin: 0;
    left: 0;
    position: static;
    margin-left: 0; } }

/*********************
RETINA (2x RESOLUTION DEVICES)
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

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

EXAMPLE 
Let's say you have an image and you need to make sure it looks ok
on retina screens. Let's say we have an icon which dimension are
24px x 24px. In your regular stylesheets, it would look something
like this:

.icon {
	width: 24px;
	height: 24px;
	background: url(img/test.png) no-repeat;
}

For retina screens, we have to make some adjustments, so that image
doesn't look blurry. So, taking into account the image above and the
dimensions, this is what we would put in our retina stylesheet:

.icon {
	background: url(img/test@2x.png) no-repeat;
	background-size: 24px 24px;
}

So, you would create the same icon, but at double the resolution, meaning 
it would be 48px x 48px. You'd name it the same, but with a @2x at the end
(this is pretty standard practice). Set the background image so it matches
the original dimensions and you are good to go. 

*/ }

/*********************
PRINT STYLESHEET
*********************/
@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; }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  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; }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }
