@charset "UTF-8";
/*
* Made with Template by studio.bio
* Based on Bones by Eddie Machado.
* One love :)
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

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

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

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
@import 'https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i&display=swap';
@import "https://cdnjs.cloudflare.com/ajax/libs/lity/2.4.0/lity.min.css";
@import "https://cdn.jsdelivr.net/npm/@glidejs/glide@3.4.1/dist/css/glide.core.min.css";
@import "https://cdn.jsdelivr.net/npm/@glidejs/glide@3.4.1/dist/css/glide.theme.min.css";
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

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

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

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

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

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

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

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

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

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

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

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

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

Stylesheet: Variables

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

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/* CUSTOM COLORS ======================================================= */
/******************************************************************
Site Name: 
Author: 

Stylesheet: Typography

******************************************************************/
/*
"Web design is 95% typography" - Oliver Reichenstein

When that quote was made in 2006 it was before web fonts, auto-play video,
and animated pop-ups so even if it is 65 or 75% today that is still *most* 
of any web site's design. Understanding some of the basics of typography
(and web typography) will go a long way.

There are lots of web typographic systems out there however many are
overly complex and not intuitive. Thus, we've tried to set some good
defaults that aren't based on confounding mixins here but you may want
to explore web typography further:

https://www.smashingmagazine.com/2009/08/typographic-design-survey-best-practices-from-the-best-blogs/
https://www.smashingmagazine.com/2012/12/css-baseline-the-good-the-bad-and-the-ugly/
http://www.newnet-soft.com/blog/csstypography
http://typecast.com/blog/4-simple-steps-to-vertical-rhythm
https://github.com/StudioThick/megatype
https://sassline.com
http://matejlatin.github.io/Gutenberg/
https://zellwk.com/blog/responsive-typography/
https://github.com/zellwk/typi

Note that most of the typography styles are set in base.scss with
the html, body, and h1-h6 tags so adjust as needed. Set a good baseline
and consider your vertical rhythm.

*/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/* To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.

  Also, you don't have to include a separate name for 
  each font style...just use the same name and
  declare each style separately. See here:
  http://www.newnet-soft.com/blog/csstypography
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*********************
FONT STACKS
*********************/
/* Poppins	
light		300				semi-bold	600
light		300	Italic		semi-bold	600	Italic
regular		400				bold		700
regular		400	Italic		bold		700	Italic
medium		500				extra-bold  800
medium		500	Italic		extra-bold  800	Italic      */
/*
 Commented out since WP uses system fonts now but if you can't let go I won't be upset. 
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: none;
  -ms-hyphens: none;
      hyphens: none;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

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

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

Some cool simple examples here:
https://vanseodesign.com/css/custom-sass-functions/

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/************************
MORE SASS FUNCTIONS
*************************/
/* Example:
$length: 42em;
$int: strip-unit($length); // 42
*/
/**
 * Calculate rems based on a base unit.
 */
/* Example:
$list: a b, c d, e f;
$value: match($list, e); // returns f
$value: match($list, b); // returns a
$value: match($list, z); // returns false
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
.foo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.foo-parent {
  position: relative;
}

/*********************
TINTS/SHADES
https://css-tricks.com/snippets/sass/tint-shade-functions/
*********************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*--------------------------------------------------
Flexbox SASS mixins
The spec: http://www.w3.org/TR/css3-flexbox
https://gist.github.com/richardtorres314/26b18e12958ba418bb37993fdcbfc1bd

Checkout this Flexbox guide for more info:
https://css-tricks.com/snippets/css/a-guide-to-flexbox/

2018: probably can remove these with autoprefixer(?)
---------------------------------------------------*/
/*@include flexbox(); */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

Now with CSS Grid! (scroll down for active styles)

CSS Grid is ready. And you should use it. It's time.

Watch this if you are not convinced:
https://www.youtube.com/watch?v=7kVeCqQCxlk&ab_channel=CodingTech

More CSS Grid stuffs:
https://gridbyexample.com (definitely go through this)
https://css-tricks.com/snippets/css/complete-guide-grid/
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout/Basic_Concepts_of_Grid_Layout
http://labs.jensimmons.com

We're going to use really simple defaults for Plate so there's a few
bits you need to know:

fr = fractional unit

So here's a simple example setup using fr:

.grid {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto 1fr auto;
    header, footer {
        grid-column: span 2;
    }
}

For columns we have:

grid-template-columns: 2fr 1fr;

we get two tracks (columns), one 2/3 and the other 1/3 (of a total of 1).

No floats, no calc, no need to calculate the percentages at all.
CSS Grid does all the work. It even accounts for your grid gap (gutters)
and fills the remaining space. 

For rows we have this:

grid-template-rows: auto 1fr auto;

which gives us 3 rows with 2 content columns:

header
content | aside (sidebar)
footer

The 'auto' property assigns the row height to the height of the content.
Thus, the middle row which contains our content + sidebar is set to 1fr
which means it will fill the container as 1fr of an entire row is the
container width.

Not only that, the header and footer are anchored to the top and bottom,
respectively, no matter what the height of the content/sidebar row. This
has long been considered the 'Holy Grail' layout in CSS and we did it with
just a few lines of code.

We set grid-column: span 2; on the header and footer to span the full
width of the two columns. 

This is just a really simple default setup and the possibilities are
endless so check some examples:

https://rachelandrew.co.uk/archives/2016/04/12/flexible-sized-grids-with-auto-fill-and-minmax
https://gridbyexample.com/examples/
https://medium.com/samsung-internet-dev/common-responsive-layouts-with-css-grid-and-some-without-245a862f48df
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout/Realizing_common_layouts_using_CSS_Grid_Layout
https://www.smashingmagazine.com/2017/06/building-production-ready-css-grid-layout/

Soon we will be able to utilize subgrids to further layout items within the main
semantic layout sections. More on the subgrids property:

https://rachelandrew.co.uk/archives/2017/07/20/why-display-contents-is-not-css-grid-layout-subgrid/

Subgrids have been pushed to CSS Grid v2 so we can't use them yet but we 
can have nested grid layouts (e.g. grid within a grid).

There are many ways to set up your grid so there are a few options below.
Use one of those or develop your own - each project might need a different
setup. 

I've kept in the now unnecessary #content and #inner-content divs
for backwards compatibility but check out our Grate theme for a 
more pure CSS Grid interpretation: https://github.com/joshuaiz/grate

******************************************************************/
.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

@supports (grid-area: auto) {
  /**
  * Grid defaults. 
  * If you don't want to use CSS Grid, remove the .grid class 
  * from #container in header.php
  * 
  */
  .grid #content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background-color: ghostwhite;
  }
  .grid aside {
    background-color: honeydew;
    min-height: 80px;
  }
  .grid #footer {
    background-color: powderblue;
  }

  .grid-aside {
    grid-template-rows: auto 1fr auto;
  }

  @media only screen and (min-width: 768px) {
    .grid {
      display: grid;
      margin: 0 auto;
      width: 100%;
      grid-gap: 0 1em;
    }

    .grid-aside {
      grid-template-columns: repeat(12, minmax(0, 1fr));
      grid-template-rows: auto 1fr auto;
    }
    .grid-aside #header, .grid-aside #footer {
      grid-column: span 12;
    }
    .grid-aside #hero,
.grid-aside #events-upcoming,
.grid-aside #recent-articles,
.grid-aside #full-width-img-cta,
.grid-aside #full-width-img-testimonial {
      grid-column: 1/-1;
    }
    .grid-aside #text-with-title-and-image {
      grid-column: 2/-1;
    }
    .grid-aside #three-ctas,
.grid-aside #testimonial-slider,
.grid-aside #three-cols-details,
.grid-aside #three-cols-details-v2,
.grid-aside #video-image-ctas,
.grid-aside #tabs-and-links,
.grid-aside #featured-item-with-cards,
.grid-aside #page-content,
.grid-aside #blog-content {
      grid-column: 2/12;
    }
    .grid-aside #content {
      grid-column: 1/8;
    }
    .grid-aside #page-content main,
.grid-aside #blog-content main {
      grid-column: 1/7;
    }
    .grid-aside #blog-content main {
      max-width: 806px;
    }
    .grid-aside aside {
      grid-column: 8/-1;
    }

    .grid-full {
      grid-template-columns: repeat(12, minmax(0, 1fr));
      grid-template-rows: auto 1fr auto;
    }
    .grid-full #header, .grid-full #footer {
      grid-column: span 12;
    }
    .grid-full #three-ctas,
.grid-full #testimonial-slider,
.grid-full #three-cols-details,
.grid-full #three-cols-details-v2,
.grid-full #video-image-ctas,
.grid-full #tabs-and-links,
.grid-full #featured-item-with-cards,
.grid-full #page-content,
.grid-full #blog-content {
      grid-column: 2/12;
    }
    .grid-full #text-with-title-and-image {
      grid-column: 2/-1;
    }
    .grid-full #hero,
.grid-full #events-upcoming,
.grid-full #recent-articles,
.grid-full #full-width-img-cta,
.grid-full #full-width-img-testimonial,
.grid-full #content {
      grid-column: 1/-1;
    }
    .grid-full aside {
      display: none;
    }
  }
  @media only screen and (min-width: 1170px) {
    .grid-aside #content {
      grid-column: 2/8;
    }
    .grid-aside aside {
      grid-column: 8/12;
    }

    .grid-full #content {
      grid-column: 0/12;
    }
  }
  @media only screen and (min-width: 1600px) {
    .grid-aside #three-ctas {
      grid-column: 3/11;
    }
    .grid-aside #content {
      grid-column: 3/8;
    }
    .grid-aside aside {
      grid-column: 8/11;
    }

    .grid-full #content {
      grid-column: 0/12;
    }
  }
}
/**
 * 
 * Other CSS Grid examples
 * 
 * You can use these or come up with your own. Once CSS Grid clicks,
 * it's really easy and there's no limit to what you can do!
 * 
 * The main takeaway here is that you don't need a predefined system.
 * Just define a grid, add your columns and rows, and go.
 * 
 * Uncomment to use.
 * 
 * */
/* Ye Olde Bones Grid
* Hear Ye, hear ye!
* This is the old style grid, now commented out
* You *should* make the move to css grid now but
* if you need this or can't let go, it's still here
* so uncomment to use (and comment the cssgrid out).
* Just know that Rachel Andrew is watching.
*/
/**
* Gutenberg Styles.
*
* Now enqueued in a separate function in functions.php to
* keep styles out of the main stylesheet. Alternatively
* you can comment out the Gutenberg styles enqueue and
* uncomment this below to have a single stylesheet.
* You do you.
*/
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

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

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

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

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

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

.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

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

Stylesheet: Button Styles

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

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

See here on placeholder selectors and why you should
use @extend instead of @include:
http://thesassway.com/intermediate/understanding-placeholder-selectors

Also, don't use cursor: pointer; for buttons as they already should 
signify that they are clickable:

https://medium.com/simple-human/buttons-shouldnt-have-a-hand-cursor-b11e99ca374b

*********************/
.blue-button, .button {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5em;
  padding: 0.5em 1em;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
}
.blue-button:active, .button:active {
  top: 1px;
}

.blue-button {
  background: #0056ac;
  color: #fff;
}
.blue-button:hover, .blue-button:focus {
  color: #fff;
}

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

Stylesheet: Form Styles

Here are a few defaults for forms and stuffs.

******************************************************************/
/*********************
INPUTS
*********************/
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
select,
textarea,
.field {
  display: block;
}
input[type=text][disabled], input[type=text].is-disabled,
input[type=password][disabled],
input[type=password].is-disabled,
input[type=datetime][disabled],
input[type=datetime].is-disabled,
input[type=datetime-local][disabled],
input[type=datetime-local].is-disabled,
input[type=date][disabled],
input[type=date].is-disabled,
input[type=month][disabled],
input[type=month].is-disabled,
input[type=time][disabled],
input[type=time].is-disabled,
input[type=week][disabled],
input[type=week].is-disabled,
input[type=number][disabled],
input[type=number].is-disabled,
input[type=email][disabled],
input[type=email].is-disabled,
input[type=url][disabled],
input[type=url].is-disabled,
input[type=search][disabled],
input[type=search].is-disabled,
input[type=tel][disabled],
input[type=tel].is-disabled,
input[type=color][disabled],
input[type=color].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
input[type=password] {
  letter-spacing: 0.3em;
}

textarea {
  max-width: 100%;
  width: 100%;
}

fieldset {
  border: 1px solid #ccc;
}
fieldset label {
  font-weight: 600;
}
fieldset p {
  margin-bottom: 0;
}

legend {
  padding: 0 0.5em;
}

.radio-buttons {
  margin-top: 0;
}
.radio-buttons li {
  margin-left: 2px;
  list-style-type: none;
}
.radio-buttons label {
  font-weight: normal;
}

/*********************
BASE STYLESHEET
These are the base styles and it's loaded on every device. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Stylesheet

As the name implies, this is the base stylesheet. This will be
loaded by all devices and viewports so keep it as light as possible.

If you are using progressive enhancement, load styles that will be
only seen on tablets or desktops in the stylesheets targeted for
those viewpoints.

******************************************************************/
/*********************
GLOBAL STYLES
Use this section for
site-wide stuffs.
*********************/
html {
  font-size: 1em;
}

body {
  color: #333333;
  font-size: 100%;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.anchor-target:before {
  content: "";
  display: block;
  padding-top: 90px;
  /* header height + empty space */
  margin-top: -50px;
  /* header height to degrees padding’s space */
}

/*********************
LAYOUT & GRID STYLES
*********************/
/*********************
LINK STYLES
*********************/
a, a:visited {
  text-decoration: none;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
a:hover, a:focus, a:visited:hover, a:visited:focus {
  text-decoration: underline;
}
a:link, a:visited:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/******************************************************************
HEADING STYLES
******************************************************************/
/* 
While there are several frameworks for Sass web typography and
baselines like Sassline, Megatype and Gutenberg (not the new WP editor), 
those all seemed overly complex. What I wanted was simple defaults that 
looked good out of the box without a lot of calculations and segmented mixins.

After searching far and wide, I came across this:
http://type-scale.com which we used to get our base sizes.

You should use only one <h1> element per page (generally for the page title). 
Then, use <h2> for sub-headings and h3-h6 if you need to structure your text
further. Using correct headings helps with readability, SEO, and accessibility.
*/
/* Heading defaults */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 1.333em 0 0.5em;
  color: #303030;
  font-weight: 500;
  line-height: 1.2;
  text-rendering: optimizelegibility;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* 
  Removing text decoration from all headline links.
  If you want it, then delete this. Do it your way.
  */
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
  text-decoration: none;
}

h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.319em;
  font-size: 3.157em;
}

h2, .h2 {
  margin-top: 0.88em;
  font-size: 2.369em;
}

h3, .h3 {
  font-size: 1.777em;
}

h4, .h4 {
  font-size: 1.333em;
}

h5, .h5 {
  font-size: 1em;
}

h6, .h6 {
  text-transform: uppercase;
  letter-spacing: 4.333px;
}

/*********************
HEADER STYLES
*********************/
.header {
  background: #efefef;
}

#inner-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#site-title {
  margin: 0 0.5em 0 0;
  font-size: 2em;
  line-height: inherit;
}
#site-title a {
  color: #303030;
}

#bloginfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#logo {
  margin-right: 8px;
}
#logo img {
  width: 195px;
  height: 63px;
}
@media (min-width: 1030px) {
  #logo img {
    width: 270px;
    height: 87px;
  }
}

/*********************
LIST STYLES
*********************/
ul, ol {
  -webkit-padding-start: 20px;
}

.list-square {
  margin-bottom: 1.5em;
  list-style-position: outside;
  list-style-type: square;
}

.nostyle {
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
}

.related-posts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-numbers {
  margin: 1em 0;
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-numbers li {
  margin-right: 1em;
}

/*********************
NAVIGATION STYLES
*********************/
/* 
Where did the nav menu go?
Navigation styles for mobile are now in 767down.scss
if you need them.

We almost always use the Responsive Menu plugin:
https://wordpress.org/plugins/responsive-menu/ for mobile
menus but those selectors are there if you want to use the
default menu.

For your main navigation, styles are in 768up.scss.
*/
/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/*
As you add pages, add your own body classes below if you 
need page-specific styles.

It's good practice to use .page-yourpage {} syntax here so 
that you don't conflict with other classes. That's what
the cool kids do.

*/
.error404 .search-outer {
  padding: 1.5em 0;
}
.error404 .search-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.error404 input[type=search] {
  margin: 0 1em 0 0;
  height: 40px;
  min-width: 250px;
}
.error404 .search-submit {
  width: 100px;
}

.page-blog .entry-content .alignfull, .page-blog .entry-content .alignwide {
  margin: 0;
  max-width: 100%;
}

/**
 * put all your custom page classes here  
 * e.g. .page-yourpage {}
 */
/*********************
POSTS & CONTENT STYLES
*********************/
/* post meta */
.byline-wrap {
  margin-bottom: 1.5em;
}
/* entry content */
.entry-content {
  /*
  image alignment on a screen this size may be
  a bit difficult. It's set to start aligning
  and floating images at the next breakpoint,
  but it's up to you. Feel free to change it up.
  */
}
.entry-content table {
  margin-bottom: 1.5em;
  width: 100%;
  border: 1px solid #ccc;
}
.entry-content tr {
  border-bottom: 1px solid #ccc;
}
.entry-content tr:nth-child(even) {
  background-color: #dedede;
}
.entry-content td {
  padding: 7px;
  border-right: 1px solid #ccc;
}
.entry-content td:last-child {
  border-right: 0;
}
.entry-content th {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background-color: #dedede;
}
.entry-content th:last-child {
  border-right: 0;
}
/* end .entry-content */
.wp-caption {
  /* images inside wp-caption */
}
/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
/* default WP image classes */
/******************************************************************
SCREEN READER STYLES
******************************************************************/
/* Text meant only for screen readers. */
.screen-reader-text {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  white-space: nowrap;
}

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

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

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments-title {
  /* number of comments span */
}
.commentlist {
  margin: 0;
  list-style-type: none;
}

.comment {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px dotted #ccc;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */
}
.comment .comment-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.comment .vcard .avatar {
  margin-right: 1rem;
}
.comment .children {
  /* variations */
  /* change number for different depth */
}
/* comment meta */
/* comment content */
/* end .commentlist .comment_content */
/* comment reply link */
/* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  margin-right: 6px;
}

/**********************
COMMENT FORM STYLES
***********************/
/* comment submit button */
/* comment form title */
/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
/* no comments */
/*********************
SIDEBARS & ASIDES
*********************/
.widget ul li {
  /* deep nesting */
}
/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
}

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: 481px and Up Stylesheet

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

  Not sure if people use this breakpoint much anymore. We don't.
  I can't remember the last time I used this stylesheet but keeping
  it in for now.

  ******************************************************************/
  /*********************
  NAVIGATION STYLES
  *********************/
  .menu {
    /* end .menu ul */
  }
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .menu ul li {
    /*
    plan your menus and drop-downs wisely.
    */
  }
  .menu ul li a {
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  /* end .menu */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
    margin-top: 11px;
  }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
    margin-top: 11px;
  }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: table;
    clear: both;
    margin-top: 11px;
  }
  .entry-content .wp-block-media-text.alignfull {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /* end .entry-content */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */
}
/*********************
BELOW TABLET
This is for everything that's below an iPad including mobile
phones. This way we can keep mobile styles separate and not
compete with the base styles.
*********************/
@media only screen and (max-width: 767px) {
  /******************************************************************
  Site Name: 
  Author:

  Stylesheet: Below Tablet

  This stylesheet will show on devices smaller than an iPad or tablet.
  Use this to add styles that will *only* show on mobile phones.

  I find it easier to do it this way than to have to override base styles.

  ******************************************************************/
  .wrap {
    padding: 1em;
  }

  /*********************
  NAVIGATION STYLES
  *********************/
  .nav {
    margin: 0;
    padding: 0;
    border-bottom: 0;
    list-style-type: none;
    /* end .menu li */
    /* highlight current page */
    /* end current highlighters */
  }
  .nav li {
    /* 
    Are you really going to use drop-down menus for mobile?
    Probably not. We almost always use the Responsive Menu
    plugin: https://wordpress.org/plugins/responsive-menu/
    */
  }
  .nav li a {
    display: block;
    padding: 0.2em;
    text-decoration: none;
  }
  .nav li ul.sub-menu li a,
.nav li ul.children li a {
    padding-left: 30px;
  }
  /* end .nav */
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Tablet & Small Desktop Stylesheet

  This stylesheet will be used for tablets and larger devices
  like desktops. CSS Grid starts working its magic here so you
  can start to have fun with your layout(s).

  ******************************************************************/
  /*********************
  GLOBAL STYLES
  *********************/
  .entry-content .alignfull {
    margin-left: calc( -100vw / 2 + 100% / 2 );
    margin-right: calc( -100vw / 2 + 100% / 2 );
    max-width: 100vw;
  }
  .entry-content .alignwide {
    margin-right: calc(25% - 25vw);
    margin-left: calc(25% - 25vw);
    max-width: 1000%;
    width: auto;
  }
  .entry-content .alignwide img,
.entry-content .alignfull img {
    display: block;
    margin: 0 auto;
  }

  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap {
    padding: 1em 1.5em;
  }

  /*********************
  HEADER STYLES
  *********************/
  /*********************
  NAVIGATION STYLES
  *********************/
  .header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .nav {
    margin: 0;
    padding: 0;
    border: 0;
    list-style-type: none;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .nav li {
    float: left;
    list-style: none;
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */
  }
  .nav li a {
    display: block;
    border-bottom: 0;
    padding: 0 0.5em;
    text-decoration: none;
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  .nav li a:hover, .nav li a:focus {
    text-decoration: underline;
  }
  .nav li ul.sub-menu,
.nav li ul.children {
    position: absolute;
    z-index: 8999;
    visibility: hidden;
    /* highlight sub-menu current page */
  }
  .nav li ul.sub-menu li,
.nav li ul.children li {
    /*
    if you need to go deeper, go nuts
    just remember deeper menus suck
    for usability. k, bai.
    */
  }
  .nav li ul.sub-menu li:last-child a,
.nav li ul.children li:last-child a {
    border-bottom: 0;
  }
  .nav li:hover > ul {
    top: auto;
    visibility: visible;
  }
  /* end .nav */
  /********************
  WORDPRESS BODY CLASSES
  style a page via class
  ********************/
  /*
  We like having these classes for use in iPad and larger devices
  so we've copied them here.
  */
  .single-full #main {
    max-width: 640px;
    float: none;
    margin: 0 auto;
  }

  /*********************
  SIDEBARS & ASIDES
  *********************/
  .widget ul li {
    /* deep nesting */
  }
  /*!
   *
   * We rarely use these widget classes but they
   * do come in handy sometimes. Know your widgets.
   *
   */
  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  you'll probably need to do quite a bit
  of overriding here if you styled them for
  mobile. Make sure to double check these!
  */
  .footer-links ul li {
    /*
    be careful with the depth of your menus.
    it's very rare to have multi-depth menus in
    the footer.
    */
  }
  /* end .footer-links */
}
@media only screen and (max-width: 899px) {
  /******************************************************************
  Site Name: 
  Author:

  Stylesheet: Below Tweener

  This stylesheet will show on devices smaller than large tablets but
  below desktops.

  Use this for tweener device sizes. We don't use this stylesheet
  often but on occasion it comes in handy.

  ******************************************************************/
}
@media only screen and (max-width: 1029px) {
  /******************************************************************
  Site Name: 
  Author:

  Stylesheet: Smaller Desktops + Tablets

  This stylesheet affects desktops and some tablets but often I find
  that 1029px and below is a good breakpoint for showing a mobile 
  hamburger menu so you can add styles for that here.

  I find it easier to do it this way than to have to override base styles.

  ******************************************************************/
}
/*********************
TWEENER
This targets some trickier 'tweener' devices like large
tablets. You probably won't need to add too much to this stylesheet.
If you're not using it, delete it.
*********************/
@media only screen and (min-width: 900px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Tweener Stylsheet

  This is for some trickier in-between 'tweener' sizes like larger 
  tablets.

  ******************************************************************/
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Desktop Stylsheet

  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.

  At this breakpoint you can start setting things like max-width for
  your content. Or go full-width. Like Nas said: "The world is yours!"

  ******************************************************************/
  #inner-header, #inner-footer {
    max-width: 1200px;
    margin: 0 auto;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: Larger Laptop + Desktop

  You can add some advanced styles for larger devices here if you like. 

  ******************************************************************/
}
/*********************
HIMALAYA XL 9000 SIZE
This is for super ginormous monitors like your one friend has.
*********************/
@media only screen and (min-width: 1600px) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: Super Large Monitor Stylesheet

  You can add some advanced styles here for extra large monitors.

  ******************************************************************/
  #inner-header, #inner-footer {
    max-width: 1272px;
    margin: 0 auto;
  }
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Print Stylesheet

  This is the print stylesheet. You probably don't need to edit much
  in here but if you want to, do your thang.

  Adapted from here:
  https://www.noupe.com/design/css-perfect-print-stylesheet-98272.html

  Updated 2018-05-25

  ******************************************************************/
}
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    -ms-filter: none !important;
    -webkit-filter: none !important;
            filter: none !important;
  }

  /* Setting content width, unsetting floats and margins */
  /* Attention: the classes and IDs vary from theme to theme. Thus, set own classes here */
  #content {
    width: 100%;
    margin: 0;
    float: none;
  }

  /** Setting margins */
  @page {
    margin: 2cm;
  }
  /* Or: */
  @page :left {
    margin: 1cm;
  }
  @page :right {
    margin: 1cm;
  }
  /* The first page of a print can be manipulated as well */
  @page :first {
    margin: 1cm 2cm;
  }
  /* Set font to 16px/13pt, set background to white and font to black.*/
  /* This saves ink */
  body {
    font-size: 13pt;
    line-height: 1.3;
    background: #fff !important;
    color: #000;
  }

  h1 {
    font-size: 24pt;
  }

  h2, h3, h4 {
    font-size: 14pt;
    margin-top: 25px;
  }

  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  /* Defining all page breaks */
  a {
    page-break-inside: avoid;
  }

  blockquote {
    page-break-inside: avoid;
  }

  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }

  img {
    page-break-inside: avoid;
    page-break-after: avoid;
  }

  table, pre {
    page-break-inside: avoid;
  }

  ul, ol, dl {
    page-break-before: avoid;
  }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  /* Displaying link color and link behaviour */
  a:link, a:visited, a {
    background: transparent;
    color: #0088cc;
    font-weight: bold;
    text-decoration: underline;
    text-align: left;
  }

  a[href^=http]:after {
    content: " < " attr(href) "> ";
  }

  article a[href^="#"]:after {
    content: "";
  }

  a:not(:local-link):after {
    content: " < " attr(href) "> ";
  }

  /**
  * Making intergated videos disappear, and removing the iframes' whitespace to zero. 
  */
  .entry-content iframe, ins {
    display: none;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    line-height: 0pt !important;
    white-space: nowrap;
  }

  .embed-youtube, .embed-responsive, .embed-container {
    display: none;
    position: absolute;
    height: 0;
    overflow: hidden;
  }

  /* Hiding unnecessary elements for the print */
  #header-widgets, nav, aside,
