/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | 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.
 */

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

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  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;
}

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

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 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;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

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

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/***********************************************
 * San Fransisco SF Pro Display Font Family 
 * 
 * All weights included and fonts uploaded. 
 * However, we likely will want to limit which 
 * faces to keep.
 * 
 * https://transfonter.org/ used for generating
 * all fonts from original OTF fonts.
 ***********************************************/
/*
@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Ultralight.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Ultralight.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Ultralight.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Ultralight.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Ultralight.ttf) format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-UltralightItalic.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-UltralightItalic.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-UltralightItalic.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-UltralightItalic.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-UltralightItalic.ttf) format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Thin.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Thin.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Thin.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Thin.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Thin.ttf) format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-ThinItalic.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-ThinItalic.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-ThinItalic.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-ThinItalic.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-ThinItalic.ttf) format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}
*/

@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Light.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Light.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Light.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Light.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Light.ttf) format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/*
@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-LightItalic.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-LightItalic.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-LightItalic.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-LightItalic.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-LightItalic.ttf) format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
*/

@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Regular.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Regular.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Regular.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Regular.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-RegularItalic.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-RegularItalic.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-RegularItalic.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-RegularItalic.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-RegularItalic.ttf) format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/*
@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Medium.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Medium.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Medium.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Medium.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Medium.ttf) format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-MediumItalic.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-MediumItalic.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-MediumItalic.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-MediumItalic.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-MediumItalic.ttf) format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Semibold.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Semibold.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Semibold.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Semibold.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Semibold.ttf) format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-SemiboldItalic.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-SemiboldItalic.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-SemiboldItalic.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-SemiboldItalic.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-SemiboldItalic.ttf) format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
*/

@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Bold.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Bold.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Bold.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Bold.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/*
@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-BoldItalic.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-BoldItalic.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-BoldItalic.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-BoldItalic.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-BoldItalic.ttf) format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
*/

@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Heavy.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Heavy.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Heavy.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Heavy.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Heavy.ttf) format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/*
@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-HeavyItalic.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-HeavyItalic.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-HeavyItalic.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-HeavyItalic.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-HeavyItalic.ttf) format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Black.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Black.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Black.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Black.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-Black.ttf) format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-BlackItalic.eot);
    src: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-BlackItalic.eot#iefix) format('embedded-opentype'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-BlackItalic.woff2) format('woff2'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-BlackItalic.woff) format('woff'),
        url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/raw_assets/public/r5-hubspot-theme-2023-Q4/fonts/SFProDisplay-BlackItalic.ttf) format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}
*/
body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

/* General */
em {
  font-style: italic;
}

strong {
  font-weight: 700;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

/* R5 design system */
button, 
.button,
input[type=button], 
input[type=submit], 
input[type=reset] {
  border-radius: 4px;
  cursor: pointer;
}

.btn-big {
  padding: 0.8rem 1.2rem;
  font-size: 1.0rem;
}

.btn-medium {
  padding: 0.4rem 0.6rem;
  font-size: 0.9rem;
}

.btn-icon-big {
  font-size: 1.0rem;
  padding: 0.8rem;
}

.btn-icon-medium {
  font-size: 0.9rem;
  padding: 0.4rem;
}

.btn-icon-left {
  margin-right: 8px;
}

.btn-icon-right {
  margin-left: 8px;
}

.btn-primary {
  border: solid #5fa644 2px;
  color: #ffffff;
  background-color: #5fa644;
  border-radius: 4px;
}
  .btn-primary:hover {
    border: solid #5fa644 2px;
    -webkit-box-shadow: 0px 10px 10px 0px rgba(60,57,54,0.1);
    -moz-box-shadow: 0px 10px 10px 0px rgba(60,57,54,0.1);
    box-shadow: 0px 10px 10px 0px rgba(60,57,54,0.1);
  }
  .btn-primary:active {
    border: solid #5fa644 2px;
    background-color: #7fbe43;
  }

.btn-secondary {
  border: solid #5fa644 2px;
  color: #5fa644;
  background-color: #ffffff;
  border-radius: 4px;
}
  .btn-secondary:hover {
    border: solid #75be43 2px;
    color: #75be43;
    background-color: rgba(117, 190, 67, 0.1);
  }
  .btn-secondary:active {
    border: solid #75be43 2px;
    color: #75be43;
    background-color: rgba(117, 190, 67, 0.2);
  }

.btn-text {
  border: solid rgba(117, 190, 67, 0.0) 2px;
  color: #5fa644;
  display: inline-block;
  background-color: rgba(117, 190, 67, 0.0);
  border-radius: 4px;
  cursor: pointer;
}
  .btn-text:hover {
    border: solid rgba(117, 190, 67, 0.0) 2px;
    color: #75be43;
    background-color: rgba(117, 190, 67, 0.1);
  }
  .btn-text:active {
    border: solid rgba(117, 190, 67, 0.0) 2px;
    color: #75be43;
    background-color: rgba(117, 190, 67, 0.2);
  }
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.6rem;
  margin-bottom: 0.35rem;
  color: var(--8-a-898-e, #8A898E);
  font-weight: 400;
  line-height: 160%;
}
  form label:focus {
    color: #5fa644;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.6rem;
  font-style: italic;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #8a898e;
  border-radius: 0;
}
  form input[type=text]:focus-visible,
  form input[type=search]:focus-visible,
  form input[type=email]:focus-visible,
  form input[type=password]:focus-visible,
  form input[type=tel]:focus-visible,
  form input[type=number]:focus-visible,
  form input[type=file]:focus-visible,
  form select:focus-visible,
  form textarea:focus-visible {
    border: 0;
    border-bottom: 1px solid #5fa644;
    border-radius: 0;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #F15B3B;
}

.hs-input.invalid.error {
  border-color: #F15B3B;
}

.hs-error-msg {
  color: #F15B3B;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
  padding: 10px 80px;
}

.navigation__buttons {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
  .navigation__buttons a.btn-primary,
  .navigation__buttons a.btn-primary:hover,
  .navigation__buttons a.btn-primary:active {
    color: #ffffff;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
  margin-top: 9px;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  /* margin-top: 0.7rem; */
}

.header__logo--main {
  /* padding-top: 1rem; */
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 1.2rem;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 700;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguMTA5NTEgMTAuNTk5TDguNjc4ODggMTAuMDg4NkwxMi41OSA2LjQxNzI0QzEyLjc1NDEgNi4yNjMyNyAxMi42Mzc5IDYgMTIuNDA1OSA2TDExLjY2OTUgNkMxMS42MDA0IDYgMTEuNTM0MiA2LjAyNTc1IDExLjQ4NTMgNi4wNzE1OUw3Ljk0MjQgOS4zOTcyNUw0LjUxNDk5IDYuMTgwMDNDNC40NjYxNiA2LjEzNDE5IDQuMzk5OTMgNi4xMDg0NCA0LjMzMDg4IDYuMTA4NDRMMy41OTQ0IDYuMTA4NDRDMy4zNjI0MiA2LjEwODQ0IDMuMjQ2MjUgNi4zNzE3MSAzLjQxMDI4IDYuNTI1NjhMNy43NDU1NSAxMC41OTUxQzcuODQ1NTggMTAuNjg5IDguMDA3MiAxMC42OTA3IDguMTA5NTEgMTAuNTk5WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==");
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

@charset "UTF-8";.animated{-webkit-animation-duration:1s;animation-duration:.6s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}.animated.flipOutX,.animated.flipOutY,.animated.bounceIn,.animated.bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s}@-webkit-keyframes bounce{from,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{from,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{from,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{from,50%,to{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}@keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}.swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{from{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}to{-webkit-transform:none;transform:none}}@keyframes wobble{from{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}to{-webkit-transform:none;transform:none}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{from,11.1%,to{-webkit-transform:none;transform:none}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-0.78125deg) skewY(-0.78125deg);transform:skewX(-0.78125deg) skewY(-0.78125deg)}77.7%{-webkit-transform:skewX(0.390625deg) skewY(0.390625deg);transform:skewX(0.390625deg) skewY(0.390625deg)}88.8%{-webkit-transform:skewX(-0.1953125deg) skewY(-0.1953125deg);transform:skewX(-0.1953125deg) skewY(-0.1953125deg)}}@keyframes jello{from,11.1%,to{-webkit-transform:none;transform:none}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-0.78125deg) skewY(-0.78125deg);transform:skewX(-0.78125deg) skewY(-0.78125deg)}77.7%{-webkit-transform:skewX(0.390625deg) skewY(0.390625deg);transform:skewX(0.390625deg) skewY(0.390625deg)}88.8%{-webkit-transform:skewX(-0.1953125deg) skewY(-0.1953125deg);transform:skewX(-0.1953125deg) skewY(-0.1953125deg)}}.jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes bounceIn{from,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes bounceIn{from,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInDown{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:none;transform:none}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInLeft{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:none;transform:none}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInRight{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:none;transform:none}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{from{opacity:1}to{opacity:0}}@keyframes fadeOut{from{opacity:1}to{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}@keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}to{-webkit-transform:none;transform:none;opacity:1}}@keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}to{-webkit-transform:none;transform:none;opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:none;transform:none;opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}@keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}@keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:none;transform:none}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}@keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}@-webkit-keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}
/*!
 * Font Awesome Free 5.6.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
 .fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{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}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hanukiah:before{content:"\f6e6"}.fa-hashtag:before{content:"\f292"}.fa-hat-wizard:before{content:"\f6e8"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-icicles:before{content:"\f7ad"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.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-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;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"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;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-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;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,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}
/* Slider */

