@charset "UTF-8";
/*!
 ************************************************************************************************
 * Official AAAA Stylesheet                                                                     *
 * Red Clay Interactive | www.redclayinteractive.com                                            *
 *   ____          _    ____ _               ___       _                      _   _             *
 *  |  _ \ ___  __| |  / ___| | __ _ _   _  |_ _|_ __ | |_ ___ _ __ __ _  ___| |_(_)_   _____   *
 *  | |_) / _ \/ _` | | |   | |/ _` | | | |  | || '_ \| __/ _ \ '__/ _` |/ __| __| \ \ / / _ \  *
 *  |  _ <  __/ (_| | | |___| | (_| | |_| |  | || | | | ||  __/ | | (_| | (__| |_| |\ V /  __/  *
 *  |_| \_\___|\__,_|  \____|_|\__,_|\__, | |___|_| |_|\__\___|_|  \__,_|\___|\__|_| \_/ \___|  *
 *                                   |___/                                                      *
 ************************************************************************************************/
/**
 * Font REM
 * -- convert and output px and rem
 * -- font-rem( $font-size-px )
 */
/**
 * Transition
 */
/**
 * Vertical Center
 */
/**
 * Responsive Media Query Helpers
 * -- responsiveQuery(xs)
 * -- responsiveQuery("(min-width: 100em)")
 */
/**
 * Clearfix as a mixin
 */
/**
 * Gradients
 */
/**
 * Grayscale Filter
 * -- grayscale( on )
 * -- grayscale( off )
 */
/**
 * Retina Image Helper
 *
 * A helper mixin for applying high-resolution background images (http://www.retinajs.com)
 * by Nathan Crank (nathancrank.com)
 */
/* normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device 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: 155px 0 0 0;
}

@media only screen and (max-width: 1024px) {
    body {  margin: 100px 0 0 0;  }
}
@media screen and (max-width: 768px) {
    body { margin: 70px 0 0 0;  }
}


/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * 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/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

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

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

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

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

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

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

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

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

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * 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 Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
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;
}

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

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 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/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/**
 * 8.0 Alignments
 */
.alignleft,
.alignright {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 37.5em) {
  .alignleft {
    display: inline;
    float: left;
  }
}

@media only screen and (min-width: 37.5em) {
  .alignright {
    display: inline;
    float: right;
  }
}

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft,
blockquote.alignright,
.wp-caption.alignright,
img.alignright {
  margin-top: 0.4em;
  margin-bottom: 1.6em;
}

blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter {
  clear: both;
  margin-top: 0.4em;
  margin-bottom: 1.6em;
}

.wp-caption.alignleft,
.wp-caption.alignright,
.wp-caption.aligncenter {
  margin-bottom: 1.2em;
}

/**
 * 14.0 Media
 */
img.wp-smiley,
img.emoji {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1em !important;
  width: 1em !important;
  margin: 0 .07em !important;
  vertical-align: -0.1em !important;
  background: none !important;
  padding: 0 !important;
}

audio,
canvas {
  display: inline-block;
}

embed,
iframe,
object,
video {
  margin-bottom: 1.6em;
  max-width: 100%;
  vertical-align: middle;
}

p > embed,
p > iframe,
p > object,
p > video {
  margin-bottom: 0;
}

.wp-audio-shortcode,
.wp-video,
.wp-playlist.wp-audio-playlist {
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1.6em;
}

.wp-playlist.wp-playlist {
  padding-bottom: 0;
}

.wp-playlist .wp-playlist-tracks {
  margin-top: 0;
}

.wp-playlist-item .wp-playlist-caption {
  border-bottom: 0;
  padding: 10px 0;
}

.wp-playlist-item .wp-playlist-item-length {
  top: 10px;
}

/**
 * 14.1 Captions
 */
.wp-caption {
  margin-bottom: 1.6em;
  max-width: 100%;
}

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

.wp-caption-text {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 0.5em 0;
}

/**
 * 14.2 Galleries
 */
.gallery {
  font-size: 0;
  margin: 0 -2px 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  max-height: 283px;
  max-width: calc(50% - 4px);
  text-align: center;
  vertical-align: top;
  margin: 2px;
}

.gallery-item img {
  transition: all 0.3s ease;
}

.gallery-item a {
  position: relative;
  display: inline-block;
  /* &:before {
			content: '';
			position: absolute;
			z-index: 1;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: $green;
			opacity: 0.7;
			@include css-transition();
		} */
}

.gallery-item:hover a:before {
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transition: all 0.3s ease;
}

@media only screen and (min-width: 48em) {
  .gallery-columns-1 .gallery-item {
    max-width: calc(100% - 4px);
  }
  .gallery-columns-2 .gallery-item {
    max-width: calc(50% - 4px);
  }
  .gallery-columns-4 .gallery-item {
    max-width: calc(25% - 4px);
  }
  .gallery-columns-5 .gallery-item {
    max-width: calc(20% - 4px);
  }
  .gallery-columns-6 .gallery-item {
    max-width: calc(16.66% - 4px);
  }
  .gallery-columns-7 .gallery-item {
    max-width: calc(14.28% - 4px);
  }
  .gallery-columns-8 .gallery-item {
    max-width: calc(12.5% - 4px);
  }
  .gallery-columns-9 .gallery-item {
    max-width: calc(11.11% - 4px);
  }
}

@media only screen and (min-width: 37.5em) {
  blockquote.alignleft,
  .wp-caption.alignleft,
  img.alignleft {
    margin: 0.4em 1.6em 1.6em 0;
  }
  blockquote.alignright,
  .wp-caption.alignright,
  img.alignright {
    margin: 0.4em 0 1.6em 1.6em;
  }
  blockquote.aligncenter,
  .wp-caption.aligncenter,
  img.aligncenter {
    margin-top: 0.4em;
    margin-bottom: 1.6em;
  }
  .wp-caption.alignleft,
  .wp-caption.alignright,
  .wp-caption.aligncenter {
    margin-bottom: 1.2em;
  }
}

/*! formstone v0.8.37 [scrollbar.css] 2016-01-28 | MIT License | formstone.it */
/**
	 * @class
	 * @name .fs-scrollbar-element
	 * @type element
	 * @description Target elmement
	 */
/**
	 * @class
	 * @name .fs-scrollbar
	 * @type element
	 * @description Base widget class
	 */
/**
	 * @class
	 * @name .fs-scrollbar.fs-scrollbar-horizontal
	 * @type modifier
	 * @description Indicates horizontal scrolling
	 */
/**
	 * @class
	 * @name .fs-scrollbar.fs-scrollbar-setup
	 * @type modifier
	 * @description Indicates setup state
	 */
/**
	 * @class
	 * @name .fs-scrollbar.fs-scrollbar-active
	 * @type modifier
	 * @description Indicates active state
	 */
.fs-scrollbar {
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
  /**
		 * @class
		 * @name .fs-scrollbar-content
		 * @type element
		 * @description Scrolling content
		 */
  /**
		 * @class
		 * @name .fs-scrollbar-bar
		 * @type element
		 * @description Scrollbar container
		 */
  /**
		 * @class
		 * @name .fs-scrollbar-track
		 * @type element
		 * @description Scrollbar track container
		 */
  /**
		 * @class
		 * @name .fs-scrollbar-handle
		 * @type element
		 * @description Scrollbar handle
		 */
}

.fs-scrollbar,
.fs-scrollbar * {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.fs-scrollbar,
.fs-scrollbar-content,
.fs-scrollbar-bar,
.fs-scrollbar-track,
.fs-scrollbar-handle {
  box-sizing: border-box;
}

.fs-scrollbar-content {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.fs-scrollbar-content::-webkit-scrollbar,
.fs-scrollbar-content::-webkit-scrollbar-button,
.fs-scrollbar-content::-webkit-scrollbar-track,
.fs-scrollbar-content::-webkit-scrollbar-track-piece,
.fs-scrollbar-content::-webkit-scrollbar-thumb,
.fs-scrollbar-content::-webkit-scrollbar-corner,
.fs-scrollbar-content::-webkit-resizer {
  background: transparent;
  opacity: 0;
}

.fs-scrollbar-bar {
  width: 16px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-width: 0 0 0 1px;
  display: none;
}

.fs-scrollbar-track {
  width: 100%;
  height: 100%;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.fs-scrollbar-handle {
  width: 10px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 3px;
  z-index: 2;
  background: #bbbbbb;
  border: 1px solid #ffffff;
  border-radius: 5px;
  cursor: pointer;
}

.fs-scrollbar-horizontal .fs-scrollbar-content {
  overflow: auto;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 16px 0;
}

.fs-scrollbar-horizontal .fs-scrollbar-bar {
  width: 100%;
  height: 16px;
  top: auto;
  bottom: 0;
  border-width: 1px 0 0 0;
}

.fs-scrollbar-horizontal .fs-scrollbar-handle {
  width: 20px;
  height: 10px;
  top: auto;
  right: auto;
  bottom: 3px;
}

.fs-scrollbar-setup .fs-scrollbar-content,
.fs-scrollbar-active .fs-scrollbar-content {
  padding: 20px;
}

.fs-scrollbar-setup .fs-scrollbar-bar,
.fs-scrollbar-active .fs-scrollbar-bar {
  display: block;
}

/*! formstone v0.8.36 [carousel.css] 2016-01-15 | MIT License | formstone.it */
/**
	 * @class
	 * @name .fs-carousel-element
	 * @type element
	 * @description Target elmement
	 */
/**
	 * @class
	 * @name .fs-carousel
	 * @type element
	 * @description Base widget class
	 */
/**
	 * @class
	 * @name .fs-carousel.fs-enabled
	 * @type modifier
	 * @description Indicates enabled state
	 */
/**
	 * @class
	 * @name .fs-carousel.fs-rtl
	 * @type modifier
	 * @description Indicates right to left display
	 */
/**
	 * @class
	 * @name .fs-carousel.fs-carousel-auto_height
	 * @type modifier
	 * @description Indicates auto height sizing
	 */
/**
	 * @class
	 * @name .fs-carousel.fs-carousel-contained
	 * @type modifier
	 * @description Indicates overflow: hidden
	 */
/**
	 * @class
	 * @name .fs-carousel.fs-carousel-single
	 * @type modifier
	 * @description Indicates single item display
	 */
.fs-carousel {
  /**
		 * @class
		 * @name .fs-carousel-viewport
		 * @type element
		 * @description Carousel container
		 */
  /**
		 * @class
		 * @name .fs-carousel-wrapper
		 * @type element
		 * @description Carousel container
		 */
  /**
		 * @class
		 * @name .fs-carousel-container
		 * @type element
		 * @description Canister container
		 */
  /**
		 * @class
		 * @name .fs-carousel-canister
		 * @type element
		 * @description Item container
		 */
  /**
		 * @class
		 * @name .fs-carousel-canister
		 * @type element
		 * @description Item container
		 */
  /**
		 * @class
		 * @name .fs-carousel-item
		 * @type element
		 * @description Individual item
		 */
  /**
		 * @class
		 * @name .fs-carousel-controls
		 * @type element
		 * @description Controls container
		 */
  /**
		 * @class
		 * @name .fs-carousel-controls.fs-carousel-visible
		 * @type modifier
		 * @description Indicates visible state
		 */
  /**
		 * @class
		 * @name .fs-carousel-control
		 * @type element
		 * @description Control element
		 */
  /**
		 * @class
		 * @name .fs-carousel-control.fs-carousel-control_previous
		 * @type modifier
		 * @description Indicates previous control
		 */
  /**
		 * @class
		 * @name .fs-carousel-control.fs-carousel-control_next
		 * @type modifier
		 * @description Indicates next control
		 */
  /**
		 * @class
		 * @name .fs-carousel-control.fs-carousel-control_disabled
		 * @type modifier
		 * @description Indicates disbaled state
		 */
  /**
		 * @class
		 * @name .fs-carousel-pagination
		 * @type element
		 * @description Item element
		 */
  /**
		 * @class
		 * @name .fs-carousel-pagination.fs-carousel-visible
		 * @type modifier
		 * @description Indicates visible state
		 */
  /**
		 * @class
		 * @name .fs-carousel-page
		 * @type element
		 * @description Pagiantion item element
		 */
  /**
		 * @class
		 * @name .fs-carousel-page.fs-carousel-active
		 * @type modifier
		 * @description Indicates active state
		 */
}

.fs-carousel.fs-carousel-enabled {
  width: 100%;
  position: relative;
}

.fs-carousel.fs-carousel-enabled:after {
  clear: both;
  content: '';
  display: table;
}

.fs-carousel,
.fs-carousel:after,
.fs-carousel:before,
.fs-carousel *,
.fs-carousel *:after,
.fs-carousel *:before {
  box-sizing: border-box;
  -webkit-transition: none;
  transition: none;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.fs-carousel-enabled.fs-carousel-contained,
.fs-carousel-enabled.fs-carousel-contained .fs-carousel-viewport,
.fs-carousel-enabled.fs-carousel-contained .fs-carousel-wrapper,
.fs-carousel-enabled.fs-carousel-contained .fs-carousel-container {
  overflow: hidden;
}

.fs-carousel-enabled .fs-carousel-viewport {
  position: relative;
}

.fs-carousel-enabled .fs-carousel-viewport:after {
  clear: both;
  content: '';
  display: table;
}

.fs-carousel-enabled .fs-carousel-wrapper {
  position: relative;
}

.fs-carousel-enabled .fs-carousel-wrapper:after {
  clear: both;
  content: '';
  display: table;
}

.fs-carousel-enabled .fs-carousel-container {
  position: relative;
}

.fs-carousel-enabled .fs-carousel-container:after {
  clear: both;
  content: '';
  display: table;
}

.fs-carousel-enabled .fs-carousel-canister {
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  margin: 0;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.fs-carousel-enabled.fs-carousel-auto_height .fs-carousel-canister {
  -webkit-transition: height 0.5s ease, -webkit-transform 0.5s ease;
  transition: height 0.5s ease, transform 0.5s ease;
}

.fs-carousel-enabled .fs-carousel-item {
  min-height: 1px;
  display: block;
  float: left;
}

.fs-carousel-enabled .fs-carousel-item img {
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fs-carousel-single .fs-carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.fs-carousel-single .fs-carousel-item.fs-carousel-visible {
  position: relative;
  z-index: 2;
}

.fs-carousel-controls {
  display: none;
}

.fs-carousel-enabled .fs-carousel-controls {
  width: 100%;
  margin: 0;
  padding: 0;
}

.fs-carousel-enabled .fs-carousel-controls.fs-carousel-visible,
.fs-carousel-controls_custom.fs-carousel-visible {
  display: block;
}

.fs-carousel-enabled .fs-carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  border: 0;
  cursor: pointer;
  display: block;
  padding: 0;
  visibility: hidden;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  margin: auto;
  opacity: 0;
  overflow: hidden;
  text-indent: 200%;
  -webkit-transition: opacity 0.15s ease, visibility 0.15s ease;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  white-space: nowrap;
}

.fs-carousel-enabled .fs-carousel-control:before {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  margin: auto;
}

.no-opacity .fs-carousel-enabled .fs-carousel-control {
  text-indent: -999px;
}

.fs-carousel-enabled .fs-carousel-control.fs-carousel-visible {
  visibility: visible;
  opacity: 1;
}

.fs-carousel-enabled .fs-carousel-control_previous,
.fs-carousel-enabled.fs-carousel-rtl .fs-carousel-control_next {
  right: auto;
  left: 20px;
}

.fs-carousel-enabled .fs-carousel-control_previous:before,
.fs-carousel-enabled.fs-carousel-rtl .fs-carousel-control_next:before {
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 10.5px solid #333333;
  border-left: none;
  margin-left: 13.7px;
  margin-right: auto;
}

.fs-carousel-enabled .fs-carousel-control_next,
.fs-carousel-enabled.fs-carousel-rtl .fs-carousel-control_previous {
  right: 20px;
  left: auto;
}

.fs-carousel-enabled .fs-carousel-control_next:before,
.fs-carousel-enabled.fs-carousel-rtl .fs-carousel-control_previous:before {
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10.5px solid #333333;
  border-right: none;
  margin-right: 13.7px;
  margin-left: auto;
}

.fs-carousel-enabled .fs-carousel-control_disabled {
  opacity: 0;
}

.fs-carousel-pagination {
  display: none;
}

.fs-carousel-enabled .fs-carousel-pagination {
  width: 100%;
  margin: 10px 0 0;
  padding: 0;
  text-align: center;
}

.fs-carousel-enabled .fs-carousel-pagination.fs-carousel-visible {
  display: block;
}

.fs-carousel-enabled .fs-carousel-page {
  border: 0;
  cursor: pointer;
  display: inline-block;
  padding: 0;
  width: 10px;
  height: 10px;
  background: #333333;
  border-radius: 100%;
  margin: 0 3px;
  opacity: 0.5;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
}

.no-opacity .fs-carousel-enabled .fs-carousel-page {
  text-indent: -999px;
}

.fs-carousel-enabled .fs-carousel-page.fs-carousel-active {
  opacity: 1;
}

.fs-carousel-enabled.fs-carousel-rtl {
  direction: rtl;
}

.fs-carousel-enabled.fs-carousel-rtl .fs-carousel-item {
  float: right;
}

/*! formstone v0.8.38 [lightbox.css] 2016-02-04 | MIT License | formstone.it */
/**
	 * @class
	 * @name .fs-lightbox-element
	 * @type element
	 * @description Target elmement
	 */
/**
	 * @class
	 * @name .fs-lightbox
	 * @type element
	 * @description Base widget class
	 */
/**
	 * @class
	 * @name .fs-lightbox.fs-lightbox-open
	 * @type modifier
	 * @description Indicates open state
	 */
/**
	 * @class
	 * @name .fs-lightbox.fs-lightbox-loading
	 * @type modifier
	 * @description Indicates loading state
	 */
/**
	 * @class
	 * @name .fs-lightbox.fs-lightbox-animating
	 * @type modifier
	 * @description Indicates animating state
	 */
/**
	 * @class
	 * @name .fs-lightbox.fs-lightbox-mobile
	 * @type modifier
	 * @description Indicates mobile display
	 */
/**
	 * @class
	 * @name .fs-lightbox.fs-lightbox-fixed
	 * @type modifier
	 * @description Indicates fixed positioning
	 */
/**
	 * @class
	 * @name .fs-lightbox.fs-lightbox-inline
	 * @type modifier
	 * @description Indicates inline content
	 */
/**
	 * @class
	 * @name .fs-lightbox.fs-lightbox-iframed
	 * @type modifier
	 * @description Indicates iFrame content
	 */
/**
	 * @class
	 * @name .fs-lightbox.fs-lightbox-has_caption
	 * @type modifier
	 * @description Indicates caption is present
	 */
/**
	 * @class
	 * @name .fs-lightbox.fs-lightbox-has_controls
	 * @type modifier
	 * @description Indicates controls are present
	 */
.fs-lightbox {
  width: 200px;
  height: 200px;
  position: absolute;
  right: 0;
  left: 0;
  z-index: 101;
  background: #ffffff;
  border-radius: 3px;
  box-shadow: 0 0 25px #000000;
  opacity: 0;
  margin: 0 auto;
  padding: 10px;
  -webkit-transform: translateZ(0);
  /**
		 * @class
		 * @name .fs-lightbox-overlay
		 * @type element
		 * @description Overlay element
		 */
  /**
		 * @class
		 * @name .fs-lightbox-close
		 * @type element
		 * @description Close element
		 */
  /**
		 * @class
		 * @name .fs-lightbox-loading_icon
		 * @type element
		 * @description Loading icon element
		 */
  /**
		 * @class
		 * @name .fs-lightbox-container
		 * @type element
		 * @description Container element
		 */
  /**
		 * @class
		 * @name .fs-lightbox-content
		 * @type element
		 * @description Content element
		 */
  /**
		 * @class
		 * @name .fs-lightbox-image
		 * @type element
		 * @description Image element
		 */
  /**
		 * @class
		 * @name .fs-lightbox-video
		 * @type element
		 * @description Video element
		 */
  /**
		 * @class
		 * @name .fs-lightbox-iframe
		 * @type element
		 * @description iFrame element
		 */
  /**
		 * @class
		 * @name .fs-lightbox-tools
		 * @type element
		 * @description Tools element
		 */
  /**
		 * @class
		 * @name .fs-lightbox-meta
		 * @type element
		 * @description Meta info element
		 */
  /**
		 * @class
		 * @name .fs-lightbox-controls
		 * @type element
		 * @description Controls container element
		 */
  /**
		 * @class
		 * @name .fs-lightbox-control
		 * @type element
		 * @description Control element
		 */
  /**
		 * @class
		 * @name .fs-lightbox-control.fs-lightbox-control_previous
		 * @type modifier
		 * @description Indicates previous control
		 */
  /**
		 * @class
		 * @name .fs-lightbox-control.fs-lightbox-control_next
		 * @type modifier
		 * @description Indicates next control
		 */
  /**
		 * @class
		 * @name .fs-lightbox-control.fs-lightbox-control_disabled
		 * @type modifier
		 * @description Indicates disbaled state
		 */
  /**
		 * @class
		 * @name .fs-lightbox-position
		 * @type element
		 * @description Position element
		 */
  /**
		 * @class
		 * @name .fs-lightbox-position_current
		 * @type element
		 * @description Current position element
		 */
  /**
		 * @class
		 * @name .fs-lightbox-position_total
		 * @type element
		 * @description Total position element
		 */
  /**
		 * @class
		 * @name .fs-lightbox-caption
		 * @type element
		 * @description Caption element
		 */
  /**
		 * @class
		 * @name .fs-lightbox-error
		 * @type element
		 * @description Error message element
		 */
  /**
		 * @class
		 * @name .fs-lightbox-lock
		 * @type modifier
		 * @description Indicates locked state; Applied to body element
		 */
}

.fs-lightbox,
.fs-lightbox *:not(input):not(textarea) {
  box-sizing: border-box;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.fs-lightbox-fixed {
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto;
}

.fs-lightbox-inline {
  padding: 30px;
}

.fs-lightbox-animating {
  -webkit-transition: height 0.25s ease, width 0.25s ease, opacity 0.25s linear, top 0.25s ease;
  transition: height 0.25s ease, width 0.25s ease, opacity 0.25s linear, top 0.25s ease;
}

.fs-lightbox-animating .fs-lightbox-container {
  -webkit-transition: opacity 0.25s linear 0.25s, visibility 0.25s linear 0.25s;
  transition: opacity 0.25s linear 0.25s, visibility 0.25s linear 0.25s;
}

.fs-lightbox-mobile .fs-lightbox-image_container {
  -webkit-transform: translate3D(0, 0, 0);
  -ms-transform: translate3D(0, 0, 0);
  transform: translate3D(0, 0, 0);
}

.fs-lightbox-mobile.fs-lightbox-animating .fs-lightbox-image_container {
  -webkit-transition: height 0.25s ease, width 0.25s ease, top 0.25s ease, left 0.25s ease;
  transition: height 0.25s ease, width 0.25s ease, top 0.25s ease, left 0.25s ease;
}

.fs-lightbox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: #000000;
  opacity: 0;
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}

.fs-lightbox-open {
  opacity: 1;
}

.fs-lightbox-overlay.fs-lightbox-open {
  opacity: 0.75;
}

.fs-lightbox-close {
  border: none;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -7.5px;
  right: -7.5px;
  z-index: 105;
  background: #ffffff;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0;
  text-indent: 200%;
  white-space: nowrap;
}

.fs-lightbox-close:focus {
  outline: none;
}

.fs-lightbox-close:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #333333;
  content: "\00d7";
  display: block;
  font-family: "Helvetica", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  margin: auto;
  text-align: center;
  text-indent: 0;
  -webkit-transition: color 0.15s linear;
  transition: color 0.15s linear;
}

.no-opacity .fs-lightbox-close {
  text-indent: -999px;
}

.fs-lightbox-loading_icon {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 105;
  display: block;
  margin: auto;
  opacity: 0;
  -webkit-transition: opacity 0.25s linear, visibility 0.25s linear;
  transition: opacity 0.25s linear, visibility 0.25s linear;
  visibility: hidden;
}

.fs-lightbox-loading_icon:before,
.fs-lightbox-loading_icon:after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 110%;
  content: '';
  display: block;
}

.fs-lightbox-loading_icon:before {
  border: 5px solid rgba(51, 51, 51, 0.25);
}

.fs-lightbox-loading_icon:after {
  -webkit-animation: fs-lightbox-loading-spin 0.75s linear infinite;
  animation: fs-lightbox-loading-spin 0.75s linear infinite;
  border: 5px solid transparent;
  border-top-color: #333333;
}

@-webkit-keyframes fs-lightbox-loading-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes fs-lightbox-loading-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.fs-lightbox-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 103;
  background: #ffffff;
  overflow: hidden;
}

.fs-lightbox-container:after {
  clear: both;
  content: '';
  display: table;
}

.fs-lightbox-content {
  width: 100%;
  background: #ffffff;
  opacity: 1;
  overflow: hidden;
  padding: 0;
  visibility: visible;
}

.fs-lightbox-content:after {
  clear: both;
  content: '';
  display: table;
}

.fs-lightbox-inline .fs-lightbox-content {
  width: auto;
}

.fs-lightbox-iframed .fs-lightbox-content {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.fs-lightbox-mobile .fs-lightbox-image_container {
  width: 1px;
  height: 1px;
  margin: 0;
  position: absolute;
}

.fs-lightbox-image {
  float: left;
}

.fs-lightbox-mobile .fs-lightbox-image {
  position: relative;
  float: none;
}

.fs-lightbox-video {
  width: 100%;
  height: 100%;
}

.fs-lightbox-iframe {
  width: 100%;
  height: 100%;
  border: none;
  float: left;
  overflow: auto;
}

.fs-lightbox-meta {
  clear: both;
  padding: 10px 10px 0;
}

.fs-lightbox-control {
  border: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  z-index: 105;
  background: #ffffff;
  border-radius: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: block;
  margin-right: auto;
  margin-left: auto;
  opacity: 1;
  overflow: hidden;
  text-indent: 200%;
  -webkit-transition: opacity 0.15s linear, visibility 0.15s linear;
  transition: opacity 0.15s linear, visibility 0.15s linear;
  white-space: nowrap;
  visibility: visible;
}

.fs-lightbox-control:focus {
  outline: none;
}

.fs-lightbox-control:before {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  margin: auto;
}

.no-opacity .fs-lightbox-control {
  text-indent: -999px;
}

.fs-lightbox-control_previous {
  left: 20px;
}

.fs-lightbox-control_previous:before {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10.4px solid #333333;
  margin-left: 14px;
}

.fs-lightbox-control_next {
  right: 20px;
}

.fs-lightbox-control_next:before {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10.4px solid #333333;
  margin-right: 14px;
}

.fs-lightbox-control_disabled {
  opacity: 0;
  visibility: hidden;
}

.no-touchevents .fs-lightbox .fs-lightbox-control {
  opacity: 0;
  visibility: hidden;
}

.no-touchevents .fs-lightbox:hover .fs-lightbox-control {
  opacity: 1;
  visibility: visible;
}

.no-touchevents .fs-lightbox .fs-lightbox-control_disabled,
.no-touchevents .fs-lightbox:hover .fs-lightbox-control_disabled {
  opacity: 0;
  cursor: default;
  visibility: hidden;
}

.fs-lightbox-position {
  color: #999999;
  font-size: 12px;
  margin: 5px 0;
  padding: 0;
}

.fs-lightbox-caption:after {
  clear: both;
  content: '';
  display: table;
}

.fs-lightbox-caption p {
  color: #666666;
  font-size: 14px;
  margin: 5px 0;
  padding: 0;
}

.fs-lightbox-caption_toggle {
  display: none;
}

.fs-lightbox-error {
  width: 250px;
}

.fs-lightbox-error p {
  color: #990000;
  font-size: 14px;
  margin: 0;
  padding: 25px;
  text-align: center;
  text-transform: uppercase;
}

.fs-lightbox-loading .fs-lightbox-container {
  opacity: 0;
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
  visibility: hidden;
}

.fs-lightbox-loading .fs-lightbox-loading_icon {
  opacity: 1;
  visibility: visible;
}

.fs-lightbox-mobile {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #111111;
  border-radius: 0;
  padding: 40px 0 0;
}

.fs-lightbox-mobile .fs-lightbox-close {
  height: 40px;
  width: 40px;
  top: 0;
  right: 0;
  background: #111111;
  border-radius: 0;
}

.fs-lightbox-mobile .fs-lightbox-close:before {
  color: #cccccc;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
}

.fs-lightbox-mobile .fs-lightbox-loading_icon:before {
  border-color: rgba(153, 153, 153, 0.25);
}

.fs-lightbox-mobile .fs-lightbox-loading_icon:after {
  border-top-color: #999999;
}

.fs-lightbox-mobile .fs-lightbox-container {
  position: static;
  background: #111111;
}

.fs-lightbox-mobile .fs-lightbox-content {
  background-color: #111111;
  padding: 0 15px;
}

.fs-lightbox-mobile .fs-lightbox-tools {
  width: 100%;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #111111;
}

.fs-lightbox-mobile .fs-lightbox-control {
  width: 50px;
  height: 100%;
  min-height: 50px;
  background: #111111;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
}

.fs-lightbox-mobile .fs-lightbox-control_previous {
  left: 0;
}

.fs-lightbox-mobile .fs-lightbox-control_previous:before {
  border-right-color: #eeeeee;
  margin-left: 19px;
}

.fs-lightbox-mobile .fs-lightbox-control_next {
  right: 0;
}

.fs-lightbox-mobile .fs-lightbox-control_next:before {
  border-left-color: #eeeeee;
  margin-right: 19px;
}

.no-touchevents .fs-lightbox-mobile .fs-lightbox-control,
.no-touchevents .fs-lightbox-mobile:hover .fs-lightbox-control {
  opacity: 1;
  visibility: visible;
}

.fs-lightbox-mobile .fs-lightbox-control_disabled,
.no-touchevents .fs-lightbox-mobile .fs-lightbox-control_disabled,
.no-touchevents .fs-lightbox-mobile:hover .fs-lightbox-control_disabled {
  opacity: 0;
  cursor: default !important;
  visibility: hidden;
}

.fs-lightbox-mobile .fs-lightbox-meta {
  padding: 15px 65px;
}

.fs-lightbox-mobile .fs-lightbox-position {
  color: #999999;
  font-size: 12px;
  margin: 0;
  padding: 0 15px 0 0;
}

.fs-lightbox-mobile .fs-lightbox-caption p {
  color: #eeeeee;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.fs-lightbox-mobile .fs-lightbox-image {
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.fs-lightbox-mobile.fs-lightbox-animated .fs-lightbox-image {
  -webkit-transition: -webkit-transform 0.25s ease-out !important;
  transition: transform 0.25s ease-out !important;
}

.fs-lightbox-mobile.fs-lightbox-inline .fs-lightbox-content,
.fs-lightbox-mobile.fs-lightbox-iframe .fs-lightbox-content {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.fs-lightbox-mobile.fs-lightbox-touch .fs-lightbox-tools {
  width: auto;
  position: static;
  background: transparent;
}

.fs-lightbox-mobile.fs-lightbox-touch .fs-lightbox-controls {
  width: 100%;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 105;
  background-color: #111111;
  padding: 0 65px;
}

.fs-lightbox-mobile.fs-lightbox-touch .fs-lightbox-caption_toggle {
  color: #999999;
  display: block;
  font-size: 12px;
  line-height: 50px;
}

.fs-lightbox-mobile.fs-lightbox-touch .fs-lightbox-meta {
  width: 100%;
  height: 80%;
  position: fixed;
  top: 20%;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 104;
  background: #222222;
  box-shadow: 0 0 25px #000000;
  padding: 15px 15px 65px;
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
}

.fs-lightbox-touch.fs-lightbox-caption_open .fs-lightbox-meta {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

/*! formstone v0.8.36 [checkbox.css] 2016-01-15 | MIT License | formstone.it */
/**
	 * @class
	 * @name .fs-checkbox-element
	 * @type element
	 * @description Target elmement
	 */
/**
	 * @class
	 * @name .fs-checkbox
	 * @type element
	 * @description Base widget class
	 */
/**
	 * @class
	 * @name .fs-checkbox.fs-checkbox-checked
	 * @type modifier
	 * @description Indicates checked state
	 */
/**
	 * @class
	 * @name .fs-checkbox.fs-checkbox-radio
	 * @type modifier
	 * @description Indicates radio interface
	 */
/**
	 * @class
	 * @name .fs-checkbox.fs-checkbox-toggle
	 * @type modifier
	 * @description Indicates toggle interface
	 */
/**
	 * @class
	 * @name .fs-checkbox.fs-checkbox-focus
	 * @type modifier
	 * @description Indicates focused state
	 */
/**
	 * @class
	 * @name .fs-checkbox.fs-checkbox-disabled
	 * @type modifier
	 * @description Indicates disabled state
	 */
.fs-checkbox {
  /**
		 * @class
		 * @name .fs-checkbox-enabled
		 * @type modifier
		 * @description Indicates enabled state
		 */
  /**
		 * @class
		 * @name .fs-checkbox-label
		 * @type element
		 * @description Label element
		 */
  /**
		 * @class
		 * @name .fs-checkbox-marker
		 * @type element
		 * @description Marker element
		 */
  /**
		 * @class
		 * @name .fs-checkbox-flag
		 * @type element
		 * @description Flag element
		 */
}

.fs-checkbox.fs-checkbox-enabled {
  cursor: pointer;
  margin: 0 0 10px 0;
  overflow: hidden;
}

.fs-checkbox.fs-checkbox-enabled:focus {
  box-shadow: none;
  outline: none;
}

.fs-checkbox,
.fs-checkbox:after,
.fs-checkbox:before,
.fs-checkbox *,
.fs-checkbox *:after,
.fs-checkbox *:before {
  box-sizing: border-box;
  -webkit-transition: none;
  transition: none;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.fs-checkbox-element_wrapper {
  position: relative;
  border: 0;
  height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  width: 0;
}

.fs-checkbox-element {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  -webkit-transition: none;
  transition: none;
}

.fs-checkbox-label {
  color: #666666;
  cursor: pointer;
  display: block;
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fs-checkbox-marker {
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 3px;
  cursor: pointer;
  display: block;
  float: left;
  margin: 0 10px 0 0;
}

.fs-checkbox-flag {
  width: 100%;
  height: 100%;
  margin: 0;
}

.fs-checkbox-flag:before {
  width: 5px;
  height: 10px;
  border: 2px solid #999999;
  border-top: 0;
  border-left: 0;
  content: '';
  display: block;
  margin: 3px 0 0 6px;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
  -webkit-transform: rotate(45deg) scale(0);
  -ms-transform: rotate(45deg) scale(0);
  transform: rotate(45deg) scale(0);
}

.fs-checkbox-checked .fs-checkbox-flag:before {
  -webkit-transform: rotate(45deg) scale(1);
  -ms-transform: rotate(45deg) scale(1);
  transform: rotate(45deg) scale(1);
}

.no-csstransforms .fs-checkbox-flag:before {
  width: 100%;
  height: 100%;
  content: "\2713";
  display: none;
  line-height: 1;
  text-align: center;
}

.no-csstransforms .fs-checkbox-checked .fs-checkbox-flag:before {
  display: block;
}

.fs-checkbox-radio .fs-checkbox-marker {
  border-radius: 100%;
}

.fs-checkbox-radio .fs-checkbox-flag {
  background: #999999;
  border: 3px solid #ffffff;
  border-radius: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: transform 0.15s ease;
}

.fs-checkbox-radio .fs-checkbox-flag:before {
  display: none;
}

.fs-checkbox-radio.fs-checkbox-checked .fs-checkbox-flag {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.fs-checkbox-radio.fs-checkbox-checked .fs-checkbox-flag:before {
  display: none;
}

.no-csstransforms .fs-checkbox-radio .fs-checkbox-flag:before {
  display: none;
}

.no-csstransforms .fs-checkbox-radio.fs-checkbox-checked .fs-checkbox-flag:before {
  display: block;
}

.fs-checkbox-focus .fs-checkbox-label {
  color: #333333;
}

.fs-checkbox-focus .fs-checkbox-marker {
  border-color: #999999;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.fs-checkbox-disabled {
  cursor: default;
  opacity: 0.5;
}

.fs-checkbox-disabled .fs-checkbox-label {
  color: #666666;
  cursor: default;
}

.fs-checkbox-disabled .fs-checkbox-marker {
  border-color: #cccccc;
  cursor: default;
}

.fs-checkbox-toggle {
  position: relative;
}

.fs-checkbox-toggle .fs-checkbox-label {
  line-height: 40px;
}

.fs-checkbox-toggle .fs-checkbox-marker {
  width: 100px;
  height: 40px;
  position: relative;
  border-radius: 3px;
}

.fs-checkbox-toggle .fs-checkbox-marker:after {
  clear: both;
  content: '';
  display: table;
}

.fs-checkbox-toggle .fs-checkbox-flag {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #999999;
  border: 2px solid #ffffff;
  border-radius: 3px;
  display: block;
  margin: 0;
  -webkit-transition: left 0.15s ease;
  transition: left 0.15s ease;
}

.fs-checkbox-toggle .fs-checkbox-flag:before {
  display: none;
}

.fs-checkbox-toggle .fs-checkbox-flag:after {
  width: 2px;
  height: 10px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #ffffff;
  box-shadow: 3px 0 0 #ffffff, -3px 0 0 #ffffff;
  content: '';
  margin: auto;
  opacity: 0.75;
}

.no-touchevents .fs-checkbox-toggle:hover .fs-checkbox-flag:after {
  opacity: 1;
}

.fs-checkbox-toggle.fs-checkbox-checked .fs-checkbox-flag {
  left: 50%;
}

.fs-checkbox-toggle.fs-checkbox-checked .fs-checkbox-flag:before {
  display: none;
}

.fs-checkbox-toggle.fs-checkbox-disabled .fs-checkbox-flag:after {
  display: none;
}

.fs-checkbox-toggle .fs-checkbox-state {
  width: 50%;
  color: #666666;
  display: block;
  font-size: 12px;
  line-height: 40px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.fs-checkbox-toggle .fs-checkbox-state_on {
  float: left;
}

.fs-checkbox-toggle .fs-checkbox-state_off {
  float: right;
}

/*! formstone v0.8.37 [dropdown.css] 2016-01-28 | MIT License | formstone.it */
/**
	 * @class
	 * @name .fs-dropdown-element
	 * @type element
	 * @description Target element
	 */
/**
	 * @class
	 * @name .fs-dropdown
	 * @type element
	 * @description Base widget class
	 */
/**
	 * @class
	 * @name .fs-dropdown.fs-dropdown-multiple
	 * @type modifer
	 * @description Indicates multi-selected element
	 */
/**
	 * @class
	 * @name .fs-dropdown.fs-dropdown-cover
	 * @type modifer
	 * @description Indicates cover positioning
	 */
/**
	 * @class
	 * @name .fs-dropdown.fs-dropdown-bottom
	 * @type modifer
	 * @description Indicates bottom positioning
	 */
/**
	 * @class
	 * @name .fs-dropdown.fs-dropdown-disabled
	 * @type modifer
	 * @description Indicates disabled state
	 */
/**
	 * @class
	 * @name .fs-dropdown.fs-dropdown-open
	 * @type modifer
	 * @description Indicates open state
	 */
/**
	 * @class
	 * @name .fs-dropdown.fs-dropdown-focus
	 * @type modifer
	 * @description Indicates focus state
	 */
.fs-dropdown {
  position: relative;
  z-index: 1;
  display: block;
  margin: 10px 0;
  max-width: 100%;
  /*
			@media screen and (min-width: 740px) {
				max-width: 30%;
			}
			*/
  /**
		 * @class
		 * @name .fs-dropdown-selected
		 * @type element
		 * @description Handle item
		 */
  /**
		 * @class
		 * @name .fs-dropdown-options
		 * @type element
		 * @description Options container
		 */
  /**
		 * @class
		 * @name .fs-dropdown-group
		 * @type element
		 * @description Option group label
		 */
  /**
		 * @class
		 * @name .fs-dropdown-item
		 * @type element
		 * @description Option item
		 */
}

.fs-dropdown:focus {
  box-shadow: none;
  outline: none;
}

.fs-dropdown,
.fs-dropdown:after,
.fs-dropdown:before,
.fs-dropdown *,
.fs-dropdown *:after,
.fs-dropdown *:before {
  box-sizing: border-box;
  -webkit-transition: none;
  transition: none;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.fs-dropdown-element {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  opacity: 0;
  z-index: -1;
}

.fs-dropdown-element,
.fs-dropdown-element:focus {
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
}

.no-opacity .fs-dropdown-element {
  left: -999999px;
}

.fs-dropdown-selected {
  width: 100%;
  position: relative;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 3px;
  color: #222222;
  cursor: pointer;
  display: block;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  margin: 0;
  overflow: hidden;
  padding: 0 40px 0 15px;
  text-align: left;
  text-overflow: clip;
  z-index: 2;
}

.fs-dropdown-selected:after {
  height: 0;
  width: 0;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #cccccc;
  content: '';
  display: block;
  margin: auto 0;
}

.no-touchevents .fs-dropdown-selected:hover {
  color: #222222;
}

.no-touchevents .fs-dropdown-disabled .fs-dropdown-selected:hover {
  color: #cccccc;
}

.fs-dropdown-options {
  width: 100%;
  max-height: 260px;
  position: absolute;
  top: 100%;
  left: 0;
  border: 1px solid #cccccc;
  border-width: 0 1px 1px;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  display: none;
  margin: 0;
  overflow: auto;
  overflow-x: hidden;
  padding: 0;
  z-index: 50;
}

.fs-dropdown-options.fs-scrollbar {
  position: absolute;
}

.no-opacity .fs-dropdown-options {
  width: auto;
}

.fs-dropdown-group {
  border-bottom: 1px solid #cccccc;
  color: #999999;
  display: block;
  font-size: 11px;
  padding: 10px 15px;
  text-transform: uppercase;
}

.fs-dropdown-item {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #cccccc;
  color: #222222;
  cursor: pointer;
  display: block;
  font-size: 14px;
  margin: 0;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  padding: 0 15px;
  text-align: left;
  text-decoration: none;
  text-overflow: ellipsis;
  /**
			 * @class
			 * @name .fs-dropdown-item.fs-dropdown-item_placeholder
			 * @type modifier
			 * @description Indicates placeholder item
			 */
  /**
			 * @class
			 * @name .fs-dropdown-item.fs-dropdown-item_selected
			 * @type modifier
			 * @description Indicates selected item
			 */
  /**
			 * @class
			 * @name .fs-dropdown-item.fs-dropdown-item_disabled
			 * @type modifier
			 * @description Indicates disabled item
			 */
}

.fs-dropdown-item_placeholder {
  display: none;
}

.fs-dropdown-item_selected {
  background: #eeeeee;
}

.fs-dropdown-item_disabled {
  color: #999999;
  cursor: default;
}

.fs-dropdown-item:first-child {
  border-radius: 0;
}

.fs-dropdown-item:last-child {
  border-bottom: 0;
  border-radius: 0 0 3px 3px;
}

.no-touchevents .fs-dropdown-item:hover,
.no-touchevents .fs-dropdown-item_selected:hover {
  color: #222222;
  background-color: #dddddd;
  border-color: #cccccc;
}

.fs-dropdown-item_disabled,
.no-touchevents .fs-dropdown-item_disabled:hover {
  color: #cccccc;
  background-color: #ffffff;
  border-color: #cccccc;
}

.fs-dropdown-open {
  z-index: 3;
}

.fs-dropdown-open .fs-dropdown-options {
  display: block;
  border-radius: 0 0 3px 3px;
}

.fs-dropdown-open .fs-dropdown-selected {
  z-index: 51;
  border-radius: 3px 3px 0 0;
}

.fs-dropdown-open .fs-dropdown-selected,
.fs-dropdown-focus .fs-dropdown-selected {
  background-color: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.fs-dropdown-cover.fs-dropdown-open .fs-dropdown-selected {
  z-index: 49;
}

.fs-dropdown-cover .fs-dropdown-options {
  top: 0;
  border-radius: 3px;
  border-width: 1px;
}

.fs-dropdown-cover .fs-dropdown-item:first-child {
  border-radius: 3px 3px 0 0;
}

/* .fs-dropdown-bottom .fs-dropdown-options {
  top: auto;
  bottom: 100%;
  border-width: 1px 1px 0;
}
.fs-dropdown-bottom .fs-dropdown-item:last-child {
  border: none;
}
.fs-dropdown-bottom.fs-dropdown-open .fs-dropdown-selected {
  border-radius: 0 0 3px 3px;
}
.fs-dropdown-bottom.fs-dropdown-open .fs-dropdown-options {
  border-radius: 3px 3px 0 0;
}
.fs-dropdown-bottom.fs-dropdown-cover .fs-dropdown-options {
  top: auto;
  bottom: 0;
}
.fs-dropdown-bottom.fs-dropdown-cover.fs-dropdown-open .fs-dropdown-selected {
  border-radius: 3px;
}
.fs-dropdown-bottom.fs-dropdown-cover.fs-dropdown-open .fs-dropdown-options {
  border-radius: 3px;
} */
.fs-dropdown-multiple {
  border: 1px solid #cccccc;
  border-radius: 3px;
}

.fs-dropdown-multiple .fs-dropdown-options {
  width: 100%;
  position: static;
  border: none;
  border-radius: 3px;
  box-shadow: none;
  display: block;
}

.fs-dropdown-disabled .fs-dropdown-selected {
  background: #ffffff;
  border-color: #cccccc;
  color: #cccccc;
  cursor: default;
}

.fs-dropdown-disabled .fs-dropdown-options {
  background: #ffffff;
  border-color: #cccccc;
}

.fs-dropdown-disabled .fs-dropdown-group,
.fs-dropdown-disabled .fs-dropdown-item {
  border-color: #cccccc;
  color: #cccccc;
  cursor: default;
}

.fs-dropdown-disabled .fs-dropdown-item,
.no-touchevents .fs-dropdown-disabled .fs-dropdown-item:hover {
  color: #cccccc;
  background-color: #ffffff;
}

.fs-dropdown-disabled .fs-dropdown-item_selected,
.no-touchevents .fs-dropdown-disabled .fs-dropdown-item_selected:hover {
  background: #fafafa;
}

.fs-dropdown-options.fs-scrollbar {
  overflow: hidden;
}

.fs-dropdown-options.fs-scrollbar .fs-scrollbar-content {
  max-height: 260px;
  height: auto;
}

.fs-dropdown-options.fs-scrollbar.fs-scrollbar-active .fs-scrollbar-content {
  padding: 0;
}

.fs-dropdown-options.fs-scrollbar .fs-scrollbar-bar,
.fs-dropdown-options.fs-scrollbar .fs-scrollbar-track {
  border-radius: 0 3px 3px 0;
}

/*
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=1087f5acfe5a5ace99cefc636d10d052)
 * Config saved to config.json and https://gist.github.com/1087f5acfe5a5ace99cefc636d10d052
 */
/*
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.alert, .form .validation_error,
.gform_wrapper .validation_error {
  padding: 15px;
  border: 1px solid transparent;
}

.alert h4, .form .validation_error h4,
.gform_wrapper .validation_error h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link, .form .validation_error .alert-link,
.gform_wrapper .validation_error .alert-link {
  font-weight: bold;
}

.alert > p, .form .validation_error > p,
.gform_wrapper .validation_error > p,
.alert > ul, .form .validation_error > ul,
.gform_wrapper .validation_error > ul {
  margin-bottom: 0;
}

.alert > p + p, .form .validation_error > p + p,
.gform_wrapper .validation_error > p + p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}

.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger, .form .validation_error,
.gform_wrapper .validation_error {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.alert-danger hr, .form .validation_error hr,
.gform_wrapper .validation_error hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link, .form .validation_error .alert-link,
.gform_wrapper .validation_error .alert-link {
  color: #843534;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.close:hover,
.close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  transform: translate(0, -25%);
  transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

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

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}

/*
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=1087f5acfe5a5ace99cefc636d10d052)
 * Config saved to config.json and https://gist.github.com/1087f5acfe5a5ace99cefc636d10d052
 */
/*
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.btn-default,
.btn-primary,
.btn-success,
.btn-info,
.btn-warning,
.btn-danger {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-default:active,
.btn-primary:active,
.btn-success:active,
.btn-info:active,
.btn-warning:active,
.btn-danger:active,
.btn-default.active,
.btn-primary.active,
.btn-success.active,
.btn-info.active,
.btn-warning.active,
.btn-danger.active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-default.disabled,
.btn-primary.disabled,
.btn-success.disabled,
.btn-info.disabled,
.btn-warning.disabled,
.btn-danger.disabled,
.btn-default[disabled],
.btn-primary[disabled],
.btn-success[disabled],
.btn-info[disabled],
.btn-warning[disabled],
.btn-danger[disabled],
fieldset[disabled] .btn-default,
fieldset[disabled] .btn-primary,
fieldset[disabled] .btn-success,
fieldset[disabled] .btn-info,
fieldset[disabled] .btn-warning,
fieldset[disabled] .btn-danger {
  box-shadow: none;
}

.btn-default .badge,
.btn-primary .badge,
.btn-success .badge,
.btn-info .badge,
.btn-warning .badge,
.btn-danger .badge {
  text-shadow: none;
}

.btn:active,
.btn.active {
  background-image: none;
}

.btn-default {
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
  background-image: -o-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e0e0e0));
  background-image: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #dbdbdb;
  text-shadow: 0 1px 0 #fff;
  border-color: #ccc;
}

.btn-default:hover,
.btn-default:focus {
  background-color: #e0e0e0;
  background-position: 0 -15px;
}

.btn-default:active,
.btn-default.active {
  background-color: #e0e0e0;
  border-color: #dbdbdb;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #e0e0e0;
  background-image: none;
}

.btn-primary {
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));
  background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #245580;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #265a88;
  background-position: 0 -15px;
}

.btn-primary:active,
.btn-primary.active {
  background-color: #265a88;
  border-color: #245580;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #265a88;
  background-image: none;
}

.btn-success {
  background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
  background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));
  background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #3e8f3e;
}

.btn-success:hover,
.btn-success:focus {
  background-color: #419641;
  background-position: 0 -15px;
}

.btn-success:active,
.btn-success.active {
  background-color: #419641;
  border-color: #3e8f3e;
}

.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #419641;
  background-image: none;
}

.btn-info {
  background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
  background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));
  background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #28a4c9;
}

.btn-info:hover,
.btn-info:focus {
  background-color: #2aabd2;
  background-position: 0 -15px;
}

.btn-info:active,
.btn-info.active {
  background-color: #2aabd2;
  border-color: #28a4c9;
}

.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #2aabd2;
  background-image: none;
}

.btn-warning {
  background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
  background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));
  background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #e38d13;
}

.btn-warning:hover,
.btn-warning:focus {
  background-color: #eb9316;
  background-position: 0 -15px;
}

.btn-warning:active,
.btn-warning.active {
  background-color: #eb9316;
  border-color: #e38d13;
}

.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #eb9316;
  background-image: none;
}

.btn-danger {
  background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
  background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));
  background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-color: #b92c28;
}

.btn-danger:hover,
.btn-danger:focus {
  background-color: #c12e2a;
  background-position: 0 -15px;
}

.btn-danger:active,
.btn-danger.active {
  background-color: #c12e2a;
  border-color: #b92c28;
}

.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #c12e2a;
  background-image: none;
}

.alert, .form .validation_error,
.gform_wrapper .validation_error {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.alert-success {
  background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
  background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
  background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
  border-color: #b2dba1;
}

.alert-info {
  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
  background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
  background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
  border-color: #9acfea;
}

.alert-warning {
  background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
  background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
  background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
  border-color: #f5e79e;
}

.alert-danger, .form .validation_error,
.gform_wrapper .validation_error {
  background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
  background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
  background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
  border-color: #dca7a7;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*!
 * Font Awesome Pro 5.0.8 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: -.0667em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-inverse {
  color: #fff;
}

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

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

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

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

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

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

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

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

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

.fa-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-angrycreative:before {
  content: "\f36e";
}

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

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

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

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

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

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

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

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

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

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

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

.fa-arrow-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-audible:before {
  content: "\f373";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-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-bicycle:before {
  content: "\f206";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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-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-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-chart-area:before {
  content: "\f1fe";
}

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

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

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

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

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

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

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

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

.fa-chess-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-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-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-columns:before {
  content: "\f0db";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-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-digg:before {
  content: "\f1a6";
}

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

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

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

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

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

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

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

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

.fa-dolly-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-dot-circle:before {
  content: "\f192";
}

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

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

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

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

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

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

.fa-dumbbell:before {
  content: "\f44b";
}

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

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

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

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

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

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

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

.fa-ellipsis-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-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-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-edit:before {
  content: "\f31c";
}

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

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

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

.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-times:before {
  content: "\f317";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-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-free-code-camp:before {
  content: "\f2c5";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-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-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-holding-box:before {
  content: "\f47b";
}

.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-handshake:before {
  content: "\f2b5";
}

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

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

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

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

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

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

.fa-hexagon:before {
  content: "\f312";
}

.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-hooli:before {
  content: "\f427";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-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-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-jenkins:before {
  content: "\f3b6";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-level-down: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-low-vision:before {
  content: "\f2a8";
}

.fa-luchador:before {
  content: "\f455";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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-moon:before {
  content: "\f186";
}

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

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

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

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

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

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

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

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

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

.fa-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-opencart:before {
  content: "\f23d";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-pen-alt:before {
  content: "\f305";
}

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

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

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

.fa-pennant:before {
  content: "\f456";
}

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

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

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

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

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

.fa-phone-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-pp:before {
  content: "\f1a7";
}

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

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

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

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

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

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

.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-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-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-racquet:before {
  content: "\f45a";
}

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

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

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

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

.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-resolving:before {
  content: "\f3e7";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-scanner:before {
  content: "\f488";
}

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

.fa-scanner-touchscreen:before {
  content: "\f48a";
}

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

.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-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-shopping-bag:before {
  content: "\f290";
}

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

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

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

.fa-shuttlecock:before {
  content: "\f45b";
}

.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-simplybuilt:before {
  content: "\f215";
}

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

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

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

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

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

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

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

.fa-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-smoking:before {
  content: "\f48d";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-spade:before {
  content: "\f2f4";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-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-tasks:before {
  content: "\f0ae";
}

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

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

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

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

.fa-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-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-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-train:before {
  content: "\f238";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-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-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-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-circle:before {
  content: "\f2bd";
}

.fa-user-md:before {
  content: "\f0f0";
}

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

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-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-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-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-warehouse:before {
  content: "\f494";
}

.fa-warehouse-alt:before {
  content: "\f495";
}

.fa-watch:before {
  content: "\f2e1";
}

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

.fa-weight:before {
  content: "\f496";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

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

.fa-wheelchair:before {
  content: "\f193";
}

.fa-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-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.0.8 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: 'Font Awesome 5 Pro';
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/webfonts//fa-light-300.eot");
  src: url("../fonts/webfonts//fa-light-300.eot?#iefix") format("embedded-opentype"), url("../fonts/webfonts//fa-light-300.woff2") format("woff2"), url("../fonts/webfonts//fa-light-300.woff") format("woff"), url("../fonts/webfonts//fa-light-300.ttf") format("truetype"), url("../fonts/webfonts//fa-light-300.svg#fontawesome") format("svg");
}

.fal {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 300;
}

/*!
 * Font Awesome Pro 5.0.8 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: 'Font Awesome 5 Pro';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/webfonts//fa-regular-400.eot");
  src: url("../fonts/webfonts//fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/webfonts//fa-regular-400.woff2") format("woff2"), url("../fonts/webfonts//fa-regular-400.woff") format("woff"), url("../fonts/webfonts//fa-regular-400.ttf") format("truetype"), url("../fonts/webfonts//fa-regular-400.svg#fontawesome") format("svg");
}

.far {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
}

/*!
 * Font Awesome Pro 5.0.8 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: 'Font Awesome 5 Pro';
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/webfonts//fa-solid-900.eot");
  src: url("../fonts/webfonts//fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/webfonts//fa-solid-900.woff2") format("woff2"), url("../fonts/webfonts//fa-solid-900.woff") format("woff"), url("../fonts/webfonts//fa-solid-900.ttf") format("truetype"), url("../fonts/webfonts//fa-solid-900.svg#fontawesome") format("svg");
}

.fa,
.fas {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
}

/*!
 * Font Awesome Pro 5.0.8 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/webfonts//fa-brands-400.eot");
  src: url("../fonts/webfonts//fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/webfonts//fa-brands-400.woff2") format("woff2"), url("../fonts/webfonts//fa-brands-400.woff") format("woff"), url("../fonts/webfonts//fa-brands-400.ttf") format("truetype"), url("../fonts/webfonts//fa-brands-400.svg#fontawesome") format("svg");
}

.fab {
  font-family: 'Font Awesome 5 Brands';
}

/**
 * Border box all the things
 */
* {
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  box-sizing: border-box;
}

/*
 * Highlighting colors
 */
::-webkit-selection {
  background: #42a4e6;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #42a4e6;
  color: #fff;
  text-shadow: none;
}

/**
 * HTML tag
 */
html {
  height: 100%;
  min-height: 100%;
  font-size: 62.5%;
}

html:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/mockup_home.jpg");
  opacity: .8;
}

/**
 * BODY tag
 */
body {
  height: 100%;
  min-height: 100%;
  color: #464646;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "franklin-gothic-urw", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.36;
  -webkit-font-smoothing: antialiased;
}

@media only screen and (min-width: 37.5em) {
  body {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 48em) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

body.is-stuck {
  overflow-y: hidden;
}

body.account .main-content__content {
  max-width: none;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/*
 * Headings
 */

.main-nav .card-cta__link:after, .main-nav .navbar .mmenu a:after{
	display: none;
}

h1, .h1,
h2, .h2, .full-width-drawer__inline b, .double-feature__item--title, .topics .overlay-text,
h3, .h3, .main-content__header.has-border .post-title,
h4, .h4, .double-feature__item--title.is-small, [data-style="aggregator"] .slider__slide--title, .trending-featured .center-block .trending-featured__small--title, .trending-featured .center-block .trending-featured__list--item__title, .news-item--featured .news-item__title,
h5, .h5, .sidebar-promo__title, .trending-featured__small--title, .trending-featured__list--item__title, .news-item__title,
h6, .h6 {
  font-weight: normal;
  line-height: 1.25;
  padding: 0 0 20px;
  margin: 0;
}

@media only screen and (min-width: 48em) {
  h1, .h1,
  h2, .h2, .full-width-drawer__inline b, .double-feature__item--title, .topics .overlay-text,
  h3, .h3, .main-content__header.has-border .post-title,
  h4, .h4, .double-feature__item--title.is-small, [data-style="aggregator"] .slider__slide--title, .trending-featured .center-block .trending-featured__small--title, .trending-featured .center-block .trending-featured__list--item__title, .news-item--featured .news-item__title,
  h5, .h5, .sidebar-promo__title, .trending-featured__small--title, .trending-featured__list--item__title, .news-item__title,
  h6, .h6 {
    padding-bottom: 30px;
  }
}

h1, .h1,
h2, .h2, .full-width-drawer__inline b, .double-feature__item--title, .topics .overlay-text {
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  font-weight: 500;
}

h1, .h1,
h6, .h6 {
  text-transform: uppercase;
}

h3, .h3, .main-content__header.has-border .post-title,
h4, .h4, .double-feature__item--title.is-small, [data-style="aggregator"] .slider__slide--title, .trending-featured .center-block .trending-featured__small--title, .trending-featured .center-block .trending-featured__list--item__title, .news-item--featured .news-item__title,
h5, .h5, .sidebar-promo__title, .trending-featured__small--title, .trending-featured__list--item__title, .news-item__title {
  font-family: "FuturaBTWXX-Bold", futura-pt, Trebuchet MS, sans-serif;
  font-weight: 700;
}

h6, .h6 {
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
}

h1, .h1 {
  font-size: 42px;
  font-size: 4.2rem;
}

h2, .h2, .full-width-drawer__inline b, .double-feature__item--title, .topics .overlay-text {
  font-size: 36px;
  font-size: 3.6rem;
}

h3, .h3, .main-content__header.has-border .post-title {
  font-size: 28px;
  font-size: 2.8rem;
}

h4, .h4, .double-feature__item--title.is-small, [data-style="aggregator"] .slider__slide--title, .trending-featured .center-block .trending-featured__small--title, .trending-featured .center-block .trending-featured__list--item__title, .news-item--featured .news-item__title {
  font-size: 26px;
  font-size: 2.6rem;
}

h5, .h5, .sidebar-promo__title, .trending-featured__small--title, .trending-featured__list--item__title, .news-item__title {
  font-size: 22px;
  font-size: 2.2rem;
}

h6, .h6 {
  font-size: 18px;
  font-size: 1.8rem;
}

.main-content h1 {
  font-size: 28px;
  font-size: 2.8rem;
}

.main-content h2 {
  font-size: 39px;
  font-size: 3.9rem;
}

.main-content h3 {
  font-size: 30px;
  font-size: 3rem;
}

.main-content h4 {
  font-size: 28px;
  font-size: 2.8rem;
}

.main-content h5 {
  font-size: 24px;
  font-size: 2.4rem;
}

.main-content h6 {
  font-size: 19px;
  font-size: 1.9rem;
}

@media only screen and (min-width: 37.5em) {
  h1, .h1 {
    font-size: 46px;
    font-size: 4.6rem;
  }
  h2, .h2, .full-width-drawer__inline b, .double-feature__item--title, .topics .overlay-text {
    font-size: 38px;
    font-size: 3.8rem;
  }
  h3, .h3, .main-content__header.has-border .post-title {
    font-size: 28px;
    font-size: 2.8rem;
  }
  h4, .h4, .double-feature__item--title.is-small, [data-style="aggregator"] .slider__slide--title, .trending-featured .center-block .trending-featured__small--title, .trending-featured .center-block .trending-featured__list--item__title, .news-item--featured .news-item__title {
    font-size: 26px;
    font-size: 2.6rem;
  }
  h5, .h5, .sidebar-promo__title, .trending-featured__small--title, .trending-featured__list--item__title, .news-item__title {
    font-size: 22px;
    font-size: 2.2rem;
  }
  h6, .h6 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .main-content h1 {
    font-size: 33px;
    font-size: 3.3rem;
  }
  .main-content h2 {
    font-size: 41px;
    font-size: 4.1rem;
  }
  .main-content h3 {
    font-size: 30px;
    font-size: 3rem;
  }
  .main-content h4 {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .main-content h5 {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .main-content h6 {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

@media only screen and (min-width: 60em) {
  h1, .h1 {
    font-size: 50px;
    font-size: 5rem;
  }
  h2, .h2, .full-width-drawer__inline b, .double-feature__item--title, .topics .overlay-text {
    font-size: 40px;
    font-size: 4rem;
  }
  h3, .h3, .main-content__header.has-border .post-title {
    font-size: 28px;
    font-size: 2.8rem;
  }
  h4, .h4, .double-feature__item--title.is-small, [data-style="aggregator"] .slider__slide--title, .trending-featured .center-block .trending-featured__small--title, .trending-featured .center-block .trending-featured__list--item__title, .news-item--featured .news-item__title {
    font-size: 26px;
    font-size: 2.6rem;
  }
  h5, .h5, .sidebar-promo__title, .trending-featured__small--title, .trending-featured__list--item__title, .news-item__title {
    font-size: 22px;
    font-size: 2.2rem;
  }
  h6, .h6 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .main-content h1 {
    font-size: 50px;
    font-size: 5rem;
  }
  .main-content h2 {
    font-size: 40px;
    font-size: 4rem;
  }
  .main-content h3 {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .main-content h4 {
    font-size: 26px;
    font-size: 2.6rem;
  }
  .main-content h5 {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .main-content h6 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
  text-transform: none;
}

.main-content h1 {
  color: #132128;
}

.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.lead-in, .sidebar-promo__content, .module__intro, .full-width-drawer__inline p, .double-feature__item--content, .form__intro,
.gform_wrapper__intro, .trending-featured__small--excerpt, .trending-featured__slider--item__excerpt, .trending-featured .center-block .trending-featured__small--excerpt {
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
}

.subtitle {
  display: block;
  margin-bottom: 1rem;
}

.subtitle--md, .subtitle--lg, .main-content__meta-footer--title, .mason-block__content b, .sidebar-post__title, .topics__item--heading, .partners__title, .card__title, .quick-links__title, .hero__promo__title {
  font-family: "FuturaBTWXX-Bold", futura-pt, Trebuchet MS, sans-serif;
  font-weight: 700;
}

.subtitle--sm, .main-nav .navbar .mmenu__heading, select.fancy .fs-dropdown-group,
.fancy-select .fs-dropdown-group, .content-list .advanced-search__dropdowns .query-exposed-label, .trending-featured__small--heading {
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.subtitle--lg, .main-content__meta-footer--title, .mason-block__content b, .sidebar-post__title, .topics__item--heading, .partners__title, .card__title, .quick-links__title, .hero__promo__title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.25;
}

.font-size--larger {
  font-size: 18px;
  font-size: 1.8rem;
}

@media only screen and (min-width: 37.5em) {
  .font-size--larger {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media only screen and (min-width: 60em) {
  .font-size--larger {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.font-size--larger .subtitle {
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (min-width: 37.5em) {
  .font-size--larger .subtitle {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media only screen and (min-width: 60em) {
  .font-size--larger .subtitle {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.font-size--larger .subtitle--sm, .font-size--larger .main-nav .navbar .mmenu__heading, .main-nav .navbar .font-size--larger .mmenu__heading, .font-size--larger select.fancy .fs-dropdown-group, select.fancy .font-size--larger .fs-dropdown-group, .font-size--larger
.fancy-select .fs-dropdown-group,
.fancy-select .font-size--larger .fs-dropdown-group, .font-size--larger .content-list .advanced-search__dropdowns .query-exposed-label, .content-list .advanced-search__dropdowns .font-size--larger .query-exposed-label, .font-size--larger .trending-featured__small--heading {
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (min-width: 37.5em) {
  .font-size--larger .subtitle--sm, .font-size--larger .main-nav .navbar .mmenu__heading, .main-nav .navbar .font-size--larger .mmenu__heading, .font-size--larger select.fancy .fs-dropdown-group, select.fancy .font-size--larger .fs-dropdown-group, .font-size--larger
  .fancy-select .fs-dropdown-group,
  .fancy-select .font-size--larger .fs-dropdown-group, .font-size--larger .content-list .advanced-search__dropdowns .query-exposed-label, .content-list .advanced-search__dropdowns .font-size--larger .query-exposed-label, .font-size--larger .trending-featured__small--heading {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media only screen and (min-width: 60em) {
  .font-size--larger .subtitle--sm, .font-size--larger .main-nav .navbar .mmenu__heading, .main-nav .navbar .font-size--larger .mmenu__heading, .font-size--larger select.fancy .fs-dropdown-group, select.fancy .font-size--larger .fs-dropdown-group, .font-size--larger
  .fancy-select .fs-dropdown-group,
  .fancy-select .font-size--larger .fs-dropdown-group, .font-size--larger .content-list .advanced-search__dropdowns .query-exposed-label, .content-list .advanced-search__dropdowns .font-size--larger .query-exposed-label, .font-size--larger .trending-featured__small--heading {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.font-size--larger h2, .font-size--larger .h2, .font-size--larger .full-width-drawer__inline b, .full-width-drawer__inline .font-size--larger b, .font-size--larger .double-feature__item--title, .font-size--larger .topics .overlay-text, .topics .font-size--larger .overlay-text {
  font-size: 44px;
  font-size: 4.4rem;
}

@media only screen and (min-width: 37.5em) {
  .font-size--larger h2, .font-size--larger .h2, .font-size--larger .full-width-drawer__inline b, .full-width-drawer__inline .font-size--larger b, .font-size--larger .double-feature__item--title, .font-size--larger .topics .overlay-text, .topics .font-size--larger .overlay-text {
    font-size: 46px;
    font-size: 4.6rem;
  }
}

@media only screen and (min-width: 60em) {
  .font-size--larger h2, .font-size--larger .h2, .font-size--larger .full-width-drawer__inline b, .full-width-drawer__inline .font-size--larger b, .font-size--larger .double-feature__item--title, .font-size--larger .topics .overlay-text, .topics .font-size--larger .overlay-text {
    font-size: 48px;
    font-size: 4.8rem;
  }
}

.h2--alt {
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
}

/**
 * Body Text
 */
p {
  padding: 0 0 20px;
  margin: 0;
}

p:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}

p + ul,
p + ol {
  margin-top: -10px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 48em) {
  p {
    padding-bottom: 30px;
  }
  p + ul,
  p + ol {
    margin-top: -20px;
    margin-bottom: 20px;
  }
}

/*
 * Links
 */
a,
.link {
  color: #42a4e6;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover,
a:hover .link,
.link:hover,
.link:hover .link {
  color: #000;
  transition: all 0.3s ease;
}

a:hover,
a:hover .link,
.link:hover,
.link:hover .link {
  color: #000;
}

[class*="font-color--white"] a:hover, [class*="font-color--white"]
.link:hover {
  color: #fff;
}

[class*="background--green"] a,
[class*="background--teal"] a, [class*="background--green"]
.link,
[class*="background--teal"]
.link {
  color: #fff;
}

[class*="background--green"] a:hover,
[class*="background--green"] a:hover .link,
[class*="background--teal"] a:hover,
[class*="background--teal"] a:hover .link, [class*="background--green"]
.link:hover,
[class*="background--green"]
.link:hover .link,
[class*="background--teal"]
.link:hover,
[class*="background--teal"]
.link:hover .link {
  color: #fff;
}

/**
 * Lists
 */
ul,
ol {
  padding-left: 8%;
  margin-top: 10px;
  margin-bottom: 30px;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}


.list-unstyled {
  padding-left: 4%;
  list-style: none;
}


.list-icon {
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 30px;
}


.list-icon ul,
.list-icon ol {
  margin-bottom: 0;
}


.list-icon li {
  padding-left: 4%;
  list-style: none;
  position: relative;
}


.list-icon li:before {
  content: '\2022';
  position: absolute;
  top: 4px;
  left: 0;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.list-icon li.mail:before {
  content: "\e919";
  font-family: 'aaaa' !important;
  font-size: 60%;
  top: 6px;
}

@media only screen and (min-width: 37.5em) {
  
  .list-icon li.mail:before {
    font-size: 90%;
    top: 4px;
  }
}

/**
 * Blockquotes
 */
blockquote {
  font-size: 28px;
  font-size: 2.8rem;
  border-left: 5px solid #a2a2a2;
  padding: 0.272em 0.544em;
  margin: 0 0 0.544em;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

blockquote p {
  padding-bottom: 0.272em;
}

blockquote footer {
  display: block;
  font-size: 80%;
  line-height: 1.36;
  color: #a2a2a2;
}

blockquote footer:before {
  content: '\2014 \00A0';
}

blockquote-reverse {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #a2a2a2;
  border-left: 0;
  text-align: right;
}

blockquote-reverse footer:before {
  content: '';
}

blockquote-reverse footer:after {
  content: '\00A0 \2014';
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/**
 * Text meant only for screen readers
 */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 0;
  overflow: hidden;
  position: absolute !important;
  width: 0;
}

/**
 * Extend Font Icon
 */
.button.style--backtotop:after,
.module input[type="submit"].style--backtotop:after, .button.style--pdf:before,
.module input[type="submit"].style--pdf:before, .sharing .at-share-tbx-element .at-share-btn, .sharing .at4-jumboshare .at-share-btn, select.fancy .fs-dropdown-selected:after,
.fancy-select .fs-dropdown-selected:after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'aaaa' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
video {
  vertical-align: middle;
}

/**
 * Images
 */
img {
  max-width: 100%;
  height: auto;
}

.fs-lightbox img {
  max-width: 100000000000000%;
}

/**
 * Responsive Embeds
 */
.embed-responsive {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding: 0;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.embed-responsive--ar16x9 {
  padding-top: 56.25%;
}

.embed-responsive--ar4x3 {
  padding-top: 75%;
}

a.button {
  color: currentColor;
}

button {
  outline: 0;
}

.button,
.module input[type="submit"] {
  cursor: pointer;
  position: relative;
  display: inline-block;
  color: currentColor;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  line-height: 1;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  background-color: transparent;
  padding: 15px 15px 15px;
  vertical-align: middle;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.button:hover, .main-content__video-embed:hover .button, .mason-block:hover .button, .trending-featured__small:hover .trending-featured__small--button,
.module input[type="submit"]:hover {
  color: #388bc3;
  transition: all 0.3s ease;
}

.button:focus, .button:hover, .main-content__video-embed:hover .button, .mason-block:hover .button, .trending-featured__small:hover .trending-featured__small--button,
.module input[type="submit"]:focus,
.module input[type="submit"]:hover {
  text-decoration: none;
}

.button.size--small, .comment-list .comment-respond .button[type="submit"], .double-feature[data-style="benefit"] .double-feature__item--button, .trending-featured[data-style="live"] .trending-featured__small--button, .trending-featured[data-style="fifty"] .trending-featured__small--button,
.module input[type="submit"].size--small,
.module .comment-list .comment-respond input[type="submit"], .comment-list .comment-respond
.module input[type="submit"] {
  padding: 12.5px 12px 11.5px;
}

.button.style--outline, .module input[type="submit"],
.module input[type="submit"].style--outline {
  border: 3px solid;
  padding: 12px 12px 12px;
}

.button.style--outline[class*="--small"], .module input[class*="--small"][type="submit"],
.module input[type="submit"].style--outline[class*="--small"] {
  padding: 12.5px 12px 11.5px;
}

.button.style--play, .button.style--backtotop,
.module input[type="submit"].style--play,
.module input[type="submit"].style--backtotop {
  font-size: 18px;
  font-size: 1.8rem;
  padding: 60px 0 0;
}

.button.style--play:hover, .main-content__video-embed:hover .style--play.button, .mason-block:hover .style--play.button, .trending-featured__small:hover .style--play.trending-featured__small--button, .button.style--backtotop:hover, .main-content__video-embed:hover .style--backtotop.button, .mason-block:hover .style--backtotop.button, .trending-featured__small:hover .style--backtotop.trending-featured__small--button,
.module input[type="submit"].style--play:hover,
.module input[type="submit"].style--backtotop:hover {
  color: currentColor;
}

.button.style--play:hover:before, .main-content__video-embed:hover .style--play.button:before, .mason-block:hover .style--play.button:before, .trending-featured__small:hover .style--play.trending-featured__small--button:before, .button.style--backtotop:hover:before, .main-content__video-embed:hover .style--backtotop.button:before, .mason-block:hover .style--backtotop.button:before, .trending-featured__small:hover .style--backtotop.trending-featured__small--button:before,
.module input[type="submit"].style--play:hover:before,
.module input[type="submit"].style--backtotop:hover:before {
  background-color: #fff;
}

.button.style--play:hover:after, .main-content__video-embed:hover .style--play.button:after, .mason-block:hover .style--play.button:after, .trending-featured__small:hover .style--play.trending-featured__small--button:after, .button.style--backtotop:hover:after, .main-content__video-embed:hover .style--backtotop.button:after, .mason-block:hover .style--backtotop.button:after, .trending-featured__small:hover .style--backtotop.trending-featured__small--button:after,
.module input[type="submit"].style--play:hover:after,
.module input[type="submit"].style--backtotop:hover:after {
  border-left-color: #132128;
}

.button.style--play:before, .button.style--play:after, .button.style--backtotop:before, .button.style--backtotop:after,
.module input[type="submit"].style--play:before,
.module input[type="submit"].style--play:after,
.module input[type="submit"].style--backtotop:before,
.module input[type="submit"].style--backtotop:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.button.style--play:before, .button.style--backtotop:before,
.module input[type="submit"].style--play:before,
.module input[type="submit"].style--backtotop:before {
  width: 53px;
  height: 53px;
  border: 3px solid currentColor;
  border-radius: 99em;
}

.button.style--play:after, .button.style--backtotop:after,
.module input[type="submit"].style--play:after,
.module input[type="submit"].style--backtotop:after {
  width: 0;
  height: 0;
  border: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 2px;
  margin-top: 16px;
}

.button.style--backtotop:after,
.module input[type="submit"].style--backtotop:after {
  width: auto;
  height: auto;
  content: '\e90c';
  font-size: 13px;
  font-size: 1.3rem;
  border: none;
  margin: 20px 0 0;
}

.button.style--stacked,
.module input[type="submit"].style--stacked {
  display: block;
}

.button.style--stacked:first-child,
.module input[type="submit"].style--stacked:first-child {
  margin-bottom: 12px;
}

.button.style--stacked + .style--stacked,
.module input[type="submit"].style--stacked + .style--stacked {
  margin-left: 0;
}

.button.style--sidebyside,
.module input[type="submit"].style--sidebyside {
  display: block;
  white-space: normal;
  margin: 12px 0 0;
}

.button.style--pdf,
.module input[type="submit"].style--pdf {
  position: relative;
  width: calc(100% - 53px);
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 53px;
}

.button.style--pdf:before,
.module input[type="submit"].style--pdf:before {
  content: '\e91c';
  position: absolute;
  top: -3px;
  left: -56px;
  width: 53px;
  height: 100%;
  font-size: 40px;
  font-size: 4rem;
  text-align: left;
}

.button.font-color--black,
.module input[type="submit"].font-color--black {
  color: #132128;
}

.button.font-color--green,
.module input[type="submit"].font-color--green {
  color: #42a4e6;
}

.button.font-color--red,
.module input[type="submit"].font-color--red {
  color: #b80000;
}

.button.font-color--sky,
.module input[type="submit"].font-color--sky {
  color: #42a4e6;
}

.button.font-color--sky-dark,
.module input[type="submit"].font-color--sky-dark {
  color: #388bc3;
}

.button.outline-color--white, .module[class*="font-color--white"] input[type="submit"],
.module input[type="submit"].outline-color--white {
  border-color: #fff;
}

.button.outline-color--white:before, .module[class*="font-color--white"] input[type="submit"]:before,
.module input[type="submit"].outline-color--white:before {
  color: #fff;
}

.button.outline-color--white:hover, .module[class*="font-color--white"] input[type="submit"]:hover, .main-content__video-embed:hover .outline-color--white.button, .main-content__video-embed:hover .module[class*="font-color--white"] input[type="submit"], .module[class*="font-color--white"] .main-content__video-embed:hover input[type="submit"], .mason-block:hover .outline-color--white.button, .mason-block:hover .module[class*="font-color--white"] input[type="submit"], .module[class*="font-color--white"] .mason-block:hover input[type="submit"], .trending-featured__small:hover .outline-color--white.trending-featured__small--button,
.module input[type="submit"].outline-color--white:hover {
  color: #132128;
  background-color: #fff;
}

.button.outline-color--black, .module input[type="submit"],
.module input[type="submit"].outline-color--black {
  color: #132128;
  border-color: #132128;
}

.button.outline-color--black:before, .module input[type="submit"]:before,
.module input[type="submit"].outline-color--black:before {
  color: #132128;
}

.button.outline-color--black:hover, .module input[type="submit"]:hover, .main-content__video-embed:hover .outline-color--black.button, .main-content__video-embed:hover .module input[type="submit"], .module .main-content__video-embed:hover input[type="submit"], .mason-block:hover .outline-color--black.button, .mason-block:hover .module input[type="submit"], .module .mason-block:hover input[type="submit"], .trending-featured__small:hover .outline-color--black.trending-featured__small--button,
.module input[type="submit"].outline-color--black:hover {
  color: #fff;
  background-color: #132128;
}

.button.outline-color--green,
.module input[type="submit"].outline-color--green {
  border-color: #42a4e6;
  color: #42a4e6;
}

.button.outline-color--green:before,
.module input[type="submit"].outline-color--green:before {
  color: #42a4e6;
}

.button.outline-color--green:hover, .main-content__video-embed:hover .outline-color--green.button, .mason-block:hover .outline-color--green.button, .trending-featured__small:hover .outline-color--green.trending-featured__small--button,
.module input[type="submit"].outline-color--green:hover {
  color: #fff;
  background-color: #42a4e6;
}

.button.outline-color--red,
.module input[type="submit"].outline-color--red {
  border-color: #b80000;
  color: #b80000;
}

.button.outline-color--red:before,
.module input[type="submit"].outline-color--red:before {
  color: #b80000;
}

.button.outline-color--red:hover, .main-content__video-embed:hover .outline-color--red.button, .mason-block:hover .outline-color--red.button, .trending-featured__small:hover .outline-color--red.trending-featured__small--button,
.module input[type="submit"].outline-color--red:hover {
  color: #fff;
  background-color: #b80000;
}

.button.outline-color--sky,
.module input[type="submit"].outline-color--sky {
  border-color: #42a4e6;
  color: #42a4e6;
}

.button.outline-color--sky:before,
.module input[type="submit"].outline-color--sky:before {
  color: #42a4e6;
}

.button.outline-color--sky:hover, .main-content__video-embed:hover .outline-color--sky.button, .mason-block:hover .outline-color--sky.button, .trending-featured__small:hover .outline-color--sky.trending-featured__small--button,
.module input[type="submit"].outline-color--sky:hover {
  color: #fff;
  background-color: #42a4e6;
}

.button.outline-color--sky-dark,
.module input[type="submit"].outline-color--sky-dark {
  border-color: #388bc3;
  color: #388bc3;
}

.button.outline-color--sky-dark:before,
.module input[type="submit"].outline-color--sky-dark:before {
  color: #388bc3;
}

.button.outline-color--sky-dark:hover, .main-content__video-embed:hover .outline-color--sky-dark.button, .mason-block:hover .outline-color--sky-dark.button, .trending-featured__small:hover .outline-color--sky-dark.trending-featured__small--button,
.module input[type="submit"].outline-color--sky-dark:hover {
  color: #fff;
  background-color: #000;
}

.button [class*="icon-"],
.module input[type="submit"] [class*="icon-"] {
  position: relative;
  top: -2px;
  font-size: 10px;
  font-size: 1rem;
  margin-left: 6px;
}

@media only screen and (min-width: 37.5em) {
  .button,
  .module input[type="submit"] {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .button.size--small, .comment-list .comment-respond .button[type="submit"], .double-feature[data-style="benefit"] .double-feature__item--button, .trending-featured[data-style="live"] .trending-featured__small--button, .trending-featured[data-style="fifty"] .trending-featured__small--button,
  .module input[type="submit"].size--small,
  .module .comment-list .comment-respond input[type="submit"], .comment-list .comment-respond
  .module input[type="submit"] {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 10px 20px 10px;
  }
  .button.style--outline, .module input[type="submit"],
  .module input[type="submit"].style--outline {
    padding: 24px 20px 26px;
  }
  .button.style--outline[class*="--small"], .module input[class*="--small"][type="submit"],
  .module input[type="submit"].style--outline[class*="--small"] {
    padding: 15px 20px 15px;
  }
  .button.style--play, .button.style--backtotop,
  .module input[type="submit"].style--play,
  .module input[type="submit"].style--backtotop {
    padding-top: 88px;
  }
  .button.style--play:before, .button.style--backtotop:before,
  .module input[type="submit"].style--play:before,
  .module input[type="submit"].style--backtotop:before {
    width: 76px;
    height: 76px;
    border: 4px solid currentColor;
  }
  .button.style--play:after, .button.style--backtotop:after,
  .module input[type="submit"].style--play:after,
  .module input[type="submit"].style--backtotop:after {
    margin-top: 28px;
  }
  .button.style--play.large, .mason-block:nth-of-type(6) .button.style--play,
  .mason-block:nth-of-type(7) ~ .mason-block .button.style--play,
  .module input[type="submit"].style--play.large {
    padding-top: 132px;
  }
  .button.style--play.large:before, .mason-block:nth-of-type(6) .button.style--play:before,
  .mason-block:nth-of-type(7) ~ .mason-block .button.style--play:before,
  .module input[type="submit"].style--play.large:before {
    width: 120px;
    height: 120px;
  }
  .button.style--play.large:after, .mason-block:nth-of-type(6) .button.style--play:after,
  .mason-block:nth-of-type(7) ~ .mason-block .button.style--play:after,
  .module input[type="submit"].style--play.large:after {
    border-width: 25px 0 25px 25px;
    margin-top: 36px;
    margin-left: 7px;
  }
  .button.style--backtotop,
  .module input[type="submit"].style--backtotop {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .button.style--pdf,
  .module input[type="submit"].style--pdf {
    width: calc(100% - 73px);
    margin-left: 73px;
  }
  .button.style--pdf:before,
  .module input[type="submit"].style--pdf:before {
    left: -76px;
    width: 73px;
    font-size: 65px;
    font-size: 6.5rem;
  }
}

@media only screen and (min-width: 48em) {
  .button,
  .module input[type="submit"] {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .button.size--small, .comment-list .comment-respond .button[type="submit"], .double-feature[data-style="benefit"] .double-feature__item--button, .trending-featured[data-style="live"] .trending-featured__small--button, .trending-featured[data-style="fifty"] .trending-featured__small--button,
  .module input[type="submit"].size--small,
  .module .comment-list .comment-respond input[type="submit"], .comment-list .comment-respond
  .module input[type="submit"] {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 21px 30px 19px;
  }
  .button.style--outline, .module input[type="submit"],
  .module input[type="submit"].style--outline {
    border-width: 4px;
    padding: 16px 30px 14px;
  }
  .button.style--outline[class*="--small"], .module input[class*="--small"][type="submit"],
  .module input[type="submit"].style--outline[class*="--small"] {
    padding: 16px 30px 14px;
  }
  .button.style--sidebyside,
  .module input[type="submit"].style--sidebyside {
    display: inline-block;
    width: 49%;
    margin-top: 1%;
    margin-right: 1%;
  }
  .button.style--sidebyside:nth-of-type(2n+2),
  .module input[type="submit"].style--sidebyside:nth-of-type(2n+2) {
    margin-right: 0;
    margin-left: 1%;
  }
  .button.style--sidebyside:nth-of-type(2n+3),
  .module input[type="submit"].style--sidebyside:nth-of-type(2n+3) {
    margin-right: 1%;
    margin-left: 0;
  }
  .button.style--pdf,
  .module input[type="submit"].style--pdf {
    width: calc(100% - 83px);
    margin-left: 83px;
  }
  .button.style--pdf:before,
  .module input[type="submit"].style--pdf:before {
    top: -5px;
    left: -88px;
    width: 83px;
    font-size: 79px;
    font-size: 7.9rem;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .global-sidebar .button.style--pdf, .global-sidebar
  .module input[type="submit"].style--pdf {
    width: 100%;
    margin-left: 0;
  }
  .global-sidebar .button.style--pdf:before, .global-sidebar
  .module input[type="submit"].style--pdf:before {
    display: none;
  }
}

/*
 * Button : Submit
 */
.module input[type="submit"] {
  outline: none;
  color: currentColor;
}

.module[class*="font-color--white"] input[type="submit"]:hover {
  color: #132128;
  background-color: #fff;
  border-color: #fff;
}

.paging,
.pager-numbers,
.query-pager {
  line-height: normal;
  text-align: center;
  border-top: 1px solid #ccc;
  padding: 1.5em 0 0;
  margin: 2em 20px 0;
}

.query-pager > div {
  display: inline-block;
  border: 1px solid #ccc;
}

.query-pager > div:first-child {
  border-radius: 4px 0 0 4px;
}

.query-pager > div:last-child {
  border-radius: 0 4px 4px 0;
}

.query-pager a {
  display: block;
  color: #42a4e6;
  text-decoration: none;
  padding: 12px 16px;
}

.query-pager a:hover {
  color: #1d8dd8;
  background: #eee;
}

.paging ul,
.pager-numbers ul {
  overflow: hidden;
  display: block;
  border: 1px solid #ccc;
  border-radius: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.paging li,
.pager-numbers li {
  float: left;
}

.paging li:first-child a,
.pager-numbers li:first-child a {
  border-left: 0;
}

.paging li:first-child, .paging li:last-child,
.pager-numbers li:first-child,
.pager-numbers li:last-child {
  width: 50%;
}

.paging a,
.paging [class*="current"],
.paging [class*="dots"],
.pager-numbers a,
.pager-numbers [class*="current"],
.pager-numbers [class*="dots"] {
  display: none;
  border-left: 1px solid #ccc;
  text-decoration: none;
  padding: 12px 16px;
}

.paging .prev,
.paging .next,
.pager-numbers .prev,
.pager-numbers .next {
  display: block;
  text-align: center;
}

.paging .prev span,
.paging .next span,
.pager-numbers .prev span,
.pager-numbers .next span {
  position: relative;
  top: -1px;
}

.paging a,
.pager-numbers a {
  color: #42a4e6;
}

.paging a:hover,
.pager-numbers a:hover {
  color: #1d8dd8;
  background: #eee;
}

.paging .current,
.pager-numbers .current {
  color: #fff;
  background: #42a4e6;
}

@media only screen and (min-width: 48em) {
  .paging ul,
  .pager-numbers ul {
    display: inline-block;
  }
  .paging li:first-child, .paging li:last-child,
  .pager-numbers li:first-child,
  .pager-numbers li:last-child {
    width: auto;
  }
  .paging a,
  .paging [class*="current"],
  .paging [class*="dots"],
  .pager-numbers a,
  .pager-numbers [class*="current"],
  .pager-numbers [class*="dots"] {
    display: block;
  }
}

/*------------------------------------*	$CSSWIZARDRY-GRIDS (https://github.com/csswizardry/csswizardry-grids)

	MODIFIED EDITION
\*------------------------------------*/
/**
 * CONTENTS
 * INTRODUCTION.........How the grid system works.
 * VARIABLES............Your settings.
 * MIXINS...............Library mixins.
 * GRID SETUP...........Build the grid structure.
 * HELPERS..............Create helper show/hide classes around our breakpoints.
 * WIDTHS...............Build our responsive widths around our breakpoints.
 * PUSH.................Push classes.
 * PULL.................Pull classes.
 */
/*------------------------------------*	$INTRODUCTION
\*------------------------------------*/
/**
 * csswizardry grids provides you with widths to suit a number of breakpoints
 * designed around devices of a size you specify. Out of the box, csswizardry
 * grids caters to the following types of device:
 *
 * palm     --  palm-based devices, like phones and small tablets
 * lap      --  lap-based devices, like iPads or laptops
 * portable --  all of the above
 * desk     --  stationary devices, like desktop computers
 * regular  --  any/all types of device
 *
 * These namespaces are then used in the library to give you the ability to
 * manipulate your layouts based around them, for example:
 *
   <div class="grid__item  col-1-1  lap--col-1-2  desk--col-1-3">
 *
 * This would give you a grid item which is 100% width unless it is on a lap
 * device, at which point it become 50% wide, or it is on a desktop device, at
 * which point it becomes 33.333% width.
 *
 * csswizardry grids also has push and pull classes which allow you to nudge
 * grid items left and right by a defined amount. These follow the same naming
 * convention as above, but are prepended by either `push--` or `pull--`, for
 * example:
 *
   `class="grid__item  col-1-2  push--col-1-2"`
 *
 * This would give you a grid item which is 50% width and pushed over to the
 * right by 50%.
 *
 * All classes in csswizardry grids follow this patten, so you should fairly
 * quickly be able to piece together any combinations you can imagine, for
 * example:
 *
   `class="grid__item  col-1-1  lap--col-1-2  desk--col-1-3  push--desk--col-1-3"`
 *
   `class="grid__item  col-1-4  palm--col-1-2  push--palm--col-1-2"`
 *
   `class="grid__item  palm--col-1-3  desk--5-12"`
 */
/*------------------------------------*	$VARIABLES
\*------------------------------------*/
/**
 * If you want numbers instead of names (example : 'one-whole' becomes '1-1', 'third-quarter' becomes '3-4' etc...)
 */
/**
 * When the first char of a class is a digit, you need to convert it to his unicode
 * http://stackoverflow.com/a/21229901
 * http://www.w3.org/TR/css3-syntax/#escaping
 *
 * But Sass doesn't support it yet...
 * https://github.com/sass/sass/issues/255
 *
 * So while waiting for this is possible, this is the code.
 */
/**
 * If you are building a non-responsive site but would still like to use
 * csswizardry-grids, set this to ‘false’:
 */
/**
 * Is this build mobile first? Setting to ‘true’ means that all grids will be
 * 100% width if you do not apply a more specific class to them.
 */
/**
 * Set the spacing between your grid items.
 */
/**
 * Would you like Sass’ silent classes, or regular CSS classes?
 */
/**
 * Would you like push and pull classes enabled?
 */
/**
 * Using `inline-block` means that the grid items need their whitespace removing
 * in order for them to work correctly. Set the following to true if you are
 * going to achieve this by manually removing/commenting out any whitespace in
 * your HTML yourself.
 *
 * Setting this to false invokes a hack which cannot always be guaranteed,
 * please see the following for more detail:
 *
 * github.com/csswizardry/csswizardry-grids/commit/744d4b23c9d2b77d605b5991e54a397df72e0688
 * github.com/csswizardry/inuit.css/issues/170#issuecomment-14859371
 */
/**
 * Define your breakpoints. The first value is the prefix that shall be used for
 * your classes (e.g. `.palm--one-half`), the second value is the media query
 * that the breakpoint fires at.
 *
 *      phone-portrait = 20em   = 320px
 *     phone-landscape = 30em   = 480px
 *   tablet-S-portrait = 37.5em = 600px
 *   tablet-M-portrait = 48em   = 768px
 *   tablet-L-portrait = 60em   = 960px
 *   desktop-landscape = 64em   = 1024px
 * desktop-L-landscape = 80em   = 1280px
 */
/**
 * Define which namespaced breakpoints you would like to generate for each of
 * widths, push and pull. This is handy if you only need pull on, say, desk, or
 * you only need a new width breakpoint at mobile sizes. It allows you to only
 * compile as much CSS as you need. All are turned on by default, but you can
 * add and remove breakpoints at will.
 *
 * Push and pull shall only be used if `$push` and/or `$pull` and `$responsive`
 * have been set to ‘true’.
 */
/**
 * You do not need to edit anything from this line onward; csswizardry-grids is
 * good to go. Happy griddin’!
 */
/*------------------------------------*	$MIXINS
\*------------------------------------*/
/**
 * These mixins are for the library to use only, you should not need to modify
 * them at all.
 *
 * Enclose a block of code with a media query as named in `$breakpoints`.
 */
/**
 * Drop relative positioning into silent classes which can’t take advantage of
 * the `[class*="push--"]` and `[class*="pull--"]` selectors.
 */
/*------------------------------------*	$GRID SETUP
\*------------------------------------*/
/**
 * 1. Allow the grid system to be used on lists.
 * 2. Remove any margins and paddings that might affect the grid system.
 * 3. Apply a negative `margin-left` to negate the columns’ gutters.
 */
.grid {
  list-style: none;
  /* [1] */
  margin: 0;
  /* [2] */
  padding: 0;
  /* [2] */
  margin-left: -20px;
  /* [3] */
  letter-spacing: -0.32em;
}

/* Opera hack */
.opera:-o-prefocus,
.grid {
  word-spacing: -0.43em;
}

/**
 * 1. Cause columns to stack side-by-side.
 * 2. Space columns apart.
 * 3. Align columns to the tops of each other.
 * 4. Full-width unless told to behave otherwise.
 * 5. Required to combine fluid widths and fixed gutters.
 */
.grid__item {
  display: inline-block;
  /* [1] */
  padding-left: 20px;
  /* [2] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */
  -webkit-box-sizing: border-box;
  /* [5] */
  -moz-box-sizing: border-box;
  /* [5] */
  box-sizing: border-box;
  /* [5] */
  letter-spacing: normal;
  word-spacing: normal;
}

/**
 * Reversed grids allow you to structure your source in the opposite order to
 * how your rendered layout will appear. Extends `.grid`.
 */
.grid--rev {
  direction: rtl;
  text-align: left;
}

.grid--rev > .grid__item {
  direction: ltr;
  text-align: left;
}

/**
 * Gutterless grids have all the properties of regular grids, minus any spacing.
 * Extends `.grid`.
 */
.grid--full {
  margin-left: 0;
}

.grid--full > .grid__item {
  padding-left: 0;
}

/**
 * Align the entire grid to the right. Extends `.grid`.
 */
.grid--right {
  text-align: right;
}

.grid--right > .grid__item {
  text-align: left;
}

/**
 * Centered grids align grid items centrally without needing to use push or pull
 * classes. Extends `.grid`.
 */
.grid--center {
  text-align: center;
}

.grid--center > .grid__item {
  text-align: left;
}

/**
 * Align grid cells vertically (`.grid--middle` or `.grid--bottom`). Extends
 * `.grid`.
 */
.grid--middle > .grid__item {
  vertical-align: middle;
}

.grid--bottom > .grid__item {
  vertical-align: bottom;
}

/**
 * Create grids with narrower gutters. Extends `.grid`.
 */
.grid--narrow {
  margin-left: -10px;
}

.grid--narrow > .grid__item {
  padding-left: 10px;
}

/**
 * Create grids with wider gutters. Extends `.grid`.
 */
.grid--wide {
  margin-left: -40px;
}

.grid--wide > .grid__item {
  padding-left: 40px;
}

/*------------------------------------*	$WIDTHS
\*------------------------------------*/
/**
 * Create our width classes, prefixed by the specified namespace.
 */
/*------------------------------------*  $HELPERS
\*------------------------------------*/
/**
 * Create helper show/hide classes, prefixed by the specified namespace.
 */
/**
 * Our regular, non-responsive width classes.
 */
/**
	 * Whole
	 */
.col-1-1 {
  width: 100%;
}

/**
	 * Halves
	 */
.col-1-2, .col-2-4, .col-3-6, .col-4-8, .col-5-10, .col-6-12 {
  width: 50%;
}

/**
	 * Thirds
	 */
.col-1-3, .col-2-6, .col-3-9, .col-4-12 {
  width: 33.333%;
}

.col-2-3, .col-4-6, .col-6-9, .col-8-12 {
  width: 66.666%;
}

/**
	 * Quarters
	 */
.col-1-4, .col-2-8, .col-3-12 {
  width: 25%;
}

.col-3-4, .col-6-8, .col-9-12 {
  width: 75%;
}

/**
	 * Fifths
	 */
.col-1-5, .col-2-10 {
  width: 20%;
}

.col-2-5, .col-4-10 {
  width: 40%;
}

.col-3-5, .col-6-10 {
  width: 60%;
}

.col-4-5, .col-8-10 {
  width: 80%;
}

/**
	 * Sixths
	 */
.col-1-6 {
  width: 16.666%;
}

.col-5-6, .col-10-12 {
  width: 83.333%;
}

/**
	 * Sevenths
	 */
.col-1-7 {
  width: 14.2857%;
}

.col-2-7 {
  width: 28.5714%;
}

.col-3-7 {
  width: 42.8571%;
}

.col-4-7 {
  width: 57.1428%;
}

.col-5-7 {
  width: 71.4285%;
}

.col-6-7 {
  width: 85.7142%;
}

/**
	 * Eighths
	 */
.col-1-8 {
  width: 12.5%;
}

.col-3-8 {
  width: 37.5%;
}

.col-5-8 {
  width: 62.5%;
}

.col-7-8 {
  width: 87.5%;
}

/**
	 * Ninths
	 */
.col-1-9 {
  width: 11.111%;
}

.col-2-9 {
  width: 22.222%;
}

.col-4-9 {
  width: 44.444%;
}

.col-5-9 {
  width: 55.555%;
}

.col-7-9 {
  width: 77.777%;
}

.col-8-9 {
  width: 88.888%;
}

/**
	 * Tenths
	 */
.col-1-10 {
  width: 10%;
}

.col-3-10 {
  width: 30%;
}

.col-7-10 {
  width: 70%;
}

.col-9-10 {
  width: 90%;
}

/**
	 * Elevenths
	 */
.col-1-11 {
  width: 9.0909%;
}

.col-2-11 {
  width: 18.1818%;
}

.col-3-11 {
  width: 27.2727%;
}

.col-4-11 {
  width: 36.3636%;
}

.col-5-11 {
  width: 45.4545%;
}

.col-6-11 {
  width: 54.5454%;
}

.col-7-11 {
  width: 63.6363%;
}

.col-8-11 {
  width: 72.7272%;
}

.col-9-11 {
  width: 81.8181%;
}

.col-10-11 {
  width: 90.9090%;
}

/**
	 * Twelfths
	 */
.col-1-12 {
  width: 8.333%;
}

.col-2-12 {
  width: 16.666%;
}

.col-5-12 {
  width: 41.666%;
}

.col-7-12 {
  width: 58.333%;
}

.col-11-12 {
  width: 91.666%;
}

.show {
  display: inline-block;
}

.hide {
  display: none;
}

/**
 * Our responsive classes, if we have enabled them.
 */
@media only screen and (min-width: 30em) {
  /**
	 * Whole
	 */
  .xs--col-1-1 {
    width: 100%;
  }
  /**
	 * Halves
	 */
  .xs--col-1-2, .xs--col-2-4, .xs--col-3-6, .xs--col-4-8, .xs--col-5-10, .xs--col-6-12 {
    width: 50%;
  }
  /**
	 * Thirds
	 */
  .xs--col-1-3, .xs--col-2-6, .xs--col-3-9, .xs--col-4-12 {
    width: 33.333%;
  }
  .xs--col-2-3, .xs--col-4-6, .xs--col-6-9, .xs--col-8-12 {
    width: 66.666%;
  }
  /**
	 * Quarters
	 */
  .xs--col-1-4, .xs--col-2-8, .xs--col-3-12 {
    width: 25%;
  }
  .xs--col-3-4, .xs--col-6-8, .xs--col-9-12 {
    width: 75%;
  }
  /**
	 * Fifths
	 */
  .xs--col-1-5, .xs--col-2-10 {
    width: 20%;
  }
  .xs--col-2-5, .xs--col-4-10 {
    width: 40%;
  }
  .xs--col-3-5, .xs--col-6-10 {
    width: 60%;
  }
  .xs--col-4-5, .xs--col-8-10 {
    width: 80%;
  }
  /**
	 * Sixths
	 */
  .xs--col-1-6 {
    width: 16.666%;
  }
  .xs--col-5-6, .xs--col-10-12 {
    width: 83.333%;
  }
  /**
	 * Sevenths
	 */
  .xs--col-1-7 {
    width: 14.2857%;
  }
  .xs--col-2-7 {
    width: 28.5714%;
  }
  .xs--col-3-7 {
    width: 42.8571%;
  }
  .xs--col-4-7 {
    width: 57.1428%;
  }
  .xs--col-5-7 {
    width: 71.4285%;
  }
  .xs--col-6-7 {
    width: 85.7142%;
  }
  /**
	 * Eighths
	 */
  .xs--col-1-8 {
    width: 12.5%;
  }
  .xs--col-3-8 {
    width: 37.5%;
  }
  .xs--col-5-8 {
    width: 62.5%;
  }
  .xs--col-7-8 {
    width: 87.5%;
  }
  /**
	 * Ninths
	 */
  .xs--col-1-9 {
    width: 11.111%;
  }
  .xs--col-2-9 {
    width: 22.222%;
  }
  .xs--col-4-9 {
    width: 44.444%;
  }
  .xs--col-5-9 {
    width: 55.555%;
  }
  .xs--col-7-9 {
    width: 77.777%;
  }
  .xs--col-8-9 {
    width: 88.888%;
  }
  /**
	 * Tenths
	 */
  .xs--col-1-10 {
    width: 10%;
  }
  .xs--col-3-10 {
    width: 30%;
  }
  .xs--col-7-10 {
    width: 70%;
  }
  .xs--col-9-10 {
    width: 90%;
  }
  /**
	 * Elevenths
	 */
  .xs--col-1-11 {
    width: 9.0909%;
  }
  .xs--col-2-11 {
    width: 18.1818%;
  }
  .xs--col-3-11 {
    width: 27.2727%;
  }
  .xs--col-4-11 {
    width: 36.3636%;
  }
  .xs--col-5-11 {
    width: 45.4545%;
  }
  .xs--col-6-11 {
    width: 54.5454%;
  }
  .xs--col-7-11 {
    width: 63.6363%;
  }
  .xs--col-8-11 {
    width: 72.7272%;
  }
  .xs--col-9-11 {
    width: 81.8181%;
  }
  .xs--col-10-11 {
    width: 90.9090%;
  }
  /**
	 * Twelfths
	 */
  .xs--col-1-12 {
    width: 8.333%;
  }
  .xs--col-2-12 {
    width: 16.666%;
  }
  .xs--col-5-12 {
    width: 41.666%;
  }
  .xs--col-7-12 {
    width: 58.333%;
  }
  .xs--col-11-12 {
    width: 91.666%;
  }
}

@media only screen and (min-width: 30em) {
  .xs--show {
    display: inline-block;
  }
  .xs--hide {
    display: none;
  }
}

@media only screen and (min-width: 37.5em) {
  /**
	 * Whole
	 */
  .s--col-1-1 {
    width: 100%;
  }
  /**
	 * Halves
	 */
  .s--col-1-2, .s--col-2-4, .s--col-3-6, .s--col-4-8, .s--col-5-10, .s--col-6-12 {
    width: 50%;
  }
  /**
	 * Thirds
	 */
  .s--col-1-3, .s--col-2-6, .s--col-3-9, .s--col-4-12 {
    width: 33.333%;
  }
  .s--col-2-3, .s--col-4-6, .s--col-6-9, .s--col-8-12 {
    width: 66.666%;
  }
  /**
	 * Quarters
	 */
  .s--col-1-4, .s--col-2-8, .s--col-3-12 {
    width: 25%;
  }
  .s--col-3-4, .s--col-6-8, .s--col-9-12 {
    width: 75%;
  }
  /**
	 * Fifths
	 */
  .s--col-1-5, .s--col-2-10 {
    width: 20%;
  }
  .s--col-2-5, .s--col-4-10 {
    width: 40%;
  }
  .s--col-3-5, .s--col-6-10 {
    width: 60%;
  }
  .s--col-4-5, .s--col-8-10 {
    width: 80%;
  }
  /**
	 * Sixths
	 */
  .s--col-1-6 {
    width: 16.666%;
  }
  .s--col-5-6, .s--col-10-12 {
    width: 83.333%;
  }
  /**
	 * Sevenths
	 */
  .s--col-1-7 {
    width: 14.2857%;
  }
  .s--col-2-7 {
    width: 28.5714%;
  }
  .s--col-3-7 {
    width: 42.8571%;
  }
  .s--col-4-7 {
    width: 57.1428%;
  }
  .s--col-5-7 {
    width: 71.4285%;
  }
  .s--col-6-7 {
    width: 85.7142%;
  }
  /**
	 * Eighths
	 */
  .s--col-1-8 {
    width: 12.5%;
  }
  .s--col-3-8 {
    width: 37.5%;
  }
  .s--col-5-8 {
    width: 62.5%;
  }
  .s--col-7-8 {
    width: 87.5%;
  }
  /**
	 * Ninths
	 */
  .s--col-1-9 {
    width: 11.111%;
  }
  .s--col-2-9 {
    width: 22.222%;
  }
  .s--col-4-9 {
    width: 44.444%;
  }
  .s--col-5-9 {
    width: 55.555%;
  }
  .s--col-7-9 {
    width: 77.777%;
  }
  .s--col-8-9 {
    width: 88.888%;
  }
  /**
	 * Tenths
	 */
  .s--col-1-10 {
    width: 10%;
  }
  .s--col-3-10 {
    width: 30%;
  }
  .s--col-7-10 {
    width: 70%;
  }
  .s--col-9-10 {
    width: 90%;
  }
  /**
	 * Elevenths
	 */
  .s--col-1-11 {
    width: 9.0909%;
  }
  .s--col-2-11 {
    width: 18.1818%;
  }
  .s--col-3-11 {
    width: 27.2727%;
  }
  .s--col-4-11 {
    width: 36.3636%;
  }
  .s--col-5-11 {
    width: 45.4545%;
  }
  .s--col-6-11 {
    width: 54.5454%;
  }
  .s--col-7-11 {
    width: 63.6363%;
  }
  .s--col-8-11 {
    width: 72.7272%;
  }
  .s--col-9-11 {
    width: 81.8181%;
  }
  .s--col-10-11 {
    width: 90.9090%;
  }
  /**
	 * Twelfths
	 */
  .s--col-1-12 {
    width: 8.333%;
  }
  .s--col-2-12 {
    width: 16.666%;
  }
  .s--col-5-12 {
    width: 41.666%;
  }
  .s--col-7-12 {
    width: 58.333%;
  }
  .s--col-11-12 {
    width: 91.666%;
  }
}

@media only screen and (min-width: 37.5em) {
  .s--show {
    display: inline-block;
  }
  .s--hide {
    display: none;
  }
}

@media only screen and (min-width: 48em) {
  /**
	 * Whole
	 */
  .m--col-1-1 {
    width: 100%;
  }
  /**
	 * Halves
	 */
  .m--col-1-2, .m--col-2-4, .m--col-3-6, .m--col-4-8, .m--col-5-10, .m--col-6-12 {
    width: 50%;
  }
  /**
	 * Thirds
	 */
  .m--col-1-3, .m--col-2-6, .m--col-3-9, .m--col-4-12 {
    width: 33.333%;
  }
  .m--col-2-3, .m--col-4-6, .m--col-6-9, .m--col-8-12 {
    width: 66.666%;
  }
  /**
	 * Quarters
	 */
  .m--col-1-4, .m--col-2-8, .m--col-3-12 {
    width: 25%;
  }
  .m--col-3-4, .m--col-6-8, .m--col-9-12 {
    width: 75%;
  }
  /**
	 * Fifths
	 */
  .m--col-1-5, .m--col-2-10 {
    width: 20%;
  }
  .m--col-2-5, .m--col-4-10 {
    width: 40%;
  }
  .m--col-3-5, .m--col-6-10 {
    width: 60%;
  }
  .m--col-4-5, .m--col-8-10 {
    width: 80%;
  }
  /**
	 * Sixths
	 */
  .m--col-1-6 {
    width: 16.666%;
  }
  .m--col-5-6, .m--col-10-12 {
    width: 83.333%;
  }
  /**
	 * Sevenths
	 */
  .m--col-1-7 {
    width: 14.2857%;
  }
  .m--col-2-7 {
    width: 28.5714%;
  }
  .m--col-3-7 {
    width: 42.8571%;
  }
  .m--col-4-7 {
    width: 57.1428%;
  }
  .m--col-5-7 {
    width: 71.4285%;
  }
  .m--col-6-7 {
    width: 85.7142%;
  }
  /**
	 * Eighths
	 */
  .m--col-1-8 {
    width: 12.5%;
  }
  .m--col-3-8 {
    width: 37.5%;
  }
  .m--col-5-8 {
    width: 62.5%;
  }
  .m--col-7-8 {
    width: 87.5%;
  }
  /**
	 * Ninths
	 */
  .m--col-1-9 {
    width: 11.111%;
  }
  .m--col-2-9 {
    width: 22.222%;
  }
  .m--col-4-9 {
    width: 44.444%;
  }
  .m--col-5-9 {
    width: 55.555%;
  }
  .m--col-7-9 {
    width: 77.777%;
  }
  .m--col-8-9 {
    width: 88.888%;
  }
  /**
	 * Tenths
	 */
  .m--col-1-10 {
    width: 10%;
  }
  .m--col-3-10 {
    width: 30%;
  }
  .m--col-7-10 {
    width: 70%;
  }
  .m--col-9-10 {
    width: 90%;
  }
  /**
	 * Elevenths
	 */
  .m--col-1-11 {
    width: 9.0909%;
  }
  .m--col-2-11 {
    width: 18.1818%;
  }
  .m--col-3-11 {
    width: 27.2727%;
  }
  .m--col-4-11 {
    width: 36.3636%;
  }
  .m--col-5-11 {
    width: 45.4545%;
  }
  .m--col-6-11 {
    width: 54.5454%;
  }
  .m--col-7-11 {
    width: 63.6363%;
  }
  .m--col-8-11 {
    width: 72.7272%;
  }
  .m--col-9-11 {
    width: 81.8181%;
  }
  .m--col-10-11 {
    width: 90.9090%;
  }
  /**
	 * Twelfths
	 */
  .m--col-1-12 {
    width: 8.333%;
  }
  .m--col-2-12 {
    width: 16.666%;
  }
  .m--col-5-12 {
    width: 41.666%;
  }
  .m--col-7-12 {
    width: 58.333%;
  }
  .m--col-11-12 {
    width: 91.666%;
  }
}

@media only screen and (min-width: 48em) {
  .m--show {
    display: inline-block;
  }
  .m--hide {
    display: none;
  }
}

@media only screen and (min-width: 60em) {
  /**
	 * Whole
	 */
  .l--col-1-1 {
    width: 100%;
  }
  /**
	 * Halves
	 */
  .l--col-1-2, .l--col-2-4, .l--col-3-6, .l--col-4-8, .l--col-5-10, .l--col-6-12 {
    width: 50%;
  }
  /**
	 * Thirds
	 */
  .l--col-1-3, .l--col-2-6, .l--col-3-9, .l--col-4-12 {
    width: 33.333%;
  }
  .l--col-2-3, .l--col-4-6, .l--col-6-9, .l--col-8-12 {
    width: 66.666%;
  }
  /**
	 * Quarters
	 */
  .l--col-1-4, .l--col-2-8, .l--col-3-12 {
    width: 25%;
  }
  .l--col-3-4, .l--col-6-8, .l--col-9-12 {
    width: 75%;
  }
  /**
	 * Fifths
	 */
  .l--col-1-5, .l--col-2-10 {
    width: 20%;
  }
  .l--col-2-5, .l--col-4-10 {
    width: 40%;
  }
  .l--col-3-5, .l--col-6-10 {
    width: 60%;
  }
  .l--col-4-5, .l--col-8-10 {
    width: 80%;
  }
  /**
	 * Sixths
	 */
  .l--col-1-6 {
    width: 16.666%;
  }
  .l--col-5-6, .l--col-10-12 {
    width: 83.333%;
  }
  /**
	 * Sevenths
	 */
  .l--col-1-7 {
    width: 14.2857%;
  }
  .l--col-2-7 {
    width: 28.5714%;
  }
  .l--col-3-7 {
    width: 42.8571%;
  }
  .l--col-4-7 {
    width: 57.1428%;
  }
  .l--col-5-7 {
    width: 71.4285%;
  }
  .l--col-6-7 {
    width: 85.7142%;
  }
  /**
	 * Eighths
	 */
  .l--col-1-8 {
    width: 12.5%;
  }
  .l--col-3-8 {
    width: 37.5%;
  }
  .l--col-5-8 {
    width: 62.5%;
  }
  .l--col-7-8 {
    width: 87.5%;
  }
  /**
	 * Ninths
	 */
  .l--col-1-9 {
    width: 11.111%;
  }
  .l--col-2-9 {
    width: 22.222%;
  }
  .l--col-4-9 {
    width: 44.444%;
  }
  .l--col-5-9 {
    width: 55.555%;
  }
  .l--col-7-9 {
    width: 77.777%;
  }
  .l--col-8-9 {
    width: 88.888%;
  }
  /**
	 * Tenths
	 */
  .l--col-1-10 {
    width: 10%;
  }
  .l--col-3-10 {
    width: 30%;
  }
  .l--col-7-10 {
    width: 70%;
  }
  .l--col-9-10 {
    width: 90%;
  }
  /**
	 * Elevenths
	 */
  .l--col-1-11 {
    width: 9.0909%;
  }
  .l--col-2-11 {
    width: 18.1818%;
  }
  .l--col-3-11 {
    width: 27.2727%;
  }
  .l--col-4-11 {
    width: 36.3636%;
  }
  .l--col-5-11 {
    width: 45.4545%;
  }
  .l--col-6-11 {
    width: 54.5454%;
  }
  .l--col-7-11 {
    width: 63.6363%;
  }
  .l--col-8-11 {
    width: 72.7272%;
  }
  .l--col-9-11 {
    width: 81.8181%;
  }
  .l--col-10-11 {
    width: 90.9090%;
  }
  /**
	 * Twelfths
	 */
  .l--col-1-12 {
    width: 8.333%;
  }
  .l--col-2-12 {
    width: 16.666%;
  }
  .l--col-5-12 {
    width: 41.666%;
  }
  .l--col-7-12 {
    width: 58.333%;
  }
  .l--col-11-12 {
    width: 91.666%;
  }
}

@media only screen and (min-width: 60em) {
  .l--show {
    display: inline-block;
  }
  .l--hide {
    display: none;
  }
}

@media only screen and (min-width: 64em) {
  /**
	 * Whole
	 */
  .xl--col-1-1 {
    width: 100%;
  }
  /**
	 * Halves
	 */
  .xl--col-1-2, .xl--col-2-4, .xl--col-3-6, .xl--col-4-8, .xl--col-5-10, .xl--col-6-12 {
    width: 50%;
  }
  /**
	 * Thirds
	 */
  .xl--col-1-3, .xl--col-2-6, .xl--col-3-9, .xl--col-4-12 {
    width: 33.333%;
  }
  .xl--col-2-3, .xl--col-4-6, .xl--col-6-9, .xl--col-8-12 {
    width: 66.666%;
  }
  /**
	 * Quarters
	 */
  .xl--col-1-4, .xl--col-2-8, .xl--col-3-12 {
    width: 25%;
  }
  .xl--col-3-4, .xl--col-6-8, .xl--col-9-12 {
    width: 75%;
  }
  /**
	 * Fifths
	 */
  .xl--col-1-5, .xl--col-2-10 {
    width: 20%;
  }
  .xl--col-2-5, .xl--col-4-10 {
    width: 40%;
  }
  .xl--col-3-5, .xl--col-6-10 {
    width: 60%;
  }
  .xl--col-4-5, .xl--col-8-10 {
    width: 80%;
  }
  /**
	 * Sixths
	 */
  .xl--col-1-6 {
    width: 16.666%;
  }
  .xl--col-5-6, .xl--col-10-12 {
    width: 83.333%;
  }
  /**
	 * Sevenths
	 */
  .xl--col-1-7 {
    width: 14.2857%;
  }
  .xl--col-2-7 {
    width: 28.5714%;
  }
  .xl--col-3-7 {
    width: 42.8571%;
  }
  .xl--col-4-7 {
    width: 57.1428%;
  }
  .xl--col-5-7 {
    width: 71.4285%;
  }
  .xl--col-6-7 {
    width: 85.7142%;
  }
  /**
	 * Eighths
	 */
  .xl--col-1-8 {
    width: 12.5%;
  }
  .xl--col-3-8 {
    width: 37.5%;
  }
  .xl--col-5-8 {
    width: 62.5%;
  }
  .xl--col-7-8 {
    width: 87.5%;
  }
  /**
	 * Ninths
	 */
  .xl--col-1-9 {
    width: 11.111%;
  }
  .xl--col-2-9 {
    width: 22.222%;
  }
  .xl--col-4-9 {
    width: 44.444%;
  }
  .xl--col-5-9 {
    width: 55.555%;
  }
  .xl--col-7-9 {
    width: 77.777%;
  }
  .xl--col-8-9 {
    width: 88.888%;
  }
  /**
	 * Tenths
	 */
  .xl--col-1-10 {
    width: 10%;
  }
  .xl--col-3-10 {
    width: 30%;
  }
  .xl--col-7-10 {
    width: 70%;
  }
  .xl--col-9-10 {
    width: 90%;
  }
  /**
	 * Elevenths
	 */
  .xl--col-1-11 {
    width: 9.0909%;
  }
  .xl--col-2-11 {
    width: 18.1818%;
  }
  .xl--col-3-11 {
    width: 27.2727%;
  }
  .xl--col-4-11 {
    width: 36.3636%;
  }
  .xl--col-5-11 {
    width: 45.4545%;
  }
  .xl--col-6-11 {
    width: 54.5454%;
  }
  .xl--col-7-11 {
    width: 63.6363%;
  }
  .xl--col-8-11 {
    width: 72.7272%;
  }
  .xl--col-9-11 {
    width: 81.8181%;
  }
  .xl--col-10-11 {
    width: 90.9090%;
  }
  /**
	 * Twelfths
	 */
  .xl--col-1-12 {
    width: 8.333%;
  }
  .xl--col-2-12 {
    width: 16.666%;
  }
  .xl--col-5-12 {
    width: 41.666%;
  }
  .xl--col-7-12 {
    width: 58.333%;
  }
  .xl--col-11-12 {
    width: 91.666%;
  }
}

@media only screen and (min-width: 64em) {
  .xl--show {
    display: inline-block;
  }
  .xl--hide {
    display: none;
  }
}

@media only screen and (min-width: 64.0625em) {
  /**
	 * Whole
	 */
  .xl-weird--col-1-1 {
    width: 100%;
  }
  /**
	 * Halves
	 */
  .xl-weird--col-1-2, .xl-weird--col-2-4, .xl-weird--col-3-6, .xl-weird--col-4-8, .xl-weird--col-5-10, .xl-weird--col-6-12 {
    width: 50%;
  }
  /**
	 * Thirds
	 */
  .xl-weird--col-1-3, .xl-weird--col-2-6, .xl-weird--col-3-9, .xl-weird--col-4-12 {
    width: 33.333%;
  }
  .xl-weird--col-2-3, .xl-weird--col-4-6, .xl-weird--col-6-9, .xl-weird--col-8-12 {
    width: 66.666%;
  }
  /**
	 * Quarters
	 */
  .xl-weird--col-1-4, .xl-weird--col-2-8, .xl-weird--col-3-12 {
    width: 25%;
  }
  .xl-weird--col-3-4, .xl-weird--col-6-8, .xl-weird--col-9-12 {
    width: 75%;
  }
  /**
	 * Fifths
	 */
  .xl-weird--col-1-5, .xl-weird--col-2-10 {
    width: 20%;
  }
  .xl-weird--col-2-5, .xl-weird--col-4-10 {
    width: 40%;
  }
  .xl-weird--col-3-5, .xl-weird--col-6-10 {
    width: 60%;
  }
  .xl-weird--col-4-5, .xl-weird--col-8-10 {
    width: 80%;
  }
  /**
	 * Sixths
	 */
  .xl-weird--col-1-6 {
    width: 16.666%;
  }
  .xl-weird--col-5-6, .xl-weird--col-10-12 {
    width: 83.333%;
  }
  /**
	 * Sevenths
	 */
  .xl-weird--col-1-7 {
    width: 14.2857%;
  }
  .xl-weird--col-2-7 {
    width: 28.5714%;
  }
  .xl-weird--col-3-7 {
    width: 42.8571%;
  }
  .xl-weird--col-4-7 {
    width: 57.1428%;
  }
  .xl-weird--col-5-7 {
    width: 71.4285%;
  }
  .xl-weird--col-6-7 {
    width: 85.7142%;
  }
  /**
	 * Eighths
	 */
  .xl-weird--col-1-8 {
    width: 12.5%;
  }
  .xl-weird--col-3-8 {
    width: 37.5%;
  }
  .xl-weird--col-5-8 {
    width: 62.5%;
  }
  .xl-weird--col-7-8 {
    width: 87.5%;
  }
  /**
	 * Ninths
	 */
  .xl-weird--col-1-9 {
    width: 11.111%;
  }
  .xl-weird--col-2-9 {
    width: 22.222%;
  }
  .xl-weird--col-4-9 {
    width: 44.444%;
  }
  .xl-weird--col-5-9 {
    width: 55.555%;
  }
  .xl-weird--col-7-9 {
    width: 77.777%;
  }
  .xl-weird--col-8-9 {
    width: 88.888%;
  }
  /**
	 * Tenths
	 */
  .xl-weird--col-1-10 {
    width: 10%;
  }
  .xl-weird--col-3-10 {
    width: 30%;
  }
  .xl-weird--col-7-10 {
    width: 70%;
  }
  .xl-weird--col-9-10 {
    width: 90%;
  }
  /**
	 * Elevenths
	 */
  .xl-weird--col-1-11 {
    width: 9.0909%;
  }
  .xl-weird--col-2-11 {
    width: 18.1818%;
  }
  .xl-weird--col-3-11 {
    width: 27.2727%;
  }
  .xl-weird--col-4-11 {
    width: 36.3636%;
  }
  .xl-weird--col-5-11 {
    width: 45.4545%;
  }
  .xl-weird--col-6-11 {
    width: 54.5454%;
  }
  .xl-weird--col-7-11 {
    width: 63.6363%;
  }
  .xl-weird--col-8-11 {
    width: 72.7272%;
  }
  .xl-weird--col-9-11 {
    width: 81.8181%;
  }
  .xl-weird--col-10-11 {
    width: 90.9090%;
  }
  /**
	 * Twelfths
	 */
  .xl-weird--col-1-12 {
    width: 8.333%;
  }
  .xl-weird--col-2-12 {
    width: 16.666%;
  }
  .xl-weird--col-5-12 {
    width: 41.666%;
  }
  .xl-weird--col-7-12 {
    width: 58.333%;
  }
  .xl-weird--col-11-12 {
    width: 91.666%;
  }
}

@media only screen and (min-width: 64.0625em) {
  .xl-weird--show {
    display: inline-block;
  }
  .xl-weird--hide {
    display: none;
  }
}

/*------------------------------------*	$PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*	$PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items back to the left by certain amounts.
 */
/*
 * Wrapper
 */
.wrapper {
  width: 100%;
  max-width: 1230px;
  margin: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.wrapper--content {
  max-width: 750px;
}

@media only screen and (min-width: 80em) {
  .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

/*
 * Content & Sidebar Wrap
 */
.content-sidebar-wrap {
  max-width: 1777px;
  margin: 0 auto;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
}

@media only screen and (min-width: 60em) {
  .content-sidebar-wrap {
    flex-direction: row;
  }
}

/*
 * Breadcrumbs
 */
.breadcrumbs {
  position: relative;
  line-height: 1;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  background-color: #132128;
}

.breadcrumbs__wrap {
  max-width: 1777px;
  text-align: left;
  padding: 11px 20px 13px;
  margin: 0 auto;
}

.breadcrumbs__item {
  padding-left: 11px;
}

.breadcrumbs__item:first-child {
  padding-left: 0;
}

.breadcrumbs__item:after {
  position: relative;
  top: -4px;
  content: '>';
  color: #fff;
  font-size: 9px;
  font-size: 0.9rem;
  padding-left: 11px;
}

.breadcrumbs__item.current {
  font-size: 20px;
  font-size: 2rem;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  text-transform: uppercase;
}

.breadcrumbs__item.current:after {
  display: none;
}

.main-nav + .breadcrumbs {
  top: 2px;
  margin-bottom: 4px;
}

.separator {
  margin: 0 1rem;
}

/*
 * Sharing
 */
.sharing {
  min-height: 70px;
  text-align: center;
  line-height: 42px;
}

.sharing[class*="background--"] {
  padding: 12px;
}

.main-content__header .sharing[class*="background--"] {
  float: right;
  min-height: 109px;
  padding: 24px 24px 19px 24px;
}

.sharing .at-icon-wrapper,
.sharing .at4-visually-hidden {
  display: none;
  background-color: transparent !important;
}

.sharing .at-share-tbx-element .at-share-btn, .sharing .at4-jumboshare .at-share-btn {
  display: none;
  cursor: pointer;
  vertical-align: middle;
  color: #464646;
  font-size: 22px;
  font-size: 2.2rem;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 0 0 11px;
  transition: all 0.3s ease;
}

.sharing .at-share-tbx-element .at-share-btn:hover, .sharing .at4-jumboshare .at-share-btn:hover {
  color: #b80000;
}

.sharing .at-share-tbx-element .at-share-btn:first-child, .sharing .at4-jumboshare .at-share-btn:first-child {
  margin-left: 0;
}

.sharing .at-share-tbx-element .at-share-btn .at-label, .sharing .at4-jumboshare .at-share-btn .at-label {
  display: none;
}

.sharing .at-share-tbx-element .at-share-btn.at-svc-facebook:before, .sharing .at4-jumboshare .at-share-btn.at-svc-facebook:before {
  content: "\e907";
}

.sharing .at-share-tbx-element .at-share-btn.at-svc-twitter:before, .sharing .at4-jumboshare .at-share-btn.at-svc-twitter:before {
  content: "\e908";
}

.sharing .at-share-tbx-element .at-share-btn.at-svc-linkedin:before, .sharing .at4-jumboshare .at-share-btn.at-svc-linkedin:before {
  content: "\e90a";
}

.sharing .at-share-tbx-element .at-share-btn.at-svc-compact:after, .sharing .at4-jumboshare .at-share-btn.at-svc-compact:after {
  content: "\e917";
}

.sharing .at-share-tbx-element .at-share-btn.at-svc-print:before, .sharing .at4-jumboshare .at-share-btn.at-svc-print:before {
  content: "\e918";
}

.sharing .at-share-tbx-element .at-share-btn.at-svc-email:before, .sharing .at4-jumboshare .at-share-btn.at-svc-email:before {
  content: "\e919";
}

.sharing .at-share-tbx-element .at-share-btn.at-svc-pinterest_share:before, .sharing .at4-jumboshare .at-share-btn.at-svc-pinterest_share:before {
  content: "\e91a";
}

.sharing .at-share-tbx-element .at-share-btn.at-svc-google_plusone_share:before, .sharing .at4-jumboshare .at-share-btn.at-svc-google_plusone_share:before {
  content: "\e91b";
}

.sharing .at-share-tbx-element .at-share-btn.at-svc-compact, .sharing .at4-jumboshare .at-share-btn.at-svc-compact {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.sharing .at-share-tbx-element .at-share-btn.at-svc-compact:before, .sharing .at4-jumboshare .at-share-btn.at-svc-compact:before {
  display: none;
  float: left;
  content: 'Share';
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  text-transform: uppercase;
  padding: 4px 15px 0 0;
}

.sharing .at-share-tbx-element .at_flat_counter, .sharing .at-share-tbx-element .at4-count-container, .sharing .at4-jumboshare .at_flat_counter, .sharing .at4-jumboshare .at4-count-container {
  cursor: default;
  float: left;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  min-width: 50%;
  font-size: 22px;
  font-size: 2.2rem;
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  line-height: 1;
  text-align: center;
  border-right: 2px solid #d9d9d9;
  background: none;
  padding: 5px 5px 6px 0;
  margin: 0 17px 0 0;
  display: none;
  /*&:after {
				content: 'Shares';
				position: relative;
				top: 0 !important;
				left: 0 !important;
				width: auto;
				height: auto;
				@include font-rem(12,true);
				border-width: 0;
			}*/
}

.sharing .at-share-tbx-element .at_flat_counter ~ .at_flat_counter, .sharing .at-share-tbx-element .at_flat_counter ~ .at4-count-container, .sharing .at-share-tbx-element .at4-count-container ~ .at_flat_counter, .sharing .at-share-tbx-element .at4-count-container ~ .at4-count-container, .sharing .at4-jumboshare .at_flat_counter ~ .at_flat_counter, .sharing .at4-jumboshare .at_flat_counter ~ .at4-count-container, .sharing .at4-jumboshare .at4-count-container ~ .at_flat_counter, .sharing .at4-jumboshare .at4-count-container ~ .at4-count-container {
  display: none;
}

.sharing .at-share-tbx-element .at_flat_counter .at4-count, .sharing .at-share-tbx-element .at4-count-container .at4-count, .sharing .at4-jumboshare .at_flat_counter .at4-count, .sharing .at4-jumboshare .at4-count-container .at4-count {
  font-size: inherit;
  line-height: inherit;
}

@media only screen and (min-width: 37.5em) {
  .sharing .at-share-tbx-element .at-share-btn, .sharing .at4-jumboshare .at-share-btn {
    display: inline-block;
  }
  .sharing .at-share-tbx-element .at-share-btn.at-svc-compact, .sharing .at4-jumboshare .at-share-btn.at-svc-compact {
    width: auto;
  }
  .sharing .at-share-tbx-element .at_flat_counter, .sharing .at-share-tbx-element .at4-count-container, .sharing .at4-jumboshare .at_flat_counter, .sharing .at4-jumboshare .at4-count-container {
    display: block;
  }
  .sharing .at-share-tbx-element .at_flat_counter ~ .at-share-btn, .sharing .at-share-tbx-element .at4-count-container ~ .at-share-btn, .sharing .at4-jumboshare .at_flat_counter ~ .at-share-btn, .sharing .at4-jumboshare .at4-count-container ~ .at-share-btn {
    display: none;
  }
}

@media only screen and (min-width: 48em) {
  .sharing {
    text-align: left;
  }
  .sharing[class*="background--"] {
    min-height: 114px;
    line-height: 60px;
    padding: 24px;
  }
  .sharing .at-share-tbx-element .at-share-btn, .sharing .at4-jumboshare .at-share-btn {
    display: inline-block;
    font-size: 32px;
    font-size: 3.2rem;
    margin-left: 24px;
  }
  .sharing .at-share-tbx-element .at-share-btn.at-svc-compact:before, .sharing .at4-jumboshare .at-share-btn.at-svc-compact:before {
    display: block;
    padding-top: 10px;
    padding-right: 24px;
  }
  .sharing .at-share-tbx-element .at_flat_counter, .sharing .at-share-tbx-element .at4-count-container, .sharing .at4-jumboshare .at_flat_counter, .sharing .at4-jumboshare .at4-count-container {
    min-width: 60px;
    padding: 15px 5px 16px 0;
  }
  .sharing .at-share-tbx-element .at_flat_counter ~ .at-share-btn, .sharing .at-share-tbx-element .at4-count-container ~ .at-share-btn, .sharing .at4-jumboshare .at_flat_counter ~ .at-share-btn, .sharing .at4-jumboshare .at4-count-container ~ .at-share-btn {
    display: inline-block;
  }
}

@media only screen and (min-width: 64em) {
  .sharing .at-share-tbx-element .at-share-btn, .sharing .at4-jumboshare .at-share-btn {
    display: none;
  }
  .sharing .at-share-tbx-element .at-share-btn.at-svc-compact, .sharing .at4-jumboshare .at-share-btn.at-svc-compact {
    display: inline-block;
    width: auto;
  }
  .sharing .at-share-tbx-element .at-share-btn.at-svc-compact:before, .sharing .at4-jumboshare .at-share-btn.at-svc-compact:before {
    display: none;
  }
  .sharing .at-share-tbx-element .at_flat_counter ~ .at-share-btn, .sharing .at-share-tbx-element .at4-count-container ~ .at-share-btn, .sharing .at4-jumboshare .at_flat_counter ~ .at-share-btn, .sharing .at4-jumboshare .at4-count-container ~ .at-share-btn {
    display: none;
  }
}

@media only screen and (min-width: 80em) {
  .sharing .at-share-tbx-element .at-share-btn, .sharing .at4-jumboshare .at-share-btn {
    display: inline-block;
    font-size: 22px;
    font-size: 2.2rem;
    margin-left: 15px;
  }
  .sharing .at-share-tbx-element .at-share-btn.at-svc-compact:before, .sharing .at4-jumboshare .at-share-btn.at-svc-compact:before {
    display: block;
    padding-top: 4px;
  }
  .sharing .at-share-tbx-element .at_flat_counter ~ .at-share-btn, .sharing .at-share-tbx-element .at4-count-container ~ .at-share-btn, .sharing .at4-jumboshare .at_flat_counter ~ .at-share-btn, .sharing .at4-jumboshare .at4-count-container ~ .at-share-btn {
    display: inline-block;
  }
}

@media only screen and (min-width: 90em) {
  .sharing .at-share-tbx-element .at-share-btn, .sharing .at4-jumboshare .at-share-btn {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .sharing .at-share-tbx-element .at-share-btn.at-svc-compact:before, .sharing .at4-jumboshare .at-share-btn.at-svc-compact:before {
    padding-top: 7px;
  }
}

@media only screen and (min-width: 120em) {
  .sharing .at-share-tbx-element .at-share-btn, .sharing .at4-jumboshare .at-share-btn {
    font-size: 32px;
    font-size: 3.2rem;
    margin-left: 24px;
  }
  .sharing .at-share-tbx-element .at-share-btn.at-svc-compact:before, .sharing .at4-jumboshare .at-share-btn.at-svc-compact:before {
    padding-top: 10px;
    padding-right: 24px;
  }
}

/*
 * Account Overrides
 */
#nf-dashboard {
  min-height: 200px;
}

[aria-controls*="my-account-section-about-me"],
[href*="#my-account-section-about-me"],
#my-account-section-about-me {
  display: none !important;
}

.select2-drop {
  font-size: 13px;
  font-size: 1.3rem;
}

.select2-container-multi {
  font-size: 13px;
  font-size: 1.3rem;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
  padding-right: 25px;
}

#message {
  border: 1px solid #bce8f1;
  color: #31708f;
  background-color: #d9edf7;
  background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
  background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
  background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
  padding: 15px;
}

#message a {
  color: #245269;
  font-weight: bold;
}

#message > p,
#message > ul {
  padding-bottom: 0;
  margin-bottom: 0;
}

#message > p + p {
  padding-top: 5px;
}

/*
 * Gallery Lightbox
 */
.fs-lightbox.gallery-lightbox {
  padding: 0;
}

.fs-lightbox.gallery-lightbox .fs-lightbox-content {
  padding-right: 20px;
  padding-left: 20px;
}

.fs-lightbox.gallery-lightbox .fs-lightbox-image_container {
  z-index: 106;
  width: 100%;
  left: 0 !important;
}

.fs-lightbox.gallery-lightbox .fs-lightbox-image {
  left: 0 !important;
  width: auto !important;
  max-height: 833px;
}

.fs-lightbox.gallery-lightbox .fs-lightbox-tools {
  position: fixed;
  height: 100%;
}

.fs-lightbox.gallery-lightbox .fs-lightbox-controls {
  z-index: 106;
  width: 100% !important;
  height: 15%;
  background: none;
}

.fs-lightbox.gallery-lightbox .fs-lightbox-meta {
  z-index: 105;
  top: 0;
  height: 100%;
  background: none;
  box-shadow: none;
  transform: translate(0, 0);
  padding: 0;
}

.fs-lightbox.gallery-lightbox .fs-lightbox-position,
.fs-lightbox.gallery-lightbox .fs-lightbox-caption {
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
}

.fs-lightbox.gallery-lightbox .fs-lightbox-position {
  position: fixed;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 15%;
  color: #b80000;
  font-size: 20px;
  font-size: 2rem;
  padding: 0;
  margin: 0;
}

.fs-lightbox.gallery-lightbox .fs-lightbox-position:before {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}

.fs-lightbox.gallery-lightbox .fs-lightbox-position span {
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
  font-size: 2.4rem;
}

.fs-lightbox.gallery-lightbox .fs-lightbox-caption {
  text-align: left;
}

.fs-lightbox.gallery-lightbox .fs-lightbox-caption p {
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 14px 20px 0;
}

.fs-lightbox.gallery-lightbox .fs-lightbox-close {
  width: 43px;
  height: 43px;
  border-radius: 0;
}

.fs-lightbox.gallery-lightbox .fs-lightbox-close:before {
  color: #fff;
  font-size: 35px;
  line-height: 45px;
}

.fs-lightbox.gallery-lightbox .fs-lightbox-close:hover:before {
  color: #b80000;
}

@media only screen and (min-width: 37.5em) {
  .fs-lightbox.gallery-lightbox .fs-lightbox-image {
    margin-top: 14px;
  }
  .fs-lightbox.gallery-lightbox .fs-lightbox-controls {
    height: 8%;
  }
  .fs-lightbox.gallery-lightbox .fs-lightbox-position,
  .fs-lightbox.gallery-lightbox .fs-lightbox-caption {
    font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
  }
  .fs-lightbox.gallery-lightbox .fs-lightbox-position {
    height: 8%;
    font-size: 20px;
    font-size: 2rem;
  }
  .fs-lightbox.gallery-lightbox .fs-lightbox-caption p {
    font-size: 24px;
    font-size: 2.4rem;
    padding: 24px 20px 0;
  }
  .fs-lightbox.gallery-lightbox .fs-lightbox-close {
    width: 76px;
    height: 76px;
  }
  .fs-lightbox.gallery-lightbox .fs-lightbox-close:before {
    font-size: 68px;
    line-height: 78px;
  }
}

@media only screen and (min-width: 80em) {
  .fs-lightbox.gallery-lightbox .fs-lightbox-controls {
    height: 7%;
  }
  .fs-lightbox.gallery-lightbox .fs-lightbox-position {
    height: 7%;
  }
}

.fs-lightbox.gallery-black,
.fs-lightbox.gallery-black .fs-lightbox-content,
.fs-lightbox.gallery-black .fs-lightbox-container {
  background-color: #000;
}

.fs-lightbox.gallery-black .fs-lightbox-position {
  color: #b80000;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}

.fs-lightbox.gallery-black .caption {
  color: #fff;
  font-size: 17px;
  font-size: 1.7rem;
  padding-top: 15px;
  padding-bottom: 15px;
}

.fs-lightbox.gallery-black .fs-lightbox-control {
  width: 76px;
  height: 76px;
  border-radius: 0;
  background: #000;
  opacity: 0.4;
}

.fs-lightbox.gallery-black .fs-lightbox-control:before, .fs-lightbox.gallery-black .fs-lightbox-control:after {
  border: 15px solid transparent;
  transition: all 0.3s ease;
}

.fs-lightbox.gallery-black .fs-lightbox-control:hover {
  opacity: 1;
}

.fs-lightbox.gallery-black .fs-lightbox-control_previous {
  left: 0;
}

.fs-lightbox.gallery-black .fs-lightbox-control_previous:before {
  border-right-color: #fff;
}

.fs-lightbox.gallery-black .fs-lightbox-control_next {
  right: 0;
}

.fs-lightbox.gallery-black .fs-lightbox-control_next:before {
  border-left-color: #fff;
}

.fs-lightbox.gallery-black .fs-lightbox-close {
  top: 10px;
  right: 10px;
  width: 76px;
  height: 76px;
  background: #000;
  border-radius: 0;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.fs-lightbox.gallery-black .fs-lightbox-close:before {
  color: #fff;
  font-size: 68px;
  line-height: 76px;
}

.fs-lightbox.gallery-black .fs-lightbox-close:hover {
  opacity: 1;
}

.fs-lightbox.gallery-black .fs-lightbox-close:hover:before {
  color: #b80000;
}

/* ALTERNATIVE VERSION IF USED
.fs-lightbox.gallery-lightbox {
	max-width: $content-max-width;
	background: $black;
	border-radius: 0;
	box-shadow: none;
	padding: 0 0 20px;
	margin-top: 40px;

	.fs-lightbox-container,
	.fs-lightbox-content {
		background-color: $black;
	}

	.fs-lightbox-container {
		overflow: visible;
	}

	.fs-lightbox-image {
		float: none;
		padding: 20px;
	}

	.fs-lightbox-meta {
		border-top: 1px solid #30343d;
	}

	.fs-lightbox-caption,
	.fs-lightbox-meta {
		@include font-rem(24);
		font-family: $font-futura-condensed;
		font-weight: bold;
		text-transform: uppercase;

		p {
			@include font-rem(24);
			margin: 0;
		}
	}

	.fs-lightbox-caption {
		position: absolute;
		top: -77px;
		left: 0;
		width: 100%;
		height: 76px;
		text-align: left;
		background-color: $black;

		p {
			color: $white;
			line-height: 76px;
			padding: 0 20px;
		}
	}

	.fs-lightbox-position {
		color: $green;
		padding-top: 5px;
	}

	.fs-lightbox-control {
		top: auto;
		bottom: -5px;
		border-radius: 0;
		background: transparent;
		margin-top: auto !important;

		&:after {
			content: '';
		    position: absolute;
		    top: 0;
		    right: 0;
		    bottom: 0;
		    left: 0;
		    margin: auto;
			width: 0;
			height: 0;
		}

		&:before,
		&:after {
			border: 15px solid transparent;
			@include css-transition();
		}
	}

	.fs-lightbox-control_previous {
		left: 40%;

		&:before,
		&:after {
			border-left-width: 0;
		}

		&:before {
			border-right-color: $white;
		}

		&:after {
			border-right-color: $black;
			margin-left: 20px;
		}

		&:hover {
			&:before {
				border-right-color: $green;
			}
		}
	}

	.fs-lightbox-control_next {
		right: 40%;

		&:before,
		&:after {
			border-right-width: 0;
		}

		&:before {
			border-left-color: $white;
		}

		&:after {
			border-left-color: $black;
			margin-right: 20px;
		}

		&:hover {
			&:before {
				border-left-color: $green;
			}
		}
	}

	.fs-lightbox-close {
		top: -77px;
		right: 0;
		width: 76px;
		height: 76px;
		background: $black;
		border-radius: 0;

		&:before {
			color: $white;
			font-size: 68px;
			line-height: 78px;
		}

		&:hover {
			&:before {
				color: $green;
			}
		}
	}
}
*/
.link--caret {
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.link--caret:after {
  position: relative;
  top: -2px;
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  margin-left: 1rem;
  transition: 0.3s;
  font-size: 50%;
}

/*
 * Loggedin Navigation
 */
.logged-in-nav {
  opacity: .5;
  position: fixed;
  bottom: 0;
  right: 0;
  background: #fff;
  padding: 10px 20px;
  font-size: 14px;
  font-size: 1.4rem;
  text-transform: uppercase;
  z-index: 999;
}

.logged-in-nav:hover {
  opacity: 1;
}

.logged-in-nav ul,
.logged-in-nav li {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.logged-in-nav li {
  padding: 0 5px;
}

.logged-in-nav li:before {
  content: "";
}

.logged-in-nav a {
  text-decoration: none;
  color: #132128;
}

.logged-in-nav a:hover {
  text-decoration: underline;
}

.at-share-dock.atss {
  z-index: 10 !important;
}

.overlay-menu {
  display: none;
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 33, 40, 0.98);
}

.main-nav {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
}

.main-nav[style*="height: 100%"], .main-nav[style*="height:100%"] {
  overflow-y: auto;
}

.main-nav.is-up, .main-nav.is-down {
  position: fixed;
  transition: 0.6s;
}

.main-nav.is-up {
  top: -100%;
}

.main-nav.is-down {
  top: 0;
}

.main-nav a {
  cursor: pointer;
  color: #000;
}

.main-nav a:focus, .main-nav a:hover {
  text-decoration: none;
}

.main-nav .menu-trigger {
  display: inline-block;
  vertical-align: middle;
  width: 2.3rem;
  height: 4px;
  background: #333e48;
  position: relative;
  z-index: 10;
}

.main-nav .menu-trigger:before, .main-nav .menu-trigger:after {
  content: "";
  width: 100%;
  height: 4px;
  background: #333e48;
  position: absolute;
  left: 0;
  transition: .2s;
}

.main-nav .menu-trigger:before {
  top: -8px;
}

.main-nav .menu-trigger:after {
  bottom: -8px;
}

.main-nav .menu-trigger.is-active {
  background: none;
}

.main-nav .menu-trigger.is-active:before {
  top: 0;
  transform: rotate(45deg);
}

.main-nav .menu-trigger.is-active:after {
  bottom: 0;
  transform: rotate(-45deg);
}

.main-nav__top {
  position: relative;
  padding: 1rem 0;
  z-index: 2;
  width: 100%;
  z-index: 11;
  background-color: #fff;
}

.main-nav__logo {
  text-align: center;
  margin: auto;
  width: 120px;
  height: 40px;
  font-size: 40px;
  font-size: 4rem;
  text-decoration: none;
}

.main-nav__logo.is-out {
  opacity: 0;
}

.main-nav__search .site-search {
  float: right;
  text-align: right;
}

.main-nav__search .site-search__wrap {
  padding: 0;
}

.main-nav__search .site-search__button {
  display: inline-block;
  vertical-align: bottom;
  cursor: pointer;
}

.main-nav__search .site-search__button {
  position: relative;
  width: 22px;
  max-width: 22px;
  height: 22px;
  color: #333e48;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 22px;
  background-color: transparent;
  border: 0;
  outline: none;
  padding: 0;
  margin: 0 6px 0 10px;
}

.main-nav__search .site-search__button.method-close {
  display: inline-block;
  overflow: hidden;
  width: 0;
  font-size: 21px;
  font-size: 2.1rem;
  margin-right: 0;
  margin-left: 0;
}

.main-nav__search.is-out {
  opacity: 0;
}

.main-nav__cta {
  position: relative;
}

.main-nav__cta.primary {
  display: none;
  float: right;
}

.main-nav__cta.secondary {
  display: block;
  clear: both;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.main-nav__cta--account {
  position: relative;
  float: right;
  cursor: pointer;
}

.main-nav__profile {
  position: absolute;
  z-index: 1;
  top: 60px;
  right: 0;
  min-width: 100%;
  list-style: none;
  background-color: rgba(19, 33, 40, 0.9);
  border: solid #388bc3;
  border-width: 0 2px 2px;
  padding: 0;
  margin: 0;
}

.main-nav__profile--item {
  border-top: 1px solid #388bc3;
}

.main-nav__profile--item:first-child {
  border-top: 0;
}

.main-nav__profile a {
  display: block;
  color: #fff;
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  text-transform: uppercase;
  padding: 5px 16px;
}

.main-nav__profile a:hover {
  color: #fff;
  background-color: #388bc3;
}

.main-nav .navbar {
  background: #eeeeee;
  position: fixed;
  height: 100%;
  width: 100%;
  left: -100%;
  overflow-y: scroll;
  text-align: left;
  border-radius: 0;
  z-index: 10;
  transition: 0.3s;
}

.main-nav .navbar.is-active {
  left: 0;
}

.main-nav .navbar ul {
  list-style: none;
}

.main-nav .navbar .nav {
  margin: 0;
  padding: 3rem;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
}

.main-nav .navbar .nav a {
  color: #132128;
}

.main-nav .navbar .nav > li {
  position: initial;
  flex-grow: 1;
  -ms-flex-grow: 1;
}

.main-nav .navbar .nav > li > a {
  font-size: 18px;
  font-size: 1.8rem;
  padding: 1.5rem 1rem;
  display: block;
  font-weight: 700;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
}

.main-nav .navbar .nav > li > a:after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  color: #8a8a8a;
  float: right;
  transition: 0.3s;
}

.main-nav .navbar .nav__sub {
  padding: 0 3rem 3rem;
}

.main-nav .navbar .nav__sub .main-nav__cta--account {
  float: none;
}

.main-nav .navbar .nav__sub__social {
  margin-top: 2rem;
}

.main-nav .navbar .nav__sub__social a {
  width: 20%;
  margin-right: 9px;
  margin-left: 9px;
}

.main-nav .navbar .nav__sub__social a:first-child {
  margin-left: 0;
}

.main-nav .navbar .mmenu {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  left: -100%;
  top: 0;
  z-index: 10;
  padding: 10rem 6rem 3rem;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  background: #eeeeee;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  transition: 0.3s;
}

.main-nav .navbar .mmenu.is-active {
  left: 0;
}

.main-nav .navbar .mmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav .navbar .mmenu a {
  display: inline-block;
  color: #333e48;
  margin: .5rem 0;
}

.main-nav .navbar .mmenu a:after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  color: #333e48;
  font-size: 10px;
  font-size: 1rem;
  margin-left: 1rem;
  transition: 0.3s;
}

.main-nav .navbar .mmenu .subtitle--lg, .main-nav .navbar .mmenu .main-content__meta-footer--title, .main-nav .navbar .mmenu .mason-block__content b, .mason-block__content .main-nav .navbar .mmenu b, .main-nav .navbar .mmenu .sidebar-post__title, .main-nav .navbar .mmenu .topics__item--heading, .main-nav .navbar .mmenu .partners__title, .main-nav .navbar .mmenu .card__title, .main-nav .navbar .mmenu .quick-links__title, .main-nav .navbar .mmenu .hero__promo__title {
  display: inline-block;
  margin-bottom: 1rem;
}

.main-nav .navbar .mmenu .subtitle--lg > a, .main-nav .navbar .mmenu .main-content__meta-footer--title > a, .main-nav .navbar .mmenu .mason-block__content b > a, .mason-block__content .main-nav .navbar .mmenu b > a, .main-nav .navbar .mmenu .sidebar-post__title > a, .main-nav .navbar .mmenu .topics__item--heading > a, .main-nav .navbar .mmenu .partners__title > a, .main-nav .navbar .mmenu .card__title > a, .main-nav .navbar .mmenu .quick-links__title > a, .main-nav .navbar .mmenu .hero__promo__title > a {
  font-weight: inherit;
  margin-top: 0;
}

.main-nav .navbar .mmenu__heading {
  display: none;
}

.main-nav .navbar .mmenu__sublist {
  margin: 2rem 0;
}

.main-nav .navbar .mmenu .card-cta {
  margin-top: 3rem;
}

.main-nav .mmenu__back {
  position: absolute;
  height: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  z-index: 10;
  transition: 0.3s;
}

.main-nav .mmenu__back button {
  margin-top: 2.5rem;
  padding-left: 0;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
}

.main-nav .mmenu__back button:before {
  content: "\f053";
  font-family: "Font Awesome 5 Pro";
  color: #333e48;
  margin-right: 1rem;
}

.main-nav .mmenu__back.is-active {
  z-index: 15;
  opacity: 1;
  visibility: visible;
}

.main-nav .button + .button {
  margin-left: 10px;
}

.theme-mobile .main-nav .global-social {
  padding-bottom: 45px;
}

@media only screen and (min-width: 37.5em) {
  .main-nav__menu--quicklinks {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .main-nav__menu--quicklinks__alt {
    display: none;
  }
  .main-nav__menu--quicklinks__title {
    width: 17%;
  }
  .main-nav__menu--quicklinks__list {
    width: 83%;
  }
  .main-nav__menu--quicklinks__item {
    display: inline-block;
    width: 25%;
  }
  .main-nav__menu--quicklinks__item span {
    top: -3px;
  }
  .main-nav__menu--quicklinks[data-count="5"] .main-nav__menu--quicklinks__item {
    width: 19%;
  }
  .main-nav__menu--grid .title {
    font-size: 30px;
    font-size: 3rem;
  }
  .main-nav .global-social {
    line-height: 120px;
  }
}

@media only screen and (min-width: 48em) {
  .main-nav__logo {
    height: 58px;
    font-size: 58px;
    font-size: 5.8rem;
  }
  .main-nav__menu--quicklinks {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .main-nav__menu--quicklinks__item span {
    top: -4px;
  }
}

@media only screen and (min-width: 64.0625em) {
  .main-nav__top {
    padding: 2.5rem 0;
  }
  .main-nav__top--right {
    float: right;
  }
  .main-nav__logo {
    text-align: left;
    height: 65px;
    font-size: 65px;
    font-size: 6.5rem;
  }
  .main-nav__search .site-search {
    padding: 14px 0;
  }
  .main-nav__search .site-search__button {
    width: 32px;
    max-width: 32px;
    height: 26px;
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 32px;
  }
  .main-nav__cta.primary {
    display: block;
  }
  .main-nav__cta.secondary {
    display: none;
  }
  .main-nav__menu--icon {
    font-size: 38px;
    font-size: 3.8rem;
    padding: 0 72px 0 43px;
  }
  .main-nav__menu--icon[class*="close"] {
    font-size: 32px;
    font-size: 3.2rem;
    padding-left: 43px;
  }
  .main-nav__menu--quicklinks {
    font-size: 35px;
    font-size: 3.5rem;
  }
  .main-nav__menu--quicklinks__item:before {
    height: 54px;
    margin-top: -27px;
  }
  .main-nav__menu--quicklinks__item span {
    top: -7px;
  }
  .main-nav .navbar {
    position: relative;
    background: #333e48;
    text-align: center;
    height: auto;
    left: 0;
    overflow-y: inherit;
  }
  .main-nav .navbar .nav {
    padding: 0;
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    position: relative;
  }
  .main-nav .navbar .nav a {
    color: #fff;
  }
  .main-nav .navbar .nav > li > a {
    font-size: 18px;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  }
  .main-nav .navbar .nav > li > a:after {
    display: none;
  }
  .main-nav .navbar .nav > li:hover > a {
    background: #132128;
  }
  .main-nav .navbar .mmenu {
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    background: #132128;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: auto;
    padding: 3rem 6rem;
    left: 0;
    top: calc(100% - 8px);
    text-align: left;
    color: #fff;
  }
  .main-nav .navbar .mmenu.is-active {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transition-delay: .3s;
  }
  .main-nav .navbar .mmenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .main-nav .navbar .mmenu a {
    color: #fff;
    text-transform: inherit;
    font-weight: 400;
  }
  .main-nav .navbar .mmenu a:hover {
    color: #388bc3;
  }
  .main-nav .navbar .mmenu a:after {
    display: none;
  }
  .main-nav .navbar .mmenu .card-cta {
    margin-top: 0;
    margin-left: auto;
  }
  .main-nav .navbar .mmenu__back {
    display: none;
  }
  .main-nav .navbar .mmenu__primary {
    width: 20%;
    border-right: 2px solid #333e48;
    margin-right: 7rem;
  }
  .main-nav .navbar .mmenu__related {
    width: 80%;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    align-items: flex-start;
    -ms-align-items: flex-start;
    justify-content: space-between;
    -ms-flex-pack: justify;
  }
  .main-nav .navbar .mmenu__heading {
    width: 100%;
    display: block;
    line-height: 1;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(51, 62, 72, 0.3);
  }
  .main-nav .navbar .mmenu__sublist {
    margin: 0;
    margin-right: auto;
  }
  .main-nav .navbar .mmenu__sublist a {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .main-nav .global-social {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}

@media only screen and (min-width: 80em) {
  .main-nav__top--right {
    float: right;
  }
  .main-nav__search .site-search {
    float: left;
    padding-right: 25px;
  }
  .main-nav__cta.secondary {
    display: none;
  }
}

@media only screen and (min-width: 120em) {
  .main-nav__top--right {
    padding-right: 90px;
  }
}

.main-content {
  padding: 3rem;
}

.main-content__content {
  font-family: "FuturaBTWXX-Book", futura-pt, Trebuchet MS, sans-serif;
  max-width: 700px;
  margin: 0 auto;
}

.main-content__content > p a {
  border-bottom: 1px solid transparent;
}

.main-content__content > p a:hover {
  color: #000;
  border-bottom-color: #000;
}

.main-content.width--full {
  width: 100%;
  max-width: 100%;
}

.main-content__header {
  color: #464646;
  max-width: 700px;
  margin: 0 auto;
}

.main-content__header.has-border .post-title {
  line-height: 1.1;
  padding: 0 0 20px;
}

.main-content__meta-header {
  line-height: 1;
  border-bottom: 2px solid #d9d9d9;
  margin-bottom: 30px;
}

.main-content__meta-header[class*="background--"] {
  border-bottom: 0 none;
  padding: 3px;
}

.main-content__meta-header--date, .main-content__meta-header--vertical-align {
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 52px;
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  text-align: center;
  line-height: 38px;
  background-color: #fff;
  margin-right: 13px;
}

.main-content__meta-header--date b, .main-content__meta-header--vertical-align b {
  display: block;
  font-size: 40px;
  font-size: 4rem;
  margin-bottom: -16px;
}

.main-content__meta-header--vertical-align {
  width: 0 !important;
  background: none !important;
}

.main-content__meta-header--meta-and-title {
  display: inline-block;
  vertical-align: middle;
  width: 72%;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
}

.main-content__meta-header--vertical-align + .main-content__meta-header--meta-and-title {
  width: 90%;
  padding-top: 16px;
  padding-bottom: 16px;
}

.main-content__meta-header--meta-and-title .meta,
.main-content__meta-header--meta-and-title .title {
  display: block;
}

.main-content__meta-header--meta-and-title .meta {
  padding-bottom: 5px;
}

.main-content__meta-header--meta-and-title .title {
  color: currentColor;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  text-transform: uppercase;
  padding: 0;
}

.main-content__meta-header--author,
.main-content__meta-header--author + .sharing {
  display: inline-block;
  vertical-align: middle;
  margin-top: 10px;
  margin-bottom: 10px;
}

.main-content__meta-header--author + .sharing {
  float: right;
  min-height: 44px;
  line-height: 40px;
  padding-left: 15px;
}

.main-content__meta-header--author + .sharing .at-share-tbx-element .at-share-btn {
  font-size: 28px;
  font-size: 2.8rem;
  margin-left: 15px;
}

.main-content__meta-header--author + .sharing .at-share-tbx-element .at-share-btn.at-svc-compact {
  width: auto;
  white-space: nowrap;
}

.main-content__meta-header--author + .sharing .at-share-tbx-element .at-share-btn.at-svc-compact:before {
  display: none;
}

.main-content__meta-header--author + .sharing .at-share-tbx-element .at_flat_counter {
  display: none;
  min-width: 39%;
  min-height: 44px;
  color: #b9cfdc;
  border-right-color: #d9d9d9;
  padding: 2px 20px 3px 5px;
}

.main-content__meta-header .author__avatar {
  overflow: hidden;
  float: left;
  border-radius: 99em;
}

.main-content__meta-header .author__name, .main-content__meta-header .author__postdate {
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
  font-family: "FuturaBTWXX-Book", futura-pt, Trebuchet MS, sans-serif;
  color: #82878b;
}

.main-content__meta-header .author__name {
  padding: 4px 0;
}

.main-content__meta-header .author__name a {
  color: #82878b;
}

.main-content__meta-header .author__postdate span {
  position: relative;
  color: #7c7c7c;
  margin: 0 -5px;
}

.main-content__img {
  width: 100%;
  margin-bottom: 4.5rem;
}

.main-content__img > img {
  width: 100%;
}

.main-content__video-embed {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.main-content__video-embed:hover {
  color: #fff;
}

.main-content__video-embed--content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  line-height: 1.1;
  padding: 0 5%;
}

.main-content__video-embed--content b,
.main-content__video-embed--content p {
  text-shadow: 0 0 0 #000;
}

.main-content__video-embed--content b {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.main-content__video-embed--content p {
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  padding: 0;
}

.main-content__video-embed .button {
  margin-top: 20px;
}

.main-content__video-embed .button.style--play {
  margin-top: 0;
  margin-bottom: 14px;
}

.main-content__meta-footer {
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  line-height: 1.2;
  border-top: 1px solid #eeeeee;
  padding: 3rem 0;
  margin-top: 25px;
  max-width: 700px;
  margin: 7rem auto 5rem;
}

.main-content__meta-footer--title {
  display: inline-block;
  padding-bottom: 3px;
}

.main-content__meta-footer--item {
  text-transform: uppercase;
  display: inline-block;
  margin: 0 1rem;
}

.main-content__additional {
  border-top: 2px solid #d9d9d9;
  padding-top: 20px;
  margin-top: 25px;
}

.main-content--hp .subtitle--sm, .main-content--hp .main-nav .navbar .mmenu__heading, .main-nav .navbar .main-content--hp .mmenu__heading, .main-content--hp select.fancy .fs-dropdown-group, select.fancy .main-content--hp .fs-dropdown-group, .main-content--hp
.fancy-select .fs-dropdown-group,
.fancy-select .main-content--hp .fs-dropdown-group, .main-content--hp .content-list .advanced-search__dropdowns .query-exposed-label, .content-list .advanced-search__dropdowns .main-content--hp .query-exposed-label, .main-content--hp .trending-featured__small--heading {
  display: block;
  margin-bottom: 3rem;
}

@media only screen and (min-width: 37.5em) {
  .main-content__meta-header[class*="background--"] {
    padding: 5px;
  }
  .main-content__meta-header--date, .main-content__meta-header--vertical-align {
    width: 118px;
    height: 104px;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 80px;
  }
  .main-content__meta-header--date b, .main-content__meta-header--vertical-align b {
    font-size: 74px;
    font-size: 7.4rem;
    margin-bottom: -40px;
  }
  .main-content__meta-header--meta-and-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .main-content__meta-header--meta-and-title .title {
    font-size: 30px;
    font-size: 3rem;
  }
  .main-content__meta-header--vertical-align + .main-content__meta-header--meta-and-title {
    padding-top: 0;
    padding-bottom: 0;
  }
  .main-content__meta-header--author + .sharing .at-share-tbx-element .at-share-btn.at-svc-compact:before {
    display: block;
    padding-top: 7px;
  }
  .main-content__meta-header--author + .sharing .at-share-tbx-element .at_flat_counter {
    display: inline-block;
  }
  .main-content__video-embed {
    margin-bottom: 77px;
  }
  .main-content__video-embed--content b {
    font-size: 32px;
    font-size: 3.2rem;
  }
  .main-content__video-embed--content p {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .main-content__video-embed .button {
    margin-top: 28px;
  }
  .main-content__video-embed .button.style--play {
    margin-bottom: 14px;
  }
}

@media only screen and (min-width: 48em) {
  .main-content__meta-header--author + .sharing .at-share-tbx-element .at_flat_counter {
    min-width: 12%;
    margin-right: 0;
  }
}

@media only screen and (min-width: 64em) {
  .main-content {
    width: 66.66666%;
    padding: 3rem 5rem;
  }
  .main-content--hp {
    padding: 6rem 5rem;
  }
  .main-content__header.has-border {
    padding-top: 17px;
  }
  .main-content__meta-header {
    border-bottom: 0 none;
  }
  .main-content__meta-header--meta-and-title {
    width: 76%;
  }
  .sharing + .main-content__meta-header .main-content__meta-header--meta-and-title {
    width: 69%;
  }
  .main-content__additional {
    padding-top: 40px;
    margin-top: 0;
  }
}

@media only screen and (min-width: 80em) {
  .sharing + .main-content__meta-header .main-content__meta-header--meta-and-title {
    width: 53%;
  }
}

@media only screen and (min-width: 120em) {
  .sharing + .main-content__meta-header .main-content__meta-header--meta-and-title {
    width: 59%;
  }
}

.global-sidebar {
  background: #eeeeee;
  padding: 3rem;
}

.global-sidebar__block {
  clear: both;
  padding-top: 25px;
}

.global-sidebar__block:first-child {
  padding-top: 0;
}

.global-sidebar__block.no-gap {
  padding-top: 0;
}

.global-sidebar__block--title {
  display: block;
  font-size: 20px;
  font-size: 2rem;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  text-transform: uppercase;
  line-height: 1.1;
  padding: 2.5rem 1rem;
}

@media only screen and (min-width: 60em) {
  .global-sidebar {
    width: 33.33333%;
    padding: 4.5rem 5rem;
  }
}

@media only screen and (min-width: 64em) {
  .main-content.width--full ~ .global-sidebar .global-sidebar__block {
    display: inline-block;
    width: 33.33%;
    padding-top: 0;
  }
}

.global-sidebar--wrapped {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: none;
  clear: left;
}

.global-sidebar--wrapped:after {
  content: ".";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.global-sidebar--wrapped .sidebar__title {
  width: 100%;
  margin-bottom: 3rem;
}

.global-sidebar--wrapped .sidebar-module {
  width: 100%;
  padding: 0 1.5rem;
}

@media only screen and (min-width: 48em) {
  .global-sidebar--wrapped .sidebar-module {
    float: left;
    width: 33.333%;
  }
}

/*
 * Mason Blocks
 */
.mason-block {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  color: #fff;
}

.mason-block:before {
  content: '';
  position: relative;
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.28em;
  /* Adjusts for spacing */
}

.main-content.width--full ~ .global-sidebar .mason-block {
  width: 100%;
}

.mason-block:nth-of-type(4).text-top, .mason-block:nth-of-type(5).text-top {
  padding-top: 0;
}

.mason-block:nth-of-type(4).text-top:before, .mason-block:nth-of-type(5).text-top:before {
  vertical-align: middle;
}

.mason-block:nth-of-type(4) .button, .mason-block:nth-of-type(5) .button {
  display: none;
}

.mason-block:nth-of-type(4) .button.style--play, .mason-block:nth-of-type(5) .button.style--play {
  display: block;
}

.mason-block:nth-of-type(4) .button.style--play ~ p, .mason-block:nth-of-type(5) .button.style--play ~ p {
  display: none;
}

.mason-block:nth-of-type(6), .mason-block:nth-of-type(7),
.mason-block:nth-of-type(7) ~ .mason-block {
  width: 100%;
}

.mason-block:nth-of-type(6) .button.style--play, .mason-block:nth-of-type(7) .button.style--play,
.mason-block:nth-of-type(7) ~ .mason-block .button.style--play {
  margin-top: 14px;
  margin-bottom: 14px;
}

.mason-block:hover {
  color: #fff;
}

.mason-block:hover.font-color--black {
  color: #132128;
}

.mason-block:hover .mason-block__image {
  transition: all 0.3s ease;
}

.mason-block[class*="background--"]:hover .mason-block__image {
  opacity: 0.7;
  filter: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz1cJ2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCc+PGZpbHRlciBpZD1cJ2dyYXlzY2FsZVwnPjxmZUNvbG9yTWF0cml4IHR5cGU9XCdtYXRyaXhcJyB2YWx1ZXM9XCcxIDAgMCAwIDAsIDAgMSAwIDAgMCwgMCAwIDEgMCAwLCAwIDAgMCAxIDBcJy8+PC9maWx0ZXI+PC9zdmc+#grayscale");
  filter: grayscale(0%);
}

.mason-block .corner-tag {
  width: 100px;
  height: 100px;
}

.mason-block .corner-tag:before {
  border-width: 50px;
}

.mason-block .corner-tag span {
  top: 11%;
  left: 11%;
  width: 100px;
  height: 100px;
  font-size: 18px;
  font-size: 1.8rem;
}

.mason-block__content {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  line-height: 1.1;
  padding: 2.5rem;
}

.mason-block__content b {
  overflow: hidden;
  display: block;
  font-weight: bold;
}

.mason-block__content p {
  font-family: "FuturaBTWXX-Book", futura-pt, Trebuchet MS, sans-serif;
  padding: 10px 0 0;
}

.mason-block__image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 101%;
  max-width: 1000%;
  min-height: 100%;
  transition: all 0.3s ease;
  backface-visibility: hidden;
}

.mason-block[class*="background--"] .mason-block__image {
  opacity: 0.4;
  filter: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz1cJ2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCc+PGZpbHRlciBpZD1cJ2dyYXlzY2FsZVwnPjxmZUNvbG9yTWF0cml4IHR5cGU9XCdtYXRyaXhcJyB2YWx1ZXM9XCcwLjMzMzMgMC4zMzMzIDAuMzMzMyAwIDAgMC4zMzMzIDAuMzMzMyAwLjMzMzMgMCAwIDAuMzMzMyAwLjMzMzMgMC4zMzMzIDAgMCAwIDAgMCAxIDBcJy8+PC9maWx0ZXI+PC9zdmc+#grayscale");
  filter: gray;
  filter: grayscale(100%);
}

.mason-block .button {
  margin-top: 20px;
}

.mason-block .button.style--play {
  margin-top: 14px;
}

@media only screen and (min-width: 48em) {
  .mason-block {
    float: left;
    width: 50%;
    height: 440px;
  }
  .mason-block.text-top {
    padding-top: 78px;
  }
  .mason-block.text-top:before {
    vertical-align: top;
  }
  .mason-block:nth-of-type(2n+2) {
    float: right;
  }
  .mason-block:nth-of-type(4), .mason-block:nth-of-type(5) {
    height: 220px;
  }
  .mason-block:nth-of-type(6) .button.style--play, .mason-block:nth-of-type(7) .button.style--play,
  .mason-block:nth-of-type(7) ~ .mason-block .button.style--play {
    margin-top: 28px;
    margin-bottom: 28px;
  }
  .mason-block .button {
    margin-top: 28px;
  }
}

@media only screen and (min-width: 64em) {
  .mason-block {
    float: none;
    width: 100%;
    height: auto;
  }
  .mason-block.text-top {
    padding-top: 0;
  }
  .mason-block.text-top:before {
    vertical-align: middle;
  }
  .mason-block:nth-of-type(2n+2) {
    float: none;
  }
  .mason-block:nth-of-type(4), .mason-block:nth-of-type(5) {
    height: auto;
  }
}

@media only screen and (min-width: 90em) {
  .mason-block {
    float: left;
    width: 50%;
    height: 440px;
  }
  .mason-block.text-top {
    padding-top: 78px;
  }
  .mason-block.text-top:before {
    vertical-align: top;
  }
  .mason-block:nth-of-type(2n+2) {
    float: right;
  }
  .mason-block:nth-of-type(4), .mason-block:nth-of-type(5) {
    height: 220px;
  }
  .mason-block:nth-of-type(4) .corner-tag, .mason-block:nth-of-type(5) .corner-tag {
    display: none;
  }
  .mason-block:nth-of-type(6), .mason-block:nth-of-type(7),
  .mason-block:nth-of-type(7) ~ .mason-block {
    height: 395px;
  }
}

@media only screen and (min-width: 120em) {
  .mason-block:nth-of-type(4) .corner-tag, .mason-block:nth-of-type(5) .corner-tag {
    display: block;
  }
}

.news-toggle {
  display: block;
  padding: 0 3rem 3rem;
  margin: 3rem -3rem;
  border-bottom: 1px solid #fff;
}

.news-toggle:after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  color: #8a8a8a;
  float: right;
  transition: 0.3s;
}

.news-toggle.is-active:after {
  transform: rotate(180deg);
  transform-origin: center;
}

@media only screen and (min-width: 60em) {
  .news-toggle {
    border-bottom: none;
    padding: 0;
    margin: 0 0 3rem;
  }
  .news-toggle:after {
    display: none;
  }
}

.sidebar-module {
  margin-bottom: 6rem;
}

.sidebar-module .card {
  margin-bottom: 3rem;
}

.hp-sidebar {
  padding: 0 3rem;
}

.hp-sidebar .sidebar-module {
  margin-bottom: 0;
}

.hp-sidebar .news-toggle:last-of-type {
  margin-bottom: 0;
}

@media only screen and (min-width: 60em) {
  .hp-sidebar {
    padding: 6rem 5rem;
  }
  .hp-sidebar .news-toggle:last-of-type {
    margin: 0 0 3rem;
  }
  .hp-sidebar .sidebar-module {
    margin-bottom: 6rem;
  }
}

.sidebar-post {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #fff;
  font-family: "FuturaBTWXX-Book", futura-pt, Trebuchet MS, sans-serif;
}

.sidebar-post__sub {
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
  color: #82878b;
  margin-bottom: 1rem;
}

.sidebar-post .fa {
  font-size: 12px;
  font-size: 1.2rem;
}

.sidebar-post__title {
  display: block;
  font-weight: 700;
  color: #132128;
  margin-bottom: 1rem;
}

.sidebar-promo {
  padding: 3rem;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
}

.sidebar-promo > img {
  display: block;
  margin: 0 auto 2rem;
  max-width: 100%;
}

.sidebar-promo__title {
  display: block;
  font-weight: 700;
  padding-bottom: 2rem;
}

.sidebar-promo__content {
  margin-bottom: 2rem;
  font-family: "FuturaBTWXX-Book", futura-pt, Trebuchet MS, sans-serif;
}

.global-footer {
  position: relative;
  color: #fff;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  background-color: #333e48;
}

.global-footer__logo {
  display: block;
  text-align: center;
  font-size: 58px;
  font-size: 5.8rem;
  text-decoration: none;
  margin: 0 auto 4rem;
}

.global-footer__logo, .global-footer__logo:hover {
  color: #fff;
}

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

.global-footer .button {
  display: inline-block;
  width: 100%;
  max-width: 135px;
  padding-right: 0;
  padding-left: 0;
  margin: 0 18px 36px;
}

.global-footer .button.hidden {
  margin: 0 .5rem 18px;
}

.global-footer .button.hidden ~ .global-footer__logo {
  margin-top: 18px;
}

.global-footer .global-social {
  padding: 20px 0;
  margin-bottom: 3rem;
  text-align: center;
}

.global-footer__main {
  padding: 4rem;
}

.global-footer__bottom {
  background: #b9cfdc;
  color: #132128;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.1;
  padding: 3rem 0;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
}

.theme-mobile .global-footer__bottom {
  padding-bottom: 45px;
}

.global-footer__subnav, .global-footer__copyright {
  text-align: center;
}

.global-footer__subnav {
  font-size: 12px;
  font-size: 1.2rem;
}

.global-footer__subnav li {
  display: inline-block;
  border-right: 1px solid #132128;
  padding: 0 1rem;
}

.global-footer__subnav li:first-child {
  margin-left: 0;
}

.global-footer__subnav li:last-child {
  border-right: none;
}

.global-footer__subnav a {
  color: #132128;
  text-transform: uppercase;
}

.global-footer__subnav ul {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  padding: 0;
  margin: 0;
}

.global-footer__subnav a {
  text-decoration: none;
}

.global-footer__subnav a:hover {
  color: #fff;
}

.global-footer__copyright {
  margin-top: 2rem;
}

@media only screen and (min-width: 37.5em) {
  .global-footer .button {
    display: none;
  }
  .global-footer .button.hidden {
    display: inline-block;
    margin-bottom: 1.5rem;
  }
  .global-footer .button.hidden ~ .global-footer__logo {
    margin-top: 0;
  }
}

@media only screen and (min-width: 48em) {
  .global-footer__about {
    display: flex;
  }
  .global-footer__about > * {
    flex-grow: 1;
  }
  .global-footer__about .global-footer__logo {
    order: 1;
  }
  .global-footer__about .global-social {
    order: 2;
    margin: 0;
  }
  .global-footer__about .global-footer__btns {
    order: 3;
  }
  .global-footer__logo {
    text-align: left;
  }
  .global-footer__btns {
    text-align: right;
  }
  .global-footer__bottom {
    padding: 2rem 0;
  }
  .global-footer__subnav {
    text-align: left;
  }
  .global-footer__copyright {
    text-align: right;
    margin: 0;
  }
}

@media only screen and (min-width: 60em) {
  .global-footer__main {
    padding: 7.5rem 2rem;
  }
  .global-footer__subnav.primary {
    display: inline-block;
  }
}

@media only screen and (min-width: 64em) {
  .global-footer__about {
    display: block;
  }
  .global-footer__logo {
    display: inline-block;
    font-size: 86px;
    font-size: 8.6rem;
    margin: 0 auto 3.5rem;
  }
  .global-footer__btns {
    text-align: left;
  }
  .global-footer .button.hidden {
    margin: 0 auto 18px;
  }
  .global-footer .global-social {
    padding: 0;
    text-align: left;
    margin-top: 2rem;
  }
  .global-footer .global-social a {
    width: 20%;
    margin-right: 9px;
    margin-left: 9px;
  }
}

@media only screen and (min-width: 80em) {
  .global-footer .button.hidden {
    width: 100%;
    max-width: auto;
  }
}

.ftr-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ftr-nav > li {
  margin-bottom: 2rem;
}

.ftr-nav__title {
  display: block;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ftr-nav__title:after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  color: rgba(238, 238, 238, 0.3);
  float: right;
  transition: 0.3s;
}

.ftr-nav__title:hover {
  color: #fff;
}

.ftr-nav__title.is-active:after {
  transform: rotate(180deg);
  transform-origin: center;
}

.ftr-nav__list {
  list-style: none;
  text-align: left;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ftr-nav__list a {
  color: #eeeeee;
  display: inline-block;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  font-weight: 400;
  margin-bottom: .5rem;
  font-size: 12px;
  font-size: 1.2rem;
}

.ftr-nav__list a:hover {
  color: #388bc3;
}

@media only screen and (min-width: 60em) {
  .ftr-nav {
    display: grid;
    -ms-display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  .ftr-nav__title {
    display: inline-block;
  }
  .ftr-nav__title:after {
    display: none;
  }
  .ftr-nav > li:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
  }
  .ftr-nav > li:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
  }
  .ftr-nav > li:nth-child(3) {
    grid-row: 1;
    grid-column: 3;
  }
  .ftr-nav > li:nth-child(4) {
    grid-row: 1;
    grid-column: 4;
  }
  .ftr-nav > li:nth-child(5) {
    grid-row: 1;
    grid-column: 5;
  }
  .ftr-nav > li:nth-child(6) {
    grid-row: 1/2;
    grid-column: 5;
    align-self: end;
  }
}

.site-search__wrap {
  padding: 20px;
}

.site-search__wrap + .content-list {
  padding-top: 0;
}

.site-search__input, .site-search__button {
  display: inline-block;
  vertical-align: middle;
  border-radius: 0;
  -webkit-appearance: none;
}

.site-search__input {
  position: relative;
  overflow: hidden;
  width: 85%;
  max-width: 365px;
  color: #132128;
  font-size: 20px;
  font-size: 2rem;
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: none;
  border: 0 none;
  border-bottom: 2px solid #132128;
  outline: none;
  padding: 0;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.site-search__input:focus {
  color: #388bc3;
  border-bottom-color: #388bc3;
  transition: all 0.3s ease;
}

.site-search__button {
  position: relative;
  width: 22px;
  max-width: 22px;
  height: 22px;
  color: #132128;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 22px;
  background-color: transparent;
  border: 0;
  outline: none;
  padding: 0;
}

.site-search__button.method-close {
  display: none;
}

@media only screen and (min-width: 37.5em) {
  .site-search__input {
    font-size: 41px;
    font-size: 4.1rem;
    border-bottom: 5px solid #132128;
    margin-right: 30px;
  }
  .site-search__button {
    width: 32px;
    max-width: 32px;
    height: 32px;
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 32px;
  }
}

.global-social a {
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  font-size: 26px;
  font-size: 2.6rem;
  text-decoration: none;
  margin: 0 1.5rem;
}

.global-social a:hover {
  color: #388bc3;
}

.global-social [class*='facebook']:hover {
  color: #3b5998;
}

.global-social [class*='linkedin']:hover {
  color: #007bb5;
}

.global-social [class*='twitter']:hover {
  color: #00aced;
}

.global-social [class*='youtube']:hover {
  color: #bb0000;
}

.global-social [class*='instagram']:hover {
  color: #9b6954;
}

.comment-list {
  font-family: "franklin-gothic-urw", "Helvetica", "Arial", sans-serif;
  list-style: none;
  padding: 20px 8px;
  margin: 0;
}

.comment-list .comment {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.comment-list .comment:first-child {
  border-top: 0;
}

.comment-list .comment-body {
  position: relative;
  padding: 12.5px;
}

.comment-list .avatar {
  display: none;
  position: absolute;
  top: 5px;
  left: 0;
  border-radius: 99em;
}

.comment-list .comment-meta {
  font-size: 17px;
  font-size: 1.7rem;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  text-transform: uppercase;
  line-height: 1;
  padding-bottom: 2.5px;
}

.comment-list .comment-meta b,
.comment-list .comment-meta strong {
  font-weight: normal;
}

.comment-list .comment-author {
  padding: 3px 0;
}

.comment-list .comment-metadata {
  font-size: 15px;
  font-size: 1.5rem;
}

.comment-list .edit-link:before {
  content: '\2022';
  color: #7c7c7c;
  padding-right: 2px;
}

.comment-list .children {
  list-style: none;
  padding: 0 0 10px 10px;
  margin: 5px 0 0;
}

.comment-list .children .children {
  margin-top: 10px;
}

.comment-list .children li {
  border-top-width: 0;
  border-left: 2px solid;
  padding-left: 0;
  margin-bottom: 0;
}

.comment-list .children .comment-body {
  padding-top: 0;
  padding-bottom: 0;
}

.comment-list .children .avatar {
  top: 0;
}

.comment-list li.depth-2 {
  border-left-color: rgba(56, 139, 195, 0.3);
}

.comment-list li.depth-3 {
  border-left-color: rgba(185, 207, 220, 0.3);
}

.comment-list li.depth-4 {
  border-left-color: rgba(252, 200, 68, 0.3);
}

.comment-list li.depth-5 {
  border-left-color: rgba(184, 0, 0, 0.3);
}

.comment-list .comment-body .reply > small,
.comment-list .comment-respond > small {
  display: block;
  padding: 10px;
}

.comment-list .comment-body .reply > small > a,
.comment-list .comment-body .reply > a,
.comment-list .comment-respond > small > a,
.comment-list .comment-respond > a {
  display: inline-block;
  font-size: 19px;
  font-size: 1.9rem;
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.comment-list .comment-respond {
  background: #16272f;
  border: 2px solid #333e48;
  padding: 10px;
  margin: 5px 5px 5px 10px;
}

.comment-list .comment-respond p {
  padding-bottom: 0;
}

.comment-list .comment-respond .form-allowed-tags {
  display: none;
}

@media only screen and (min-width: 37.5em) {
  .comment-list {
    font-size: 19px;
    font-size: 1.9rem;
  }
  .comment-list .comment-body {
    padding: 20px 20px 20px 50px;
  }
  .comment-list .avatar {
    display: block;
    top: 20px;
  }
  .comment-list .comment-meta {
    font-size: 19px;
    font-size: 1.9rem;
    padding-bottom: 10px;
  }
  .comment-list .comment-metadata {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .comment-list .children {
    padding: 0 0 40px 40px;
    margin: 20px 0 0;
  }
  .comment-list .children .children {
    margin-top: 40px;
  }
  .comment-list .comment-respond {
    margin: 20px 20px 20px 40px;
  }
}

@media only screen and (min-width: 48em) {
  .comment-list .comment-body {
    padding: 30px 30px 30px 75px;
  }
  .comment-list .avatar {
    display: block;
    top: 30px;
    left: 15px;
  }
  .comment-list .comment-meta {
    padding-bottom: 15px;
  }
  .comment-list .children {
    padding: 0 0 60px 60px;
    margin: 30px 0 0;
  }
  .comment-list .children .children {
    margin-top: 60px;
  }
  .comment-list .comment-respond {
    margin: 30px 30px 30px 60px;
  }
}

.module {
  color: #132128;
  padding: 50px 0;
}

.module--mob_hide {
  display: none;
}

.module-break {
  padding: 0 0 30px;
}

.module__pre-title, .module__title, .module__intro {
  position: relative;
  text-align: center;
  display: block;
  width: 100%;
  max-width: 800px;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
}

.module__title {
  max-width: 1777px;
}

.module__pre-title {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  padding-bottom: 13px;
}

.module__intro {
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  padding-top: 36px;
  padding-bottom: 36px;
}

.module .module__intro {
  padding-top: 0;
}

.module__intro p {
  padding-bottom: 0;
}

.module__intro p + p {
  padding-top: 20px;
}

.module__subtitle {
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  text-align: center;
}

.module__section-link {
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  line-height: 1;
  text-transform: uppercase;
  padding-top: 30px;
}

.module__section-link a {
  text-decoration: none;
}

@media only screen and (min-width: 37.5em) {
  .module__pre-title {
    font-size: 19px;
    font-size: 1.9rem;
  }
  .module__pre-title {
    padding-bottom: 20px;
  }
  .module__section-link {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

@media only screen and (min-width: 48em) {
  .module--mob_hide {
    display: block;
  }
}

/**
 * Twitter Timeline
 */
.twitter-timeline__wrap {
  position: relative;
  z-index: 1;
  background-color: #132128;
  padding: 20px;
}

.twitter-timeline__title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 540px;
  font-size: 20px;
  font-size: 2rem;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  text-transform: uppercase;
  text-align: left;
  padding: 22px 20px 0;
  margin-right: auto;
  margin-left: auto;
}

.global-sidebar .twitter-timeline__wrap {
  height: 330px;
  padding-top: 0;
}

/**
 * Corner Tag
 */
.corner-tag {
  overflow: hidden;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  display: block;
  width: 84px;
  height: 84px;
  text-align: center;
}

.corner-tag:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  border-width: 42px;
  border-style: solid;
  border-color: #77a2ba transparent transparent #77a2ba;
}

.corner-tag span {
  position: absolute;
  top: 13%;
  left: 13%;
  display: block;
  width: 70px;
  height: 70px;
  color: #132128;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  text-transform: uppercase;
  line-height: .9;
  transform: rotate(-45deg);
  transform-origin: 50% 50%;
  word-spacing: 99em;
}

@media only screen and (min-width: 37.5em) {
  .corner-tag {
    width: 124px;
    height: 124px;
  }
  .corner-tag:before {
    border-width: 62px;
  }
  .corner-tag span {
    top: 13%;
    left: 13%;
    width: 100px;
    height: 100px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 48em) {
  .corner-tag {
    width: 170px;
    height: 170px;
  }
  .corner-tag:before {
    border-width: 85px;
  }
  .corner-tag span {
    top: 15%;
    left: 15%;
    width: 120px;
    height: 120px;
    font-size: 20px;
    font-size: 2rem;
  }
}

/**
 * Checkbox
 */
.fs-checkbox {
  display: inline-block;
  text-align: left;
  width: 100%;
}

.fs-checkbox-marker {
  border-color: currentColor;
  background: none;
  border-width: 2px;
  border-radius: 1px;
  margin-right: 10px;
}

.fs-checkbox-flag:before {
  width: 6px;
  height: 12px;
  border-width: 2px;
  margin: 1px 0 0 5px;
  border-color: currentColor;
  transition: transform 0.15s ease;
  transform: rotate(35deg) scale(0);
}

.fs-checkbox-checked .fs-checkbox-flag:before {
  transform: rotate(35deg) scale(1);
}

.fs-checkbox-radio .fs-checkbox-flag {
  background-color: currentColor;
}

.fs-checkbox-radio.fs-checkbox-checked .fs-checkbox-flag {
  transform: scale(0.75);
}

.fs-checkbox-label {
  font-size: 16px;
  font-size: 1.6rem;
  color: currentColor;
  line-height: 1;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  padding-top: 3px;
}

.fs-checkbox-label a:hover {
  color: currentColor;
}

.fs-checkbox-focus .fs-checkbox-label {
  color: currentColor;
}

.fs-checkbox-focus .fs-checkbox-marker {
  border-color: currentColor;
  box-shadow: none;
}

.loader {
  position: relative;
  margin: 0px auto;
  width: 50px;
}

.loader:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.loader__circle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: auto;
  animation: rotate 2s linear infinite;
  transform-origin: center center;
}

.loader__path {
  stroke-dasharray: 5,9;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: color 6s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px;
  }
}

@keyframes color {
  100%, 0% {
    stroke: #b80000;
  }
  40% {
    stroke: #b9cfdc;
  }
  66% {
    stroke: #b80000;
  }
  80%, 90% {
    stroke: #fcc844;
  }
}

.full-width-drawer {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding: 0;
}

.full-width-drawer__wrap {
  position: relative;
  background-position: 50% 50%;
  background-size: cover;
  padding: 5rem 0;
  text-align: center;
}

.full-width-drawer__outro {
  padding-top: 37px;
}

.full-width-drawer__content {
  border-top: 2px solid #adafb1;
  padding: 30px 20px 10px;
}

.full-width-drawer__inline {
  vertical-align: middle;
  line-height: 1.2;
  padding-bottom: 20px;
}

.full-width-drawer__inline + .button {
  margin-top: 20px;
  margin-bottom: 0;
}

.full-width-drawer__inline b {
  display: block;
  padding-bottom: 0;
}

.full-width-drawer__inline p {
  margin-top: 1rem;
  padding-bottom: 0;
}

.full-width-drawer__button {
  margin-bottom: 18px;
}

.full-width-drawer__title + .full-width-drawer__button {
  margin-top: 30px;
}

.full-width-drawer.style--oneline {
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
}

.full-width-drawer.style--oneline .full-width-drawer__inline + .button {
  margin-top: 0;
}

.full-width-drawer.style--multi-button .full-width-drawer__wrap {
  padding-right: 20px;
  padding-left: 20px;
}

.full-width-drawer.style--multi-button .button {
  display: block;
}

.full-width-drawer.style--multi-button .button + .button {
  margin-left: 0;
}

.full-width-drawer .twitter-timeline__wrap {
  width: 100%;
  height: 500px;
  padding: 63px 20px 20px;
  margin-top: 36px;
}

@media only screen and (min-width: 37.5em) {
  .full-width-drawer__grid {
    padding: 68px 20px 33px;
  }
  .full-width-drawer__grid--heading .button {
    display: block;
  }
  .full-width-drawer__grid--title {
    text-indent: 42px;
    padding: 0 0 47px;
  }
  .full-width-drawer.style--multi-button .button {
    display: inline-block;
  }
  .full-width-drawer.style--multi-button .button + .button {
    margin-left: 18px;
  }
}

@media only screen and (min-width: 48em) {
  .full-width-drawer__content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .main-content .full-width-drawer__inline {
    width: 55%;
    padding-right: 0;
  }
  .main-content.width--full .full-width-drawer__inline, .full-width-drawer__inline {
    display: inline-block;
    width: auto;
    line-height: 1;
    text-align: left;
    padding-right: 70px;
    padding-bottom: 0;
  }
  .full-width-drawer__grid--title {
    padding-top: 29px;
  }
  .full-width-drawer__grid--item {
    overflow: hidden;
    width: 50%;
    border: solid transparent;
    border-width: 0 1px;
  }
  .full-width-drawer__grid--content {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .full-width-drawer__grid .overlay-text {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .full-width-drawer.style--multi-button .button + .button {
    margin-left: 18px;
  }
  .full-width-drawer .twitter-timeline__wrap {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 212px;
    height: 100%;
    padding: 63px 2px 0 20px;
    margin-top: 0;
  }
  [data-style="promotional"] .full-width-drawer__wrap {
    padding: 93px 232px 100px 0;
  }
}

@media only screen and (min-width: 64em) {
  .full-width-drawer__grid--item {
    width: 33.3%;
  }
  .full-width-drawer__grid--content {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .full-width-drawer__grid .overlay-text {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .full-width-drawer.style--multi-button .button + .button {
    margin-left: 30px;
  }
  .full-width-drawer .twitter-timeline__wrap {
    max-width: 276px;
  }
  [data-style="promotional"] .full-width-drawer__wrap {
    padding-right: 296px;
  }
}

@media only screen and (min-width: 80em) {
  .full-width-drawer__grid--content {
    height: 160px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .full-width-drawer__grid .overlay-text {
    font-size: 30px;
    font-size: 3rem;
  }
  .full-width-drawer__grid .overlay-text:after {
    border-width: 37px 0 37px 37px;
  }
  .full-width-drawer__grid .overlay-text.type--play:before {
    width: 175px;
    height: 175px;
    border-width: 5px;
  }
  .full-width-drawer__grid .overlay-text.type--play:after {
    left: 19px;
  }
  .full-width-drawer.style--multi-button .button + .button {
    margin-left: 3rem;
  }
  .full-width-drawer .twitter-timeline__wrap {
    max-width: 340px;
  }
  [data-style="promotional"] .full-width-drawer__wrap {
    padding-right: 360px;
  }
}

@media only screen and (min-width: 90em) {
  .full-width-drawer__grid--content {
    height: 160px;
    font-size: 20px;
    font-size: 2rem;
  }
  .full-width-drawer .twitter-timeline__wrap {
    max-width: 380px;
  }
  [data-style="promotional"] .full-width-drawer__wrap {
    padding-right: 400px;
  }
}

@media only screen and (min-width: 120em) {
  .full-width-drawer__grid--content {
    height: 210px;
    font-size: 24px;
    font-size: 2.4rem;
    padding: 0 47px;
  }
  .full-width-drawer .twitter-timeline__wrap {
    max-width: 520px;
  }
  [data-style="promotional"] .full-width-drawer__wrap {
    padding-right: 540px;
  }
}

.full-width-grid {
  padding: 5rem 20px;
}

.full-width-grid--heading, .full-width-grid--item-wrap {
  display: block;
  width: 100%;
  max-width: 1737px;
  margin: 0 auto;
}

.full-width-grid--heading {
  max-width: 1737px;
}

.full-width-grid--heading .button {
  display: none;
}

.full-width-grid--title {
  float: left;
  text-indent: 26px;
  text-align: left;
  padding: 21px 0;
}

.full-width-grid--item {
  text-align: center;
  overflow: hidden;
  float: left;
  width: 100%;
  margin-bottom: 2px;
}

.full-width-grid--item:hover [class*="--content"] {
  background-color: #388bc3;
  transition: all 0.3s ease;
}

.full-width-grid--image {
  position: relative;
  overflow: hidden;
  display: block;
}

.full-width-grid--image img {
  width: 100%;
}

.full-width-grid .overlay-text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  display: block;
  color: #fff;
  text-transform: uppercase;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.full-width-grid .overlay-text:before {
  content: '';
  position: relative;
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.28em;
  /* Adjusts for spacing */
}

.full-width-grid .overlay-text span {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  font-size: 2rem;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  line-height: 1;
}

.full-width-grid .overlay-text span.style--play {
  white-space: normal;
  padding-top: 100px;
  margin-top: 12px;
}

.full-width-grid .overlay-text span.style--play:before {
  width: 88px;
  height: 88px;
  border-width: 3px;
  border-color: #fff;
  background-color: transparent;
}

.full-width-grid .overlay-text span.style--play:after {
  border-width: 18px 0 18px 18px;
  border-color: transparent transparent transparent #fff;
  margin-top: 25px;
  margin-left: 5px;
}

.full-width-grid--content {
  display: block;
  height: 111px;
  color: #fff;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  text-align: left;
  background-color: #132128;
  padding: 0 28px;
  transition: all 0.3s ease;
}

.full-width-grid--content:before {
  content: '';
  position: relative;
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.28em;
  /* Adjusts for spacing */
}

.full-width-grid--content span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.36;
}

@media only screen and (min-width: 37.5em) {
  .full-width-grid {
    padding: 5rem 20px;
  }
  .full-width-grid--heading .button {
    display: block;
  }
  .full-width-grid--title {
    text-indent: 42px;
    padding: 0 0 47px;
  }
}

@media only screen and (min-width: 48em) {
  .full-width-grid--title {
    padding-top: 29px;
  }
  .full-width-grid--item {
    overflow: hidden;
    width: 50%;
    border: solid transparent;
    border-width: 0 1px;
  }
  .full-width-grid--content {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .full-width-grid .overlay-text span {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media only screen and (min-width: 64em) {
  .full-width-grid--item {
    width: 33.3%;
  }
  .full-width-grid--content {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .full-width-grid .overlay-text span {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media only screen and (min-width: 80em) {
  .full-width-grid--content {
    height: 160px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .full-width-grid .overlay-text span {
    font-size: 30px;
    font-size: 3rem;
  }
  .full-width-grid .overlay-text span.style--play {
    font-size: 30px;
    font-size: 3rem;
    padding-top: 200px;
    margin-top: 25px;
  }
  .full-width-grid .overlay-text span.style--play:before {
    width: 175px;
    height: 175px;
    border-width: 5px;
  }
  .full-width-grid .overlay-text span.style--play:after {
    border-width: 37px 0 37px 37px;
    margin-top: 50px;
    margin-left: 9px;
  }
}

@media only screen and (min-width: 90em) {
  .full-width-grid--content {
    height: 160px;
    font-size: 20px;
    font-size: 2rem;
  }
}

@media only screen and (min-width: 120em) {
  .full-width-grid--content {
    height: 210px;
    font-size: 24px;
    font-size: 2.4rem;
    padding: 0 47px;
  }
}

.double-feature {
  font-size: 0;
  transform: translateZ(0);
}

.double-feature__wrap {
  padding: 0 20px;
}

.double-feature__link {
  margin-top: 2rem;
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
}

.double-feature__link:after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  margin-left: 1rem;
  transition: 0.3s;
}

.double-feature__link:hover:after {
  margin-left: 1.5rem;
}

.double-feature__item {
  overflow: hidden;
  position: relative;
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  max-height: 675px;
  color: #fff;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
}

.double-feature__item img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 101%;
  max-width: 1000%;
  height: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.double-feature__item--wrap-outer {
  z-index: 1;
  margin: auto;
  height: 100%;
}

.double-feature__item--wrap-inner {
  display: block;
  vertical-align: middle;
  line-height: 1.2;
  width: 100%;
  padding: 9rem 4.5rem;
  position: relative;
  z-index: 20;
}

.double-feature__item--title, .double-feature__item--content {
  display: block;
}

.double-feature__item--title {
  line-height: 1;
}

.double-feature__item--title + [class*="--button"] {
  margin-top: 16px;
}

.double-feature[data-style="benefit"] .double-feature__item,
.double-feature[data-style="benefit"] .double-feature__item + [class*="__item"], .double-feature[data-style="contact"] .double-feature__item,
.double-feature[data-style="contact"] .double-feature__item + [class*="__item"] {
  left: 0;
}

.double-feature[data-style="benefit"] .double-feature__wrap {
  padding: 0;
}

.double-feature[data-style="benefit"] .double-feature__title,
.double-feature[data-style="benefit"] .double-feature__intro {
  padding-right: 20px;
  padding-left: 20px;
}

.double-feature[data-style="benefit"] .double-feature__item--title + [class*="--button"] {
  margin-top: 22px;
}

.double-feature[data-style="benefit"] .double-feature__item--content {
  padding-top: 0;
}

.double-feature[data-style="benefit"] .double-feature__item--button {
  margin-top: 0;
}

.double-feature[data-style="benefit"] .double-feature__item img {
  height: auto;
  min-height: 101%;
}

.double-feature[data-style="benefit"] .double-feature__item:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}

.double-feature[data-style="contact"] .double-feature__wrap {
  padding: 0;
}

.double-feature[data-style="contact"] .double-feature__item {
  margin-top: 0;
}

.double-feature[data-style="contact"] .double-feature__item b {
  position: relative;
  top: 2px;
  margin-right: 8px;
}

@media only screen and (min-width: 37.5em) {
  .double-feature__item--title + [class*="--button"] {
    margin-top: 54px;
  }
}

@media only screen and (min-width: 48em) {
  .double-feature[data-style="contact"] .double-feature__item--wrap-outer {
    padding: 11% 3% 0;
  }
  .double-feature[data-style="contact"] .double-feature__item--wrap-inner {
    vertical-align: top;
  }
}

@media only screen and (min-width: 64em) {
  .double-feature__item {
    margin-right: 3rem;
  }
  .double-feature__item:last-child {
    margin-right: 0;
  }
  .double-feature[data-style="contact"] .double-feature__item {
    width: calc(50% - 3rem);
    margin-bottom: 3rem;
  }
  .double-feature[data-style="contact"] .double-feature__item--wrap-outer {
    padding-right: 9%;
    padding-left: 9%;
  }
}

@media only screen and (min-width: 80em) {
  .double-feature[data-style="benefit"] .double-feature__item--title {
    padding-bottom: 16px;
  }
  .double-feature[data-style="benefit"] .double-feature__item--button {
    margin-top: 9px;
  }
  .double-feature[data-style="contact"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .double-feature[data-style="contact"] .double-feature__item--wrap-outer {
    padding-right: 6%;
    padding-left: 6%;
  }
  .double-feature[data-style="contact"] .double-feature__item--content b {
    top: 3px;
  }
}

@media only screen and (min-width: 90em) {
  .double-feature[data-style="contact"] .double-feature__item--title {
    font-size: 42px;
    font-size: 4.2rem;
  }
  .double-feature[data-style="contact"] .double-feature__item--content {
    padding-right: 11%;
    padding-left: 11%;
  }
}

@media only screen and (min-width: 120em) {
  .double-feature div.double-feature__item {
    margin-right: -3px;
    margin-left: -3px;
  }
  .double-feature[data-style="contact"] .double-feature__item {
    float: none;
  }
}

.promo__wrap {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
}

.promo__wrap--wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
}

@media only screen and (min-width: 60em) {
  .promo__wrap {
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
  }
}

.topics {
  padding: 33px 20px 0;
}

.topics__item-wrap {
  display: block;
  width: 100%;
  max-width: 1737px;
  margin: 0 auto;
  text-align: center;
}

.topics__item {
  position: relative;
  overflow: hidden;
  float: left;
  width: 100%;
  max-height: 660px;
  text-decoration: none;
  margin-bottom: 12px;
}

/*.topics__item:nth-child(4n+1) [class*="--heading"],*/
.topics__item:nth-child(4n+1) [class*="--image"] {
  background-color: #77a2ba;
}

/*.topics__item:nth-child(4n+2) [class*="--heading"],*/
.topics__item:nth-child(4n+2) [class*="--image"] {
  background-color: #b9cfdc;
}

/*.topics__item:nth-child(4n+3) [class*="--heading"],*/
.topics__item:nth-child(4n+3) [class*="--image"] {
  background-color: #fcc844;
}

/*.topics__item:nth-child(4n+4) [class*="--heading"],*/
.topics__item:nth-child(4n+4) [class*="--image"] {
  background-color: #5087a5;
}
.topics__item [class*="--heading"].background--default{background-color: #5087a5;}

.topics__item--heading {
  display: block;
  color: #fff;
  padding: 1.5rem 0;
  margin-bottom: 2px;
  transition: all 0.3s ease;
}

.topics__item--image {
  position: relative;
  overflow: hidden;
  display: block;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  padding-bottom: 100%;
}

.topics__item--content {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 111px;
  color: #fff;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  text-align: left;
  background-color: rgba(19, 33, 40, 0.8);
  padding: 0 15px;
  transition: all 0.3s ease;
}

.topics__item--content:before {
  content: '';
  position: relative;
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.28em;
  /* Adjusts for spacing */
}

.topics__item--content span {
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  line-height: 1.36;
}

.topics__item--content p {
  padding: 0;
}

[data-style="double"] .topics__item {
  max-width: 861px;
}

.topics__item:hover {
  transition: all 0.3s ease;
}

.topics__item:hover [class*="--heading"],
.topics__item:hover [class*="--content"] {
  background-color: #388bc3;
}

.topics .link {
  display: block;
}

.topics .overlay-text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  display: block;
  color: #fff;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.topics .overlay-text:before {
  content: '';
  position: relative;
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.28em;
  /* Adjusts for spacing */
}

.topics .overlay-text span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.topics .overlay-text b,
.topics .overlay-text time {
  display: block;
  font-weight: normal;
  padding-top: 3px;
}

.topics .overlay-text b {
  font-size: 20px;
  font-size: 2rem;
}

.topics .overlay-text time {
  font-size: 18px;
  font-size: 1.8rem;
}

.topics[data-style="news"] .overlay-text {
  text-align: left;
}

.topics[data-style="news"] .overlay-text span {
  vertical-align: bottom;
  padding-bottom: 20px;
}

@media only screen and (max-width: 360px) {
  .topics__item .overlay-text:before {
    height: 60%;
  }
}

@media only screen and (min-width: 37.5em) {
  .topics {
    padding: 68px 20px 33px;
  }
  .topics__item--image {
    padding-bottom: 62%;
  }
  .topics .overlay-text {
    font-size: 40px;
    font-size: 4rem;
  }
  .topics .overlay-text b {
    font-size: 30px;
    font-size: 3rem;
  }
  .topics .overlay-text time {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .topics[data-style="news"] .overlay-text span {
    padding-bottom: 0;
  }
}

@media only screen and (min-width: 48em) {
  .topics__item-wrap {
    padding-top: 43px;
  }
  .topics__item {
    overflow: hidden;
    width: 50%;
    border: solid transparent;
    border-width: 0 1px;
    margin-bottom: 2px;
  }
  [data-style="double"] .topics__item {
    margin-bottom: 18px;
    border-right-width: 7px;
  }
  [data-style="double"] .topics__item:nth-child(2n+2) {
    border-right-width: 0;
    border-left-width: 8px;
  }
  .topics__item--content {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .topics__item--image {
    padding-bottom: 80%;
  }
  .topics .overlay-text b {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .topics .overlay-text time {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .topics[data-style="news"] .overlay-text span {
    padding-bottom: 20px;
  }
}

@media only screen and (min-width: 64em) {
  [data-style="news"] .topics__item,
  [data-topic-count="3"] .topics__item {
    width: 33.3%;
  }
  [data-topic-count="4"] .topics__item {
    width: 25%;
  }
  [data-topic-count="4"] .topics__item--content {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .topics__item--image {
    padding-bottom: 370px;
  }
  .topics__item--content {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .topics .overlay-text:before {
    height: 65%;
  }
  .topics .overlay-text b {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .topics .overlay-text time {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .topics[data-topic-count="4"] .overlay-text:before {
    height: 72%;
  }
  .topics[data-style="news"] .overlay-text span {
    padding-bottom: 0;
  }
  .topics[data-style="news"] .overlay-text b {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .topics[data-style="news"] .overlay-text time {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media only screen and (min-width: 80em) {
  .topics__item--image {
    padding-bottom: 460px;
  }
  [data-topic-count="4"] .topics__item--content, .topics__item--content {
    height: 160px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .topics__item--content {
    padding: 0 28px;
  }
  .topics .overlay-text b {
    font-size: 30px;
    font-size: 3rem;
  }
  .topics[data-style="news"] .overlay-text {
    font-size: 34px;
    font-size: 3.4rem;
  }
  .topics[data-style="news"] .overlay-text:before {
    height: 60%;
  }
  .topics[data-style="news"] .overlay-text span {
    padding-left: 20px;
  }
  .topics[data-style="news"] .overlay-text b {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .topics[data-style="news"] .overlay-text time {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media only screen and (min-width: 90em) {
  .topics__item--image {
    padding-bottom: 620px;
  }
  .topics__item--content {
    height: 160px;
    font-size: 20px;
    font-size: 2rem;
  }
  .topics .overlay-text:before {
    height: 70%;
  }
  .topics[data-style="news"] .overlay-text {
    font-size: 40px;
    font-size: 4rem;
  }
}

@media only screen and (min-width: 120em) {
  .topics__item {
    height: 660px;
  }
  [data-topic-count="4"] .topics__item--content, .topics__item--content {
    font-size: 21px;
    font-size: 2.1rem;
    padding: 0 27px;
  }
  .topics__item--content {
    height: 228px;
    font-size: 24px;
    font-size: 2.4rem;
    padding: 0 47px;
  }
  .topics .overlay-text:before {
    height: 70%;
  }
}

.slider {
  overflow: hidden;
  padding: 0;
  transform-style: preserve-3d;
}

.slider__wrap, .slider__slides-wrap {
  position: relative;
}

.slider__slide {
  position: relative;
  outline: none;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  padding: 34px 18px 104px;
  text-align: center;
}

.main-nav + .slider .slider__slide {
  padding-top: 79px;
}

.main-nav + .slider .slider__slide--pre-title {
  height: auto;
  margin-top: 0;
}

.slider__slide--title, .slider__slide--intro {
  max-width: 900px;
}

.slider__slide--title {
  padding-bottom: 24px;
}

.slider__slide--intro {
  padding-bottom: 31px;
}

.slider .fs-carousel-pagination {
  position: absolute;
  height: 12px;
  bottom: 47px;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  width: auto;
  padding: 0;
  margin: 0;
}

.slider .fs-carousel-pagination button {
  overflow: hidden;
  width: 12px;
  height: 12px;
  text-indent: -99em;
  border: 0 none;
  border-radius: 99em;
  background-color: currentColor;
  outline: none;
  transition: all 0.3s ease;
  margin: 0 0 0 18px;
  opacity: 1;
}

.slider .fs-carousel-pagination button:first-child {
  margin-top: 0;
  margin-left: 0;
}

.slider .fs-carousel-pagination button:hover, .slider .fs-carousel-pagination button.fs-carousel-active {
  background-color: #388bc3;
}

[data-style="aggregator"] .slider__slides-wrap {
  overflow: visible;
  max-width: 1200px;
  padding: 34px 0 0;
  border: solid #388bc3;
  border-width: 0 4px 4px;
  margin: 17px auto 0;
}

[data-style="aggregator"] .slider__slide {
  padding: 0;
}

[data-style="aggregator"] .slider__slide--title {
  padding-bottom: 17px;
}

[data-style="aggregator"] .slider__slide--intro {
  font-size: 16px;
  font-size: 1.6rem;
  padding-bottom: 0;
}

[data-style="aggregator"] .slider__slide--intro p + .button {
  margin-top: 30px;
  margin-bottom: 30px;
}

.slider[data-style="aggregator"] {
  padding: 72px 20px 20px;
}

.slider[data-style="aggregator"] .fs-carousel-pagination {
  overflow: hidden;
  top: -4px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}

.slider[data-style="aggregator"] .fs-carousel-pagination button {
  position: relative;
  overflow: visible;
  display: inline-block;
  margin: 0 9px;
}

.slider[data-style="aggregator"] .fs-carousel-pagination button:first-child:before, .slider[data-style="aggregator"] .fs-carousel-pagination button:last-child:after {
  content: '';
  position: absolute;
  top: 4px;
  right: 35px;
  width: 1200px;
  height: 4px;
  background-color: #388bc3;
}

.slider[data-style="aggregator"] .fs-carousel-pagination button:last-child:after {
  right: auto;
  left: 35px;
}

@media only screen and (min-width: 37.5em) {
  [data-style="aggregator"] .slider__slides-wrap {
    padding-top: 68px;
    padding-bottom: 34px;
  }
  [data-style="aggregator"] .slider__slide {
    padding-right: 20px;
    padding-left: 20px;
  }
  [data-style="aggregator"] .slider__slide--intro {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

@media only screen and (min-width: 48em) {
  .main-nav + .slider .slider__slide {
    min-height: 670px;
    padding-top: 113px;
    padding-bottom: 0;
  }
  [data-style="aggregator"] .slider__slides-wrap {
    padding-top: 82px;
    padding-bottom: 60px;
    margin-top: 34px;
  }
  [data-style="aggregator"] .slider__slide {
    padding-right: 60px;
    padding-left: 60px;
  }
  [data-style="aggregator"] .slider__slide--intro {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .slider[data-style="aggregator"] .fs-carousel-pagination {
    height: 23px;
  }
  .slider[data-style="aggregator"] .fs-carousel-pagination button:first-child:before, .slider[data-style="aggregator"] .fs-carousel-pagination button:last-child:after {
    right: 55px;
  }
  .slider[data-style="aggregator"] .fs-carousel-pagination button:last-child:after {
    left: 55px;
  }
  .slider[data-style="aggregator"] {
    padding-bottom: 60px;
  }
}

@media only screen and (min-width: 64em) {
  .slider__slide {
    padding-top: 57px;
    padding-bottom: 117px;
  }
  .main-nav + .slider .slider__slide {
    padding-top: 163px;
  }
  .slider .fs-carousel-pagination {
    top: 50%;
    right: 2%;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
    height: auto;
  }
  .slider .fs-carousel-pagination button {
    display: block;
    margin: 32px 0 0;
  }
  [data-style="aggregator"] .slider__slide {
    padding-right: 115px;
    padding-left: 115px;
  }
  .slider[data-style="aggregator"] {
    padding-bottom: 97px;
  }
}

@media only screen and (min-width: 80em) {
  .slider__slide {
    padding-top: 137px;
  }
  .main-nav + .slider .slider__slide {
    min-height: 765px;
    padding-top: 185px;
    padding-bottom: 0;
  }
  .slider__slide--pre-title {
    height: 68px;
    margin-top: -68px;
  }
  .slider__slide--title, .slider__slide--intro {
    max-width: 1024px;
  }
}

@media only screen and (min-width: 90em) {
  .slider__slide {
    padding-top: 237px;
  }
  .slider__slide--title {
    padding-bottom: 40px;
  }
  .slider__slide--intro {
    padding-bottom: 44px;
  }
}

.nav-list {
  padding: 0;
  text-align: center;
}

.nav-list__wrap {
  padding: 25px 0 25px;
}

[class*="background--"] .nav-list__item--link:hover {
  color: #fff;
}

.hidden .nav-list {
  padding-top: 0;
  padding-bottom: 0;
}

.hidden .nav-list__group-wrap {
  padding-top: 30px;
}

.nav-list__group-wrap {
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  line-height: 1;
}

.nav-list__group-wrap + [class*="__button"] {
  margin-top: 30px;
}

.nav-list__group {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0 20px 16px;
}

.nav-list__group + .nav-list__group {
  margin-top: -16px;
  padding-top: 0;
}

.nav-list__group + [class*="__button"] {
  margin-top: 37px;
  margin-bottom: 41px;
}

.nav-list__group.background--default a:focus, .nav-list__group.background--default a:hover,
.nav-list__group.background--default .link:focus,
.nav-list__group.background--default .link:hover {
  color: #132128;
}

.nav-list__title {
  padding-top: 30px;
}

.nav-list__item {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  text-transform: uppercase;
  padding: 12px 0;
  margin: 0;
}

.nav-list__item:first-child {
  border-left: 0 none;
}

.nav-list__item--link {
  display: block;
}

.nav-list__item:first-child [class*="--link"] {
  padding-left: 0;
}

.nav-list__item:last-child [class*="--link"] {
  border-right: 0 none;
  padding-right: 0;
}

.nav-list [class*="icon-"] {
  position: relative;
  right: -6px;
}

@media only screen and (min-width: 37.5em) {
  .nav-list__wrap {
    padding: 35px 0 35px;
  }
  .hidden .nav-list__group-wrap {
    padding-top: 63px;
  }
  .nav-list__group {
    padding-bottom: 32px;
  }
  .nav-list__group + [class*="__button"] {
    margin-top: 67px;
    margin-bottom: 51px;
  }
  .nav-list__title {
    padding-top: 40px;
  }
  .nav-list__item {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 11px 0;
  }
  .nav-list__item--link {
    border-right: 2px solid #fff;
    padding: 0 20px 0 15px;
  }
  .nav-list [class*="icon-"] {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media only screen and (min-width: 48em) {
  .nav-list__wrap {
    padding: 45px 0 45px;
  }
}

@media only screen and (min-width: 80em) {
  .nav-list__item--link {
    padding: 0 30px 0 25px;
  }
}

.form,
.gform_wrapper {
  padding: 68px 10px 42px;
  /* [type="password"] {
		letter-spacing: -6px;
	} */
  /* .acf-fields,
	.acf-form-submit {
		float: left;
		width: 100%;
		clear: both;
	} */
  /* .acf-field .description {
		line-height: 1.2;
		padding-top: 0
	} */
}

.form .gform_wrapper,
.gform_wrapper .gform_wrapper {
  padding-top: 0;
  padding-bottom: 0;
}

.form ul,
.form li,
.gform_wrapper ul,
.gform_wrapper li {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}

.form__intro,
.gform_wrapper__intro {
  max-width: 910px;
}

.form form, .form__block,
.gform_wrapper form,
.gform_wrapper__block {
  position: relative;
  max-width: 870px;
  margin: 0 auto;
}

.form form p[class*="login-"],
.form form p[class*="form-submit"], .form form--row, .form__block p[class*="login-"],
.form__block p[class*="form-submit"], .form__block--row,
.gform_wrapper form p[class*="login-"],
.gform_wrapper form p[class*="form-submit"],
.gform_wrapper form--row,
.gform_wrapper__block p[class*="login-"],
.gform_wrapper__block p[class*="form-submit"],
.gform_wrapper__block--row {
  position: relative;
  float: left;
  clear: both;
  width: 100%;
  padding: 9px 10px;
}

.form form--error, .form__block--error,
.gform_wrapper form--error,
.gform_wrapper__block--error {
  color: #b80000;
}

.form form--error .close, .form__block--error .close,
.gform_wrapper form--error .close,
.gform_wrapper__block--error .close {
  display: none;
}

.form form--error br, .form__block--error br,
.gform_wrapper form--error br,
.gform_wrapper__block--error br {
  content: ' ';
  display: block;
  margin-top: 10px;
}

.form form--error .alert, .form form--error .validation_error, .form__block--error .alert, .form__block--error .form .validation_error, .form .form__block--error .validation_error, .form__block--error
.gform_wrapper .validation_error,
.gform_wrapper .form__block--error .validation_error,
.gform_wrapper form--error .alert,
.gform_wrapper form--error .validation_error,
.gform_wrapper__block--error .alert,
.gform_wrapper__block--error .form .validation_error, .form
.gform_wrapper__block--error .validation_error,
.gform_wrapper__block--error
.gform_wrapper .validation_error,
.gform_wrapper
.gform_wrapper__block--error .validation_error {
  padding-bottom: 30px;
}

.form .gfield_required,
.form .validation_message,
.form .req,
.gform_wrapper .gfield_required,
.gform_wrapper .validation_message,
.gform_wrapper .req {
  color: #b80000;
}

.form .req-text,
.form .validation_message,
.gform_wrapper .req-text,
.gform_wrapper .validation_message {
  position: relative;
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  text-align: left;
  padding-left: 15px;
  margin-top: -9px;
}

.form .validation_message,
.gform_wrapper .validation_message {
  clear: both;
  margin-top: 0 !important;
}

.form .gform_validation_container,
.gform_wrapper .gform_validation_container {
  display: none;
}

.form p[class*="login-"] label:after,
.gform_wrapper p[class*="login-"] label:after {
  content: '*';
  color: #b80000;
}

.form .gfield_description,
.form .gform_drop_instructions,
.form .ginput_counter,
.gform_wrapper .gfield_description,
.gform_wrapper .gform_drop_instructions,
.gform_wrapper .ginput_counter {
  margin: 1rem 0;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
}

.form p[class*="login-"] label,
.form[class*="labels-on-top"] label,
.form .ontop,
.form [type="url"],
.form [type="tel"],
.form [type="email"],
.form [type="number"],
.form [type="password"],
.form [type="text"],
.form textarea,
.form select,
.gform_wrapper p[class*="login-"] label,
.gform_wrapper[class*="labels-on-top"] label,
.gform_wrapper .ontop,
.gform_wrapper [type="url"],
.gform_wrapper [type="tel"],
.gform_wrapper [type="email"],
.gform_wrapper [type="number"],
.gform_wrapper [type="password"],
.gform_wrapper [type="text"],
.gform_wrapper textarea,
.gform_wrapper select {
  overflow: hidden;
  position: relative;
  width: 100%;
  color: #b8b8b8;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  text-align: left;
  border: 0 none;
  border-radius: 4px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  margin: 0;
}

.form p[class*="login-"] label,
.form[class*="labels-on-top"] label,
.form .ontop,
.gform_wrapper p[class*="login-"] label,
.gform_wrapper[class*="labels-on-top"] label,
.gform_wrapper .ontop {
  cursor: text;
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  padding: 18px 25px;
}

html.no-js .form p[class*="login-"] label, html.no-js
.form[class*="labels-on-top"] label, html.no-js
.form .ontop, html.no-js
.gform_wrapper p[class*="login-"] label, html.no-js
.gform_wrapper[class*="labels-on-top"] label, html.no-js
.gform_wrapper .ontop {
  position: relative;
  top: 0;
  left: 0;
  height: auto;
  padding: 0 25px 7px;
  margin: 0 auto;
}

.form p[class*="login-"] label + input:focus,
.form p[class*="login-"] label + select:focus,
.form p[class*="login-"] label + textarea:focus,
.form p[class*="login-"] label + div input:focus,
.form p[class*="login-"] label + div select:focus,
.form p[class*="login-"] label + div textarea:focus,
.form[class*="labels-on-top"] label + input:focus,
.form[class*="labels-on-top"] label + select:focus,
.form[class*="labels-on-top"] label + textarea:focus,
.form[class*="labels-on-top"] label + div input:focus,
.form[class*="labels-on-top"] label + div select:focus,
.form[class*="labels-on-top"] label + div textarea:focus,
.form .ontop + input:focus,
.form .ontop + select:focus,
.form .ontop + textarea:focus,
.form .ontop + div input:focus,
.form .ontop + div select:focus,
.form .ontop + div textarea:focus,
.gform_wrapper p[class*="login-"] label + input:focus,
.gform_wrapper p[class*="login-"] label + select:focus,
.gform_wrapper p[class*="login-"] label + textarea:focus,
.gform_wrapper p[class*="login-"] label + div input:focus,
.gform_wrapper p[class*="login-"] label + div select:focus,
.gform_wrapper p[class*="login-"] label + div textarea:focus,
.gform_wrapper[class*="labels-on-top"] label + input:focus,
.gform_wrapper[class*="labels-on-top"] label + select:focus,
.gform_wrapper[class*="labels-on-top"] label + textarea:focus,
.gform_wrapper[class*="labels-on-top"] label + div input:focus,
.gform_wrapper[class*="labels-on-top"] label + div select:focus,
.gform_wrapper[class*="labels-on-top"] label + div textarea:focus,
.gform_wrapper .ontop + input:focus,
.gform_wrapper .ontop + select:focus,
.gform_wrapper .ontop + textarea:focus,
.gform_wrapper .ontop + div input:focus,
.gform_wrapper .ontop + div select:focus,
.gform_wrapper .ontop + div textarea:focus {
  z-index: 1;
}

.form p[class*="login-"] label.hidden,
.form[class*="labels-on-top"] label.hidden,
.form .ontop.hidden,
.gform_wrapper p[class*="login-"] label.hidden,
.gform_wrapper[class*="labels-on-top"] label.hidden,
.gform_wrapper .ontop.hidden {
  display: none;
}

.form [type="url"],
.form [type="tel"],
.form [type="email"],
.form [type="number"],
.form [type="password"],
.form [type="text"],
.form textarea,
.form select,
.gform_wrapper [type="url"],
.gform_wrapper [type="tel"],
.gform_wrapper [type="email"],
.gform_wrapper [type="number"],
.gform_wrapper [type="password"],
.gform_wrapper [type="text"],
.gform_wrapper textarea,
.gform_wrapper select {
  background-color: #eeeeee;
}

.form [type="url"].active, .form [type="url"]:focus,
.form [type="tel"].active,
.form [type="tel"]:focus,
.form [type="email"].active,
.form [type="email"]:focus,
.form [type="number"].active,
.form [type="number"]:focus,
.form [type="password"].active,
.form [type="password"]:focus,
.form [type="text"].active,
.form [type="text"]:focus,
.form textarea.active,
.form textarea:focus,
.form select.active,
.form select:focus,
.gform_wrapper [type="url"].active,
.gform_wrapper [type="url"]:focus,
.gform_wrapper [type="tel"].active,
.gform_wrapper [type="tel"]:focus,
.gform_wrapper [type="email"].active,
.gform_wrapper [type="email"]:focus,
.gform_wrapper [type="number"].active,
.gform_wrapper [type="number"]:focus,
.gform_wrapper [type="password"].active,
.gform_wrapper [type="password"]:focus,
.gform_wrapper [type="text"].active,
.gform_wrapper [type="text"]:focus,
.gform_wrapper textarea.active,
.gform_wrapper textarea:focus,
.gform_wrapper select.active,
.gform_wrapper select:focus {
  outline: none;
  color: #388bc3;
  transition: all 0.3s ease;
}

.form [type="url"]:focus,
.form [type="tel"]:focus,
.form [type="email"]:focus,
.form [type="number"]:focus,
.form [type="password"]:focus,
.form [type="text"]:focus,
.form textarea:focus,
.form select:focus,
.gform_wrapper [type="url"]:focus,
.gform_wrapper [type="tel"]:focus,
.gform_wrapper [type="email"]:focus,
.gform_wrapper [type="number"]:focus,
.gform_wrapper [type="password"]:focus,
.gform_wrapper [type="text"]:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
  color: #388bc3;
  box-shadow: 0 0 8px rgba(19, 33, 40, 0.5);
}

.form [type="url"]:-webkit-autofill, .form [type="url"]:-webkit-autofill:focus,
.form [type="tel"]:-webkit-autofill,
.form [type="tel"]:-webkit-autofill:focus,
.form [type="email"]:-webkit-autofill,
.form [type="email"]:-webkit-autofill:focus,
.form [type="number"]:-webkit-autofill,
.form [type="number"]:-webkit-autofill:focus,
.form [type="password"]:-webkit-autofill,
.form [type="password"]:-webkit-autofill:focus,
.form [type="text"]:-webkit-autofill,
.form [type="text"]:-webkit-autofill:focus,
.form textarea:-webkit-autofill,
.form textarea:-webkit-autofill:focus,
.form select:-webkit-autofill,
.form select:-webkit-autofill:focus,
.gform_wrapper [type="url"]:-webkit-autofill,
.gform_wrapper [type="url"]:-webkit-autofill:focus,
.gform_wrapper [type="tel"]:-webkit-autofill,
.gform_wrapper [type="tel"]:-webkit-autofill:focus,
.gform_wrapper [type="email"]:-webkit-autofill,
.gform_wrapper [type="email"]:-webkit-autofill:focus,
.gform_wrapper [type="number"]:-webkit-autofill,
.gform_wrapper [type="number"]:-webkit-autofill:focus,
.gform_wrapper [type="password"]:-webkit-autofill,
.gform_wrapper [type="password"]:-webkit-autofill:focus,
.gform_wrapper [type="text"]:-webkit-autofill,
.gform_wrapper [type="text"]:-webkit-autofill:focus,
.gform_wrapper textarea:-webkit-autofill,
.gform_wrapper textarea:-webkit-autofill:focus,
.gform_wrapper select:-webkit-autofill,
.gform_wrapper select:-webkit-autofill:focus {
  -webkit-text-fill-color: #388bc3;
}

.form [type="url"].error,
.gfield_error .form [type="url"],
.form [type="tel"].error,
.gfield_error
.form [type="tel"],
.form [type="email"].error,
.gfield_error
.form [type="email"],
.form [type="number"].error,
.gfield_error
.form [type="number"],
.form [type="password"].error,
.gfield_error
.form [type="password"],
.form [type="text"].error,
.gfield_error
.form [type="text"],
.form textarea.error,
.gfield_error
.form textarea,
.form select.error,
.gfield_error
.form select,
.gform_wrapper [type="url"].error,
.gfield_error
.gform_wrapper [type="url"],
.gform_wrapper [type="tel"].error,
.gfield_error
.gform_wrapper [type="tel"],
.gform_wrapper [type="email"].error,
.gfield_error
.gform_wrapper [type="email"],
.gform_wrapper [type="number"].error,
.gfield_error
.gform_wrapper [type="number"],
.gform_wrapper [type="password"].error,
.gfield_error
.gform_wrapper [type="password"],
.gform_wrapper [type="text"].error,
.gfield_error
.gform_wrapper [type="text"],
.gform_wrapper textarea.error,
.gfield_error
.gform_wrapper textarea,
.gform_wrapper select.error,
.gfield_error
.gform_wrapper select {
  border: 1px solid #b80000 !important;
  box-shadow: 0 0 8px #b80000 !important;
}

[class*="font-color--white"] .form [type="url"],
[class*="font-color--white"] .form [type="tel"],
[class*="font-color--white"] .form [type="email"],
[class*="font-color--white"] .form [type="number"],
[class*="font-color--white"] .form [type="password"],
[class*="font-color--white"] .form [type="text"],
[class*="font-color--white"] .form textarea,
[class*="font-color--white"] .form select, .form[class*="font-color--white"] [type="url"],
.form[class*="font-color--white"] [type="tel"],
.form[class*="font-color--white"] [type="email"],
.form[class*="font-color--white"] [type="number"],
.form[class*="font-color--white"] [type="password"],
.form[class*="font-color--white"] [type="text"],
.form[class*="font-color--white"] textarea,
.form[class*="font-color--white"] select, [class*="font-color--white"]
.gform_wrapper [type="url"],
[class*="font-color--white"]
.gform_wrapper [type="tel"],
[class*="font-color--white"]
.gform_wrapper [type="email"],
[class*="font-color--white"]
.gform_wrapper [type="number"],
[class*="font-color--white"]
.gform_wrapper [type="password"],
[class*="font-color--white"]
.gform_wrapper [type="text"],
[class*="font-color--white"]
.gform_wrapper textarea,
[class*="font-color--white"]
.gform_wrapper select,
.gform_wrapper[class*="font-color--white"] [type="url"],
.gform_wrapper[class*="font-color--white"] [type="tel"],
.gform_wrapper[class*="font-color--white"] [type="email"],
.gform_wrapper[class*="font-color--white"] [type="number"],
.gform_wrapper[class*="font-color--white"] [type="password"],
.gform_wrapper[class*="font-color--white"] [type="text"],
.gform_wrapper[class*="font-color--white"] textarea,
.gform_wrapper[class*="font-color--white"] select {
  background: #fff;
}

[class*="font-color--white"] .form [type="url"].active, [class*="font-color--white"] .form [type="url"]:focus,
[class*="font-color--white"] .form [type="tel"].active,
[class*="font-color--white"] .form [type="tel"]:focus,
[class*="font-color--white"] .form [type="email"].active,
[class*="font-color--white"] .form [type="email"]:focus,
[class*="font-color--white"] .form [type="number"].active,
[class*="font-color--white"] .form [type="number"]:focus,
[class*="font-color--white"] .form [type="password"].active,
[class*="font-color--white"] .form [type="password"]:focus,
[class*="font-color--white"] .form [type="text"].active,
[class*="font-color--white"] .form [type="text"]:focus,
[class*="font-color--white"] .form textarea.active,
[class*="font-color--white"] .form textarea:focus,
[class*="font-color--white"] .form select.active,
[class*="font-color--white"] .form select:focus, .form[class*="font-color--white"] [type="url"].active, .form[class*="font-color--white"] [type="url"]:focus,
.form[class*="font-color--white"] [type="tel"].active,
.form[class*="font-color--white"] [type="tel"]:focus,
.form[class*="font-color--white"] [type="email"].active,
.form[class*="font-color--white"] [type="email"]:focus,
.form[class*="font-color--white"] [type="number"].active,
.form[class*="font-color--white"] [type="number"]:focus,
.form[class*="font-color--white"] [type="password"].active,
.form[class*="font-color--white"] [type="password"]:focus,
.form[class*="font-color--white"] [type="text"].active,
.form[class*="font-color--white"] [type="text"]:focus,
.form[class*="font-color--white"] textarea.active,
.form[class*="font-color--white"] textarea:focus,
.form[class*="font-color--white"] select.active,
.form[class*="font-color--white"] select:focus, [class*="font-color--white"]
.gform_wrapper [type="url"].active, [class*="font-color--white"]
.gform_wrapper [type="url"]:focus,
[class*="font-color--white"]
.gform_wrapper [type="tel"].active,
[class*="font-color--white"]
.gform_wrapper [type="tel"]:focus,
[class*="font-color--white"]
.gform_wrapper [type="email"].active,
[class*="font-color--white"]
.gform_wrapper [type="email"]:focus,
[class*="font-color--white"]
.gform_wrapper [type="number"].active,
[class*="font-color--white"]
.gform_wrapper [type="number"]:focus,
[class*="font-color--white"]
.gform_wrapper [type="password"].active,
[class*="font-color--white"]
.gform_wrapper [type="password"]:focus,
[class*="font-color--white"]
.gform_wrapper [type="text"].active,
[class*="font-color--white"]
.gform_wrapper [type="text"]:focus,
[class*="font-color--white"]
.gform_wrapper textarea.active,
[class*="font-color--white"]
.gform_wrapper textarea:focus,
[class*="font-color--white"]
.gform_wrapper select.active,
[class*="font-color--white"]
.gform_wrapper select:focus,
.gform_wrapper[class*="font-color--white"] [type="url"].active,
.gform_wrapper[class*="font-color--white"] [type="url"]:focus,
.gform_wrapper[class*="font-color--white"] [type="tel"].active,
.gform_wrapper[class*="font-color--white"] [type="tel"]:focus,
.gform_wrapper[class*="font-color--white"] [type="email"].active,
.gform_wrapper[class*="font-color--white"] [type="email"]:focus,
.gform_wrapper[class*="font-color--white"] [type="number"].active,
.gform_wrapper[class*="font-color--white"] [type="number"]:focus,
.gform_wrapper[class*="font-color--white"] [type="password"].active,
.gform_wrapper[class*="font-color--white"] [type="password"]:focus,
.gform_wrapper[class*="font-color--white"] [type="text"].active,
.gform_wrapper[class*="font-color--white"] [type="text"]:focus,
.gform_wrapper[class*="font-color--white"] textarea.active,
.gform_wrapper[class*="font-color--white"] textarea:focus,
.gform_wrapper[class*="font-color--white"] select.active,
.gform_wrapper[class*="font-color--white"] select:focus {
  color: #132128;
}

[class*="font-color--white"] .form [type="url"]:focus,
[class*="font-color--white"] .form [type="tel"]:focus,
[class*="font-color--white"] .form [type="email"]:focus,
[class*="font-color--white"] .form [type="number"]:focus,
[class*="font-color--white"] .form [type="password"]:focus,
[class*="font-color--white"] .form [type="text"]:focus,
[class*="font-color--white"] .form textarea:focus,
[class*="font-color--white"] .form select:focus, .form[class*="font-color--white"] [type="url"]:focus,
.form[class*="font-color--white"] [type="tel"]:focus,
.form[class*="font-color--white"] [type="email"]:focus,
.form[class*="font-color--white"] [type="number"]:focus,
.form[class*="font-color--white"] [type="password"]:focus,
.form[class*="font-color--white"] [type="text"]:focus,
.form[class*="font-color--white"] textarea:focus,
.form[class*="font-color--white"] select:focus, [class*="font-color--white"]
.gform_wrapper [type="url"]:focus,
[class*="font-color--white"]
.gform_wrapper [type="tel"]:focus,
[class*="font-color--white"]
.gform_wrapper [type="email"]:focus,
[class*="font-color--white"]
.gform_wrapper [type="number"]:focus,
[class*="font-color--white"]
.gform_wrapper [type="password"]:focus,
[class*="font-color--white"]
.gform_wrapper [type="text"]:focus,
[class*="font-color--white"]
.gform_wrapper textarea:focus,
[class*="font-color--white"]
.gform_wrapper select:focus,
.gform_wrapper[class*="font-color--white"] [type="url"]:focus,
.gform_wrapper[class*="font-color--white"] [type="tel"]:focus,
.gform_wrapper[class*="font-color--white"] [type="email"]:focus,
.gform_wrapper[class*="font-color--white"] [type="number"]:focus,
.gform_wrapper[class*="font-color--white"] [type="password"]:focus,
.gform_wrapper[class*="font-color--white"] [type="text"]:focus,
.gform_wrapper[class*="font-color--white"] textarea:focus,
.gform_wrapper[class*="font-color--white"] select:focus {
  box-shadow: 0 0 8px rgba(56, 139, 195, 0.5);
}

[class*="font-color--white"] .form [type="url"]:-webkit-autofill, [class*="font-color--white"] .form [type="url"]:-webkit-autofill:focus,
[class*="font-color--white"] .form [type="tel"]:-webkit-autofill,
[class*="font-color--white"] .form [type="tel"]:-webkit-autofill:focus,
[class*="font-color--white"] .form [type="email"]:-webkit-autofill,
[class*="font-color--white"] .form [type="email"]:-webkit-autofill:focus,
[class*="font-color--white"] .form [type="number"]:-webkit-autofill,
[class*="font-color--white"] .form [type="number"]:-webkit-autofill:focus,
[class*="font-color--white"] .form [type="password"]:-webkit-autofill,
[class*="font-color--white"] .form [type="password"]:-webkit-autofill:focus,
[class*="font-color--white"] .form [type="text"]:-webkit-autofill,
[class*="font-color--white"] .form [type="text"]:-webkit-autofill:focus,
[class*="font-color--white"] .form textarea:-webkit-autofill,
[class*="font-color--white"] .form textarea:-webkit-autofill:focus,
[class*="font-color--white"] .form select:-webkit-autofill,
[class*="font-color--white"] .form select:-webkit-autofill:focus, .form[class*="font-color--white"] [type="url"]:-webkit-autofill, .form[class*="font-color--white"] [type="url"]:-webkit-autofill:focus,
.form[class*="font-color--white"] [type="tel"]:-webkit-autofill,
.form[class*="font-color--white"] [type="tel"]:-webkit-autofill:focus,
.form[class*="font-color--white"] [type="email"]:-webkit-autofill,
.form[class*="font-color--white"] [type="email"]:-webkit-autofill:focus,
.form[class*="font-color--white"] [type="number"]:-webkit-autofill,
.form[class*="font-color--white"] [type="number"]:-webkit-autofill:focus,
.form[class*="font-color--white"] [type="password"]:-webkit-autofill,
.form[class*="font-color--white"] [type="password"]:-webkit-autofill:focus,
.form[class*="font-color--white"] [type="text"]:-webkit-autofill,
.form[class*="font-color--white"] [type="text"]:-webkit-autofill:focus,
.form[class*="font-color--white"] textarea:-webkit-autofill,
.form[class*="font-color--white"] textarea:-webkit-autofill:focus,
.form[class*="font-color--white"] select:-webkit-autofill,
.form[class*="font-color--white"] select:-webkit-autofill:focus, [class*="font-color--white"]
.gform_wrapper [type="url"]:-webkit-autofill, [class*="font-color--white"]
.gform_wrapper [type="url"]:-webkit-autofill:focus,
[class*="font-color--white"]
.gform_wrapper [type="tel"]:-webkit-autofill,
[class*="font-color--white"]
.gform_wrapper [type="tel"]:-webkit-autofill:focus,
[class*="font-color--white"]
.gform_wrapper [type="email"]:-webkit-autofill,
[class*="font-color--white"]
.gform_wrapper [type="email"]:-webkit-autofill:focus,
[class*="font-color--white"]
.gform_wrapper [type="number"]:-webkit-autofill,
[class*="font-color--white"]
.gform_wrapper [type="number"]:-webkit-autofill:focus,
[class*="font-color--white"]
.gform_wrapper [type="password"]:-webkit-autofill,
[class*="font-color--white"]
.gform_wrapper [type="password"]:-webkit-autofill:focus,
[class*="font-color--white"]
.gform_wrapper [type="text"]:-webkit-autofill,
[class*="font-color--white"]
.gform_wrapper [type="text"]:-webkit-autofill:focus,
[class*="font-color--white"]
.gform_wrapper textarea:-webkit-autofill,
[class*="font-color--white"]
.gform_wrapper textarea:-webkit-autofill:focus,
[class*="font-color--white"]
.gform_wrapper select:-webkit-autofill,
[class*="font-color--white"]
.gform_wrapper select:-webkit-autofill:focus,
.gform_wrapper[class*="font-color--white"] [type="url"]:-webkit-autofill,
.gform_wrapper[class*="font-color--white"] [type="url"]:-webkit-autofill:focus,
.gform_wrapper[class*="font-color--white"] [type="tel"]:-webkit-autofill,
.gform_wrapper[class*="font-color--white"] [type="tel"]:-webkit-autofill:focus,
.gform_wrapper[class*="font-color--white"] [type="email"]:-webkit-autofill,
.gform_wrapper[class*="font-color--white"] [type="email"]:-webkit-autofill:focus,
.gform_wrapper[class*="font-color--white"] [type="number"]:-webkit-autofill,
.gform_wrapper[class*="font-color--white"] [type="number"]:-webkit-autofill:focus,
.gform_wrapper[class*="font-color--white"] [type="password"]:-webkit-autofill,
.gform_wrapper[class*="font-color--white"] [type="password"]:-webkit-autofill:focus,
.gform_wrapper[class*="font-color--white"] [type="text"]:-webkit-autofill,
.gform_wrapper[class*="font-color--white"] [type="text"]:-webkit-autofill:focus,
.gform_wrapper[class*="font-color--white"] textarea:-webkit-autofill,
.gform_wrapper[class*="font-color--white"] textarea:-webkit-autofill:focus,
.gform_wrapper[class*="font-color--white"] select:-webkit-autofill,
.gform_wrapper[class*="font-color--white"] select:-webkit-autofill:focus {
  -webkit-text-fill-color: #132128;
}

.form [type="submit"],
.gform_wrapper [type="submit"] {
  display: block;
  margin: 13px auto;
}

.form textarea,
.gform_wrapper textarea {
  overflow: auto;
  min-height: 132px;
  line-height: 1.2;
}

.form select,
.gform_wrapper select {
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}

.form .hide-label label,
.form .hide-labels label,
.gform_wrapper .hide-label label,
.gform_wrapper .hide-labels label {
  display: none;
}

.form .hide-label ::placeholder,
.form .hide-labels ::placeholder,
.gform_wrapper .hide-label ::placeholder,
.gform_wrapper .hide-labels ::placeholder {
  text-transform: uppercase;
}

.form .hide-label.gfield_contains_required ::placeholder:after,
.form .hide-labels.gfield_contains_required ::placeholder:after,
.gform_wrapper .hide-label.gfield_contains_required ::placeholder:after,
.gform_wrapper .hide-labels.gfield_contains_required ::placeholder:after {
  content: '*';
  color: #b80000;
}

.form .hide-label input:focus::placeholder, .form .hide-label input:focus::placeholder:after,
.form .hide-labels input:focus::placeholder,
.form .hide-labels input:focus::placeholder:after,
.gform_wrapper .hide-label input:focus::placeholder,
.gform_wrapper .hide-label input:focus::placeholder:after,
.gform_wrapper .hide-labels input:focus::placeholder,
.gform_wrapper .hide-labels input:focus::placeholder:after {
  color: transparent !important;
}

.form .gfield,
.gform_wrapper .gfield {
  float: left;
  width: 100%;
  clear: both;
  text-align: left;
  padding: 9px 10px 0;
}

.form .acf-field,
.gform_wrapper .acf-field {
  padding: 0 0 10px;
}

.form .acf-field label,
.form .acf-field .description,
.form .gfield_label,
.gform_wrapper .acf-field label,
.gform_wrapper .acf-field .description,
.gform_wrapper .gfield_label {
  float: left;
  width: 100%;
  color: currentColor;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  text-align: left;
  padding-top: 10px;
}

.form .acf-field label,
.form .acf-field .description,
.gform_wrapper .acf-field label,
.gform_wrapper .acf-field .description {
  float: none;
}

.form .ginput_complex label,
.form .ginput_container_time label,
.gform_wrapper .ginput_complex label,
.gform_wrapper .ginput_container_time label {
  opacity: .8;
  padding-top: 5px;
  padding-bottom: 10px;
  float: left;
  width: 100%;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
}

.form .ginput_complex .name_first,
.gform_wrapper .ginput_complex .name_first {
  display: block;
  margin-bottom: 9px;
}

.form .gfield_checkbox li,
.form .gfield_radio li,
.gform_wrapper .gfield_checkbox li,
.gform_wrapper .gfield_radio li {
  padding-bottom: 10px;
}

.form .gfield_radio input,
.gform_wrapper .gfield_radio input {
  width: 20px;
  height: 20px;
}

.form .gfield_radio input:after,
.gform_wrapper .gfield_radio input:after {
  content: '';
  display: block;
  position: relative;
  top: -1px;
  left: -1px;
  width: 15px;
  height: 15px;
  border: 3px solid currentColor;
  border-radius: 99em;
}

.form .gfield_radio label,
.gform_wrapper .gfield_radio label {
  position: relative;
  top: -3px;
  color: currentColor;
  line-height: 1;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  margin-left: 5px;
}

.form .ginput_container_time,
.gform_wrapper .ginput_container_time {
  float: left;
  width: 33.3%;
}

.form .ginput_container_time input,
.gform_wrapper .ginput_container_time input {
  float: left;
  width: 90%;
}

.form .ginput_container_time i,
.gform_wrapper .ginput_container_time i {
  float: left;
  width: 10%;
  text-align: center;
  font-style: normal;
  padding: 9px 0;
}

.form .gfield_list,
.gform_wrapper .gfield_list {
  width: 100%;
}

.form .gfield_list th,
.gform_wrapper .gfield_list th {
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  font-weight: normal;
}

.form .gfield_list_group td,
.gform_wrapper .gfield_list_group td {
  padding: 5px 10px 5px 0;
}

.form .gfield_list_group .gfield_list_icons,
.gform_wrapper .gfield_list_group .gfield_list_icons {
  padding-right: 0;
}

.form .gfield_list_group .gfield_list_icons img,
.gform_wrapper .gfield_list_group .gfield_list_icons img {
  margin: 0 !important;
}

[class*="font-color--white"] .form .gfield_list img.add_list_item, .form[class*="font-color--white"] .gfield_list img.add_list_item, [class*="font-color--white"]
.gform_wrapper .gfield_list img.add_list_item,
.gform_wrapper[class*="font-color--white"] .gfield_list img.add_list_item {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPjxwYXRoIGZpbGw9IiNmZmZmZmYiIGQ9Ik0yNTYgNTEyYy0xNDEuMzc1IDAtMjU2LTExNC42MDktMjU2LTI1NnMxMTQuNjI1LTI1NiAyNTYtMjU2YzE0MS4zOTEgMCAyNTYgMTE0LjYwOSAyNTYgMjU2cy0xMTQuNjA5IDI1Ni0yNTYgMjU2ek0yNTYgNjRjLTEwNi4wMzEgMC0xOTIgODUuOTY5LTE5MiAxOTJzODUuOTY5IDE5MiAxOTIgMTkyYzEwNi4wNDcgMCAxOTItODUuOTY5IDE5Mi0xOTJzLTg1Ljk1My0xOTItMTkyLTE5MnpNMjg4IDM4NGgtNjR2LTk2aC05NnYtNjRoOTZ2LTk2aDY0djk2aDk2djY0aC05NnY5NnoiPjwvcGF0aD48L3N2Zz4=);
}

[class*="font-color--white"] .form .gfield_list img.delete_list_item, .form[class*="font-color--white"] .gfield_list img.delete_list_item, [class*="font-color--white"]
.gform_wrapper .gfield_list img.delete_list_item,
.gform_wrapper[class*="font-color--white"] .gfield_list img.delete_list_item {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPjxwYXRoIGZpbGw9IiNmZmZmZmYiIGQ9Ik0yNTYgMGMtMTQxLjM3NSAwLTI1NiAxMTQuNjI1LTI1NiAyNTYgMCAxNDEuMzkxIDExNC42MjUgMjU2IDI1NiAyNTYgMTQxLjM5MSAwIDI1Ni0xMTQuNjA5IDI1Ni0yNTYgMC0xNDEuMzc1LTExNC42MDktMjU2LTI1Ni0yNTZ6TTI1NiA0NDhjLTEwNi4wMzEgMC0xOTItODUuOTY5LTE5Mi0xOTJzODUuOTY5LTE5MiAxOTItMTkyYzEwNi4wNDcgMCAxOTIgODUuOTY5IDE5MiAxOTJzLTg1Ljk1MyAxOTItMTkyIDE5MnpNMTI4IDI4OGgyNTZ2LTY0aC0yNTZ2NjR6Ij48L3BhdGg+PC9zdmc+);
}

.form .gform_footer,
.gform_wrapper .gform_footer {
  clear: both;
  padding-top: 16px;
}

@media only screen and (min-width: 37.5em) {
  .form,
  .gform_wrapper {
    /* [type="password"] {
			letter-spacing: -13px;
		} */
  }
  .form form p[class*="login-"], .form form--row, .form__block p[class*="login-"], .form__block--row,
  .gform_wrapper form p[class*="login-"],
  .gform_wrapper form--row,
  .gform_wrapper__block p[class*="login-"],
  .gform_wrapper__block--row {
    padding: 16px 10px;
  }
  .form form p[class*="login-"].one-half, .form form--row.one-half, .form__block p[class*="login-"].one-half, .form__block--row.one-half,
  .gform_wrapper form p[class*="login-"].one-half,
  .gform_wrapper form--row.one-half,
  .gform_wrapper__block p[class*="login-"].one-half,
  .gform_wrapper__block--row.one-half {
    clear: none;
    width: 50%;
  }
  .form .gfield,
  .gform_wrapper .gfield {
    padding-top: 16px;
  }
  .form .ginput_complex .name_first,
  .gform_wrapper .ginput_complex .name_first {
    display: inline;
    margin-bottom: 0;
  }
  .form .ginput_container_time i,
  .gform_wrapper .ginput_container_time i {
    font-weight: bold;
  }
  .form .address_city,
  .form .address_state,
  .form .address_zip,
  .form .name_prefix,
  .form .name_first,
  .form .name_middle,
  .form .name_last,
  .form .name_suffix,
  .gform_wrapper .address_city,
  .gform_wrapper .address_state,
  .gform_wrapper .address_zip,
  .gform_wrapper .name_prefix,
  .gform_wrapper .name_first,
  .gform_wrapper .name_middle,
  .gform_wrapper .name_last,
  .gform_wrapper .name_suffix {
    float: left;
  }
  .form .address_city,
  .gform_wrapper .address_city {
    width: 40.3%;
  }
  .form .address_state,
  .gform_wrapper .address_state {
    width: 32.3%;
    padding-left: 3%;
  }
  .form .address_zip,
  .gform_wrapper .address_zip {
    width: 27.3%;
    padding-left: 3%;
  }
  .form .has_first_name.no_middle_name.has_last_name .name_first,
  .form .has_first_name.no_middle_name.has_last_name .name_last,
  .gform_wrapper .has_first_name.no_middle_name.has_last_name .name_first,
  .gform_wrapper .has_first_name.no_middle_name.has_last_name .name_last {
    width: 50%;
  }
  .form .has_first_name.no_middle_name.has_last_name .name_last,
  .gform_wrapper .has_first_name.no_middle_name.has_last_name .name_last {
    padding-left: 3%;
  }
  .form .has_first_name.has_middle_name.has_last_name .name_prefix,
  .form .has_first_name.has_middle_name.has_last_name .name_suffix,
  .gform_wrapper .has_first_name.has_middle_name.has_last_name .name_prefix,
  .gform_wrapper .has_first_name.has_middle_name.has_last_name .name_suffix {
    width: 66.6%;
  }
  .form .has_first_name.has_middle_name.has_last_name .name_first,
  .form .has_first_name.has_middle_name.has_last_name .name_middle,
  .form .has_first_name.has_middle_name.has_last_name .name_last,
  .gform_wrapper .has_first_name.has_middle_name.has_last_name .name_first,
  .gform_wrapper .has_first_name.has_middle_name.has_last_name .name_middle,
  .gform_wrapper .has_first_name.has_middle_name.has_last_name .name_last {
    float: left;
    width: 33.3%;
  }
  .form .has_first_name.has_middle_name.has_last_name .name_middle,
  .form .has_first_name.has_middle_name.has_last_name .name_last,
  .gform_wrapper .has_first_name.has_middle_name.has_last_name .name_middle,
  .gform_wrapper .has_first_name.has_middle_name.has_last_name .name_last {
    padding-left: 3%;
  }
  .form .has_first_name.has_middle_name.has_last_name .name_prefix + [class*="name_"],
  .gform_wrapper .has_first_name.has_middle_name.has_last_name .name_prefix + [class*="name_"] {
    clear: both;
  }
  .form .has_first_name.has_middle_name.has_last_name .name_suffix,
  .gform_wrapper .has_first_name.has_middle_name.has_last_name .name_suffix {
    clear: both;
  }
  .form .req-text,
  .form .validation_message,
  .gform_wrapper .req-text,
  .gform_wrapper .validation_message {
    font-size: 24px;
    font-size: 2.4rem;
    padding-left: 25px;
    margin-top: -16px;
  }
  .form textarea,
  .gform_wrapper textarea {
    min-height: 232px;
  }
  .form [type="submit"],
  .gform_wrapper [type="submit"] {
    margin-top: 27px;
    margin-bottom: 27px;
  }
}

.partners {
  font-size: 0;
  /* fixing potential problem with inline-block */
  padding: 7rem 0;
}

.partners__wrap {
  width: 100%;
  max-width: 1230px;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
}

.partners__title {
  display: block;
  margin-bottom: 7rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.partners__item {
  display: block;
}

.partners__item img {
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
}

.partners .slick-track {
  margin: 0 auto;
}

@media only screen and (min-width: 60em) {
  .partners__wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .global-sidebar .partners__item {
    width: 100%;
    padding: 0;
    margin-bottom: 2px;
  }
}

.fancy-select select.fancy {
  margin: 0;
}

select.fancy,
.fancy-select {
  max-width: 870px;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  background-color: rgba(0, 0, 0, 0.05);
  border: 10px solid transparent;
  border-radius: 5px;
  margin: 20px;
}

select.fancy .fs-dropdown-options,
.fancy-select .fs-dropdown-options {
  max-height: 200px;
  border-radius: 0 0 5px 5px;
}

select.fancy .fs-dropdown-options .fs-scrollbar-content,
.fancy-select .fs-dropdown-options .fs-scrollbar-content {
  max-height: 200px;
}

select.fancy .fs-dropdown-selected,
.fancy-select .fs-dropdown-selected {
  overflow: hidden;
  border: 1px solid #cacaca;
  border-radius: 5px;
  box-shadow: none;
}

select.fancy .fs-dropdown-selected:after,
.fancy-select .fs-dropdown-selected:after {
  content: "\e90d";
  width: auto;
  height: 12px;
  font-size: 12px;
  font-size: 1.2rem;
  border: none;
  transition: all 0.3s ease;
}

select.fancy.fs-dropdown-open .fs-dropdown-selected,
.fancy-select.fs-dropdown-open .fs-dropdown-selected {
  border-radius: 5px 5px 0 0;
}

select.fancy.fs-dropdown-open .fs-dropdown-selected:after,
.fancy-select.fs-dropdown-open .fs-dropdown-selected:after {
  transform: rotate(-180deg);
}

select.fancy button,
select.fancy a.fs-dropdown-item,
select.fancy .fs-dropdown-group,
.fancy-select button,
.fancy-select a.fs-dropdown-item,
.fancy-select .fs-dropdown-group {
  outline: none;
  line-height: 1;
  border: 0 none;
  height: 46px;
  font-size: 20px;
  font-size: 2rem;
  border-top: 2px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  transition: all 0.3s ease;
}

select.fancy a.fs-dropdown-item,
.fancy-select a.fs-dropdown-item {
  line-height: 46px;
}

select.fancy .fs-scrollbar-content button:hover,
select.fancy .fs-scrollbar-content a.fs-dropdown-item:hover,
.fancy-select .fs-scrollbar-content button:hover,
.fancy-select .fs-scrollbar-content a.fs-dropdown-item:hover {
  color: #fff;
  background-color: #388bc3;
  transition: all 0.3s ease;
}

select.fancy .fs-scrollbar-content button.fs-dropdown-item_selected,
select.fancy .fs-scrollbar-content a.fs-dropdown-item.fs-dropdown-item_selected,
.fancy-select .fs-scrollbar-content button.fs-dropdown-item_selected,
.fancy-select .fs-scrollbar-content a.fs-dropdown-item.fs-dropdown-item_selected {
  color: #fff;
  background-color: #132128;
}

select.fancy .fs-dropdown-group,
.fancy-select .fs-dropdown-group {
  text-transform: uppercase;
  line-height: 46px;
  background-color: #eeeeee;
  padding-top: 0;
  padding-bottom: 0;
}

select.fancy .fs-dropdown-item,
.fancy-select .fs-dropdown-item {
  line-height: 1;
}

@media only screen and (min-width: 37.5em) {
  select.fancy .fs-dropdown-options,
  .fancy-select .fs-dropdown-options {
    max-height: 500px;
  }
  select.fancy .fs-dropdown-options .fs-scrollbar-content,
  .fancy-select .fs-dropdown-options .fs-scrollbar-content {
    max-height: 500px;
  }
}

@media only screen and (min-width: 60em) {
  select.fancy,
  .fancy-select {
    margin-right: auto;
    margin-left: auto;
  }
}

select.fancy {
  outline: none;
  width: 87%;
  background-color: #fff;
  border: 10px solid rgba(0, 0, 0, 0.05);
  padding: 5px;
  margin: 20px;
}

.content-list {
  padding: 68px 0 135px;
  /* mods */
}

.content-list span {
  transition: all 0.3s ease;
}

.content-list__wrap {
  position: relative;
  text-align: center;
}

.content-list__intro {
  font-size: 24px;
  font-size: 2.4rem;
  padding-bottom: 0;
}

.content-list .fancy,
.content-list .fancy-select,
.content-list [class*="query-exposed-taxonomy"] {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  margin: 0 auto;
}

.content-list .fancy .query-checkboxes,
.content-list .fancy-select .query-checkboxes,
.content-list [class*="query-exposed-taxonomy"] .query-checkboxes {
  display: inline;
}

.content-list .fancy .fs-checkbox,
.content-list .fancy-select .fs-checkbox,
.content-list [class*="query-exposed-taxonomy"] .fs-checkbox {
  vertical-align: top;
  width: 49%;
  margin-top: 5px;
}

.content-list [class*="query-exposed-taxonomy"] .fancy-select {
  max-width: 100%;
}

.content-list__sorting {
  position: relative;
  max-width: 1280px;
  padding: 0;
  margin: 30px auto 20px;
}

.content-list .advanced-search {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  padding: 10px;
}

.content-list .advanced-search__query {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  padding-bottom: 10px;
}

.content-list .advanced-search__query label {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
  color: #132128;
  text-align: center;
  padding: 0 20px;
  margin-top: -68px;
}

.content-list .advanced-search #search_query {
  width: 100%;
  border: 1px solid #cacaca;
  border-radius: 5px;
  padding: 6px 15px 8px;
}

.content-list .advanced-search__dropdowns {
  max-height: 0;
  overflow: hidden;
  padding-top: 40px;
  transition: all 0.3s ease;
}

.no-js .content-list .advanced-search__dropdowns {
  max-height: 100%;
}

.no-js .content-list .advanced-search__dropdowns--more {
  display: none;
}

.content-list .advanced-search__dropdowns.active {
  overflow: visible;
  max-height: 600px;
}

.content-list .advanced-search__dropdowns--more {
  cursor: pointer;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  text-transform: uppercase;
  line-height: 49px;
  text-align: center;
}

.content-list .advanced-search__dropdowns--more [class*="icon-"] {
  position: relative;
  top: -3px;
  font-size: 8px;
  font-size: 0.8rem;
  margin-left: 5px;
}

.content-list .advanced-search__dropdowns .query-exposed-label {
  display: block;
  color: #7c7c7c;
  text-transform: uppercase;
  padding: 0 0 5px;
}

.content-list .advanced-search .fancy-select,
.content-list .advanced-search [class*="query-exposed-taxonomy"] {
  text-align: left;
  border: none;
  margin-bottom: 10px;
}

.content-list .advanced-search [type="submit"] {
  clear: both;
  display: block;
  width: 100%;
  margin: 0 auto;
}

.content-list .advanced-search .submit-plus-reset {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
}

.content-list .advanced-search .submit-plus-reset .button {
  width: 100%;
  margin-top: 10px;
}

.content-list .advanced-search .req {
  clear: both;
  position: relative;
  display: block;
  color: #b80000;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  text-align: left;
  padding-left: 15px;
  margin-top: -9px;
  margin-top: 0 !important;
}

.content-list__style-select {
  overflow: hidden;
  position: absolute;
  top: 14px;
  right: 0;
  max-width: 0;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: lowercase;
  text-align: center;
}

.content-list__style-select a {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  width: 88px;
  color: #949d93;
  letter-spacing: inherit;
}

.content-list__style-select a.active {
  color: #132128;
}

.content-list__style-select [class*="icon-"] {
  font-size: 28px;
  font-size: 2.8rem;
}

.content-list__style-select span {
  display: block;
  padding-top: 9px;
}

.content-list__style-select.centered {
  position: relative;
  top: 0;
  max-width: 100%;
  margin: 0 auto;
}

.content-list__items-wrap {
  clear: both;
  max-width: 1777px;
  padding: 0 20px 20px;
  margin-right: auto;
  margin-left: auto;
}

.main-content .content-list__items-wrap {
  padding-right: 0;
  padding-left: 0;
}

.content-list__item,
[data-list-style="grid"] .content-list__item {
  position: relative;
  max-width: 1737px;
  text-align: left;
  border: solid #959595;
  border-width: 1px 0 0;
  margin: 0 auto;
  /* &[data-type="video"],
		&[data-type="gallery"],
		&[data-type="page"],
		&[data-type="post-attachment"],
		&[data-type="post-aside"],
		&[data-type="post-image"],
		&[data-type="post-gallery"],
		&[data-type="post-video"],
		&[data-type="post-quote"],
		&[data-type="post-link"] {
			[class*="--header"] {
			}

			.post-avatar-icon {
				//display: none;
			}

			.post-title {
				//margin-bottom: 3px;
			}
		} */
}

.content-list__item--header,
[data-list-style="grid"] .content-list__item--header {
  color: #44464d;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  /* mods */
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 9px;
}

.content-list__item .post-avatar-icon,
[data-list-style="grid"] .content-list__item .post-avatar-icon {
  display: inline-block;
  overflow: hidden;
  line-height: 0;
  border-radius: 0;
  /* mods */
  font-size: 41px;
  font-size: 4.1rem;
  position: absolute;
  vertical-align: middle;
  top: 9px;
  left: 0;
  color: #a2a2a2;
}

.content-list__item .post-avatar-icon .icon-gallery,
[data-list-style="grid"] .content-list__item .post-avatar-icon .icon-gallery {
  font-size: 35px;
  font-size: 3.5rem;
}

.content-list__item .event-link,
.content-list__item .post-author,
.content-list__item .post-date,
.content-list__item .post-title,
.content-list__item .post-image,
[data-list-style="grid"] .content-list__item .event-link,
[data-list-style="grid"] .content-list__item .post-author,
[data-list-style="grid"] .content-list__item .post-date,
[data-list-style="grid"] .content-list__item .post-title,
[data-list-style="grid"] .content-list__item .post-image {
  display: block;
  position: relative;
  line-height: 1;
}

.content-list__item .post-date,
.content-list__item .post-author,
[data-list-style="grid"] .content-list__item .post-date,
[data-list-style="grid"] .content-list__item .post-author {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.content-list__item .post-author,
[data-list-style="grid"] .content-list__item .post-author {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  padding-top: 5px;
}

.content-list__item .sep,
[data-list-style="grid"] .content-list__item .sep {
  position: relative;
  color: #7d7d7d;
  margin: 0 -5px;
}

.content-list__item .post-title,
[data-list-style="grid"] .content-list__item .post-title {
  position: relative;
  font-size: 19px;
  font-size: 1.9rem;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  text-transform: none;
  letter-spacing: -1px;
  padding: 7px 0;
}

.content-list__item .post-title a,
[data-list-style="grid"] .content-list__item .post-title a {
  color: #132128;
}

.content-list__item .post-title a:hover,
[data-list-style="grid"] .content-list__item .post-title a:hover {
  color: #388bc3;
}

.content-list__item .post-image,
[data-list-style="grid"] .content-list__item .post-image {
  overflow: hidden;
  position: relative;
  max-height: 337px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.content-list__item .post-image [class*="icon-"],
[data-list-style="grid"] .content-list__item .post-image [class*="icon-"] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
  font-size: 61px;
  font-size: 6.1rem;
}

.content-list__item .post-excerpt,
[data-list-style="grid"] .content-list__item .post-excerpt {
  clear: both;
  color: #464646;
  padding-top: 10px;
}

.content-list__item .date-formatted,
[data-list-style="grid"] .content-list__item .date-formatted {
  position: relative;
  overflow: hidden;
  float: left;
  width: 60px;
  height: 52px;
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  text-align: center;
  line-height: 38px;
  background-color: #fff;
  margin-top: -9px;
  margin-right: 13px;
}

.content-list__item .date-formatted b,
[data-list-style="grid"] .content-list__item .date-formatted b {
  display: block;
  font-size: 40px;
  font-size: 4rem;
  margin-bottom: -16px;
}

.content-list__item .event-link,
[data-list-style="grid"] .content-list__item .event-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #44464d;
  text-transform: uppercase;
  padding: 12px 3px 3px;
  margin: 18px 0 0;
}

.content-list__item[data-type="blog-post"], .content-list__item[data-type="post-standard"],
[data-list-style="grid"] .content-list__item[data-type="blog-post"],
[data-list-style="grid"] .content-list__item[data-type="post-standard"] {
  /* .post-title {
				border-bottom: 1px solid #dfdfdf;
				padding-bottom: 9px;
				margin-bottom: 8px;
			}

			.post-author,
			.post-date {
				display: block;
			} */
}

.content-list__item[data-type="blog-post"] .post-avatar-icon, .content-list__item[data-type="post-standard"] .post-avatar-icon,
[data-list-style="grid"] .content-list__item[data-type="blog-post"] .post-avatar-icon,
[data-list-style="grid"] .content-list__item[data-type="post-standard"] .post-avatar-icon {
  font-size: 1px;
  width: 30px;
  border-radius: 99em;
}

.content-list__item[data-type="event"],
[data-list-style="grid"] .content-list__item[data-type="event"] {
  padding-top: 76px;
  padding-right: 0;
  padding-left: 0;
}

.content-list__item[data-type="event"] .post-date,
.content-list__item[data-type="event"] .post-author,
[data-list-style="grid"] .content-list__item[data-type="event"] .post-date,
[data-list-style="grid"] .content-list__item[data-type="event"] .post-author {
  display: block;
}

.content-list__item[data-type="event"] .post-date,
[data-list-style="grid"] .content-list__item[data-type="event"] .post-date {
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
}

.content-list__item[data-type="event"] .post-title,
[data-list-style="grid"] .content-list__item[data-type="event"] .post-title {
  padding-top: 17px;
  padding-bottom: 5px;
}

.content-list__item[data-type="page"] .content-list__item--header,
[data-list-style="grid"] .content-list__item[data-type="page"] .content-list__item--header {
  margin-right: 15px;
}

.content-list__item[data-type="page"] .post-excerpt,
[data-list-style="grid"] .content-list__item[data-type="page"] .post-excerpt {
  padding-right: 15px;
}

[data-list-style="list"] .content-list__item .post-avatar-icon {
  position: relative;
  float: left;
  top: 0;
  font-size: 30px;
  font-size: 3rem;
  margin-top: 5px;
  margin-right: 7px;
}

[data-list-style="grid"] .content-list__item [class*="--header"] {
  border-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
}

[data-list-style="grid"] .content-list__item .post-title {
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 9px;
  margin-bottom: 8px;
}

[data-list-style="grid"] .content-list__item .post-avatar-icon {
  position: relative;
  float: left;
  top: auto;
  left: auto;
  min-width: 44px;
  margin-right: 7px;
  margin-bottom: 0;
}

.content-list__item--featured {
  background-color: #f4f4f4;
}

.content-list__item--featured .post-title:before {
  content: "Featured";
  display: block;
  max-width: 60px;
  vertical-align: middle;
  margin-bottom: 10px;
  padding: 5px 10px 2px;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: normal;
  background-color: #388bc3;
  color: #ffffff;
}

@media only screen and (min-width: 37.5em) {
  .content-list .advanced-search__query {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .content-list .advanced-search__query label {
    font-size: 28px;
    font-size: 2.8rem;
    margin-top: -70px;
  }
  .content-list .advanced-search #search_query {
    padding: 13px 15px 14px;
  }
  .content-list .advanced-search__dropdowns--more {
    top: 68px;
  }
  .content-list__item .post-date,
  .content-list__item .post-author,
  [data-list-style="grid"] .content-list__item .post-date,
  [data-list-style="grid"] .content-list__item .post-author {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .content-list__item .post-author,
  [data-list-style="grid"] .content-list__item .post-author {
    margin-bottom: -5px;
  }
  .content-list__item .post-title,
  [data-list-style="grid"] .content-list__item .post-title {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .content-list__item .date-formatted,
  [data-list-style="grid"] .content-list__item .date-formatted {
    width: 118px;
    height: 104px;
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 80px;
    margin-top: -30px;
    margin-right: 30px;
  }
  .content-list__item .date-formatted b,
  [data-list-style="grid"] .content-list__item .date-formatted b {
    font-size: 74px;
    font-size: 7.4rem;
    margin-bottom: -40px;
  }
  .content-list__item .event-link,
  [data-list-style="grid"] .content-list__item .event-link {
    padding: 35px 5px 5px;
  }
  .content-list__item[data-type="blog-post"] .post-avatar-icon, .content-list__item[data-type="post-standard"] .post-avatar-icon,
  [data-list-style="grid"] .content-list__item[data-type="blog-post"] .post-avatar-icon,
  [data-list-style="grid"] .content-list__item[data-type="post-standard"] .post-avatar-icon {
    width: 44px;
  }
  .content-list__item[data-type="event"],
  [data-list-style="grid"] .content-list__item[data-type="event"] {
    padding: 134px 20px 20px;
  }
  .content-list__item[data-type="event"] .post-author,
  [data-list-style="grid"] .content-list__item[data-type="event"] .post-author {
    font-size: 28px;
    font-size: 2.8rem;
  }
  [data-list-style="grid"] .content-list__item {
    float: left;
    width: 33.3%;
    border-width: 1px;
    margin-bottom: -1px;
    margin-left: -1px;
    padding: 20px;
    /* &[data-type="blog-post"],
			&[data-type="post-standard"] {
				.post-date {
					@include font-rem(16);
					padding-top: 2px;
				}

				.post-author {
					@include font-rem(18);
					padding-top: 6px;
				}
			} */
  }
  [data-list-style="grid"] .content-list__item:first-child, [data-list-style="grid"] .content-list__item:nth-child(3n+1) {
    clear: both;
    margin-left: 2px;
  }
  [data-list-style="grid"] .content-list__item .post-avatar-icon {
    margin-bottom: 26px;
  }
  [data-list-style="grid"] .content-list__item .post-image {
    clear: both;
    margin-top: 22px;
  }
  [data-list-style="grid"] .content-list__item .event-link {
    width: calc(100% - 40px);
    margin-right: 20px;
    margin-left: 20px;
  }
  [data-list-style="grid"] .content-list__item[data-type="event"] .post-image {
    margin-top: 28px;
    margin-bottom: 25px;
  }
  [data-list-style="list"] .content-list__item {
    padding: 36px 0 12px 150px;
    /* &[data-type="video"],
			&[data-type="gallery"],
			&[data-type="page"],
			&[data-type="post-attachment"],
			&[data-type="post-aside"],
			&[data-type="post-image"],
			&[data-type="post-gallery"],
			&[data-type="post-video"],
			&[data-type="post-quote"],
			&[data-type="post-link"] { */
    /* [class*="--header"] {
					border-bottom: 0 none;
					padding-bottom: 0;
					mods
					padding-left: 0;
				} */
    /* } */
    /* &[data-type="blog-post"],
			&[data-type="post-standard"] {
				.post-avatar-icon {
					margin: 0;
				}

				.post-title {
					border-bottom: 0 none;
					padding-top: 82px;
				}

				.post-author,
				.post-date {
					position: absolute;
					top: 0;
					left: 0;
				}

				.post-author {
					@include font-rem(28);
					padding: 39px 0 0 150px;
				}

				.post-date {
					@include font-rem(26);
					padding: 75px 0 0 150px;
				}

				.sep {
					margin-right: -10px;
					margin-left: -10px;
				}
			} */
  }
  [data-list-style="list"] .content-list__item .post-avatar-icon {
    position: absolute;
    top: 47px;
    left: 42px;
  }
  [data-list-style="list"] .content-list__item .post-title {
    padding-top: 0;
  }
  [data-list-style="list"] .content-list__item .event-link {
    margin: 46px 0 0;
  }
  [data-list-style="list"] .content-list__item .post-avatar-icon {
    /* mods */
    font-size: 41px;
    font-size: 4.1rem;
  }
  [data-list-style="list"] .content-list__item .post-excerpt {
    padding-top: 25px;
  }
  [data-list-style="list"] .content-list__item[data-type="event"] {
    padding-top: 180px;
    padding-left: 0;
  }
  [data-list-style="list"] .content-list__item[data-type="event"] .post-date {
    font-size: 18px;
    font-size: 1.8rem;
  }
  [data-list-style="list"] .content-list__item[data-type="event"] .post-title,
  [data-list-style="list"] .content-list__item[data-type="event"] .post-excerpt,
  [data-list-style="list"] .content-list__item[data-type="event"] .post-image {
    padding-left: 150px;
  }
}

@media only screen and (min-width: 48em) {
  .content-list__items-wrap {
    padding-bottom: 80px;
  }
  .content-list__intro {
    font-size: 42px;
    font-size: 4.2rem;
  }
  .content-list__sorting {
    padding-right: 180px;
    padding-left: 180px;
    margin-top: 27px;
    margin-top: 57px;
    margin-bottom: 75px;
  }
  .content-list .advanced-search {
    position: relative;
    margin-right: -160px;
    margin-left: -160px;
  }
  .content-list .advanced-search__query {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .content-list .advanced-search #search_query {
    padding: 13px 15px 14px;
  }
  .content-list .advanced-search__dropdowns .fancy-select:nth-of-type(2n+1),
  .content-list .advanced-search__dropdowns [class*="query-exposed-taxonomy"]:nth-of-type(2n+1) {
    margin-left: 0;
    margin-right: 5px;
  }
  .content-list .advanced-search__dropdowns .fancy-select:nth-of-type(2n+2),
  .content-list .advanced-search__dropdowns [class*="query-exposed-taxonomy"]:nth-of-type(2n+2) {
    margin-left: 5px;
    margin-right: 0;
  }
  .content-list .advanced-search .fancy-select {
    float: left;
    width: calc(50% - 5px);
    text-align: left;
    margin-right: 5px;
  }
  .content-list .advanced-search .fancy-select .fs-dropdown-selected {
    text-align: left;
    padding-left: 15px;
  }
  .content-list .advanced-search__dropdowns [class*="query-exposed-taxonomy"], .content-list .advanced-search__dropdowns [class*="query-exposed-taxonomy"]:nth-of-type(2n+2) {
    margin-left: 0;
  }
  .content-list .advanced-search [class*="query-exposed-taxonomy"] {
    clear: both;
    margin-left: 0;
  }
  .content-list .advanced-search [class*="query-exposed-taxonomy"] .fs-checkbox {
    width: 32%;
    margin-top: 5px;
  }
  .content-list .advanced-search .submit-plus-reset {
    width: 68%;
  }
  .content-list .advanced-search .submit-plus-reset + .submit-plus-reset {
    width: 24%;
    padding-left: 2%;
  }
  .content-list .advanced-search .submit-plus-reset .button {
    margin-top: 0;
  }
  .content-list__item .post-image,
  [data-list-style="list"] .content-list__item .post-image {
    max-height: 0;
    margin: 0;
  }
}

@media only screen and (min-width: 64em) {
  .content-list__sorting {
    min-height: 98px;
  }
  .content-list__style-select {
    max-width: 180px;
    margin-right: 20px;
  }
  .content-list .advanced-search {
    text-align: left;
    padding-right: 180px;
  }
  .content-list .advanced-search__query {
    display: inline-block;
    vertical-align: top;
    width: 75%;
    font-size: 28px;
    font-size: 2.8rem;
    padding-bottom: 0;
  }
  .content-list .advanced-search__query label {
    font-size: 42px;
    font-size: 4.2rem;
    margin-top: -100px;
  }
  .content-list .advanced-search #search_query {
    padding: 20px 15px 22px;
  }
  .content-list .advanced-search [type="submit"] {
    display: inline-block;
    vertical-align: top;
    width: 24%;
  }
  .content-list .advanced-search__dropdowns {
    padding-top: 10px;
  }
  .content-list .advanced-search__dropdowns--more {
    top: 10px;
    right: 180px;
    left: auto;
    width: 20%;
    line-height: 79px;
  }
  .content-list .advanced-search [class*="query-exposed-taxonomy"] .fs-checkbox {
    width: 24%;
  }
}

/**
 * Query Wrangler Overrides
 */
.query-wrapper-content {
  padding: 50px 0 0;
}

.query-wrapper-content > .module {
  padding-top: 0;
}

.query-wrapper-content > .module .content-list__sorting {
  min-height: 0;
  margin-top: 0;
  margin-bottom: 30px;
}

.query-wrapper-content > .module .advanced-search__dropdowns {
  padding-top: 0;
}

.query-wrapper-content > .module [class*="query-exposed-taxonomy"] .fancy-select {
  width: 100%;
  margin-right: 0;
  margin-bottom: 0;
}

.query.compact .content-list__style-select,
.query.compact .post-excerpt,
.query.compact .post-date,
.query.compact .post-author,
.query.compact .post-avatar-icon {
  display: none;
}

.query.compact .post-title {
  font-size: 23px;
  font-size: 2.3rem;
  border-bottom: none;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
}

.query.compact .content-list__sorting {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.query.compact .content-list .advanced-search {
  padding: 20px;
  margin: 0 auto;
}

@media only screen and (min-width: 60em) {
  .query.compact .content-list .advanced-search button,
  .query.compact .content-list .advanced-search a.fs-dropdown-item,
  .query.compact .content-list .advanced-search .fs-dropdown-group {
    height: 55px;
    font-size: 20px;
    font-size: 2rem;
  }
  .query.compact .content-list .advanced-search select.fancy .fs-dropdown-selected:after,
  .query.compact .content-list .advanced-search .fancy-select .fs-dropdown-selected:after {
    height: 18px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .query.compact .content-list .advanced-search .submit-plus-reset {
    width: 19%;
    font-size: 22px;
    vertical-align: bottom;
    margin-bottom: 1px;
    padding-left: 0;
  }
  .query.compact .content-list .advanced-search .submit-plus-reset a {
    font-size: 22px;
    padding: 10px;
  }
  .query.compact .content-list .advanced-search input.submit-plus-reset {
    padding: 10px;
    margin-left: 5px;
  }
  .query.compact .content-list .advanced-search__dropdowns .query-exposed-label {
    font-size: 12px;
    font-weight: bold;
  }
  .query.compact .content-list .advanced-search__dropdowns {
    display: inline-block;
    width: 60%;
  }
  .query.compact .content-list .advanced-search__dropdowns > div {
    margin-bottom: 0;
  }
}

.query.compact .content-list__item,
.query.compact [data-list-style="grid"] .content-list__item {
  border-color: #f2f2f2;
}

.cta-bar {
  font-size: 20px;
  font-size: 2rem;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  line-height: 1.3;
  padding: 5rem 20px;
  text-align: center;
}

.cta-bar__wrap {
  width: 100%;
  max-width: 1737px;
  margin: 0 auto;
  /* &:before {
			content: '';
			display: none;
			vertical-align: middle;
			height: 100%;
			width: 0;
		} */
}

.cta-bar__column {
  padding: 20px 0;
}

.cta-bar p {
  padding: 0;
}

.cta-bar strong {
  position: relative;
  display: block;
  font-size: 30px;
  font-size: 3rem;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  font-weight: normal;
  margin-bottom: 10px;
}

.cta-bar strong + br {
  display: none;
}

@media only screen and (min-width: 37.5em) {
  .cta-bar {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .cta-bar strong {
    font-size: 35px;
    font-size: 3.5rem;
  }
}

@media only screen and (min-width: 48em) {
  .cta-bar {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .cta-bar strong {
    font-size: 40px;
    font-size: 4rem;
  }
}

@media only screen and (min-width: 64em) {
  .cta-bar {
    font-size: 19px;
    font-size: 1.9rem;
  }
  .cta-bar .button {
    line-height: 1.3;
  }
  .cta-bar__column {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    padding: 0 30px;
  }
  .cta-bar__column.c01 {
    float: left;
    padding: 12px 0 0;
  }
  .cta-bar__column.c01 + .c02,
  .cta-bar__column.c01 ~ .c03 {
    float: left;
    padding: 12px 0 0 3%;
  }
  .cta-bar__column.c01 ~ .c04 {
    float: right;
    padding: 0;
  }
  .cta-bar__column.c04 {
    padding: 0;
  }
  .cta-bar strong {
    font-size: 30px;
    font-size: 3rem;
    margin-bottom: 0;
    margin-top: -10px;
  }
}

@media only screen and (min-width: 80em) {
  .cta-bar {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .cta-bar__column.c01 {
    padding: 8px 0 0;
  }
  .cta-bar__column.c01 + .c02,
  .cta-bar__column.c01 ~ .c03 {
    padding: 8px 0 0 3%;
  }
  .cta-bar strong {
    font-size: 35px;
    font-size: 3.5rem;
    margin-bottom: 0;
    margin-top: -7px;
  }
}

@media only screen and (min-width: 90em) {
  .cta-bar {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .cta-bar strong {
    font-size: 40px;
    font-size: 4rem;
    margin-top: -5px;
    margin-bottom: -3px;
  }
}

@media only screen and (min-width: 120em) {
  .cta-bar__column.c01 + .c02,
  .cta-bar__column.c01 ~ .c03 {
    padding-left: 7%;
  }
}

.call-out__items-wrap {
  max-width: 1777px;
  font-size: 0;
  padding: 0 20px;
  margin: 0 auto;
}

.call-out__item {
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height: 310px;
  color: #464646;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  border: 0 solid #d1d2d4;
  padding: 28px 20px 0;
  margin: 0;
  text-align: center;
}

.call-out__item ~ .call-out__item {
  border-top-width: 1px;
}

.call-out__item:hover .link {
  color: #132128;
}

.call-out__item:hover .call-out__item--title,
.call-out__item:hover .call-out__item--subtitle,
.call-out__item:hover .call-out__item--excerpt {
  color: #388bc3;
  transition: all 0.3s ease;
}

.call-out__item--image {
  position: relative;
  max-width: 300px;
  height: 115px;
  font-size: 50px;
  font-size: 5rem;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  text-transform: uppercase;
  line-height: 115px;
  letter-spacing: -2px;
  margin: 0 auto;
}

.call-out__item--image img,
.call-out__item--image span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-height: 100%;
}

.call-out__item--title, .call-out__item--subtitle, .call-out__item--excerpt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  transition: all 0.3s ease;
}

.call-out__item--title, .call-out__item--subtitle {
  top: 160px;
  bottom: auto;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  line-height: 1;
  text-transform: uppercase;
  padding: 0 20px;
}

.call-out__item--subtitle {
  top: 200px;
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
}

.call-out__item--excerpt {
  bottom: 20px;
  line-height: 1.1;
}

.call-out__item--excerpt p {
  padding: 0 0 6px;
  margin: 0 auto;
}

.call-out__item--link {
  text-transform: uppercase;
}

.call-out__item--overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 37.5em) {
  .call-out__items-wrap {
    padding-top: 38px;
  }
  .call-out__item {
    display: inline-block;
    width: 50%;
  }
  .call-out__item ~ .call-out__item {
    border-top-width: 0;
    border-left-width: 1px;
  }
  .call-out__item--title, .call-out__item--subtitle {
    top: 150px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .call-out__item--subtitle {
    top: 190px;
  }
  .call-out__item:nth-child(2n+1) {
    border-left-width: 0;
  }
  .call-out__item:nth-child(2n+2) ~ .call-out__item {
    border-top-width: 1px;
  }
}

@media only screen and (min-width: 48em) {
  .call-out__item {
    min-height: 445px;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 38px 20px 0;
  }
  .call-out__item--image {
    height: 196px;
    font-size: 100px;
    font-size: 10rem;
    line-height: 196px;
  }
  .call-out__item--title, .call-out__item--subtitle {
    top: 240px;
  }
  .call-out__item--title-sm, .call-out__item--title-nm, .call-out__item--subtitle-sm, .call-out__item--subtitle-nm {
    font-size: 20px;
    font-size: 2rem;
  }
  .call-out__item--subtitle {
    top: 285px;
  }
  .call-out__item--excerpt {
    bottom: 30px;
  }
  .call-out__item--excerpt p {
    padding: 0 0 10px;
  }
}

@media only screen and (min-width: 60em) {
  .call-out__item--title, .call-out__item--subtitle {
    top: 240px;
    font-size: 24px;
    font-size: 2.4rem;
  }
  .call-out__item--subtitle {
    top: 295px;
  }
}

@media only screen and (min-width: 64em) {
  .call-out__item--title {
    top: 260px;
  }
  .call-out__item--subtitle {
    top: 315px;
  }
}

@media only screen and (min-width: 80em) {
  .call-out__item {
    width: 33.3%;
    min-height: 580px;
    font-size: 22px;
    font-size: 2.2rem;
    padding-top: 57px;
  }
  .call-out__item ~ .call-out__item {
    border-top-width: 0;
    border-left-width: 1px;
  }
  .call-out__item:nth-child(2n+2) + .call-out__item {
    border-top-width: 0;
  }
  .call-out__item:nth-child(3n+4) {
    border-left-width: 0;
  }
  .call-out__item:nth-child(3n+4),
  .call-out__item:nth-child(3n+4) ~ .call-out__item {
    border-top-width: 1px;
  }
  .call-out__item--image {
    font-size: 130px;
    font-size: 13rem;
  }
  .call-out__item--title, .call-out__item--subtitle {
    top: 285px;
  }
  .call-out__item--title-nm, .call-out__item--subtitle-nm {
    font-size: 30px;
    font-size: 3rem;
  }
  .call-out__item--title-sm, .call-out__item--subtitle-sm {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .call-out__item--subtitle {
    top: 369px;
    font-size: 30px;
    font-size: 3rem;
  }
  .call-out__item--excerpt {
    bottom: 50px;
  }
}

@media only screen and (min-width: 90em) {
  .call-out__item--title {
    top: 305px;
  }
  .call-out__item--subtitle {
    font-size: 30px;
    font-size: 3rem;
  }
}

@media only screen and (min-width: 120em) {
  .call-out__item--title {
    top: 335px;
  }
}

.trending-featured {
  clear: both;
  padding: 0;
  margin: 0 auto;
}

.trending-featured__wrap {
  position: relative;
  clear: both;
  background-size: cover;
  background-position: center;
  padding: 40px 0 0;
}

.trending-featured__wrap ~ .trending-featured__wrap {
  padding-bottom: 40px;
}

.trending-featured__title {
  line-height: .9;
}

.trending-featured__overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
}

.trending-featured__small {
  overflow: hidden;
  position: relative;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  text-align: left;
  padding: 46px 20px 34px;
}

.trending-featured__small:hover > .trending-featured__small--title, .trending-featured__small:hover > .trending-featured__list--item__title,
.trending-featured__small:hover > .center-block > .trending-featured__small--title,
.trending-featured__small:hover > .center-block > .trending-featured__list--item__title {
  color: #77a2ba;
  transition: color 0.3s ease;
}

.trending-featured__small:hover > .trending-featured__small--image {
  filter: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz1cJ2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCc+PGZpbHRlciBpZD1cJ2dyYXlzY2FsZVwnPjxmZUNvbG9yTWF0cml4IHR5cGU9XCdtYXRyaXhcJyB2YWx1ZXM9XCcxIDAgMCAwIDAsIDAgMSAwIDAgMCwgMCAwIDEgMCAwLCAwIDAgMCAxIDBcJy8+PC9maWx0ZXI+PC9zdmc+#grayscale");
  filter: grayscale(0%);
  opacity: .5;
  transition: all 0.3s ease;
}

.trending-featured__small .corner-tag {
  display: none;
}

.trending-featured__small.has-list, .trending-featured__small.has-slider {
  border: 0;
  padding: 0;
}

.trending-featured__small.has-slider {
  float: none;
}

.trending-featured__small--item {
  position: relative;
  z-index: 1;
}

.trending-featured__small--item:hover .trending-featured__small--title, .trending-featured__small--item:hover .trending-featured__list--item__title {
  color: #77a2ba;
}

.trending-featured__small--date, .trending-featured__small--title, .trending-featured__list--item__title {
  vertical-align: middle;
}

.trending-featured__small--date {
  float: left;
  width: 23%;
  max-width: 50px;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1;
  text-align: center;
  margin-right: 5%;
}

.trending-featured__small--date b {
  position: relative;
  display: block;
  font-size: 40px;
  font-size: 4rem;
  margin: 0 0 -4px;
}

.trending-featured__small--date span {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 50px;
  color: #132128;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "FuturaPTCond-Book", futura-pt-condensed, Arial Narrow, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  background-color: #77a2ba;
  padding: 2px 0;
  margin-top: 4px;
}

.trending-featured__small--date [class*="icon-"] {
  display: inline-block;
  height: 83px;
  font-size: 35px;
  font-size: 3.5rem;
}

.trending-featured__small--date [class*="icon-"]:before {
  color: #77a2ba;
}

.trending-featured__small--date .icon-lightning,
.trending-featured__small--date .icon-rss-border {
  font-size: 55px;
  font-size: 5.5rem;
}

.trending-featured__small--title, .trending-featured__list--item__title {
  line-height: 1;
  transition: color 0.3s ease;
}

.trending-featured__small--excerpt, .trending-featured__small--heading {
  float: left;
  width: 69%;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  font-weight: normal;
  text-transform: none;
}

.trending-featured__small--excerpt {
  padding-top: 11px;
}

.trending-featured__small--heading {
  float: none;
  width: 100%;
  color: #132128;
  line-height: 40px;
  text-transform: uppercase;
  background-color: #eeeeee;
  padding: 0 0 0 30px;
}

.trending-featured__small--link {
  float: none;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  line-height: 1em;
  padding: 40px;
  height: 12%;
}

.trending-featured__small--link a:after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  margin-left: 1rem;
  color: inherit;
}

.trending-featured__small--button {
  margin-top: 46px;
  margin-right: 5px;
  margin-left: 5px;
}

.trending-featured__small--image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  margin: auto;
  transform: translateX(-50%);
  filter: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz1cJ2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCc+PGZpbHRlciBpZD1cJ2dyYXlzY2FsZVwnPjxmZUNvbG9yTWF0cml4IHR5cGU9XCdtYXRyaXhcJyB2YWx1ZXM9XCcwLjMzMzMgMC4zMzMzIDAuMzMzMyAwIDAgMC4zMzMzIDAuMzMzMyAwLjMzMzMgMCAwIDAuMzMzMyAwLjMzMzMgMC4zMzMzIDAgMCAwIDAgMCAxIDBcJy8+PC9maWx0ZXI+PC9zdmc+#grayscale");
  filter: gray;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.trending-featured__featured-store {
  width: 100%;
}

.trending-featured__featured-store .trending-featured__slider {
  padding: 0;
}

.trending-featured__featured-store .center-block {
  padding-top: 47px;
  padding-bottom: 90px;
}

.trending-featured__featured-store .fs-carousel-pagination {
  position: relative;
  top: -76px;
}

.trending-featured__list {
  padding: 0 20px;
}

.trending-featured__list--item {
  position: relative;
  height: 47%;
  padding: 23px 0;
}

.trending-featured__list--item:hover .trending-featured__list--item__title {
  color: #77a2ba;
  transition: color 0.3s ease;
}

.trending-featured__list--item:first-child + .trending-featured__list--item {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.trending-featured__list--item__title {
  float: none;
}

.trending-featured__list--item__date {
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  font-weight: normal;
  text-transform: none;
  padding-top: 5px;
}

.trending-featured__list--link {
  float: none;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  line-height: 1em;
  padding: 20px 0 0;
}

.trending-featured__list--link a:after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  margin-left: 1rem;
  color: inherit;
}

.trending-featured__list ul,
.trending-featured__list ol {
  padding: 0;
  margin: 0;
}

.trending-featured__slider, .trending-featured__slide-group {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.trending-featured__slider {
  padding: 47px 0 20px;
}

.trending-featured__slider--item {
  overflow: hidden;
  position: relative;
  padding: 0 0 20px 80px;
}

.trending-featured__slider--item:hover .trending-featured__slider--item__title {
  color: #77a2ba;
  transition: color 0.3s ease;
}

.trending-featured__slider--item:before {
  content: attr(data-count);
  position: absolute;
  top: 50%;
  left: 0;
  width: 80px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 38px;
  font-size: 3.8rem;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  transform: translateY(-50%);
  text-align: center;
}

.trending-featured__slider--item:nth-child(2n+1) .trending-featured__slider--item__title {
  border-top: 0;
}

.trending-featured__slider--item__title {
  display: block;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-family: "FuturaBTWXX-Bold", futura-pt, Trebuchet MS, sans-serif;
  font-weight: 700;
  padding: 23px 20px 5px 0;
}

.trending-featured__slider--item__excerpt {
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  font-weight: normal;
  text-transform: none;
  padding-right: 50px;
}

.trending-featured .fs-carousel-page {
  outline: 0 none;
  opacity: 1;
  background-color: #fff;
  margin: 0 7px;
}

.trending-featured .fs-carousel-page:hover, .trending-featured .fs-carousel-page.fs-carousel-active {
  background-color: #388bc3;
}

.trending-featured .center-block {
  position: relative;
  z-index: 1;
  left: 0;
  text-align: center;
  padding-right: 20px;
  padding-left: 20px;
}

.trending-featured .center-block .trending-featured__small--title, .trending-featured .center-block .trending-featured__list--item__title {
  width: 100%;
}

.trending-featured .center-block .trending-featured__small--excerpt {
  float: none;
  width: 100%;
}

.trending-featured[data-style="events"] .trending-featured__wrap {
  padding: 40px 0 38px;
  text-align: center;
}

.trending-featured[data-style="events"] .trending-featured__small:nth-child(3) {
  border: 0 solid rgba(255, 255, 255, 0.3);
  border-top-width: 1px;
}

.trending-featured[data-style="events"] .trending-featured__small:nth-child(4) {
  background-image: url("../images/bkg-geotriangle.png");
}

.trending-featured[data-style="live"], .trending-featured[data-style="fifty"] {
  max-width: 1737px;
}

.trending-featured[data-style="live"] .trending-featured__small.has-list, .trending-featured[data-style="fifty"] .trending-featured__small.has-list {
  padding: 40px 0 0 40px;
}

.trending-featured[data-style="live"] .trending-featured__list, .trending-featured[data-style="fifty"] .trending-featured__list {
  height: auto;
  padding: 0;
}

.trending-featured[data-style="live"] .trending-featured__list--item, .trending-featured[data-style="fifty"] .trending-featured__list--item {
  height: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 20px 0 0;
}

.trending-featured[data-style="live"] .trending-featured__list--item:first-child, .trending-featured[data-style="fifty"] .trending-featured__list--item:first-child {
  border-top: 0;
}

.trending-featured[data-style="live"] .trending-featured__list--item__title, .trending-featured[data-style="fifty"] .trending-featured__list--item__title {
  display: block;
  max-height: 100%;
  text-transform: none;
  font-weight: normal;
  line-height: 1.3;
  padding: 23px 0 25px 0;
}

.trending-featured[data-style="live"] .corner-tag, .trending-featured[data-style="stories"] .corner-tag, .trending-featured[data-style="fifty"] .corner-tag {
  display: block;
}

.trending-featured[data-style="live"] .trending-featured__list, .trending-featured[data-style="stories"] .trending-featured__list, .trending-featured[data-style="fifty"] .trending-featured__list {
  height: auto;
  padding: 0;
}

.trending-featured[data-style="live"] .trending-featured__list--item, .trending-featured[data-style="stories"] .trending-featured__list--item, .trending-featured[data-style="fifty"] .trending-featured__list--item {
  height: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 20px 0 0;
}

.trending-featured[data-style="live"] .trending-featured__list--item:first-child, .trending-featured[data-style="stories"] .trending-featured__list--item:first-child, .trending-featured[data-style="fifty"] .trending-featured__list--item:first-child {
  border-top: 0;
}

.trending-featured[data-style="live"] .trending-featured__list--item__title, .trending-featured[data-style="stories"] .trending-featured__list--item__title, .trending-featured[data-style="fifty"] .trending-featured__list--item__title {
  float: none !important;
  display: block;
  max-height: 100%;
  font-family: "FuturaBTWXX-Bold", futura-pt, Trebuchet MS, sans-serif;
  font-weight: 700;
  text-transform: none;
  font-weight: normal;
  line-height: 1.3;
  padding: 23px 0 25px 0;
}

.trending-featured[data-style="stories"] .trending-featured__small {
  padding: 0;
}

.trending-featured[data-style="stories"] .trending-featured__small--item {
  float: left;
  clear: both;
  border-top: 1px solid rgba(51, 62, 72, 0.3);
  padding: 29px 29px 29px 0;
  margin: 0 0 0 85px;
}

.trending-featured[data-style="stories"] .trending-featured__small--item:nth-of-type(1) {
  border-top: 0;
  margin-top: 74px;
}

.trending-featured[data-style="stories"] .trending-featured__small--date {
  position: absolute;
  left: -64px;
  top: 5px;
}

.trending-featured[data-style="stories"] .trending-featured__small--title, .trending-featured[data-style="stories"] .trending-featured__list--item__title, .trending-featured[data-style="stories"] .trending-featured__small--excerpt {
  width: 100%;
}

.trending-featured[data-style="stories"] .trending-featured__list {
  padding: 30px 0 30px 45px;
}

.trending-featured[data-style="stories"] .trending-featured__list--item {
  border-top-color: rgba(51, 62, 72, 0.3);
}

.trending-featured[data-style="fifty"] .trending-featured__list--item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.trending-featured[data-style="fifty"] .trending-featured__list--item:first-child {
  border-top: 0;
}

.trending-featured[data-style="fifty"] .width--one-half {
  border-bottom: 1px solid #f1f1f1;
}

@media only screen and (min-width: 37.5em) {
  .trending-featured__wrap {
    padding-top: 60px;
  }
  .trending-featured__wrap ~ .trending-featured__wrap {
    padding-bottom: 60px;
  }
  .trending-featured__small {
    padding: 70px 70px 70px 100px;
  }
  .trending-featured__small .corner-tag {
    display: block;
  }
  .trending-featured__small--date, .trending-featured__small--title, .trending-featured__list--item__title {
    display: inline-block;
  }
  .trending-featured__small--date {
    float: none;
    width: 30%;
    max-width: 81px;
    font-size: 45px;
    font-size: 4.5rem;
  }
  .trending-featured__small--date b {
    font-size: 74px;
    font-size: 7.4rem;
    margin: -1px 0 -8px;
  }
  .trending-featured__small--date span {
    position: absolute;
    top: -21px;
    width: 81px;
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 0;
  }
  .trending-featured__small--date [class*="icon-"] {
    height: auto;
    font-size: 55px;
    font-size: 5.5rem;
    line-height: 110px;
  }
  .trending-featured__small--date .icon-lightning,
  .trending-featured__small--date .icon-rss-border {
    font-size: 109px;
    font-size: 10.9rem;
    line-height: initial;
  }
  .trending-featured__small--title, .trending-featured__list--item__title {
    width: 68%;
    padding-bottom: 0;
    line-height: .9;
  }
  .trending-featured__small--excerpt, .trending-featured__small--heading {
    float: none;
    width: 100%;
  }
  .trending-featured__small--excerpt {
    padding-top: 21px;
  }
  .trending-featured__small--heading {
    line-height: 58px;
    padding-left: 60px;
  }
  .trending-featured__list {
    padding-right: 40px;
    padding-left: 40px;
  }
  .trending-featured__list--item {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .trending-featured__list--item__title {
    width: 100%;
    line-height: 1;
  }
  .trending-featured__slider--item {
    height: 254px;
    padding: 0 0 0 157px;
  }
  .trending-featured__slider--item:before {
    width: 157px;
    font-size: 71px;
    font-size: 7.1rem;
  }
  .trending-featured[data-style="events"] .trending-featured__wrap {
    padding-top: 60px;
    padding-bottom: 53px;
  }
  .trending-featured[data-style="live"] .trending-featured__small.has-list {
    padding: 90px 0 30px 67px;
  }
  .trending-featured[data-style="stories"] .trending-featured__small--item {
    padding: 40px 29px 40px 0;
    margin: 0 0 0 150px;
  }
  .trending-featured[data-style="stories"] .trending-featured__small--item:nth-of-type(1) {
    margin-top: 74px;
  }
  .trending-featured[data-style="stories"] .trending-featured__small--date {
    left: -100px;
    top: 40px;
  }
  .trending-featured[data-style="stories"] .trending-featured__list {
    padding: 60px 0 30px 90px;
  }
}

@media only screen and (min-width: 48em) {
  .trending-featured__wrap {
    padding-top: 80px;
  }
  .trending-featured__wrap ~ .trending-featured__wrap {
    padding-bottom: 100px;
  }
  .trending-featured__small {
    float: left;
    padding: 94px 100px 94px 120px;
  }
  .trending-featured__list {
    padding: 0 80px 0 40px;
  }
  .trending-featured[data-style="events"] .trending-featured__wrap {
    padding-top: 85px;
  }
  .trending-featured[data-style="stories"] .trending-featured__small--item:nth-of-type(1) {
    margin-top: 120px;
  }
  .trending-featured[data-style="stories"] .trending-featured__list {
    padding-top: 90px;
  }
}

@media only screen and (min-width: 64em) {
  .trending-featured .width--one-third {
    width: 33.33%;
  }
  .trending-featured .width--one-half {
    width: 50%;
  }
  .trending-featured .width--two-thirds {
    width: 66.66%;
    border-bottom: 2px solid #eeeeee;
  }
  .trending-featured__small {
    height: 380px;
    padding: 46px 20px 34px;
  }
  .global-sidebar .trending-featured__small {
    width: 100%;
  }
  .trending-featured__small.has-slider {
    float: left;
  }
  .trending-featured__small .corner-tag {
    display: none;
  }
  .trending-featured__small--date {
    width: 25%;
    max-width: 61px;
    font-size: 35px;
    font-size: 3.5rem;
    margin-right: 4%;
  }
  .trending-featured__small--date b {
    font-size: 58px;
    font-size: 5.8rem;
  }
  .trending-featured__small--date span {
    width: 61px;
  }
  .trending-featured__small--date [class*="icon-"] {
    line-height: 84px;
  }
  .trending-featured__small--date .icon-lightning,
  .trending-featured__small--date .icon-rss-border {
    font-size: 83px;
    font-size: 8.3rem;
    line-height: initial;
  }
  .trending-featured__small--heading {
    padding-left: 30px;
  }
  .trending-featured__small--link {
    padding: 0 0 0 40px;
  }
  .trending-featured__small--image {
    max-width: 1000%;
  }
  .trending-featured__list {
    height: 73%;
    padding-right: 20px;
    padding-left: 20px;
  }
  .trending-featured__list--item {
    padding-top: 23px;
    padding-bottom: 0;
  }
  .trending-featured__list--item__date {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .trending-featured__slider--item {
    height: auto;
    padding: 0 0 20px 80px;
  }
  .trending-featured__slider--item:before {
    width: 80px;
    font-size: 38px;
    font-size: 3.8rem;
  }
  .trending-featured__slider--item__title {
    font-size: 20px;
    font-size: 2rem;
    padding: 23px 20px 5px 0;
  }
  .trending-featured .center-block {
    width: 100%;
  }
  .trending-featured[data-style="events"] .trending-featured__small:nth-child(3) {
    border-top-width: 0;
    border-left-width: 1px;
  }
  .trending-featured[data-style="live"] .trending-featured__small.has-list, .trending-featured[data-style="fifty"] .trending-featured__small.has-list {
    padding: 40px 0 0 40px;
  }
  .trending-featured[data-style="live"] .trending-featured__list--item__title, .trending-featured[data-style="stories"] .trending-featured__list--item__title, .trending-featured[data-style="fifty"] .trending-featured__list--item__title {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 16px 0 18px 0;
  }
  .trending-featured[data-style="live"] .corner-tag, .trending-featured[data-style="stories"] .corner-tag, .trending-featured[data-style="fifty"] .corner-tag {
    display: block;
    width: 90px;
    height: 90px;
  }
  .trending-featured[data-style="live"] .corner-tag:before, .trending-featured[data-style="stories"] .corner-tag:before, .trending-featured[data-style="fifty"] .corner-tag:before {
    border-width: 45px;
  }
  .trending-featured[data-style="live"] .corner-tag span, .trending-featured[data-style="stories"] .corner-tag span, .trending-featured[data-style="fifty"] .corner-tag span {
    top: 0;
    left: 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .trending-featured[data-style="stories"] .trending-featured__small {
    height: auto;
  }
  .trending-featured[data-style="stories"] .trending-featured__small--item {
    margin-left: 140px;
  }
  .trending-featured[data-style="stories"] .trending-featured__small--item:nth-of-type(1) {
    margin-top: 54px;
  }
  .global-sidebar .trending-featured[data-style="stories"] .trending-featured__small--item {
    margin-left: 100px;
  }
  .global-sidebar .trending-featured[data-style="stories"] .trending-featured__small--date {
    left: -80px;
  }
  .trending-featured[data-style="stories"] .trending-featured__list {
    padding-top: 60px;
    padding-left: 60px;
  }
}

@media only screen and (min-width: 80em) {
  .trending-featured__small {
    padding: 84px 50px 0 80px;
  }
  .trending-featured__small .corner-tag {
    display: block;
    width: 130px;
    height: 130px;
  }
  .trending-featured__small .corner-tag:before {
    border-width: 65px;
  }
  .trending-featured__small .corner-tag span {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .trending-featured__small--title, .trending-featured__list--item__title {
    width: 73%;
    line-height: 1.05;
  }
  .trending-featured__small--heading {
    line-height: 65px;
  }
  .trending-featured__list {
    padding-right: 40px;
    padding-left: 40px;
  }
  .trending-featured__list--item {
    padding-top: 23px;
    padding-bottom: 0;
  }
  .trending-featured__list--item__title {
    width: 100%;
  }
  .trending-featured__list--item__date {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .trending-featured__slider--item {
    padding-left: 100px;
  }
  .trending-featured__slider--item:before {
    width: 100px;
    font-size: 60px;
    font-size: 6rem;
  }
  .trending-featured .center-block {
    display: inline-block;
    vertical-align: middle;
    padding-right: 50px;
    padding-left: 50px;
  }
  .trending-featured[data-style="live"] .trending-featured__small.has-list, .trending-featured[data-style="fifty"] .trending-featured__small.has-list {
    padding-left: 50px;
  }
  .trending-featured[data-style="live"] .trending-featured__small.center, .trending-featured[data-style="fifty"] .trending-featured__small.center {
    padding: 0;
  }
  .trending-featured[data-style="live"] .trending-featured__small.center:before, .trending-featured[data-style="fifty"] .trending-featured__small.center:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 0;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.28em;
    /* Adjusts for spacing */
  }
  .trending-featured[data-style="fifty"] .width--one-half {
    border-right: 1px solid #f1f1f1;
    border-bottom: none;
  }
  .trending-featured[data-style="stories"] .trending-featured__small--item {
    margin-left: 60px;
  }
  .trending-featured[data-style="stories"] .trending-featured__small--date {
    float: left;
    position: relative;
    left: auto;
    top: auto;
    margin-top: 25px;
  }
  .trending-featured[data-style="stories"] .trending-featured__small--title, .trending-featured[data-style="stories"] .trending-featured__list--item__title, .trending-featured[data-style="stories"] .trending-featured__small--excerpt {
    float: left;
    width: 84%;
  }
  .global-sidebar .trending-featured[data-style="stories"] .trending-featured__small--item {
    margin-left: 120px;
  }
  .global-sidebar .trending-featured[data-style="stories"] .trending-featured__small--date {
    position: absolute;
    left: -90px;
  }
  .global-sidebar .trending-featured[data-style="stories"] .trending-featured__small--title, .global-sidebar .trending-featured[data-style="stories"] .trending-featured__list--item__title, .global-sidebar .trending-featured[data-style="stories"] .trending-featured__small--excerpt {
    width: 100%;
  }
}

@media only screen and (min-width: 120em) {
  .trending-featured__small {
    padding: 94px 50px 0 120px;
  }
  .trending-featured__small--date {
    width: 30%;
    max-width: 81px;
    font-size: 45px;
    font-size: 4.5rem;
    margin-right: 25px;
  }
  .trending-featured__small--date b {
    font-size: 74px;
    font-size: 7.4rem;
  }
  .trending-featured__small--date span {
    width: 81px;
  }
  .trending-featured__small--date [class*="icon-"] {
    line-height: 110px;
  }
  .trending-featured__small--date .icon-lightning,
  .trending-featured__small--date .icon-rss-border {
    font-size: 109px;
    font-size: 10.9rem;
    line-height: initial;
  }
  .trending-featured__small--title, .trending-featured__list--item__title {
    width: 73%;
  }
  .trending-featured__list {
    padding-right: 80px;
  }
  .trending-featured__list--item__title {
    width: 100%;
    max-height: 120px;
    font-size: 36px;
    font-size: 3.6rem;
  }
  .trending-featured__list--item__date {
    font-size: 25px;
    font-size: 2.5rem;
  }
  .trending-featured__slider--item {
    height: 254px;
    padding: 0 0 0 157px;
  }
  .trending-featured__slider--item:before {
    width: 157px;
    font-size: 71px;
    font-size: 7.1rem;
  }
  .trending-featured__slider--item__excerpt {
    line-height: 1.2;
  }
  .trending-featured .center-block {
    padding-right: 110px;
    padding-left: 110px;
  }
  .trending-featured__small .corner-tag, .trending-featured[data-style="live"] .corner-tag, .trending-featured[data-style="stories"] .corner-tag {
    display: block;
    width: 170px;
    height: 170px;
  }
  .trending-featured__small .corner-tag:before, .trending-featured[data-style="live"] .corner-tag:before, .trending-featured[data-style="stories"] .corner-tag:before {
    border-width: 85px;
  }
  .trending-featured__small .corner-tag span, .trending-featured[data-style="live"] .corner-tag span, .trending-featured[data-style="stories"] .corner-tag span {
    top: 15%;
    left: 15%;
    font-size: 20px;
    font-size: 2rem;
  }
  .trending-featured[data-style="live"] .trending-featured__small {
    height: 620px;
  }
  .trending-featured[data-style="live"] .trending-featured__small.has-list {
    padding: 90px 0 0 67px;
  }
  .trending-featured[data-style="live"] .trending-featured__small--button {
    padding: 24px 30px 25px;
  }
  .trending-featured[data-style="stories"] .trending-featured__small--item {
    margin-left: 180px;
  }
  .global-sidebar .trending-featured[data-style="stories"] .trending-featured__small {
    padding-bottom: 20px;
  }
  .global-sidebar .trending-featured[data-style="stories"] .trending-featured__small--item {
    padding-right: 0;
    margin-right: 80px;
    margin-left: 80px;
  }
  .global-sidebar .trending-featured[data-style="stories"] .trending-featured__small--item:nth-of-type(1) {
    margin-top: 120px;
  }
  .global-sidebar .trending-featured[data-style="stories"] .trending-featured__small--date {
    position: relative;
    left: 0;
    margin-bottom: 100px;
  }
  .global-sidebar .trending-featured[data-style="stories"] .trending-featured__small--title, .global-sidebar .trending-featured[data-style="stories"] .trending-featured__list--item__title, .global-sidebar .trending-featured[data-style="stories"] .trending-featured__small--excerpt {
    width: 72%;
  }
  .main-content.width--full ~ .global-sidebar .trending-featured[data-style="stories"] .trending-featured__small .corner-tag {
    display: none;
  }
  .main-content.width--full ~ .global-sidebar .trending-featured[data-style="stories"] .trending-featured__small .trending-featured__small--item {
    margin-right: 60px;
    margin-left: 60px;
  }
  .main-content.width--full ~ .global-sidebar .trending-featured[data-style="stories"] .trending-featured__small .trending-featured__small--item:nth-of-type(1) {
    padding-top: 60px;
    margin-top: 0;
  }
  .trending-featured[data-style="stories"] .trending-featured__list {
    padding-top: 95px;
    padding-bottom: 44px;
    padding-left: 110px;
  }
}

.splash {
  position: relative;
  min-height: 200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.splash__title {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  line-height: .8;
  transform: translateY(-50%);
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 32px;
}

@media only screen and (min-width: 37.5em) {
  .splash {
    min-height: 300px;
  }
  .splash__title {
    margin-top: 6%;
  }
}

@media only screen and (min-width: 48em) {
  .splash__title {
    margin-top: 7%;
  }
}

@media only screen and (min-width: 60em) {
  .splash {
    min-height: 400px;
  }
  .splash__title {
    margin-top: 8%;
  }
}

@media only screen and (min-width: 64em) {
  .splash {
    min-height: 412px;
  }
  .splash__title {
    margin-top: 73px;
  }
}

.list-block {
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  text-align: left;
  line-height: 1.2;
  padding: 40px 40px 20px;
}

.list-block__title {
  font-size: 20px;
  font-size: 2rem;
  font-family: "FuturaPTCond-ExtraBold", futura-pt-condensed, Arial Narrow, sans-serif;
  text-transform: uppercase;
  padding-bottom: 28px;
}

.list-block__item {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 21px 0 25px;
}

.list-block a {
  position: relative;
  display: block;
  padding: 21px 0 25px;
  margin: -21px 0 -25px;
}

.list-block[class*="background--"] a {
  color: currentColor;
}

.list-block[class*="background--"] a:hover {
  color: #388bc3;
}

@media only screen and (min-width: 37.5em) {
  .list-block {
    padding: 60px 80px 40px;
  }
  .list-block__title {
    font-size: 32px;
    font-size: 3.2rem;
  }
  .list-block__item {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media only screen and (min-width: 64em) {
  .list-block {
    padding: 60px 80px 40px;
  }
  .list-block__title {
    font-size: 32px;
    font-size: 3.2rem;
  }
  .list-block__item {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .global-sidebar .list-block {
    padding: 40px 40px 10px;
  }
  .global-sidebar .list-block__title {
    font-size: 20px;
    font-size: 2rem;
  }
  .global-sidebar .list-block__item {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media only screen and (min-width: 80em) {
  .global-sidebar .list-block {
    padding: 60px 60px 40px;
  }
  .global-sidebar .list-block__title {
    font-size: 32px;
    font-size: 3.2rem;
  }
  .global-sidebar .list-block__item {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media only screen and (min-width: 90em) {
  .global-sidebar .list-block {
    padding-right: 80px;
    padding-left: 80px;
  }
}

.sitemap .main-content {
  float: none;
  margin: 0 auto;
}

.sitemap-list {
  list-style: none;
  padding-left: 0;
}

.sitemap-list ul {
  padding-left: 5rem;
}

.sitemap-list a {
  font-family: "FuturaPTCond-ExtraBold",futura-pt-condensed,Arial Narrow,sans-serif;
  line-height: 1;
  text-transform: uppercase;
  color: #132128;
}

.sitemap-list a:hover {
  color: #388bc3;
}

.sitemap-list .children {
  font-size: 1.8rem;
  list-style: circle;
}

.sitemap-list .children .children {
  font-size: 1.4rem;
  list-style: disc;
}

.sitemap-list .children a {
  color: #a2a2a2;
  font-family: "FuturaPT-Medium",futura-pt,Trebuchet MS,sans-serif;
  text-transform: none;
}

.sitemap-list .children a:after {
  content: "\e90f";
  font-family: 'aaaa' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: .75em;
  margin-left: .75rem;
  color: #388bc3;
  transition: .3s;
}

.sitemap-list .children a:hover {
  color: #132128;
}

.sitemap-list .children a:hover:after {
  margin-left: 1.25rem;
}

.sitemap-list li {
  margin-bottom: .75rem;
}

.card {
  font-family: "FuturaBTWXX-Book", futura-pt, Trebuchet MS, sans-serif;
  transition: 0.3s;
}

.card img {
  width: 100%;
}

.card__tag {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: #77a2ba;
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.card__tag--overhang {
  position: relative;
  top: -20px;
}

.card-cta {
  position: relative;
  display: block;
  padding: 14rem 3rem 1.5rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 350px;
  color: #fff;
}

.card-cta__wrap {
  position: relative;
  z-index: 5;
}

.card-cta__title {
  display: block;
  margin-bottom: .5rem;
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.25;
}

.card-cta__content {
  display: block;
  margin-bottom: 1rem;
}

.card-cta__link {
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  text-transform: uppercase;
}

.card-cta__link:after {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-size: 10px;
  font-size: 1rem;
  color: #fff;
  margin-left: 1rem;
  transition: 0.3s;
}

.card-cta:after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
}

.card-cta:hover {
  color: #fff !important;
}

.card__date {
  display: block;
  margin-bottom: 1.5rem;
  color: #82878b;
}

.card__title {
  padding-bottom: 0;
  margin-bottom: 1.5rem;
}

.card__content {
  padding: 0 2.5rem 3rem;
}

.card__link {
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.card__link:after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  margin-left: .5rem;
}

.card--hover:hover {
  transform: translateY(-1rem);
}

.card--gray {
  background: #eeeeee;
}

.card--white {
  background: #fff;
}

.card--shadow {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
}

.event-list__slider .slick-slide {
  padding: 1.5rem;
  opacity: .6;
  transition: 0.3s;
}

.event-list__slider .slick-active {
  opacity: 1;
}

.event-list__slider .slick-dots {
  text-align: left;
  padding-left: 2rem;
}

.event-list__slider .slick-dots li {
  height: 8px;
  width: 40px;
}

.event-list__slider .slick-dots li button {
  background: #132128;
  height: 8px;
  width: 40px;
}

.event-list__slider .slick-dots li.slick-active button {
  background: #fcc844;
}

@media only screen and (min-width: 64em) {
  .event-list__slider .slick-slide {
    opacity: 1;
  }
}

.event-list__btn {
  background: #b9cfdc;
  padding-bottom: 5rem;
}

.event-list__btn .button.outline-color--green {
  color: #fff;
  border-color: #fff;
}

@media only screen and (min-width: 64em) {
  .event-list__btn {
    padding: 0;
    margin: 3rem 0;
    background: #fff;
  }
  .event-list__btn .button.outline-color--green {
    color: #42a4e6;
    border-color: #42a4e6;
  }
  .event-list__btn .button.outline-color--green:hover, .event-list__btn .main-content__video-embed:hover .outline-color--green.button, .main-content__video-embed:hover .event-list__btn .outline-color--green.button, .event-list__btn .mason-block:hover .outline-color--green.button, .mason-block:hover .event-list__btn .outline-color--green.button, .event-list__btn .trending-featured__small:hover .outline-color--green.trending-featured__small--button, .trending-featured__small:hover .event-list__btn .outline-color--green.trending-featured__small--button {
    background: #42a4e6;
    color: #fff;
  }
}

.quick-links {
  padding: 4rem 0;
}

.quick-links__wrap {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
}

.quick-links__title {
  text-transform: uppercase;
}

.quick-links__title:after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  color: #8a8a8a;
  float: right;
  transition: 0.3s;
}

.quick-links__title.is-active:after {
  transform: rotate(180deg);
  transform-origin: center;
}

.quick-links__list {
  flex-direction: column;
}

.quick-links a {
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
  font-weight: 700;
  margin: 1rem 0;
  display: block;
}

.quick-links a:last-child {
  margin-bottom: 0;
}

.quick-links a:after {
  content: "\f061";
  font-family: "Font Awesome 5 Pro";
  margin-left: 1.5rem;
}

.quick-links--light {
  background: #eeeeee;
  color: #626262;
}

.quick-links--light a {
  color: #626262;
}

.quick-links--dark {
  background: #333e48;
  color: #fff;
}

.quick-links--dark a {
  color: #fff;
}

@media only screen and (min-width: 60em) {
  .quick-links__wrap {
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    justify-content: space-between;
    -ms-flex-pack: justify;
    align-items: center;
    -ms-align-items: center;
  }
  .quick-links__title {
    margin-right: 12rem;
  }
  .quick-links__title:after {
    display: none;
  }
  .quick-links__list {
    flex-grow: 1;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
    -ms-flex-pack: justify;
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
  }
  .quick-links a {
    margin: 0;
    display: inline-block;
  }
}

.textarea {
  font-family: "FuturaBTWXX-Book", futura-pt, Trebuchet MS, sans-serif;
}

.textarea--hp {
  padding: 30px 0;
  color: #333e48;
}

.textarea--hp .button {
  margin-top: 3rem;
}

.textarea .button {
  margin-top: 3rem;
}

.hero {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
}

.hero__promo {
  width: 100%;
  padding: 2rem 2.5rem;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero__promo .center-block {
  position: relative;
  z-index: 5;
  margin: 0 auto;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  height: 100%;
  flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  justify-content: flex-end;
  -ms-justify-content: flex-end;
}

.hero__promo .center-block > * {
  width: auto;
}

.hero__promo__title {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero__promo__content {
  display: none;
  font-family: "FuturaBTWXX-Book", futura-pt, Trebuchet MS, sans-serif;
}

.hero__promo__logo {
  display: block;
  margin: 0 auto 2rem;
}

.hero__promo__link {
  display: inline-block;
  margin-top: 1rem;
  color: #fff;
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
  text-transform: uppercase;
}

.hero__promo__link:after {
  position: relative;
  top: -2px;
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-size: 10px;
  font-size: 1rem;
  color: #fff;
  margin-left: 1rem;
  transition: 0.3s;
}

.hero__promo__link:hover {
  color: inherit;
}

.hero__promo__link:hover:after {
  margin-left: 1.5rem;
}

.hero__promo__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero__promo--first {
  padding: 5rem 2.5rem;
  text-align: center;
  flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  -moz-flex: 1 1 auto;
}

.hero__promo--first .center-block {
  justify-content: center;
}

.hero__promo--first .hero__promo__title {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
}

.hero__promo--first .hero__promo__content {
  margin-bottom: 2.5rem;
  display: block;
}

.hero__promo--first .hero__promo__logo {
  display: block;
  margin: 0 auto 4rem;
}

.hero__promo--first.has-overlay {
  position: relative;
  /*&:before {
                    content: ""; 
                    position: absolute;
                    height: 100%;
                    width: 100%;
                    top: 0;
                    bottom: 0;
                    left: 0;
                    z-index: 0;
                    background: rgba($black, .3);
                    transition: $default-transition-time;
                }

                &:after {
                    content: "";
                    position: absolute;
                    height: 50%;
                    width: 100%;
                    bottom: 0;
                    left: 0;
                    z-index: 0;
                    background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
                    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
                    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
                    transition: $default-transition-time;
                }
                
                &:hover {
                    &:before {
                        background: rgba($black, .5);  
                    }
                    &:after {
                        height: 60%;
                    }
                }*/
}

@media only screen and (min-width: 64em) {
  .hero {
    height: 50vw;
    max-height: 500px;
    border: 2.5px solid #fff;
  }
  .hero__promo {
    border: 2.5px solid #fff;
  }
  .hero__promo .center-block {
    max-width: 530px;
  }
  .hero__promo__content {
    display: block;
  }
  .hero__promo.has-overlay {
    position: relative;
    /*&:before {
                    content: ""; 
                    position: absolute;
                    height: 100%;
                    width: 100%;
                    top: 0;
                    bottom: 0;
                    left: 0;
                    z-index: 0;
                    background: rgba($black, .3);
                    transition: $default-transition-time;
                }

                &:after {
                    content: "";
                    position: absolute;
                    height: 50%;
                    width: 100%;
                    bottom: 0;
                    left: 0;
                    z-index: 0;
                    background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
                    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
                    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
                    transition: $default-transition-time;
                }
                
                &:hover {
                    &:before {
                        background: rgba($black, .5);  
                    }
                    &:after {
                        height: 60%;
                    }
                }*/
  }
  .hero__promo--first .hero__promo__title {
    font-size: 34px;
    font-size: 3.4rem;
  }
  .hero--five .hero__promo {
    width: 25%;
    flex: 1 1 50%;
    -ms-flex: 1 1 50%;
    -moz-flex: 1 1 50%;
  }
  .hero--five .hero__promo--first {
    width: 50%;
    flex: 1 1 100%;
    -ms-flex: 1 1 100%;
  }
  .hero--three .hero__promo {
    width: 33.33333%;
    flex: 1 1 50%;
    -ms-flex: 1 1 50%;
    -moz-flex: 1 1 50%;
  }
  .hero--three .hero__promo--first {
    width: 66.6666%;
    flex: 1 1 100%;
    -ms-flex: 1 1 100%;
  }
}

@media only screen and (max-width: 1023px) {
  .hero__promo:not(:first-child) {
    background-image: none !important;
  }
}

.news-item {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #eeeeee;
  font-family: "FuturaBTWXX-Book", futura-pt, Trebuchet MS, sans-serif;
}

.news-item__wrap {
  display: flex;
  flex-direction: column;
}

.news-item__thumb, .news-item__content {
  flex-basis: 100%;
}

.news-item__thumb {
  margin-bottom: 3rem;
  flex: 4;
}

.news-item__img {
  padding-bottom: 66.66667%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.news-item__content {
  flex: 6;
}

.news-item__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 4rem;
}

.news-item__video > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.news-item__sub {
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
  color: #82878b;
  margin-bottom: 1rem;
}

.news-item__sub a {
  color: #82878b;
}

.news-item__title {
  display: block;
  font-weight: 700;
  color: #132128;
  padding-bottom: 1rem;
}

.news-item--featured .news-item__thumb {
  flex: 5.5;
}

.news-item--featured .news-item__content {
  flex: 4.5;
}

.news-item--featured .news-item__title {
  padding-bottom: 1rem;
}

@media only screen and (min-width: 60em) {
  .news-item__wrap {
    flex-direction: row;
    align-items: flex-start;
  }
  .news-item__thumb {
    margin-right: 3rem;
    margin-bottom: 0;
  }
}

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

.hidden {
  display: none;
}

@media only screen and (max-width: 60em) {
  .hidden--on-mobile {
    display: none;
  }
}

@media only screen and (min-width: 60em) {
  .hidden--on-desktop {
    display: none !important;
  }
}

@media only screen and (min-width: 64.0625em) {
  .hidden--on-desktopweird {
    display: none !important;
  }
}

.zero-width {
  width: 0;
}

/**
 * Wrap
 */
.wrap--width-max {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.wrap--width-max.wrap--gutter {
  max-width: 1320px;
}

.wrap--gutter {
  padding-right: 20px;
  padding-left: 20px;
}

/**
 * Float
 */
.float--left {
  float: left;
}

.float--right {
  float: right;
}

/**
 * Colors
 */
.font-color--white {
  color: #fff;
}

.font-color--black {
  color: #132128;
}

.font-color--primary-two {
  color: #333e48;
}

/**
 * Text Align
 */
.text-align--left {
  text-align: left;
}

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

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

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

@media only screen and (min-width: 64.0625em) {
  .text-align--center-m {
    text-align: left;
  }
}

/**
 * Fonts
 */
.font--futura {
  font-family: "FuturaPT-Medium", futura-pt, Trebuchet MS, sans-serif;
}

.font--futura-condensed {
  font-family: "FuturaPTCond-Medium", futura-pt-condensed, Arial Narrow, sans-serif;
}

/**
 * Padding
 */
.padding--no-top {
  padding-top: 0 !important;
}

.padding--no-bottom {
  padding-bottom: 0 !important;
}

.overhang__item {
  padding: 0;
}

@media only screen and (min-width: 64em) {
  .overhang {
    margin-bottom: 14rem;
  }
  .overhang__item {
    margin-bottom: -15rem;
    paddng-left: 2rem;
    padding-right: 2rem;
  }
}

/**
 * Background
 * Old backgrounds line 130 - 147. Remove once transition to new colors bgs is complete.
 * New backgrounds line 130 - 146. Do NOT remove.
 */
.background--default {
  background-color: #fff;
}

.background--teal {
  background-color: #82878b;
}

.background--blue {
  background-color: #388bc3;
}

.background--green {
  background-color: #b80000;
}

.background--dark-green {
  background-color: #720000;
}

.background--yellow {
  background-color: #fcc844;
}

.background--orange {
  background-color: #fcc844;
}

.background--red {
  background-color: #b80000;
}

.background--light-gray {
  background-color: #eeeeee;
}

.background--filter-blue {
  background-color: #5087a5;
}

.background--filter-teal {
  background-color: #5087a5;
}

.background--filter-green {
  background-color: #113a5e;
}

.background--filter-dark-green {
  background-color: #113a5e;
}

.background--filter-yellow {
  background-color: #77a2ba;
}

/*.background--filter-red {
  background-color: #fcc844;
}*/

.background--filter-orange {
  background-color: #fcc844;
}

.background--primary {
  background-color: #132128;
}

.background--primary-two {
  background-color: #333e48;
}

.background--primary-three {
  background-color: #82878b;
}

.background--primary-four {
  background-color: #eeeeee;
}

.background--secondary {
  background-color: #388bc3;
}

.background--secondary-two {
  background-color: #42a4e6;
}

.background--secondary-three {
  background-color: #b9cfdc;
}

.background--secondary-four {
  background-color: #5087a5;
}

.background--tertiary {
  background-color: #fcc844;
}

.background--tertiary-two {
  background-color: #77a2ba;
}

.background--tertiary-three {
  background-color: #113a5e;
}

.background--red-dark {
  background-color: #720000;
}

.background--sun {
  background-color: #fcc844;
}

.background--sky {
  background-color: #42a4e6;
}

.background--sky-dark {
  background-color: #388bc3;
}

.background--slate {
  background-color: #5087a5;
}

.background--slate-light {
  background-color: #b9cfdc;
}

.background--slate-medium {
  background-color: #77a2ba;
}

.background--slate-dark {
  background-color: #132128;
}

.background--night {
  background-color: #113a5e;
}

.background--gray-light {
  background-color: #a2a2a2;
}

.background--gray-medium {
  background-color: #82878b;
}

.background--filter-red {
  background-color: #b80000;
}
.background--filter-red-dark {
  background-color: #720000;
}
.background--filter-slate-dark {
  background-color: #132128;
}
.background--filter-medium-dark {
  background-color: #77a2ba;
}
.background--filter-slate {
  background-color: #5087a5;
}
.background--filter-slate-light {
  background-color: #b9cfdc;
}
.background--filter-sky-dark {
  background-color: #388bc3;
}
.background--filter-sky {
  background-color: #42a4e6;
}
.background--filter-sun {
  background-color: #fcc844;
}
.background--filter-night {
  background-color: #113a5e;
}
.background--filter-gray-medium {
  background-color: #82878b;
}
.background--filter-gray-light {
  background-color: #a2a2a2;
}



.background--polygon {
  background-image: url("../images/bkg-polygon.jpg");
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

[class*="background--filter-"]:before {
  content: '';
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .4;
  transition: all 0.3s ease;
}

[class*="background--filter-"] img {
  filter: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz1cJ2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnXCc+PGZpbHRlciBpZD1cJ2dyYXlzY2FsZVwnPjxmZUNvbG9yTWF0cml4IHR5cGU9XCdtYXRyaXhcJyB2YWx1ZXM9XCcwLjMzMzMgMC4zMzMzIDAuMzMzMyAwIDAgMC4zMzMzIDAuMzMzMyAwLjMzMzMgMCAwIDAuMzMzMyAwLjMzMzMgMC4zMzMzIDAgMCAwIDAgMCAxIDBcJy8+PC9maWx0ZXI+PC9zdmc+#grayscale");
  filter: gray;
  filter: grayscale(100%);
}

[class*="background--filter-"] > *:first-child {
  z-index: 2;
}

[class*="background--filter-"]:hover:before {
  opacity: .7;
  transition: all 0.3s ease;
}

.background--filter-blue:before {
  background-color: #5087a5;
}

.background--filter-teal:before {
  background-color: #5087a5;
}

.background--filter-green:before {
  background-color: #113a5e;
}

.background--filter-dark-green:before {
  background-color: #113a5e;
}

.background--filter-yellow:before {
  background-color: #77a2ba;
}

/*.background--filter-red:before {
  background-color: #fcc844;
}*/

.background--filter-orange:before {
  background-color: #fcc844;
}

.background--filter-red:before {
  background-color: #b80000;
}
.background--filter-red-dark:before {
  background-color: #720000;
}
.background--filter-slate-dark:before {
  background-color: #132128;
}
.background--filter-medium-dark:before {
  background-color: #77a2ba;
}
.background--filter-slate:before {
  background-color: #5087a5;
}
.background--filter-slate-light:before {
  background-color: #b9cfdc;
}
.background--filter-sky-dark:before {
  background-color: #388bc3;
}
.background--filter-sky:before {
  background-color: #42a4e6;
}
.background--filter-sun:before {
  background-color: #fcc844;
}
.background--filter-night:before {
  background-color: #113a5e;
}
.background--filter-gray-medium:before {
  background-color: #82878b;
}
.background--filter-gray-light:before {
  background-color: #a2a2a2;
}


a.icon-logo {
  color: #b80000;
}

a.icon-logo.global-footer__logo {
  color: #fff !important;
}

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  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;
  }
  .main-nav {
    position: static;
  }
  .main-nav__menu--icon, .main-nav__top--right {
    display: none;
  }
  .main-nav.not-on-top + * {
    margin-top: 0;
  }
  .main-content__meta-footer,
  .main-content .sharing {
    display: none;
  }
  .main-content .wp-caption.alignleft,
  .main-content img.alignleft {
    margin: 0.4em 1.6em 1.6em 0;
    display: inline;
    float: left;
    width: 3cm !important;
  }
  .main-content .wp-caption.alignright,
  .main-content img.alignright {
    margin: 0.4em 0 1.6em 1.6em;
    display: inline;
    float: right;
    width: 3cm !important;
  }
  .content-sidebar-wrap {
    padding-top: .8cm;
  }
  .content-sidebar-wrap .global-sidebar {
    display: none;
  }
  .global-footer {
    display: none;
  }
  .call-out {
    padding-top: 0;
  }
  .call-out .call-out__intro {
    padding-bottom: .25cm;
  }
  .call-out .call-out__items-wrap .call-out__items-wrap {
    padding-top: 0;
  }
  .call-out .call-out__items-wrap .call-out__item {
    width: 33.3%;
    vertical-align: top;
    display: inline-block;
    min-height: inherit;
    border: none;
  }
  .call-out .call-out__items-wrap .call-out__item--subtitle, .call-out .call-out__items-wrap .call-out__item--excerpt {
    position: static;
  }
  .nav-list__wrap {
    display: none;
    padding-bottom: 0 !important;
  }
  .nav-list__wrap .nav-list__group {
    padding: .25cm 0 !important;
  }
  .nav-list__wrap .nav-list__intro {
    padding-bottom: .25cm;
  }
  .nav-list__wrap .nav-list__item {
    display: inline-block;
    margin: 0 .25cm;
  }
  .query-wrapper-content > .module .content-list__sorting,
  .query-wrapper-content .pager-numbers {
    display: none;
  }
  .query-wrapper-content [data-list-style="grid"] .content-list__item {
    height: inherit !important;
    page-break-inside: avoid;
  }
  .single .splash {
    display: none;
  }
  .full-width-drawer .full-width-drawer__wrap {
    height: inherit;
    padding: .8cm !important;
  }
}

.content-sidebar-wrap:before, .sharing:before, .main-content__meta-header:before, .comment-list .comment-respond:before, .module:before, .content-list .fancy:before,
.content-list .fancy-select:before,
.content-list [class*="query-exposed-taxonomy"]:before, .content-sidebar-wrap:after, .sharing:after, .main-content__meta-header:after, .comment-list .comment-respond:after, .module:after, .content-list .fancy:after,
.content-list .fancy-select:after,
.content-list [class*="query-exposed-taxonomy"]:after,
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.content-sidebar-wrap:after, .sharing:after, .main-content__meta-header:after, .comment-list .comment-respond:after, .module:after, .content-list .fancy:after,
.content-list .fancy-select:after,
.content-list [class*="query-exposed-taxonomy"]:after,
.clearfix:after {
  clear: both;
}


/*Jobs Listings*/

p.jobs-opportunity-text {
    margin-top: -85px;
}

a.right-float{
    float: right;
    position: relative;
    top: -39px;
}

.job footer.main-content__meta-footer, .job .sharing {
    display: none;
}


.apply-button:hover{
	background-color: #3cb878 !important;
	border-color: #3cb878 !important;
	color: #fff !important;
	transition: all 0.3s ease !important;
}

.apply-button {
    padding: 10px 30px 10px;
    border: 3px solid #3cb878;
    max-width: 98px;
    font-family: "FuturaPTCond-Medium",futura-pt-condensed,Arial Narrow,sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 32px;
    transition: all 0.3s ease !important;
    color: #3cb878 !important;
}

.content-list__sorting {
    margin-bottom: 0px !important;
}

.border-list {
    border-left: none !important;
    border-right: none !important;
	border-bottom: none !important;
	border: 1px solid #959595;
	margin-top: 15px;
}

.container-buttons {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    text-align: center;
}

a .button-job-posting:hover{
	background-color: #3cb878 !important;
	border-color: #3cb878 !important;
	color: #fff !important;
	transition: all 0.3s ease !important;
}

.button-job-posting {
    padding: 10px 30px 10px;
    border: 3px solid #3cb878;
    max-width: 136px;
    font-family: "FuturaPTCond-Medium",futura-pt-condensed,Arial Narrow,sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 32px;
	transition: all 0.3s ease !important;
	color: #3cb878 !important;
	position: absolute;
    bottom: 15px;
}

.post-excerpt {
    margin-top: 36px;
}

.height-excerpt{
	height: auto !important;
	min-height: 180px;
}

#job-listings span.post-author, .post-date {
    font-size: 16px;
    color: #44464d;
    font-family: "FuturaPTCond-ExtraBold",futura-pt-condensed,Arial Narrow,sans-serif;
}


#job-listings a h2.post-title:hover{
	color: #3cb878 !important;
	transition: all 0.3s ease !important;
}


#job-listings h2.post-title {
    color: #191e28;
    font-size: 28px;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 9px;
    margin-bottom: 8px;
	transition: all 0.3s ease !important;
}

 #job-listings .job-listings-container {
    padding: 20px 20px;
}

#job-listings .job-listings-boxes {
    margin-left: -1px;
	margin-bottom: 15px;
	padding: 20px;
	padding-bottom: 80px;
}

#job-listings .border {
    border: 1px solid #959595;
    margin-left: -1px;
    margin-bottom: 40px;
}

@media (max-width: 1400px) {




}

@media (max-width: 1100px) {



}

@media (max-width: 991px) {
	
.height-excerpt{
	height: auto !important;
	min-height: 0px;
}	

#job-listings .border {

    border-left: none !important;
    border-bottom: none !important;
	border-right: none !important;
}	


}
@media (max-width: 450px) {

a.right-float{
    float: inherit;
    position: relative;
    top: -15px;
}
}
/********** Columns Grid
***********/

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