.sidebar, .content-ads, .make-comment, .author-bio,
.heading, .related-posts, #decomments-form-add-comment,
#breadcrumbs, #footer, .post-byline, .byline, .meta-single,
.site-title img, .post-tags, .readability, .sidebar, .page-navigation, .wp-prev-next,
.respond-form {
    display: none;
  }
}
/* LITY - source: https://sorgalla.com/lity/ */
/* glideJS - source: https://glidejs.com/docs/setup/ */
/* CUSTOM STYLES ======================================================================================== */
/* WHAT SIZE IS A DESKTOP??      1030px and up */
/*	min-width: 481px
	min-width: 768px
	min-width: 900px
	min-width: 1030px
	min-width: 1240px
	min-width: 1600px	*/
/* Poppins
light		300						semi-bold	600
light		300		Italic			semi-bold	600		Italic
regular		400						bold		700
regular		400		Italic			bold		700		Italic
medium		500						extra-bold	800
medium		500		Italic			extra-bold	800		Italic			*/
/*
 * Font Awesome Pro 5.11.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.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.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: "";
}

.fa-abacus:before {
  content: "";
}

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

.fa-accusoft:before {
  content: "";
}

.fa-acorn:before {
  content: "";
}

.fa-acquisitions-incorporated:before {
  content: "";
}

.fa-ad:before {
  content: "";
}

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

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

.fa-adjust:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-adobe:before {
  content: "";
}

.fa-adversal:before {
  content: "";
}

.fa-affiliatetheme:before {
  content: "";
}

.fa-air-freshener:before {
  content: "";
}

.fa-airbnb:before {
  content: "";
}

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

.fa-alarm-exclamation:before {
  content: "";
}

.fa-alarm-plus:before {
  content: "";
}

.fa-alarm-snooze:before {
  content: "";
}

.fa-album:before {
  content: "";
}

.fa-album-collection:before {
  content: "";
}

.fa-algolia:before {
  content: "";
}

.fa-alicorn:before {
  content: "";
}

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

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

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

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

.fa-align-slash:before {
  content: "";
}

.fa-alipay:before {
  content: "";
}

.fa-allergies:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

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

.fa-ambulance:before {
  content: "";
}

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

.fa-amilia:before {
  content: "";
}

.fa-amp-guitar:before {
  content: "";
}

.fa-analytics:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-angel:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

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

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

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

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

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

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

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

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

.fa-angry:before {
  content: "";
}

.fa-angrycreative:before {
  content: "";
}

.fa-angular:before {
  content: "";
}

.fa-ankh:before {
  content: "";
}

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

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

.fa-apper:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-apple-alt:before {
  content: "";
}

.fa-apple-crate:before {
  content: "";
}

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

.fa-archive:before {
  content: "";
}

.fa-archway:before {
  content: "";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-arrows:before {
  content: "";
}

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

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

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

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

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

.fa-artstation:before {
  content: "";
}

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

.fa-asterisk:before {
  content: "";
}

.fa-asymmetrik:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-atlas:before {
  content: "";
}

.fa-atlassian:before {
  content: "";
}

.fa-atom:before {
  content: "";
}

.fa-atom-alt:before {
  content: "";
}

.fa-audible:before {
  content: "";
}

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

.fa-autoprefixer:before {
  content: "";
}

.fa-avianex:before {
  content: "";
}

.fa-aviato:before {
  content: "";
}

.fa-award:before {
  content: "";
}

.fa-aws:before {
  content: "";
}

.fa-axe:before {
  content: "";
}

.fa-axe-battle:before {
  content: "";
}

.fa-baby:before {
  content: "";
}

.fa-baby-carriage:before {
  content: "";
}

.fa-backpack:before {
  content: "";
}

.fa-backspace:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-bacon:before {
  content: "";
}

.fa-badge:before {
  content: "";
}

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

.fa-badge-dollar:before {
  content: "";
}

.fa-badge-percent:before {
  content: "";
}

.fa-badge-sheriff:before {
  content: "";
}

.fa-badger-honey:before {
  content: "";
}

.fa-bags-shopping:before {
  content: "";
}

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

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

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

.fa-ball-pile:before {
  content: "";
}

.fa-ballot:before {
  content: "";
}

.fa-ballot-check:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

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

.fa-bandcamp:before {
  content: "";
}

.fa-banjo:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

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

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

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

.fa-bars:before {
  content: "";
}

.fa-baseball:before {
  content: "";
}

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

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

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

.fa-bat:before {
  content: "";
}

.fa-bath:before {
  content: "";
}

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

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

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

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

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

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

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

.fa-battle-net:before {
  content: "";
}

.fa-bed:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

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

.fa-bell:before {
  content: "";
}

.fa-bell-exclamation:before {
  content: "";
}

.fa-bell-plus:before {
  content: "";
}

.fa-bell-school:before {
  content: "";
}

.fa-bell-school-slash:before {
  content: "";
}

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

.fa-bells:before {
  content: "";
}

.fa-betamax:before {
  content: "";
}

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

.fa-bible:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-biking:before {
  content: "";
}

.fa-biking-mountain:before {
  content: "";
}

.fa-bimobject:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-biohazard:before {
  content: "";
}

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

.fa-bitbucket:before {
  content: "";
}

.fa-bitcoin:before {
  content: "";
}

.fa-bity:before {
  content: "";
}

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

.fa-blackberry:before {
  content: "";
}

.fa-blanket:before {
  content: "";
}

.fa-blender:before {
  content: "";
}

.fa-blender-phone:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-blog:before {
  content: "";
}

.fa-blogger:before {
  content: "";
}

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

.fa-bluetooth:before {
  content: "";
}

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

.fa-bold:before {
  content: "";
}

.fa-bolt:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-bone:before {
  content: "";
}

.fa-bone-break:before {
  content: "";
}

.fa-bong:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-book-alt:before {
  content: "";
}

.fa-book-dead:before {
  content: "";
}

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

.fa-book-medical:before {
  content: "";
}

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

.fa-book-reader:before {
  content: "";
}

.fa-book-spells:before {
  content: "";
}

.fa-book-user:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-books:before {
  content: "";
}

.fa-books-medical:before {
  content: "";
}

.fa-boombox:before {
  content: "";
}

.fa-boot:before {
  content: "";
}

.fa-booth-curtain:before {
  content: "";
}

.fa-bootstrap:before {
  content: "";
}

.fa-border-all:before {
  content: "";
}

.fa-border-bottom:before {
  content: "";
}

.fa-border-center-h:before {
  content: "";
}

.fa-border-center-v:before {
  content: "";
}

.fa-border-inner:before {
  content: "";
}

.fa-border-left:before {
  content: "";
}

.fa-border-none:before {
  content: "";
}

.fa-border-outer:before {
  content: "";
}

.fa-border-right:before {
  content: "";
}

.fa-border-style:before {
  content: "";
}

.fa-border-style-alt:before {
  content: "";
}

.fa-border-top:before {
  content: "";
}

.fa-bow-arrow:before {
  content: "";
}

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

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

.fa-box:before {
  content: "";
}

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

.fa-box-ballot:before {
  content: "";
}

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

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

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

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

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

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

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

.fa-boxes:before {
  content: "";
}

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

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

.fa-brackets:before {
  content: "";
}

.fa-brackets-curly:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-brain:before {
  content: "";
}

.fa-bread-loaf:before {
  content: "";
}

.fa-bread-slice:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

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

.fa-bring-forward:before {
  content: "";
}

.fa-bring-front:before {
  content: "";
}

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

.fa-broom:before {
  content: "";
}

.fa-browser:before {
  content: "";
}

.fa-brush:before {
  content: "";
}

.fa-btc:before {
  content: "";
}

.fa-buffer:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-bullseye-arrow:before {
  content: "";
}

.fa-bullseye-pointer:before {
  content: "";
}

.fa-burger-soda:before {
  content: "";
}

.fa-burn:before {
  content: "";
}

.fa-buromobelexperte:before {
  content: "";
}

.fa-burrito:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

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

.fa-bus-school:before {
  content: "";
}

.fa-business-time:before {
  content: "";
}

.fa-buy-n-large:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-cabinet-filing:before {
  content: "";
}

.fa-cactus:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-calculator-alt:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

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

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

.fa-calendar-day:before {
  content: "";
}

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

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

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

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

.fa-calendar-star:before {
  content: "";
}

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

.fa-calendar-week:before {
  content: "";
}

.fa-camcorder:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

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

.fa-camera-movie:before {
  content: "";
}

.fa-camera-polaroid:before {
  content: "";
}

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

.fa-campfire:before {
  content: "";
}

.fa-campground:before {
  content: "";
}

.fa-canadian-maple-leaf:before {
  content: "";
}

.fa-candle-holder:before {
  content: "";
}

.fa-candy-cane:before {
  content: "";
}

.fa-candy-corn:before {
  content: "";
}

.fa-cannabis:before {
  content: "";
}

.fa-capsules:before {
  content: "";
}

.fa-car:before {
  content: "";
}

.fa-car-alt:before {
  content: "";
}

.fa-car-battery:before {
  content: "";
}

.fa-car-building:before {
  content: "";
}

.fa-car-bump:before {
  content: "";
}

.fa-car-bus:before {
  content: "";
}

.fa-car-crash:before {
  content: "";
}

.fa-car-garage:before {
  content: "";
}

.fa-car-mechanic:before {
  content: "";
}

.fa-car-side:before {
  content: "";
}

.fa-car-tilt:before {
  content: "";
}

.fa-car-wash:before {
  content: "";
}

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

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

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

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

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

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

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

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

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

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

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

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

.fa-carrot:before {
  content: "";
}

.fa-cars:before {
  content: "";
}

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

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

.fa-cash-register:before {
  content: "";
}

.fa-cassette-tape:before {
  content: "";
}

.fa-cat:before {
  content: "";
}

.fa-cauldron:before {
  content: "";
}

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

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

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

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

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

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

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

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

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

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

.fa-cctv:before {
  content: "";
}

.fa-centercode:before {
  content: "";
}

.fa-centos:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-chair:before {
  content: "";
}

.fa-chair-office:before {
  content: "";
}

.fa-chalkboard:before {
  content: "";
}

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

.fa-charging-station:before {
  content: "";
}

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

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

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

.fa-chart-line-down:before {
  content: "";
}

.fa-chart-network:before {
  content: "";
}

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

.fa-chart-pie-alt:before {
  content: "";
}

.fa-chart-scatter:before {
  content: "";
}

.fa-check:before {
  content: "";
}

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

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

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

.fa-cheese:before {
  content: "";
}

.fa-cheese-swiss:before {
  content: "";
}

.fa-cheeseburger:before {
  content: "";
}

.fa-chess:before {
  content: "";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-child:before {
  content: "";
}

.fa-chimney:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-chromecast:before {
  content: "";
}

.fa-church:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

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

.fa-city:before {
  content: "";
}

.fa-clarinet:before {
  content: "";
}

.fa-claw-marks:before {
  content: "";
}

.fa-clinic-medical:before {
  content: "";
}

.fa-clipboard:before {
  content: "";
}

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

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

.fa-clipboard-list-check:before {
  content: "";
}

.fa-clipboard-prescription:before {
  content: "";
}

.fa-clipboard-user:before {
  content: "";
}

.fa-clock:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

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

.fa-cloud:before {
  content: "";
}

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

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

.fa-cloud-drizzle:before {
  content: "";
}

.fa-cloud-hail:before {
  content: "";
}

.fa-cloud-hail-mixed:before {
  content: "";
}

.fa-cloud-meatball:before {
  content: "";
}

.fa-cloud-moon:before {
  content: "";
}

.fa-cloud-moon-rain:before {
  content: "";
}

.fa-cloud-music:before {
  content: "";
}

.fa-cloud-rain:before {
  content: "";
}

.fa-cloud-rainbow:before {
  content: "";
}

.fa-cloud-showers:before {
  content: "";
}

.fa-cloud-showers-heavy:before {
  content: "";
}

.fa-cloud-sleet:before {
  content: "";
}

.fa-cloud-snow:before {
  content: "";
}

.fa-cloud-sun:before {
  content: "";
}

.fa-cloud-sun-rain:before {
  content: "";
}

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

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

.fa-clouds:before {
  content: "";
}

.fa-clouds-moon:before {
  content: "";
}

.fa-clouds-sun:before {
  content: "";
}

.fa-cloudscale:before {
  content: "";
}

.fa-cloudsmith:before {
  content: "";
}

.fa-cloudversify:before {
  content: "";
}

.fa-club:before {
  content: "";
}

.fa-cocktail:before {
  content: "";
}

.fa-code:before {
  content: "";
}

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

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

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

.fa-codepen:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-coffee-togo:before {
  content: "";
}

.fa-coffin:before {
  content: "";
}

.fa-cog:before {
  content: "";
}

.fa-cogs:before {
  content: "";
}

.fa-coin:before {
  content: "";
}

.fa-coins:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

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

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

.fa-comment-alt-dollar:before {
  content: "";
}

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

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

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

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

.fa-comment-alt-medical:before {
  content: "";
}

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

.fa-comment-alt-music:before {
  content: "";
}

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

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

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

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

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

.fa-comment-dollar:before {
  content: "";
}

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

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

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

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

.fa-comment-medical:before {
  content: "";
}

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

.fa-comment-music:before {
  content: "";
}

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

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

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

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

.fa-comments:before {
  content: "";
}

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

.fa-comments-alt-dollar:before {
  content: "";
}

.fa-comments-dollar:before {
  content: "";
}

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

.fa-compass:before {
  content: "";
}

.fa-compass-slash:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

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

.fa-compress-arrows-alt:before {
  content: "";
}

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

.fa-computer-classic:before {
  content: "";
}

.fa-computer-speaker:before {
  content: "";
}

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

.fa-confluence:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-construction:before {
  content: "";
}

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

.fa-contao:before {
  content: "";
}

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

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

.fa-cookie:before {
  content: "";
}

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

.fa-copy:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-corn:before {
  content: "";
}

.fa-cotton-bureau:before {
  content: "";
}

.fa-couch:before {
  content: "";
}

.fa-cow:before {
  content: "";
}

.fa-cowbell:before {
  content: "";
}

.fa-cowbell-more:before {
  content: "";
}

.fa-cpanel:before {
  content: "";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-cricket:before {
  content: "";
}

.fa-critical-role:before {
  content: "";
}

.fa-croissant:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

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

.fa-cross:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-crow:before {
  content: "";
}

.fa-crown:before {
  content: "";
}

.fa-crutch:before {
  content: "";
}

.fa-crutches:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

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

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-curling:before {
  content: "";
}

.fa-cut:before {
  content: "";
}

.fa-cuttlefish:before {
  content: "";
}

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

.fa-d-and-d-beyond:before {
  content: "";
}

.fa-dagger:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-deaf:before {
  content: "";
}

.fa-debug:before {
  content: "";
}

.fa-deer:before {
  content: "";
}

.fa-deer-rudolph:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-democrat:before {
  content: "";
}

.fa-deploydog:before {
  content: "";
}

.fa-deskpro:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

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

.fa-dev:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-dewpoint:before {
  content: "";
}

.fa-dharmachakra:before {
  content: "";
}

.fa-dhl:before {
  content: "";
}

.fa-diagnoses:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-diaspora:before {
  content: "";
}

.fa-dice:before {
  content: "";
}

.fa-dice-d10:before {
  content: "";
}

.fa-dice-d12:before {
  content: "";
}

.fa-dice-d20:before {
  content: "";
}

.fa-dice-d4:before {
  content: "";
}

.fa-dice-d6:before {
  content: "";
}

.fa-dice-d8:before {
  content: "";
}

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

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

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

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

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

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

.fa-digg:before {
  content: "";
}

.fa-digging:before {
  content: "";
}

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

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

.fa-diploma:before {
  content: "";
}

.fa-directions:before {
  content: "";
}

.fa-disc-drive:before {
  content: "";
}

.fa-discord:before {
  content: "";
}

.fa-discourse:before {
  content: "";
}

.fa-disease:before {
  content: "";
}

.fa-divide:before {
  content: "";
}

.fa-dizzy:before {
  content: "";
}

.fa-dna:before {
  content: "";
}

.fa-do-not-enter:before {
  content: "";
}

.fa-dochub:before {
  content: "";
}

.fa-docker:before {
  content: "";
}

.fa-dog:before {
  content: "";
}

.fa-dog-leashed:before {
  content: "";
}

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

.fa-dolly:before {
  content: "";
}

.fa-dolly-empty:before {
  content: "";
}

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

.fa-dolly-flatbed-alt:before {
  content: "";
}

.fa-dolly-flatbed-empty:before {
  content: "";
}

.fa-donate:before {
  content: "";
}

.fa-door-closed:before {
  content: "";
}

.fa-door-open:before {
  content: "";
}

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

.fa-dove:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-draft2digital:before {
  content: "";
}

.fa-drafting-compass:before {
  content: "";
}

.fa-dragon:before {
  content: "";
}

.fa-draw-circle:before {
  content: "";
}

.fa-draw-polygon:before {
  content: "";
}

.fa-draw-square:before {
  content: "";
}

.fa-dreidel:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

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

.fa-drone:before {
  content: "";
}

.fa-drone-alt:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-drum:before {
  content: "";
}

.fa-drum-steelpan:before {
  content: "";
}

.fa-drumstick:before {
  content: "";
}

.fa-drumstick-bite:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-dryer:before {
  content: "";
}

.fa-dryer-alt:before {
  content: "";
}

.fa-duck:before {
  content: "";
}

.fa-dumbbell:before {
  content: "";
}

.fa-dumpster:before {
  content: "";
}

.fa-dumpster-fire:before {
  content: "";
}

.fa-dungeon:before {
  content: "";
}

.fa-dyalog:before {
  content: "";
}

.fa-ear:before {
  content: "";
}

.fa-ear-muffs:before {
  content: "";
}

.fa-earlybirds:before {
  content: "";
}

.fa-ebay:before {
  content: "";
}

.fa-eclipse:before {
  content: "";
}

.fa-eclipse-alt:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-edit:before {
  content: "";
}

.fa-egg:before {
  content: "";
}

.fa-egg-fried:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-elementor:before {
  content: "";
}

.fa-elephant:before {
  content: "";
}

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

.fa-ellipsis-h-alt:before {
  content: "";
}

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

.fa-ellipsis-v-alt:before {
  content: "";
}

.fa-ello:before {
  content: "";
}

.fa-ember:before {
  content: "";
}

.fa-empire:before {
  content: "";
}

.fa-empty-set:before {
  content: "";
}

.fa-engine-warning:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

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

.fa-envelope-open-dollar:before {
  content: "";
}

.fa-envelope-open-text:before {
  content: "";
}

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

.fa-envira:before {
  content: "";
}

.fa-equals:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-erlang:before {
  content: "";
}

.fa-ethereum:before {
  content: "";
}

.fa-ethernet:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

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

.fa-evernote:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

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

.fa-exclamation:before {
  content: "";
}

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

.fa-exclamation-square:before {
  content: "";
}

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

.fa-expand:before {
  content: "";
}

.fa-expand-alt:before {
  content: "";
}

.fa-expand-arrows:before {
  content: "";
}

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

.fa-expand-wide:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

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

.fa-external-link-square:before {
  content: "";
}

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

.fa-eye:before {
  content: "";
}

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

.fa-eye-evil:before {
  content: "";
}

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

.fa-facebook:before {
  content: "";
}

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

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

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

.fa-fan:before {
  content: "";
}

.fa-fantasy-flight-games:before {
  content: "";
}

.fa-farm:before {
  content: "";
}

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

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

.fa-fax:before {
  content: "";
}

.fa-feather:before {
  content: "";
}

.fa-feather-alt:before {
  content: "";
}

.fa-fedex:before {
  content: "";
}

.fa-fedora:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-field-hockey:before {
  content: "";
}

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

.fa-figma:before {
  content: "";
}

.fa-file:before {
  content: "";
}

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

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

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

.fa-file-certificate:before {
  content: "";
}

.fa-file-chart-line:before {
  content: "";
}

.fa-file-chart-pie:before {
  content: "";
}

.fa-file-check:before {
  content: "";
}

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

.fa-file-contract:before {
  content: "";
}

.fa-file-csv:before {
  content: "";
}

.fa-file-download:before {
  content: "";
}

.fa-file-edit:before {
  content: "";
}

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

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

.fa-file-export:before {
  content: "";
}

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

.fa-file-import:before {
  content: "";
}

.fa-file-invoice:before {
  content: "";
}

.fa-file-invoice-dollar:before {
  content: "";
}

.fa-file-medical:before {
  content: "";
}

.fa-file-medical-alt:before {
  content: "";
}

.fa-file-minus:before {
  content: "";
}

.fa-file-music:before {
  content: "";
}

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

.fa-file-plus:before {
  content: "";
}

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

.fa-file-prescription:before {
  content: "";
}

.fa-file-search:before {
  content: "";
}

.fa-file-signature:before {
  content: "";
}

.fa-file-spreadsheet:before {
  content: "";
}

.fa-file-times:before {
  content: "";
}

.fa-file-upload:before {
  content: "";
}

.fa-file-user:before {
  content: "";
}

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

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

.fa-files-medical:before {
  content: "";
}

.fa-fill:before {
  content: "";
}

.fa-fill-drip:before {
  content: "";
}

.fa-film:before {
  content: "";
}

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

.fa-film-canister:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-fingerprint:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-fire-alt:before {
  content: "";
}

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

.fa-fire-smoke:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-fireplace:before {
  content: "";
}

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

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

.fa-first-order-alt:before {
  content: "";
}

.fa-firstdraft:before {
  content: "";
}

.fa-fish:before {
  content: "";
}

.fa-fish-cooked:before {
  content: "";
}

.fa-fist-raised:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-flag-alt:before {
  content: "";
}

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

.fa-flag-usa:before {
  content: "";
}

.fa-flame:before {
  content: "";
}

.fa-flashlight:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-flask-poison:before {
  content: "";
}

.fa-flask-potion:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-flipboard:before {
  content: "";
}

.fa-flower:before {
  content: "";
}

.fa-flower-daffodil:before {
  content: "";
}

.fa-flower-tulip:before {
  content: "";
}

.fa-flushed:before {
  content: "";
}

.fa-flute:before {
  content: "";
}

.fa-flux-capacitor:before {
  content: "";
}

.fa-fly:before {
  content: "";
}

.fa-fog:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-minus:before {
  content: "";
}

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

.fa-folder-plus:before {
  content: "";
}

.fa-folder-times:before {
  content: "";
}

.fa-folder-tree:before {
  content: "";
}

.fa-folders:before {
  content: "";
}

.fa-font:before {
  content: "";
}

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

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

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

.fa-font-awesome-logo-full:before {
  content: "";
}

.fa-font-case:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

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

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

.fa-football-helmet:before {
  content: "";
}

.fa-forklift:before {
  content: "";
}

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

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

.fa-forumbee:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-fragile:before {
  content: "";
}

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

.fa-freebsd:before {
  content: "";
}

.fa-french-fries:before {
  content: "";
}

.fa-frog:before {
  content: "";
}

.fa-frosty-head:before {
  content: "";
}

.fa-frown:before {
  content: "";
}

.fa-frown-open:before {
  content: "";
}

.fa-fulcrum:before {
  content: "";
}

.fa-function:before {
  content: "";
}

.fa-funnel-dollar:before {
  content: "";
}

.fa-futbol:before {
  content: "";
}

.fa-galactic-republic:before {
  content: "";
}

.fa-galactic-senate:before {
  content: "";
}

.fa-game-board:before {
  content: "";
}

.fa-game-board-alt:before {
  content: "";
}

.fa-game-console-handheld:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-gamepad-alt:before {
  content: "";
}

.fa-gas-pump:before {
  content: "";
}

.fa-gas-pump-slash:before {
  content: "";
}

.fa-gavel:before {
  content: "";
}

.fa-gem:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

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

.fa-gg:before {
  content: "";
}

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

.fa-ghost:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-gift-card:before {
  content: "";
}

.fa-gifts:before {
  content: "";
}

.fa-gingerbread-man:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-git-alt:before {
  content: "";
}

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

.fa-github:before {
  content: "";
}

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

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

.fa-gitkraken:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-gitter:before {
  content: "";
}

.fa-glass:before {
  content: "";
}

.fa-glass-champagne:before {
  content: "";
}

.fa-glass-cheers:before {
  content: "";
}

.fa-glass-citrus:before {
  content: "";
}

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

.fa-glass-martini-alt:before {
  content: "";
}

.fa-glass-whiskey:before {
  content: "";
}

.fa-glass-whiskey-rocks:before {
  content: "";
}

.fa-glasses:before {
  content: "";
}

.fa-glasses-alt:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

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

.fa-globe:before {
  content: "";
}

.fa-globe-africa:before {
  content: "";
}

.fa-globe-americas:before {
  content: "";
}

.fa-globe-asia:before {
  content: "";
}

.fa-globe-europe:before {
  content: "";
}

.fa-globe-snow:before {
  content: "";
}

.fa-globe-stand:before {
  content: "";
}

.fa-gofore:before {
  content: "";
}

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

.fa-golf-club:before {
  content: "";
}

.fa-goodreads:before {
  content: "";
}

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

.fa-google:before {
  content: "";
}

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

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

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

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

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

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

.fa-gopuram:before {
  content: "";
}

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

.fa-gramophone:before {
  content: "";
}

.fa-gratipay:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-greater-than:before {
  content: "";
}

.fa-greater-than-equal:before {
  content: "";
}

.fa-grimace:before {
  content: "";
}

.fa-grin:before {
  content: "";
}

.fa-grin-alt:before {
  content: "";
}

.fa-grin-beam:before {
  content: "";
}

.fa-grin-beam-sweat:before {
  content: "";
}

.fa-grin-hearts:before {
  content: "";
}

.fa-grin-squint:before {
  content: "";
}

.fa-grin-squint-tears:before {
  content: "";
}

.fa-grin-stars:before {
  content: "";
}

.fa-grin-tears:before {
  content: "";
}

.fa-grin-tongue:before {
  content: "";
}

.fa-grin-tongue-squint:before {
  content: "";
}

.fa-grin-tongue-wink:before {
  content: "";
}

.fa-grin-wink:before {
  content: "";
}

.fa-grip-horizontal:before {
  content: "";
}

.fa-grip-lines:before {
  content: "";
}

.fa-grip-lines-vertical:before {
  content: "";
}

.fa-grip-vertical:before {
  content: "";
}

.fa-gripfire:before {
  content: "";
}

.fa-grunt:before {
  content: "";
}

.fa-guitar:before {
  content: "";
}

.fa-guitar-electric:before {
  content: "";
}

.fa-guitars:before {
  content: "";
}

.fa-gulp:before {
  content: "";
}

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

.fa-h1:before {
  content: "";
}

.fa-h2:before {
  content: "";
}

.fa-h3:before {
  content: "";
}

.fa-h4:before {
  content: "";
}

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

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

.fa-hackerrank:before {
  content: "";
}

.fa-hamburger:before {
  content: "";
}

.fa-hammer:before {
  content: "";
}

.fa-hammer-war:before {
  content: "";
}

.fa-hamsa:before {
  content: "";
}

.fa-hand-heart:before {
  content: "";
}

.fa-hand-holding:before {
  content: "";
}

.fa-hand-holding-box:before {
  content: "";
}

.fa-hand-holding-heart:before {
  content: "";
}

.fa-hand-holding-magic:before {
  content: "";
}

.fa-hand-holding-seedling:before {
  content: "";
}

.fa-hand-holding-usd:before {
  content: "";
}

.fa-hand-holding-water:before {
  content: "";
}

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

.fa-hand-middle-finger:before {
  content: "";
}

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

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

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

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

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

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

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

.fa-hand-receiving:before {
  content: "";
}

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

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

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

.fa-hands:before {
  content: "";
}

.fa-hands-heart:before {
  content: "";
}

.fa-hands-helping:before {
  content: "";
}

.fa-hands-usd:before {
  content: "";
}

.fa-handshake:before {
  content: "";
}

.fa-handshake-alt:before {
  content: "";
}

.fa-hanukiah:before {
  content: "";
}

.fa-hard-hat:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-hat-chef:before {
  content: "";
}

.fa-hat-cowboy:before {
  content: "";
}

.fa-hat-cowboy-side:before {
  content: "";
}

.fa-hat-santa:before {
  content: "";
}

.fa-hat-winter:before {
  content: "";
}

.fa-hat-witch:before {
  content: "";
}

.fa-hat-wizard:before {
  content: "";
}

.fa-haykal:before {
  content: "";
}

.fa-hdd:before {
  content: "";
}

.fa-head-side:before {
  content: "";
}

.fa-head-side-brain:before {
  content: "";
}

.fa-head-side-headphones:before {
  content: "";
}

.fa-head-side-medical:before {
  content: "";
}

.fa-head-vr:before {
  content: "";
}

.fa-heading:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-headphones-alt:before {
  content: "";
}

.fa-headset:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-heart-broken:before {
  content: "";
}

.fa-heart-circle:before {
  content: "";
}

.fa-heart-rate:before {
  content: "";
}

.fa-heart-square:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-helicopter:before {
  content: "";
}

.fa-helmet-battle:before {
  content: "";
}

.fa-hexagon:before {
  content: "";
}

.fa-highlighter:before {
  content: "";
}

.fa-hiking:before {
  content: "";
}

.fa-hippo:before {
  content: "";
}

.fa-hips:before {
  content: "";
}

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

.fa-history:before {
  content: "";
}

.fa-hockey-mask:before {
  content: "";
}

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

.fa-hockey-sticks:before {
  content: "";
}

.fa-holly-berry:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-home-alt:before {
  content: "";
}

.fa-home-heart:before {
  content: "";
}

.fa-home-lg:before {
  content: "";
}

.fa-home-lg-alt:before {
  content: "";
}

.fa-hood-cloak:before {
  content: "";
}

.fa-hooli:before {
  content: "";
}

.fa-horizontal-rule:before {
  content: "";
}

.fa-hornbill:before {
  content: "";
}

.fa-horse:before {
  content: "";
}

.fa-horse-head:before {
  content: "";
}

.fa-horse-saddle:before {
  content: "";
}

.fa-hospital:before {
  content: "";
}

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

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

.fa-hospital-user:before {
  content: "";
}

.fa-hospitals:before {
  content: "";
}

.fa-hot-tub:before {
  content: "";
}

.fa-hotdog:before {
  content: "";
}

.fa-hotel:before {
  content: "";
}

.fa-hotjar:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

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

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

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

.fa-house-damage:before {
  content: "";
}

.fa-house-flood:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-hryvnia:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-hubspot:before {
  content: "";
}

.fa-humidity:before {
  content: "";
}

.fa-hurricane:before {
  content: "";
}

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

.fa-ice-cream:before {
  content: "";
}

.fa-ice-skate:before {
  content: "";
}

.fa-icicles:before {
  content: "";
}

.fa-icons:before {
  content: "";
}

.fa-icons-alt:before {
  content: "";
}

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

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

.fa-id-card-alt:before {
  content: "";
}

.fa-igloo:before {
  content: "";
}

.fa-image:before {
  content: "";
}

.fa-image-polaroid:before {
  content: "";
}

.fa-images:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-inbox-in:before {
  content: "";
}

.fa-inbox-out:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-industry-alt:before {
  content: "";
}

.fa-infinity:before {
  content: "";
}

.fa-info:before {
  content: "";
}

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

.fa-info-square:before {
  content: "";
}

.fa-inhaler:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-integral:before {
  content: "";
}

.fa-intercom:before {
  content: "";
}

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

.fa-intersection:before {
  content: "";
}

.fa-inventory:before {
  content: "";
}

.fa-invision:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-island-tropical:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-itch-io:before {
  content: "";
}

.fa-itunes:before {
  content: "";
}

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

.fa-jack-o-lantern:before {
  content: "";
}

.fa-java:before {
  content: "";
}

.fa-jedi:before {
  content: "";
}

.fa-jedi-order:before {
  content: "";
}

.fa-jenkins:before {
  content: "";
}

.fa-jira:before {
  content: "";
}

.fa-joget:before {
  content: "";
}

.fa-joint:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-journal-whills:before {
  content: "";
}

.fa-joystick:before {
  content: "";
}

.fa-js:before {
  content: "";
}

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

.fa-jsfiddle:before {
  content: "";
}

.fa-jug:before {
  content: "";
}

.fa-kaaba:before {
  content: "";
}

.fa-kaggle:before {
  content: "";
}

.fa-kazoo:before {
  content: "";
}

.fa-kerning:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-key-skeleton:before {
  content: "";
}

.fa-keybase:before {
  content: "";
}

.fa-keyboard:before {
  content: "";
}

.fa-keycdn:before {
  content: "";
}

.fa-keynote:before {
  content: "";
}

.fa-khanda:before {
  content: "";
}

.fa-kickstarter:before {
  content: "";
}

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

.fa-kidneys:before {
  content: "";
}

.fa-kiss:before {
  content: "";
}

.fa-kiss-beam:before {
  content: "";
}

.fa-kiss-wink-heart:before {
  content: "";
}

.fa-kite:before {
  content: "";
}

.fa-kiwi-bird:before {
  content: "";
}

.fa-knife-kitchen:before {
  content: "";
}

.fa-korvue:before {
  content: "";
}

.fa-lambda:before {
  content: "";
}

.fa-lamp:before {
  content: "";
}

.fa-landmark:before {
  content: "";
}

.fa-landmark-alt:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-laptop-code:before {
  content: "";
}

.fa-laptop-medical:before {
  content: "";
}

.fa-laravel:before {
  content: "";
}

.fa-lasso:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

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

.fa-laugh:before {
  content: "";
}

.fa-laugh-beam:before {
  content: "";
}

.fa-laugh-squint:before {
  content: "";
}

.fa-laugh-wink:before {
  content: "";
}

.fa-layer-group:before {
  content: "";
}

.fa-layer-minus:before {
  content: "";
}

.fa-layer-plus:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-leaf-heart:before {
  content: "";
}

.fa-leaf-maple:before {
  content: "";
}

.fa-leaf-oak:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-lemon:before {
  content: "";
}

.fa-less:before {
  content: "";
}

.fa-less-than:before {
  content: "";
}

.fa-less-than-equal:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

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

.fa-level-up:before {
  content: "";
}

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

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

.fa-lightbulb:before {
  content: "";
}

.fa-lightbulb-dollar:before {
  content: "";
}

.fa-lightbulb-exclamation:before {
  content: "";
}

.fa-lightbulb-on:before {
  content: "";
}

.fa-lightbulb-slash:before {
  content: "";
}

.fa-lights-holiday:before {
  content: "";
}

.fa-line:before {
  content: "";
}

.fa-line-columns:before {
  content: "";
}

.fa-line-height:before {
  content: "";
}

.fa-link:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

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

.fa-linode:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-lips:before {
  content: "";
}

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

.fa-list:before {
  content: "";
}

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

.fa-list-music:before {
  content: "";
}

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

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

.fa-location:before {
  content: "";
}

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

.fa-location-circle:before {
  content: "";
}

.fa-location-slash:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-lock-alt:before {
  content: "";
}

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

.fa-lock-open-alt:before {
  content: "";
}

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

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

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

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

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-loveseat:before {
  content: "";
}

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

.fa-luchador:before {
  content: "";
}

.fa-luggage-cart:before {
  content: "";
}

.fa-lungs:before {
  content: "";
}

.fa-lyft:before {
  content: "";
}

.fa-mace:before {
  content: "";
}

.fa-magento:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-mail-bulk:before {
  content: "";
}

.fa-mailbox:before {
  content: "";
}

.fa-mailchimp:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-mandalorian:before {
  content: "";
}

.fa-mandolin:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-map-marked:before {
  content: "";
}

.fa-map-marked-alt:before {
  content: "";
}

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

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

.fa-map-marker-alt-slash:before {
  content: "";
}

.fa-map-marker-check:before {
  content: "";
}

.fa-map-marker-edit:before {
  content: "";
}

.fa-map-marker-exclamation:before {
  content: "";
}

.fa-map-marker-minus:before {
  content: "";
}

.fa-map-marker-plus:before {
  content: "";
}

.fa-map-marker-question:before {
  content: "";
}

.fa-map-marker-slash:before {
  content: "";
}

.fa-map-marker-smile:before {
  content: "";
}

.fa-map-marker-times:before {
  content: "";
}

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

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

.fa-markdown:before {
  content: "";
}

.fa-marker:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

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

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

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

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

.fa-mask:before {
  content: "";
}

.fa-mastodon:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-mdb:before {
  content: "";
}

.fa-meat:before {
  content: "";
}

.fa-medal:before {
  content: "";
}

.fa-medapps:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

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

.fa-medkit:before {
  content: "";
}

.fa-medrt:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.fa-megaphone:before {
  content: "";
}

.fa-megaport:before {
  content: "";
}

.fa-meh:before {
  content: "";
}

.fa-meh-blank:before {
  content: "";
}

.fa-meh-rolling-eyes:before {
  content: "";
}

.fa-memory:before {
  content: "";
}

.fa-mendeley:before {
  content: "";
}

.fa-menorah:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-meteor:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

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

.fa-microphone-alt-slash:before {
  content: "";
}

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

.fa-microphone-stand:before {
  content: "";
}

.fa-microscope:before {
  content: "";
}

.fa-microsoft:before {
  content: "";
}

.fa-mind-share:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

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

.fa-minus-hexagon:before {
  content: "";
}

.fa-minus-octagon:before {
  content: "";
}

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

.fa-mistletoe:before {
  content: "";
}

.fa-mitten:before {
  content: "";
}

.fa-mix:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-mizuni:before {
  content: "";
}

.fa-mobile:before {
  content: "";
}

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

.fa-mobile-android:before {
  content: "";
}

.fa-mobile-android-alt:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-monero:before {
  content: "";
}

.fa-money-bill:before {
  content: "";
}

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

.fa-money-bill-wave:before {
  content: "";
}

.fa-money-bill-wave-alt:before {
  content: "";
}

.fa-money-check:before {
  content: "";
}

.fa-money-check-alt:before {
  content: "";
}

.fa-money-check-edit:before {
  content: "";
}

.fa-money-check-edit-alt:before {
  content: "";
}

.fa-monitor-heart-rate:before {
  content: "";
}

.fa-monkey:before {
  content: "";
}

.fa-monument:before {
  content: "";
}

.fa-moon:before {
  content: "";
}

.fa-moon-cloud:before {
  content: "";
}

.fa-moon-stars:before {
  content: "";
}

.fa-mortar-pestle:before {
  content: "";
}

.fa-mosque:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-mountain:before {
  content: "";
}

.fa-mountains:before {
  content: "";
}

.fa-mouse:before {
  content: "";
}

.fa-mouse-alt:before {
  content: "";
}

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

.fa-mp3-player:before {
  content: "";
}

.fa-mug:before {
  content: "";
}

.fa-mug-hot:before {
  content: "";
}

.fa-mug-marshmallows:before {
  content: "";
}

.fa-mug-tea:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-music-alt:before {
  content: "";
}

.fa-music-alt-slash:before {
  content: "";
}

.fa-music-slash:before {
  content: "";
}

.fa-napster:before {
  content: "";
}

.fa-narwhal:before {
  content: "";
}

.fa-neos:before {
  content: "";
}

.fa-network-wired:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-newspaper:before {
  content: "";
}

.fa-nimblr:before {
  content: "";
}

.fa-node:before {
  content: "";
}

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

.fa-not-equal:before {
  content: "";
}

.fa-notes-medical:before {
  content: "";
}

.fa-npm:before {
  content: "";
}

.fa-ns8:before {
  content: "";
}

.fa-nutritionix:before {
  content: "";
}

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

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

.fa-octagon:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

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

.fa-oil-can:before {
  content: "";
}

.fa-oil-temp:before {
  content: "";
}

.fa-old-republic:before {
  content: "";
}

.fa-om:before {
  content: "";
}

.fa-omega:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

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

.fa-orcid:before {
  content: "";
}

.fa-ornament:before {
  content: "";
}

.fa-osi:before {
  content: "";
}

.fa-otter:before {
  content: "";
}

.fa-outdent:before {
  content: "";
}

.fa-overline:before {
  content: "";
}

.fa-page-break:before {
  content: "";
}

.fa-page4:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-pager:before {
  content: "";
}

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

.fa-paint-brush-alt:before {
  content: "";
}

.fa-paint-roller:before {
  content: "";
}

.fa-palette:before {
  content: "";
}

.fa-palfed:before {
  content: "";
}

.fa-pallet:before {
  content: "";
}

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

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

.fa-paperclip:before {
  content: "";
}

.fa-parachute-box:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-paragraph-rtl:before {
  content: "";
}

.fa-parking:before {
  content: "";
}

.fa-parking-circle:before {
  content: "";
}

.fa-parking-circle-slash:before {
  content: "";
}

.fa-parking-slash:before {
  content: "";
}

.fa-passport:before {
  content: "";
}

.fa-pastafarianism:before {
  content: "";
}

.fa-paste:before {
  content: "";
}

.fa-patreon:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

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

.fa-paw:before {
  content: "";
}

.fa-paw-alt:before {
  content: "";
}

.fa-paw-claws:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-peace:before {
  content: "";
}

.fa-pegasus:before {
  content: "";
}

.fa-pen:before {
  content: "";
}

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

.fa-pen-fancy:before {
  content: "";
}

.fa-pen-nib:before {
  content: "";
}

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

.fa-pencil:before {
  content: "";
}

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

.fa-pencil-paintbrush:before {
  content: "";
}

.fa-pencil-ruler:before {
  content: "";
}

.fa-pennant:before {
  content: "";
}

.fa-penny-arcade:before {
  content: "";
}

.fa-people-carry:before {
  content: "";
}

.fa-pepper-hot:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-percentage:before {
  content: "";
}

.fa-periscope:before {
  content: "";
}

.fa-person-booth:before {
  content: "";
}

.fa-person-carry:before {
  content: "";
}

.fa-person-dolly:before {
  content: "";
}

.fa-person-dolly-empty:before {
  content: "";
}

.fa-person-sign:before {
  content: "";
}

.fa-phabricator:before {
  content: "";
}

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

.fa-phoenix-squadron:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-phone-alt:before {
  content: "";
}

.fa-phone-laptop:before {
  content: "";
}

.fa-phone-office:before {
  content: "";
}

.fa-phone-plus:before {
  content: "";
}

.fa-phone-rotary:before {
  content: "";
}

.fa-phone-slash:before {
  content: "";
}

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

.fa-phone-square-alt:before {
  content: "";
}

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

.fa-photo-video:before {
  content: "";
}

.fa-php:before {
  content: "";
}

.fa-pi:before {
  content: "";
}

.fa-piano:before {
  content: "";
}

.fa-piano-keyboard:before {
  content: "";
}

.fa-pie:before {
  content: "";
}

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

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

.fa-pied-piper-hat:before {
  content: "";
}

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

.fa-pig:before {
  content: "";
}

.fa-piggy-bank:before {
  content: "";
}

.fa-pills:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

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

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

.fa-pizza:before {
  content: "";
}

.fa-pizza-slice:before {
  content: "";
}

.fa-place-of-worship:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

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

.fa-plane-arrival:before {
  content: "";
}

.fa-plane-departure:before {
  content: "";
}

.fa-play:before {
  content: "";
}

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

.fa-playstation:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

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

.fa-plus-hexagon:before {
  content: "";
}

.fa-plus-octagon:before {
  content: "";
}

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

.fa-podcast:before {
  content: "";
}

.fa-podium:before {
  content: "";
}

.fa-podium-star:before {
  content: "";
}

.fa-poll:before {
  content: "";
}

.fa-poll-h:before {
  content: "";
}

.fa-poll-people:before {
  content: "";
}

.fa-poo:before {
  content: "";
}

.fa-poo-storm:before {
  content: "";
}

.fa-poop:before {
  content: "";
}

.fa-popcorn:before {
  content: "";
}

.fa-portrait:before {
  content: "";
}

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

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

.fa-pray:before {
  content: "";
}

.fa-praying-hands:before {
  content: "";
}

.fa-prescription:before {
  content: "";
}

.fa-prescription-bottle:before {
  content: "";
}

.fa-prescription-bottle-alt:before {
  content: "";
}

.fa-presentation:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-print-search:before {
  content: "";
}

.fa-print-slash:before {
  content: "";
}

.fa-procedures:before {
  content: "";
}

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

.fa-project-diagram:before {
  content: "";
}

.fa-projector:before {
  content: "";
}

.fa-pumpkin:before {
  content: "";
}

.fa-pushed:before {
  content: "";
}

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

.fa-python:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-question:before {
  content: "";
}

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

.fa-question-square:before {
  content: "";
}

.fa-quidditch:before {
  content: "";
}

.fa-quinscape:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

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

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

.fa-quran:before {
  content: "";
}

.fa-r-project:before {
  content: "";
}

.fa-rabbit:before {
  content: "";
}

.fa-rabbit-fast:before {
  content: "";
}

.fa-racquet:before {
  content: "";
}

.fa-radiation:before {
  content: "";
}

.fa-radiation-alt:before {
  content: "";
}

.fa-radio:before {
  content: "";
}

.fa-radio-alt:before {
  content: "";
}

.fa-rainbow:before {
  content: "";
}

.fa-raindrops:before {
  content: "";
}

.fa-ram:before {
  content: "";
}

.fa-ramp-loading:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-raspberry-pi:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-react:before {
  content: "";
}

.fa-reacteurope:before {
  content: "";
}

.fa-readme:before {
  content: "";
}

.fa-rebel:before {
  content: "";
}

.fa-receipt:before {
  content: "";
}

.fa-record-vinyl:before {
  content: "";
}

.fa-rectangle-landscape:before {
  content: "";
}

.fa-rectangle-portrait:before {
  content: "";
}

.fa-rectangle-wide:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

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

.fa-reddit:before {
  content: "";
}

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

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

.fa-redhat:before {
  content: "";
}

.fa-redo:before {
  content: "";
}

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

.fa-registered:before {
  content: "";
}

.fa-remove-format:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-repeat:before {
  content: "";
}

.fa-repeat-1:before {
  content: "";
}

.fa-repeat-1-alt:before {
  content: "";
}

.fa-repeat-alt:before {
  content: "";
}

.fa-reply:before {
  content: "";
}

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

.fa-replyd:before {
  content: "";
}

.fa-republican:before {
  content: "";
}

.fa-researchgate:before {
  content: "";
}

.fa-resolving:before {
  content: "";
}

.fa-restroom:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

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

.fa-rev:before {
  content: "";
}

.fa-ribbon:before {
  content: "";
}

.fa-ring:before {
  content: "";
}

.fa-rings-wedding:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-robot:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-rocketchat:before {
  content: "";
}

.fa-rockrms:before {
  content: "";
}

.fa-route:before {
  content: "";
}

.fa-route-highway:before {
  content: "";
}

.fa-route-interstate:before {
  content: "";
}

.fa-router:before {
  content: "";
}

.fa-rss:before {
  content: "";
}

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

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

.fa-ruler:before {
  content: "";
}

.fa-ruler-combined:before {
  content: "";
}

.fa-ruler-horizontal:before {
  content: "";
}

.fa-ruler-triangle:before {
  content: "";
}

.fa-ruler-vertical:before {
  content: "";
}

.fa-running:before {
  content: "";
}

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

.fa-rv:before {
  content: "";
}

.fa-sack:before {
  content: "";
}

.fa-sack-dollar:before {
  content: "";
}

.fa-sad-cry:before {
  content: "";
}

.fa-sad-tear:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-salad:before {
  content: "";
}

.fa-salesforce:before {
  content: "";
}

.fa-sandwich:before {
  content: "";
}

.fa-sass:before {
  content: "";
}

.fa-satellite:before {
  content: "";
}

.fa-satellite-dish:before {
  content: "";
}

.fa-sausage:before {
  content: "";
}

.fa-save:before {
  content: "";
}

.fa-sax-hot:before {
  content: "";
}

.fa-saxophone:before {
  content: "";
}

.fa-scalpel:before {
  content: "";
}

.fa-scalpel-path:before {
  content: "";
}

.fa-scanner:before {
  content: "";
}

.fa-scanner-image:before {
  content: "";
}

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

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

.fa-scarecrow:before {
  content: "";
}

.fa-scarf:before {
  content: "";
}

.fa-schlix:before {
  content: "";
}

.fa-school:before {
  content: "";
}

.fa-screwdriver:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-scroll:before {
  content: "";
}

.fa-scroll-old:before {
  content: "";
}

.fa-scrubber:before {
  content: "";
}

.fa-scythe:before {
  content: "";
}

.fa-sd-card:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-search-dollar:before {
  content: "";
}

.fa-search-location:before {
  content: "";
}

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

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

.fa-searchengin:before {
  content: "";
}

.fa-seedling:before {
  content: "";
}

.fa-sellcast:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-send-back:before {
  content: "";
}

.fa-send-backward:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-servicestack:before {
  content: "";
}

.fa-shapes:before {
  content: "";
}

.fa-share:before {
  content: "";
}

.fa-share-all:before {
  content: "";
}

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

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

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

.fa-sheep:before {
  content: "";
}

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

.fa-shield:before {
  content: "";
}

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

.fa-shield-check:before {
  content: "";
}

.fa-shield-cross:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

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

.fa-shipping-timed:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-shish-kebab:before {
  content: "";
}

.fa-shoe-prints:before {
  content: "";
}

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

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

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

.fa-shopware:before {
  content: "";
}

.fa-shovel:before {
  content: "";
}

.fa-shovel-snow:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-shredder:before {
  content: "";
}

.fa-shuttle-van:before {
  content: "";
}

.fa-shuttlecock:before {
  content: "";
}

.fa-sickle:before {
  content: "";
}

.fa-sigma:before {
  content: "";
}

.fa-sign:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

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

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

.fa-sign-out:before {
  content: "";
}

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

.fa-signal:before {
  content: "";
}

.fa-signal-1:before {
  content: "";
}

.fa-signal-2:before {
  content: "";
}

.fa-signal-3:before {
  content: "";
}

.fa-signal-4:before {
  content: "";
}

.fa-signal-alt:before {
  content: "";
}

.fa-signal-alt-1:before {
  content: "";
}

.fa-signal-alt-2:before {
  content: "";
}

.fa-signal-alt-3:before {
  content: "";
}

.fa-signal-alt-slash:before {
  content: "";
}

.fa-signal-slash:before {
  content: "";
}

.fa-signal-stream:before {
  content: "";
}

.fa-signature:before {
  content: "";
}

.fa-sim-card:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-sistrix:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-sith:before {
  content: "";
}

.fa-skating:before {
  content: "";
}

.fa-skeleton:before {
  content: "";
}

.fa-sketch:before {
  content: "";
}

.fa-ski-jump:before {
  content: "";
}

.fa-ski-lift:before {
  content: "";
}

.fa-skiing:before {
  content: "";
}

.fa-skiing-nordic:before {
  content: "";
}

.fa-skull:before {
  content: "";
}

.fa-skull-cow:before {
  content: "";
}

.fa-skull-crossbones:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

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

.fa-slash:before {
  content: "";
}

.fa-sledding:before {
  content: "";
}

.fa-sleigh:before {
  content: "";
}

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

.fa-sliders-h-square:before {
  content: "";
}

.fa-sliders-v:before {
  content: "";
}

.fa-sliders-v-square:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-smile:before {
  content: "";
}

.fa-smile-beam:before {
  content: "";
}

.fa-smile-plus:before {
  content: "";
}

.fa-smile-wink:before {
  content: "";
}

.fa-smog:before {
  content: "";
}

.fa-smoke:before {
  content: "";
}

.fa-smoking:before {
  content: "";
}

.fa-smoking-ban:before {
  content: "";
}

.fa-sms:before {
  content: "";
}

.fa-snake:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

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

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

.fa-snooze:before {
  content: "";
}

.fa-snow-blowing:before {
  content: "";
}

.fa-snowboarding:before {
  content: "";
}

.fa-snowflake:before {
  content: "";
}

.fa-snowflakes:before {
  content: "";
}

.fa-snowman:before {
  content: "";
}

.fa-snowmobile:before {
  content: "";
}

.fa-snowplow:before {
  content: "";
}

.fa-socks:before {
  content: "";
}

.fa-solar-panel:before {
  content: "";
}

.fa-sort:before {
  content: "";
}

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

.fa-sort-alpha-down-alt:before {
  content: "";
}

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

.fa-sort-alpha-up-alt:before {
  content: "";
}

.fa-sort-alt:before {
  content: "";
}

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

.fa-sort-amount-down-alt:before {
  content: "";
}

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

.fa-sort-amount-up-alt:before {
  content: "";
}

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

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

.fa-sort-numeric-down-alt:before {
  content: "";
}

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

.fa-sort-numeric-up-alt:before {
  content: "";
}

.fa-sort-shapes-down:before {
  content: "";
}

.fa-sort-shapes-down-alt:before {
  content: "";
}

.fa-sort-shapes-up:before {
  content: "";
}

.fa-sort-shapes-up-alt:before {
  content: "";
}

.fa-sort-size-down:before {
  content: "";
}

.fa-sort-size-down-alt:before {
  content: "";
}

.fa-sort-size-up:before {
  content: "";
}

.fa-sort-size-up-alt:before {
  content: "";
}

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

.fa-soundcloud:before {
  content: "";
}

.fa-soup:before {
  content: "";
}

.fa-sourcetree:before {
  content: "";
}

.fa-spa:before {
  content: "";
}

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

.fa-spade:before {
  content: "";
}

.fa-sparkles:before {
  content: "";
}

.fa-speakap:before {
  content: "";
}

.fa-speaker:before {
  content: "";
}

.fa-speaker-deck:before {
  content: "";
}

.fa-speakers:before {
  content: "";
}

.fa-spell-check:before {
  content: "";
}

.fa-spider:before {
  content: "";
}

.fa-spider-black-widow:before {
  content: "";
}

.fa-spider-web:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

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

.fa-splotch:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-spray-can:before {
  content: "";
}

.fa-square:before {
  content: "";
}

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

.fa-square-root:before {
  content: "";
}

.fa-square-root-alt:before {
  content: "";
}

.fa-squarespace:before {
  content: "";
}

.fa-squirrel:before {
  content: "";
}

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

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

.fa-stackpath:before {
  content: "";
}

.fa-staff:before {
  content: "";
}

.fa-stamp:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-and-crescent:before {
  content: "";
}

.fa-star-christmas:before {
  content: "";
}

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

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

.fa-star-half-alt:before {
  content: "";
}

.fa-star-of-david:before {
  content: "";
}

.fa-star-of-life:before {
  content: "";
}

.fa-stars:before {
  content: "";
}

.fa-staylinked:before {
  content: "";
}

.fa-steak:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

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

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

.fa-steering-wheel:before {
  content: "";
}

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

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

.fa-stethoscope:before {
  content: "";
}

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

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

.fa-stocking:before {
  content: "";
}

.fa-stomach:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

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

.fa-stopwatch:before {
  content: "";
}

.fa-store:before {
  content: "";
}

.fa-store-alt:before {
  content: "";
}

.fa-strava:before {
  content: "";
}

.fa-stream:before {
  content: "";
}

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

.fa-stretcher:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-stripe:before {
  content: "";
}

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

.fa-stroopwafel:before {
  content: "";
}

.fa-studiovinari:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

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

.fa-subscript:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-suitcase-rolling:before {
  content: "";
}

.fa-sun:before {
  content: "";
}

.fa-sun-cloud:before {
  content: "";
}

.fa-sun-dust:before {
  content: "";
}

.fa-sun-haze:before {
  content: "";
}

.fa-sunglasses:before {
  content: "";
}

.fa-sunrise:before {
  content: "";
}

.fa-sunset:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-supple:before {
  content: "";
}

.fa-surprise:before {
  content: "";
}

.fa-suse:before {
  content: "";
}

.fa-swatchbook:before {
  content: "";
}

.fa-swift:before {
  content: "";
}

.fa-swimmer:before {
  content: "";
}

.fa-swimming-pool:before {
  content: "";
}

.fa-sword:before {
  content: "";
}

.fa-swords:before {
  content: "";
}

.fa-symfony:before {
  content: "";
}

.fa-synagogue:before {
  content: "";
}

.fa-sync:before {
  content: "";
}

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

.fa-syringe:before {
  content: "";
}

.fa-table:before {
  content: "";
}

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

.fa-tablet:before {
  content: "";
}

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

.fa-tablet-android:before {
  content: "";
}

.fa-tablet-android-alt:before {
  content: "";
}

.fa-tablet-rugged:before {
  content: "";
}

.fa-tablets:before {
  content: "";
}

.fa-tachometer:before {
  content: "";
}

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

.fa-tachometer-alt-average:before {
  content: "";
}

.fa-tachometer-alt-fast:before {
  content: "";
}

.fa-tachometer-alt-fastest:before {
  content: "";
}

.fa-tachometer-alt-slow:before {
  content: "";
}

.fa-tachometer-alt-slowest:before {
  content: "";
}

.fa-tachometer-average:before {
  content: "";
}

.fa-tachometer-fast:before {
  content: "";
}

.fa-tachometer-fastest:before {
  content: "";
}

.fa-tachometer-slow:before {
  content: "";
}

.fa-tachometer-slowest:before {
  content: "";
}

.fa-taco:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-tally:before {
  content: "";
}

.fa-tanakh:before {
  content: "";
}

.fa-tape:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-tasks-alt:before {
  content: "";
}

.fa-taxi:before {
  content: "";
}

.fa-teamspeak:before {
  content: "";
}

.fa-teeth:before {
  content: "";
}

.fa-teeth-open:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

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

.fa-temperature-frigid:before {
  content: "";
}

.fa-temperature-high:before {
  content: "";
}

.fa-temperature-hot:before {
  content: "";
}

.fa-temperature-low:before {
  content: "";
}

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

.fa-tenge:before {
  content: "";
}

.fa-tennis-ball:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-text:before {
  content: "";
}

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

.fa-text-size:before {
  content: "";
}

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

.fa-th:before {
  content: "";
}

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

.fa-th-list:before {
  content: "";
}

.fa-the-red-yeti:before {
  content: "";
}

.fa-theater-masks:before {
  content: "";
}

.fa-themeco:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-thermometer:before {
  content: "";
}

.fa-thermometer-empty:before {
  content: "";
}

.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-theta:before {
  content: "";
}

.fa-think-peaks:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbtack:before {
  content: "";
}

.fa-thunderstorm:before {
  content: "";
}

.fa-thunderstorm-moon:before {
  content: "";
}

.fa-thunderstorm-sun:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-ticket-alt:before {
  content: "";
}

.fa-tilde:before {
  content: "";
}

.fa-times:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-times-hexagon:before {
  content: "";
}

.fa-times-octagon:before {
  content: "";
}

.fa-times-square:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-tint-slash:before {
  content: "";
}

.fa-tire:before {
  content: "";
}

.fa-tire-flat:before {
  content: "";
}

.fa-tire-pressure-warning:before {
  content: "";
}

.fa-tire-rugged:before {
  content: "";
}

.fa-tired:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-toilet:before {
  content: "";
}

.fa-toilet-paper:before {
  content: "";
}

.fa-toilet-paper-alt:before {
  content: "";
}

.fa-tombstone:before {
  content: "";
}

.fa-tombstone-alt:before {
  content: "";
}

.fa-toolbox:before {
  content: "";
}

.fa-tools:before {
  content: "";
}

.fa-tooth:before {
  content: "";
}

.fa-toothbrush:before {
  content: "";
}

.fa-torah:before {
  content: "";
}

.fa-torii-gate:before {
  content: "";
}

.fa-tornado:before {
  content: "";
}

.fa-tractor:before {
  content: "";
}

.fa-trade-federation:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-traffic-cone:before {
  content: "";
}

.fa-traffic-light:before {
  content: "";
}

.fa-traffic-light-go:before {
  content: "";
}

.fa-traffic-light-slow:before {
  content: "";
}

.fa-traffic-light-stop:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-tram:before {
  content: "";
}

.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-trash-alt:before {
  content: "";
}

.fa-trash-restore:before {
  content: "";
}

.fa-trash-restore-alt:before {
  content: "";
}

.fa-trash-undo:before {
  content: "";
}

.fa-trash-undo-alt:before {
  content: "";
}

.fa-treasure-chest:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-tree-alt:before {
  content: "";
}

.fa-tree-christmas:before {
  content: "";
}

.fa-tree-decorated:before {
  content: "";
}

.fa-tree-large:before {
  content: "";
}

.fa-tree-palm:before {
  content: "";
}

.fa-trees:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-triangle:before {
  content: "";
}

.fa-triangle-music:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-trophy-alt:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-truck-container:before {
  content: "";
}

.fa-truck-couch:before {
  content: "";
}

.fa-truck-loading:before {
  content: "";
}

.fa-truck-monster:before {
  content: "";
}

.fa-truck-moving:before {
  content: "";
}

.fa-truck-pickup:before {
  content: "";
}

.fa-truck-plow:before {
  content: "";
}

.fa-truck-ramp:before {
  content: "";
}

.fa-trumpet:before {
  content: "";
}

.fa-tshirt:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-turkey:before {
  content: "";
}

.fa-turntable:before {
  content: "";
}

.fa-turtle:before {
  content: "";
}

.fa-tv:before {
  content: "";
}

.fa-tv-alt:before {
  content: "";
}

.fa-tv-music:before {
  content: "";
}

.fa-tv-retro:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-typewriter:before {
  content: "";
}

.fa-typo3:before {
  content: "";
}

.fa-uber:before {
  content: "";
}

.fa-ubuntu:before {
  content: "";
}

.fa-uikit:before {
  content: "";
}

.fa-umbraco:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-umbrella-beach:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-undo:before {
  content: "";
}

.fa-undo-alt:before {
  content: "";
}

.fa-unicorn:before {
  content: "";
}

.fa-union:before {
  content: "";
}

.fa-uniregistry:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-university:before {
  content: "";
}

.fa-unlink:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-untappd:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-ups:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-usb-drive:before {
  content: "";
}

.fa-usd-circle:before {
  content: "";
}

.fa-usd-square:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-user-alt:before {
  content: "";
}

.fa-user-alt-slash:before {
  content: "";
}

.fa-user-astronaut:before {
  content: "";
}

.fa-user-chart:before {
  content: "";
}

.fa-user-check:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-clock:before {
  content: "";
}

.fa-user-cog:before {
  content: "";
}

.fa-user-cowboy:before {
  content: "";
}

.fa-user-crown:before {
  content: "";
}

.fa-user-edit:before {
  content: "";
}

.fa-user-friends:before {
  content: "";
}

.fa-user-graduate:before {
  content: "";
}

.fa-user-hard-hat:before {
  content: "";
}

.fa-user-headset:before {
  content: "";
}

.fa-user-injured:before {
  content: "";
}

.fa-user-lock:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-user-md-chat:before {
  content: "";
}

.fa-user-minus:before {
  content: "";
}

.fa-user-music:before {
  content: "";
}

.fa-user-ninja:before {
  content: "";
}

.fa-user-nurse:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-user-shield:before {
  content: "";
}

.fa-user-slash:before {
  content: "";
}

.fa-user-tag:before {
  content: "";
}

.fa-user-tie:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-users:before {
  content: "";
}

.fa-users-class:before {
  content: "";
}

.fa-users-cog:before {
  content: "";
}

.fa-users-crown:before {
  content: "";
}

.fa-users-medical:before {
  content: "";
}

.fa-usps:before {
  content: "";
}

.fa-ussunnah:before {
  content: "";
}

.fa-utensil-fork:before {
  content: "";
}

.fa-utensil-knife:before {
  content: "";
}

.fa-utensil-spoon:before {
  content: "";
}

.fa-utensils:before {
  content: "";
}

.fa-utensils-alt:before {
  content: "";
}

.fa-vaadin:before {
  content: "";
}

.fa-value-absolute:before {
  content: "";
}

.fa-vector-square:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-vhs:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-vial:before {
  content: "";
}

.fa-vials:before {
  content: "";
}

.fa-viber:before {
  content: "";
}

.fa-video:before {
  content: "";
}

.fa-video-plus:before {
  content: "";
}

.fa-video-slash:before {
  content: "";
}

.fa-vihara:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-vimeo-v:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-violin:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-vnv:before {
  content: "";
}

.fa-voicemail:before {
  content: "";
}

.fa-volcano:before {
  content: "";
}

.fa-volleyball-ball:before {
  content: "";
}

.fa-volume:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-mute:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-slash:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-vote-nay:before {
  content: "";
}

.fa-vote-yea:before {
  content: "";
}

.fa-vr-cardboard:before {
  content: "";
}

.fa-vuejs:before {
  content: "";
}

.fa-wagon-covered:before {
  content: "";
}

.fa-walker:before {
  content: "";
}

.fa-walkie-talkie:before {
  content: "";
}

.fa-walking:before {
  content: "";
}

.fa-wallet:before {
  content: "";
}

.fa-wand:before {
  content: "";
}

.fa-wand-magic:before {
  content: "";
}

.fa-warehouse:before {
  content: "";
}

.fa-warehouse-alt:before {
  content: "";
}

.fa-washer:before {
  content: "";
}

.fa-watch:before {
  content: "";
}

.fa-watch-calculator:before {
  content: "";
}

.fa-watch-fitness:before {
  content: "";
}

.fa-water:before {
  content: "";
}

.fa-water-lower:before {
  content: "";
}

.fa-water-rise:before {
  content: "";
}

.fa-wave-sine:before {
  content: "";
}

.fa-wave-square:before {
  content: "";
}

.fa-wave-triangle:before {
  content: "";
}

.fa-waveform:before {
  content: "";
}

.fa-waveform-path:before {
  content: "";
}

.fa-waze:before {
  content: "";
}

.fa-webcam:before {
  content: "";
}

.fa-webcam-slash:before {
  content: "";
}

.fa-weebly:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-weight:before {
  content: "";
}

.fa-weight-hanging:before {
  content: "";
}

.fa-weixin:before {
  content: "";
}

.fa-whale:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-whatsapp-square:before {
  content: "";
}

.fa-wheat:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-whistle:before {
  content: "";
}

.fa-whmcs:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-wifi-1:before {
  content: "";
}

.fa-wifi-2:before {
  content: "";
}

.fa-wifi-slash:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-wind:before {
  content: "";
}

.fa-wind-turbine:before {
  content: "";
}

.fa-wind-warning:before {
  content: "";
}

.fa-window:before {
  content: "";
}

.fa-window-alt:before {
  content: "";
}

.fa-window-close:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-windsock:before {
  content: "";
}

.fa-wine-bottle:before {
  content: "";
}

.fa-wine-glass:before {
  content: "";
}

.fa-wine-glass-alt:before {
  content: "";
}

.fa-wix:before {
  content: "";
}

.fa-wizards-of-the-coast:before {
  content: "";
}

.fa-wolf-pack-battalion:before {
  content: "";
}

.fa-won-sign:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-wordpress-simple:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-wpressr:before {
  content: "";
}

.fa-wreath:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-x-ray:before {
  content: "";
}

.fa-xbox:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-y-combinator:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-yammer:before {
  content: "";
}

.fa-yandex:before {
  content: "";
}

.fa-yandex-international:before {
  content: "";
}

.fa-yarn:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-yen-sign:before {
  content: "";
}

.fa-yin-yang:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-zhihu:before {
  content: "";
}

.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.11.2 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;
  font-display: auto;
  src: url("../webfonts/fa-light-300.eot");
  src: url("../webfonts/fa-light-300.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-light-300.woff2") format("woff2"), url("../webfonts/fa-light-300.woff") format("woff"), url("../webfonts/fa-light-300.ttf") format("truetype"), url("../webfonts/fa-light-300.svg#fontawesome") format("svg");
}
.fal {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
}

/*!
 * Font Awesome Pro 5.11.2 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;
  font-display: auto;
  src: url("../webfonts/fa-regular-400.eot");
  src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

/*!
 * Font Awesome Pro 5.11.2 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;
  font-display: auto;
  src: url("../webfonts/fa-solid-900.eot");
  src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

/*!
 * Font Awesome Pro 5.11.2 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;
  font-display: auto;
  src: url("../webfonts/fa-brands-400.eot");
  src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
}

/* BASE STYLES FOR @extend .classname */
.base-nav-button, .modal-close, .mobile-nav-button,
.mobile-nav-close, .base-button, .et-db #et-boc .et-l .et_pb_module #gform_wrapper_18 .gform_button, footer.footer #inner-footer .get-more-info, .sidebar .contact-form .gform_wrapper .gform_footer input.button, #respond .form-submit input, .overlay-modal .gform_confirmation_wrapper a.button, .featured-item-with-cards .button, .resources-loop .resource-list .resources-items .link .button, .content-tabs .service-loop .service-box .link .button, .content-tabs .featured-service .link .button, .content-tabs .tab_content .get-more-button, .full-width-img-cta a.button, .contact-modal .gform_footer .gform_button.button, .recent-articles .articles-loop + a.button, .cta-boxes .cta-box .button, .hero.hero-slider .glide__slide .content .button, .header-nav-desktop .nav li.get-more-info {
  border: 0;
  background-color: transparent;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.base-button, .et-db #et-boc .et-l .et_pb_module #gform_wrapper_18 .gform_button, footer.footer #inner-footer .get-more-info, .sidebar .contact-form .gform_wrapper .gform_footer input.button, #respond .form-submit input, .overlay-modal .gform_confirmation_wrapper a.button, .featured-item-with-cards .button, .resources-loop .resource-list .resources-items .link .button, .content-tabs .service-loop .service-box .link .button, .content-tabs .featured-service .link .button, .content-tabs .tab_content .get-more-button, .full-width-img-cta a.button, .contact-modal .gform_footer .gform_button.button, .recent-articles .articles-loop + a.button, .cta-boxes .cta-box .button, .hero.hero-slider .glide__slide .content .button, .header-nav-desktop .nav li.get-more-info {
  background-color: #F56B24;
}
.base-button:hover, .et-db #et-boc .et-l .et_pb_module #gform_wrapper_18 .gform_button:hover, footer.footer #inner-footer .get-more-info:hover, .sidebar .contact-form .gform_wrapper .gform_footer input.button:hover, #respond .form-submit input:hover, .overlay-modal .gform_confirmation_wrapper a.button:hover, .featured-item-with-cards .button:hover, .resources-loop .resource-list .resources-items .link .button:hover, .content-tabs .service-loop .service-box .link .button:hover, .content-tabs .featured-service .link .button:hover, .content-tabs .tab_content .get-more-button:hover, .full-width-img-cta a.button:hover, .contact-modal .gform_footer .gform_button.button:hover, .recent-articles .articles-loop + a.button:hover, .cta-boxes .cta-box .button:hover, .hero.hero-slider .glide__slide .content .button:hover, .header-nav-desktop .nav li.get-more-info:hover {
  background-color: #dc510a;
}