.slick-slider {
	position: relative;
	display: block;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
	width: 100%;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list {background: #fff url() center center no-repeat; } /* Icons */ @font-face {font-family: 'slick'; font-weight: normal; font-style: normal; src: url('./fonts/slick.eot'); src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url() format('woff'), url() format('truetype'), url('./fonts/slick.svg#slick') format('svg'); } /* Arrows */ .slick-prev, .slick-next {font-size: 0; line-height: 0; position: absolute; top: 50%; display: block; width: 20px; height: 20px; padding: 0; -webkit-transform: translate(0, -50%); -ms-transform: translate(0, -50%); transform: translate(0, -50%); cursor: pointer; color: transparent; border: none; outline: none; background: transparent; } /*.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {color: transparent; outline: none; background: transparent; }*/ .slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {opacity: 1; } .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {opacity: .25; } .slick-prev:before, .slick-next:before {font-family: 'slick'; font-size: 20px; line-height: 1; opacity: .75; color: white; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .slick-prev {left: -25px; } [dir='rtl'] .slick-prev {right: -25px; left: auto; } .slick-prev:before {content: '←'; } [dir='rtl'] .slick-prev:before {content: '→'; } .slick-next {right: -25px; } [dir='rtl'] .slick-next {right: auto; left: -25px; } .slick-next:before {content: '→'; } [dir='rtl'] .slick-next:before {content: '←'; } /* Dots */ .slick-dotted.slick-slider {margin-bottom: 30px; } .slick-dots {position: absolute; bottom: -25px; display: block; width: 100%; padding: 0; margin: 0; list-style: none; text-align: center; } .slick-dots li {position: relative; display: inline-block; margin: 0 5px; padding: 0; cursor: pointer; } .slick-dots li button {font-size: 0; line-height: 0; display: block; width: 10px; height: 10px; padding: 0; cursor: pointer; color: transparent; border: 0; outline: none; background: #d6d6d6; border-radius: 35px; transition:all 0.3s ease; -webkit-transition:all 0.3s ease; -moz-transition:all 0.3s ease; -o-transition:all 0.3s ease; } .slick-dots li button:hover, .slick-dots li button:focus {outline: none; } .slick-dots li button:hover:before, .slick-dots li button:focus:before {opacity: 1; } .slick-dots li button:before {font-family: 'slick'; font-size: 12px; line-height: 20px; position: absolute; top: 0; left: 0; width: 10px; height: 10px; content: '•'; text-align: center; opacity: .25; color: black; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; display: none; } .magazi-carousel .slick-dots li.slick-active button {background-color: #232323; width:40px; }
/*===================== TABLE OF CONTENT =======================

1 - UNIQUE HOMEPAGE 
2 - RESET CSS
3 - ABOUT US
4 - TEAM
5 - PROCESS SECTION
6 - LATEST PROJECTS
7 - TESTIONIAL SECTION
8 - CONSULTATION HELP
9 - BLOG POSTS SECTION

=============================================================*/


/* IMPORTING FONTS */

@import "fonts.css";



/* RESET CSS */

* {
	margin:0;
	padding: 0;
	box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

html {
  font-size: calc(16px + 0.390625vw);
}

body {
    font-family: 'SFProDisplay', sans-serif;
    line-height: 1.4;
	overflow-x: hidden;
	font-weight: 400;
	box-sizing: border-box;
}
ul {
	list-style: none;
}
a:hover {
	text-decoration: none;
	color: inherit;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
button {
	outline: none;
	cursor: pointer;
}
button:focus {
	outline: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
	margin:0;
	padding: 0;
}
a:focus {
	text-decoration: none;
	outline: none;
}
button {
	outline: none;
}
input {
	outline: none;
}
input:focus {
	background-color: inherit;
}
textarea {
	outline: none;
}
section {
	display: block;
	position: relative;
}

a {
	color: inherit;
}
img {
	vertical-align: middle;
	height: auto;
	display: inline-block;
}


.clearfix {
	clear: both;
}

.container {
	max-width: 1310px;
	padding: 0 15px;
	margin:0 auto;
}


a,
h1,
h2,
h3,
h4 {
	transition: all 0.4s ease-in-out;
}
a {
	text-decoration: none;
}


/* TYPOGRAPHY */
/* Headings */

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, {
	color: #3C3936;
	text-transform: none;
	text-decoration: none;
}

h1,
.h1 {
	font-size: 2.8rem;
}

h2,
.h2 {
	font-size: 2.4rem;
}

h3,
.h3 {
	font-size: 2.133333333rem;
}

h4,
.h4 {
	font-size: 1.6rem;
}

h5,
.h5 {
	font-size: 1.066666667rem;
}

h6,
.h6 {
	font-size: 0.9333333333rem;
}

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
	color: #5fa644;
}


/* HEADER */



header {
	padding: 10px 0;
	background: transparent;
	position: fixed;
	top:0;
	width: 100%;
	left: 0;
	z-index: 9999999;
	transition: all 0.3s ease;
}
.nav-up {
	transform: translate(0, -100%);
}
header.nav-down {
	box-shadow: 0px 0px 40px 0px rgba(60, 57, 54, 0.05);
	background: #fff;
}

.header-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.header-content .logo img {
	width: 133px;
}
.home_header .header-content .logo img {
	display: none;
}
.home_header .nav-down .header-content .logo img {
	display: block;
}
.home_header .header-content .logo img.home_logo {
	display: block !important;
}
.home_header .nav-down .header-content .logo img.home_logo {
	display: none !important;
}
.navigation {
	margin-left: 56px;
}
.navigation ul li {
	display: inline-block;
	margin-right: 25px;
	position: relative;
}
.navigation > ul > li {
	padding: 10px 30px;
}
.navigation ul li a {
	display: inline-block;
	color: #5FA644;
	font-size: 16px;
	font-weight: 400;
	position: relative;
}
.home_header .navigation > ul > li > a {
	color: #fff;
}
.home_header .nav-down .navigation > ul > li > a {
	color: #5FA644;
}
.navigation ul li a.sub_item_enabled:before {
	content: '\f107';
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	top:0;
	left: 100%;
	margin-left: 12px;
	font-weight: 900;
}


.navigation ul ul {
	position: absolute;
	top: 100%;
	left: 0;
	width: 176px;
	background: #fff;
	padding: 20px 15px;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	margin-top: 20px;
	border-radius: 8px;
}
.navigation ul ul li {
	display: block;
	margin:0;
	margin-bottom: 20px;
}
.navigation ul ul li:last-child {
	margin-bottom: 0;
}
.navigation ul ul li a {
	color: #000;
	font-size: 16px;
	font-weight: 400;
}
.navigation ul ul li a:hover {
	color: #5FA644;
}
.navigation ul ul li a:before {
	display: none;
}
.navigation ul li:hover > ul {
	opacity: 1;
	visibility: visible;
	margin:0;
}
.other-links {
	margin-left: auto;
}
.other-links li {
	display: inline-block;
	margin-right: 13px;
}
.other-links li:first-child {
	margin-right: 30px;
}
.other-links li:last-child {
	margin-right: 0;
}
.other-links li a {
	display: inline-block;
	color: #5FA644;
	font-size: 16px;
	font-weight: 400;
}
.home_header .other-links li a {
	color: #fff;
}
.home_header .nav-down .other-links li a {
	color: #5FA644;
}
.other-links li a.login-btn {
	height: 39px;
	padding: 0 15px;
	line-height: 35px;
	border: 2px solid #5FA644;
	border-radius: 4px;
}
.other-links li a.login-btn:hover {
	background: rgba(117, 190, 67, 0.1);
	border: 2px solid #75be43;
	color: #75BE43;
	border-color: transparent;
}
.other-links li a.login-btn:active {
	background: rgba(117, 190, 67, 0.2);
	border: 2px solid #75be43;
	color: #75BE43;
	border-color: transparent;
}
.other-links li a.theme-btn {
	background-color: #5FA644;
	color: #fff;
	border-color: transparent;
	height: 39px;
	line-height: 39px;
	padding: 0 17px;
	border-radius: 4px;
}

.hs-button {
	font-size: 16px;
    font-weight: 400;
}
.button,
.hs-button {
	padding: 14px 16px;
	border-radius: 4px;
	border: 2px solid transparent;
	color: #5FA644;
	line-height: 1;
}
.button.Normal:hover {
	background-color: rgba(117, 190, 67, 0.1);
}
.button.Normal:active {
	background-color: rgba(117, 190, 67, 0.2);
}
.button.Primary,
.hs-button.primary {
	background-color: #5FA644;
	color: #fff;
	transition: 0.3s all;
}
.home_header .nav-down .button.Primary {
	color: #fff;
}
.button.Primary:hover,
.hs-button.primary:hover {
	box-shadow: 0px 10px 10px 0px rgba(60, 57, 54, 0.10);
}
.button.Primary:active,
.hs-button.primary:active {
	background-color: #75BE43;
}
.button.Secondary,
.hs-button.secondary {
	border-color: #5FA644;
}
.home_header .button.Secondary {
	border-color: #fff;
}
.home_header .nav-down .button.Secondary {
	border-color: #5FA644;
}
.button.Secondary:hover,
.hs-button.secondary:hover {
	background-color: rgba(117, 190, 67, 0.1);
	color: #75BE43;
}
.button.Secondary:active,
.hs-button.secondary:active {
	background-color: rgba(117, 190, 67, 0.2);
	color: #75BE43;
}

.banner-section {
	background-image: url(https://24318293.fs1.hubspotusercontent-na1.net/hubfs/24318293/banner.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.banner-slide:before {
	content: '';
	position: absolute;
	top:0;
	left: -30%;
	width: 100%;
	height: 100%;
	clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
	z-index: -1;
	background: linear-gradient(136deg, rgba(255, 255, 255, 0.85) 54.21%, rgba(255, 255, 255, 0.60) 100%);
	filter: drop-shadow(0px 4px 40px rgba(60, 57, 54, 0.05));
	backdrop-filter: blur(8px);
}
.banner-section .button {
	font-size: 18px;
	padding: 21px 32px;
}
.banner-slide {
	max-width: 1310px;
	margin:0 auto;
	position: relative;
	padding: 180px 0 210px;
} 
.banner-content {
	max-width: 550px;
}
.banner-content h2 {
	color: #3C3936;
	font-size: 42px;
	font-weight: 400;
	line-height: 58px;
	max-width: 440px;
	margin-bottom: 9px;
}
.banner-content h2 span {
	color: #75BE43;
	text-transform: capitalize;
}
.banner-content p {
	color: #63666A;
	font-size: 20px;
	line-height: 32px;
	font-weight: 300;
	margin-bottom: 24px;
}
.banner-content ul {
	color: #63666A;
	font-size: 20px;
	line-height: 32px;
	font-weight: 300;
	margin-bottom: 24px;
	list-style: disc outside;
	margin-left: 20px;
}
.theme-btn {
	display: inline-block;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	background-color: #5FA644;
	padding: 0 20px;
	padding: 0 32px 0 32px;
	border-radius: 4px;
	line-height: 56px;
	position: relative;
	z-index: 9;
}
.theme-btn:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  background: #75BE43;
  border-radius: 4px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1), cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.theme-btn:hover {
	color: #fff;
}
.theme-btn:active:before {
	-webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}


/* ABOUT SECTION */

.about-section {
	padding: 0;
	/* position: relative; */
	background: top 50px right url(https://24318293.fs1.hubspotusercontent-na1.net/hubfs/24318293/pattern.png) no-repeat;
}

/* 
.about-section:before {
	content: '';
	position: absolute;
	top:115px;
	right: 0;
	width: 544px;
	height: 437px;
	background-image: url(https://24318293.fs1.hubspotusercontent-na1.net/hubfs/24318293/pattern.png);
	background-repeat: no-repeat;
}
*/

.about-content h1 {
	color: #3C3936;
	font-size: 32px;
	font-weight: 700;
	line-height: 140%;
	max-width: 980px;
	margin-bottom: 69px;
	text-transform: uppercase;
}
.about-content h1 span {
	color: #5FA644;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin:0 -8px;
}
.col-4 {
	max-width: calc(100% / 3);
	flex:0 0 calc(100% / 3);
	padding: 0 8px;
}
.abt-col {
	background:#fff;
	padding: 21px 25px 23px 55px;
	box-shadow: 0px 0px 40px 0px rgba(60, 57, 54, 0.05);
	position: relative;
	height: 100%;
}
.about-content .col-4 {
	margin-bottom: 55px;
}
.about-content .row {
	margin-bottom: -55px;
}

.abt-col h3 {
	color: #3C3936;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 7px;
}
.abt-col ul li {
	color: #63666A;
	font-size: 18px;
	line-height: 160%;
	font-weight: 300;
	margin-bottom: 3px;
}
.abt-col ul li:last-child {
	margin-bottom: 0;
}
.abt-col:before {
	content: '';
	position: absolute;
	top:25px;
	left: 17px;
	width: 24px;
	height: 24px;
	background-image: url(https://24318293.fs1.hubspotusercontent-na1.net/hubfs/24318293/tick.svg);
	background-repeat: no-repeat;
}

/* SOLUTION SECTION */

.solution-section {
	padding: 33px 0 100px;
}
.sl-content {
	display: flex;
	flex-wrap: wrap;
	background:#fff;
	box-shadow: 0px 0px 40px 0px rgba(60, 57, 54, 0.05);
}
.sl-text {
	background: linear-gradient(156deg, #ACD361 0%, #8AC64E 100%);
	padding: 121px 55px;
	max-width: 525px;
	flex:0 0 525px;
	border-radius: 4px;
	position: relative;
	z-index: 9;
}
.sl-text:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 414px;
	height: 502px;
	background-image: url(https://24318293.fs1.hubspotusercontent-na1.net/hubfs/24318293/ban-pattern2.png);
	background-repeat: no-repeat;
	z-index: -1;
	transform: rotate(-360deg);

}
.sl-text h2 {
	color: #FFFFFF;
	font-size: 36px;
	line-height: 140%;
	font-weight: 700;
	margin-bottom: 8px;
}
.sl-text p {
	color: #fff;
	font-size: 20px;
	line-height: 30px;
	font-weight: 300;
}
.sl-form-col {
	max-width: calc(100% - 525px);
	flex:0 0 calc(100% - 525px);
	padding: 70px 90px;
}
.form-group {
	margin-bottom: 51px;
}
.form-group:last-child {
	margin-bottom: 0;
}
.form-group label {
	color: #8A898E;
	font-size: 12px;
	font-weight: 400;
	margin-bottom: 10px;
}
.form-group input,
.form-group textarea {
	width: 100%;
	height: 31px;
	border:0;
	border-bottom: 1px solid #8A898E;
}
.sl-form-col form ul {
	margin-top: 82px;
	margin-bottom: 63px;
}
.sl-form-col form ul li {
	display: flex;
	align-items: center;
	margin-bottom: 31px;
}
.sl-form-col form ul li:last-child {
	margin-bottom: 0;
}
.sl-form-col form ul li span {
	display: inline-block;
	color: #63666A;
	font-size: 16px;
	font-weight: 400;
	width: 375px;
	margin-top: 3px;
	margin-right: 30px;
}

.label-field input {
	border:0;
	border-bottom: 1px solid #8A898E;
	width: 120px;
	height: 40px;
}
.label-field label {
	color: #63666A;
	font-size: 16px;
	font-weight: 400;
	position: relative;
	top: 3px;
}
button {
	border:0;
}


/* SECTION TITLE */

.section-title {
	display: flex;
}
.btn-wrap {
	margin-left: auto;
	margin-top: 10px;
}
.btn-wrap button {
	background: transparent;
}
.sec-title {
	margin-bottom: 34px;
}
.sec-title h3 {
	color: #63666A;
	font-size: 36px;
	font-weight: 400;
	margin-bottom: 13px;
}
.sec-title h3 span {
	color: #5FA644;
}
.sec-title p {
	color: #63666A;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.9px;
}

/* PARTNER SECTION */

.partner-section {
	padding: 45px 0;
}
.partner-slider {
	padding-bottom: 76px;
	margin-top: 43px;
}
.partner-slider .slick-track {
	display: flex;
	align-items: center;
}
.partner-slide {
	text-align: center;
	display: inline-flex;
	align-items: center;
}
.partner-slide img {
	object-fit: contain;
	max-width: 60%;
	width: auto;
	filter: grayscale(1);
	display: inline-block;
	opacity: 0.7;
}
.partner-slide img:hover {
	opacity: 1;
}
.slick-dots {
	bottom: 0;
}
.slick-dots li {
	width: auto;
	height: auto;
	margin:0;
	margin-right: 3px;
}
.slick-dots li:last-child {
	margin-right: 0;
}
.slick-dots li button {
	width: 8px;
	height: 8px;
	background: #DAD9D6;
	padding: 0;
	border-radius: 0;
	transition: all 0.3s ease;
	clip-path: polygon(25% 0%, 100% 0%, 92% 100%, 12% 100%);
	transform: rotate(10deg);
}
.slick-dots li.slick-active button {
	transform: rotate(0);
	width: 45px;
	clip-path: polygon(25% 0%, 100% 0%, 92% 100%, 12% 100%);
}


/* COUNTER SECTION */

.counter-section {
	padding: 80px 0 0;
}

.counter-sec {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.counter-sec .sec-title {
	max-width: 430px;
	margin-bottom: 0;
}
.counter-sec .sec-title h3 {
	margin-bottom: 0;
}
.counter-row {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% - 430px);
	margin:0 -8px;
	box-sizing: border-box;
}
.counter-row .counter-col {
	width: calc(25% - 16px);
  padding: 19px 25px 24px;
  border-radius: 8px;
  box-shadow: rgba(60, 57, 54, 0.05) 0px 0px 40px 0px;
  margin: 0px 8px;
  position: relative;
  background-color: transparent;
  background-image: url(https://24318293.fs1.hubspotusercontent-na1.net/hubfs/24318293/bg_shape.png);
  background-repeat: no-repeat;
  background-position: top right;
}
.counter-row .counter-col h3 {
	color: #75BE43;
	font-size: 50px;
	font-weight: 800;
	margin-bottom: 3px;
}
.counter-row .counter-col p {
	color: #8A898E;
	font-size: 18px;
	line-height: 28px;
	font-weight: 300;
}


/* PROJECTS SECTION */

.projects-section {
	padding: 115px 0 80px;
}
.project {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	max-width: 1200px;
	padding: 0 20px;
	margin:0 auto;
	margin-bottom: 160px;
}
.project.fill_frame {
	align-items: unset;
}
.project:last-child {
	margin-bottom: 0;
}
.project-info {
	width: 50%;
	padding-left: 100px;
	padding-top: 80px;
	padding-bottom: 80px;
}
.project-info h3 {
	color: #3C3936;
	font-size: 36px;
	font-weight: 400;
	line-height: 50px;
	margin-bottom: 5px;
}
.project-info p {
	color: #8A898E;
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 21px;
	max-width: 450px;
}
.project.shift .project-img {
	order:1;
}
.project.shift .project-info {
	order:0;
	padding-left: 0;
	padding-right: 100px;
}
.project.shift {
	margin-left: auto;
}
.project-img {
	position: relative;
	z-index: 9;
	width: 50%;
}
.project-img img {
	width: 100%;
}
.project.fill_frame .project-img img {
	display: none;
}

.project.fill_frame .project-img {
	background-size: cover;
	background-position: center;
}

/* TESTIMONIAL SECTION */

.testimonial-section {
	padding: 80px 0;
	background:#f8f8f8;
	position: relative;
	z-index: 9;
}
.testimonial-section:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(https://24318293.fs1.hubspotusercontent-na1.net/hubfs/24318293/background-pattern.png);
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
}
.testimonial-section .sec-title h3 {
	color: #000;
}
.testi-slider {
	padding-bottom: 60px;
}
.testi-slide {
	padding: 37px 30px 32px;
	border-radius: 8px;
	position: relative;
	z-index: 9;
}
.testi-slide:before {
	content: '';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	clip-path: polygon(81% 0, 100% 35%, 100% 100%, 0 100%, 0 0);
	background: #fff;
	box-shadow: 0px 0px 40px 0px rgba(60, 57, 54, 0.05);
	z-index: -1;
}
.testi-slide:after {
	content: '';
	position: absolute;
	top:10px;
	right: 12px;
	width: 65px;
	height: 105px;
	clip-path: polygon(25% 0, 100% 75%, 100% 100%, 0 0);
	background: #60a644;
	z-index: -1;
}
.testi-slide .theme-btn2:before {
	display: none;
}
.darkest_green .testi-slide::after{
	background: #467637;
}
.dark_green .testi-slide::after{
	background: #5FA644 ;
}
.darkest_gray .testi-slide::after{
	background: #3C3936;
}
.dark_gray .testi-slide::after{
	background: #63666A;
}
.gray .testi-slide::after{
	background: #8A898E;
}
.blue .testi-slide::after{
	background: #3F88C7;
}
.purple .testi-slide::after{
	background: #9B57A3;
}
.red .testi-slide::after{
	background: #F15B3B;
}
.orange .testi-slide::after{
	background: #F68A29;
}
.yellow .testi-slide::after{
	background: #F5BE16;
}
.darkest_green .theme-btn2 {
	color: #467637;
}
.darkest_green .theme-btn2:hover {
	background: #467637;
	color: #fff;
}
.dark_green .theme-btn2 {
	color: #5FA644;
}
.dark_green .theme-btn2:hover {
	color: #5FA644;
}
.darkest_gray .theme-btn2 {
	color: #3C3936;
}
.darkest_gray .theme-btn2:hover {
	color: #3C3936;
}
.dark_gray .theme-btn2 {
	color: #63666A;
}
.dark_gray .theme-btn2:hover {
	color: #63666A;
}
.gray .theme-btn2 {
	color: #8A898E;
}
.gray .theme-btn2:hover {
	color: #8A898E;
}
.blue .theme-btn2 {
	color: #3F88C7;
}
.blue .theme-btn2:hover {
	color: #3F88C7;
}
.purple .theme-btn2 {
	color: #9B57A3;
}
.purple .theme-btn2:hover {
	color: #9B57A3;
}
.red .theme-btn2 {
	color: #F15B3B;
}
.red .theme-btn2:hover {
	color: #F15B3B;
}
.orange .theme-btn2 {
	color: #F68A29;
}
.orange .theme-btn2:hover {
	color: #F68A29;
}
.yellow .theme-btn2 {
	color: #F5BE16;
}
.yellow .theme-btn2:hover {
	color: #F5BE16;
}

.testi-slide h3 {
	color: #3C3936;
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 14px;
}
.testi-slide p {
	color: #63666A;
	font-size: 18px;
	line-height: 28px;
	font-weight: 300;
	padding-right: 20px;
}
.testi-slide a {
	margin-top: 91px;
}


.card-section {
	padding: 80px 0;
	background: top 50px right url(https://24318293.fs1.hubspotusercontent-na1.net/hubfs/24318293/pattern.png) no-repeat;
}
.card-section .sec-title h3 {
	color: #3C3936;
}
.card-section .sec-title p {
	color: #63666A;
}
.card-img {
	background-color: #fff;
}
.card-img .fill-frame {
	height: 300px;
	background-size: cover;
	background-position: center;
}
.card-img h3 {
	color: #3C3936;
	font-size: 24px;
	font-weight: 400;
	padding: 20px 0 20px 0;
}
.card-img p {
	color: #63666A;
	font-size: 18px;
	line-height: 28px;
	font-weight: 300;
	padding: 0 0 20px 0;
}
.card-img a {
	margin-top: 91px;
}


.theme-btn2 {
	display: inline-block;
	color: #5FA644;
	font-size: 16px;
	font-weight: 400;
	position: relative;
}
.theme-btn2:before {
	content: '';
	position: absolute;
	top:-17px;
	left: 0;
	width: 100%;
	height: 56px;
	min-width: 151px;
	background:#75BE431A;
	border-radius: 4px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}
.theme-btn2 i {
	margin-left: 7px;
}
.theme-btn2:hover {
	color: #5FA644;
	padding-left: 27px;
}
.theme-btn2:hover:before {
	opacity: 1;
	visibility: visible;
}



/* BANNER */

.sm-banner-section {
	background: url(https://24318293.fs1.hubspotusercontent-na1.net/hubfs/24318293/banner2.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 176px 0 160px;
	position: relative;
	z-index: 9;
}
.sm-banner-section:before {
	content: '';
	position: absolute;
	top:0;
	left: 50%;
	width: 1101px;
	height: 100%;
	transform: translateX(-50%);
	clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
	z-index: -1;
	background: linear-gradient(140deg, rgba(255, 255, 255, 0.15) 49.42%, rgba(255, 255, 255, 0.11) 100%);
	backdrop-filter: blur(8px);
}
.sm-content {
	max-width: 525px;
	margin:0 auto;
	text-align: center;
}
.sm-banner-section.left-align .sm-content {
	margin-left: 0;
	margin-right: auto;
	text-align: left;
}
.sm-banner-section.right-align .sm-content {
	margin-left: auto;
	margin-right: 0;
	text-align: right;
}
.sm-banner-section.left-align:before {
	left: 0;
	transform: unset;
}
.sm-banner-section.right-align:before {
	left: auto;
	right: 0;
	transform: unset;
}
.sm-content h2 {
	color: #FFFFFF;
	font-size: 32px;
	line-height: 45px;
	font-weight: 400;
	margin-bottom: 8px;
}
.sm-content p {
	color: #FFFFFF;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 24px;
}
.sm-banner-section.banner-3 {
	background-image: url(https://24318293.fs1.hubspotusercontent-na1.net/hubfs/24318293/banner3.jpg);
}

/* CUSTOMER SECTION */

.customer-section {
	/* padding: 65px 0 156px; */
	padding: 2.5em 0 2.5em;
}
.customer-content {
	display: flex;
	flex-wrap: wrap;
	background: #fff;
	/* box-shadow: 0px 0px 40px 0px rgba(60, 57, 54, 0.05); */
}
.customer-slider {
	width: 100%;
	background:#fff;
	border-radius: 8px 0 0 8px;
}
.customer-slider > div {
	display: none !important;
}
.customer-slider > div:first-child {
	display: flex !important;
}
.customer-slider > div.slick-list:first-child {
	display: block !important;
}
.customer-slider .customer-slide {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	box-shadow: 0px 0px 40px 0px rgba(60, 57, 54, 0.05);
}
.customer-slider .customer-slide.hidden {
	display: none !important;
}
.customer-slide .content {
	width: 70%;
	padding: 50px;
}
.customer-slide p {
	color: #63666A;
	font-size: 28px;
	line-height: 1.4;
	font-weight: 300;
	margin-bottom: 21px;
}
.customer-info {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
.customer-img {
	margin-right: 24px;
	width: 20%;
}
.customer-img > img {
	max-width: 133px;
}
.customer-info .cust-info {
	width: calc(80% - 24px);
}
.cust-info h3 {
	color: #3C3936;
	font-size: 24px;
	font-weight: 400;
	margin-bottom: -2px;
}
.cust-info span {
	display: block;
	color: #63666A;
	font-size: 18px;
	line-height: 28px;
	font-weight: 300;
}


.customer-banner {
	background: linear-gradient(156deg, #ACD361 0%, #8AC64E 100%);
	background-position: bottom;
    background-repeat: no-repeat;
	padding: 40px 30px;
	width: 30%;
	position: relative;
	z-index: 9;
	border-radius: 0 8px 8px 0;
	min-height: 500px;
}

/* .customer-banner:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80%;
	background-image: url(https://24318293.fs1.hubspotusercontent-na1.net/hubfs/24318293/ban-pattern.png);
	background-repeat: no-repeat;
	z-index: -1;
} */
.customer-banner h3 {
	color: #fff;
	font-size: 30px;
	line-height: 50px;
	font-weight: 700;
}

.customer-slider .slick-dots {
	bottom: -20px;
    right: auto;
    left: 50%;
    transform: translate(-50%,0);
}
.darkest_green_color {
	background-image: url("https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/website-images/pattern-topo-bottom-right-white.svg"), linear-gradient(156deg, #5FA644 0%, #467637 100%);
}
.dark_green_color {
	background-image: url("https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/website-images/pattern-topo-bottom-right-white.svg"), linear-gradient(156deg, #75BE43 0%, #5FA644 100%);
}
.darkest_gray_color {
	background-image: url("https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/website-images/pattern-topo-bottom-right-white.svg"), linear-gradient(156deg, #63666A 0%, #3C3936 100%);
}
.dark_gray_color {
	background-image: url("https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/website-images/pattern-topo-bottom-right-white.svg"), linear-gradient(156deg, #8A898E 0%, #63666A 100%);
}
.gray_color {
	background-image: url("https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/website-images/pattern-topo-bottom-right-white.svg"), linear-gradient(156deg, #C5C4C3 0%, #8A898E 100%);
}
.blue_color {
	background-image: url("https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/website-images/pattern-topo-bottom-right-white.svg"), linear-gradient(156deg, #50aeff 0%, #3F88C7 100%);
}
.purple_color {
	background-image: url("https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/website-images/pattern-topo-bottom-right-white.svg"), linear-gradient(156deg, #e37fef 0%, #9B57A3 100%);
}
.red_color {
	background-image: url("https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/website-images/pattern-topo-bottom-right-white.svg"), linear-gradient(156deg, #ff793e 0%, #F15B3B 100%);
}
.orange_color {
	background-image: url("https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/website-images/pattern-topo-bottom-right-white.svg"), linear-gradient(156deg, #ffab2a 0%, #F68A29 100%);
}
.yellow_color {
	background-image: url("https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/website-images/pattern-topo-bottom-right-white.svg"), linear-gradient(156deg, #ffe416 0%, #F5BE16 100%);
}

/* CONTACT SECTION */

.contact-section {
	padding: 160px 0 80px;
	position: relative;
	z-index: 9;
}
.contact-section:before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	background-image: url(https://24318293.fs1.hubspotusercontent-na1.net/hubfs/24318293/bg-pattern3.png);
	background-repeat: no-repeat;
	width: 795px;
	height: 450px;
	z-index: -1;
}
.contact-details {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.contact-details .sec-title {
	width: 570px;
}
.contact-form {
	margin-left: auto;
	width: 632px;
	background: #fff;
	padding: 54px 57px 30px;
	box-shadow: 0px 0px 40px 0px rgba(60, 57, 54, 0.05);
}
.form-captacha {
	display: flex;
	margin-bottom: 26px;
}
.form-captacha img {
	margin-right: 22px;
	margin-top: -5px;
}
.form-captacha p {
	color: #8A898E;
	font-size: 8px;
	line-height: 13px;
}
.contact-form .form-group {
	margin-bottom: 19px;
}
.contact-form .form-group textarea {
	height: 62px;
}

/* FOOTER */

footer {
	background: #63666b;
	padding: 80px 0 56px;
	position: relative;
}
.map-footer {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 9;
}
.map-footer:before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 751px;
	height: 379px;
	background-image: url(https://24318293.fs1.hubspotusercontent-na1.net/hubfs/24318293/bg-pattern4.png);
	background-repeat: no-repeat;
	z-index: -1;
}
.map-footer .map-marker {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.footer-top {
	display: flex;
	margin-bottom: 71px;
}
.footer-top p {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 25px;
	max-width: 377px;
	margin-left: 25px;
}
.footer-widgets {
	display: flex;
	flex-wrap: wrap;
}
.menu-links li {
	margin-bottom: 20px;
}
.menu-links li:last-child {
	margin-bottom: 0;
}
.menu-links li a {
	display: block;
	color: #fff;
	font-size: 20px;
	font-weight: 400;
}
.contact-widget {
	margin-left: 100px;
}
.contact-widget .widget-title {
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 22px;
}
.ct-links {
	margin-bottom: 32px;
}
.ct-links li {
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 33px;
	margin-bottom: 17px;
	flex-wrap: wrap;
}
.ct-links li img {
	position: absolute;
	top:-1px;
	left: 0;
}
.ct-links li p,
.ct-links li address,
.ct-links li span {
	color: #fff;
	font-size: 16px;
	line-height: 25px;
	font-weight: 400;
}
.ct-links li span {
	display: block;
	width: 100%;
}
.ct-links li:last-child {
	margin-bottom: 0;
}
.ct-links li p {
	max-width: 155px;
}
.social-links li {
	display: inline-block;
	margin-right: 29px;
}
.social-links li a {
	display: inline-block;
}
.social-links li:last-child {
	margin-right: 0;
}
.mobile-map {
	display: none;
}



/* RESPONSIVE MOBILE MENU */

.menu-btn {
	width: 24px;
	cursor: pointer;
	margin-left: 15px;
	display: none;
}
.menu-btn > span {
	float: left;
	width: 100%;
	height: 2px;
	background-color: #5FA644;
	margin-bottom: 6px;
	-webkit-transition:transform .3s;
	-moz-transition:transform .3s;
	-ms-transition:transform .3s;
	-o-transition:transform .3s;
	transition:transform .3s;
}

.menu-btn > span:last-child {
	margin-bottom: 0;
}

.menu-btn.active span.bar1 {
	-webkit-transform: translateY(8px) rotate(-45deg);
	-moz-transform: translateY(8px) rotate(-45deg);
	-ms-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}
.menu-btn.active span.bar2 {
	opacity: 0;
	visibility: hidden;
}
.menu-btn.active span.bar3 {
	-webkit-transform: translateY(-8px) rotate(-135deg);
	-moz-transform: translateY(-8px) rotate(-135deg);
	-ms-transform: translateY(-8px) rotate(-135deg);
	transform: translateY(-8px) rotate(-135deg);
}


.responsive-mobile-menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 391px;
	width: 100%;
	z-index: 9999;
	height: 100vh;
	overflow: auto;
	transition: all 0.4s ease-in-out;
	background: #818588;
	z-index: 999999;
}
header.mobile_active {
	transform: none !important;
	background-color: #fff;
}
.responsive_content {
	position: relative;
	padding: 80px 25px;
}
.mobile_meet {
	text-align: center;
}
.responsive-mobile-menu .responsive_content:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/r5-theme/navigation-bgnd-mobile.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	z-index: -1;
}
.rm-logo {
	margin-bottom: 44px;
	position: relative;
}
.responsive-mobile-menu.active {
	opacity: 1;
	visibility: visible;
	left: 0;
}


.responsive-mobile-menu ul {
	float: left;
	width: 100%;
}
.responsive-mobile-menu > ul {
	margin-bottom: 24px;
}
.responsive-mobile-menu ul li {
	float: left;
	width: 100%;
	border-bottom: 1px solid #DAD9D6;
	padding: 23px 0;
}
.responsive-mobile-menu ul li:last-child {
	border-bottom: 0;
}
.responsive-mobile-menu ul li a:before {
	content: '\f107';
	position: absolute;
	top: 50%;
	right: 10px;
	font-family: 'Font Awesome 5 Free';
	color: #5FA644;
	font-weight: 900;
	font-size: 18px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.responsive-mobile-menu ul li.menu-item-has-children > a:before {
	opacity: 1;
	visibility: visible;
}
.responsive-mobile-menu ul li.menu-item-has-children.active > a:before {
	content: '\f106';
}
.responsive-mobile-menu ul li a {
	color: #5FA644;
	font-size: 18px;
	font-weight: 400;
	float: left;
	width: 100%;
	position: relative;
}
.responsive-mobile-menu ul ul {
	display: none;
	padding: 28px 0 4px 20px;
	border-top: 1px solid #DAD9D6;
	margin-top: 22px;
}
.responsive-mobile-menu ul ul ul {
	border:0;
	padding: 0 20px;
}
.responsive-mobile-menu ul ul li a {
	border-bottom: 0;
	padding: 0;
	font-size: 16px;
}
.responsive-mobile-menu ul ul li:last-child a {
	margin-bottom: 0;
}
.responsive-mobile-menu ul ul li {
	border:0;
	padding: 0;
	margin-bottom: 26px;
}
.responsive-mobile-menu ul ul li:last-child {
	margin-bottom: 0;
}
.responsive-mobile-menu .theme-btn {
	display: inline-block;
	width: 342px;
	margin: 0 auto;
	margin: 0 auto;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}
.login-register {
	text-align: center;
	margin-top: 33px;
	position: relative;
}
.login-register a {
	display: inline-block;
	color: #5FA644;
	font-size: 16px;
	font-weight: 400;
	padding: 0 41px;
	border-right: 1px solid #5FA644;
}
.login-register a:first-child {
	padding-left: 0;
}
.login-register a:last-child {
	padding-right: 0;
	border-right: 0;
}


.feature {
  display: flex;
  flex-wrap: wrap;
}
.feature .theme-btn2:before {
	display: none;
}
.feature .theme-btn2:hover {
	padding-left: 10px;
}
.feature-icon {
  width: 64px;
  position: relative;
}
.sp-icon {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  text-align: center;
}
.feature-info {
	width: calc(100% - 64px);
	padding-left: 20px;
	margin-top: 30px;
}
.feature-info h3 {
	color: #3C3936;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
}
.feature-info p {
	color: #63666A;
	font-size: 16px;
	line-height: 25px;
	font-weight: 300;
	margin-bottom: 30px;
}


/* DESKTOP VERISON */

@media only screen and (min-width:1200px) {
	.reliable-section {padding-bottom: 60px;}
}

@media only screen and (min-width:576px) {

	.reliable-section {
		padding-top: 100px;
	}
	.reliable-section .sec-title h3 {
		padding-right: 150px;
		font-size: 32px;
		line-height: 44px;
	}
	.features {
		display: flex;
		flex-wrap: wrap;
	}
	.feature {
		width: calc(100% / 4);
		position: relative;
	}
	.feature-icon {
		width: auto;
	}
	.feature-icon > img {
		max-width: 100%;
	}
	.sp-icon {
		top: 50%;
		padding-left: 25px;
		width: auto;
		transform: translateY(-50%);
	}
	.feature-info {
		position: relative;
		z-index: 9;
		margin-top: 20px;
		padding-left: 30px;
		width: 100%;
		padding-right: 30px;
		font-weight: 400;
	}
	.feature-info h3 {
		margin-bottom: 30px;
		color: #fff;
		position: absolute;
		top: -63px;
		left: 85px;
	}
}

.theme-btn2.clr2 {
	color: #3F88C7;
}
.theme-btn2.clr3 {
	color: #9B57A3;
}
.theme-btn2.clr4 {
	color: #F15B3B;
}


.mobile-banner-background {
	display: none;
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
}



/* BLOG PAGE */

.blog-section {
	padding: 35px 0;
}

.blog-post-with-sidebar {
	display: flex;
	flex-wrap: wrap;
}

.blog-posts {
	width: 845px;
}
.blog-post {
	box-shadow: 0px 0px 40px 0px rgba(60, 57, 54, 0.05);
	box-shadow: 4px 4px 20px 5px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
}
.blog-info {
	padding: 35px 30px 48px 30px;
}
.blog-info > span {
	display: inline-block;
	color: #3F88C7;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 10px;
}
.blog-info h2 {
	color: #3C3936;
	font-size: 36px;
	line-height: 50px;
	font-weight: 400;
	margin-bottom: 7px;
}
.blog-info p {
	color: #63666A;
	font-size: 20px;
	line-height: 32px;
	font-weight: 300;
}
.title {
	color: #3C3936;
	font-size: 42px;
	line-height: 140%;
	font-weight: 400;
	margin-bottom: 32px;
}
.title span {
	color: #5FA644;
}


.blog-sidebar .title {
	font-size: 24px;
	margin-bottom: 23px;
}
.input-field label {
	display: block;
	color: #8A898E;
	font-size: 12px;
	font-weight: 400;
}
.input-field input {
	width: 246px;
	border:0;
	border-bottom: 1px solid #8A898E;
	padding-bottom: 20px;
	height: 19px;
	margin-right: 20px;
}
.input-field button {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	background:#5FA644;
	padding: 14px 16px;
	border-radius: 4px;
	min-width: 140px;
}

.blog-sidebar {
	width: calc(100% - 845px);
	padding-left: 25px;
}
.widget-search {
	margin-bottom: 55px;
}
.widget-add {
	margin-bottom: 40px;
}
.widget-add > img {
	width: 100%;
}

.wd-posts li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 24px;
	background: #fff;
	box-shadow: 0px 0px 40px 0px rgba(60, 57, 54, 0.05);
    border-radius: 4px;
	overflow: hidden;
}
.wd-posts li:last-child {
	margin-bottom: 0;
}
.post-img {
	max-width: 120px;
}
.post-img > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.post-info {
	width: calc(100% - 120px);
	padding-left: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.post-info > span {
	display: block;
	color: #5FA644;
	font-size: 16px;
	font-weight: 400;
}
.post-info h3 {
	color: #3C3936;
	font-size: 20px;
	font-weight: 400;
}
.post-info p {
	color: #63666A;
	font-size: 18px;
	line-height: 28.8px;
	font-weight: 300;
}
.wd-posts li:nth-child(even) .post-info > span {
	color: #9B57A3;
}
.blog-sidebar .widget-posts .title {
	margin-bottom: 38px;
}



.explore-section {
	padding: 125px 0 80px;
}
.title-section {
	max-width: 740px;
	margin:0 auto;
	margin-bottom: 55px;
	text-align: center;
	position: relative;
}
.title-section h2 {
	color: #3C3936;
	font-size: 32px;
	font-weight: 400;
}
.title-section h2 span {
	color: #5FA644;
}
.title-section p {
	color: #63666A;
	font-size: 18px;
	line-height: 28.8px;
	font-weight: 300;
	margin-top: 24px;
}

.categories {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: -24px;
}
.categories li {
	display: inline-block;
	margin-right: 24px;
	margin-bottom: 24px;
}
.categories li a {
	display: inline-block;
	color: #63666A;
	font-size: 20px;
	font-weight: 400;
	padding: 12px 40px;
	border-radius: 8px;
	border: 1px solid #5FA644;
}
.categories li a.br2 {
	border-color: #F68A29;
}
.categories li a.br3 {
	border-color: #9B57A3;
}
.categories li a.br4 {
	border-color: #3F88C7;
}
.categories li a.br5 {
	border-color: #F5BE16;
}
.categories li a.br6 {
	border-color: #F15B3B;
}
.categories li a.br7 {
	border-color: #5FA644;
}
.categories li a.br8 {
	border-color: #F68A29;
}
.categories li a.br9 {
	border-color: #9B57A3;
}

.title-section.text-left {
	text-align: left;
	max-width: 100%;
	margin-bottom: 27px;
	margin-left: 0;
}
.title-section.white h2 {
	color: #fff;
}
.title-section.white p{
	color: #fff;
}
.title-section.text-left p {
	margin-top: 11px;
}

.reader-section {
	padding: 65px 0 120px;
	position: relative;
	z-index: 1;
}
.reader-section:before {
	content: '';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 421px;
	background: #acd261;
	z-index: -1;
}

.reader-section .col-6 {
	max-width: unset;
}


.col-6 {
	max-width: 50%;
	flex:0 0 50%;
	padding: 0 20px;
}

.post-blog {
	box-shadow: 0px 0px 40px 0px rgba(60, 57, 54, 0.05);
	border-radius: 8px;
}
.post-blog-img > img {
	width: 100%;
	border-radius: 8px 8px 0 0;
	height: 350px;
    object-fit: cover;
}
.post-blog-info {
	padding: 14px 25px 23px;
}
.post-blog-info > span {
	display: block;
	color: #3F88C7;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 4px;
}
.post-blog-info h3 {
	color: #3C3936;
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 7px;
}
.post-blog-info p {
	color: #63666A;
	font-size: 18px;
	line-height: 28.8px;
	font-weight: 300;
}

.row.reader-slider {
	margin:0 -20px;
}

.reader-slider {
	padding-bottom: 84px;
}



.ad-section {
	padding-bottom: 120px;
}
.adver-img > img {
	width: 100%;
}

.press-section {
	padding-bottom: 140px;
}
.press-section .post-blog {
	border-radius: 4px;
	margin-bottom: 64px;
}
.press-section .post-blog-img img {
	border-radius: 4px;
}



.full-button {
	text-align: center;
}
.web-btn {
	display: inline-block;
	color: #5FA644;
	font-size: 18px;
	font-weight: 400;
	border-radius: 4px;
	padding: 0 32px 0 32px;
	border:1px solid #5FA644;
	min-width: 219px;
	max-height: 56px;
	line-height: 56px;
}
.web-btn:hover {
	background: #5FA644;
	color: #fff;
	border-color: transparent;
}

/* POST BANNER */

.post-banner {
	background-image: url(https://24318293.fs1.hubspotusercontent-na1.net/hubfs/24318293/post-banner.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 115px 0;
}
.post-banner-card {
	max-width: 805px;
	position: relative;
	z-index: 9;
}
.post-banner-card:before {
	content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(90% 0, 100% 35%, 100% 100%, 0 100%, 0 0);
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(60, 57, 54, 0.05);
  z-index: -1;
}
.post-banner-card:after {
  content: '';
  position: absolute;
  top: 10px;
  right: 7px;
  width: 65px;
  height: 105px;
  clip-path: polygon(25% 0, 100% 75%, 100% 100%, 0 0);
  background: #4086c4;
  z-index: -1;
}
.post-banner-card .post-blog-info {
	padding: 30px 25px 32px;
}
.post-banner-card .post-blog-info h3 {
	font-size: 36px;
	line-height: 50px;
}
.post-banner-card .post-blog-info p {
	margin-bottom: 124px;
}

.press-section.v2 {
	padding: 80px 0;
}



/* VIDEO POSTS */

.video-section {
	padding: 140px 0 70px;
}

.col-9 {
	max-width: 845px;
	flex:0 0 845px;
}
.col-3 {
	max-width: 411px;
	flex:0 0 411px;
}
.video-section .col-3 {
	margin-left: 24px;
}
.video-post iframe {
	width: 100%;
	height: 482px;
	border-radius: 4px;
	margin-bottom: 9px;
}
.video-post h3 {
	color: #3C3936;
	font-size: 42px;
	font-weight: 400;
	line-height: 58.8px;
	margin-bottom: 6px;
}
.video-post span {
	display: block;
	color: #8A898E;
	font-size: 20px;
	font-weight: 400;
}
.m-0 {
	margin:0;
}

.widget-vid-post {
	display: flex;
	flex-wrap: wrap;
}
.widget-vid-img {
	max-width: 128px;
	position: relative;
}
.play-btn {
	display: inline-block;
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.widget-vid-img > img {
	max-width: 100%;
	border-radius: 4px;
	height: 73px;
	object-fit: cover;
}
.widget-vid-info {
	width: calc(100% - 128px);
	padding-left: 16px;
	margin-top: -5px;
}
.widget-vid-info h4 {
	color: #3C3936;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 0;
}
.widget-vid-info span {
	display: block;
	color: #8A898E;
	font-size: 18px;
	font-weight: 400;
}
.sidebar .widget-add {
	margin-bottom: 34px;
}
.widget-video-posts ul {
	margin-bottom: 15px;
}
.widget-video-posts ul li {
	margin-bottom: 20px;
}
.widget-video-posts ul li:last-child {
	margin-bottom: 0;
}
.web-btn.full-btn {
	width: 100%;
	display: block;
	text-align: center;
	height: 39px;
	line-height: 35px;
	border:2px solid;
}

/* PODCAST SECTION */

.podcast-section {
	background: #f8f8f8;
	padding: 65px 0 78px;
	position: relative;
	z-index: 9;
}
.podcast-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(https://24318293.fs1.hubspotusercontent-na1.net/hubfs/24318293/background-pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.podcast-card {
	display: flex;
	flex-wrap: wrap;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0px 0px 40px 0px rgba(60, 57, 54, 0.05);
	align-items: center;
}
.post-card-img {
	max-width: 156px;
}
.post-card-info {
	width: calc(100% - 156px);
	padding-left: 40px;
}
.ep {
	display: block;
	color: #63666A;
	font-size: 18px;
	font-weight: 300;
	line-height: 28.8px;
	margin-bottom: -3px;
}
.post-card-info h3 {
	color: #3C3936;
	font-size: 24px;
	font-weight: 400;
}
.auth-name {
	display: block;
	color: #8A898E;
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
}

.podcast-section .row {
	margin:0 -20px;
}

.podcast-slider {
	padding-bottom: 65px;
}


.hot-press-section {
	padding: 80px 0;
}
.hot-press-section .col-4 {
	max-width: 416px;
	flex:0 0 416px;
}
.hot-press-section .col-8 {
	max-width: 840px;
	flex:0 0 840px;
}
.social-widget > img {
	max-width: 100%;
}
.post-info.v2 {
	width: calc(100% - 200px);
}
.post-info.v2 h3 {
	font-size: 24px;
	margin-bottom: 7px;
}
.post-info.v2 span {
	margin-bottom: 4px;
}
.post-info.v2 span.clr1 {
	color: #3F88C7;
}
.post-info.v2 span.clr2 {
	color: #F15B3B;
}
.post-info.v2 span.clr3 {
	color: #F5BE16;
}
.post-info.v2 span.clr4 {
	color: #5FA644;
}
.hot-press-section .wd-posts {
	padding-left: 20px;
}
.hot-press-section .wd-posts li {
	background: transparent;
	box-shadow: unset;
}
.hot-press-section .post-img {
	max-width: 200px;
}
.hot-press-section .post-img img {
	border-radius: 4px;
	height: 130px;
	object-fit: cover;
	max-width: 100%;
}

.heading-title-btns {
	display: flex;
	flex-wrap: wrap;
}


.contact-form.v2 .form-group {
	width: 400px;
}
.contact-form.v2 .form-group input {
	width: 100%;
}
.contact-form.v2 .form-group label {
	width: 100%;
	display: block;
}
.contact-form.v2 .theme-btn {
	height: 39px;
	line-height: 39px;
	padding: 0 35px;
	position: absolute;
	bottom: 0;
	right: 0;
}
form .hs-button, form input[type="submit"] {
	background-color: rgb(95, 166, 68);
    border-radius: 4px;
    color: rgb(255, 255, 255);
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    line-height: 39px;
    padding: 0px 32px;
    position: relative;
	border: none;
}
form .hs-button:before {
	content: "";
    height: 100%;
    left: 0px;
    position: absolute;
    top: 0px;
    transform: scaleX(0);
    transform-origin: right top;
    width: 100%;
    z-index: -1;
    background: rgb(117, 190, 67);
    border-radius: 4px;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1) 0s, -webkit-transform 0.5s 0s;
}
form .hs-button:active:before {
	transform: scale(1);
    transform-origin: left bottom;
}
.contact-form.v2 form {
	position: relative;
}
.contact-form.v2 {
	padding: 42px 30px 34px;
}
.contact-section.v2 .sec-title p {
	font-size: 16px;
	line-height: 25px;
}
.contact-section.v2 .contact-details .sec-title {
	width: 628px;
}
.contact-section.v2 {
	padding: 160px 0 103px;
}

/* BLOG SINGLE */

.blog-single-section {
	padding: 100px 0;
}
.blog-single-section .container {
	max-width: 875px;
	padding: 0 15px;
}
.blog-single .blog-info {
	padding: 0;
	margin-bottom: 20px;
}

.blog-single p {
	color: #63666A;
	font-size: 18px;
	font-weight: 400;
	line-height: 28.8px;
	margin-bottom: 0px;
}
.blog-single .blog-img {
	margin-bottom: 49px;
}
.ad-img {
	max-width: 100%;
}
.blog-single h4 {
	color: #3C3936;
	font-size: 32px;
	font-weight: 400;
	line-height: 44.8px;
	margin-bottom: 41px;
}

.blog-content a {
	color: #5fa644;
}

.blog-meta {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.meta-links li {
	display: inline-block;
	color: #63666A;
	font-size: 20px;
	font-weight: 300;
	padding: 0 15px;
	position: relative;
}
.meta-links li a {
	display: inline-block;
	color: #5FA644;
	font-weight: 400;
}
.meta-links li:first-child {
	padding-left: 0;
}
.meta-links li:last-child {
	padding-right: 0;
}
.meta-links li:before {
	content: '';
	position: absolute;
	top:50%;
	right: 0;
	width: 1px;
	height: 16px;
	background-color: #63666A;
	transform: translateY(-50%);
}
.meta-links li:last-child:before {
	display: none;
}
.social-share {
	margin-left: auto;
}
.social-share li {
	display: inline-block;
	margin-right: 20px;
}
.social-share li:last-child {
	margin-right: 0;
}
.social-share li a {
	display: inline-block;
	color: #3c3936;
	font-size: 18px;
}
.blog-single .blog-info > span {
	margin-bottom: 18px;
}
.blog-single .blog-info h2 {
	margin-bottom: 11px;
}
.ad-img {
	margin-bottom: 41px;
}


.press-section.bg-single {
	background: #f8f8f8;
	padding: 80px 0;
}

.title-section h2 span.clr {
	color: #3F88C7;
}
.post-blog-info > span.cr-2 {
	color: #F15B3B;
}
.post-blog-info > span.cr-3 {
	color: #3F88C7;
}

.blog-img > img {
	max-width: 100%;
}


.mbl-title {
	color: #3C3936;
	font-size: 32px;
	font-weight: 400;
	display: none;
	margin-bottom: 35px;
}
.mbl-title span {
	display: inline-block;
	color: #5FA644;
	font-weight: 700;
}



.project.style-one {
	max-width: 75%;
	margin-left: 0;
}
@media only screen and (min-width:1921px) {
	.project.style-one .project-img {
		width: calc(100% - 520px);
	}	
	.project.style-one .project-img img {
		width: 100%;
	}
	.project.style-one .project-img:before {
		width: 100%;
		height: 100%;
	}
}

.mobile-show {
	display: none;
}


.cta-section {
	padding: 2.5em 0;
}
.cta-section .container {
	max-width: 1440px;
}
.cta-sec {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.cta-sec.fill_frame {
	align-items: unset;
}
.cta-sec.shift {
	flex-direction: row-reverse;
}
.cta-img {
	width: 55%;
}
.cta-img img {
	width: 100%;
}
.fill_frame .cta-img img {
	display: none;
}
.fill_frame .cta-img {
	background-size: cover;
	background-position: center;
}
.cta-info {
	width: 45%;
	padding-left: 50px;
	padding-right: 50px;
	margin-left: auto;
}
.cta-info .title-section {
	max-width: 100%;
	margin:unset;
	text-align: left;
	margin-bottom: 40px;
}
.cta-info .title-section h2 {
	font-size: 36px;
	line-height: 50.4px;
}
.cta-info .title-section p {
	color: #63666A;
	font-size: 18px;
	font-weight: 300;
	line-height: 28.8px;
	margin-top: 8px;
}
.cta-links {
	background: #fff;
	box-shadow: 0px 0px 40px 0px rgba(60, 57, 54, 0.05);
	padding: 13px 17px;
}
.cta-links li {
	margin-bottom: 16px;
	position: relative;
	padding-left: 40px;
}
.cta-links li:before {
	content: '';
	position: absolute;
	top: 3px;
	left: 0;
	width: 40px;
	height: 40px;
	background-image: url(https://24318293.fs1.hubspotusercontent-na1.net/hubfs/24318293/tick.svg);
	background-repeat: no-repeat;
	/* transform: translateY(-50%); */
}
.cta-links li:last-child {
	margin-bottom: 0;
}
.cta-links li h4 {
	color: #3C3936;
	font-size: 20px;
	font-weight: 400;
}
.cta-links li p {
	color: #63666A;
	font-size: 18px;
	font-weight: 300;
	line-height: 28.8px;
}
.hs-blog-listing #main-content {
	margin-top: 66px;
}

/*****************************************************
 * HOME HERO
 *****************************************************/
 .hero__home {
  width: 100%;
  padding: 300px 0 0 0;
  text-align: center;
  color: #F8F8F8;
  background: no-repeat center top / cover url("https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/website-hero/hero-home-bgnd.svg");
  /* background-color: #000; */
}
/* 
.hero__home .hero_home_bg {
  animation:slide 20s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #000 50%, rgba(60, 57, 54, 0.30) 50%);
  opacity: 0.3;
  bottom:0;
  left:-50%;
  position:fixed;
  right:-50%;
  top:0;
  z-index:-1;
}

.hero_home_bg2 {
  animation-direction:alternate-reverse;
  animation-duration:30s;
}

.hero_home_bg3 {
  animation-duration:20s;
}

.hero_home_bg4 {
  animation-duration:50s;
}

.hero_home_bg5 {
  animation-duration:10s;
}

@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}
 */


.hero__home a:link,
.hero__home a:hover,
.hero__home a:focus,
.hero__home a:active,
.hero__home a:visited {
  color: #F8F8F8;
}

.hero__home-content {
}

.hero__home-content h1 {
  color: #F8F8F8;
}

.hero__home-buttons {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  padding: 0 100px 80px 100px;
}

.btn-industry {
  text-decoration: none;

  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.80);
  flex: 1;
  width: auto;
}

.btn-industry:hover {
  border: 1px solid var(--ffffff, #FFF);
  background: rgba(255, 255, 255, 0.10);
}

.btn-industry:active {
  background: transparent;
  outline: 8px solid rgba(255, 255, 255, 0.10);
  border: 1px solid var(--ffffff, #FFF);
}

.btn-industry-content {
  display: flex;
  padding: 24px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  align-self: stretch;
}

.btn-industry-content img {
  padding: 0;
  margin: 0;
}

.btn-industry-content p {
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 300;
}

 .hero__home-highlight {
	min-height: 100px;
	background-image: url("https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/website-images/hero-home-white-angle.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left top 80px;
  }
  
  .hero__home__flipper {
	position: absolute;
	top: 270px;
	left: calc(50% - 2rem);
	transform: translate(-50%, -50%);
	height: 50px;
	overflow:hidden;
	font-size: 36px;
	line-height: 45px;
	
	color: #fff;
	
	.hero__home__flipper__container {
	  font-weight: 600;
	  overflow: hidden;
	  height: 45px;
	  padding: 0px;
  
	  .hero__home__flipper__container-text {
		display: inline;
		float: left;
		margin: 0;
		padding-left: 235px;
	  }
  
	  .hero__home__flipper__container-list {
		margin-top: 0;
		text-align: right;
		list-style: none;
		
		-webkit-animation-name: change;
		-webkit-animation-duration: 16s;
		-webkit-animation-iteration-count: infinite;
		animation-name: change;
		animation-duration: 16s;
		animation-iteration-count: infinite;
  
		.hero__home__flipper__container-list-item {
		  line-height: 45px;
		  padding-right: 201px;
		  margin:0;
		  color:#acd361;
		}
	  }
	}
  }
  
  .hero__home__flipper__container p.hero__home__flipper__container-text {
	font-weight: 600;
	font-size: 36px;
	line-height: 45px;
  }
  
  
  @-webkit-keyframes opacity {
	0%, 100% {opacity:0;}
	50% {opacity:1;}
  }
  
  @-webkit-keyframes change {
	0.00%, 6.25% {transform:translate3d(0,0.00%,0);}
	7.81%, 14.06% {transform:translate3d(0,-11.11%,0);}
	15.63%, 21.88% {transform:translate3d(0,-22.22%,0);}
	23.44%, 29.69% {transform:translate3d(0,-33.33%,0);}
	31.25%, 37.50% {transform:translate3d(0,-44.44%,0);}
	39.06%, 45.31% {transform:translate3d(0,-55.56%,0);}
	46.88%, 53.13% {transform:translate3d(0,-66.67%,0);}
	54.69%, 60.94% {transform:translate3d(0,-77.78%,0);}
	62.50%, 100.00% {transform:translate3d(0,-88.89%,0);}
  }
  
  @-o-keyframes opacity {
	0%, 100% {opacity:0;}
	50% {opacity:1;}
  }
  
  @-o-keyframes change {
	0.00%, 6.25% {transform:translate3d(0,0.00%,0);}
	7.81%, 14.06% {transform:translate3d(0,-11.11%,0);}
	15.63%, 21.88% {transform:translate3d(0,-22.22%,0);}
	23.44%, 29.69% {transform:translate3d(0,-33.33%,0);}
	31.25%, 37.50% {transform:translate3d(0,-44.44%,0);}
	39.06%, 45.31% {transform:translate3d(0,-55.56%,0);}
	46.88%, 53.13% {transform:translate3d(0,-66.67%,0);}
	54.69%, 60.94% {transform:translate3d(0,-77.78%,0);}
	62.50%, 100.00% {transform:translate3d(0,-88.89%,0);}
  }
  
  @-moz-keyframes opacity {
	0%, 100% {opacity:0;}
	50% {opacity:1;}
  }
  
  @-moz-keyframes change {
	0.00%, 6.25% {transform:translate3d(0,0.00%,0);}
	7.81%, 14.06% {transform:translate3d(0,-11.11%,0);}
	15.63%, 21.88% {transform:translate3d(0,-22.22%,0);}
	23.44%, 29.69% {transform:translate3d(0,-33.33%,0);}
	31.25%, 37.50% {transform:translate3d(0,-44.44%,0);}
	39.06%, 45.31% {transform:translate3d(0,-55.56%,0);}
	46.88%, 53.13% {transform:translate3d(0,-66.67%,0);}
	54.69%, 60.94% {transform:translate3d(0,-77.78%,0);}
	62.50%, 100.00% {transform:translate3d(0,-88.89%,0);}
  }
  
  @keyframes opacity {
	0%, 100% {opacity:0;}
	50% {opacity:1;}
  }
  
  @keyframes change {
	0.00%, 6.25% {transform:translate3d(0,0.00%,0);}
	7.81%, 14.06% {transform:translate3d(0,-11.11%,0);}
	15.63%, 21.88% {transform:translate3d(0,-22.22%,0);}
	23.44%, 29.69% {transform:translate3d(0,-33.33%,0);}
	31.25%, 37.50% {transform:translate3d(0,-44.44%,0);}
	39.06%, 45.31% {transform:translate3d(0,-55.56%,0);}
	46.88%, 53.13% {transform:translate3d(0,-66.67%,0);}
	54.69%, 60.94% {transform:translate3d(0,-77.78%,0);}
	62.50%, 100.00% {transform:translate3d(0,-88.89%,0);}
  }


/* LAYOUT */



.content-wrapper {
  max-width: 1240px;
}

.dnd-section,
.content-wrapper--vertical-spacing {
  padding: 80px 1rem;
}

.dnd-section > .row-fluid {
  max-width: 1240px;
}

/* HOW IT WORKS */
.card__stacked { /* infographic */
  display: flex;
  align-items: flex-start;
  align-self: stretch;
}

.card__stacked__card { /* step */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
}

.card__stacked__card-title { /* arrow */
  display: flex;
  align-items: flex-start;
  align-self: stretch;  
  color: #ffffff;
}

.card__stacked__card-title-tail {
  width: 16px;
  height: 64px;
}

.card__stacked__card-title-content {
  color: #ffffff;
  display: flex;
  padding: 8px 0px 8px 16px;
  align-items: center;
  gap: 16px;
  flex: 1 0 0;
}

.card__stacked__card-title-content h5 {
  color: #ffffff;
  margin: 0;
  text-overflow: clip;
  white-space: nowrap;
  overflow: hidden;
}

.card__stacked__card-content {
  display: flex;
  padding: 0px 16px 0px 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.card__stacked__card-content p {
  margin: 0;
  padding: 0;
}




.card__stacked__card-content-v h5 {
  margin: 0;
  padding: 0;

  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.card__stacked__card-content-v p {
  margin: 0;
  padding: 0;

  font-size: 1.066666667rem;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 25.6px */
}

.card__stacked-v { /* infographic */
display: flex;
flex-direction: column;
align-items: flex-start;
align-self: stretch;
}

.card__stacked__card-v { /* step */
display: flex;
align-items: center;
gap: 16px;
align-self: stretch;
}

.card__stacked__card-title-v { /* arrow */
display: flex;
flex-direction: column;
align-items: flex-start;
align-self: stretch;
}

.card__stacked__card-title-tail-v {
width: 64px;
height: 16px;
}

.card__stacked__card-title-content-v {
display: flex;
width: 64px;
padding: 8px 0px;
justify-content: center;
align-items: flex-start;
gap: 16px;
flex: 1 0 0;
}

.card__stacked__card-content-v {
display: flex;
padding: 24px 0px;
flex-direction: column;
align-items: flex-start;
gap: 16px;
flex: 1 0 0;
}

.hidden-desktop {
	display: none;
}

.hidden-mobile {
	display: inline;
}


.cs-tbl-solutions {
	color: #dad9d6;
	border: 0;
	width: 100%;
}
	.cs-tbl-solutions th,
	.cs-tbl-solutions td {
		text-align: left;
		border-bottom: 1px solid #63666a;
		text-align: left;
		padding: 4px;
		font-size: 0.8em;
	}

	.cs-tbl-solutions th {
		color: #ffffff;
	}

	.cs-tbl-solutions td {
		
	}

	thead th:nth-child(1) {
		width: 12%;
	  }
	  
	  thead th:nth-child(n+2) {
		width: 22%;
	  }

	  .cs-tbl-solutions td li {
		padding-bottom: 8px;
	  }  

.cs-hero-image{max-width: 100%; height: auto;}

.cs-hero {
  padding: 100px 0 0 0;
  text-align: center;
  color: #f8f8f8;
}
	.cs-hero h1,
	.cs-hero p {
    text-align: center;
		width: 70%;
		color: #f8f8f8;
		margin: auto;
	}
	.cs-hero h1 {
		padding: 100px 0 100px 0;
		font-size: 3.8em;
    line-height: 1.05;
    letter-spacing: -.015em;
  }
	.cs-hero p {
		padding: 40px 0 60px 0;
		font-size: 1.2em;
    line-height: 1.14286;
    letter-spacing: .007em;
	}

.cs-kpi-container {
	display: flex;
	width: 70%;
	margin: auto;
	/* padding: 10px; */
	/* gap: 30px; */
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
}
	
	.cs-kpi {
	width: calc(100%/3);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;  
	}
	
		.cs-kpi h5 {
			font-size: 2.5em; 
			color: #dad9d6; 
			line-height: 0.9; 
			margin:0; 
			padding: 0;
		}

		.cs-kpi p {
			font-size: 1.0em; 
			color: #63666a; 
			margin:0; 
			padding: 0;
		}

.cs-testimonial {
	display: flex;
	flex-wrap: wrap;
	justify-content: normal;
	align-items: normal;
	align-content: normal;
	background: #3c3936;
	width: 70%;
	margin: 60px auto;
	color: #fff;
	padding: calc(100%/24);
	}
	
	.cs-testimonial .cs-quote {
	display: block;
	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: auto;
	align-self: auto;
	width: 70%;
	/*   background: #0fc; */
	font-size: 1.3em;
	line-height: 1.1;
	}
	.cs-quote::before,
	.cs-quote::after {
		display: inline-block;
		width: 2em;
		color: #ffffff;
	}
	
	.cs-quote::before {
		margin-left: -2em;
		text-align: right;
		content: '“';
	}
	.cs-quote::after {
		margin-right: -2em;
		text-align: left;
		content: '”';
	}
	
	.cs-testimonial .cs-quote-author {
	display: block;
	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: auto;
	align-self: auto;
	padding-left: calc(100%/24);
	width: 30%;
	font-size: 0.8em;
	line-height: 1.1;
	/*   background: #cf0; */
	}
	.cs-quote-author p {
		color: #8a898e;
	}
	.cs-quote-author p strong {
		font-weight: bold;
		color: #ffffff;
	}

.cs-outcome-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	max-width:1195px;
	background-color: #000;
	color: #fff;
	align-items: flex-start;
	}
	  
	  .cs-outcome-section {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		align-content: flex-start;
		align-self: stretch;
		gap: 20px;
		}
	  
	  .cs-outcome-card {
		min-width: 278px;
		width: 100%;
		flex: 1 0 0;
		align-self: stretch;
		color: #fff;
		background-color: #eee;
		position: relative; /* For information icon positioning */
		transition: opacity 0.3s ease-in-out; /* Fade in/out animation */
	  }
	  
	  .cs-outcome-card-content {
		height: 450px;
		color: #fff;
	  }
	  
	  .cs-outcome-section-multi .cs-outcome-card-content {
		height: 650px;
	  }
	  
	  .cs-outcome-card-title {
		position: absolute;
		top: 40px;
		left: 60px;
		font-size: 1.2em;
		color: #fff;
	  }
	  
	  .cs-outcome-card-hook, 
	  .cs-outcome-card-details {
		position: absolute;
		top: 120px;
		left: 60px;
		display: normal;
		width: calc(100% - 120px);
	  /*   background-color: #fc0; */
		color: #fff;
	  }
	  .cs-outcome-card-hook .hs_cos_wrapper_type_icon {
		padding: 0;
		margin: 0;
		font-size: 3em;
		color: #fff;
		line-height: 64px;
	  }
	  .cs-outcome-card-content h2 {
		font-size: 2em;
		font-weight: 700;
		color: #fff;
	  }
	  .cs-outcome-card-content p {
		font-size: 1em;
		color: #fff;
	  }
	  .cs-outcome-card-details {
		opacity: 0; /* Initially transparent */
	  }
	  
	  .cs-outcome-card-action {
		position: absolute;
		bottom: 40px;
		right: 40px;
		font-size: 1.5em;
		cursor: pointer;
		color: #fff;
	  }
	  
	  .cs-outcome-card-bgnd {
		background-color: #3C3936;
	  }
	  
	  .cs-outcome-card-bgnd-grain,
	  .cs-outcome-card-bgnd-inventory
	  {
		background-color: #3C3936;
		background-repeat: no-repeat; 
		background-position: top center;
		background-size: cover;
	  }
		.cs-outcome-card-bgnd-grain
		{
		  background-image: url('https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/Frontier%20Cooperative/case-study-frontier-smartsites-ag-retail-grain-bin-fan-control.jpg');
		}
	  
		.cs-outcome-card-bgnd-inventory {
		  background-image: url('https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/Frontier%20Cooperative/case-study-frontier-smartsites-ag-retail-mobile-asset-anhydrous-nh3-tank.jpg');
		}

.brochure {
		color: #fff;
		border-radius: 8px;
		background: #3c3936 top left/10% no-repeat  url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/website-images/bgnd-brochure-topo.svg);
		display: flex;
		justify-content: flex-end;
		align-items: flex-start;
		align-content: flex-start;
		gap: 20px;
		flex-wrap: wrap;
		margin: 20px 0 20px 0;
	}
	.brochure-details {
		padding: 30px;
		min-width: 278px;
		flex: 1 0 0;
	}
	.brochure-details h3,
	.brochure-details p {
		margin: 0 0 8px 0;
		padding: 0;
	}
	.brochure-details h3 {
		font-size: 20px;
		color: #ffffff;
	}
	.brochure-details p {
		font-size: 16px;
		font-weight: 300;
		color: #dad9d6;
	}
	.brochure-details a {
		font-size: 16px;
	}
	.brochure-example {
		width: 278px;
		height: 175px;
		min-width: 278px;
		flex-shrink: 0;
		background: top left/185% no-repeat url(https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/website-images/bgnd-brochure-angles.svg);
	}
	.brochure-image {
		margin: 20px 130px;
		width: 110px;
		height: 135px;
		transform: rotate(22.75deg);
		/* background-image: url(); */
		background-size: 110px 135px;
		box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
	}

.module-devices-and-viz {
	padding: 20px 0 20px 0;
	margin: 0;
}
@media only screen and (max-width:1740px) {
	.project.style-one {max-width: 90%;}	
}

@media only screen and (max-width:1450px) {
	.project.style-one {max-width: 100%;}	
}

@media only screen and (max-width:1366px) {
	.project-img {width: 50%;}
	.project-img img {width: 100%;}
	.project:nth-child(even) .project-img {margin-left: 0}
	.customer-banner {width: 30%;}
	.contact-details .sec-title {width: 50%;max-width: 500px;}
	.contact-form {width: 50%}
	.project-img:before {background-size: contain;}
	.blog-posts {width: 70%;}
	.blog-sidebar {width: 30%;}
	.input-field input {width: auto;}
	.col-9 {flex: 0 0 70%;max-width: 70%;}
	.col-3 {flex: 0 0 30%;max-width: 30%;padding-left: 30px;}
	.video-section .col-3 {margin-left: 0;}
	.hot-press-section .col-4 {max-width: 25%;flex:0 0 25%;}
	.hot-press-section .col-8 {max-width: 75%;flex:0 0 75%;}
	.project-img::before {background-size: contain; width: 100%; height: 100%; left: 30px; }
	.cta-img > img {max-width: 650px;}
	.cta-info {padding-left: 120px;padding-right: 50px;}
}

@media only screen and (max-width:1200px) {
	.navigation {display: none;}
	.other-links {
		display: none;
	}
	.header-content {
		justify-content: space-between;
	}
	header {
		height: auto;
		padding: 20px 0;
	}
	.sl-text {max-width: 35%;flex:0 0 35%;padding: 121px 35px;}
	.sl-form-col {max-width: 65%;flex:0 0 65%;padding: 70px 25px;}
	.counter-sec .sec-title {max-width: 30%;}
	.counter-row {width: 70%;}
	.project-info {width: 50%;padding-left: 50px;padding-right: 50px;}
	.contact-section {padding: 100px 0;}
	.map-footer {max-width: 40%;}
	.menu-btn {display: inline-block;}
	.banner-slide:before {width: 100%;}
	.project-img:before {width: 110%;}
	.contact-section:before {width: 60%;}
	.reader-section::before {height: 300px;}
	.video-section {padding-top: 50px;}
	.contact-section.v2 .contact-details .sec-title {width: 50%;}
	.project-img::before {left: 0;}
	.cta-img > img {max-width: 500px;}
	.cta-info {padding-left: 70px;padding-right: 30px;}
}

@media only screen and (max-width:991px) {
	.counter-sec {display: block;}
	.counter-sec .sec-title {max-width: 100%;margin-bottom: 40px;}
	.counter-row {width: 100%;}
	.project-info {padding: 0 30px;}
	.contact-details {display: block;}
	.contact-form {width: 100%;}
	.contact-details .sec-title {width: 100%;}
	.map-footer {display: block;position: static;margin-top: 50px;position: relative;max-width: 100%;}
	.map-footer > img {width: 100%;object-fit: contain;}
	.banner-slide::before {width: 100%;}
	/* .col-4 {max-width: 50%;flex:0 0 50%;} */
	.sl-content {display: block;}
	.sl-text {max-width: 100%;padding: 35px 35px 135px 35px;min-height: 447px;}
	.sl-form-col {max-width: 100%;}
	.sl-form-col form ul {margin-top: 0;}
	.sl-form-col form ul li {display: block;}
	.label-field input {width: 90%;}
	.sl-form-col .theme-btn {display: block;width: 100%;}
	.counter-row .counter-col p {font-size: 16px;line-height: 24px;}
	.customer-content {display: block;}
	.customer-slider {width: 100%;}
	.customer-banner {width: 100%;padding: 35px 30px 135px 30px;}
	.customer-slider .slick-dots {bottom: -370px;width: 100%;right: 0;}
	.customer-slide p {font-size: 24px;line-height: 42px;}
	.customer-banner::before {right: 0;left: auto;top:auto;bottom: 0;height: 100%;}
	.sm-banner-section:before {width: 100%;}
	footer {padding-bottom: 0;}
	.mobile-map {display: block;}
	.desktop-map {display: none;}
	.banner-content {padding-right: 70px;}
	.banner-slide:before {left: -20%;}
	.blog-posts {width: 100%;}
	.blog-sidebar {width: 100%;}
	.input-field input {width: 70%;}
	.post-banner-card::after {right: 8px;}
	.post-banner-card::after {transform: rotate(3deg);}
	.col-9 {flex:0 0 100%;max-width: 100%;}
	.col-3 {flex:0 0 100%;max-width: 100%;}
	.col-4 {max-width: calc(100% / 2);flex:0 0 calc(100% / 2);}
	.col-6 {max-width: calc(100% / 2);flex:0 0 calc(100% / 2);}
	.reader-section {padding-bottom: 0;}
	.video-section .col-3 {padding-left: 0;}
	.sidebar {margin-top: 50px;}
	.web-btn.full-btn {width: fit-content;}
	.podcast-slider .col-6 {max-width: 100%;flex:0 0 100%;}
	.hot-press-section .col-4 {max-width: 100%;flex:0 0 100%;}
	.hot-press-section .col-8 {max-width: 100%;flex:0 0 100%;}
	.social-widget {margin-bottom: 50px;}
	.contact-section.v2 {padding-top: 0;}
	.contact-section.v2 .contact-details .sec-title {width: 100%;}
	.ad-section {padding-top: 100px;}
	.blog-sidebar {order:0;padding-left: 0;margin-bottom: 60px;}
	.blog-posts {order:1;}
	.input-field input {width: calc(100% - 164px);}
	.explore-section {padding-top: 80px;}
	.feature {width: calc(100% / 2);margin-bottom: 40px;}
	.reliable-section .sec-title h3 {padding-right: 0;}
	.cta-img > img {max-width: 100%;}
	.cta-info {padding-left: 0;padding-right: 0;}
	.cta-sec {flex-direction: column;}
	.cta-img {width: 100%;}
	.cta-info {margin-left: 0;margin-top: 70px;width: 100%;}
	.cta-section {padding: 50px 0;}
	.cs-hero h1, .cs-hero p {width: 80%;}
	.cs-hero h1 {font-size: 3.1em;}
	.cs-hero p {padding: 40px 0 60px 0; font-size: 1.0em;}
}


@media only screen and (max-width:767px) {
	.banner-slide {padding: 120px 0;}
	.solution-section {padding-top: 0}
	.sec-title {max-width: 70%;}
	.counter-row .counter-col {width: calc(100% / 2 - 16px);margin-bottom: 30px;}
	.project {display: block;margin-bottom: 70px;}
	.project-img {width: 100%;}
	.project-info {width: 100%;padding:0 15px;margin:unset;margin-top: 50px;}
	.project.fill_frame .project-img {
		height: 300px;
	}
	.fill_frame .cta-img {
		height: 300px;
	}
	.sm-banner-section {padding: 100px 0;}
	.contact-form {padding: 30px;}
	.form-captacha {display: block;}
	.form-captacha p {margin-top: 20px;}
	.footer-top {display: block;margin-bottom: 30px;}
	.footer-top p {margin-left: 0;margin-top: 20px;}
	.contact-widget {margin-left: 0;margin-top: 50px;}
	.footer-widgets {display: block;}
	.about-section:before {display: none;}
	.other-links {display: none;}
	.menu-btn {margin-left: auto;}
	
	.banner-slide::before {width: 140%;left: -30%;}
	.project-img:before {width: 100%;height: 100%;}
	.sm-content {max-width: 370px;}
	.sm-content p {font-size: 16px;line-height: 25px;}
	.customer-slider {padding: 0;}
	.solution-section {padding-bottom: 60px;}
	.blog-info h2 {font-size: 24px;line-height: 32px;}
	.blog-info p {font-size: 18px;line-height: 28.8px;}
	.blog-posts .title {display: none;}
	.title-section.text-left {max-width: 70%;}
	.reader-slider .col-6 {max-width: 100%;flex:0 0 100%;}
	.ad-section {padding:80px 0;}
	.col-4 {max-width: 100%;flex:0 0 100%;}
	.col-6 {flex:0 0 100%;max-width: 100%;}
	.post-banner-card::after {right: -1px;transform: rotate(10deg);}
	.post-banner-card .post-blog-info h3 {font-size: 32px;line-height: 44px;}
	.post-banner-card .theme-btn2 {display: none;}
	.post-banner-card .post-blog-info p {margin-bottom: 0;}
	.post-banner-card::after {right: -3px; transform: rotate(15deg); height: 66px; }
	.post-card-info h3{font-size: 18px;margin-bottom: 5px;}
	.ep {font-size: 14px;}
	.sec-title h3 {font-size: 20px;}
	.contact-form.v2 .theme-btn {position: static;}
	.contact-form.v2 .form-group {width: 100%;}
	.post-info h3 {font-size: 16px;}
	.title-section h2 {font-size: 20px;}
	.categories li a {font-size: 16px;}
	.heading-title-btns {position: relative;}
	.title-section p {font-size: 16px;}
	.post-blog-info > span {font-size: 16px;}
	.web-btn {width: 100%;}
	.social-widget {display: none;}
	.hot-press-section .wd-posts li {display: block;}
	.hot-press-section .post-img {max-width: 100%;}
	.post-info.v2 {width: 100%; padding-left: 0; margin-top: 20px; }
	.hot-press-section .wd-posts {padding-left: 0;}
	.contact-section::before {width: 100%;height: 198px;background-image: url(../images/mbl-pattern.png);background-size: cover;}
	.reliable-section .sec-title {max-width: 100%;}
	.reliable-section {padding-top: 50px;}
	.customer-slide .content {
		padding: 20px;
		width: 100%;
	}
	.customer-banner {
		min-height: unset;
		border-radius: 0;
	}
	.customer-section {
		padding-bottom: 0;
	}

	.hero__home {
		padding: 120px 0 0 0;
	  }
	
	.hero__home-buttons {
	  display: flex;
	  justify-content: unset;
	  padding: 24px;
	  flex-direction: column;
	  align-items: flex-end;
	  gap: 24px;
	}
	
	.btn-industry {
	  width: 100%;
	}
	  
	.btn-industry-content {
	  display: flex;
	  padding: 16px 24px;
	  align-items: center;
	  gap: 24px;
	  align-self: stretch;
	  flex-direction: unset;
	  justify-content: unset;
	}
	
	  .hero__home__flipper {
		top: 20 0px;
	  }

    .hidden-desktop {
		display: inline;
    }

	.hidden-mobile {
		display: none;
	}

}

@media only screen and (max-width:576px) {
	.about-content h2 {font-size: 20px;line-height: 28px;}
	.col-4{max-width: 100%;flex:0 0 100%;}
	.abt-col ul li {font-size: 14px;}
	.abt-col h3 {font-size: 16px;}
	.abt-col {margin-bottom: 25px;}
	.sl-text h2 {font-size: 24px;}
	.sl-text p {font-size: 18px;}
	.label-field input {width: 85%;}
	.sec-title h3 {font-size: 24px;}
	.sec-title p {font-size: 16px;}
	.projects-section {padding: 80px 0;}
	.project-info h3 {font-size: 24px;line-height: 32px;}
	.project-info p {font-size: 16px;line-height: 25px;}
	.testi-slide h3 {font-size: 20px;}
	.testi-slide p {margin-bottom: 30px;}
	.card-img h3 {font-size: 20px;}
	.card-img p {margin-bottom: 30px;}
	.customer-slide p {font-size: 20px;line-height: 1.4;letter-spacing: 1px;}
	.cust-info h3 {font-size: 18px;}
	.cust-info span {font-size: 14px;}
	.customer-banner h3 {font-size: 24px;line-height: 33px;}
	.customer-slider .slick-dots {bottom: -300px;}
	.sm-content h2 {font-size: 24px;line-height: 33px;}
	.sm-content p {font-size: 16px;line-height: 25px;}
	.menu-links li a {font-size: 16px;}
	.ct-links li p, .ct-links li span {font-size: 14px;}
	.responsive-mobile-menu {width: 100%;left: -100%;}
	/* .home_header .nav-down .header-content .logo img.home_logo {display: none; visibility: hidden;} */
	/* .home_header .header-content .logo img.home_logo {display: none; visibility: hidden;} */
	.sec-title {max-width: 100%;}
	.reliable-section {display: block;}
	.banner-content h2 {font-size: 32px;line-height: 46px;}
	.banner-content h2 span {display: block;}
	.banner-content p {font-size: 18px;line-height: 29px;}
	.container {padding: 0 25px;}
	.banner-slide {min-height: 725px;padding: 0;}
	.banner-content {position: absolute;top:50%;transform: translateY(-50%);}
	.banner-slide:before {left: -135px;}
	.sl-text::before {height: 75%;}
	.btn-wrap button {transform: scale(0.6);margin-right: -15px;}
	.btn-wrap button:last-child {margin-right: 0;}
	.btn-wrap {position: absolute;top: 0;right: -10px;margin-top: 0;}
	.section-title {position: relative;}
	.sec-title p {letter-spacing: 0;}
	.sm-banner-section::before {width: 100%;clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);}
	.customer-img > img {max-width: 70px;}
	.theme-btn {display: block;width: 100%;text-align: center;}
	.banner-content .theme-btn {width: auto;display: inline-block;}
	.project-info {padding: 0 25px;}
	.post-banner-card::after {right: -8px; transform: rotate(21deg); }
	.post-card-info {padding-left: 0;padding-right: 15px;}
	.hot-press-section .wd-posts li {margin-bottom: 60px;}
	.video-post h3 {font-size: 18px;margin-bottom: 6px;line-height: unset;}
	.video-post span {font-size: 16px;}
	.video-section iframe {height: 195px;}
	.widget-vid-info h4 {font-size: 16px;}
	.widget-vid-info span {font-size: 16px;}
	.web-btn.full-btn {width: 100%;}
	.input-field input {width: 100%;margin-bottom: 30px;}
	.input-field button {width: 100%;}
	.blog-sidebar .title {font-size: 18px;}
	.mbl-title {display: block;}
	.blog-meta {flex-direction: column;}
	.social-share {margin-left: 0;margin-top: 20px;}
	.blog-single p {font-size: 16px;line-height: 25px;}
	.blog-single h4 {font-size: 24px;line-height: 34px;margin-bottom: 20px;}
	.blog-single-section {padding-top: 50px;}
	.blog .container {padding: 0 15px;}
	.meta-links li {font-size: 16px;}
	.blog-single-section {padding-bottom: 70px;}
	.desktop-show {display: none;}
	.feature {width: 100%;margin-bottom: 0;}
	.reliable-section {padding-top: 0;}
	.feature-info p {margin-bottom: 25px;}
	.cta-info .title-section h2 {font-size: 26px;line-height: 34px;}
	.cta-info .title-section p {font-size: 16px;line-height: 24px;}
	.cta-links li h4 {font-size: 18px;}
	.cta-links li p {font-size: 16px;line-height: 25.8px;}
	.cta-section {padding-top: 0;}
	.cs-hero h1, .cs-hero p {width: 100%;}
	.cs-hero h1 {font-size: 2.5em;}
	.cs-hero p {padding: 40px 0 60px 0; font-size: 1.0em;}
	.cs-kpi-container {gap: 30px;}
	.cs-kpi {width: 100%;}
	.cs-kpi h5 {font-size: 2.5em;}
	.cs-kpi p {font-size: 1.0em;}
	.cs-testimonial {width: 100%;}
	.cs-testimonial .cs-quote {width: 100%;}
	.cs-testimonial .cs-quote-author {padding: 30px 0 0 0; width: 100%;}
	.cs-outcome-card-title {top: 20px; left: 20px; font-size: 1.0em;}
	.cs-outcome-card-hook, .cs-outcome-card-details {top: 60px; left: 20px; width: calc(100% - 60px);}
	.cs-outcome-card-hook .hs_cos_wrapper_type_icon {font-size: 2em; line-height: 64px;}
	.cs-outcome-card-content h2 {font-size: 1.5em;}
	.cs-outcome-card-content p {font-size: 1.0em;}
	.cs-outcome-card-action {position: absolute; bottom: 20px; right: 20px;}
	.cs-outcome-card-bgnd-grain{background-image: url('https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/Frontier%20Cooperative/case-study-frontier-smartsites-ag-retail-grain-bin-fan-control-mobile.jpg');}
	.cs-outcome-card-bgnd-inventory {background-image: url('https://5203773.fs1.hubspotusercontent-na1.net/hubfs/5203773/Frontier%20Cooperative/case-study-frontier-smartsites-ag-retail-mobile-asset-anhydrous-nh3-tank-mobile.jpg');}
}

@media only screen and (max-width:480px) {
	.sl-form-col form ul li span {width: 100%;}
	.sl-form-col .theme-btn {font-size: 14px;}
	.banner-content h2 {margin-bottom: 22px;}
	.banner-content p {margin-bottom: 34px;}
	.partner-section {padding-bottom: 100px;}
	.counter-sec .sec-title {max-width: 70%;}
	.counter-row .counter-col h3 {font-size: 40px;}
	.counter-row .counter-col {padding: 19px 15px 24px;}
	.testi-slider {padding-bottom: 45px;}
	.testimonial-section {padding: 80px 0 50px;}
	.card-section {padding: 80px 0 50px;}
	.sm-content p {opacity: 0.8;}
	.sm-content .theme-btn {max-width: 253px;margin:0 auto;}
	.customer-slide p {margin-bottom: 60px;}
	.customer-slider {margin-bottom: 25px;}
	.customer-slider .slick-dots {bottom: -330px;}
	.contact-section::before {width: 100%;}
	.sm-content {padding: 0 20px;}
	.banner-slide:before {clip-path: polygon(30% 0%, 110% 0%, 82% 100%, 6% 100%);}
	.cust-info {width: 64%;}
	.sl-text:before {width: 100%;}
	.post-banner-card::after {right: -14px; transform: rotate(34deg); top: 20px; }
	.cta-info {margin-top: 30px;}
}