.orange {
  color: #F56B24;
}

/* ELEMENT STYLES */
@media only screen and (min-width: 1030px) {
  .wrap.no-horz-padding {
    padding-left: 0;
    padding-right: 0;
  }
}

#site-title {
  display: none;
}

.clickable {
  cursor: pointer;
}

header.header {
  background-color: transparent;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 1;
}
header.header > .wrap {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header.header.in-view {
  position: relative;
  opacity: 0;
}
header.header.fixed {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  opacity: 1;
}
header.header.fixed #inner-header {
  background-color: transparent;
}
header.header.fixed #logo {
  display: none;
}
@media (min-width: 1030px) {
  header.header {
    background-color: #fff;
  }
  header.header.fixed {
    width: 100%;
    right: unset;
    left: 0;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(50, 57, 68, 0.2);
            box-shadow: 0px 0px 2px 0px rgba(50, 57, 68, 0.2);
  }
  header.header.fixed #inner-header {
    background-color: #fff;
    padding-top: 0;
    padding-bottom: 0;
  }
  header.header.fixed #logo {
    display: block;
    background-image: url("../images/mpi-logo-mark.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
  }
  header.header.fixed #logo img {
    display: none;
  }
}

.header-nav-desktop {
  display: none;
}
.header-nav-desktop .nav li {
  position: relative;
}
.header-nav-desktop .nav li.get-more-info {
  padding: 0;
}
.header-nav-desktop .nav li.get-more-info a {
  padding: 0.75em 1.5em;
  color: #fff;
}
.header-nav-desktop .nav li.current-menu-item:before {
  content: "";
  position: absolute;
  width: calc( 100% - 2.5em );
  min-width: 2.5em;
  height: 4px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #F56B24;
}
@media (min-width: 1030px) {
  .header-nav-desktop .nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
    padding: 0;
  }
  .header-nav-desktop .nav li {
    padding: 0.5em 0;
  }
  .header-nav-desktop .nav li a {
    color: #77787B;
    font-weight: 500;
    font-size: 15px;
  }
  .header-nav-desktop .nav li a:hover {
    text-decoration: none;
  }
  .header-nav-desktop .nav li.home-nav-item {
    display: none;
  }
  body.home .header-nav-desktop .nav li.home-nav-item {
    display: none;
  }
  .header-nav-desktop .nav li.get-more-info {
    margin-bottom: 0;
    margin-left: 0.5em;
    margin-right: 0.5em;
  }
  .header-nav-desktop .nav li:first-child, .header-nav-desktop .nav li:last-child {
    padding-right: 0;
  }
}
@media (min-width: 1240px) {
  .header-nav-desktop .nav li {
    padding: 0.5em 0.75em;
  }
  .header-nav-desktop .nav li a {
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  .header-nav-desktop .nav li a {
    font-size: 18px;
  }
}
@media (min-width: 1030px) {
  .header-nav-desktop {
    display: block;
  }
}

.header-nav-mobile {
  -webkit-transition: all 0.33s ease-in-out;
  -o-transition: all 0.33s ease-in-out;
  transition: all 0.33s ease-in-out;
  opacity: 0;
  position: fixed;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: -100vh;
}
.header-nav-mobile.show-nav {
  opacity: 1;
  background-color: #222222;
  background-image: url("../images/background-mobile-mask.png");
  background-size: cover;
  z-index: 100;
  right: 0;
}
.header-nav-mobile.show-nav .mobile-nav-close {
  display: block;
  position: absolute;
  right: 19px;
  top: 32px;
  color: #F56B24;
}
.header-nav-mobile .nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 75px;
  padding: 40px;
}
.header-nav-mobile .nav li {
  margin-bottom: 5vh;
}
.header-nav-mobile .nav li a {
  color: #fff;
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
}
@media (min-width: 1030px) {
  .header-nav-mobile {
    display: none;
    opacity: 1;
    position: relative;
    right: unset;
    width: auto;
    height: auto;
    top: unset;
    right: unset;
  }
}

.header-nav-desktop .nav,
.header-nav-mobile .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-nav-desktop .nav li.no-mobile,
.header-nav-mobile .nav li.no-mobile {
  display: none;
}
@media (min-width: 1030px) {
  .header-nav-desktop .nav li.no-mobile,
.header-nav-mobile .nav li.no-mobile {
    display: block;
  }
}

.mobile-nav-button,
.mobile-nav-close {
  position: relative;
}
@media (min-width: 1030px) {
  .mobile-nav-button,
.mobile-nav-close {
    display: none;
  }
}

.mobile-nav-button {
  color: #005487;
  z-index: 10;
}
.fixed .mobile-nav-button {
  background-color: rgba(119, 120, 123, 0.25);
  padding: 3px 5px;
  top: 15px;
}

.mobile-nav-close {
  display: none;
}

@media (min-width: 1030px) {
  body {
    overflow-x: hidden;
  }
}

.search-results #main a {
  color: black;
}

.hero.hero-slider {
  color: #fff;
}
.hero.hero-slider .glide__slides {
  margin: 0;
}
.hero.hero-slider .glide__arrows {
  display: none;
}
.hero.hero-slider .glide__arrows button {
  background-color: rgba(119, 120, 123, 0.3);
  border: none;
  border-radius: 0;
  width: 60px;
  height: 60px;
  font-size: 40px;
}
@media (min-width: 1030px) {
  .hero.hero-slider .glide__arrows {
    display: block;
  }
}
.hero.hero-slider .glide__arrow--right {
  right: 0;
}
.hero.hero-slider .glide__arrow--left {
  left: 0;
}
.hero.hero-slider .glide__bullets {
  position: absolute;
  bottom: 40px;
  left: 65px;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.hero.hero-slider .glide__bullets button {
  background-color: rgba(119, 120, 123, 0.5);
  border-radius: 0;
  width: 36px;
}
.hero.hero-slider .glide__bullets button.glide__bullet--active {
  background-color: #F56B24;
}
@media (min-width: 600px) {
  .hero.hero-slider .glide__bullets {
    bottom: 50px;
    left: 110px;
  }
}
@media (min-width: 1366px) {
  .hero.hero-slider .glide__bullets {
    bottom: 130px;
    left: 175px;
  }
}
@media (min-width: 1440px) {
  .hero.hero-slider .glide__bullets {
    bottom: 150px;
  }
}
@media (min-width: 1600px) {
  .hero.hero-slider .glide__bullets {
    bottom: 200px;
    left: 325px;
  }
}
.hero.hero-slider .glide__slide {
  position: relative;
}
.hero.hero-slider .glide__slide img {
  width: 100%;
}
.hero.hero-slider .glide__slide img.desktop {
  display: none;
}
.hero.hero-slider .glide__slide img.mobile {
  display: block;
}
.hero.hero-slider .glide__slide .image {
  position: relative;
}
.hero.hero-slider .glide__slide .image .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.75)), color-stop(50%, rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 50%);
  background: linear-gradient(to top, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 50%);
}
.hero.hero-slider .glide__slide .content {
  position: relative;
  top: -64px;
  max-width: 275px;
  padding-left: 10px;
}
.hero.hero-slider .glide__slide .content .button {
  padding: 10px 20px;
  font-size: 16px;
  line-height: normal;
  text-decoration: none;
  margin-top: 1em;
  width: 100%;
  max-width: 225px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.hero.hero-slider .glide__slide .content .title {
  color: #222222;
  font-size: 34px;
  font-weight: 600;
  line-height: 40px;
}
@media (min-width: 1030px) {
  .hero.hero-slider .glide__slide img.desktop {
    display: block;
  }
  .hero.hero-slider .glide__slide img.mobile {
    display: none;
  }
  .hero.hero-slider .glide__slide .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
  .hero.hero-slider .glide__slide .image .mask {
    background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.75))) 0% 0% no-repeat padding-box;
    background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 100%) 0% 0% no-repeat padding-box;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 100%) 0% 0% no-repeat padding-box;
  }
  .hero.hero-slider .glide__slide .image:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background-color: #fff;
    width: 250px;
    height: 100%;
    display: block;
  }
  .hero.hero-slider .glide__slide .content {
    position: absolute;
    top: 50%;
    left: 30px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 10;
    max-width: 500px;
    padding-left: 0;
  }
  .hero.hero-slider .glide__slide .content .title {
    font-size: 72px;
    line-height: 84px;
  }
  .hero.hero-slider .glide__slide .content .button {
    padding: 20px;
    max-width: 300px;
  }
}

.sub-hero .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.sub-hero .img-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-bottom: 150px;
}
.sub-hero .img-wrap > img {
  width: 90%;
}
.sub-hero .img-wrap > img.mobile {
  display: block;
}
.sub-hero .img-wrap > img.desktop {
  display: none;
}
.sub-hero .img-wrap .header-text {
  position: absolute;
  bottom: -138px;
  z-index: 100;
  padding-left: 1em;
  padding-right: 1em;
}
.sub-hero .img-wrap .title {
  text-align: left;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 2.52px;
  font-weight: 500;
  color: #1D7DD6;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-top: 5px;
  border-top: 1px solid #1D7DD6;
}
.sub-hero .img-wrap .text {
  text-align: left;
  color: #222222;
  font-size: 34px;
  line-height: 40px;
  letter-spacing: 0.68px;
  font-weight: 600;
  text-transform: capitalize;
}
.sub-hero .image-mask {
  background-color: black;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.75)), color-stop(75%, rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 75%);
  background: linear-gradient(to top, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 75%);
}
.sub-hero .content {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.36px;
  font-weight: 500;
}
.sub-hero .content .highlight {
  color: #005487;
}
@media (min-width: 1030px) {
  .sub-hero .img-wrap {
    width: 62%;
  }
  .sub-hero .img-wrap > img {
    width: 100%;
  }
  .sub-hero .img-wrap > img.mobile {
    display: none;
  }
  .sub-hero .img-wrap > img.desktop {
    display: block;
  }
  .sub-hero .img-wrap .header-text {
    bottom: -92px;
    left: 71%;
    width: 80%;
  }
  .sub-hero .img-wrap .text {
    font-size: 58px;
    line-height: 64px;
    letter-spacing: 1.44px;
    max-width: 525px;
  }
  .sub-hero .image-mask {
    background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.75)), color-stop(75%, rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(right, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 75%);
    background: linear-gradient(to left, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 75%);
  }
  .sub-hero .content {
    max-width: 450px;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.4px;
    margin-bottom: -75px;
    top: -125px;
    position: relative;
  }
}

.cta-boxes {
  margin: 20px 0;
  list-style: none;
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cta-boxes .cta-box {
  width: 100%;
  margin-bottom: 50px;
}
.cta-boxes .cta-box .title {
  position: relative;
  font-size: 30px;
  font-weight: 600;
}
.cta-boxes .cta-box .cta-inner {
  background-color: #EBEBEB;
  padding-top: 10px;
}
.cta-boxes .cta-box .button-wrap {
  background-color: #EBEBEB;
}
.cta-boxes .cta-box .title,
.cta-boxes .cta-box .cta-inner,
.cta-boxes .cta-box .button-wrap {
  padding-left: 20px;
  padding-right: 20px;
}
.cta-boxes .cta-box .title {
  font-size: 30px;
  line-height: 29px;
  background: -o-linear-gradient(top, #fff 42.5px, #EBEBEB 42.5px, #EBEBEB 999px);
  background: linear-gradient(to bottom, #fff 42.5px, #EBEBEB 42.5px, #EBEBEB 999px);
}
.cta-boxes .cta-box .sub-title {
  border-top: 1px solid #1D7DD6;
  color: #1D7DD6;
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  margin-bottom: 25px;
  padding-top: 10px;
}
.cta-boxes .cta-box .content {
  margin-bottom: -30px;
}
.cta-boxes .cta-box .button {
  top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  line-height: normal;
  text-decoration: none;
  margin-top: 1.5em;
  width: 100%;
  max-width: 225px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-box-shadow: 0px 20px 40px #00000029;
          box-shadow: 0px 20px 40px #00000029;
}
@media (min-width: 1030px) {
  .cta-boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .cta-boxes .cta-box {
    width: 30%;
    margin-bottom: 0;
  }
  .cta-boxes .cta-box .button {
    padding: 20px;
    max-width: 225px;
  }
}

.events-upcoming {
  background-image: url("../images/events-background.jpg");
  background-size: cover;
  background-position: center;
  padding: 25px 0;
}
@media (min-width: 1030px) {
  .events-upcoming {
    padding: 50px 0;
  }
}
.events-upcoming .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.events-upcoming .no-events {
  background-color: white;
  max-width: 630px;
  margin: 0;
}
.events-upcoming h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 33px;
  letter-spacing: 0.6px;
  color: #FFFFFF;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 20px;
}
.events-upcoming .event-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.events-upcoming .event-block:last-child {
  margin-bottom: 0;
}
.events-upcoming .event-block .date {
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background-color: rgba(119, 120, 123, 0.5);
  width: 90px;
}
.events-upcoming .event-block .date .month,
.events-upcoming .event-block .date .day {
  text-transform: uppercase;
  text-align: center;
}
.events-upcoming .event-block .date .month {
  background-color: #fff;
  padding: 2px 0;
}
.events-upcoming .event-block .date .day {
  font-size: 48px;
  font-weight: 300;
  line-height: 50px;
  color: #fff;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media (min-width: 1030px) {
  .events-upcoming .event-block .date {
    width: 130px;
  }
  .events-upcoming .event-block .date .day {
    font-size: 70px;
    line-height: normal;
  }
}
.events-upcoming .event-block .details {
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background-color: rgba(119, 120, 123, 0.5);
  width: calc( 100% - 90px );
  border: 1px solid #fff;
  padding: 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.events-upcoming .event-block .details .title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-transform: capitalize;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  margin-bottom: 5px;
  width: 100%;
}
.events-upcoming .event-block .details .detail-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.events-upcoming .event-block .details .deadline {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}
.events-upcoming .event-block .details .desktop-link {
  width: 25%;
  text-align: right;
  color: #F56B24;
}
@media (min-width: 360px) {
  .events-upcoming .event-block .details {
    padding: 10px 20px;
  }
  .events-upcoming .event-block .details .title {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 1030px) {
  .events-upcoming .event-block .details {
    width: 500px;
  }
  .events-upcoming .event-block .details .title {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .events-upcoming .event-block .details .deadline {
    font-size: 18px;
    line-height: 24px;
  }
}
.events-upcoming .event-block.no-date .details {
  width: 100%;
  max-width: 630px;
}
.events-upcoming .event-block .mobile-link,
.events-upcoming .event-block .desktop-link {
  color: #fff;
  text-transform: uppercase;
}
.events-upcoming .event-block .mobile-link {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 1030px) {
  .events-upcoming .event-block .mobile-link {
    display: none;
  }
}
.events-upcoming .event-block .desktop-link {
  display: none;
}
@media (min-width: 1030px) {
  .events-upcoming .event-block .desktop-link {
    display: inline-block;
  }
}

.base-testimonials .quote, .full-width-img-testimonial .quote, .testimonial-slider .quote {
  position: relative;
  color: #1D7DD6;
  font-size: 26px;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
}
@media (min-width: 1030px) {
  .base-testimonials .quote, .full-width-img-testimonial .quote, .testimonial-slider .quote {
    font-size: 46px;
    top: 50px;
  }
}
.base-testimonials .testimonial-slide, .full-width-img-testimonial .testimonial-slide, .testimonial-slider .testimonial-slide {
  background-color: #EBEBEB;
  border-radius: 40px;
  padding: 30px 50px;
  text-align: center;
  color: #222222;
}
.base-testimonials .testimonial-slide p, .full-width-img-testimonial .testimonial-slide p, .testimonial-slider .testimonial-slide p {
  font-style: italic;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1.2px;
  font-weight: 300;
}
.base-testimonials .testimonial-slide .name, .full-width-img-testimonial .testimonial-slide .name, .testimonial-slider .testimonial-slide .name {
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 1.6px;
  font-weight: 600;
  color: #005487;
  text-transform: uppercase;
  margin-top: 20px;
}
.base-testimonials .testimonial-slide .org, .full-width-img-testimonial .testimonial-slide .org, .testimonial-slider .testimonial-slide .org {
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 1.1px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 10px;
}
@media (min-width: 1030px) {
  .base-testimonials .testimonial-slide, .full-width-img-testimonial .testimonial-slide, .testimonial-slider .testimonial-slide {
    min-height: 320px;
  }
  .base-testimonials .testimonial-slide p, .full-width-img-testimonial .testimonial-slide p, .testimonial-slider .testimonial-slide p {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 1.44px;
  }
  .base-testimonials .testimonial-slide .name, .full-width-img-testimonial .testimonial-slide .name, .testimonial-slider .testimonial-slide .name {
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 2.2px;
  }
  .base-testimonials .testimonial-slide .org, .full-width-img-testimonial .testimonial-slide .org, .testimonial-slider .testimonial-slide .org {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1.8px;
  }
}

.testimonial-slider .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-slider .glide__arrows {
  display: none;
}
.testimonial-slider .glide__arrows .glide__arrow {
  background-color: transparent;
  border: none;
  color: #222222;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
}
.testimonial-slider .glide__arrows .glide__arrow--left {
  left: -5em;
}
.testimonial-slider .glide__arrows .glide__arrow--right {
  right: -5em;
}
@media (min-width: 1030px) {
  .testimonial-slider .glide__arrows {
    display: block;
  }
}
.testimonial-slider .glide__bullets {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: -24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.testimonial-slider .glide__bullets .glide__bullet {
  background-color: #77787B;
  width: 8px;
  height: 8px;
}
.testimonial-slider .glide__bullets .glide__bullet--active {
  background-color: #1D7DD6;
  width: 14px;
  height: 14px;
}

.recent-articles {
  background: -o-linear-gradient(top, #fff 225px, #EBEBEB 225px, #EBEBEB 999px);
  background: linear-gradient(to bottom, #fff 225px, #EBEBEB 225px, #EBEBEB 999px);
  margin-bottom: 40px;
}
.recent-articles .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.recent-articles h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 31px;
  text-align: left;
  color: #77787B;
  text-transform: capitalize;
}
.recent-articles .articles-loop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: -20px;
}
.recent-articles .articles-loop article {
  width: 100%;
  margin-top: 30px;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: #222222;
}
.recent-articles .articles-loop article:first-child {
  margin-top: 0;
}
.recent-articles .articles-loop article img {
  margin-bottom: 20px;
}
.recent-articles .articles-loop + a.button {
  top: 45px;
  left: 20px;
  padding: 10px 20px;
  text-align: left;
  font-size: 16px;
  line-height: normal;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-decoration: none;
  color: #fff;
  width: 100%;
  max-width: 225px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  -webkit-box-shadow: 0px 20px 40px #00000029;
          box-shadow: 0px 20px 40px #00000029;
}
@media (min-width: 1030px) {
  .recent-articles {
    background: transparent;
    padding-bottom: 40px;
  }
  .recent-articles .two-tone {
    background: -o-linear-gradient(top, #fff 225px, #EBEBEB 225px, #EBEBEB 999px);
    background: linear-gradient(to bottom, #fff 225px, #EBEBEB 225px, #EBEBEB 999px);
  }
  .recent-articles h2 {
    font-size: 32px;
    line-height: 31px;
    letter-spacing: 0.64px;
    text-align: center;
    margin-bottom: 55px;
  }
  .recent-articles .articles-loop {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 50px;
    margin-bottom: 0;
  }
  .recent-articles .articles-loop article {
    width: 30%;
    margin-top: 0;
  }
  .recent-articles .articles-loop article a {
    color: #222222;
    text-decoration: none;
  }
  .recent-articles .articles-loop article a:hover {
    color: #555555;
  }
  .recent-articles .articles-loop + a.button {
    padding: 20px;
    top: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: 1.5em;
  }
}

.mobile-sticky-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
}
.mobile-sticky-contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #F56B24;
  color: #fff;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 1.2px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-sticky-contact a span {
  padding: 20px;
}
.mobile-sticky-contact i {
  padding: 20px;
  background-color: #222222;
  color: #F56B24;
  font-size: 18px;
}
@media (min-width: 360px) {
  .mobile-sticky-contact a {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 1.6px;
  }
}
@media (min-width: 1030px) {
  .mobile-sticky-contact {
    display: none;
  }
}

.contact-modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1001;
  background-color: #222222;
  background-image: url("../images/background-mobile-mask.png");
  background-size: cover;
  top: -100vh;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-top: 17px;
}
.contact-modal.show {
  top: 0;
  opacity: 1;
}
.contact-modal .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: calc( 100vh - 2em );
  overflow-y: auto;
}
@media (min-width: 1030px) {
  .contact-modal .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
  }
}
.contact-modal .content {
  color: #fff;
}
.contact-modal .content .title {
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 0.6px;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-modal .content .text {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.36px;
  font-weight: 400;
  margin-bottom: 16px;
}
.contact-modal .content .text.desktop {
  display: none;
}
@media (min-width: 1030px) {
  .contact-modal {
    padding: 100px;
    background-image: url("../images/modal-background-desktop.png");
    background-position: center;
    background-size: cover;
  }
  .contact-modal .content,
.contact-modal .form {
    width: 48%;
  }
  .contact-modal .content {
    padding-right: 100px;
  }
  .contact-modal .content .text.mobile {
    display: none;
  }
  .contact-modal .content .text.desktop {
    display: block;
  }
}
.contact-modal .gform_wrapper .top_label .gfield_label,
.contact-modal .gform_wrapper legend.gfield_label {
  color: #fff;
  font-size: 14px;
  line-height: 13px;
  letter-spacing: 0.28px;
  font-weight: 700;
}
.contact-modal .gform_wrapper .ginput_container .gfield_checkbox li input,
.contact-modal .gform_wrapper .ginput_container .gfield_checkbox li input[type=checkbox],
.contact-modal .gform_wrapper .ginput_container .gfield_checkbox li input[type=radio] {
  margin-top: 0;
}
.contact-modal .gform_wrapper .ginput_container label {
  color: #fff;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.32;
  font-weight: 700;
}
.contact-modal .gform_wrapper .validation_error {
  display: none;
}
.contact-modal .gform_wrapper .gfield_error label,
.contact-modal .gform_wrapper .gfield_error .ginput_container,
.contact-modal .gform_wrapper .gfield_error .validation_message {
  padding: 0 5px 0 5px;
}
.contact-modal .gform_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-modal .gform_footer .gform_button.button {
  text-align: center;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 1.6px;
  font-weight: 600;
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  color: #fff;
}
@media (min-width: 1030px) {
  .contact-modal .gform_wrapper .stacked .ginput_complex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-modal .gform_wrapper .stacked .ginput_complex span {
    width: 100%;
  }
  .contact-modal .gform_footer .gform_button.button {
    width: 200px;
    margin: 0;
  }
}

.share-modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1001;
  background-color: rgba(34, 34, 34, 0.79);
  top: -100vh;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-top: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.share-modal.show {
  top: 0;
  opacity: 1;
}
.share-modal .wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 200px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 0;
  background-color: #EBEBEB;
  -webkit-box-shadow: rgba(34, 34, 34, 0.5);
          box-shadow: rgba(34, 34, 34, 0.5);
  border-radius: 20px;
}
@media (min-width: 1030px) {
  .share-modal .wrap {
    max-width: 768px;
  }
}
.share-modal .modal-close {
  right: 20px;
  top: 20px;
}
.share-modal .upper {
  padding: 20px;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(119, 120, 123, 0.25);
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.36px;
  font-weight: 600;
  color: #222222;
  text-transform: capitalize;
}
@media (min-width: 1030px) {
  .share-modal .upper {
    font-size: 28px;
    line-height: 30px;
    letter-spacing: 0.56px;
  }
}
.share-modal .lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.share-modal .lower .share-url {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 20px;
}
.share-modal .lower .share-url input {
  padding: 8px;
  background-color: #fff;
  border: 1px solid #77787B;
  border-right: none;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.26px;
  font-weight: 400;
  color: #77787B;
  max-width: 175px;
}
.share-modal .lower .share-url button {
  background-color: #222222;
  border: none;
  color: #fff;
  padding: 7px 15px;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1.2px;
  font-weight: 600;
  text-transform: uppercase;
}
.share-modal .lower .share-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 40px;
  color: #222222;
}
.share-modal .lower .share-icons a {
  margin-left: 40px;
  color: #222222;
}
.share-modal .lower .share-icons a:first-child {
  margin-left: 0;
}
@media (min-width: 1030px) {
  .share-modal .lower {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .share-modal .lower .share-url {
    margin-bottom: 0;
    margin-right: 40px;
  }
  .share-modal .lower .share-url input {
    padding: 11px;
    width: 100%;
    max-width: 350px;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.36px;
  }
  .share-modal .lower .share-url button {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1.6px;
  }
  .share-modal .lower .share-icons {
    font-size: 60px;
  }
}

.modal-close {
  display: block;
  position: absolute;
  top: 35px;
  right: 25px;
  color: #F56B24;
}
@media (min-width: 1030px) {
  .modal-close {
    top: 50px;
    right: 40px;
  }
}

.three-cols-details {
  background: -o-linear-gradient(top, #fff 60px, #EBEBEB 60px, #EBEBEB 999px);
  background: linear-gradient(to bottom, #fff 60px, #EBEBEB 60px, #EBEBEB 999px);
}
.three-cols-details .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.three-cols-details .col {
  margin-top: 40px;
}
.three-cols-details .col:first-child {
  margin-top: 0;
}
.three-cols-details .col .title {
  font-size: 30px;
  line-height: 29px;
  letter-spacing: 0.6px;
  font-weight: 600;
  max-width: 200px;
}
.three-cols-details .col .text {
  color: #005487;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: 0.4px;
  font-weight: 400;
  margin-top: 10px;
}
.three-cols-details .col .sub-text {
  display: none;
}
@media (min-width: 1030px) {
  .three-cols-details {
    background: -o-linear-gradient(top, #fff 95px, #EBEBEB 95px, #EBEBEB 999px);
    background: linear-gradient(to bottom, #fff 95px, #EBEBEB 95px, #EBEBEB 999px);
    padding-bottom: 50px;
  }
  .three-cols-details .three-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .three-cols-details .col {
    margin-top: 0;
    width: 30%;
    max-width: 340px;
  }
  .three-cols-details .col .title {
    font-size: 54px;
    line-height: 52px;
    letter-spacing: 1.08px;
    max-width: none;
  }
  .three-cols-details .col .text {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.44px;
    margin-top: 40px;
  }
  .three-cols-details .col .sub-text {
    display: block;
    border-top: 1px solid #005487;
    padding-top: 20px;
    margin-top: 20px;
    text-align: left;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.36px;
    font-weight: 400;
    color: #222222;
  }
}
@media (min-width: 1600px) {
  .three-cols-details .wrap {
    max-width: 1272px;
  }
}

.full-width-img-cta {
  position: relative;
  padding-top: 30px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60vh, #EBEBEB), color-stop(60vh, #fff), color-stop(100vh, #fff));
  background: -o-linear-gradient(top, #EBEBEB 60vh, #fff 60vh, #fff 100vh);
  background: linear-gradient(to bottom, #EBEBEB 60vh, #fff 60vh, #fff 100vh);
}
.full-width-img-cta .wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 40px;
}
.full-width-img-cta .title {
  color: #fff;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.2px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(34, 34, 34, 0.5);
  text-transform: capitalize;
}
.full-width-img-cta a.button {
  width: 100%;
  max-width: 225px;
  font-size: 16px;
  line-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-decoration: none;
}
.full-width-img-cta img.mobile {
  padding: 0 1em;
}
.full-width-img-cta img.desktop {
  display: none;
}
@media (min-width: 1030px) {
  .full-width-img-cta {
    background: none;
    padding-top: 0;
  }
  .full-width-img-cta img.mobile {
    display: none;
  }
  .full-width-img-cta img.desktop {
    display: block;
  }
  .full-width-img-cta .wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .full-width-img-cta .title {
    text-align: left;
    max-width: 350px;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0.6px;
  }
  .full-width-img-cta a.button {
    max-width: 320px;
    margin: 0;
  }
}
@media (min-width: 1600px) {
  .full-width-img-cta .wrap {
    max-width: 1272px;
  }
}

.video-image-ctas {
  background: -o-linear-gradient(top, #fff 320px, #EBEBEB 320px, #EBEBEB 999px);
  background: linear-gradient(to bottom, #fff 320px, #EBEBEB 320px, #EBEBEB 999px);
  padding-bottom: 40px;
}
.video-image-ctas .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.video-image-ctas h2.title,
.video-image-ctas h2 + p {
  font-size: 20px;
  max-width: 768px;
}
.video-image-ctas h2.title {
  line-height: 31px;
  letter-spacing: 0.36px;
  font-weight: 600;
  color: #77787B;
}
.video-image-ctas h2 + p {
  line-height: 28px;
  letter-spacing: 0.4px;
  font-weight: 400;
  color: #222222;
}
.video-image-ctas .ctas .cta {
  position: relative;
  margin-top: 30px;
}
.video-image-ctas .ctas .cta.cta-0 {
  margin-top: 0;
}
.video-image-ctas .ctas .title {
  font-size: 30px;
  line-height: 34px;
  letter-spacing: 0.6px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 5px;
}
.video-image-ctas .ctas .video-link {
  position: relative;
  display: block;
}
.video-image-ctas .ctas .image-mask {
  position: absolute;
  background-color: rgba(245, 107, 36, 0.85);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.video-image-ctas .ctas i.fa-play-circle {
  color: #fff;
  position: absolute;
  top: calc( 50% - 25px );
  left: calc( 50% - 25px );
  font-size: 50px;
}
@media (min-width: 1030px) {
  .video-image-ctas {
    background: -o-linear-gradient(top, #fff 270px, #EBEBEB 270px, #EBEBEB 999px);
    background: linear-gradient(to bottom, #fff 270px, #EBEBEB 270px, #EBEBEB 999px);
  }
  .video-image-ctas .ctas {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .video-image-ctas .ctas .cta {
    width: 30%;
    margin-top: 0;
  }
}
@media (min-width: 1600px) {
  .video-image-ctas .wrap {
    max-width: 1272px;
  }
}

.accordion-tabs {
  /* Accordion styles */
  /* Source: https://codepen.io/raubaca/pen/PZzpVe?editors=0100 */
}
.accordion-tabs input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.accordion-tabs.tabs {
  overflow: hidden;
}
.accordion-tabs .tab {
  width: 100%;
  color: #77787B;
  overflow: hidden;
}
.accordion-tabs .tab-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5em;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.36px;
  font-weight: 600;
  cursor: pointer;
  border-top: 1px solid #77787B;
  /* Icon */
}
.accordion-tabs .tab-label.tab-1 {
  border-top: none;
}
.accordion-tabs .tab-label:after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
}
.accordion-tabs .tab-content {
  max-height: 0;
  padding: 0;
  color: #005487;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.36px;
  -webkit-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
}
.accordion-tabs .tab-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #005487;
  cursor: pointer;
}
.accordion-tabs .tab-close:hover {
  background: #003454;
}
.accordion-tabs .tab.closer {
  display: none;
}
.accordion-tabs input:checked + .tab-label:after {
  position: relative;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  left: 5px;
  top: 5px;
}
.accordion-tabs input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 0 0.5em 0.5em 0.5em;
}

.tabs-and-links .wrap {
  padding: 1em 0;
}
.tabs-and-links .section-title {
  padding: 0 1rem 0.5rem 1rem;
  font-size: 20px;
  line-height: 31px;
  letter-spacing: 0.4px;
  font-weight: 600;
  color: #77787B;
  text-transform: capitalize;
}
@media (min-width: 1030px) {
  .tabs-and-links .section-title {
    padding: 0 0 2rem 0;
    font-size: 32px;
    line-height: 31px;
    letter-spacing: 0.64px;
  }
}

.content-tabs {
  margin-bottom: 40px;
}
.content-tabs ul.tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  overflow-x: scroll;
  white-space: nowrap;
  width: 100vw;
  position: relative;
}
.content-tabs ul.tabs li {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-bottom: 9px solid transparent;
  margin: 0 0 -15px 0;
  padding: 0 0 10px 0;
  display: block;
  position: relative;
  display: inline;
}
.content-tabs ul.tabs li a {
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  text-decoration: none;
  color: #77787B;
  display: block;
  padding: 5px 20px 8px 20px;
  outline: none;
  border-bottom: 1px solid #707070;
}
.content-tabs ul.tabs li.active {
  position: relative;
}
.content-tabs ul.tabs li.active a {
  color: #1D7DD6;
}
.content-tabs ul.tabs li.active:before {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 9px solid #1D7DD6;
  position: absolute;
  bottom: 6px;
  z-index: 10;
}
.content-tabs html ul.tabs li.active,
.content-tabs html ul.tabs li.active a:hover {
  /*--Makes sure that the active tab does not listen to the hover properties--*/
}
@media (min-width: 768px) {
  .content-tabs ul.tabs {
    width: auto;
    overflow-x: unset;
    overflow-y: unset;
    white-space: normal;
    left: unset;
    border-bottom: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 1030px) {
  .content-tabs ul.tabs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-tabs ul.tabs li a {
    border-bottom: none;
    padding-bottom: 0;
  }
  .content-tabs ul.tabs li.active {
    border-bottom: 9px solid #1D7DD6;
    margin-bottom: -4px;
  }
  .content-tabs ul.tabs li.active:before {
    display: none;
  }
}
.content-tabs .tab_container {
  width: 100%;
}
.content-tabs .tab_content {
  display: none;
  margin-top: -4px;
}
.content-tabs .tab_content .tab-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(10%, #EBEBEB), to(rgba(235, 235, 235, 0.92)));
  background: transparent -o-linear-gradient(top, #fff 0%, #EBEBEB 10%, rgba(235, 235, 235, 0.92) 100%);
  background: transparent linear-gradient(180deg, #fff 0%, #EBEBEB 10%, rgba(235, 235, 235, 0.92) 100%);
  /*--Online HEX 6+2 Convertor: https://www.quackit.com/css/color/tools/css_color_converter.cfm--*/
}
.content-tabs .tab_content .get-more-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  position: absolute;
  z-index: 100;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 10px 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-decoration: none;
}
.content-tabs .tab_content .get-more-button i {
  margin-left: 20px;
}
.content-tabs .tab_content .image {
  position: relative;
  width: 100vw;
}
.content-tabs .tab_content .image .get-more-button {
  display: none;
}
.content-tabs .tab_content .image img.desktop {
  display: none;
}
.content-tabs .tab_content .content {
  position: relative;
  padding: 20px;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: 0.44px;
  color: #77787B;
}
.content-tabs .tab_content .content .get-more-button {
  bottom: -20px;
}
.content-tabs .tab_content .content .text {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.48px;
  font-weight: 600;
  margin-top: 20px;
}
.content-tabs .tab_content .content ul {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.4px;
  font-weight: 400;
  list-style: none;
  padding: 0;
}
.content-tabs .tab_content .content ul li {
  border-top: 1px solid #1D7DD6;
  padding: 8px 0;
}
.content-tabs .tab_content .content ul li:first-child {
  border: none;
}
.content-tabs .featured-service {
  position: relative;
  margin: 2em 1em;
  padding: 0.5em 1em 1em 1em;
  background-color: rgba(0, 0, 255, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#EBEBEB), to(rgba(235, 235, 235, 0.7))) 0% 0% no-repeat padding-box;
  background: transparent -o-linear-gradient(top, #EBEBEB 0%, rgba(235, 235, 235, 0.7) 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #EBEBEB 0%, rgba(235, 235, 235, 0.7) 100%) 0% 0% no-repeat padding-box;
}
.content-tabs .featured-service .image {
  width: auto;
}
.content-tabs .featured-service .image img {
  max-width: 100%;
}
.content-tabs .featured-service .content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.content-tabs .featured-service .label {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1.68px;
  font-weight: 500;
  color: #1D7DD6;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
.content-tabs .featured-service .label.label-mobile {
  display: block;
}
.content-tabs .featured-service .label.label-desktop {
  display: none;
}
.content-tabs .featured-service .title {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.48px;
  font-weight: 600;
  color: #222222;
  text-transform: capitalize;
  margin-top: 0.5em;
}
.content-tabs .featured-service .description {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.36px;
  color: #222222;
  margin-top: 0.5em;
  padding-bottom: 2em;
}
.content-tabs .featured-service .link {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -30px;
  width: 70%;
  max-width: 200px;
}
.content-tabs .featured-service .link .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 1.5em;
  -webkit-box-shadow: 0px 20px 40px #00000029;
          box-shadow: 0px 20px 40px #00000029;
}
.content-tabs .tab_content.training .featured-service .label {
  background-color: #005487;
  color: #fff;
  margin-top: -15px;
  padding: 0 0.5em;
  width: 250px;
  text-align: center;
}
.content-tabs .tab_content.training .featured-service .label.label-mobile {
  display: inline-block;
}
.content-tabs .service-loop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin: 3em 1em 2em 1em;
}
.content-tabs .service-loop .service-box {
  position: relative;
  width: calc( 50% - 0.5em );
  background-color: #EBEBEB;
  padding: 0 0.5em 2em 0.5em;
  margin-bottom: 3em;
}
.content-tabs .service-loop .service-box h2 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.36px;
  font-weight: 600;
  color: #222222;
  text-transform: capitalize;
}
.content-tabs .service-loop .service-box:nth-child(odd) {
  margin-right: 1em;
}
.content-tabs .service-loop .service-box .label {
  background-color: #005487;
  color: #fff;
  margin-top: -7.5px;
  padding: 0 0.25em;
  width: 110px;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1.68px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
.content-tabs .service-loop .service-box .description {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.32px;
  color: #222222;
  padding-bottom: 1em;
  height: 96px;
  overflow-y: hidden;
}
.content-tabs .service-loop .service-box .link {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -20px;
  width: 80%;
  max-width: 200px;
}
.content-tabs .service-loop .service-box .link .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em;
  -webkit-box-shadow: 0px 20px 40px #00000029;
          box-shadow: 0px 20px 40px #00000029;
}
.content-tabs .service-loop .service-box .title.clickable:hover + .description + .link a,
.content-tabs .service-loop .service-box .description.clickable:hover + .link a {
  background-color: #dc510a;
}
@media (min-width: 768px) {
  .content-tabs .tab_content .image {
    width: 100%;
    left: unset;
  }
  .content-tabs .tab_content .image img {
    width: 100%;
  }
}
@media (min-width: 1030px) {
  .content-tabs .tab_container {
    border-top: 1px solid #707070;
  }
  .content-tabs .tab_content {
    margin-top: 0;
  }
  .content-tabs .tab_content .tab-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    background: transparent -o-linear-gradient(top, #EBEBEB 0, rgba(235, 235, 235, 0.92) 350px, #fff 350px, #fff 999px);
    background: transparent linear-gradient(180deg, #EBEBEB 0, rgba(235, 235, 235, 0.92) 350px, #fff 350px, #fff 999px);
    /*--Online HEX 6+2 Convertor: https://www.quackit.com/css/color/tools/css_color_converter.cfm--*/
  }
  .content-tabs .tab_content .image {
    left: 0;
    width: 100%;
    max-width: 350px;
  }
  .content-tabs .tab_content .image .get-more-button {
    display: block;
    bottom: unset;
    margin-top: -21px;
  }
  .content-tabs .tab_content .image img.mobile {
    display: none;
  }
  .content-tabs .tab_content .image img.desktop {
    display: block;
  }
  .content-tabs .tab_content .content {
    padding-left: 60px;
    max-width: 700px;
  }
  .content-tabs .tab_content .content .get-more-button {
    display: none;
  }
  .content-tabs .tab_content .content .text {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: 0.64px;
    margin-top: 0;
  }
  .content-tabs .tab_content .content ul {
    font-size: 28px;
    line-height: 41px;
    letter-spacing: 0.56px;
    margin-bottom: 0;
  }
  .content-tabs .featured-service {
    margin: 4em 0;
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .content-tabs .featured-service .image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 50%;
    max-width: none;
  }
  .content-tabs .featured-service .content-wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 50%;
    padding: 1em 2em;
  }
  .content-tabs .featured-service .label {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 2.24px;
    border-bottom: 1px solid #1D7DD6;
  }
  .content-tabs .featured-service .label.label-mobile {
    display: none;
  }
  .content-tabs .featured-service .label.label-desktop {
    display: block;
  }
  .content-tabs .featured-service .title {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0.64px;
  }
  .content-tabs .featured-service .description {
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.44px;
    margin-top: 0;
    padding-bottom: 1em;
  }
  .content-tabs .featured-service .link {
    left: 2em;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    bottom: -20px;
    width: 50%;
  }
  .content-tabs .featured-service .link .button {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 1.6px;
  }
  .content-tabs .tab_content.training .featured-service .label {
    border: none;
    margin-top: -27px;
    width: 375px;
  }
  .content-tabs .tab_content.training .featured-service .label.label-mobile {
    display: none;
  }
  .content-tabs .tab_content.training .featured-service .label.label-desktop {
    display: inline-block;
  }
  .content-tabs .service-loop {
    margin: 3em 0 2em 0;
  }
  .content-tabs .service-loop .service-box {
    width: calc( 25% - 1em );
    padding: 0 1em 2em 1em;
    margin-right: 1em;
  }
  .content-tabs .service-loop .service-box h2 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.64px;
  }
  .content-tabs .service-loop .service-box:nth-child(4n-4) {
    margin-right: 0;
  }
  .content-tabs .service-loop .service-box .label {
    width: 150px;
  }
  .content-tabs .service-loop .service-box .description {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.36px;
    height: 112px;
    margin-bottom: 1em;
  }
  .content-tabs .service-loop .service-box .link {
    width: 65%;
    left: 1em;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .content-tabs .service-loop .service-box .link .button {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 1.6px;
  }
}
@media (min-width: 1440px) {
  .content-tabs .tab_content .content {
    max-width: 920px;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: 0.64px;
  }
}

.resources-loop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.resources-loop .resource-list {
  width: 100%;
}
.resources-loop .resource-list .list-title {
  font-size: 16px;
  letter-spacing: 25px;
  letter-spacing: 1.28px;
  font-weight: 500;
  color: #1D7DD6;
  text-transform: uppercase;
  text-align: center;
}
.resources-loop .resource-list .resources-items {
  list-style: none;
  margin: 0 0 50px 0;
  padding: 0;
  border-top: 1px solid #222222;
}
.resources-loop .resource-list .resources-items .intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.resources-loop .resource-list .resources-items .intro .icon {
  margin-right: 5px;
}
.resources-loop .resource-list .resources-items .intro .title {
  margin-right: 10px;
}
.resources-loop .resource-list .resources-items .icon {
  width: 20px;
}
.resources-loop .resource-list .resources-items .title {
  width: calc( 100% - 50px );
  color: #77787B;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.32px;
  font-weight: 600;
  color: #77787B;
}
.resources-loop .resource-list .resources-items .action {
  width: 20px;
}
.resources-loop .resource-list .resources-items .action .close {
  display: none;
  color: #1D7DD6;
}
.resources-loop .resource-list .resources-items .action .open {
  display: block;
  color: #F56B24;
}
.resources-loop .resource-list .resources-items .content {
  opacity: 0;
  width: calc( 100% - 50px );
  margin-left: 25px;
  height: 0;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.32px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: -1;
}
.resources-loop .resource-list .resources-items .link {
  width: 50%;
}
.resources-loop .resource-list .resources-items .link .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.8px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 1em;
  width: 100%;
  text-decoration: none;
}
.resources-loop .resource-list .resources-items li {
  padding: 0 15px;
}
.resources-loop .resource-list .resources-items li.active {
  background-color: #EBEBEB;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.resources-loop .resource-list .resources-items li.active .intro {
  padding-top: 15px;
}
.resources-loop .resource-list .resources-items li.active .title {
  color: #222222;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.36px;
}
.resources-loop .resource-list .resources-items li.active .action .open {
  display: none;
}
.resources-loop .resource-list .resources-items li.active .content {
  z-index: 1;
  opacity: 1;
  height: auto;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.36px;
}
.resources-loop .resource-list .resources-items li:first-child {
  padding-top: 15px;
}
.resources-loop .resource-list .resources-items li:first-child .intro {
  padding-top: 0;
}
@media (min-width: 1030px) {
  .resources-loop {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .resources-loop .resource-list {
    width: 32%;
  }
  .resources-loop .resource-list .list-title {
    font-size: 20px;
    letter-spacing: 30px;
    letter-spacing: 2.8px;
  }
  .resources-loop .resource-list .resources-items .link {
    width: 65%;
  }
  .resources-loop .resource-list .resources-items .link .button {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 1.6px;
  }
}

.share-box {
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../images/share-corner.svg");
  background-size: cover;
  width: 40px;
  height: 40px;
  z-index: 100;
  cursor: pointer;
}
.share-box:hover {
  background-image: url("../images/share-corner-hover.svg");
}

.service-loop .share-box {
  width: 30px;
  height: 30px;
}

.full-width-img-testimonial {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  background-size: cover;
  background-position: -60% top;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.full-width-img-testimonial .testimonial-slide {
  position: relative;
  padding: 40px 30px;
}
.full-width-img-testimonial .testimonial-slide p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.2px;
}
.full-width-img-testimonial .testimonial-slide .org {
  margin-bottom: 0;
}
.full-width-img-testimonial .quote {
  position: absolute;
  top: -8px;
}
@media (min-width: 375px) and (min-height: 812px) {
  .full-width-img-testimonial {
    background-position: -55% top;
  }
}
@media (min-width: 768px) {
  .full-width-img-testimonial {
    width: 100%;
    height: 700px;
    background-position: center;
  }
  .full-width-img-testimonial .testimonial-slide {
    padding: 40px 50px 30px 50px;
    max-width: 600px;
  }
  .full-width-img-testimonial .testimonial-slide p {
    margin: 0;
    font-size: 22px;
    line-height: 38px;
    letter-spacing: 2.2px;
  }
  .full-width-img-testimonial .quote {
    top: -15px;
  }
}
@media (min-width: 1030px) {
  .full-width-img-testimonial {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .full-width-img-testimonial .testimonial-slide {
    max-width: 750px;
    left: 50%;
  }
}

.featured-item-with-cards {
  padding-bottom: 50px;
}
.featured-item-with-cards .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.featured-item-with-cards h2 {
  font-size: 20px;
  line-height: 31px;
  letter-spacing: 0.4px;
  font-weight: 600;
  color: #77787B;
  text-transform: capitalize;
}
.featured-item-with-cards .featured-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.featured-item-with-cards .image {
  border: 2px solid #EBEBEB;
  padding: 20px;
  text-align: center;
}
.featured-item-with-cards .image img.mobile {
  margin: 0 auto;
}
.featured-item-with-cards .image img.desktop {
  display: none;
}
.featured-item-with-cards .image .button {
  display: none;
}
.featured-item-with-cards .button {
  padding: 15px 30px;
  width: 100%;
  max-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.6px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}
.featured-item-with-cards .details {
  position: relative;
  background-color: #EBEBEB;
  padding: 15px;
}
.featured-item-with-cards .details .roof-text {
  color: #1D7DD6;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 1.6px;
  font-weight: 600;
  border-bottom: 1px solid #1D7DD6;
  margin-bottom: 15px;
}
.featured-item-with-cards .details .title {
  color: #222222;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.48px;
  font-weight: 600;
  margin-bottom: 10px;
}
.featured-item-with-cards .details .content {
  color: #005487;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.32px;
  font-weight: 400;
  padding-bottom: 30px;
}
.featured-item-with-cards .details .button {
  position: absolute;
  bottom: -37px;
}
.featured-item-with-cards .item-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 80px;
}
.featured-item-with-cards .item-cards .card {
  position: relative;
  width: 100%;
  background-color: #EBEBEB;
  padding: 20px 20px 50px 20px;
  margin-bottom: 60px;
}
.featured-item-with-cards .item-cards .card .title {
  font-size: 22px;
  line-height: 23px;
  letter-spacing: 0.44px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.featured-item-with-cards .item-cards .card .content {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.36px;
  font-weight: 400;
  color: #77787B;
}
.featured-item-with-cards .item-cards .card .button {
  position: absolute;
  bottom: -30px;
}
@media (min-width: 1030px) {
  .featured-item-with-cards {
    padding-top: 30px;
  }
  .featured-item-with-cards h2 {
    font-size: 32px;
    letter-spacing: 0.64px;
  }
  .featured-item-with-cards .featured-item {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .featured-item-with-cards .image {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .featured-item-with-cards .image img.mobile {
    display: none;
  }
  .featured-item-with-cards .image img.desktop {
    display: block;
  }
  .featured-item-with-cards .image .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    text-align: left;
    font-size: 16px;
    letter-spacing: 1.6px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
  }
  .featured-item-with-cards .details {
    width: 70%;
    padding: 50px 75px 50px 50px;
  }
  .featured-item-with-cards .details .button {
    display: none;
  }
  .featured-item-with-cards .item-cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .featured-item-with-cards .item-cards .card {
    width: 22%;
    margin-left: 4%;
  }
  .featured-item-with-cards .item-cards .card:nth-child(4n+1) {
    margin-left: 0;
  }
}

.text-with-title-and-image {
  position: relative;
}
.text-with-title-and-image .wrap {
  background-color: #EBEBEB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  margin-top: 120px;
}
.text-with-title-and-image .title {
  font-size: 20px;
  line-height: 31px;
  letter-spacing: 0.4px;
  font-weight: 600;
  color: #77787B;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: capitalize;
}
.text-with-title-and-image .content {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.32px;
  font-weight: 400;
  color: #222222;
}
.text-with-title-and-image .left {
  padding-top: 1.5em;
  padding-bottom: 0.75em;
  margin-top: -100px;
}
.text-with-title-and-image .left .content {
  display: none;
}
.text-with-title-and-image .right {
  margin-bottom: 30px;
}
.text-with-title-and-image .right img.mobile {
  margin-bottom: 30px;
}
.text-with-title-and-image .right img.desktop {
  display: none;
}
@media (min-width: 1030px) {
  .text-with-title-and-image .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 50px;
  }
  .text-with-title-and-image .title {
    font-size: 32px;
    line-height: 34px;
    letter-spacing: 0.64px;
    margin-bottom: 1em;
  }
  .text-with-title-and-image .left {
    width: 45%;
    margin-top: -80px;
    padding-bottom: 1.5em;
  }
  .text-with-title-and-image .left .content {
    display: block;
  }
  .text-with-title-and-image .right {
    width: 50%;
    margin-left: 5%;
    margin-top: -80px;
    margin-bottom: 0;
  }
  .text-with-title-and-image .right img.mobile {
    display: none;
  }
  .text-with-title-and-image .right img.desktop {
    display: block;
    max-width: none;
  }
  .text-with-title-and-image .right .content {
    display: none;
  }
}
@media (min-width: 1600px) {
  .text-with-title-and-image .wrap {
    max-width: 1360px;
    margin: 50px auto 0 auto;
  }
}

.grid-aside aside {
  background-color: transparent;
}
@media (min-width: 768px) {
  .grid-aside #three-cols-details-v2 {
    grid-column: 2/-1;
  }
}

.three-cols-details-v2 .wrap {
  margin: 0 auto;
  /*
  background: linear-gradient(
  	to bottom,
  	$isabelline 0%,
  	$isabelline 80%,
  	$white 80%,
  	$white 100%
  );
  */
}
@media (min-width: 1600px) {
  .three-cols-details-v2 .wrap {
    max-width: 1360px;
  }
}
.three-cols-details-v2 .title {
  margin-top: 10px;
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0.4px;
  font-weight: 600;
  color: #77787B;
  text-transform: capitalize;
}
.three-cols-details-v2 .subtitle {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.36px;
  font-weight: 500;
  color: #005487;
}
.three-cols-details-v2 .intro-text {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.32px;
  font-weight: 500;
}
.three-cols-details-v2 .three-cols {
  margin: -1em -1.5em;
  padding: 1em 1.5em;
  padding-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.three-cols-details-v2 .three-cols .col {
  width: 30%;
}
.three-cols-details-v2 .three-cols .col a {
  color: #222222;
  text-decoration: none;
}
.three-cols-details-v2 .three-cols .image-box {
  position: relative;
  margin-bottom: 40px;
}
.three-cols-details-v2 .three-cols .image-box img {
  position: relative;
  width: 100%;
}
.three-cols-details-v2 .three-cols .image-box .name {
  position: absolute;
  white-space: nowrap;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  background: #005487 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 0px 20px 40px rgba(34, 34, 34, 0.4);
          box-shadow: 0px 20px 40px rgba(34, 34, 34, 0.4);
  padding: 10px 15px;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 1.6px;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
}
.three-cols-details-v2 .three-cols .job-title {
  color: #77787B;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.4px;
  font-weight: 500;
  margin-bottom: 20px;
}
.three-cols-details-v2 .three-cols .text {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.29px;
  font-weight: 400;
  margin-bottom: 16px;
}
.three-cols-details-v2 .three-cols .text-more {
  display: none;
}
.three-cols-details-v2 .three-cols .text-more.open {
  display: block;
}
.three-cols-details-v2 .three-cols .read-more {
  font-size: 16px;
  letter-spacing: 24px;
  letter-spacing: 1.6px;
  font-weight: 600;
  color: #1D7DD6;
  text-transform: uppercase;
  cursor: pointer;
}
.three-cols-details-v2 .glide__slides {
  white-space: normal;
}
@media (min-width: 1030px) {
  .three-cols-details-v2 .top {
    background-color: #EBEBEB;
    margin: -1em -1.5em;
    padding: 1em 1.5em;
  }
  .three-cols-details-v2 .title,
.three-cols-details-v2 .subtitle {
    max-width: 50%;
  }
  .three-cols-details-v2 .title {
    font-size: 32px;
    line-height: 34px;
    letter-spacing: 0.64px;
  }
  .three-cols-details-v2 .subtitle {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.4px;
  }
  .three-cols-details-v2 .intro-text {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.36px;
  }
  .three-cols-details-v2 .three-cols {
    background: -o-linear-gradient(top, #EBEBEB 0%, #EBEBEB 250px, #fff 250px, #fff 100%);
    background: linear-gradient(to bottom, #EBEBEB 0%, #EBEBEB 250px, #fff 250px, #fff 100%);
  }
  .three-cols-details-v2 .three-cols .job-title {
    font-size: 20px;
  }
  .three-cols-details-v2 .three-cols .text {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.36px;
  }
  .three-cols-details-v2 .three-cols .read-more {
    line-height: 28px;
  }
  .three-cols-details-v2 .glide {
    max-width: 1300px;
  }
}

.inner-page-content,
.inner-blog-content,
.inner-services-content {
  background: -o-linear-gradient(top, #EBEBEB 401px, #fff 401px, #fff 999px);
  background: linear-gradient(to bottom, #EBEBEB 401px, #fff 401px, #fff 999px);
  margin: 0 1em;
}
.inner-page-content .wrap,
.inner-blog-content .wrap,
.inner-services-content .wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 786px) {
  .inner-page-content .wrap,
.inner-blog-content .wrap,
.inner-services-content .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.inner-page-content aside,
.inner-blog-content aside,
.inner-services-content aside {
  width: 100%;
}
@media (min-width: 786px) {
  .inner-page-content aside,
.inner-blog-content aside,
.inner-services-content aside {
    min-width: 33%;
    max-width: 320px;
  }
}
.inner-page-content .page-title,
.inner-blog-content .page-title,
.inner-services-content .page-title {
  font-size: 32px;
  line-height: 34px;
  letter-spacing: 0.64px;
  font-weight: 600;
  color: #77787B;
  text-transform: capitalize;
  margin-bottom: 40px;
}
.inner-page-content .page,
.inner-page-content .post,
.inner-blog-content .page,
.inner-blog-content .post,
.inner-services-content .page,
.inner-services-content .post {
  -webkit-box-shadow: 0px 10px 40px #77787B4E;
          box-shadow: 0px 10px 40px #77787B4E;
  padding-bottom: 0.5em;
  margin-bottom: 40px;
  background-color: #fff;
}
.inner-page-content .page a,
.inner-page-content .post a,
.inner-blog-content .page a,
.inner-blog-content .post a,
.inner-services-content .page a,
.inner-services-content .post a {
  text-decoration: none;
}
.inner-page-content .page .page-title,
.inner-page-content .page .post-title,
.inner-page-content .post .page-title,
.inner-page-content .post .post-title,
.inner-blog-content .page .page-title,
.inner-blog-content .page .post-title,
.inner-blog-content .post .page-title,
.inner-blog-content .post .post-title,
.inner-services-content .page .page-title,
.inner-services-content .page .post-title,
.inner-services-content .post .page-title,
.inner-services-content .post .post-title {
  font-size: 20px;
  line-height: 31px;
  letter-spacing: 0.4px;
  font-weight: 600;
  color: #222222;
  margin-top: 0.5em;
}
.inner-page-content .page .post-image img,
.inner-page-content .post .post-image img,
.inner-blog-content .page .post-image img,
.inner-blog-content .post .post-image img,
.inner-services-content .page .post-image img,
.inner-services-content .post .post-image img {
  max-height: 560px;
  width: auto;
}
.inner-page-content .page .post-image.no-image,
.inner-page-content .post .post-image.no-image,
.inner-blog-content .page .post-image.no-image,
.inner-blog-content .post .post-image.no-image,
.inner-services-content .page .post-image.no-image,
.inner-services-content .post .post-image.no-image {
  padding-top: 0.25em;
}
.inner-page-content .page .post-details,
.inner-page-content .post .post-details,
.inner-blog-content .page .post-details,
.inner-blog-content .post .post-details,
.inner-services-content .page .post-details,
.inner-services-content .post .post-details {
  margin: 0 1em;
}
.inner-page-content .page .post-meta,
.inner-page-content .post .post-meta,
.inner-blog-content .page .post-meta,
.inner-blog-content .post .post-meta,
.inner-services-content .page .post-meta,
.inner-services-content .post .post-meta {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #77787B;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.48px;
  font-weight: 500;
}
.inner-page-content .page .post-taxonomy,
.inner-page-content .post .post-taxonomy,
.inner-blog-content .page .post-taxonomy,
.inner-blog-content .post .post-taxonomy,
.inner-services-content .page .post-taxonomy,
.inner-services-content .post .post-taxonomy {
  width: 100%;
  color: #005487;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  border-top: 1px solid #005487;
  margin-top: 5px;
  padding-top: 6px;
}
.inner-page-content .page .posted-on,
.inner-page-content .post .posted-on,
.inner-blog-content .page .posted-on,
.inner-blog-content .post .posted-on,
.inner-services-content .page .posted-on,
.inner-services-content .post .posted-on {
  position: relative;
}
.inner-page-content .page .posted-on:before,
.inner-page-content .post .posted-on:before,
.inner-blog-content .page .posted-on:before,
.inner-blog-content .post .posted-on:before,
.inner-services-content .page .posted-on:before,
.inner-services-content .post .posted-on:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: #005487;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -1em;
}
.inner-page-content .page .post-excerpt,
.inner-page-content .post .post-excerpt,
.inner-blog-content .page .post-excerpt,
.inner-blog-content .post .post-excerpt,
.inner-services-content .page .post-excerpt,
.inner-services-content .post .post-excerpt {
  display: none;
}
body.author .inner-page-content .posted-on:before,
body.author .inner-blog-content .posted-on:before,
body.author .inner-services-content .posted-on:before {
  display: none;
}
body.author .inner-page-content .posted-by,
body.author .inner-blog-content .posted-by,
body.author .inner-services-content .posted-by {
  display: none;
}
@media (min-width: 786px) {
  .inner-page-content .page,
.inner-page-content .post,
.inner-blog-content .page,
.inner-blog-content .post,
.inner-services-content .page,
.inner-services-content .post {
    padding-bottom: 0;
  }
  .inner-page-content .page .post-meta,
.inner-page-content .post .post-meta,
.inner-blog-content .page .post-meta,
.inner-blog-content .post .post-meta,
.inner-services-content .page .post-meta,
.inner-services-content .post .post-meta {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    border-bottom: 1px solid #005487;
    margin-bottom: 5px;
    padding-bottom: 6px;
  }
  .inner-page-content .page .post-meta span,
.inner-page-content .post .post-meta span,
.inner-blog-content .page .post-meta span,
.inner-blog-content .post .post-meta span,
.inner-services-content .page .post-meta span,
.inner-services-content .post .post-meta span {
    width: auto;
    margin-right: 1.5em;
  }
  .inner-page-content .page .post-taxonomy,
.inner-page-content .post .post-taxonomy,
.inner-blog-content .page .post-taxonomy,
.inner-blog-content .post .post-taxonomy,
.inner-services-content .page .post-taxonomy,
.inner-services-content .post .post-taxonomy {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    width: auto;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    text-align: right;
  }
  .inner-page-content .entry-content > a,
.inner-blog-content .entry-content > a,
.inner-services-content .entry-content > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .inner-page-content .entry-content .post-image,
.inner-blog-content .entry-content .post-image,
.inner-services-content .entry-content .post-image {
    width: 30%;
  }
  .inner-page-content .entry-content .post-image.no-image,
.inner-blog-content .entry-content .post-image.no-image,
.inner-services-content .entry-content .post-image.no-image {
    padding-top: 0;
  }
  .inner-page-content .entry-content .post-details,
.inner-blog-content .entry-content .post-details,
.inner-services-content .entry-content .post-details {
    width: 70%;
  }
}
@media (min-width: 1030px) {
  .inner-page-content,
.inner-blog-content,
.inner-services-content {
    background: -o-linear-gradient(top, #EBEBEB 450px, #fff 450px, #fff 999px);
    background: linear-gradient(to bottom, #EBEBEB 450px, #fff 450px, #fff 999px);
    padding-top: 1em;
  }
  .inner-page-content main,
.inner-blog-content main,
.inner-services-content main {
    padding-right: 50px;
  }
  .inner-page-content .page,
.inner-page-content .post,
.inner-blog-content .page,
.inner-blog-content .post,
.inner-services-content .page,
.inner-services-content .post {
    padding-bottom: 0.5em;
  }
  .inner-page-content .page .page-title,
.inner-page-content .page .post-title,
.inner-page-content .post .page-title,
.inner-page-content .post .post-title,
.inner-blog-content .page .page-title,
.inner-blog-content .page .post-title,
.inner-blog-content .post .page-title,
.inner-blog-content .post .post-title,
.inner-services-content .page .page-title,
.inner-services-content .page .post-title,
.inner-services-content .post .page-title,
.inner-services-content .post .post-title {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.48px;
  }
  .inner-page-content .page .post-excerpt,
.inner-page-content .post .post-excerpt,
.inner-blog-content .page .post-excerpt,
.inner-blog-content .post .post-excerpt,
.inner-services-content .page .post-excerpt,
.inner-services-content .post .post-excerpt {
    display: block;
    text-align: left;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.36px;
    color: #222222;
  }
}
.inner-page-content .back-to-blog-link,
.inner-blog-content .back-to-blog-link,
.inner-services-content .back-to-blog-link {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.36px;
  font-weight: 600;
  color: #77787B;
  text-transform: uppercase;
  margin-bottom: 1em;
  display: block;
  text-decoration: none;
}
.inner-page-content .back-to-blog-link:hover,
.inner-blog-content .back-to-blog-link:hover,
.inner-services-content .back-to-blog-link:hover {
  color: #5e5f61;
}
.inner-page-content .back-to-blog-link i,
.inner-blog-content .back-to-blog-link i,
.inner-services-content .back-to-blog-link i {
  color: #F56B24;
  font-weight: 500;
}
@media (min-width: 1030px) {
  .inner-page-content .back-to-blog-link,
.inner-blog-content .back-to-blog-link,
.inner-services-content .back-to-blog-link {
    margin-top: -1em;
  }
}
.single-post .inner-page-content .entry-content .post-image,
.single-post .inner-blog-content .entry-content .post-image,
.single-post .inner-services-content .entry-content .post-image {
  width: 100%;
}
.single-post .inner-page-content .entry-content .post-image img,
.single-post .inner-blog-content .entry-content .post-image img,
.single-post .inner-services-content .entry-content .post-image img {
  width: auto;
}
.single-post .inner-page-content .entry-content .post-image img.desktop,
.single-post .inner-blog-content .entry-content .post-image img.desktop,
.single-post .inner-services-content .entry-content .post-image img.desktop {
  display: none;
}
.single-post .inner-page-content .entry-content .single-title,
.single-post .inner-blog-content .entry-content .single-title,
.single-post .inner-services-content .entry-content .single-title {
  font-size: 20px;
  line-height: 31px;
  letter-spacing: 0.4px;
  font-weight: 600;
  color: #222222;
  margin-top: 1em;
}
.single-post .inner-page-content .entry-content .post-content img,
.single-post .inner-blog-content .entry-content .post-content img,
.single-post .inner-services-content .entry-content .post-content img {
  width: 100%;
}
@media (min-width: 768px) {
  .single-post .inner-page-content .entry-content .post-image img.desktop,
.single-post .inner-blog-content .entry-content .post-image img.desktop,
.single-post .inner-services-content .entry-content .post-image img.desktop {
    display: block;
  }
  .single-post .inner-page-content .entry-content .post-image img.mobile,
.single-post .inner-blog-content .entry-content .post-image img.mobile,
.single-post .inner-services-content .entry-content .post-image img.mobile {
    display: none;
  }
  .single-post .inner-page-content .entry-content .single-title,
.single-post .inner-blog-content .entry-content .single-title,
.single-post .inner-services-content .entry-content .single-title {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.48px;
  }
  .single-post .inner-page-content .entry-content .post-details,
.single-post .inner-blog-content .entry-content .post-details,
.single-post .inner-services-content .entry-content .post-details {
    width: calc( 100% - 2em );
  }
  .single-post .inner-page-content .entry-content .post-content img,
.single-post .inner-blog-content .entry-content .post-content img,
.single-post .inner-services-content .entry-content .post-content img {
    width: auto;
  }
}
@media (min-width: 1030px) {
  .single-post .inner-page-content .entry-content .post-details,
.single-post .inner-blog-content .entry-content .post-details,
.single-post .inner-services-content .entry-content .post-details {
    padding-bottom: 0.5em;
  }
}

.inner-services-content {
  background: -o-linear-gradient(top, #EBEBEB 350px, #fff 350px, #fff 999px);
  background: linear-gradient(to bottom, #EBEBEB 350px, #fff 350px, #fff 999px);
}
.inner-services-content .feature-image.desktop {
  display: none;
}
.inner-services-content .post-details {
  margin-top: 50px;
}
.inner-services-content .post-taxonomy {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 2.8px;
  font-weight: 500;
  color: #1D7DD6;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.inner-services-content .single-title {
  font-size: 34px;
  line-height: 40px;
  letter-spacing: 0.68px;
  font-weight: 600;
  color: #222222;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .inner-services-content .entry-content .post-details {
    width: 100%;
  }
}
@media (min-width: 1030px) {
  .inner-services-content {
    background: -o-linear-gradient(top, #EBEBEB 300px, #fff 300px, #fff 999px);
    background: linear-gradient(to bottom, #EBEBEB 300px, #fff 300px, #fff 999px);
  }
  .inner-services-content .sidebar-blog {
    margin-top: -30px;
  }
  .inner-services-content .feature-image.mobile {
    display: none;
  }
  .inner-services-content .feature-image.desktop {
    display: block;
  }
  .inner-services-content .post-details {
    margin-top: 175px;
  }
  .inner-services-content .single-title {
    font-size: 54px;
    line-height: 52px;
    letter-spacing: 1.08px;
  }
}

@media (min-width: 768px) {
  .inner-page-content .entry-content .post-details {
    width: 100%;
  }
}
@media (min-width: 1030px) {
  .inner-page-content main {
    padding-right: 0;
  }
  .inner-page-content article {
    padding: 40px;
  }
}

@media (min-width: 768px) {
  header.header.in-view + nav + #blog-content .inner-services-content .entry-content .post-details,
header.header.in-view + nav + #blog-content .inner-page-content .entry-content .post-details {
    width: 90%;
  }
}

.overlay-modal .gform_confirmation_wrapper {
  color: #fff;
}
.overlay-modal .gform_confirmation_wrapper a.button {
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
}
.overlay-modal .form a.button {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 200px;
}
.overlay-modal .form a.button i {
  font-style: normal;
}
.overlay-modal .form.type-link a.button.type-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.overlay-modal .form.type-download a.button.type-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.overlay-modal .form.type-video a.button.type-video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.overlay-modal .form.type-url a.button.type-url {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#respond .comment-reply-title {
  font-size: 20px;
  line-height: 31px;
  letter-spacing: 0.4px;
  font-weight: 600;
  color: #222222;
  border-top: 1px solid #1D7DD6;
  padding-top: 1em;
}
#respond .comment-form {
  width: 100%;
  padding-bottom: 0.5em;
}
#respond .comment-form input[type=text], #respond .comment-form input[type=email], #respond .comment-form input[type=url] {
  width: 100%;
}
#respond .form-submit input {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 1030px) {
  #respond .comment-reply-title {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.48px;
  }
}

.pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination .page-numbers span, .pagination .page-numbers a {
  display: block;
  width: 25px;
  height: 25px;
  text-align: center;
  color: #77787B;
  text-decoration: none;
}
.pagination .page-numbers a:hover {
  color: #1D7DD6;
}
.pagination .page-numbers .current {
  border: 1px solid #1D7DD6;
  color: #1D7DD6;
}

.sidebar h2 {
  border-top: 1px solid #1D7DD6;
  padding-top: 5px;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 2.24px;
  font-weight: 500;
  color: #1D7DD6;
  text-transform: uppercase;
  margin-top: 40px;
}
.sidebar h2:first-of-type {
  margin-top: 0;
}
.sidebar .taxonomy-list {
  padding: 0;
  list-style: none;
}
.sidebar .taxonomy-list li a {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.48px;
  font-weight: 700;
  color: #77787B;
  text-transform: capitalize;
  display: inline-block;
  padding: 5px 0;
}
.sidebar .contact-form {
  background-color: #222222;
  color: #fff;
  margin-top: 25px;
  margin-bottom: 50px;
  padding: 1em;
}
.sidebar .contact-form .title {
  font-size: 28px;
  line-height: 30px;
  letter-spacing: 0.56px;
  font-weight: 600;
  color: #F56B24;
}
.sidebar .contact-form .gform_wrapper span.gform_description {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.4px;
  font-weight: 700;
}
.sidebar .contact-form .gform_wrapper .gform_footer input.button {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1.4px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 1030px) {
  .sidebar {
    z-index: 100;
  }
  .sidebar h2 {
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 2.52px;
  }
  .sidebar .contact-form {
    margin-top: 100px;
  }
  .sidebar .contact-form .gform_wrapper .gform_footer input.button {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 1.6px;
  }
  .sidebar .no-featured-image .contact-form {
    margin-top: 0;
  }
}

.you-may-also-like {
  margin-bottom: 50px;
}
.you-may-also-like .title {
  border-top: 1px solid #1D7DD6;
  padding-top: 4px;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 1.82px;
  font-weight: 500;
  color: #1D7DD6;
  text-transform: uppercase;
}
.you-may-also-like ul {
  list-style: none;
  padding: 0;
}
.you-may-also-like ul li {
  height: 60px;
  margin-bottom: 1em;
}
.you-may-also-like ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  text-decoration: none;
}
.you-may-also-like ul li a:hover i {
  background-color: #dc510a;
}
.you-may-also-like ul li .item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#EBEBEB), to(rgba(235, 235, 235, 0.7))) 0% 0% no-repeat padding-box;
  background: transparent -o-linear-gradient(top, #EBEBEB 0%, rgba(235, 235, 235, 0.7) 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #EBEBEB 0%, rgba(235, 235, 235, 0.7) 100%) 0% 0% no-repeat padding-box;
  width: calc( 100% - 60px );
  height: 100%;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.26px;
  font-weight: 600;
  color: #222222;
  text-transform: capitalize;
}
.you-may-also-like ul li i {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  width: 60px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F56B24;
}
@media (min-width: 1030px) {
  .you-may-also-like .title {
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 2.52px;
  }
  .you-may-also-like ul li .item-title {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.36px;
  }
}

.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  position: relative;
  max-width: 1024px;
}
.lity-iframe .lity-close,
.lity-youtube .lity-close,
.lity-vimeo .lity-close,
.lity-facebookvideo .lity-close,
.lity-googlemaps .lity-close {
  top: 10px;
  right: 10px;
  color: #F56B24;
  font-size: 50px;
}
@media (min-width: 1030px) {
  .lity-iframe .lity-close,
.lity-youtube .lity-close,
.lity-vimeo .lity-close,
.lity-facebookvideo .lity-close,
.lity-googlemaps .lity-close {
    position: absolute;
    top: 0;
    right: -40px;
    color: #F56B24;
    font-size: 50px;
  }
}

.grid #footer {
  background-color: #222222;
}

footer.footer #inner-footer {
  padding-top: 50px;
  padding-bottom: 75px;
  position: relative;
  background-image: url("../images/background-desktop-footer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
footer.footer #inner-footer .back-to-top {
  position: absolute;
  bottom: 165px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: #77787B;
  font-size: 24px;
  color: #fff;
  border: 0;
  cursor: pointer;
}
footer.footer #inner-footer .footer-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  font-weight: 500;
}
footer.footer #inner-footer a {
  color: #fff;
  text-decoration: none;
}
footer.footer #inner-footer a:hover {
  color: #cccccc;
}
footer.footer #inner-footer .address-info:before,
footer.footer #inner-footer .nav-menu:before {
  content: "";
  display: block;
  margin-top: 20px;
  height: 20px;
  border-top: 2px solid #F56B24;
  width: 50px;
}
footer.footer #inner-footer .taglines {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
footer.footer #inner-footer .taglines strong,
footer.footer #inner-footer .taglines i {
  display: block;
}
footer.footer #inner-footer .taglines strong {
  font-weight: 800;
}
footer.footer #inner-footer .taglines i {
  color: #F56B24;
}
footer.footer #inner-footer .address-info label,
footer.footer #inner-footer .phone-info label {
  display: block;
  font-size: 16px;
  line-height: 31px;
}
footer.footer #inner-footer .address-info {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
footer.footer #inner-footer .address-info address,
footer.footer #inner-footer .address-info a {
  font-size: 18px;
  line-height: 31px;
}
footer.footer #inner-footer .address-info address {
  font-style: normal;
}
footer.footer #inner-footer .address-info .block:last-child {
  display: none;
}
footer.footer #inner-footer .phone-info {
  margin-top: 20px;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
footer.footer #inner-footer .phone-info .block:last-child {
  margin-top: 20px;
}
footer.footer #inner-footer .social-icons {
  font-size: 30px;
}
footer.footer #inner-footer .social-icons a {
  margin-right: 10px;
}
footer.footer #inner-footer .nav-menu {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
footer.footer #inner-footer .nav.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer.footer #inner-footer .nav.footer-nav li {
  padding: 5px 5px 0 0;
}
footer.footer #inner-footer .nav.footer-nav li a {
  padding: 0;
}
footer.footer #inner-footer .nav.footer-nav li.no-mobile {
  display: none;
}
footer.footer #inner-footer .get-more-info {
  font-size: 16px;
  margin-top: 5px;
  width: 130px;
}
footer.footer #inner-footer .copyright {
  margin-top: 40px;
  color: #77787B;
  font-size: 14px;
  line-height: 18px;
}
@media (min-width: 1030px) {
  footer.footer #inner-footer {
    background-size: contain;
    background-position: right;
  }
  footer.footer #inner-footer .back-to-top {
    top: 0;
    bottom: unset;
    right: 50px;
  }
  footer.footer #inner-footer .footer-cols {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer.footer #inner-footer .taglines,
footer.footer #inner-footer .phone-info {
    width: calc( 100% / 6 );
  }
  footer.footer #inner-footer .address-info,
footer.footer #inner-footer .nav-menu {
    width: calc( ( 100% / 6 ) * 2 );
  }
  footer.footer #inner-footer .address-info:before,
footer.footer #inner-footer .nav-menu:before {
    display: none;
  }
  footer.footer #inner-footer .address-info > div:first-child,
footer.footer #inner-footer .phone-info > div:first-child {
    min-height: 115px;
  }
  footer.footer #inner-footer .address-info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  footer.footer #inner-footer .address-info .block:last-child {
    display: block;
  }
  footer.footer #inner-footer .phone-info {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 0;
  }
  footer.footer #inner-footer .phone-info .block:last-child {
    margin-top: 0;
  }
  footer.footer #inner-footer .nav-menu {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  footer.footer #inner-footer .nav.footer-nav li {
    margin-bottom: 3px;
  }
  footer.footer #inner-footer .nav.footer-nav li:first-child {
    padding-top: 0;
  }
  footer.footer #inner-footer .nav.footer-nav li a {
    padding: 0.2em;
    line-height: 1.5;
  }
  footer.footer #inner-footer .nav.footer-nav li.get-more-info {
    padding: 5px 10px;
  }
  footer.footer #inner-footer .nav.footer-nav li.no-mobile {
    display: block;
  }
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

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

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* LANDING PAGE CUSTOM CSS FOR GRAVITY FORMS */
@media only screen and (min-width: 641px) {
  #gform_wrapper_18 div.ginput_complex.ginput_container.gf_name_has_2 span {
    width: 49%;
  }
}

.et-db #et-boc .et-l .et_pb_module #gform_wrapper_18 {
  margin-bottom: 40px;
}
.et-db #et-boc .et-l .et_pb_module #gform_wrapper_18 input.text:not(.qty),
.et-db #et-boc .et-l .et_pb_module #gform_wrapper_18 input.title,
.et-db #et-boc .et-l .et_pb_module #gform_wrapper_18 input[type=email],
.et-db #et-boc .et-l .et_pb_module #gform_wrapper_18 input[type=password],
.et-db #et-boc .et-l .et_pb_module #gform_wrapper_18 input[type=tel],
.et-db #et-boc .et-l .et_pb_module #gform_wrapper_18 input[type=text],
.et-db #et-boc .et-l .et_pb_module #gform_wrapper_18 input select,
.et-db #et-boc .et-l .et_pb_module #gform_wrapper_18 input textarea {
  width: 95%;
}
.et-db #et-boc .et-l .et_pb_module #gform_wrapper_18 .ginput_container,
.et-db #et-boc .et-l .et_pb_module #gform_wrapper_18 .ginput_container span {
  margin-bottom: 0.25em;
}
.et-db #et-boc .et-l .et_pb_module #gform_wrapper_18 .gform_button {
  font-weight: 500;
  font-size: 15px;
  padding: 10px;
}
/*# sourceMappingURL=style.css.map */