@charset "UTF-8";

/**
 * CONTENTS
 *
 * SETTINGS
 * Variables............Globally-available variables and config.
 * Z-Index..............Semantic z-index manifest
 *
 * TOOLS
 * Mixins...............Useful mixins.
 * Include Media........Sass library for writing CSS media queries.
 * Media Query Test.....Displays the current breakport you're in.
 *
 * GENERIC
 * Reset................A level playing field.
 *
 * BASE
 * Forms................Common and default form styles.
 * Headings.............H1–H6 styles.
 * Links................Link styles.
 * Lists................Default list styles.
 * Main.................Page body defaults.
 * Media................Image and video styles.
 * Tables...............Default table styles.
 * Text.................Default text styles.
 *
 * LAYOUT
 * Grids................Grid/column classes.
 * Wrappers.............Wrapping/constraining elements.
 *
 * COMPONENTS
 * Blocks...............Modular components often consisting of text and media.
 * Cards................Modular components for mainly text and data (card-like).
 * Heros................Leading hero image/caption section of a content type.
 * Sections.............Larger components of pages.
 * Forms................Specific form styling.
 *
 * OBJECTS
 * Buttons..............Various button styles and styles.
 * Icons................Icon styles and settings.
 * Lists................Various site list styles.
 * Navs.................Site navigations.
 * Media................Specific media objects, e.g. figures
 *
 * TEXT
 * Text.................Various text-specific class definitions.
 *
 * PAGE STRUCTURE
 * Article..............Post-type pages with styled text.
 * Gallery..............Styles for all things gallery.
 * Footer...............The main page footer.
 * Header...............The main page header.
 * Main.................Content area styles.
 *
 * MODIFIERS
 * Animations...........Animation and transition effects.
 * Colors...............Text and background colors.
 * Display..............Show and hide and breakpoint visibility rules.
 * Spacings.............Padding and margins in classes.
 *
 * TRUMPS
 * Helper Classes.......Helper classes loaded last in the cascade.
 */

/* ------------------------------------ *\
    $SETTINGS
\* ------------------------------------ */

/* ------------------------------------ *\
    $VARIABLES
\* ------------------------------------ */

/**
 * Grid & Baseline Setup
 */

/**
 * Theme Colors
 */

.has-blue-color {
  color: #0082a1;
}

.has-blue-background-color {
  background-color: #0082a1;
}

.has-yellow-color {
  color: #dbff00;
}

.has-yellow-background-color {
  background-color: #dbff00;
}

.has-orange-color {
  color: #ff4f00;
}

.has-orange-background-color {
  background-color: #ff4f00;
}

.has-green-color {
  color: #00f0b5;
}

.has-green-background-color {
  background-color: #00f0b5;
}

.has-white-color {
  color: #fff;
}

.has-white-background-color {
  background-color: #fff;
}

.has-black-color {
  color: #000;
}

.has-black-background-color {
  background-color: #000;
}

.has-light-gray-color {
  color: #f0f0f0;
}

.has-light-gray-background-color {
  background-color: #f0f0f0;
}

.has-gray-color {
  color: #939598;
}

.has-gray-background-color {
  background-color: #939598;
}

.has-dark-gray-color {
  color: #636466;
}

.has-dark-gray-background-color {
  background-color: #636466;
}

/**
 * Default Colors
 */

/**
 * Style Colors
 */

/**
 * Typography
 */

/**
 * Icons
 */

/**
 * Common Breakpoints
 */

/**
 * Animation
 */

/**
 * Border Styles
 */

/**
 * Default Spacing/Padding
 * Maintain a spacing system divisible by 10
 */

/**
 * Font Values
 * See fluid-type mixin
 */

/*
 * Theme variables.
 */

.u-background-color--sap-yellow {
  background-color: #dbff00;
}

.u-background-color--sap-blue {
  background-color: #0082a1;
}

.u-background-color--sap-orange {
  background-color: #ff4f00;
}

.u-background-color--sap-green {
  background-color: #00f0b5;
}

.u-color--sap-yellow {
  color: #dbff00;
}

.u-color--sap-blue {
  color: #0082a1;
}

.u-color--sap-orange {
  color: #ff4f00;
}

.u-color--sap-green {
  color: #00f0b5;
}

.u-path-fill--sap-yellow {
  fill: #dbff00;
}

.u-path-fill--sap-blue {
  fill: #0082a1;
}

.u-path-fill--sap-orange {
  fill: #ff4f00;
}

.u-path-fill--sap-green {
  fill: #00f0b5;
}

/* ------------------------------------ *\
    $TOOLS
\* ------------------------------------ */

/* ------------------------------------ *\
    $MIXINS
\* ------------------------------------ */

/**
 * Fluid font-size with min and max sizes
 */

/**
 * Standard paragraph
 */

/**
 * String interpolation function for SASS variables in SVG Image URI's
 */

/* ------------------------------------ *\
    $GENERIC
\* ------------------------------------ */

/* ------------------------------------ *\
    $RESET
\* ------------------------------------ */

/* Border-Box http:/paulirish.com/2012/box-sizing-border-box-ftw/ */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

blockquote,
body,
div,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
iframe,
label,
legend,
li,
nav,
object,
ol,
p,
section,
table,
ul {
  margin: 0;
  padding: 0;
}

article,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

address {
  font-style: normal;
}

/* ------------------------------------ *\
    $GRID
\* ------------------------------------ */

/*!
    Blueprint CSS 3.1.1
    https://blueprintcss.dev
    License MIT 2019
*/

/* ------------------------------------ *\
    $VARIABLES
\* ------------------------------------ */

/**
 * Grid & Baseline Setup
 */

/**
 * Theme Colors
 */

.has-blue-color {
  color: #0082a1;
}

.has-blue-background-color {
  background-color: #0082a1;
}

.has-yellow-color {
  color: #dbff00;
}

.has-yellow-background-color {
  background-color: #dbff00;
}

.has-orange-color {
  color: #ff4f00;
}

.has-orange-background-color {
  background-color: #ff4f00;
}

.has-green-color {
  color: #00f0b5;
}

.has-green-background-color {
  background-color: #00f0b5;
}

.has-white-color {
  color: #fff;
}

.has-white-background-color {
  background-color: #fff;
}

.has-black-color {
  color: #000;
}

.has-black-background-color {
  background-color: #000;
}

.has-light-gray-color {
  color: #f0f0f0;
}

.has-light-gray-background-color {
  background-color: #f0f0f0;
}

.has-gray-color {
  color: #939598;
}

.has-gray-background-color {
  background-color: #939598;
}

.has-dark-gray-color {
  color: #636466;
}

.has-dark-gray-background-color {
  background-color: #636466;
}

/**
 * Default Colors
 */

/**
 * Style Colors
 */

/**
 * Typography
 */

/**
 * Icons
 */

/**
 * Common Breakpoints
 */

/**
 * Animation
 */

/**
 * Border Styles
 */

/**
 * Default Spacing/Padding
 * Maintain a spacing system divisible by 10
 */

/**
 * Font Values
 * See fluid-type mixin
 */

/*
 * Theme variables.
 */

.u-background-color--sap-yellow {
  background-color: #dbff00;
}

.u-background-color--sap-blue {
  background-color: #0082a1;
}

.u-background-color--sap-orange {
  background-color: #ff4f00;
}

.u-background-color--sap-green {
  background-color: #00f0b5;
}

.u-color--sap-yellow {
  color: #dbff00;
}

.u-color--sap-blue {
  color: #0082a1;
}

.u-color--sap-orange {
  color: #ff4f00;
}

.u-color--sap-green {
  color: #00f0b5;
}

.u-path-fill--sap-yellow {
  fill: #dbff00;
}

.u-path-fill--sap-blue {
  fill: #0082a1;
}

.u-path-fill--sap-orange {
  fill: #ff4f00;
}

.u-path-fill--sap-green {
  fill: #00f0b5;
}

[bp~='container'] {
  width: 100%;
  margin: 0 auto;
  display: block;
  max-width: 1200px;
}

[bp~='grid'] {
  display: grid !important;
  grid-row-gap: 20px;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 0;
}

@media (min-width: 550px) {
  [bp~='grid'] {
    grid-gap: 20px;
  }
}

[bp~='vertical-start'] {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

[bp~='vertical-center'] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

[bp~='vertical-end'] {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

[bp~='between'] {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

[bp~='gap-none'] {
  grid-gap: 0;
  margin-bottom: 0;
}

[bp~='gap-column-none'] {
  grid-column-gap: 0;
}

[bp~='gap-row-none'] {
  grid-row-gap: 0;
  margin-bottom: 0;
}

[bp~='first'] {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

[bp~='last'] {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

[bp~='hide'] {
  display: none !important;
}

[bp~='show'] {
  display: initial !important;
}

[bp~='grid'][bp*='@'] {
  grid-template-columns: 12fr;
}

[bp~='grid'][bp*='@sm'],
[bp~='grid'][bp*='@md'],
[bp~='grid'][bp*='@lg'],
[bp~='grid'][bp*='@xl'] {
  grid-template-columns: 12fr;
}

[bp~='1@sm'],
[bp~='1@md'],
[bp~='1@lg'],
[bp~='1@xl'],
[bp~='2@sm'],
[bp~='2@md'],
[bp~='2@lg'],
[bp~='2@xl'],
[bp~='3@sm'],
[bp~='3@md'],
[bp~='3@lg'],
[bp~='3@xl'],
[bp~='4@sm'],
[bp~='4@md'],
[bp~='4@lg'],
[bp~='4@xl'],
[bp~='5@sm'],
[bp~='5@md'],
[bp~='5@lg'],
[bp~='5@xl'],
[bp~='6@sm'],
[bp~='6@md'],
[bp~='6@lg'],
[bp~='6@xl'],
[bp~='7@sm'],
[bp~='7@md'],
[bp~='7@lg'],
[bp~='7@xl'],
[bp~='8@sm'],
[bp~='8@md'],
[bp~='8@lg'],
[bp~='8@xl'],
[bp~='9@sm'],
[bp~='9@md'],
[bp~='9@lg'],
[bp~='9@xl'],
[bp~='10@sm'],
[bp~='10@md'],
[bp~='10@lg'],
[bp~='10@xl'],
[bp~='11@sm'],
[bp~='11@md'],
[bp~='11@lg'],
[bp~='11@xl'],
[bp~='12@sm'],
[bp~='12@md'],
[bp~='12@lg'],
[bp~='12@xl'] {
  grid-column: span 12;
}

[bp~='grid'][bp~='1'] {
  grid-template-columns: repeat(12, 1fr);
}

[bp~='1'] {
  grid-column: span 1/span 1;
}

[bp~='grid'][bp~='2'] {
  grid-template-columns: repeat(6, 1fr);
}

[bp~='2'] {
  grid-column: span 2/span 2;
}

[bp~='grid'][bp~='3'] {
  grid-template-columns: repeat(4, 1fr);
}

[bp~='3'] {
  grid-column: span 3/span 3;
}

[bp~='grid'][bp~='4'] {
  grid-template-columns: repeat(3, 1fr);
}

[bp~='4'] {
  grid-column: span 4/span 4;
}

[bp~='grid'][bp~='5'] {
  grid-template-columns: repeat(2.4, 1fr);
}

[bp~='5'] {
  grid-column: span 5/span 5;
}

[bp~='grid'][bp~='6'] {
  grid-template-columns: repeat(2, 1fr);
}

[bp~='6'] {
  grid-column: span 6/span 6;
}

[bp~='grid'][bp~='7'] {
  grid-template-columns: repeat(1.71429, 1fr);
}

[bp~='7'] {
  grid-column: span 7/span 7;
}

[bp~='grid'][bp~='8'] {
  grid-template-columns: repeat(1.5, 1fr);
}

[bp~='8'] {
  grid-column: span 8/span 8;
}

[bp~='grid'][bp~='9'] {
  grid-template-columns: repeat(1.33333, 1fr);
}

[bp~='9'] {
  grid-column: span 9/span 9;
}

[bp~='grid'][bp~='10'] {
  grid-template-columns: repeat(1.2, 1fr);
}

[bp~='10'] {
  grid-column: span 10/span 10;
}

[bp~='grid'][bp~='11'] {
  grid-template-columns: repeat(1.09091, 1fr);
}

[bp~='11'] {
  grid-column: span 11/span 11;
}

[bp~='grid'][bp~='12'] {
  grid-template-columns: repeat(1, 1fr);
}

[bp~='12'] {
  grid-column: span 12/span 12;
}

[bp~='offset-1'] {
  grid-column-start: 1;
}

[bp~='offset-2'] {
  grid-column-start: 2;
}

[bp~='offset-3'] {
  grid-column-start: 3;
}

[bp~='offset-4'] {
  grid-column-start: 4;
}

[bp~='offset-5'] {
  grid-column-start: 5;
}

[bp~='offset-6'] {
  grid-column-start: 6;
}

[bp~='offset-7'] {
  grid-column-start: 7;
}

[bp~='offset-8'] {
  grid-column-start: 8;
}

[bp~='offset-9'] {
  grid-column-start: 9;
}

[bp~='offset-10'] {
  grid-column-start: 10;
}

[bp~='offset-11'] {
  grid-column-start: 11;
}

[bp~='offset-12'] {
  grid-column-start: 12;
}

@media (min-width: 550px) {
  [bp~='grid'][bp~='1@sm'] {
    grid-template-columns: repeat(12, 1fr);
  }

  [bp~='1@sm'] {
    grid-column: span 1/span 1;
  }

  [bp~='grid'][bp~='2@sm'] {
    grid-template-columns: repeat(6, 1fr);
  }

  [bp~='2@sm'] {
    grid-column: span 2/span 2;
  }

  [bp~='grid'][bp~='3@sm'] {
    grid-template-columns: repeat(4, 1fr);
  }

  [bp~='3@sm'] {
    grid-column: span 3/span 3;
  }

  [bp~='grid'][bp~='4@sm'] {
    grid-template-columns: repeat(3, 1fr);
  }

  [bp~='4@sm'] {
    grid-column: span 4/span 4;
  }

  [bp~='grid'][bp~='5@sm'] {
    grid-template-columns: repeat(2.4, 1fr);
  }

  [bp~='5@sm'] {
    grid-column: span 5/span 5;
  }

  [bp~='grid'][bp~='6@sm'] {
    grid-template-columns: repeat(2, 1fr);
  }

  [bp~='6@sm'] {
    grid-column: span 6/span 6;
  }

  [bp~='grid'][bp~='7@sm'] {
    grid-template-columns: repeat(1.71429, 1fr);
  }

  [bp~='7@sm'] {
    grid-column: span 7/span 7;
  }

  [bp~='grid'][bp~='8@sm'] {
    grid-template-columns: repeat(1.5, 1fr);
  }

  [bp~='8@sm'] {
    grid-column: span 8/span 8;
  }

  [bp~='grid'][bp~='9@sm'] {
    grid-template-columns: repeat(1.33333, 1fr);
  }

  [bp~='9@sm'] {
    grid-column: span 9/span 9;
  }

  [bp~='grid'][bp~='10@sm'] {
    grid-template-columns: repeat(1.2, 1fr);
  }

  [bp~='10@sm'] {
    grid-column: span 10/span 10;
  }

  [bp~='grid'][bp~='11@sm'] {
    grid-template-columns: repeat(1.09091, 1fr);
  }

  [bp~='11@sm'] {
    grid-column: span 11/span 11;
  }

  [bp~='grid'][bp~='12@sm'] {
    grid-template-columns: repeat(1, 1fr);
  }

  [bp~='12@sm'] {
    grid-column: span 12/span 12;
  }

  [bp~='offset-1@sm'] {
    grid-column-start: 1;
  }

  [bp~='offset-2@sm'] {
    grid-column-start: 2;
  }

  [bp~='offset-3@sm'] {
    grid-column-start: 3;
  }

  [bp~='offset-4@sm'] {
    grid-column-start: 4;
  }

  [bp~='offset-5@sm'] {
    grid-column-start: 5;
  }

  [bp~='offset-6@sm'] {
    grid-column-start: 6;
  }

  [bp~='offset-7@sm'] {
    grid-column-start: 7;
  }

  [bp~='offset-8@sm'] {
    grid-column-start: 8;
  }

  [bp~='offset-9@sm'] {
    grid-column-start: 9;
  }

  [bp~='offset-10@sm'] {
    grid-column-start: 10;
  }

  [bp~='offset-11@sm'] {
    grid-column-start: 11;
  }

  [bp~='offset-12@sm'] {
    grid-column-start: 12;
  }

  [bp~='hide@sm'] {
    display: none !important;
  }

  [bp~='show@sm'] {
    display: initial !important;
  }

  [bp~='first@sm'] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  [bp~='last@sm'] {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}

@media (min-width: 700px) {
  [bp~='grid'][bp~='1@md'] {
    grid-template-columns: repeat(12, 1fr);
  }

  [bp~='1@md'] {
    grid-column: span 1/span 1;
  }

  [bp~='grid'][bp~='2@md'] {
    grid-template-columns: repeat(6, 1fr);
  }

  [bp~='2@md'] {
    grid-column: span 2/span 2;
  }

  [bp~='grid'][bp~='3@md'] {
    grid-template-columns: repeat(4, 1fr);
  }

  [bp~='3@md'] {
    grid-column: span 3/span 3;
  }

  [bp~='grid'][bp~='4@md'] {
    grid-template-columns: repeat(3, 1fr);
  }

  [bp~='4@md'] {
    grid-column: span 4/span 4;
  }

  [bp~='grid'][bp~='5@md'] {
    grid-template-columns: repeat(2.4, 1fr);
  }

  [bp~='5@md'] {
    grid-column: span 5/span 5;
  }

  [bp~='grid'][bp~='6@md'] {
    grid-template-columns: repeat(2, 1fr);
  }

  [bp~='6@md'] {
    grid-column: span 6/span 6;
  }

  [bp~='grid'][bp~='7@md'] {
    grid-template-columns: repeat(1.71429, 1fr);
  }

  [bp~='7@md'] {
    grid-column: span 7/span 7;
  }

  [bp~='grid'][bp~='8@md'] {
    grid-template-columns: repeat(1.5, 1fr);
  }

  [bp~='8@md'] {
    grid-column: span 8/span 8;
  }

  [bp~='grid'][bp~='9@md'] {
    grid-template-columns: repeat(1.33333, 1fr);
  }

  [bp~='9@md'] {
    grid-column: span 9/span 9;
  }

  [bp~='grid'][bp~='10@md'] {
    grid-template-columns: repeat(1.2, 1fr);
  }

  [bp~='10@md'] {
    grid-column: span 10/span 10;
  }

  [bp~='grid'][bp~='11@md'] {
    grid-template-columns: repeat(1.09091, 1fr);
  }

  [bp~='11@md'] {
    grid-column: span 11/span 11;
  }

  [bp~='grid'][bp~='12@md'] {
    grid-template-columns: repeat(1, 1fr);
  }

  [bp~='12@md'] {
    grid-column: span 12/span 12;
  }

  [bp~='offset-1@md'] {
    grid-column-start: 1;
  }

  [bp~='offset-2@md'] {
    grid-column-start: 2;
  }

  [bp~='offset-3@md'] {
    grid-column-start: 3;
  }

  [bp~='offset-4@md'] {
    grid-column-start: 4;
  }

  [bp~='offset-5@md'] {
    grid-column-start: 5;
  }

  [bp~='offset-6@md'] {
    grid-column-start: 6;
  }

  [bp~='offset-7@md'] {
    grid-column-start: 7;
  }

  [bp~='offset-8@md'] {
    grid-column-start: 8;
  }

  [bp~='offset-9@md'] {
    grid-column-start: 9;
  }

  [bp~='offset-10@md'] {
    grid-column-start: 10;
  }

  [bp~='offset-11@md'] {
    grid-column-start: 11;
  }

  [bp~='offset-12@md'] {
    grid-column-start: 12;
  }

  [bp~='hide@md'] {
    display: none !important;
  }

  [bp~='show@md'] {
    display: initial !important;
  }

  [bp~='first@md'] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  [bp~='last@md'] {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}

@media (min-width: 850px) {
  [bp~='grid'][bp~='1@lg'] {
    grid-template-columns: repeat(12, 1fr);
  }

  [bp~='1@lg'] {
    grid-column: span 1/span 1;
  }

  [bp~='grid'][bp~='2@lg'] {
    grid-template-columns: repeat(6, 1fr);
  }

  [bp~='2@lg'] {
    grid-column: span 2/span 2;
  }

  [bp~='grid'][bp~='3@lg'] {
    grid-template-columns: repeat(4, 1fr);
  }

  [bp~='3@lg'] {
    grid-column: span 3/span 3;
  }

  [bp~='grid'][bp~='4@lg'] {
    grid-template-columns: repeat(3, 1fr);
  }

  [bp~='4@lg'] {
    grid-column: span 4/span 4;
  }

  [bp~='grid'][bp~='5@lg'] {
    grid-template-columns: repeat(2.4, 1fr);
  }

  [bp~='5@lg'] {
    grid-column: span 5/span 5;
  }

  [bp~='grid'][bp~='6@lg'] {
    grid-template-columns: repeat(2, 1fr);
  }

  [bp~='6@lg'] {
    grid-column: span 6/span 6;
  }

  [bp~='grid'][bp~='7@lg'] {
    grid-template-columns: repeat(1.71429, 1fr);
  }

  [bp~='7@lg'] {
    grid-column: span 7/span 7;
  }

  [bp~='grid'][bp~='8@lg'] {
    grid-template-columns: repeat(1.5, 1fr);
  }

  [bp~='8@lg'] {
    grid-column: span 8/span 8;
  }

  [bp~='grid'][bp~='9@lg'] {
    grid-template-columns: repeat(1.33333, 1fr);
  }

  [bp~='9@lg'] {
    grid-column: span 9/span 9;
  }

  [bp~='grid'][bp~='10@lg'] {
    grid-template-columns: repeat(1.2, 1fr);
  }

  [bp~='10@lg'] {
    grid-column: span 10/span 10;
  }

  [bp~='grid'][bp~='11@lg'] {
    grid-template-columns: repeat(1.09091, 1fr);
  }

  [bp~='11@lg'] {
    grid-column: span 11/span 11;
  }

  [bp~='grid'][bp~='12@lg'] {
    grid-template-columns: repeat(1, 1fr);
  }

  [bp~='12@lg'] {
    grid-column: span 12/span 12;
  }

  [bp~='offset-1@lg'] {
    grid-column-start: 1;
  }

  [bp~='offset-2@lg'] {
    grid-column-start: 2;
  }

  [bp~='offset-3@lg'] {
    grid-column-start: 3;
  }

  [bp~='offset-4@lg'] {
    grid-column-start: 4;
  }

  [bp~='offset-5@lg'] {
    grid-column-start: 5;
  }

  [bp~='offset-6@lg'] {
    grid-column-start: 6;
  }

  [bp~='offset-7@lg'] {
    grid-column-start: 7;
  }

  [bp~='offset-8@lg'] {
    grid-column-start: 8;
  }

  [bp~='offset-9@lg'] {
    grid-column-start: 9;
  }

  [bp~='offset-10@lg'] {
    grid-column-start: 10;
  }

  [bp~='offset-11@lg'] {
    grid-column-start: 11;
  }

  [bp~='offset-12@lg'] {
    grid-column-start: 12;
  }

  [bp~='hide@lg'] {
    display: none !important;
  }

  [bp~='show@lg'] {
    display: initial !important;
  }

  [bp~='first@lg'] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  [bp~='last@lg'] {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}

@media (min-width: 1100px) {
  [bp~='grid'][bp~='1@xl'] {
    grid-template-columns: repeat(12, 1fr);
  }

  [bp~='1@xl'] {
    grid-column: span 1/span 1;
  }

  [bp~='grid'][bp~='2@xl'] {
    grid-template-columns: repeat(6, 1fr);
  }

  [bp~='2@xl'] {
    grid-column: span 2/span 2;
  }

  [bp~='grid'][bp~='3@xl'] {
    grid-template-columns: repeat(4, 1fr);
  }

  [bp~='3@xl'] {
    grid-column: span 3/span 3;
  }

  [bp~='grid'][bp~='4@xl'] {
    grid-template-columns: repeat(3, 1fr);
  }

  [bp~='4@xl'] {
    grid-column: span 4/span 4;
  }

  [bp~='grid'][bp~='5@xl'] {
    grid-template-columns: repeat(2.4, 1fr);
  }

  [bp~='5@xl'] {
    grid-column: span 5/span 5;
  }

  [bp~='grid'][bp~='6@xl'] {
    grid-template-columns: repeat(2, 1fr);
  }

  [bp~='6@xl'] {
    grid-column: span 6/span 6;
  }

  [bp~='grid'][bp~='7@xl'] {
    grid-template-columns: repeat(1.71429, 1fr);
  }

  [bp~='7@xl'] {
    grid-column: span 7/span 7;
  }

  [bp~='grid'][bp~='8@xl'] {
    grid-template-columns: repeat(1.5, 1fr);
  }

  [bp~='8@xl'] {
    grid-column: span 8/span 8;
  }

  [bp~='grid'][bp~='9@xl'] {
    grid-template-columns: repeat(1.33333, 1fr);
  }

  [bp~='9@xl'] {
    grid-column: span 9/span 9;
  }

  [bp~='grid'][bp~='10@xl'] {
    grid-template-columns: repeat(1.2, 1fr);
  }

  [bp~='10@xl'] {
    grid-column: span 10/span 10;
  }

  [bp~='grid'][bp~='11@xl'] {
    grid-template-columns: repeat(1.09091, 1fr);
  }

  [bp~='11@xl'] {
    grid-column: span 11/span 11;
  }

  [bp~='grid'][bp~='12@xl'] {
    grid-template-columns: repeat(1, 1fr);
  }

  [bp~='12@xl'] {
    grid-column: span 12/span 12;
  }

  [bp~='offset-1@xl'] {
    grid-column-start: 1;
  }

  [bp~='offset-2@xl'] {
    grid-column-start: 2;
  }

  [bp~='offset-3@xl'] {
    grid-column-start: 3;
  }

  [bp~='offset-4@xl'] {
    grid-column-start: 4;
  }

  [bp~='offset-5@xl'] {
    grid-column-start: 5;
  }

  [bp~='offset-6@xl'] {
    grid-column-start: 6;
  }

  [bp~='offset-7@xl'] {
    grid-column-start: 7;
  }

  [bp~='offset-8@xl'] {
    grid-column-start: 8;
  }

  [bp~='offset-9@xl'] {
    grid-column-start: 9;
  }

  [bp~='offset-10@xl'] {
    grid-column-start: 10;
  }

  [bp~='offset-11@xl'] {
    grid-column-start: 11;
  }

  [bp~='offset-12@xl'] {
    grid-column-start: 12;
  }

  [bp~='hide@xl'] {
    display: none !important;
  }

  [bp~='show@xl'] {
    display: initial !important;
  }

  [bp~='first@xl'] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  [bp~='last@xl'] {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}

@media (min-width: 1200px) {
  [bp~='grid'][bp~='1@xxl'] {
    grid-template-columns: repeat(12, 1fr);
  }

  [bp~='1@xxl'] {
    grid-column: span 1/span 1;
  }

  [bp~='grid'][bp~='2@xxl'] {
    grid-template-columns: repeat(6, 1fr);
  }

  [bp~='2@xxl'] {
    grid-column: span 2/span 2;
  }

  [bp~='grid'][bp~='3@xxl'] {
    grid-template-columns: repeat(4, 1fr);
  }

  [bp~='3@xxl'] {
    grid-column: span 3/span 3;
  }

  [bp~='grid'][bp~='4@xxl'] {
    grid-template-columns: repeat(3, 1fr);
  }

  [bp~='4@xxl'] {
    grid-column: span 4/span 4;
  }

  [bp~='grid'][bp~='5@xxl'] {
    grid-template-columns: repeat(2.4, 1fr);
  }

  [bp~='5@xxl'] {
    grid-column: span 5/span 5;
  }

  [bp~='grid'][bp~='6@xxl'] {
    grid-template-columns: repeat(2, 1fr);
  }

  [bp~='6@xxl'] {
    grid-column: span 6/span 6;
  }

  [bp~='grid'][bp~='7@xxl'] {
    grid-template-columns: repeat(1.71429, 1fr);
  }

  [bp~='7@xxl'] {
    grid-column: span 7/span 7;
  }

  [bp~='grid'][bp~='8@xxl'] {
    grid-template-columns: repeat(1.5, 1fr);
  }

  [bp~='8@xxl'] {
    grid-column: span 8/span 8;
  }

  [bp~='grid'][bp~='9@xxl'] {
    grid-template-columns: repeat(1.33333, 1fr);
  }

  [bp~='9@xxl'] {
    grid-column: span 9/span 9;
  }

  [bp~='grid'][bp~='10@xxl'] {
    grid-template-columns: repeat(1.2, 1fr);
  }

  [bp~='10@xxl'] {
    grid-column: span 10/span 10;
  }

  [bp~='grid'][bp~='11@xxl'] {
    grid-template-columns: repeat(1.09091, 1fr);
  }

  [bp~='11@xxl'] {
    grid-column: span 11/span 11;
  }

  [bp~='grid'][bp~='12@xxl'] {
    grid-template-columns: repeat(1, 1fr);
  }

  [bp~='12@xxl'] {
    grid-column: span 12/span 12;
  }

  [bp~='offset-1@xxl'] {
    grid-column-start: 1;
  }

  [bp~='offset-2@xxl'] {
    grid-column-start: 2;
  }

  [bp~='offset-3@xxl'] {
    grid-column-start: 3;
  }

  [bp~='offset-4@xxl'] {
    grid-column-start: 4;
  }

  [bp~='offset-5@xxl'] {
    grid-column-start: 5;
  }

  [bp~='offset-6@xxl'] {
    grid-column-start: 6;
  }

  [bp~='offset-7@xxl'] {
    grid-column-start: 7;
  }

  [bp~='offset-8@xxl'] {
    grid-column-start: 8;
  }

  [bp~='offset-9@xxl'] {
    grid-column-start: 9;
  }

  [bp~='offset-10@xxl'] {
    grid-column-start: 10;
  }

  [bp~='offset-11@xxl'] {
    grid-column-start: 11;
  }

  [bp~='offset-12@xxl'] {
    grid-column-start: 12;
  }

  [bp~='hide@xxl'] {
    display: none !important;
  }

  [bp~='show@xxl'] {
    display: initial !important;
  }

  [bp~='first@xxl'] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  [bp~='last@xxl'] {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}

@media (min-width: 1600px) {
  [bp~='grid'][bp~='1@xxxl'] {
    grid-template-columns: repeat(12, 1fr);
  }

  [bp~='1@xxxl'] {
    grid-column: span 1/span 1;
  }

  [bp~='grid'][bp~='2@xxxl'] {
    grid-template-columns: repeat(6, 1fr);
  }

  [bp~='2@xxxl'] {
    grid-column: span 2/span 2;
  }

  [bp~='grid'][bp~='3@xxxl'] {
    grid-template-columns: repeat(4, 1fr);
  }

  [bp~='3@xxxl'] {
    grid-column: span 3/span 3;
  }

  [bp~='grid'][bp~='4@xxxl'] {
    grid-template-columns: repeat(3, 1fr);
  }

  [bp~='4@xxxl'] {
    grid-column: span 4/span 4;
  }

  [bp~='grid'][bp~='5@xxxl'] {
    grid-template-columns: repeat(2.4, 1fr);
  }

  [bp~='5@xxxl'] {
    grid-column: span 5/span 5;
  }

  [bp~='grid'][bp~='6@xxxl'] {
    grid-template-columns: repeat(2, 1fr);
  }

  [bp~='6@xxxl'] {
    grid-column: span 6/span 6;
  }

  [bp~='grid'][bp~='7@xxxl'] {
    grid-template-columns: repeat(1.71429, 1fr);
  }

  [bp~='7@xxxl'] {
    grid-column: span 7/span 7;
  }

  [bp~='grid'][bp~='8@xxxl'] {
    grid-template-columns: repeat(1.5, 1fr);
  }

  [bp~='8@xxxl'] {
    grid-column: span 8/span 8;
  }

  [bp~='grid'][bp~='9@xxxl'] {
    grid-template-columns: repeat(1.33333, 1fr);
  }

  [bp~='9@xxxl'] {
    grid-column: span 9/span 9;
  }

  [bp~='grid'][bp~='10@xxxl'] {
    grid-template-columns: repeat(1.2, 1fr);
  }

  [bp~='10@xxxl'] {
    grid-column: span 10/span 10;
  }

  [bp~='grid'][bp~='11@xxxl'] {
    grid-template-columns: repeat(1.09091, 1fr);
  }

  [bp~='11@xxxl'] {
    grid-column: span 11/span 11;
  }

  [bp~='grid'][bp~='12@xxxl'] {
    grid-template-columns: repeat(1, 1fr);
  }

  [bp~='12@xxxl'] {
    grid-column: span 12/span 12;
  }

  [bp~='offset-1@xxxl'] {
    grid-column-start: 1;
  }

  [bp~='offset-2@xxxl'] {
    grid-column-start: 2;
  }

  [bp~='offset-3@xxxl'] {
    grid-column-start: 3;
  }

  [bp~='offset-4@xxxl'] {
    grid-column-start: 4;
  }

  [bp~='offset-5@xxxl'] {
    grid-column-start: 5;
  }

  [bp~='offset-6@xxxl'] {
    grid-column-start: 6;
  }

  [bp~='offset-7@xxxl'] {
    grid-column-start: 7;
  }

  [bp~='offset-8@xxxl'] {
    grid-column-start: 8;
  }

  [bp~='offset-9@xxxl'] {
    grid-column-start: 9;
  }

  [bp~='offset-10@xxxl'] {
    grid-column-start: 10;
  }

  [bp~='offset-11@xxxl'] {
    grid-column-start: 11;
  }

  [bp~='offset-12@xxxl'] {
    grid-column-start: 12;
  }

  [bp~='hide@xxxl'] {
    display: none !important;
  }

  [bp~='show@xxxl'] {
    display: initial !important;
  }

  [bp~='first@xxxl'] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  [bp~='last@xxxl'] {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}

[bp~='flex'] {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[bp~='fill'] {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
  -ms-flex-preferred-size: 0%;
      flex-basis: 0%;
}

[bp~='fit'] {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

[bp~='float-center'] {
  margin-left: auto;
  margin-right: auto;
  display: block;
  float: none;
}

[bp~='float-left'] {
  float: left;
}

[bp~='float-right'] {
  float: right;
}

[bp~='clear-fix']::after {
  content: '';
  display: table;
  clear: both;
}

[bp~='text-left'] {
  text-align: left !important;
}

[bp~='text-right'] {
  text-align: right !important;
}

[bp~='text-center'] {
  text-align: center !important;
}

[bp~='1--max'] {
  max-width: 100px !important;
}

[bp~='2--max'] {
  max-width: 200px !important;
}

[bp~='3--max'] {
  max-width: 300px !important;
}

[bp~='4--max'] {
  max-width: 400px !important;
}

[bp~='5--max'] {
  max-width: 500px !important;
}

[bp~='6--max'] {
  max-width: 600px !important;
}

[bp~='7--max'] {
  max-width: 700px !important;
}

[bp~='8--max'] {
  max-width: 800px !important;
}

[bp~='9--max'] {
  max-width: 900px !important;
}

[bp~='10--max'] {
  max-width: 1000px !important;
}

[bp~='11--max'] {
  max-width: 1100px !important;
}

[bp~='12--max'] {
  max-width: 1200px !important;
}

[bp~='full-width'] {
  width: 100%;
}

@media (max-width: 550px) {
  [bp~='full-width-until@sm'] {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 700px) {
  [bp~='full-width-until@md'] {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 850px) {
  [bp~='full-width-until@lg'] {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 1100px) {
  [bp~='full-width-until@xl'] {
    width: 100% !important;
    max-width: 100% !important;
  }
}

[bp~='margin--xs'] {
  margin: 5px !important;
}

[bp~='margin-top--xs'] {
  margin-top: 5px !important;
}

[bp~='margin-bottom--xs'] {
  margin-bottom: 5px !important;
}

[bp~='margin-right--xs'] {
  margin-right: 5px !important;
}

[bp~='margin-left--xs'] {
  margin-left: 5px !important;
}

[bp~='padding--xs'] {
  padding: 5px !important;
}

[bp~='padding-top--xs'] {
  padding-top: 5px !important;
}

[bp~='padding-bottom--xs'] {
  padding-bottom: 5px !important;
}

[bp~='padding-right--xs'] {
  padding-right: 5px !important;
}

[bp~='padding-left--xs'] {
  padding-left: 5px !important;
}

[bp~='margin--sm'] {
  margin: 10px !important;
}

[bp~='margin-top--sm'] {
  margin-top: 10px !important;
}

[bp~='margin-bottom--sm'] {
  margin-bottom: 10px !important;
}

[bp~='margin-right--sm'] {
  margin-right: 10px !important;
}

[bp~='margin-left--sm'] {
  margin-left: 10px !important;
}

[bp~='padding--sm'] {
  padding: 10px !important;
}

[bp~='padding-top--sm'] {
  padding-top: 10px !important;
}

[bp~='padding-bottom--sm'] {
  padding-bottom: 10px !important;
}

[bp~='padding-right--sm'] {
  padding-right: 10px !important;
}

[bp~='padding-left--sm'] {
  padding-left: 10px !important;
}

[bp~='margin'] {
  margin: 30px !important;
}

[bp~='margin-top'] {
  margin-top: 30px !important;
}

[bp~='margin-bottom'] {
  margin-bottom: 30px !important;
}

[bp~='margin-right'] {
  margin-right: 30px !important;
}

[bp~='margin-left'] {
  margin-left: 30px !important;
}

[bp~='padding'] {
  padding: 30px !important;
}

[bp~='padding-top'] {
  padding-top: 30px !important;
}

[bp~='padding-bottom'] {
  padding-bottom: 30px !important;
}

[bp~='padding-right'] {
  padding-right: 30px !important;
}

[bp~='padding-left'] {
  padding-left: 30px !important;
}

[bp~='margin--lg'] {
  margin: 20px !important;
}

[bp~='margin-top--lg'] {
  margin-top: 20px !important;
}

[bp~='margin-bottom--lg'] {
  margin-bottom: 20px !important;
}

[bp~='margin-right--lg'] {
  margin-right: 20px !important;
}

[bp~='margin-left--lg'] {
  margin-left: 20px !important;
}

[bp~='padding--lg'] {
  padding: 20px !important;
}

[bp~='padding-top--lg'] {
  padding-top: 20px !important;
}

[bp~='padding-bottom--lg'] {
  padding-bottom: 20px !important;
}

[bp~='padding-right--lg'] {
  padding-right: 20px !important;
}

[bp~='padding-left--lg'] {
  padding-left: 20px !important;
}

[bp~='margin--none'] {
  margin: 0 !important;
}

[bp~='margin-top--none'] {
  margin-top: 0 !important;
}

[bp~='margin-bottom--none'] {
  margin-bottom: 0 !important;
}

[bp~='margin-right--none'] {
  margin-right: 0 !important;
}

[bp~='margin-left--none'] {
  margin-left: 0 !important;
}

[bp~='padding--none'] {
  padding: 0 !important;
}

[bp~='padding-top--none'] {
  padding-top: 0 !important;
}

[bp~='padding-bottom--none'] {
  padding-bottom: 0 !important;
}

[bp~='padding-right--none'] {
  padding-right: 0 !important;
}

[bp~='padding-left--none'] {
  padding-left: 0 !important;
}

/* ------------------------------------ *\
    $BASE
\* ------------------------------------ */

/* ------------------------------------ *\
    $FONTS
\* ------------------------------------ */

@font-face {
  font-family: 'everett-light';
  src: url("/wp-content/themes/sapient/resources/assets/fonts/everett-light-webfont.woff2") format("woff2"), url("/wp-content/themes/sapient/resources/assets/fonts/everett-light-webfont.woff") format("woff"), url("/wp-content/themes/sapient/resources/assets/fonts/everett-light-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'everett-medium';
  src: url("/wp-content/themes/sapient/resources/assets/fonts/everett-medium-webfont.woff2") format("woff2"), url("/wp-content/themes/sapient/resources/assets/fonts/everett-medium-webfont.woff") format("woff"), url("/wp-content/themes/sapient/resources/assets/fonts/everett-medium-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------ *\
    $FORMS
\* ------------------------------------ */

form ol,
form ul {
  list-style: none;
  margin-left: 0;
}

legend {
  margin-bottom: 6px;
  font-weight: bold;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

input,
select,
textarea {
  width: 100%;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

label {
  font-family: "everett-medium", sans-serif;
  font-size: 10px;
  line-height: 22px;
  letter-spacing: 2.5px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
}

input[type=text],
input[type=password],
input[type=email],
input[type=search],
input[type=tel],
select {
  background-color: #fff;
  font-size: 21px;
  font-family: "everett-light", sans-serif;
  padding: 20px 10px;
  border-bottom: 2.5px solid #dbff00;
  margin-bottom: 20px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input[type=text]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #939598;
}

input[type=text]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
select::-moz-placeholder {
  color: #939598;
}

input[type=text]::-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=search]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
select::-ms-input-placeholder {
  color: #939598;
}

input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
select::placeholder {
  color: #939598;
}

input[type=text]:focus,
input[type=text]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=search]:focus,
input[type=search]:active,
input[type=tel]:focus,
input[type=tel]:active,
select:focus,
select:active {
  -webkit-box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.05);
}

.u-reversed-out input {
  color: #fff;
  background-color: #161616;
}

.u-reversed-out label {
  color: #fff;
}

input[type=radio],
input[type=checkbox] {
  outline: none;
  margin: 0;
  margin-right: 5px;
  height: 18px;
  width: 18px;
  line-height: 1;
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: 0 0;
  cursor: pointer;
  display: block;
  float: left;
  border: 1px solid #939598;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
}

input[type=radio] + label,
input[type=checkbox] + label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-bottom: 0;
}

input[type=radio]:checked,
input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath d='M26.08,3.56l-2,1.95L10.61,19l-5-4L3.47,13.29,0,17.62l2.17,1.73L9.1,24.9,11,26.44l1.77-1.76L28.05,9.43,30,7.48Z' fill='%23939598'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px;
}

input[type=radio] {
  border-radius: 50px;
}

input[type=checkbox] {
  border-radius: 2px;
}

input[type=submit] {
  -webkit-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}

/* clears the 'X' from Internet Explorer */

input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the 'X' from Chrome */

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

/* removes the blue background on Chrome's autocomplete */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

select {
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 100%;
  padding-right: 30px;
}

/* ------------------------------------ *\
    $HEADINGS
\* ------------------------------------ */

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: normal !important;
}

h1,
.o-heading--xxl {
  font-family: "everett-light", sans-serif;
  font-weight: normal;
  letter-spacing: calc(-1.1px + (-2.29 - -1.1) * ((100vw - 400px) / (1200 - 400)));
  color: #000;
}

h1,
.o-heading--xxl {
  font-size: 91px;
  line-height: 76px;
}

@media screen and (min-width: 400px) {
  h1,
  .o-heading--xxl {
    font-size: calc(91px + 98 * ((100vw - 400px) / 800));
    line-height: calc(76px + 74 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  h1,
  .o-heading--xxl {
    font-size: 189px;
    line-height: 150px;
  }
}

h1.medium,
.o-heading--xl {
  font-family: "everett-light", sans-serif;
  font-weight: normal;
  letter-spacing: calc(-0.93px + (-1.36 - -0.93) * ((100vw - 400px) / (1200 - 400)));
  color: #000;
}

h1.medium,
.o-heading--xl {
  font-size: 62px;
  line-height: 64px;
}

@media screen and (min-width: 400px) {
  h1.medium,
  .o-heading--xl {
    font-size: calc(62px + 50 * ((100vw - 400px) / 800));
    line-height: calc(64px + 49 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  h1.medium,
  .o-heading--xl {
    font-size: 112px;
    line-height: 113px;
  }
}

h1.small,
.o-heading--xl-small {
  font-family: "everett-light", sans-serif;
  font-weight: normal;
  letter-spacing: calc(-0.93px + (-1.36 - -0.93) * ((100vw - 400px) / (1200 - 400)));
  color: #000;
}

h1.small,
.o-heading--xl-small {
  font-size: 45px;
  line-height: 48px;
}

@media screen and (min-width: 400px) {
  h1.small,
  .o-heading--xl-small {
    font-size: calc(45px + 30 * ((100vw - 400px) / 800));
    line-height: calc(48px + 28 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  h1.small,
  .o-heading--xl-small {
    font-size: 75px;
    line-height: 76px;
  }
}

h2,
.o-heading--l {
  font-family: "everett-light", sans-serif;
  font-weight: normal;
  letter-spacing: calc(-0.65px + (-1.44 - -0.65) * ((100vw - 400px) / (1200 - 400)));
  color: #000;
}

h2,
.o-heading--l {
  font-size: 30px;
  line-height: 32px;
}

@media screen and (min-width: 400px) {
  h2,
  .o-heading--l {
    font-size: calc(30px + 36 * ((100vw - 400px) / 800));
    line-height: calc(32px + 34 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  h2,
  .o-heading--l {
    font-size: 66px;
    line-height: 66px;
  }
}

h2.small,
.o-heading--l--small {
  font-family: "everett-light", sans-serif;
  font-weight: normal;
  letter-spacing: calc(-0.65px + (-1.44 - -0.65) * ((100vw - 400px) / (1200 - 400)));
  color: #000;
}

h2.small,
.o-heading--l--small {
  font-size: 30px;
  line-height: 32px;
}

@media screen and (min-width: 400px) {
  h2.small,
  .o-heading--l--small {
    font-size: calc(30px + 36 * ((100vw - 400px) / 800));
    line-height: calc(32px + 34 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  h2.small,
  .o-heading--l--small {
    font-size: 66px;
    line-height: 66px;
  }
}

@media (min-width: 700px) {
  h2.small,
  .o-heading--l--small {
    font-size: 49px;
    line-height: 54px;
    letter-spacing: -1.07;
  }
}

h4,
.o-heading--m {
  font-family: "everett-light", sans-serif;
  font-weight: normal;
  letter-spacing: calc(-0.52px + (-0.74 - -0.52) * ((100vw - 400px) / (1200 - 400)));
  color: #000;
}

h4,
.o-heading--m {
  font-size: 24px;
  line-height: 27px;
}

@media screen and (min-width: 400px) {
  h4,
  .o-heading--m {
    font-size: calc(24px + 10 * ((100vw - 400px) / 800));
    line-height: calc(27px + 9 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  h4,
  .o-heading--m {
    font-size: 34px;
    line-height: 36px;
  }
}

h5,
.o-heading--s {
  font-family: "everett-medium", sans-serif;
  font-weight: normal;
  color: #000;
}

h5,
.o-heading--s {
  font-size: 21px;
  line-height: 24px;
}

@media screen and (min-width: 400px) {
  h5,
  .o-heading--s {
    font-size: calc(21px + 11 * ((100vw - 400px) / 800));
    line-height: calc(24px + 13 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  h5,
  .o-heading--s {
    font-size: 32px;
    line-height: 37px;
  }
}

h3,
h6,
.o-heading--xs {
  font-family: "everett-medium", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: calc(3.71px + (4.68 - 3.71) * ((100vw - 400px) / (1200 - 400)));
  color: #000;
}

h3,
h6,
.o-heading--xs {
  font-size: 11.5px;
  line-height: 11.5px;
}

@media screen and (min-width: 400px) {
  h3,
  h6,
  .o-heading--xs {
    font-size: calc(11.5px + 3 * ((100vw - 400px) / 800));
    line-height: calc(11.5px + 3 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  h3,
  h6,
  .o-heading--xs {
    font-size: 14.5px;
    line-height: 14.5px;
  }
}

/* ------------------------------------ *\
    $LINKS
\* ------------------------------------ */

a,
a.u-reversed-out,
p.u-reversed-out a,
.u-reversed-out p a {
  position: relative;
  text-decoration: none;
  padding-bottom: 5px;
  -webkit-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  font-family: "everett-medium", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: calc(3.71px + (4.68 - 3.71) * ((100vw - 400px) / (1200 - 400)));
  color: #000;
}

a,
a.u-reversed-out,
p.u-reversed-out a,
.u-reversed-out p a {
  font-size: 11.5px;
  line-height: 11.5px;
}

@media screen and (min-width: 400px) {
  a,
  a.u-reversed-out,
  p.u-reversed-out a,
  .u-reversed-out p a {
    font-size: calc(11.5px + 3 * ((100vw - 400px) / 800));
    line-height: calc(11.5px + 3 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  a,
  a.u-reversed-out,
  p.u-reversed-out a,
  .u-reversed-out p a {
    font-size: 14.5px;
    line-height: 14.5px;
  }
}

a::after,
a.u-reversed-out::after,
p.u-reversed-out a::after,
.u-reversed-out p a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2.5px;
  top: 100%;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#000), color-stop(50%, #000), color-stop(50%, #dbff00));
  background: -webkit-linear-gradient(left, #000, #000 50%, #dbff00 50%);
  background: -o-linear-gradient(left, #000, #000 50%, #dbff00 50%);
  background: linear-gradient(to right, #000, #000 50%, #dbff00 50%);
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}

a:hover::after,
a.u-reversed-out:hover::after,
p.u-reversed-out a:hover::after,
.u-reversed-out p a:hover::after {
  background-position: 0 100%;
}

.u-reversed-out ul li a,
.u-reversed-out ol li a {
  color: #fff;
}

.u-reversed-out ul li a::after,
.u-reversed-out ol li a::after {
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(50%, #fff), color-stop(50%, #dbff00));
  background: -webkit-linear-gradient(left, #fff, #fff 50%, #dbff00 50%);
  background: -o-linear-gradient(left, #fff, #fff 50%, #dbff00 50%);
  background: linear-gradient(to right, #fff, #fff 50%, #dbff00 50%);
  background-size: 200% 100%;
  background-position: 100%;
}

a.u-reversed-out,
p.u-reversed-out a,
.u-reversed-out p a {
  color: #fff;
}

a.u-reversed-out::after,
p.u-reversed-out a::after,
.u-reversed-out p a::after {
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(50%, #fff), color-stop(50%, #dbff00));
  background: -webkit-linear-gradient(left, #fff, #fff 50%, #dbff00 50%);
  background: -o-linear-gradient(left, #fff, #fff 50%, #dbff00 50%);
  background: linear-gradient(to right, #fff, #fff 50%, #dbff00 50%);
  background-size: 200% 100%;
  background-position: 100%;
}

a.small {
  font-size: 80%;
  letter-spacing: 3px;
}

.o-rte-text a,
.o-rte-text p a,
.mce-content-body a,
.gform_body a {
  letter-spacing: unset;
  text-transform: unset;
  font-family: "everett-light", sans-serif;
}

.o-rte-text a::after,
.o-rte-text p a::after,
.mce-content-body a::after,
.gform_body a::after {
  top: 75%;
}

.gform_body a {
  color: #fff;
}

.c-main-footer--logo a::after,
.c-card-w-img a::after,
.c-team--card a::after {
  background: none;
}

/* ------------------------------------ *\
    $LISTS
\* ------------------------------------ */

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-wrap: normal !important;
}

/**
 * Definition Lists
 */

dl {
  overflow: hidden;
  margin: 0 0 20px;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* ------------------------------------ *\
    $SITE MAIN
\* ------------------------------------ */

body {
  background: #fff;
  font: 400 16px/1.3 "everett-light", sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@media (max-width: 699px) {
  .c-section-page--content {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.c-section-resources__body {
  padding: 40px 0px;
}

@media (max-width: 699px) {
  .c-section-resources form {
    width: 300px !important;
  }
}

.c-section-resources .c-card__category {
  border: solid 1px;
  border-radius: 10px;
}

.c-section-resources .c-card .border--sap-yellow {
  border-color: #dbff00;
}

.c-section-resources .c-card .border--sap-blue {
  border-color: #0082a1;
}

.c-section-resources .c-card .border--sap-green {
  border-color: #00f0b5;
}

.c-section-resources .c-card .border--sap-orange {
  border-color: #ff4f00;
}

.single-post {
  background-color: #000;
  color: #fff;
  margin-top: 100px;
}

.single-post h1,
.single-post a {
  color: #fff;
}

.single-post h1 {
  font-size: 66px;
  margin-bottom: 50px;
  line-height: 80px;
  margin-top: 40px;
}

.single-post .c-featured-img {
  width: auto;
  display: block;
  height: auto;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.55)), color-stop(50%, rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 50%);
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 50%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 50%);
  position: absolute;
  right: 0px;
  top: 0px;
}

.single-post .no-img .c-featured-img {
  display: none;
}

.single-post .no-img .c-post-content {
  margin-top: 80px;
}

.single-post .c-post-content {
  position: relative;
  margin-top: 300px;
  margin-bottom: 100px;
  margin-left: 100px;
}

.single-post h3 {
  text-transform: uppercase;
}

.single-post .o-back {
  font-size: 11px;
}

@media (max-width: 699px) {
  .single-post {
    margin: 60px 30px;
  }

  .single-post .c-post-content {
    width: 100%;
    margin-left: 0px;
    margin-top: 0px;
  }

  .single-post .c-featured-img {
    position: relative;
  }

  .single-post .c-featured-img img {
    margin: 30px 0px;
  }

  .single-post h1 {
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 40px;
  }
}

.single-resources {
  background-color: #161616;
  color: #fff;
  margin-top: 100px;
}

@media (max-width: 1200px) {
  .single-resources .l-main {
    padding-top: 40px;
  }
}

@media (max-width: 850px) {
  .single-resources .l-main {
    margin-top: -21px;
    padding-top: 0;
  }
}

@media (max-width: 550px) {
  .single-resources .l-main {
    margin-top: -31px;
  }
}

.single-resources h1,
.single-resources a {
  color: #fff;
}

.single-resources h1 {
  font-size: 66px;
  margin-bottom: 50px;
  line-height: 80px;
}

.single-resources h2 {
  font-size: 32px;
  text-align: center;
  color: #fff;
  padding: 20px 40px 40px 40px;
}

.single-resources .resource-image {
  height: 460px;
  position: relative;
  width: 120vw;
  margin-left: -20vw;
  background-size: cover;
  background-position: center;
}

.single-resources .no-img .c-featured-img {
  display: none;
}

.single-resources .no-img .c-post-content {
  margin-top: 80px;
}

.single-resources .c-post-content {
  position: relative;
  margin-top: 80px;
  margin-bottom: 100px;
  margin-left: 30px;
  padding-right: 30px;
}

.single-resources .o-accent svg {
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  left: -35px;
  top: -25px;
}

.single-resources .o-byline {
  font-family: "everett-light", sans-serif;
  letter-spacing: 0.5em;
  font-size: 14.5px;
  text-transform: uppercase;
}

.single-resources .o-back {
  font-size: 11px;
}

.single-resources .resource-related {
  margin-bottom: 150px;
}

.single-resources .form-mobile {
  background-color: #000;
  border-radius: 20px;
  color: #fff;
  width: 100%;
  padding: 30px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 999;
  display: none;
  margin: 50px 0px 100px 0px;
}

.single-resources .form-mobile a,
.single-resources .form-mobile button {
  background: #dbff00;
  font-family: "everett-medium", sans-serif;
  letter-spacing: 0.5em;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  padding: 30px;
  width: 100%;
  position: absolute;
  left: 0;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.single-resources .form-mobile a::after,
.single-resources .form-mobile button::after {
  background: none;
}

@media (max-width: 699px) {
  .single-resources .form-mobile {
    display: block;
  }
}

.single-resources .form-desktop {
  background-color: #000;
  border-radius: 20px;
  color: #fff;
  width: 100%;
  padding: 30px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: -100px;
  z-index: 999;
  display: block;
  /* Safari */
  position: sticky;
  top: 130px;
}

.single-resources .form-desktop a,
.single-resources .form-desktop button {
  background: #dbff00;
  font-family: "everett-medium", sans-serif;
  letter-spacing: 0.5em;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  padding: 30px;
  width: 100%;
  position: absolute;
  left: 0;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.single-resources .form-desktop a::after,
.single-resources .form-desktop button::after {
  background: none;
}

@media (max-width: 699px) {
  .single-resources .form-desktop {
    display: none;
  }
}

@media (max-width: 699px) {
  .single-resources .c-post-content {
    margin: 30px 30px 60px 30px;
    padding-right: 0px;
  }

  .single-resources .resource-image {
    height: 180px;
  }

  .single-resources h1 {
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 40px;
  }
}

/* ------------------------------------ *\
    $MEDIA ELEMENTS
\* ------------------------------------ */

/**
 * Flexible Media
 */

img,
video,
object,
svg,
iframe {
  max-width: 100%;
  border: none;
  display: block;
}

img {
  height: auto;
}

svg {
  max-height: 100%;
}

picture,
picture img {
  display: block;
}

figure {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

figcaption a {
  display: block;
}

/* ------------------------------------ *\
    $PRINT STYLES
\* ------------------------------------ */

@media print {
  *,
  *::before,
  *::after,
  *::first-letter,
  *::first-line {
    background: transparent !important;
    color: black !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */

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

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

  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
    height: auto;
  }

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

  h2,
  h3 {
    page-break-after: avoid;
  }

  .no-print,
  .c-main-header,
  .c-main-footer,
  .ad {
    display: none;
  }
}

/* ------------------------------------ *\
    $TABLES
\* ------------------------------------ */

table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #939598;
  width: 100%;
}

th {
  text-align: left;
  border: 1px solid transparent;
  padding: 10px 0;
  text-transform: uppercase;
  vertical-align: top;
  font-weight: bold;
}

tr {
  border: 1px solid transparent;
}

td {
  border: 1px solid transparent;
  padding: 10px;
}

/**
 * Responsive Table
 */

.c-table--responsive {
  border: 1px solid #939598;
  border-collapse: collapse;
  padding: 0;
  width: 100%;
}

.c-table--responsive tr {
  border: 1px solid #939598;
  background-color: #f0f0f0;
}

.c-table--responsive th,
.c-table--responsive td {
  padding: 10px;
}

.c-table--responsive th {
  text-transform: uppercase;
  border-bottom: 1px solid #939598;
}

.c-table--responsive th {
  font-size: 11.5px;
  line-height: 11.5px;
}

@media screen and (min-width: 400px) {
  .c-table--responsive th {
    font-size: calc(11.5px + 3 * ((100vw - 400px) / 800));
    line-height: calc(11.5px + 3 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  .c-table--responsive th {
    font-size: 14.5px;
    line-height: 14.5px;
  }
}

@media (max-width: 700px) {
  .c-table--responsive {
    border: 0;
  }

  .c-table--responsive thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .c-table--responsive tr {
    border-bottom: 3px solid #939598;
    display: block;
    margin-bottom: 10px;
  }

  .c-table--responsive tr.this-is-active td:not(:first-child) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .c-table--responsive tr.this-is-active td:first-child::before {
    content: "- " attr(data-label);
  }

  .c-table--responsive td {
    border-bottom: 1px solid #939598;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 40px;
  }

  .c-table--responsive td:first-child {
    cursor: pointer;
  }

  .c-table--responsive td:first-child::before {
    content: "+ " attr(data-label);
  }

  .c-table--responsive td:last-child {
    border-bottom: 0;
  }

  .c-table--responsive td:not(:first-child) {
    display: none;
  }

  .c-table--responsive td::before {
    content: attr(data-label);
    font-weight: bold;
    text-transform: uppercase;
  }

  .c-table--responsive td::before {
    font-size: 11.5px;
    line-height: 11.5px;
  }
}

@media screen and (max-width: 700px) and (min-width: 400px) {
  .c-table--responsive td::before {
    font-size: calc(11.5px + 3 * ((100vw - 400px) / 800));
    line-height: calc(11.5px + 3 * ((100vw - 400px) / 800));
  }
}

@media screen and (max-width: 700px) and (min-width: 1200px) {
  .c-table--responsive td::before {
    font-size: 14.5px;
    line-height: 14.5px;
  }
}

/* ------------------------------------ *\
    $TEXT ELEMENTS
\* ------------------------------------ */

/**
 * Text-Related Elements
 */

p {
  font-family: "everett-light", sans-serif;
  letter-spacing: 0;
}

p {
  font-size: 12px;
  line-height: 18px;
}

@media screen and (min-width: 400px) {
  p {
    font-size: calc(12px + 5 * ((100vw - 400px) / 800));
    line-height: calc(18px + 6 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  p {
    font-size: 17px;
    line-height: 24px;
  }
}

@media print {
  p {
    font-size: 12px;
    line-height: 1.3;
  }
}

small {
  font-size: 90%;
}

/**
 * Bold
 */

strong,
b {
  font-family: "everett-medium", sans-serif;
  font-weight: normal;
}

/**
 * Blockquote
 */

blockquote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

blockquote::before {
  content: "\201C";
  font-family: "everett-light", sans-serif;
  font-size: 40px;
  line-height: 1;
  color: #939598;
  min-width: 40px;
  border-right: 6px solid #939598;
  display: block;
  margin-right: 20px;
}

blockquote p {
  line-height: 1.7;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/**
 * Horizontal Rule
 */

hr {
  height: 1px;
  border: none;
  background-color: rgba(240, 240, 240, 0.5);
  margin: 0 auto;
}

/**
 * Abbreviation
 */

abbr {
  border-bottom: 1px dotted #939598;
  cursor: help;
}

/* ------------------------------------ *\
    $LAYOUT
\* ------------------------------------ */

/* ------------------------------------ *\
    $WRAPPERS & CONTAINERS
\* ------------------------------------ */

/**
 * Wrapping element to keep content contained and centered.
 */

.l-wrap {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  position: relative;
}

@media (min-width: 1201px) {
  .l-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/**
 * Layout containers - keep content centered and within a maximum width. Also
 * adjusts left and right padding as the viewport widens.
 */

.l-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.l-container--xl {
  max-width: 1600px;
}

/**
 * Grid classes
 */

.l-container--1col {
  max-width: 100pxpx;
}

.l-container--2col {
  max-width: 180pxpx;
}

.l-container--3col {
  max-width: 260pxpx;
}

.l-container--4col {
  max-width: 360pxpx;
}

.l-container--5col {
  max-width: 460pxpx;
}

.l-container--6col {
  max-width: 560pxpx;
}

.l-container--7col {
  max-width: 660pxpx;
}

.l-container--8col {
  max-width: 760pxpx;
}

.l-container--9col {
  max-width: 860pxpx;
}

.l-container--10col {
  max-width: 960pxpx;
}

.l-container--11col {
  max-width: 1060pxpx;
}

.l-container--12col {
  max-width: 1160pxpx;
}

/* ------------------------------------ *\
    $TEXT
\* ------------------------------------ */

/* ------------------------------------ *\
    $TEXT TYPES
\* ------------------------------------ */

/**
 * Font Families
 */

.u-font {
  font-family: "everett-light", sans-serif;
}

.u-font--primary,
.u-font--primary p {
  font-family: "everett-light", sans-serif;
}

.u-font--secondary,
.u-font--secondary p {
  font-family: "everett-medium", sans-serif;
}

/**
 * Text Sizes
 */

.u-font--xs {
  font-size: 11.5px;
  line-height: 11.5px;
}

@media screen and (min-width: 400px) {
  .u-font--xs {
    font-size: calc(11.5px + 3 * ((100vw - 400px) / 800));
    line-height: calc(11.5px + 3 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  .u-font--xs {
    font-size: 14.5px;
    line-height: 14.5px;
  }
}

.u-font--s {
  font-size: 21px;
  line-height: 24px;
}

@media screen and (min-width: 400px) {
  .u-font--s {
    font-size: calc(21px + 11 * ((100vw - 400px) / 800));
    line-height: calc(24px + 13 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  .u-font--s {
    font-size: 32px;
    line-height: 37px;
  }
}

.u-font--m {
  font-size: 24px;
  line-height: 27px;
}

@media screen and (min-width: 400px) {
  .u-font--m {
    font-size: calc(24px + 10 * ((100vw - 400px) / 800));
    line-height: calc(27px + 9 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  .u-font--m {
    font-size: 34px;
    line-height: 36px;
  }
}

.u-font--l {
  font-size: 30px;
  line-height: 32px;
}

@media screen and (min-width: 400px) {
  .u-font--l {
    font-size: calc(30px + 36 * ((100vw - 400px) / 800));
    line-height: calc(32px + 34 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  .u-font--l {
    font-size: 66px;
    line-height: 66px;
  }
}

.u-font--xl {
  font-size: 62px;
  line-height: 64px;
}

@media screen and (min-width: 400px) {
  .u-font--xl {
    font-size: calc(62px + 50 * ((100vw - 400px) / 800));
    line-height: calc(64px + 49 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  .u-font--xl {
    font-size: 112px;
    line-height: 113px;
  }
}

.u-font--xxl {
  font-size: 91px;
  line-height: 76px;
}

@media screen and (min-width: 400px) {
  .u-font--xxl {
    font-size: calc(91px + 98 * ((100vw - 400px) / 800));
    line-height: calc(76px + 74 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  .u-font--xxl {
    font-size: 189px;
    line-height: 150px;
  }
}

.u-font--body-large,
.u-font--body-large p,
.o-rte-text.u-font--body-large > p {
  font-size: 15px;
  line-height: 23px;
}

@media screen and (min-width: 400px) {
  .u-font--body-large,
  .u-font--body-large p,
  .o-rte-text.u-font--body-large > p {
    font-size: calc(15px + 6 * ((100vw - 400px) / 800));
    line-height: calc(23px + 7 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  .u-font--body-large,
  .u-font--body-large p,
  .o-rte-text.u-font--body-large > p {
    font-size: 21px;
    line-height: 30px;
  }
}

/**
 * Text Transforms
 */

.u-text-transform--upper {
  text-transform: uppercase;
}

.u-text-transform--lower {
  text-transform: lowercase;
}

.u-text-transform--none {
  text-transform: none;
}

/**
 * Text Styles
 */

.u-text-style--italic {
  font-style: italic;
}

.u-font-weight--normal {
  font-weight: normal;
}

/**
 * Text Positioning
 */

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

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

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

/**
 * Text Decorations
 */

.u-text-decoration--underline {
  text-decoration: underline;
}

/**
 * Rich text editor text
 */

.o-rte-text {
  width: 100%;
  margin: 0 auto;
}

.o-rte-text > * + * {
  margin-top: 20px;
}

.o-rte-text > dl dd,
.o-rte-text > dl dt,
.o-rte-text > ol li,
.o-rte-text > ul li,
.o-rte-text > p {
  font-family: "everett-light", sans-serif;
  letter-spacing: 0;
}

.o-rte-text > dl dd,
.o-rte-text > dl dt,
.o-rte-text > ol li,
.o-rte-text > ul li,
.o-rte-text > p {
  font-size: 12px;
  line-height: 18px;
}

@media screen and (min-width: 400px) {
  .o-rte-text > dl dd,
  .o-rte-text > dl dt,
  .o-rte-text > ol li,
  .o-rte-text > ul li,
  .o-rte-text > p {
    font-size: calc(12px + 5 * ((100vw - 400px) / 800));
    line-height: calc(18px + 6 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  .o-rte-text > dl dd,
  .o-rte-text > dl dt,
  .o-rte-text > ol li,
  .o-rte-text > ul li,
  .o-rte-text > p {
    font-size: 17px;
    line-height: 24px;
  }
}

@media print {
  .o-rte-text > dl dd,
  .o-rte-text > dl dt,
  .o-rte-text > ol li,
  .o-rte-text > ul li,
  .o-rte-text > p {
    font-size: 12px;
    line-height: 1.3;
  }
}

.o-rte-text > h1,
.o-rte-text > h2,
.o-rte-text > h3,
.o-rte-text > h4,
.o-rte-text > h5,
.o-rte-text > h6 {
  padding-top: 20px;
  margin-bottom: -10px;
}

.o-rte-text h2:empty,
.o-rte-text h3:empty,
.o-rte-text p:empty {
  display: none;
}

.o-rte-text > h2 + h3 {
  margin-top: 0;
  padding-top: 10px;
}

.o-rte-text a {
  text-decoration: none;
}

.o-rte-text hr {
  margin-top: 40px;
  margin-bottom: 40px;
}

.o-rte-text code,
.o-rte-text pre {
  font-size: 125%;
}

.o-rte-text ol,
.o-rte-text ul {
  padding-left: 0;
  margin-left: 0;
}

.o-rte-text ol li,
.o-rte-text ul li {
  list-style: none;
  padding-left: 34px;
  margin-left: 0;
  position: relative;
  line-height: 2.1em;
}

.o-rte-text ol li::before,
.o-rte-text ul li::before {
  color: #939598;
  width: 10px;
  display: inline-block;
  position: absolute;
  left: 0;
  font-size: 24px;
  line-height: 1;
  top: 4px;
}

.o-rte-text ol li li,
.o-rte-text ul li li {
  list-style: none;
}

.o-rte-text ol {
  counter-reset: item;
}

.o-rte-text ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
}

.o-rte-text ol li li {
  counter-reset: item;
}

.o-rte-text ol li li::before {
  content: '\2010';
}

.o-rte-text ul li::before {
  content: '\2022';
}

.o-rte-text ul li li::before {
  content: '\25E6';
}

/* ------------------------------------ *\
    $COMPONENTS
\* ------------------------------------ */

/* ------------------------------------ *\
    $BLOCKS
\* ------------------------------------ */

/* ------------------------------------ *\
    $CARDS
\* ------------------------------------ */

.c-card-w-img {
  position: relative;
  background-color: transparent;
  border-radius: 15px;
  -webkit-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  padding: 25px;
  margin: 10px;
}

.c-card-w-img__image-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}

.c-card-w-img__image {
  width: 100%;
}

.c-card-w-img__image img {
  width: 100%;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}

.c-card-w-img__overlay-image {
  position: absolute;
  z-index: 9;
  width: 100%;
}

.c-card-w-img__heading {
  margin-top: 20px;
}

.c-card-w-img__heading a {
  color: #fff;
  font-size: 32px;
  font-family: "everett-light", sans-serif;
  text-transform: initial;
  letter-spacing: normal;
  line-height: 1;
}

.c-card-w-img__heading a::after {
  display: none;
}

.c-card-w-img__dek {
  color: #fff;
}

.c-card-w-img__category {
  color: #fff;
  position: absolute;
  z-index: 999;
  top: 40px;
  right: 40px;
  padding: 2px 10px;
  border-radius: 15px;
}

.c-card-w-img:hover {
  background-color: #161616;
}

.c-card-w-img:hover .c-card-w-img__image img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.border--sap-yellow {
  border: 1px solid #dbff00 !important;
}

.border--sap-green {
  border: 1px solid #00f0b5 !important;
}

.border--sap-blue {
  border: 1px solid #0082a1 !important;
}

.border--sap-orange {
  border: 1px solid #ff4f00 !important;
}

.tag-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: center;
  -ms-flex-item-align: center;
      align-self: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 0;
}

.tag-container .c-card__category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 15px;
  text-align: center;
  margin: 10px;
  cursor: pointer;
  text-transform: none;
  border-radius: 20px;
  letter-spacing: 0.05em;
  font-size: 16px;
  -webkit-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}

.tag-container .c-card__category:hover {
  background-color: #dbff00 !important;
  color: #161616;
}

.tag-container .res-active {
  background-color: #dbff00 !important;
  color: #161616;
}

.c-card {
  position: relative;
  background-color: transparent;
  border-radius: 15px;
  -webkit-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  padding: 25px;
  margin: 10px;
}

.c-card__heading {
  margin-top: 20px;
}

.c-card__heading a {
  color: #fff;
  font-size: 32px;
  font-family: "everett-light", sans-serif;
  text-transform: initial;
  letter-spacing: normal;
  line-height: 1;
}

.c-card__heading a::after {
  display: none;
}

.c-card__dek {
  color: #fff;
}

.c-card__category {
  color: #fff;
  margin-top: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0082a1;
  font-family: "everett-light", sans-serif;
  letter-spacing: 0.7em;
  font-size: 11.5px;
  text-transform: uppercase;
}

.c-card span {
  color: #fff;
  font-size: 17px;
}

.c-card:hover {
  background-color: #161616;
}

/* ------------------------------------ *\
    $HEROS
\* ------------------------------------ */

.c-hero {
  width: 100%;
  position: relative;
  padding: 100px 0;
}

@media (max-width: 550px) {
  .c-hero {
    padding: 100px 0 50px 0;
  }
}

.c-hero.u-space-fix {
  margin: -20px 0 0 0;
  padding: 0;
}

.c-hero--split {
  height: 887px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  overflow: visible;
}

@media (max-width: 1100px) {
  .c-hero--split {
    height: 700px;
    background-position: -10% 50%;
  }
}

@media (max-width: 850px) {
  .c-hero--split {
    height: 600px;
  }
}

@media (max-width: 700px) {
  .c-hero--split {
    height: 700px;
    background-position: center top;
    background-size: cover;
    overflow: hidden;
  }
}

@media (max-width: 550px) {
  .c-hero--split {
    height: 850px;
    background-size: contain;
  }
}

.c-hero--split .o-shape--dots {
  position: absolute;
  width: 270px;
  height: 246px;
  bottom: -52px;
  right: 47%;
  z-index: 50;
}

@media (max-width: 1100px) {
  .c-hero--split .o-shape--dots {
    width: 220px;
    height: 200px;
    bottom: -67px;
    right: 42%;
  }
}

@media (max-width: 850px) {
  .c-hero--split .o-shape--dots {
    width: 175px;
    height: 160px;
  }
}

@media (max-width: 700px) {
  .c-hero--split .o-shape--dots {
    right: 38%;
    bottom: -87px;
  }
}

@media (max-width: 550px) {
  .c-hero--split .o-shape--dots {
    width: 138px;
    height: 137px;
    right: 14%;
    bottom: -55px;
  }
}

.c-hero--split .c-hero--content {
  position: relative;
  top: 240px;
}

@media (max-width: 1200px) {
  .c-hero--split .c-hero--content {
    padding: 0 40px;
  }
}

@media (max-width: 1100px) {
  .c-hero--split .c-hero--content {
    top: 175px;
  }
}

@media (max-width: 700px) {
  .c-hero--split .c-hero--content {
    top: 230px;
  }
}

@media (max-width: 550px) {
  .c-hero--split .c-hero--content {
    padding: 0 20px;
  }
}

.c-hero--split .c-hero--content .o-rte-text > * {
  padding-top: 0;
}

@media (max-width: 850px) {
  .c-hero--split .c-hero--content .o-rte-text > * {
    font-size: 20px;
    line-height: 1.3;
  }
}

.c-hero--split .c-hero--content h1 {
  margin: 20px 0;
  line-height: 1;
}

@media (max-width: 1100px) {
  .c-hero--split .c-hero--content h1 {
    margin: 0;
  }
}

.c-hero--split .c-hero--content .o-headline--large {
  margin-left: 80px;
}

@media (max-width: 1100px) {
  .c-hero--split .c-hero--content .o-headline--large {
    margin-left: 50px;
  }
}

@media (max-width: 550px) {
  .c-hero--split .c-hero--content .o-headline--large {
    margin-left: 20px;
  }
}

.c-hero--split .c-hero--content .o-headline--small-2 {
  margin-left: 180px;
}

@media (max-width: 1100px) {
  .c-hero--split .c-hero--content .o-headline--small-2 {
    margin-left: 120px;
  }
}

@media (max-width: 550px) {
  .c-hero--split .c-hero--content .o-headline--small-2 {
    margin-left: 80px;
  }
}

.c-hero--split .c-hero--content h5 {
  font-family: "everett-light", sans-serif;
}

.c-hero--split .c-hero--intro {
  position: relative;
  top: -120px;
}

@media (max-width: 1100px) {
  .c-hero--split .c-hero--intro {
    top: -57px;
  }
}

@media (max-width: 700px) {
  .c-hero--split .c-hero--intro {
    top: 0;
  }
}

@media (max-width: 550px) {
  .c-hero--split .c-hero--intro {
    top: 160px;
  }
}

@media (max-width: 550px) {
  .c-hero--split .c-hero--intro .delayed--5s {
    -webkit-animation-delay: 2s;
         -o-animation-delay: 2s;
            animation-delay: 2s;
  }
}

.c-hero--split .shape-triangles--large,
.c-hero--split .shape-circles--small {
  position: absolute !important;
  z-index: 50;
}

.c-hero--split .shape-triangles--large {
  width: 336px;
  top: 150px !important;
  left: 65% !important;
}

@media (max-width: 1100px) {
  .c-hero--split .shape-triangles--large {
    width: 250px;
    top: 123px !important;
    left: 69% !important;
  }
}

@media (max-width: 850px) {
  .c-hero--split .shape-triangles--large {
    width: 190px;
    left: 73% !important;
  }
}

@media (max-width: 700px) {
  .c-hero--split .shape-triangles--large {
    width: 155px;
    top: 175px !important;
  }
}

@media (max-width: 550px) {
  .c-hero--split .shape-triangles--large {
    width: 120px;
    top: 110px !important;
    left: 64% !important;
  }
}

.c-hero--split .shape-circles--small {
  width: 274px;
  top: 83%;
  left: 100px;
}

.c-hero--split .shape-circles--small.front {
  width: 348px;
  top: 85% !important;
  left: 80px !important;
}

@media (max-width: 1100px) {
  .c-hero--split .shape-circles--small {
    width: 230px;
    top: 86% !important;
    left: 60px !important;
  }

  .c-hero--split .shape-circles--small.front {
    width: 277px;
  }
}

@media (max-width: 850px) {
  .c-hero--split .shape-circles--small {
    width: 185px;
  }

  .c-hero--split .shape-circles--small.front {
    width: 233px;
  }
}

@media (max-width: 700px) {
  .c-hero--split .shape-circles--small {
    width: 170px;
    left: 50px !important;
  }

  .c-hero--split .shape-circles--small.front {
    width: 212px;
    top: 85% !important;
    left: 80px !important;
  }
}

@media (max-width: 550px) {
  .c-hero--split .shape-circles--small {
    width: 130px;
    left: 30px !important;
    top: 51% !important;
  }

  .c-hero--split .shape-circles--small.front {
    width: 155px;
    left: 32px !important;
    top: 50% !important;
  }
}

.c-hero--image-right {
  min-height: 700px;
  overflow: visible;
}

@media (max-width: 1200px) {
  .c-hero--image-right {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 850px) {
  .c-hero--image-right {
    height: auto;
    padding-bottom: 40px;
    overflow: hidden;
  }
}

@media (max-width: 550px) {
  .c-hero--image-right {
    padding-bottom: 0;
    min-height: 635px;
  }
}

.c-hero--image-right::before {
  content: "";
  position: absolute;
  top: 25px;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 715px;
  background-position: right center;
  -webkit-animation: fade-in--R 2.5s linear forwards;
       -o-animation: fade-in--R 2.5s linear forwards;
          animation: fade-in--R 2.5s linear forwards;
}

@media (max-width: 1200px) {
  .c-hero--image-right::before {
    right: 50px;
  }
}

@media (max-width: 1100px) {
  .c-hero--image-right::before {
    background-size: 600px;
  }
}

@media (max-width: 850px) {
  .c-hero--image-right::before {
    top: -185px;
    right: 0;
    background-size: 80%;
    background-position: center center;
  }
}

@media (max-width: 550px) {
  .c-hero--image-right::before {
    top: -195px;
  }
}

.c-hero--image-right .c-hero--content {
  position: relative;
  max-width: 500px;
  left: 20px;
  top: 180px;
}

@media (max-width: 1100px) {
  .c-hero--image-right .c-hero--content {
    top: 225px;
    left: -20px;
  }
}

@media (max-width: 850px) {
  .c-hero--image-right .c-hero--content {
    text-align: center;
    height: 550px;
    max-width: unset;
    top: 250px;
    left: 0;
  }

  .c-hero--image-right .c-hero--content .u-align--right {
    text-align: center;
  }
}

@media (max-width: 550px) {
  .c-hero--image-right .c-hero--content {
    height: 450px;
    top: 120px;
  }
}

.c-hero--image-right .c-hero--content h1 {
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .c-hero--image-right .c-hero--content h1 {
    font-size: 95px;
    line-height: 1;
  }
}

@media (max-width: 699px) {
  .c-hero--image-right .c-hero--content h1 {
    font-size: 74px;
    line-height: 1;
  }
}

@media (max-width: 550px) {
  .c-hero--image-right .c-hero--content h1 {
    font-size: 64px;
  }
}

.c-hero--image-right .o-image {
  position: relative;
  top: 190px;
  width: 423px;
  height: 317px;
}

@media (max-width: 1100px) {
  .c-hero--image-right .o-image {
    width: 255px;
    height: 238px;
    right: -36px;
  }
}

@media (max-width: 850px) {
  .c-hero--image-right .o-image {
    top: 130px;
    right: unset;
    left: unset;
    margin: 0 auto;
  }
}

@media (max-width: 550px) {
  .c-hero--image-right .o-image {
    top: 42px;
    width: 173px;
    height: 157px;
  }
}

.c-hero--image-left {
  min-height: 700px;
  background-repeat: no-repeat;
  background-size: 690px;
  background-position: left center;
  padding-top: 150px;
}

.c-hero--image-left .shape-triangles--medium {
  content: "";
  position: absolute;
  width: 227px;
  height: 220px;
  top: 425px !important;
  left: -100px !important;
}

.c-hero--centered {
  min-height: 700px;
  overflow: visible;
}

@media (max-width: 700px) {
  .c-hero--centered {
    overflow: hidden;
  }
}

@media (max-width: 550px) {
  .c-hero--centered {
    padding: 10px 0;
    min-height: 550px;
  }
}

.c-hero--centered .c-hero--content {
  position: relative;
  top: 100px;
}

@media (max-width: 700px) {
  .c-hero--centered .c-hero--content {
    top: 25px;
  }
}

@media (max-width: 550px) {
  .c-hero--centered .c-hero--content {
    top: 0;
    margin-top: 50px;
    padding: 0 20px;
  }
}

@media (max-width: 550px) {
  .c-hero--centered .c-hero--content h1.medium {
    font-family: "everett-light", sans-serif;
    font-weight: normal;
    letter-spacing: calc(-0.93px + (-1.36 - -0.93) * ((100vw - 400px) / (1200 - 400)));
    color: #000;
    color: #fff;
  }

  .c-hero--centered .c-hero--content h1.medium {
    font-size: 45px;
    line-height: 48px;
  }
}

@media screen and (max-width: 550px) and (min-width: 400px) {
  .c-hero--centered .c-hero--content h1.medium {
    font-size: calc(45px + 30 * ((100vw - 400px) / 800));
    line-height: calc(48px + 28 * ((100vw - 400px) / 800));
  }
}

@media screen and (max-width: 550px) and (min-width: 1200px) {
  .c-hero--centered .c-hero--content h1.medium {
    font-size: 75px;
    line-height: 76px;
  }
}

.c-hero--centered .shape-circle--large,
.c-hero--centered .shape-circle--medium,
.c-hero--centered .shape-circle--small,
.c-hero--centered .shape-triangles--small {
  position: absolute !important;
  z-index: -1;
}

.c-hero--centered .shape-circle--large {
  width: 282px;
  height: 282px;
  top: 100px !important;
  left: -180px !important;
}

@media (max-width: 550px) {
  .c-hero--centered .shape-circle--large {
    width: 120px;
    height: 120px;
    top: 0 !important;
    left: -75px !important;
  }
}

.c-hero--centered .shape-circle--medium {
  width: 249px;
  height: 249px;
  top: 446px !important;
  left: 84% !important;
}

@media (max-width: 550px) {
  .c-hero--centered .shape-circle--medium {
    width: 100px;
    height: 100px;
    top: 360px !important;
    left: 73% !important;
  }
}

.c-hero--centered .shape-circle--small {
  width: 127px;
  height: 127px;
  top: 156px !important;
  left: 96% !important;
}

@media (max-width: 550px) {
  .c-hero--centered .shape-circle--small {
    width: 51px;
    height: 51px;
    top: -5px !important;
    left: 83% !important;
  }
}

.c-hero--centered .shape-triangles--small {
  width: 150px;
  height: 159px;
  top: 526px !important;
  left: -65px !important;
}

@media (max-width: 550px) {
  .c-hero--centered .shape-triangles--small {
    width: 72px;
    height: 81px;
    top: 210px !important;
    left: -36px !important;
  }
}

.c-hero--full-video {
  height: 1000px;
  position: relative;
}

@media (max-width: 850px) {
  .c-hero--full-video {
    height: 550px;
  }
}

@media (max-width: 700px) {
  .c-hero--full-video {
    overflow: hidden;
  }
}

@media (max-width: 550px) {
  .c-hero--full-video {
    min-height: 650px;
  }
}

.c-hero--full-video .c-hero--content {
  position: relative;
  top: 160px;
}

@media (max-width: 1200px) {
  .c-hero--full-video .c-hero--content {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 850px) {
  .c-hero--full-video .c-hero--content {
    top: 90px;
  }
}

@media (max-width: 550px) {
  .c-hero--full-video .c-hero--content h1 {
    font-size: 74px;
    line-height: 77px;
    line-height: -0.93px;
  }
}

@media (max-width: 550px) {
  .c-hero--full-video .c-hero--content h1.small {
    font-size: 45px;
    line-height: 48px;
  }
}

@media (max-width: 550px) {
  .c-hero--full-video .c-hero--content h1.u-space--bottom {
    margin-bottom: 10px;
  }
}

.c-hero--full-video .c-hero--intro {
  margin-top: 100px;
}

@media (max-width: 1100px) {
  .c-hero--full-video .c-hero--intro {
    margin-top: 127px;
  }
}

@media (max-width: 850px) {
  .c-hero--full-video .c-hero--intro {
    margin-top: 40px;
  }
}

.c-hero--full-video .shape-circles--large,
.c-hero--full-video .shape-triangle--medium {
  position: absolute !important;
}

.c-hero--full-video .shape-circles--large {
  width: 465px;
  top: 125px !important;
  left: 65% !important;
}

@media (max-width: 1100px) {
  .c-hero--full-video .shape-circles--large {
    width: 420px;
    left: 69% !important;
  }
}

@media (max-width: 850px) {
  .c-hero--full-video .shape-circles--large {
    width: 300px;
    top: -33px !important;
  }
}

@media (max-width: 550px) {
  .c-hero--full-video .shape-circles--large {
    width: 186px;
    height: 218px;
    top: -15px !important;
  }
}

.c-hero--full-video .shape-triangle--medium {
  width: 217px;
  top: 515px !important;
  left: 0 !important;
}

@media (max-width: 850px) {
  .c-hero--full-video .shape-triangle--medium {
    width: 155px;
    left: 25px !important;
    top: 327px !important;
  }
}

@media (max-width: 700px) {
  .c-hero--full-video .shape-triangle--medium {
    left: 50px !important;
    top: 392px !important;
  }
}

@media (max-width: 550px) {
  .c-hero--full-video .shape-triangle--medium {
    width: 87px;
    height: 87px;
    left: 40px !important;
    top: 300px !important;
  }
}

.c-hero--parallax {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}

.c-hero--description {
  width: 100%;
  background: #000;
  padding: 80px 0;
}

@media (max-width: 1200px) {
  .c-hero--description {
    padding: 60px 0;
  }
}

.c-hero .o-vertical-stripe {
  position: absolute;
  top: 117px;
  right: 0;
  background-image: url(/wp-content/themes/sapient/resources/assets/images/shapes/color-stripe-vert.svg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  width: 7px;
}

@media (max-width: 550px) {
  .c-hero .o-vertical-stripe {
    width: 2px;
    top: 120px;
    height: 500px;
  }
}

.c-hero--video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.35;
  z-index: 0;
}

.c-hero--video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background-color: #000;
}

.c-hero--video video {
  height: auto;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

@media (min-width: 1601px) {
  .c-hero--video video {
    height: 100%;
    width: auto;
    max-width: none;
  }
}

@media (min-width: 2101px) {
  .c-hero--video video {
    width: 100%;
    height: auto;
    max-width: none;
  }
}

@media (max-width: 1600px) {
  .c-hero--video video {
    height: 100%;
    width: auto;
  }
}

@media (max-width: 550px) {
  .c-hero--video video {
    width: 100%;
    height: auto;
    max-height: none;
  }
}

.post-type-archive-resources .c-hero {
  padding-bottom: 20px;
}

@media (max-width: 550px) {
  .post-type-archive-resources .c-hero {
    padding-bottom: 0;
  }
}

@media (max-width: 550px) {
  .post-type-archive-resources .c-hero--image-right {
    min-height: unset;
  }
}

.post-type-archive-resources .c-hero--image-right::before {
  top: 0px;
}

@media (max-width: 850px) {
  .post-type-archive-resources .c-hero--image-right::before {
    top: -169px;
  }
}

@media (max-width: 700px) {
  .post-type-archive-resources .c-hero--image-right .c-hero--content {
    text-align: center;
    height: 700px;
    top: 400px;
  }

  .post-type-archive-resources .c-hero--image-right .c-hero--content .u-align--right {
    text-align: center;
  }
}

@media (max-width: 550px) {
  .post-type-archive-resources .c-hero--image-right .c-hero--content {
    height: 400px;
    top: 60px;
  }
}

@media (max-width: 550px) {
  .careers .c-hero--description {
    padding: 0 0 40px 0;
  }
}

.applications .c-hero--description {
  padding: 80px 0 0 0;
}

@media (max-width: 550px) {
  .home .c-hero--video video {
    width: auto;
    height: 100%;
    max-height: none;
    max-width: none;
  }
}

/* ------------------------------------ *\
    $OBJECTS
\* ------------------------------------ */

/* ------------------------------------ *\
    $BUTTONS
\* ------------------------------------ */

.wp-block-button .wp-block-button__link {
  color: inherit;
  background-color: transparent;
  border-radius: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  font-size: inherit;
  padding: 0;
  text-align: center;
  text-decoration: none;
  overflow-wrap: break-word;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wp-block-button .wp-block-button__link::after {
  display: none;
}

.is-style-outline > .wp-block-button__link,
.wp-block-button__link.is-style-outline {
  border: none;
  padding: 0;
}

button:not(.ot-floating-button__open):not(.ot-floating-button__close),
input[type="submit"],
.o-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0;
  font-size: 11.5px;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  color: #000;
  -webkit-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}

@media (max-width: 550px) {
  button:not(.ot-floating-button__open):not(.ot-floating-button__close),
  input[type="submit"],
  .o-button {
    font-size: 10px;
    letter-spacing: 1.5px;
    padding-top: 15px;
    padding-right: 25px;
    padding-bottom: 15px;
    padding-left: 25px;
  }
}

button:not(.ot-floating-button__open):not(.ot-floating-button__close)::after,
input[type="submit"]::after,
.o-button::after {
  display: none;
}

/**
 * Button Primary
 */

.o-button--primary,
.wp-block-button.is-style-fill,
.o-calendly-button.primary a,
input[type="submit"] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0;
  font-size: 11.5px;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  color: #000;
  -webkit-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  color: #000;
  border: 1px solid #000;
  background: -webkit-gradient(linear, left top, right top, from(#000), color-stop(50%, #000), color-stop(50%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, #000, #000 50%, rgba(255, 255, 255, 0) 50%);
  background: -o-linear-gradient(left, #000, #000 50%, rgba(255, 255, 255, 0) 50%);
  background: linear-gradient(to right, #000, #000 50%, rgba(255, 255, 255, 0) 50%);
  background-size: 200% 100%;
  background-position: 100%;
}

@media (max-width: 550px) {
  .o-button--primary,
  .wp-block-button.is-style-fill,
  .o-calendly-button.primary a,
  input[type="submit"] {
    font-size: 10px;
    letter-spacing: 1.5px;
    padding-top: 15px;
    padding-right: 25px;
    padding-bottom: 15px;
    padding-left: 25px;
  }
}

.o-button--primary::after,
.wp-block-button.is-style-fill::after,
.o-calendly-button.primary a::after,
input[type="submit"]::after {
  display: none;
}

.o-button--primary:hover,
.wp-block-button.is-style-fill:hover,
.o-calendly-button.primary a:hover,
input[type="submit"]:hover {
  color: #fff;
  background-position: 0% 100%;
}

/**
 * Button Secondary
 */

.o-button--secondary,
.wp-block-button.is-style-outline,
.o-calendly-button.secondary a,
.u-reversed-out input[type="submit"] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0;
  font-size: 11.5px;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  color: #000;
  -webkit-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  color: #fff;
  border: 1px solid #dbff00;
  background: -webkit-gradient(linear, left top, right top, from(#dbff00), color-stop(50%, #dbff00), color-stop(50%, rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(left, #dbff00, #dbff00 50%, rgba(0, 0, 0, 0) 50%);
  background: -o-linear-gradient(left, #dbff00, #dbff00 50%, rgba(0, 0, 0, 0) 50%);
  background: linear-gradient(to right, #dbff00, #dbff00 50%, rgba(0, 0, 0, 0) 50%);
  background-size: 200% 100%;
  background-position: 100%;
}

@media (max-width: 550px) {
  .o-button--secondary,
  .wp-block-button.is-style-outline,
  .o-calendly-button.secondary a,
  .u-reversed-out input[type="submit"] {
    font-size: 10px;
    letter-spacing: 1.5px;
    padding-top: 15px;
    padding-right: 25px;
    padding-bottom: 15px;
    padding-left: 25px;
  }
}

.o-button--secondary::after,
.wp-block-button.is-style-outline::after,
.o-calendly-button.secondary a::after,
.u-reversed-out input[type="submit"]::after {
  display: none;
}

.o-button--secondary:hover,
.wp-block-button.is-style-outline:hover,
.o-calendly-button.secondary a:hover,
.u-reversed-out input[type="submit"]:hover {
  color: #000;
  background-position: 0% 100%;
}

/**
 * OneTrust Button
 */

#ot-sdk-btn-floating .ot-floating-button__front,
#ot-sdk-btn-floating .ot-floating-button__back {
  border-radius: 0 !important;
}

#ot-sdk-btn-floating .ot-floating-button__back svg,
#ot-sdk-btn-floating .ot-floating-button__front svg {
  margin: 0 auto;
}

#onetrust-consent-sdk #onetrust-banner-sdk *:focus,
#onetrust-consent-sdk #onetrust-banner-sdk:focus {
  outline: none;
  outline-width: 0;
  outline-color: transparent;
}

/* ------------------------------------ *\
    $ICONS
\* ------------------------------------ */

/**
 * Icon Sizing
 */

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

.u-icon--xs {
  width: 15px;
  height: 15px;
}

.u-icon--s {
  width: 35px;
  height: 35px;
}

.u-icon--m {
  width: 48px;
  height: 48px;
}

.u-icon--l {
  width: 53px;
  height: 53px;
}

.u-icon--xl {
  width: 70px;
  height: 70px;
}

.o-icon--subhead {
  position: relative;
}

.o-icon--subhead::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -35px;
  height: 25px;
  width: 25px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 27 28' style='enable-background:new 0 0 27 28;' xml:space='preserve'%3E%3Cpath id='icon-slash' class='st0' fill='%230082A1' d='M25.8,23.4L0.8,1.7L0.1,2.4l24.4,22.7c0.2,0.2,0.5,0.3,0.8,0.3c0.3,0,0.6-0.2,0.7-0.4 c0.2-0.2,0.3-0.5,0.3-0.8C26.2,23.9,26,23.6,25.8,23.4z'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top left;
}

@media (max-width: 700px) {
  .o-icon--subhead::before {
    height: 16px;
    width: 16px;
    top: -15px;
    left: -20px;
  }
}

.o-icon--header {
  position: relative;
}

.o-icon--header::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -63px;
  height: 79px;
  width: 37px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='4px' height='51px' viewBox='0 0 4 51' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EFill 6%3C/title%3E%3Cg id='UI' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Home-C' transform='translate(-1017.000000, -3543.000000)' fill='%230082A1'%3E%3Cg id='Group-8' transform='translate(1018.999296, 3568.500000) scale(1, -1) rotate(134.000000) translate(-1018.999296, -3568.500000) translate(1000.499296, 3550.500000)'%3E%3Cpath d='M35.3855922,0 C34.9452465,0 34.5336866,0.170040486 34.2271562,0.477210396 L0,34.8057986 L1.07285649,36 L36.5097965,2.69870707 C36.8225509,2.4040747 36.996044,2.00835836 37,1.58364895 C37.0038239,1.15972313 36.8357768,0.761656001 36.5276904,0.462322058 C36.2219379,0.163771712 35.816602,0 35.3855922,0' id='Fill-6'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12%;
  background-position: top center;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

.o-icon--image {
  position: relative;
}

.o-icon--image::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -180px;
  height: 100px;
  width: 37px;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='4px' height='51px' viewBox='0 0 4 51' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EFill 6%3C/title%3E%3Cg id='UI' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Home-C' transform='translate(-1017.000000, -3543.000000)' fill='%230082A1'%3E%3Cg id='Group-8' transform='translate(1018.999296, 3568.500000) scale(1, -1) rotate(134.000000) translate(-1018.999296, -3568.500000) translate(1000.499296, 3550.500000)'%3E%3Cpath d='M35.3855922,0 C34.9452465,0 34.5336866,0.170040486 34.2271562,0.477210396 L0,34.8057986 L1.07285649,36 L36.5097965,2.69870707 C36.8225509,2.4040747 36.996044,2.00835836 37,1.58364895 C37.0038239,1.15972313 36.8357768,0.761656001 36.5276904,0.462322058 C36.2219379,0.163771712 35.816602,0 35.3855922,0' id='Fill-6'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

/* ------------------------------------ *\
    $LIST TYPES
\* ------------------------------------ */

/**
 * Numbered List
 */

.o-list--numbered {
  counter-reset: item;
}

.o-list--numbered li {
  display: block;
}

.o-list--numbered li::before {
  content: counter(item);
  counter-increment: item;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  background-color: #000;
  font-weight: bold;
  margin-right: 20px;
  float: left;
}

.o-list--numbered li > * {
  overflow: hidden;
}

.o-list--numbered li li {
  counter-reset: item;
}

.o-list--numbered li li::before {
  content: "\2010";
}

/**
 * Bullet List
 */

.o-bullet-list {
  list-style-type: disc;
  padding-left: 20px;
}

.o-bullet-list li {
  overflow: visible;
}

.o-bullet-list li:last-child {
  margin-bottom: 0;
}

/* ------------------------------------ *\
    $NAVIGATION
\* ------------------------------------ */

.o-logo {
  width: 20%;
  height: 38px;
}

@media (max-width: 1099px) {
  .o-logo {
    width: 220px;
    position: relative;
    top: 5px;
  }
}

@media (max-width: 700px) {
  .o-logo {
    width: 165px;
    top: 8px;
  }
}

@media (max-width: 700px) {
  .o-logo {
    width: 160px;
    top: 10px;
  }
}

.o-logo--link::after {
  content: none;
}

.c-menu {
  width: 70%;
}

.c-menu--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1099px) {
  .c-menu--list {
    display: none;
    background: #000;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    padding: 80px 0px 0px 40px;
    z-index: -1;
  }
}

.c-menu--link {
  position: relative;
  display: inline-block;
  padding: 0;
  color: #fff;
  font-size: 12.5px;
  line-height: 12.5px;
  overflow: hidden;
}

.c-menu--link::after {
  content: none;
}

.c-menu--link .outer {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: #dbff00;
  -webkit-transform: translateX(-100%);
       -o-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.c-menu--link .inner {
  display: inline-block;
  -webkit-transform: translateX(100%);
       -o-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.c-menu--link:hover .outer,
.c-menu--link:hover .inner {
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
}

.c-menu .o-button {
  font-size: 12.5px;
  line-height: 12.5px;
  padding: 15px 20px;
}

.c-menu__child-list {
  position: absolute;
  display: block;
  visibility: hidden;
  top: 100px;
  height: auto;
  opacity: 0;
  overflow: hidden;
  background-color: #000;
  border-top: 3px solid #dbff00;
  padding: 25px 10px;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 1099px) {
  .c-menu__child-list {
    position: absolute;
    top: 0px;
    right: -100%;
    height: 100%;
    padding-top: 230px;
    width: 35%;
    border: none;
    background-color: #161616;
    display: block;
  }
}

@media (max-width: 850px) {
  .c-menu__child-list {
    height: 100%;
  }
}

.c-menu__child-list-item {
  padding: 15px;
}

.c-menu__child-list-item a {
  color: #fff;
  font-size: 12.5px;
}

.c-menu__child-list-item a::after {
  background: none;
}

.c-menu__child-list-item:hover a {
  color: #dbff00;
}

.c-menu--menu-item-has-children:hover .c-menu__child-list {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-menu--menu-item {
  padding: 40px 0px;
}

@media (max-width: 1099px) {
  .c-menu--menu-item {
    padding: 20px 0px;
  }
}

@media (max-width: 1099px) {
  .c-menu .secondary {
    padding: 20px 0px;
  }
}

.c-menu .o-hamburger {
  display: none;
  float: right;
  cursor: pointer;
}

.c-menu .o-hamburger .o-icon__bar-1,
.c-menu .o-hamburger .o-icon__bar-2,
.c-menu .o-hamburger .o-icon__bar-3 {
  background-color: #fff;
  width: 24px;
  height: 1px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin: 0;
}

.c-menu .o-hamburger .o-icon__bar-2 {
  margin: 8px 0;
}

@media (max-width: 1099px) {
  .c-menu .o-hamburger {
    display: block;
  }
}

.c-menu--menu-item-has-children {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.c-menu--menu-item-has-children .this-is-active svg {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c-menu .o-menu-arrow {
  display: none;
  cursor: pointer;
  padding: 0px 20px;
}

.c-menu .o-menu-arrow svg {
  -webkit-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}

@media (max-width: 1099px) {
  .c-menu .o-menu-arrow {
    display: block;
  }
}

.c-menu .this-is-active + .c-menu--list {
  display: block;
}

.c-menu .this-is-active + .c-menu__child-list {
  right: 0px;
}

.c-menu .this-is-active .o-icon__bar-1 {
  margin: 5px 0;
  -webkit-transform: rotate(-45deg) translate(-4px, 3px);
       -o-transform: rotate(-45deg) translate(-4px, 3px);
          transform: rotate(-45deg) translate(-4px, 3px);
}

.c-menu .this-is-active .o-icon__bar-2 {
  margin: 5px 0;
  opacity: 0;
}

.c-menu .this-is-active .o-icon__bar-3 {
  margin: 5px 0;
  -webkit-transform: rotate(42deg) translate(-5px, -5px);
       -o-transform: rotate(42deg) translate(-5px, -5px);
          transform: rotate(42deg) translate(-5px, -5px);
}

/* ------------------------------------ *\
    $MEDIA OBJECTS
\* ------------------------------------ */

.o-image--dots-grid {
  width: 270px;
  height: 246px;
}

/* ------------------------------------ *\
    $MODALS
\* ------------------------------------ */

.modal .modal--overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999999;
}

.modal .modal--container {
  position: relative;
  background-color: #f0f0f0;
  padding: 80px 40px;
  max-width: 1140px;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 30px 73px rgba(0, 0, 0, 0.37);
          box-shadow: 0px 30px 73px rgba(0, 0, 0, 0.37);
  cursor: default;
}

@media (max-width: 1100px) {
  .modal .modal--container {
    width: 90%;
  }
}

@media (max-width: 700px) {
  .modal .modal--container {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 550px) {
  .modal .modal--container {
    width: 88%;
    padding: 40px;
  }
}

.modal .modal--content picture {
  overflow: hidden;
  -webkit-filter: saturate(0);
          filter: saturate(0);
  mix-blend-mode: darken;
}

.modal .modal--profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 30px;
}

@media (max-width: 550px) {
  .modal .modal--profile {
    padding: 0;
  }
}

.modal button.modal--close {
  width: 25px;
  height: 25px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  outline: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 29 29' style='enable-background:new 0 0 29 29;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill-rule:evenodd;clip-rule:evenodd;%7D%0A%3C/style%3E%3Cg id='UI'%3E%3Cg id='Bio-Modal' transform='translate(-885.000000, -53.000000)'%3E%3Cpath id='Fill-1' class='st0' d='M900.6,67.5l13.1-13.1c0.3-0.3,0.3-0.8,0-1.1c-0.3-0.3-0.8-0.3-1.1,0l-13.1,13.1l-13.1-13.1 c-0.3-0.3-0.8-0.3-1.1,0c-0.3,0.3-0.3,0.8,0,1.1l13.1,13.1l-13.1,13.1c-0.3,0.3-0.3,0.8,0,1.1c0.2,0.2,0.3,0.2,0.6,0.2 s0.4-0.1,0.6-0.2l13.1-13.1l13.1,13.1c0.2,0.2,0.4,0.2,0.6,0.2c0.2,0,0.4-0.1,0.6-0.2c0.3-0.3,0.3-0.8,0-1.1L900.6,67.5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center center;
}

@media (max-width: 850px) {
  .modal button.modal--close {
    top: 20px;
    right: 20px;
  }
}

.modal .c-team--info {
  position: relative;
  padding: 30px 0;
  margin-bottom: 40px;
  width: 100%;
  top: -2px;
  background-image: url(/wp-content/themes/sapient/resources/assets/images/shapes/color-stripe.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50% -1px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 850px) {
  .modal .c-team--info {
    margin-bottom: 0;
  }
}

.modal .c-team--info h4 {
  margin-bottom: 10px;
}

.modal .modal--socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.modal .modal--socials .modal--social-link {
  width: 48px;
  height: auto;
  margin-right: 20px;
}

@media (max-width: 550px) {
  .modal .modal--socials .modal--social-link {
    width: 32px;
  }
}

.modal .modal--socials .modal--social-link a:focus,
.modal .modal--socials .modal--social-link a:active,
.modal .modal--socials .modal--social-link a:visited {
  outline: none;
}

.modal .modal--socials .modal--social-link a::after {
  display: none;
}

.modal .modal--socials .modal--social-link img {
  width: 100%;
}

.modal .modal--bio {
  padding-left: 20px;
}

@media (max-width: 550px) {
  .modal .modal--bio {
    padding-left: 0;
  }
}

@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-o-keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-o-keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }

  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-o-keyframes mmslideIn {
  from {
    -o-transform: translateY(15%);
       transform: translateY(15%);
  }

  to {
    -o-transform: translateY(0);
       transform: translateY(0);
  }
}

@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
         -o-transform: translateY(15%);
            transform: translateY(15%);
  }

  to {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

@-o-keyframes mmslideOut {
  from {
    -o-transform: translateY(0);
       transform: translateY(0);
  }

  to {
    -o-transform: translateY(-10%);
       transform: translateY(-10%);
  }
}

@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-10%);
         -o-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal--overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
       -o-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal--container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
       -o-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal--overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
       -o-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal--container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
       -o-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal--container,
.micromodal-slide .modal--overlay {
  will-change: transform;
}

/* ------------------------------------ *\
    $SPECIFIC FORMS
\* ------------------------------------ */

/**
 * Validation
 */

.has-error {
  border-color: #f00 !important;
}

.is-valid {
  border-color: #089e00 !important;
}

/**
 * Gravity Forms
 */

.c-resource-form.form-desktop > div > h2 {
  font-weight: 600;
  letter-spacing: normal;
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .gfield_label,
.form-mobile > div > .gform_wrapper.gravity-theme .gfield_label,
.c-block--contact-us--form .gform_wrapper.gravity-theme .gfield_label,
.generic-form .gform_wrapper.gravity-theme .gfield_label {
  font-family: "everett-medium", sans-serif;
  font-size: 10px;
  line-height: 22px;
  letter-spacing: 2.5px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .gform_required_legend,
.form-mobile > div > .gform_wrapper.gravity-theme .gform_required_legend,
.c-block--contact-us--form .gform_wrapper.gravity-theme .gform_required_legend,
.generic-form .gform_wrapper.gravity-theme .gform_required_legend {
  display: none;
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .gform_heading h2.gform_title,
.form-mobile > div > .gform_wrapper.gravity-theme .gform_heading h2.gform_title,
.c-block--contact-us--form .gform_wrapper.gravity-theme .gform_heading h2.gform_title,
.generic-form .gform_wrapper.gravity-theme .gform_heading h2.gform_title {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: normal;
  padding: 0 0 30px 0;
  display: none;
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container input,
.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container textarea,
.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container select,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container input,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container textarea,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container select,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container input,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container textarea,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container select,
.generic-form .gform_wrapper.gravity-theme .ginput_container input,
.generic-form .gform_wrapper.gravity-theme .ginput_container textarea,
.generic-form .gform_wrapper.gravity-theme .ginput_container select {
  color: #939598;
  background-color: #161616;
  font-size: 17px;
  font-family: "everett-light", sans-serif;
  padding: 10px;
  border-bottom: 2.5px solid transparent;
  margin-bottom: 20px;
  height: 40px;
  -webkit-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container input::-webkit-input-placeholder,
.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container textarea::-webkit-input-placeholder,
.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container select::-webkit-input-placeholder,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container input::-webkit-input-placeholder,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container textarea::-webkit-input-placeholder,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container select::-webkit-input-placeholder,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container input::-webkit-input-placeholder,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container textarea::-webkit-input-placeholder,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container select::-webkit-input-placeholder,
.generic-form .gform_wrapper.gravity-theme .ginput_container input::-webkit-input-placeholder,
.generic-form .gform_wrapper.gravity-theme .ginput_container textarea::-webkit-input-placeholder,
.generic-form .gform_wrapper.gravity-theme .ginput_container select::-webkit-input-placeholder {
  color: #939598;
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container input::-moz-placeholder,
.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container textarea::-moz-placeholder,
.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container select::-moz-placeholder,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container input::-moz-placeholder,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container textarea::-moz-placeholder,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container select::-moz-placeholder,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container input::-moz-placeholder,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container textarea::-moz-placeholder,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container select::-moz-placeholder,
.generic-form .gform_wrapper.gravity-theme .ginput_container input::-moz-placeholder,
.generic-form .gform_wrapper.gravity-theme .ginput_container textarea::-moz-placeholder,
.generic-form .gform_wrapper.gravity-theme .ginput_container select::-moz-placeholder {
  color: #939598;
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container input::-ms-input-placeholder,
.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container textarea::-ms-input-placeholder,
.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container select::-ms-input-placeholder,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container input::-ms-input-placeholder,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container textarea::-ms-input-placeholder,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container select::-ms-input-placeholder,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container input::-ms-input-placeholder,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container textarea::-ms-input-placeholder,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container select::-ms-input-placeholder,
.generic-form .gform_wrapper.gravity-theme .ginput_container input::-ms-input-placeholder,
.generic-form .gform_wrapper.gravity-theme .ginput_container textarea::-ms-input-placeholder,
.generic-form .gform_wrapper.gravity-theme .ginput_container select::-ms-input-placeholder {
  color: #939598;
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container input::placeholder,
.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container textarea::placeholder,
.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container select::placeholder,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container input::placeholder,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container textarea::placeholder,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container select::placeholder,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container input::placeholder,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container textarea::placeholder,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container select::placeholder,
.generic-form .gform_wrapper.gravity-theme .ginput_container input::placeholder,
.generic-form .gform_wrapper.gravity-theme .ginput_container textarea::placeholder,
.generic-form .gform_wrapper.gravity-theme .ginput_container select::placeholder {
  color: #939598;
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container input:focus,
.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container input:active,
.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container textarea:focus,
.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container textarea:active,
.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container select:focus,
.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container select:active,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container input:focus,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container input:active,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container textarea:focus,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container textarea:active,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container select:focus,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container select:active,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container input:focus,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container input:active,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container textarea:focus,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container textarea:active,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container select:focus,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container select:active,
.generic-form .gform_wrapper.gravity-theme .ginput_container input:focus,
.generic-form .gform_wrapper.gravity-theme .ginput_container input:active,
.generic-form .gform_wrapper.gravity-theme .ginput_container textarea:focus,
.generic-form .gform_wrapper.gravity-theme .ginput_container textarea:active,
.generic-form .gform_wrapper.gravity-theme .ginput_container select:focus,
.generic-form .gform_wrapper.gravity-theme .ginput_container select:active {
  color: #939598;
  outline: none;
  border-bottom: 2.5px solid #dbff00;
  -webkit-box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.05);
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container select,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container select,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container select,
.generic-form .gform_wrapper.gravity-theme .ginput_container select {
  color: #939598;
  border-bottom: none !important;
  background-image: url("data:image/svg+xml,%3Csvg width='15px' height='12px' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h14.247L7.123 11.642z' fill='%23DBFF00' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: 96% 50%;
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent .gfield_consent_label,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent .gfield_consent_label,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent .gfield_consent_label,
.generic-form .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent .gfield_consent_label {
  color: #fff;
  margin-top: 3px;
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent .gfield_consent_label a,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent .gfield_consent_label a,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent .gfield_consent_label a,
.generic-form .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent .gfield_consent_label a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent .gfield_consent_label a::after,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent .gfield_consent_label a::after,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent .gfield_consent_label a::after,
.generic-form .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent .gfield_consent_label a::after {
  height: 1.5px;
  top: 17px;
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent input[type=checkbox],
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent input[type=checkbox],
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent input[type=checkbox],
.generic-form .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent input[type=checkbox] {
  width: 26px;
  height: 26px;
  border: 1px solid #fff;
  border-radius: 0;
  margin-right: 20px;
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent input[type=checkbox]:checked,
.form-mobile > div > .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent input[type=checkbox]:checked,
.c-block--contact-us--form .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent input[type=checkbox]:checked,
.generic-form .gform_wrapper.gravity-theme .ginput_container.ginput_container_consent input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3Csvg width='17px' height='13px' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.85 13 17 1.871 15.126 0 5.85 9.259 1.874 5.291 0 7.161z' fill='%23DBFF00' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 13px;
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme input[type=submit],
.form-mobile > div > .gform_wrapper.gravity-theme input[type=submit],
.c-block--contact-us--form .gform_wrapper.gravity-theme input[type=submit],
.generic-form .gform_wrapper.gravity-theme input[type=submit] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0;
  font-size: 11.5px;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  color: #000;
  -webkit-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  color: #fff;
  border: 1px solid #dbff00;
  background: -webkit-gradient(linear, left top, right top, from(#dbff00), color-stop(50%, #dbff00), color-stop(50%, rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(left, #dbff00, #dbff00 50%, rgba(0, 0, 0, 0) 50%);
  background: -o-linear-gradient(left, #dbff00, #dbff00 50%, rgba(0, 0, 0, 0) 50%);
  background: linear-gradient(to right, #dbff00, #dbff00 50%, rgba(0, 0, 0, 0) 50%);
  background-size: 200% 100%;
  background-position: 100%;
  width: 100%;
  font-size: 11.5px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 4px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 550px) {
  .c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme input[type=submit],
  .form-mobile > div > .gform_wrapper.gravity-theme input[type=submit],
  .c-block--contact-us--form .gform_wrapper.gravity-theme input[type=submit],
  .generic-form .gform_wrapper.gravity-theme input[type=submit] {
    font-size: 10px;
    letter-spacing: 1.5px;
    padding-top: 15px;
    padding-right: 25px;
    padding-bottom: 15px;
    padding-left: 25px;
  }
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme input[type=submit]::after,
.form-mobile > div > .gform_wrapper.gravity-theme input[type=submit]::after,
.c-block--contact-us--form .gform_wrapper.gravity-theme input[type=submit]::after,
.generic-form .gform_wrapper.gravity-theme input[type=submit]::after {
  display: none;
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme input[type=submit]:hover,
.form-mobile > div > .gform_wrapper.gravity-theme input[type=submit]:hover,
.c-block--contact-us--form .gform_wrapper.gravity-theme input[type=submit]:hover,
.generic-form .gform_wrapper.gravity-theme input[type=submit]:hover {
  color: #000;
  background-position: 0% 100%;
}

.c-resource-form.form-desktop > div > .gform_wrapper.gravity-theme .gform_submission_error.hide_summary,
.form-mobile > div > .gform_wrapper.gravity-theme .gform_submission_error.hide_summary,
.c-block--contact-us--form .gform_wrapper.gravity-theme .gform_submission_error.hide_summary,
.generic-form .gform_wrapper.gravity-theme .gform_submission_error.hide_summary {
  letter-spacing: 0;
}

.generic-form .gform_wrapper.gravity-theme .gfield_label {
  color: #000;
}

.generic-form .gform_wrapper.gravity-theme .ginput_container input,
.generic-form .gform_wrapper.gravity-theme .ginput_container textarea,
.generic-form .gform_wrapper.gravity-theme .ginput_container select {
  background-color: #fff;
  border-bottom: 1px solid #939598;
}

.generic-form .gform_wrapper.gravity-theme .ginput_container textarea {
  border: 1px solid #939598;
}

.generic-form .gform_wrapper.gravity-theme .ginput_container.ginput_container_fileupload input {
  border-bottom: none;
  padding: 0;
}

.generic-form .gform_wrapper.gravity-theme .ginput_container.ginput_container_fileupload input:focus,
.generic-form .gform_wrapper.gravity-theme .ginput_container.ginput_container_fileupload input:active {
  outline: none;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.generic-form .gform_wrapper.gravity-theme .ginput_container.ginput_container_fileupload .gform_fileupload_rules {
  display: none;
}

.generic-form .gform_wrapper.gravity-theme .gform_footer.top_label {
  text-align: center;
}

.generic-form .gform_wrapper.gravity-theme .gform_footer.top_label input[id^="gform_submit_button_"] {
  width: 100% !important;
}

.generic-form .gform_wrapper.gravity-theme input[type=submit] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0;
  font-size: 11.5px;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  color: #000;
  -webkit-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  color: #000;
  border: 1px solid #000;
  background: -webkit-gradient(linear, left top, right top, from(#000), color-stop(50%, #000), color-stop(50%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, #000, #000 50%, rgba(255, 255, 255, 0) 50%);
  background: -o-linear-gradient(left, #000, #000 50%, rgba(255, 255, 255, 0) 50%);
  background: linear-gradient(to right, #000, #000 50%, rgba(255, 255, 255, 0) 50%);
  background-size: 200% 100%;
  background-position: 100%;
  width: 100%;
  font-size: 11.5px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 4px;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 550px) {
  .generic-form .gform_wrapper.gravity-theme input[type=submit] {
    font-size: 10px;
    letter-spacing: 1.5px;
    padding-top: 15px;
    padding-right: 25px;
    padding-bottom: 15px;
    padding-left: 25px;
  }
}

.generic-form .gform_wrapper.gravity-theme input[type=submit]::after {
  display: none;
}

.generic-form .gform_wrapper.gravity-theme input[type=submit]:hover {
  color: #fff;
  background-position: 0% 100%;
}

/* ------------------------------------ *\
    $PAGE STRUCTURE
\* ------------------------------------ */

/* ------------------------------------ *\
    $ARTICLE & RELATED COMPONENTS
\* ------------------------------------ */

/* ------------------------------------ *\
    $GALLERY
\* ------------------------------------ */

/* ------------------------------------ *\
    $FOOTER
\* ------------------------------------ */

.c-social-media {
  padding: 190px 0;
  background-color: #000;
  background-image: url(/wp-content/themes/sapient/resources/assets/images/discovermore-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 315px;
}

.c-social-media--content {
  padding: 70px 20px;
  background-color: #000;
  background-image: url(/wp-content/themes/sapient/resources/assets/images/subhero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0px 30px 73px rgba(0, 0, 0, 0.37);
          box-shadow: 0px 30px 73px rgba(0, 0, 0, 0.37);
}

.c-social-media--content * {
  margin: 0 10px;
}

.c-social-media--content a::after {
  display: none;
}

.c-social-media--content .o-icon--social {
  width: 30px;
}

.c-main-footer {
  position: relative;
  width: 100%;
  padding-top: 115px;
  padding-bottom: 40px;
  background-image: url(/wp-content/themes/sapient/resources/assets/images/footer-bg-desktop.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 700px) {
  .c-main-footer {
    padding-top: 80px;
  }
}

.c-main-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 7px;
  width: 100%;
  background-image: url(/wp-content/themes/sapient/resources/assets/images//shapes/color-stripe.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}

.c-main-footer--logo {
  padding: 0 20px;
}

@media (max-width: 700px) {
  .c-main-footer--logo {
    margin-bottom: 60px;
  }
}

.c-main-footer--contact {
  padding-left: 20px;
}

.c-main-footer--contact a {
  display: inline-block;
  text-transform: lowercase;
  margin: 10px 0;
  font-family: "everett-light", sans-serif;
  letter-spacing: 0;
}

.c-main-footer--contact a {
  font-size: 12px;
  line-height: 18px;
}

@media screen and (min-width: 400px) {
  .c-main-footer--contact a {
    font-size: calc(12px + 5 * ((100vw - 400px) / 800));
    line-height: calc(18px + 6 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  .c-main-footer--contact a {
    font-size: 17px;
    line-height: 24px;
  }
}

@media print {
  .c-main-footer--contact a {
    font-size: 12px;
    line-height: 1.3;
  }
}

.c-main-footer--contact p {
  line-height: 2.25;
}

.c-main-footer--contact .o-social-link {
  display: inline-block;
  height: 30px;
  margin: 40px 15px 0 0;
}

.c-main-footer--contact .o-social-link img {
  height: 100%;
}

.c-main-footer--contact .o-social-link::after {
  display: none;
}

.c-main-footer--nav {
  padding-left: 20px;
}

.c-main-footer--nav-item:not(.u-nav-item--gray) {
  margin-bottom: 30px;
}

.c-main-footer--nav-item a::after {
  display: none;
}

.c-main-footer--nav-item.u-nav-item--gray {
  margin-bottom: 10px;
}

.c-main-footer--nav-item.u-nav-item--gray a {
  font-family: "everett-light", sans-serif;
  color: #939598;
  text-transform: capitalize;
  letter-spacing: 0;
}

.c-main-footer--nav-item.u-nav-item--gray a {
  font-size: 12px;
  line-height: 18px;
}

@media screen and (min-width: 400px) {
  .c-main-footer--nav-item.u-nav-item--gray a {
    font-size: calc(12px + 5 * ((100vw - 400px) / 800));
    line-height: calc(18px + 6 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  .c-main-footer--nav-item.u-nav-item--gray a {
    font-size: 17px;
    line-height: 24px;
  }
}

.c-main-footer p,
.c-main-footer a,
.c-main-footer h3 {
  color: #fff;
}

.c-main-footer .o-copyright {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 0px auto;
}

@media (max-width: 699px) {
  .c-main-footer .o-copyright {
    margin: 60px 0px 0px 20px;
  }
}

.c-main-footer .o-copyright ul li {
  color: #939598;
  font-family: "everett-medium", sans-serif;
  font-weight: normal;
  display: inline-block;
  margin: 20px;
}

@media (max-width: 699px) {
  .c-main-footer .o-copyright ul li {
    display: block;
  }
}

.c-main-footer .o-copyright ul li a {
  color: #939598;
  letter-spacing: unset;
  text-transform: unset;
}

.c-main-footer .o-copyright ul li a::after {
  background: none;
}

/* ------------------------------------ *\
    $HEADER
\* ------------------------------------ */

.c-main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #5d5d5d;
  z-index: 9999;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}

@media (max-width: 1200px) {
  .c-main-header {
    padding: 20px 40px;
  }
}

@media (max-width: 550px) {
  .c-main-header {
    padding: 15px 20px;
  }
}

.c-main-header--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ------------------------------------ *\
    $MAIN CONTENT AREA
\* ------------------------------------ */

.l-main {
  overflow-x: hidden;
}

.c-section-resources {
  position: relative;
}

.c-section-resources__body {
  background-color: #000;
}

.c-section-resources form#searchform {
  width: 400px;
  position: absolute;
  margin-top: 585px;
  margin-left: 10%;
  z-index: 9;
}

@media (max-width: 850px) {
  .c-section-resources form#searchform {
    margin: 0;
    top: 860px;
    left: 50%;
    width: 80%;
    -webkit-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (max-width: 700px) {
  .c-section-resources form#searchform {
    top: 760px;
  }
}

@media (max-width: 550px) {
  .c-section-resources form#searchform {
    top: 530px;
  }
}

.c-section-resources form#searchform::before {
  content: 'SEARCH RESOURCES';
  color: #fff;
  font-size: 11.5px;
  top: -10px;
  position: relative;
}

.c-section-resources input[type=text] {
  background-color: #161616;
  padding: 10px;
  color: #fff;
}

.c-section-resources input#searchsubmit {
  width: 25px;
  background: transparent;
  position: absolute;
  border: none;
  height: 46.5px;
  right: 0;
  z-index: 10;
  font-size: 0;
  color: transparent;
}

.c-section-resources .l-main {
  position: relative;
}

.c-section-news {
  position: relative;
}

.c-section-news__body {
  background-color: #000;
}

/* ------------------------------------ *\
    $CUSTOM BLOCKS
\* ------------------------------------ */

.c-block--pre-footer-cta {
  padding: 105px 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media (max-width: 550px) {
  .c-block--pre-footer-cta {
    padding: 60px 0;
  }
}

.c-block--pre-footer-cta .c-block--content {
  padding: 75px 40px 95px 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-shadow: 0px 30px 73px rgba(0, 0, 0, 0.37);
          box-shadow: 0px 30px 73px rgba(0, 0, 0, 0.37);
}

@media (max-width: 1200px) {
  .c-block--pre-footer-cta .c-block--content {
    width: 80%;
  }
}

@media (max-width: 1100px) {
  .c-block--pre-footer-cta .c-block--content {
    width: 85%;
    padding: 40px 40px 40px 60px;
  }
}

@media (max-width: 700px) {
  .c-block--pre-footer-cta .c-block--content {
    padding: 75px 45px 115px 45px;
    background-image: url("/wp-content/themes/sapient/resources/assets/images/discovermore-bg-mobile.png");
  }
}

@media (max-width: 550px) {
  .c-block--pre-footer-cta .c-block--content {
    padding: 50px 45px 100px 45px;
  }
}

.c-block--pre-footer-cta .c-block--content-text {
  width: 55%;
}

@media (max-width: 700px) {
  .c-block--pre-footer-cta .c-block--content-text {
    width: 100%;
  }
}

.c-block--pre-footer-cta .c-block--content-cta {
  width: 40%;
}

@media (max-width: 700px) {
  .c-block--pre-footer-cta .c-block--content-cta {
    width: 100%;
  }
}

.c-block--pre-footer-cta .c-block--content .o-rte-text {
  padding-right: 80px;
}

@media (max-width: 850px) {
  .c-block--pre-footer-cta .c-block--content .o-rte-text {
    margin-bottom: 40px;
  }
}

@media (max-width: 850px) {
  .c-block--pre-footer-cta .c-block--content h2 {
    font-size: 38px;
    line-height: 44px;
  }
}

@media (max-width: 700px) {
  .c-block--pre-footer-cta .c-block--content h2 {
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -0.65px;
  }
}

@media (max-width: 700px) {
  .c-block--pre-footer-cta .u-align--center {
    text-align: left;
  }
}

.c-block--pre-footer-cta .o-button.o-button--primary,
.c-block--pre-footer-cta .o-button.o-button--secondary,
.c-block--pre-footer-cta .o-calendly-button.primary a,
.c-block--pre-footer-cta .o-calendly-button.secondary a {
  position: relative;
  top: 30%;
  width: auto !important;
}

.c-block--pre-footer-cta--intro {
  position: relative;
}

@media (max-width: 1200px) {
  .c-block--pre-footer-cta--intro {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.c-block--pre-footer-cta--intro::after {
  content: "";
  position: absolute;
  left: -17%;
  top: -20px;
  width: 236px;
  height: 169px;
  background-image: url(/wp-content/themes/sapient/resources/assets/images/shapes/stars-grid-green.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 1200px) {
  .c-block--pre-footer-cta--intro::after {
    left: -12%;
  }
}

@media (max-width: 1100px) {
  .c-block--pre-footer-cta--intro::after {
    left: -14%;
  }
}

.c-block--corner-graphic::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 223px;
  height: 223px;
  background-image: url(/wp-content/themes/sapient/resources/assets/images/shapes/triangle-cta.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media (max-width: 850px) {
  .c-block--corner-graphic::before {
    width: 130px;
    height: 130px;
  }
}

.c-block--corner-graphic > div {
  z-index: 10;
}

@media (max-width: 700px) {
  .about-sapient .c-block--pre-footer-cta .c-block--content {
    padding: 75px 45px 115px 45px;
    background-image: none;
    background-color: #000;
  }
}

@media (max-width: 700px) {
  .applications .c-block--pre-footer-cta .o-button.o-button--primary,
  .applications .c-block--pre-footer-cta .o-button.o-button--secondary,
  .applications .c-block--pre-footer-cta .o-calendly-button.primary a,
  .applications .c-block--pre-footer-cta .o-calendly-button.secondary a {
    color: #000 !important;
    border: 1px solid #000 !important;
    background: -webkit-gradient(linear, left top, right top, from(#000), color-stop(50%, #000), color-stop(50%, rgba(255, 255, 255, 0))) !important;
    background: -webkit-linear-gradient(left, #000, #000 50%, rgba(255, 255, 255, 0) 50%) !important;
    background: -o-linear-gradient(left, #000, #000 50%, rgba(255, 255, 255, 0) 50%) !important;
    background: linear-gradient(to right, #000, #000 50%, rgba(255, 255, 255, 0) 50%) !important;
    background-size: 200% 100% !important;
    background-position: 100% !important;
    margin-top: 20px !important;
  }

  .applications .c-block--pre-footer-cta .o-button.o-button--primary:hover,
  .applications .c-block--pre-footer-cta .o-button.o-button--secondary:hover,
  .applications .c-block--pre-footer-cta .o-calendly-button.primary a:hover,
  .applications .c-block--pre-footer-cta .o-calendly-button.secondary a:hover {
    color: #fff !important;
    background-position: 0% 100% !important;
  }
}

.c-block--post-hero-cta {
  padding: 0 0 105px 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  margin: -200px auto 0;
}

@media (max-width: 1100px) {
  .c-block--post-hero-cta {
    width: 85%;
  }
}

@media (max-width: 850px) {
  .c-block--post-hero-cta {
    padding-top: 0;
    margin-top: -100px;
  }
}

@media (max-width: 550px) {
  .c-block--post-hero-cta {
    padding-bottom: 75px;
  }
}

.c-block--post-hero-cta--content {
  padding: 75px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 850px) {
  .c-block--post-hero-cta--content {
    padding: 50px 0;
  }
}

@media (max-width: 700px) {
  .c-block--post-hero-cta--content {
    padding: 30px;
  }
}

@media (max-width: 550px) {
  .c-block--post-hero-cta--content {
    padding: 50px 44px 90px;
  }
}

.c-block--post-hero-cta--content .o-rte-text {
  padding-right: 80px;
}

@media (max-width: 850px) {
  .c-block--post-hero-cta--content .o-rte-text {
    padding-right: 0 !important;
    padding-left: 20px !important;
  }
}

@media (max-width: 550px) {
  .c-block--post-hero-cta--content .o-rte-text {
    padding-right: 0 !important;
  }
}

/* idk where to put this and it's on one component in Applications, not global sry :/ */

.c-block--table-design-circles,
.c-block--table-design-triangles {
  padding: 35px 0 105px 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #f0f0f0;
}

@media (max-width: 1200px) {
  .c-block--table-design-circles,
  .c-block--table-design-triangles {
    padding: 50px 40px 50px 80px;
  }
}

@media (max-width: 550px) {
  .c-block--table-design-circles,
  .c-block--table-design-triangles {
    padding: 50px 40px 0;
  }
}

.c-block--table-design-circles .table-section,
.c-block--table-design-triangles .table-section {
  padding-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 550px) {
  .c-block--table-design-circles .table-section,
  .c-block--table-design-triangles .table-section {
    padding-left: 0;
  }
}

.c-block--table-design-circles .table-section li,
.c-block--table-design-triangles .table-section li {
  width: 50%;
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 700px) {
  .c-block--table-design-circles .table-section li,
  .c-block--table-design-triangles .table-section li {
    width: 100%;
  }
}

.c-block--table-design-circles .table-section li:hover .o-image-top,
.c-block--table-design-triangles .table-section li:hover .o-image-top {
  -webkit-transform: translate(-8px, 8px);
       -o-transform: translate(-8px, 8px);
          transform: translate(-8px, 8px);
}

.c-block--table-design-circles .table-section .item-graphic,
.c-block--table-design-triangles .table-section .item-graphic {
  width: 75px;
  height: 100%;
  position: relative;
}

@media (max-width: 1100px) {
  .c-block--table-design-circles .table-section .item-graphic,
  .c-block--table-design-triangles .table-section .item-graphic {
    width: 55px;
  }
}

@media (max-width: 850px) {
  .c-block--table-design-circles .table-section .item-graphic,
  .c-block--table-design-triangles .table-section .item-graphic {
    width: 50px;
  }
}

@media (max-width: 700px) {
  .c-block--table-design-circles .table-section .item-graphic,
  .c-block--table-design-triangles .table-section .item-graphic {
    width: 43px;
  }
}

.c-block--table-design-circles .table-section .item-graphic .o-image-top,
.c-block--table-design-circles .table-section .item-graphic .o-image-behind,
.c-block--table-design-triangles .table-section .item-graphic .o-image-top,
.c-block--table-design-triangles .table-section .item-graphic .o-image-behind {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.c-block--table-design-circles .table-section .item-graphic .o-image-top,
.c-block--table-design-triangles .table-section .item-graphic .o-image-top {
  -webkit-transform: translate(-18px, 18px);
       -o-transform: translate(-18px, 18px);
          transform: translate(-18px, 18px);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 850px) {
  .c-block--table-design-circles .table-section .item-graphic .o-image-top,
  .c-block--table-design-triangles .table-section .item-graphic .o-image-top {
    -webkit-transform: translate(-10px, 10px);
         -o-transform: translate(-10px, 10px);
            transform: translate(-10px, 10px);
  }
}

.c-block--table-design-circles .table-section .item-text,
.c-block--table-design-triangles .table-section .item-text {
  width: 75%;
  padding-left: 20px;
}

@media (max-width: 1100px) {
  .c-block--table-design-circles .table-section .item-text,
  .c-block--table-design-triangles .table-section .item-text {
    width: 80%;
  }
}

@media (max-width: 700px) {
  .c-block--table-design-circles .table-section .item-text,
  .c-block--table-design-triangles .table-section .item-text {
    width: 90%;
  }
}

.c-block--table-design-circles .table-section .item-text h4,
.c-block--table-design-triangles .table-section .item-text h4 {
  margin-bottom: 0px;
}

.c-block--table-design-circles .table-section .item-text .o-rte-text,
.c-block--table-design-triangles .table-section .item-text .o-rte-text {
  padding-right: 60px;
}

.c-block--table-design-circles .table-header-content,
.c-block--table-design-triangles .table-header-content {
  padding-bottom: 80px;
}

.c-block--table-design-circles .table-header-content p,
.c-block--table-design-triangles .table-header-content p {
  font-size: 49px;
  line-height: 50px;
}

.c-block--table-design-triangles {
  padding: 50px 40px 0;
}

@media (max-width: 1100px) {
  .c-block--table-design-triangles {
    padding: 30px 40px 0;
  }
}

@media (max-width: 1200px) {
  .c-block--table-design-triangles .table-section {
    padding-left: 0;
  }
}

.c-block--table-design-triangles h4,
.c-block--table-design-triangles p {
  color: #fff;
}

.c-block--content {
  padding: 75px 0 95px 0;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}

.c-block--technology-principle {
  position: relative;
  text-align: center;
}

.c-block--technology-principle .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}

@media (max-width: 1200px) {
  .c-block--technology-principle .l-container {
    padding: 0 40px;
  }
}

@media (max-width: 850px) {
  .c-block--technology-principle .l-container {
    margin-bottom: 0;
  }
}

@media (max-width: 850px) {
  .c-block--technology-principle .l-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 550px) {
  .c-block--technology-principle .l-container {
    padding: 0 20px;
  }
}

.c-block--technology-principle .o-icon.o-icon--slash-vert {
  height: 120px;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media (max-width: 1100px) {
  .c-block--technology-principle .o-icon.o-icon--slash-vert {
    height: 90px;
  }
}

@media (max-width: 850px) {
  .c-block--technology-principle .o-icon.o-icon--slash-vert {
    height: 100px;
    margin: 40px auto;
    -webkit-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.c-block--technology-principle #slashVert {
  -webkit-animation: grow 2s 2s;
       -o-animation: grow 2s 2s;
          animation: grow 2s 2s;
  -webkit-animation-fill-mode: both;
       -o-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes grow {
  from {
    -webkit-transform: scale(1, -1);
            transform: scale(1, -1);
  }

  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@-o-keyframes grow {
  from {
    -o-transform: scale(1, -1);
       transform: scale(1, -1);
  }

  to {
    -o-transform: scale(1, 1);
       transform: scale(1, 1);
  }
}

@keyframes grow {
  from {
    -webkit-transform: scale(1, -1);
         -o-transform: scale(1, -1);
            transform: scale(1, -1);
  }

  to {
    -webkit-transform: scale(1, 1);
         -o-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@media (max-width: 850px) {
  .c-block--technology-principle .o-button {
    margin-top: 80px;
  }
}

.c-block--ring-left,
.c-block--ring-right {
  position: relative;
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 478px;
  height: 478px;
}

@media (min-width: 1601px) {
  .c-block--ring-left,
  .c-block--ring-right {
    width: 500px;
    height: 500px;
    padding: 75px 50px 40px 50px;
  }
}

@media (max-width: 1600px) {
  .c-block--ring-left,
  .c-block--ring-right {
    width: 445px;
    height: 445px;
  }
}

@media (max-width: 1100px) {
  .c-block--ring-left,
  .c-block--ring-right {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 850px) {
  .c-block--ring-left,
  .c-block--ring-right {
    padding: 20px 35px;
  }
}

@media (max-width: 700px) {
  .c-block--ring-left,
  .c-block--ring-right {
    padding: 60px 80px;
  }
}

@media (max-width: 550px) {
  .c-block--ring-left,
  .c-block--ring-right {
    width: 100%;
    height: 340px;
    padding: 20px 35px;
  }
}

@media (min-width: 850px) {
  .c-block--ring-left.u-spacing--double > * + *,
  .c-block--ring-right.u-spacing--double > * + * {
    margin-top: 25px;
  }
}

@media (max-width: 850px) {
  .c-block--ring-left.u-spacing--double > * + *,
  .c-block--ring-right.u-spacing--double > * + * {
    margin-top: 20px;
  }
}

.c-block--ring-left .o-image--ring-right,
.c-block--ring-left .o-image--ring-left,
.c-block--ring-right .o-image--ring-right,
.c-block--ring-right .o-image--ring-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.c-block--ring-left .o-icon,
.c-block--ring-right .o-icon {
  height: 52px;
  width: auto;
}

@media (min-width: 701px) {
  .c-block--ring-left .o-icon,
  .c-block--ring-right .o-icon {
    margin-top: 40px;
  }
}

@media (max-width: 700px) {
  .c-block--ring-left .o-icon,
  .c-block--ring-right .o-icon {
    margin-top: 20px;
  }
}

@media (max-width: 1200px) {
  .c-block--ring-left h4,
  .c-block--ring-right h4 {
    font-size: 26px;
    line-height: 1.2;
  }
}

@media (max-width: 550px) {
  .c-block--ring-left h4,
  .c-block--ring-right h4 {
    font-size: 24px;
  }
}

@media (max-width: 1600px) {
  .c-block--ring-left p,
  .c-block--ring-right p {
    font-size: 16px;
    line-height: 1.4;
  }
}

@media (max-width: 1100px) {
  .c-block--ring-left p,
  .c-block--ring-right p {
    font-size: 13px;
    line-height: 1.3;
  }
}

.c-block--technology-checklist {
  padding-bottom: 60px;
}

.c-block--technology-checklist .technology-checklist .technology-header {
  color: #fff;
  text-align: right;
}

@media (max-width: 850px) {
  .c-block--technology-checklist .technology-checklist .technology-header {
    text-align: center;
  }
}

.c-block--technology-checklist .technology-checklist .checklist .checklist-item {
  display: inline-block;
  padding-left: 30px;
  padding-bottom: 20px;
  width: 100%;
}

.c-block--technology-checklist .technology-checklist .checklist .checklist-item img.checklist-item-icon {
  display: inline-block;
  float: left;
  margin-right: 20px;
}

.c-block--technology-breakdown {
  padding: 105px 0 20px 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #000;
  overflow: hidden;
}

@media (max-width: 700px) {
  .c-block--technology-breakdown {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 550px) {
  .c-block--technology-breakdown {
    padding: 20px;
  }
}

.c-block--technology-breakdown .large-background-image--1 {
  position: absolute;
  height: 742px;
  right: -578px;
}

@media (max-width: 550px) {
  .c-block--technology-breakdown .large-background-image--1 {
    height: 371px;
    width: 393px;
    top: 355px;
    right: -147px;
  }
}

.c-block--technology-breakdown .large-background-image--2 {
  position: absolute;
  height: 737px;
  right: -717px;
  top: 40%;
}

@media (max-width: 550px) {
  .c-block--technology-breakdown .large-background-image--2 {
    width: 476px;
    height: 391px;
    right: -250px;
    top: 1195px;
  }
}

.c-block--technology-breakdown .large-background-image--3 {
  position: absolute;
  height: 740px;
  right: -578px;
}

@media (max-width: 550px) {
  .c-block--technology-breakdown .large-background-image--3 {
    height: 371px;
    width: 372px;
    right: -192px;
    top: 1957px;
  }
}

.c-block--technology-breakdown .technology-breakdown-context {
  margin-bottom: 225px;
  position: relative;
}

@media (max-width: 850px) {
  .c-block--technology-breakdown .technology-breakdown-context {
    margin-bottom: 85px;
  }
}

@media (max-width: 550px) {
  .c-block--technology-breakdown .technology-breakdown-context {
    margin-bottom: 140px;
  }
}

.c-block--technology-breakdown .technology-breakdown-context .context-image.no-before::before {
  display: none;
}

@media (max-width: 700px) {
  .c-block--technology-breakdown .technology-breakdown-context {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-block--technology-breakdown .technology-breakdown-context .technology-icon {
  position: relative;
  margin-bottom: 20px;
  width: 70px;
  display: block;
}

@media (min-width: 1200px) {
  .c-block--technology-breakdown .technology-breakdown-context .technology-icon {
    left: 145px;
    margin-bottom: 40px;
  }
}

@media (max-width: 850px) {
  .c-block--technology-breakdown .technology-breakdown-context .technology-icon {
    left: 20%;
  }
}

@media (max-width: 550px) {
  .c-block--technology-breakdown .technology-breakdown-context .technology-icon {
    left: unset;
  }
}

.c-block--technology-breakdown .technology-breakdown-context .context-copy {
  background-color: #000;
  border: 1px solid #fff;
  display: table-cell;
  padding: 50px;
  z-index: 10;
}

@media (max-width: 850px) {
  .c-block--technology-breakdown .technology-breakdown-context .context-copy {
    padding: 25px;
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .c-block--technology-breakdown .technology-breakdown-context .context-copy {
    margin-bottom: 110px;
  }
}

@media (max-width: 550px) {
  .c-block--technology-breakdown .technology-breakdown-context .context-copy {
    padding: 25px;
    margin: 0 20px 75px 20px;
  }
}

.c-block--technology-breakdown .technology-breakdown-context .context-copy h3 {
  color: #fff;
  margin-bottom: 15px;
}

.c-block--technology-breakdown .technology-breakdown-context .context-copy p {
  color: #fff;
}

.c-block--technology-breakdown .technology-breakdown-context .context-image.o-icon--image {
  position: relative;
}

@media (max-width: 850px) {
  .c-block--technology-breakdown .technology-breakdown-context .context-image.o-icon--image {
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.c-block--technology-breakdown .technology-breakdown-context .context-image.o-icon--image::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -180px;
  height: 100px;
  width: 37px;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='4px' height='51px' viewBox='0 0 4 51' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EFill 6%3C/title%3E%3Cg id='UI' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Home-C' transform='translate(-1017.000000, -3543.000000)' fill='%230082A1'%3E%3Cg id='Group-8' transform='translate(1018.999296, 3568.500000) scale(1, -1) rotate(134.000000) translate(-1018.999296, -3568.500000) translate(1000.499296, 3550.500000)'%3E%3Cpath d='M35.3855922,0 C34.9452465,0 34.5336866,0.170040486 34.2271562,0.477210396 L0,34.8057986 L1.07285649,36 L36.5097965,2.69870707 C36.8225509,2.4040747 36.996044,2.00835836 37,1.58364895 C37.0038239,1.15972313 36.8357768,0.761656001 36.5276904,0.462322058 C36.2219379,0.163771712 35.816602,0 35.3855922,0' id='Fill-6'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

@media (max-width: 550px) {
  .c-block--technology-breakdown .technology-breakdown-context .context-image.o-icon--image::before {
    height: 65px;
    bottom: -100px;
  }
}

.c-block--technology-breakdown .technology-breakdown-context .hover-image-parent {
  position: relative;
}

.c-block--technology-breakdown .technology-breakdown-context .hover-circle {
  position: inherit;
  top: -460px;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  -o-transition: -o-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s, -o-transform 0.8s;
}

@media (max-width: 850px) {
  .c-block--technology-breakdown .technology-breakdown-context .hover-circle {
    top: -275px;
  }
}

@media (max-width: 550px) {
  .c-block--technology-breakdown .technology-breakdown-context .hover-circle {
    top: -300px;
  }
}

@media (min-width: 701px) {
  .c-block--technology-breakdown .technology-breakdown-context .hover-circle:hover {
    -webkit-transform: translate(0px, -40px) !important;
         -o-transform: translate(0px, -40px) !important;
            transform: translate(0px, -40px) !important;
  }
}

.c-block--technology-breakdown .technology-breakdown-context .hover-image {
  display: inline-block;
  position: absolute;
  z-index: 10px;
}

.c-block--technology-breakdown .technology-breakdown-context .spacer-box {
  display: table-cell;
}

@media (max-width: 700px) {
  .c-block--technology-breakdown .technology-breakdown-context .spacer-box {
    -webkit-animation: none;
         -o-animation: none;
            animation: none;
  }
}

.c-block--technology-breakdown .technology-breakdown-context .spacer-box .spacer-line {
  height: 50%;
  border-bottom: 1px solid #fff;
}

@media (max-width: 700px) {
  .c-block--technology-breakdown .technology-breakdown-context .spacer-box .spacer-line {
    -webkit-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@media (max-width: 700px) {
  .c-block--technology-breakdown .l-container {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media (max-width: 550px) {
  .c-block--technology-breakdown .l-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.c-block--content {
  padding: 75px 0 95px 0;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}

.c-block--content .o-rte-text {
  padding-right: 80px;
}

.c-block--certifications {
  padding: 105px 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}

.c-block--certifications .certification-icons-list {
  margin-top: 20px;
}

.c-block--certifications .certification-icons-list li {
  display: inline-block;
  padding-right: 50px;
}

.c-block--content {
  padding: 75px 0 95px 0;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}

.c-block {
  background-color: #f0f0f0;
}

.c-block--carousel {
  position: relative;
  padding: 100px 0 150px 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media (max-width: 550px) {
  .c-block--carousel {
    padding: 20px 0px 50px 0px;
  }
}

.c-block--carousel--intro {
  margin-bottom: 100px;
}

@media (max-width: 550px) {
  .c-block--carousel--intro {
    margin-bottom: 50px;
  }
}

.c-block--carousel--item {
  display: inline-block;
  width: 44% !important;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

@media (max-width: 550px) {
  .c-block--carousel--item {
    width: 100% !important;
    margin-left: 7%;
  }
}

.c-block--carousel--item--container {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 550px) {
  .c-block--carousel--item--container {
    width: 100%;
  }
}

.c-block--carousel--item h2 {
  display: block;
  position: relative;
  left: -250px;
  top: -84px;
}

@media (max-width: 550px) {
  .c-block--carousel--item h2 {
    font-size: 45px;
    left: -110px;
    top: -40px;
  }
}

.c-block--carousel--item-desc {
  display: block;
  width: 100%;
  position: relative;
  border-left: 1px solid #ff4f00;
  padding-top: 30px;
  padding-left: 25px;
}

.c-block--carousel--item-desc p {
  width: 91%;
  text-align: left;
}

@media (max-width: 550px) {
  .c-block--carousel--item-desc p {
    width: 78%;
  }
}

.c-block--carousel--item-desc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0082a1;
}

.c-block--carousel--item-desc::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='16px' height='17px' viewBox='0 0 16 17' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EOval Copy 4%3C/title%3E%3Cg id='UI' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='About-Sapient' transform='translate(-622.000000, -2262.000000)' fill='%23FF4F00'%3E%3Ccircle id='Oval-Copy-4' cx='630' cy='2270.5' r='8'%3E%3C/circle%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.c-block--carousel--item:last-child .c-block--carousel--item-desc::before {
  width: 115%;
}

.c-block--carousel--item img {
  -webkit-box-shadow: 0px 30px 73px rgba(0, 0, 0, 0.37);
          box-shadow: 0px 30px 73px rgba(0, 0, 0, 0.37);
}

@media (max-width: 550px) {
  .c-block--carousel--item img {
    max-width: 80%;
  }
}

.c-block--carousel img.o-image--dots-grid {
  position: absolute !important;
  left: -50px !important;
  top: 30px !important;
}

@media (max-width: 550px) {
  .c-block--carousel img.o-image--dots-grid {
    position: absolute;
    width: 138px;
    height: 137px;
    top: 0;
    left: -80px;
  }
}

.zero-index-container.swiper-slide-active {
  width: 100px !important;
}

.c-block--gallery {
  padding-top: 0;
  padding-right: 40px;
  padding-left: 40px;
  padding-bottom: 60px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #000), color-stop(20%, #f0f0f0));
  background: -webkit-linear-gradient(top, #000 20%, #f0f0f0 20%);
  background: -o-linear-gradient(top, #000 20%, #f0f0f0 20%);
  background: linear-gradient(180deg, #000 20%, #f0f0f0 20%);
}

@media (max-width: 550px) {
  .c-block--gallery {
    padding-right: 20px;
    padding-left: 20px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #000), color-stop(10%, #f0f0f0));
    background: -webkit-linear-gradient(top, #000 10%, #f0f0f0 10%);
    background: -o-linear-gradient(top, #000 10%, #f0f0f0 10%);
    background: linear-gradient(180deg, #000 10%, #f0f0f0 10%);
  }
}

.c-block--gallery--content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-block--gallery--item {
  height: 380px;
  overflow: hidden;
  -webkit-box-shadow: 7px 36px 50px rgba(0, 0, 0, 0.2);
          box-shadow: 7px 36px 50px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1100px) {
  .c-block--gallery--item {
    height: 288px;
  }
}

@media (max-width: 550px) {
  .c-block--gallery--item {
    height: 105px;
  }
}

.c-block--gallery--item img {
  position: relative;
  width: 100%;
  height: auto;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 1199px) {
  .c-block--gallery--item img {
    width: auto;
    height: 100%;
  }
}

.c-block--gallery--item:nth-child(1) {
  width: 24%;
}

.c-block--gallery--item:nth-child(2) {
  width: 32%;
}

.c-block--gallery--item:nth-child(3) {
  width: 41%;
}

.c-block--gallery--item:last-child {
  width: 100%;
  height: 536px;
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .c-block--gallery--item:last-child {
    height: 410px;
  }
}

@media (max-width: 550px) {
  .c-block--gallery--item:last-child {
    height: 220px;
  }
}

.c-block--video-component--content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 550px) {
  .c-block--video-component--content iframe {
    height: 208px;
  }
}

.c-block--banner-image-quote {
  padding: 105px 40px 60px 40px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media (max-width: 550px) {
  .c-block--banner-image-quote {
    padding: 40px;
  }
}

@media (max-width: 850px) {
  .c-block--banner-image-quote img {
    width: 100%;
  }
}

.c-block--banner-image-quote .banner-quote {
  padding-top: 40px;
}

@media (max-width: 850px) {
  .c-block--banner-image-quote .banner-quote {
    margin-top: 40px;
  }
}

.c-block--banner-image-quote .banner-quote h2 {
  width: 90%;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  padding-bottom: 20px;
}

.c-block--banner-image-quote .banner-quote p {
  width: 90%;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  padding-bottom: 20px;
}

.c-block--banner-image-quote .o-button {
  margin: 0 auto;
}

.c-block--content {
  padding: 75px 0 95px 0;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}

.c-block--generic-form {
  padding: 105px 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media (max-width: 550px) {
  .c-block--generic-form {
    padding: 40px 0;
  }
}

.c-block--generic-form--wrapper::before {
  content: '';
  position: absolute;
  top: 14%;
  right: -130px;
  width: 582px;
  height: 531px;
  background-image: url(/wp-content/themes/sapient/resources/assets/images/shapes/dots-grid-white.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.c-block--generic-form .generic-form-container {
  position: relative;
  border: 1px solid #939598;
  border-top: none;
  padding-bottom: 40px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top;
  background-color: #fff;
  -webkit-box-shadow: 7px 36px 50px rgba(0, 0, 0, 0.2);
          box-shadow: 7px 36px 50px rgba(0, 0, 0, 0.2);
}

.c-block--generic-form .generic-form-container .o-horizontal-stripe {
  position: relative;
  bottom: 2px;
  background-image: url(/wp-content/themes/sapient/resources/assets/images/shapes/color-stripe.svg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 5px;
  width: 100%;
}

.c-block--generic-form .generic-form-container .form-header > p {
  font-size: 49px;
  line-height: 54px;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 20px;
}

@media (max-width: 550px) {
  .c-block--generic-form .generic-form-container .form-header > p {
    font-size: 30px;
    line-height: 1.1;
    padding: 50px 40px 20px;
  }
}

.c-block--generic-form .generic-form-container .form-paragraph {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 550px) {
  .c-block--generic-form .generic-form-container .form-paragraph {
    width: 75%;
  }
}

.c-block--generic-form .generic-form-container .generic-form {
  padding: 40px 100px;
}

@media (max-width: 850px) {
  .c-block--generic-form .generic-form-container .generic-form {
    padding: 40px 50px;
  }
}

@media (max-width: 550px) {
  .c-block--generic-form .generic-form-container .generic-form {
    padding: 40px 30px;
  }
}

.c-block--flexible-layout {
  position: relative;
}

.c-block--flexible-layout.layout-2-col {
  padding: 250px 0;
  background-color: #f0f0f0;
}

@media (max-width: 700px) {
  .c-block--flexible-layout.layout-2-col {
    padding: 175px 0;
  }
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-2-col {
    padding: 145px 0;
  }
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-2-col .l-container {
    padding-left: 25px;
  }
}

.c-block--flexible-layout.layout-2-col .shape-circles--small {
  position: absolute !important;
  width: 323px;
  top: 80% !important;
  left: 60%;
  z-index: 10;
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-2-col .shape-circles--small {
    width: 162px;
    left: 53%;
    top: 88% !important;
  }
}

.c-block--flexible-layout.layout-2-col .shape-circles--small.front {
  width: 363px;
  left: 59%;
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-2-col .shape-circles--small.front {
    width: 202px;
    left: 52%;
  }
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-2-col .o-image--dots-grid {
    left: -110px;
    top: 124px;
  }
}

.c-block--flexible-layout.layout-2-col-alt {
  padding: 100px 0;
  background-color: #000;
}

@media (max-width: 700px) {
  .c-block--flexible-layout.layout-2-col-alt {
    padding: 40px 0;
  }
}

@media (max-width: 1200px) {
  .c-block--flexible-layout.layout-2-col-alt .l-container {
    padding: 0 40px;
  }
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-2-col-alt .u-padding--double--right {
    padding: 0;
  }
}

.c-block--flexible-layout.layout-2-col-alt .u-space--triple--top {
  margin-top: 40px;
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-2-col-alt .u-space--triple--top {
    margin-top: 20px;
  }
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-2-col-alt .o-image--dots-grid {
    left: -125px;
    top: 23%;
  }
}

.c-block--flexible-layout.layout-split-content {
  padding: 160px 0;
  background-color: #f0f0f0;
}

@media (max-width: 1200px) {
  .c-block--flexible-layout.layout-split-content {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 850px) {
  .c-block--flexible-layout.layout-split-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 1100px) {
  .c-block--flexible-layout.layout-split-content .u-padding--double--right {
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  .c-block--flexible-layout.layout-split-content .u-padding--double--right {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.c-block--flexible-layout.layout-split-content .o-image--dots-fade {
  position: absolute;
  top: 77%;
  right: 370px;
}

@media (max-width: 1100px) {
  .c-block--flexible-layout.layout-split-content .o-image--dots-fade {
    top: 53%;
    right: 244px;
  }
}

@media (max-width: 850px) {
  .c-block--flexible-layout.layout-split-content .o-image--dots-fade {
    top: 42%;
    right: 205px;
    width: 150px;
  }
}

@media (max-width: 700px) {
  .c-block--flexible-layout.layout-split-content .o-image--dots-fade {
    top: 93%;
    right: 75%;
  }
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-split-content .o-image--dots-fade {
    width: 97px;
    height: 85px;
  }
}

.c-block--flexible-layout.layout-split-content [bp~="first"] .o-image--dots-fade {
  position: absolute;
  top: 77%;
  left: -80px;
}

.c-block--flexible-layout.layout-simple-split {
  padding: 150px 0;
  background-color: #000;
}

@media (max-width: 850px) {
  .c-block--flexible-layout.layout-simple-split {
    padding: 60px 40px 150px;
  }
}

@media (max-width: 700px) {
  .c-block--flexible-layout.layout-simple-split {
    padding: 40px 0 80px;
  }
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-simple-split {
    padding-bottom: 100px;
  }
}

.c-block--flexible-layout.layout-simple-split .shape-triangles--medium {
  position: absolute !important;
  width: 442px;
  top: 70% !important;
  left: 60% !important;
  z-index: 1;
}

@media (max-width: 1100px) {
  .c-block--flexible-layout.layout-simple-split .shape-triangles--medium {
    width: 365px;
  }
}

@media (max-width: 850px) {
  .c-block--flexible-layout.layout-simple-split .shape-triangles--medium {
    width: 270px;
  }
}

@media (max-width: 700px) {
  .c-block--flexible-layout.layout-simple-split .shape-triangles--medium {
    width: 215px;
    top: 81% !important;
    left: 65% !important;
  }
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-simple-split .shape-triangles--medium {
    width: 153px;
    top: 83% !important;
    left: 55% !important;
  }
}

.c-block--flexible-layout.layout-simple-split .shape-triangles--medium--right {
  position: absolute !important;
  width: 342px;
  top: 70% !important;
  left: 10% !important;
}

.c-block--flexible-layout.layout-2-row {
  padding: 100px 0;
  background-color: #f0f0f0;
}

@media (max-width: 700px) {
  .c-block--flexible-layout.layout-2-row {
    padding: 50px 40px 50px 80px;
  }
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-2-row .l-container .u-padding--double--right {
    padding-right: 0;
  }
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-2-row .l-container .u-padding--double--left {
    padding-left: 0;
  }
}

.c-block--flexible-layout.layout-2-row h3,
.c-block--flexible-layout.layout-2-row h2 {
  color: #000;
}

.c-block--flexible-layout.layout-2-row p {
  font-size: 65px;
  color: #000;
  line-height: 66px;
}

@media (max-width: 1100px) {
  .c-block--flexible-layout.layout-2-row .o-image--stars-grid {
    left: -100px;
    top: 50px;
  }
}

@media (max-width: 700px) {
  .c-block--flexible-layout.layout-2-row .o-image--stars-grid {
    left: 0px;
    top: 50px;
  }
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-2-row .o-image--stars-grid {
    left: -25px;
    top: 50px;
  }
}

.c-block--flexible-layout.layout-2-col-alt-vid {
  padding: 250px 0;
  background-color: #f0f0f0;
}

@media (max-width: 700px) {
  .c-block--flexible-layout.layout-2-col-alt-vid {
    padding: 175px 0;
  }
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-2-col-alt-vid {
    padding: 145px 0;
  }
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-2-col-alt-vid .l-container {
    padding-left: 25px;
  }
}

.c-block--flexible-layout.layout-2-col-alt-vid .shape-circles--small {
  position: absolute !important;
  width: 323px;
  top: 88.5% !important;
  left: 60%;
  z-index: 10;
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-2-col-alt-vid .shape-circles--small {
    width: 162px;
    left: 53%;
    top: 88% !important;
  }
}

.c-block--flexible-layout.layout-2-col-alt-vid .shape-circles--small.front {
  width: 363px;
  left: 59%;
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-2-col-alt-vid .shape-circles--small.front {
    width: 202px;
    left: 52%;
  }
}

.c-block--flexible-layout.layout-2-col-alt-vid .o-image--dots-grid {
  top: 16%;
}

@media (max-width: 550px) {
  .c-block--flexible-layout.layout-2-col-alt-vid .o-image--dots-grid {
    left: -110px;
    top: 124px;
  }
}

.c-block--flexible-layout .o-image--dots-grid {
  position: absolute;
  top: 26%;
  left: -50px;
}

@media (max-width: 1200px) {
  .c-block--flexible-layout .o-image--dots-grid {
    left: -140px;
  }
}

@media (max-width: 1100px) {
  .c-block--flexible-layout .o-image--dots-grid {
    width: 220px;
    height: 200px;
  }
}

@media (max-width: 700px) {
  .c-block--flexible-layout .o-image--dots-grid {
    left: -175px;
  }
}

@media (max-width: 550px) {
  .c-block--flexible-layout .o-image--dots-grid {
    width: 160px;
    height: 160px;
    left: 127px;
  }
}

.c-block--flexible-layout .o-image--stars-grid {
  background-image: url(/wp-content/themes/sapient/resources/assets/images/shapes/stars-grid-lg-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  width: 169px;
  height: 676px;
  position: absolute;
  left: -73px;
  top: 40px;
}

@media (max-width: 700px) {
  .c-block--flexible-layout .o-image--stars-grid {
    width: 68px;
    height: 270px;
  }
}

/* ------------------------------------ *\
Team Members Block
\* ------------------------------------ */

.c-team {
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 550px) {
  .c-team {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 850px) {
  .c-team h3 {
    letter-spacing: 2px;
    line-height: 1.2;
  }
}

.c-team--leadership {
  background-color: #f0f0f0;
}

.c-team--leadership .c-team--content {
  padding: 240px 0 150px;
}

@media (max-width: 550px) {
  .c-team--leadership .c-team--content {
    padding: 200px 0 125px;
  }
}

.c-team--leadership .c-team--card {
  width: 33.33333%;
  padding: 0px 50px;
}

@media (max-width: 850px) {
  .c-team--leadership .c-team--card {
    padding: 0 30px;
  }
}

@media (max-width: 550px) {
  .c-team--leadership .c-team--card {
    width: 100%;
  }
}

.c-team--leadership .c-team--card:hover .c-team--info {
  background-color: #f0f0f0;
  -webkit-box-shadow: 0px 30px 73px rgba(0, 0, 0, 0.37);
          box-shadow: 0px 30px 73px rgba(0, 0, 0, 0.37);
}

.c-team--full {
  background-color: #fff;
}

.c-team--full::after {
  content: "";
  position: absolute;
  top: -75px;
  right: 10%;
  width: 270px;
  height: 246px;
  background-image: url(/wp-content/themes/sapient/resources/assets/images/shapes/dots-grid-blue.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 550px) {
  .c-team--full::after {
    width: 138px;
    height: 127px;
  }
}

.c-team--full .c-team--content {
  padding: 125px 0 100px 0;
}

@media (max-width: 850px) {
  .c-team--full .c-team--content {
    padding-bottom: 0;
  }
}

@media (max-width: 550px) {
  .c-team--full .c-team--content {
    padding: 80px 0;
  }
}

.c-team--full .c-team--card {
  width: 25%;
}

@media (max-width: 550px) {
  .c-team--full .c-team--card {
    width: 50%;
  }
}

.c-team--full .c-team--card:hover .c-team--info {
  background-color: #fff;
  -webkit-box-shadow: 0px 30px 73px rgba(0, 0, 0, 0.37);
          box-shadow: 0px 30px 73px rgba(0, 0, 0, 0.37);
}

.c-team--leadership-banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  height: 285px;
  top: 145px;
  background-image: url(/wp-content/themes/sapient/resources/assets/images/leadership-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-box-shadow: 0px 30px 73px rgba(0, 0, 0, 0.37);
          box-shadow: 0px 30px 73px rgba(0, 0, 0, 0.37);
  z-index: 5;
}

@media (max-width: 1200px) {
  .c-team--leadership-banner {
    width: 85%;
    height: 250px;
    margin: 0 auto;
  }
}

@media (max-width: 550px) {
  .c-team--leadership-banner {
    background-image: url(/wp-content/themes/sapient/resources/assets/images/leadership-bg-mobile.png);
  }
}

@media (max-width: 550px) {
  .c-team--leadership-banner h2 {
    font-size: 45px;
    line-height: 48px;
  }
}

.c-team--description {
  padding-bottom: 80px;
}

.c-team--members {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-team--card {
  position: relative;
  padding: 0 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

@media (max-width: 700px) {
  .c-team--card {
    margin-bottom: 20px;
  }
}

.c-team--card .c-team--image {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-team--card .c-team--image picture {
  -webkit-filter: saturate(0);
          filter: saturate(0);
  mix-blend-mode: darken;
}

.c-team--card .c-team--info {
  position: relative;
  padding: 30px 0;
  width: 100%;
  top: -2px;
  background-image: url(/wp-content/themes/sapient/resources/assets/images/shapes/color-stripe.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50% -1px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 700px) {
  .c-team--card .c-team--info {
    padding: 20px 0;
  }
}

@media (max-width: 700px) {
  .c-team--card .c-team--info h3 {
    font-size: 11px;
    letter-spacing: 2px;
  }
}

.c-team--card .c-team--info h4 {
  margin-bottom: 10px;
}

@media (max-width: 700px) {
  .c-team--card .c-team--info h4 {
    font-size: 22px;
    line-height: 1.2;
  }
}

.c-block--platform {
  position: relative;
  background-color: #000;
  padding: 220px 0 0 0;
}

@media (max-width: 1200px) {
  .c-block--platform {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 550px) {
  .c-block--platform {
    padding: 100px 0 0 0;
  }
}

.c-block--platform::after {
  content: "";
  position: absolute;
  top: 160px;
  left: -67px;
  width: 169px;
  height: 676px;
  background-image: url(/wp-content/themes/sapient/resources/assets/images/shapes/stars-grid-lg-orange.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1200px) {
  .c-block--platform::after {
    left: -20px;
  }
}

@media (max-width: 1100px) {
  .c-block--platform::after {
    width: 136px;
    height: 555px;
  }
}

@media (max-width: 850px) {
  .c-block--platform::after {
    left: -40px;
    top: 100px;
  }
}

@media (max-width: 700px) {
  .c-block--platform::after {
    top: 80px;
    left: -20px;
  }
}

@media (max-width: 550px) {
  .c-block--platform::after {
    width: 68px;
    height: 270px;
  }
}

.c-block--platform .l-container .o-rte-text {
  padding-right: 20px;
}

.c-block--platform--engine {
  position: relative;
  width: 1055px;
  height: 896px;
  margin: 100px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1100px) {
  .c-block--platform--engine {
    width: 100%;
    height: 815px;
  }
}

@media (max-width: 850px) {
  .c-block--platform--engine {
    height: 715px;
  }
}

@media (max-width: 750px) {
  .c-block--platform--engine {
    height: 675px;
  }
}

@media (max-width: 700px) {
  .c-block--platform--engine {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 40px;
  }
}

.c-block--platform--engine h2 {
  position: absolute;
  top: 57%;
  left: 50%;
  -webkit-transform: translate(-50%, -43%);
       -o-transform: translate(-50%, -43%);
          transform: translate(-50%, -43%);
  z-index: 200;
}

@media (max-width: 1100px) {
  .c-block--platform--engine h2 {
    font-size: 40px;
  }
}

@media (max-width: 850px) {
  .c-block--platform--engine h2 {
    font-size: 32px;
    line-height: 1.2;
  }
}

@media (max-width: 700px) {
  .c-block--platform--engine h2 {
    position: relative;
    top: unset;
    left: unset;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -0.65px;
  }
}

@media (max-width: 850px) {
  .c-block--platform--engine h5 {
    font-size: 24px;
    line-height: 1.2;
  }
}

@media (max-width: 700px) {
  .c-block--platform--engine h5 {
    padding: 0 40px;
  }
}

.c-block--platform--engine--wrap {
  position: relative;
  width: 376px;
  height: 376px;
}

@media (max-width: 700px) {
  .c-block--platform--engine--wrap {
    width: 376px;
    height: 100%;
    margin: 10px auto;
    text-align: center;
  }
}

@media (max-width: 550px) {
  .c-block--platform--engine--wrap {
    width: 100%;
    padding: 0 10px;
  }
}

.c-block--platform .item-top,
.c-block--platform .item-right,
.c-block--platform .item-left,
.c-block--platform .o-image-over {
  width: 376px;
  height: 376px;
  position: absolute;
  z-index: 10;
}

@media (max-width: 1100px) {
  .c-block--platform .item-top,
  .c-block--platform .item-right,
  .c-block--platform .item-left,
  .c-block--platform .o-image-over {
    width: 345px;
    height: 345px;
  }
}

@media (max-width: 850px) {
  .c-block--platform .item-top,
  .c-block--platform .item-right,
  .c-block--platform .item-left,
  .c-block--platform .o-image-over {
    width: 275px;
    height: 275px;
  }
}

@media (max-width: 700px) {
  .c-block--platform .item-top,
  .c-block--platform .item-right,
  .c-block--platform .item-left,
  .c-block--platform .o-image-over {
    width: 376px;
    height: 376px;
    position: relative;
    margin: 0 auto 20px auto;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
  }
}

@media (max-width: 550px) {
  .c-block--platform .item-top,
  .c-block--platform .item-right,
  .c-block--platform .item-left,
  .c-block--platform .o-image-over {
    width: 100%;
    height: auto;
  }
}

.c-block--platform .item-top--description,
.c-block--platform .item-top .o-image-back,
.c-block--platform .item-right--description,
.c-block--platform .item-right .o-image-back,
.c-block--platform .item-left--description,
.c-block--platform .item-left .o-image-back,
.c-block--platform .o-image-over--description,
.c-block--platform .o-image-over .o-image-back {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-block--platform .item-top--description,
.c-block--platform .item-right--description,
.c-block--platform .item-left--description,
.c-block--platform .o-image-over--description {
  width: 320px;
  padding: 30px;
  background-color: #000;
  border: 1px solid #fff;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 1100px) {
  .c-block--platform .item-top--description,
  .c-block--platform .item-right--description,
  .c-block--platform .item-left--description,
  .c-block--platform .o-image-over--description {
    width: 250px;
    padding: 20px;
  }
}

@media (max-width: 850px) {
  .c-block--platform .item-top--description,
  .c-block--platform .item-right--description,
  .c-block--platform .item-left--description,
  .c-block--platform .o-image-over--description {
    width: 180px;
    font-size: 14px;
    line-height: 1.4;
  }
}

@media (max-width: 700px) {
  .c-block--platform .item-top--description,
  .c-block--platform .item-right--description,
  .c-block--platform .item-left--description,
  .c-block--platform .o-image-over--description {
    opacity: 1;
    width: 90%;
    top: 415px;
    -webkit-transform: translate(-50%, 0);
         -o-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@media (max-width: 550px) {
  .c-block--platform .item-top--description,
  .c-block--platform .item-right--description,
  .c-block--platform .item-left--description,
  .c-block--platform .o-image-over--description {
    top: 108%;
  }
}

.c-block--platform .item-top--description::before,
.c-block--platform .item-right--description::before,
.c-block--platform .item-left--description::before,
.c-block--platform .o-image-over--description::before {
  content: "";
  position: absolute;
  background-color: #fff;
}

.c-block--platform .o-image-over--text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-block--platform .o-image-over img {
  -webkit-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.c-block--platform .o-image-over.delayed--5s {
  -webkit-animation-delay: 5.5s;
       -o-animation-delay: 5.5s;
          animation-delay: 5.5s;
}

@media (max-width: 550px) {
  .c-block--platform .o-image-over.delayed--5s {
    -webkit-animation-delay: 1s;
         -o-animation-delay: 1s;
            animation-delay: 1s;
  }
}

.c-block--platform .item-top {
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

@media (max-width: 700px) {
  .c-block--platform .item-top {
    left: unset;
    margin-top: 40px;
    -webkit-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@media (max-width: 550px) {
  .c-block--platform .item-top .o-image-over--text .delayed--3s,
  .c-block--platform .item-top .o-image-over.delayed--5s {
    -webkit-animation-delay: 1s;
         -o-animation-delay: 1s;
            animation-delay: 1s;
  }
}

@media (min-width: 701px) {
  .c-block--platform .item-top:hover .item-top--description {
    -webkit-transform: translate(250px, -50%);
         -o-transform: translate(250px, -50%);
            transform: translate(250px, -50%);
    opacity: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}

@media (max-width: 849px) {
  .c-block--platform .item-top:hover .item-top--description {
    -webkit-transform: translate(165px, -50%);
         -o-transform: translate(165px, -50%);
            transform: translate(165px, -50%);
  }
}

@media (max-width: 700px) {
  .c-block--platform .item-top:hover .item-top--description {
    -webkit-transform: translate(-50%, 0);
         -o-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@media (min-width: 701px) {
  .c-block--platform .item-top:hover .o-image-over img,
  .c-block--platform .item-top:hover .o-image-over--text {
    -webkit-transform: translate(-20px, -20px);
         -o-transform: translate(-20px, -20px);
            transform: translate(-20px, -20px);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

@media (min-width: 701px) {
  .c-block--platform .item-top--description::before {
    width: 100px;
    height: 1px;
    top: 50%;
    left: -100px;
    -webkit-transform: translate(0, -50%);
         -o-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

@media (max-width: 700px) {
  .c-block--platform .item-top--description::before {
    width: 1px;
    height: 100px;
    left: 50%;
    top: -100px;
    -webkit-transform: translate(-50%, 0);
         -o-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.c-block--platform .item-right {
  right: 0;
  bottom: 0;
}

@media (max-width: 550px) {
  .c-block--platform .item-right .o-image-over--text .delayed--5s,
  .c-block--platform .item-right .o-image-over.delayed--5s {
    -webkit-animation-delay: 1s;
         -o-animation-delay: 1s;
            animation-delay: 1s;
  }
}

@media (min-width: 701px) {
  .c-block--platform .item-right:hover .item-right--description {
    -webkit-transform: translate(-50%, -375px);
         -o-transform: translate(-50%, -375px);
            transform: translate(-50%, -375px);
    opacity: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}

@media (max-width: 849px) {
  .c-block--platform .item-right:hover .item-right--description {
    -webkit-transform: translate(-50%, -390px);
         -o-transform: translate(-50%, -390px);
            transform: translate(-50%, -390px);
  }
}

@media (max-width: 700px) {
  .c-block--platform .item-right:hover .item-right--description {
    -webkit-transform: translate(-50%, 0);
         -o-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.c-block--platform .item-right:hover .o-image-over img,
.c-block--platform .item-right:hover .o-image-over--text {
  -webkit-transform: translate(-20px, 20px);
       -o-transform: translate(-20px, 20px);
          transform: translate(-20px, 20px);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 701px) {
  .c-block--platform .item-right--description::before {
    width: 1px;
    height: 100px;
    bottom: -100px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
         -o-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@media (max-width: 700px) {
  .c-block--platform .item-right--description::before {
    width: 1px;
    height: 100px;
    top: -100px;
    bottom: unset;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
         -o-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.c-block--platform .item-left {
  left: 0;
  bottom: 0;
}

@media (max-width: 550px) {
  .c-block--platform .item-left .o-image-over--text .delayed--4s,
  .c-block--platform .item-left .o-image-over.delayed--5s {
    -webkit-animation-delay: 1s;
         -o-animation-delay: 1s;
            animation-delay: 1s;
  }
}

@media (min-width: 701px) {
  .c-block--platform .item-left:hover .item-left--description {
    -webkit-transform: translate(-50%, -375px);
         -o-transform: translate(-50%, -375px);
            transform: translate(-50%, -375px);
    opacity: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}

@media (max-width: 849px) {
  .c-block--platform .item-left:hover .item-left--description {
    -webkit-transform: translate(-50%, -390px);
         -o-transform: translate(-50%, -390px);
            transform: translate(-50%, -390px);
  }
}

@media (max-width: 700px) {
  .c-block--platform .item-left:hover .item-left--description {
    -webkit-transform: translate(-50%, 0);
         -o-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.c-block--platform .item-left:hover .o-image-over img,
.c-block--platform .item-left:hover .o-image-over--text {
  -webkit-transform: translate(20px, 20px);
       -o-transform: translate(20px, 20px);
          transform: translate(20px, 20px);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 701px) {
  .c-block--platform .item-left--description::before {
    width: 1px;
    height: 100px;
    bottom: -100px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
         -o-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@media (max-width: 700px) {
  .c-block--platform .item-left--description::before {
    width: 1px;
    height: 100px;
    top: -100px;
    bottom: unset;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
         -o-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.c-block--platform .o-icon.is-animated #slashVert {
  -webkit-animation-name: grow-up;
       -o-animation-name: grow-up;
          animation-name: grow-up;
  -webkit-animation-fill-mode: both;
       -o-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 0.75s;
       -o-animation-duration: 0.75s;
          animation-duration: 0.75s;
}

.c-block--platform .o-icon.is-animated.delayed--2s #slashVert {
  -webkit-animation-delay: 2s;
       -o-animation-delay: 2s;
          animation-delay: 2s;
}

@media (max-width: 550px) {
  .c-block--platform .o-icon.is-animated.delayed--2s #slashVert {
    -webkit-animation-delay: 0.5s;
         -o-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
}

.c-block--platform .o-icon.is-animated.delayed--3s #slashVert {
  -webkit-animation-delay: 3s;
       -o-animation-delay: 3s;
          animation-delay: 3s;
}

@media (max-width: 550px) {
  .c-block--platform .o-icon.is-animated.delayed--3s #slashVert {
    -webkit-animation-delay: 0.5s;
         -o-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
}

.c-block--platform .o-icon.is-animated.delayed--4s #slashVert {
  -webkit-animation-delay: 4s;
       -o-animation-delay: 4s;
          animation-delay: 4s;
}

@media (max-width: 550px) {
  .c-block--platform .o-icon.is-animated.delayed--4s #slashVert {
    -webkit-animation-delay: 0.5s;
         -o-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
}

@-webkit-keyframes grow-up {
  from {
    -webkit-transform: scale(1, -1);
            transform: scale(1, -1);
  }

  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@-o-keyframes grow-up {
  from {
    -o-transform: scale(1, -1);
       transform: scale(1, -1);
  }

  to {
    -o-transform: scale(1, 1);
       transform: scale(1, 1);
  }
}

@keyframes grow-up {
  from {
    -webkit-transform: scale(1, -1);
         -o-transform: scale(1, -1);
            transform: scale(1, -1);
  }

  to {
    -webkit-transform: scale(1, 1);
         -o-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.c-block--platform .o-icon {
  height: 120px;
  position: absolute;
  -webkit-animation-delay: 3s;
       -o-animation-delay: 3s;
          animation-delay: 3s;
}

@media (max-width: 700px) {
  .c-block--platform .o-icon {
    position: relative;
  }
}

.c-block--platform .o-icon--slash-1 {
  top: 42%;
  left: 69%;
  -webkit-transform: rotate(135deg);
       -o-transform: rotate(135deg);
          transform: rotate(135deg);
}

.c-block--platform .o-icon--slash-2 {
  bottom: 15%;
  left: 50%;
  -webkit-transform: rotate(270deg) translateX(-50%);
       -o-transform: rotate(270deg) translateX(-50%);
          transform: rotate(270deg) translateX(-50%);
}

@media (max-width: 700px) {
  .c-block--platform .o-icon--slash-2 {
    display: none;
  }
}

.c-block--platform .o-icon--slash-3 {
  top: 42%;
  left: 31%;
  -webkit-transform: rotate(-320deg);
       -o-transform: rotate(-320deg);
          transform: rotate(-320deg);
}

@media (max-width: 700px) {
  .c-block--platform .o-icon--slash-1,
  .c-block--platform .o-icon--slash-2,
  .c-block--platform .o-icon--slash-3 {
    position: relative;
    height: 80px;
    top: unset;
    left: unset;
    margin: 200px auto 40px auto;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
  }
}

.c-block--platform--stats {
  padding: 190px 0 100px 40px;
}

@media (max-width: 700px) {
  .c-block--platform--stats {
    padding: 225px 0 100px 40px;
  }
}

@media (max-width: 550px) {
  .c-block--platform--stats {
    padding-left: 0;
  }
}

@media (max-width: 550px) {
  .c-block--platform--stats-1,
  .c-block--platform--stats-2 {
    width: 45%;
    display: inline-block;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.c-block--platform--stats-1 p,
.c-block--platform--stats-2 p {
  width: 45%;
  margin: 0 auto;
}

@media (max-width: 550px) {
  .c-block--platform--stats-1 p,
  .c-block--platform--stats-2 p {
    width: 75%;
  }
}

.c-block--platform--stats-1 h2,
.c-block--platform--stats-2 h2 {
  margin: 10px auto;
}

.c-block--platform--stats-1 {
  margin-bottom: 60px;
}

@media (max-width: 850px) {
  .c-block--platform--stats-1 {
    margin-bottom: 20px;
  }
}

@media (max-width: 550px) {
  .c-block--platform--stats-1 {
    margin-bottom: 0;
  }
}

.c-block--platform--stats-2 {
  margin-top: 60px;
}

@media (max-width: 850px) {
  .c-block--platform--stats-2 {
    margin-top: 20px;
  }
}

@media (max-width: 550px) {
  .c-block--platform--stats-2 {
    margin-top: 0;
    top: 40px;
  }
}

.c-block--platform--stats .o-icon {
  position: relative;
  height: 50px;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-animation-delay: 0s;
       -o-animation-delay: 0s;
          animation-delay: 0s;
}

@media (max-width: 550px) {
  .c-block--platform--stats .o-icon {
    width: 5%;
    top: 50%;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.c-block--contact-us {
  padding-top: 185px;
  background: #000;
}

@media (max-width: 1100px) {
  .c-block--contact-us {
    padding-top: 150px;
  }
}

@media (max-width: 850px) {
  .c-block--contact-us .l-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.c-block--contact-us--intro {
  text-align: center;
  max-width: 625px;
  padding-bottom: 75px;
}

.c-block--contact-us--intro * {
  margin: 25px auto;
}

@media (max-width: 550px) {
  .c-block--contact-us--form {
    margin-bottom: 60px;
  }
}

@media (max-width: 550px) {
  .c-block--contact-us--content {
    text-align: center;
  }
}

.c-block--contact-us--item * {
  margin-bottom: 20px;
}

.c-block--contact-us--item .o-email {
  text-transform: none;
  font-family: "everett-light", sans-serif;
  letter-spacing: 0;
}

.c-block--contact-us--item .o-email {
  font-size: 12px;
  line-height: 18px;
}

@media screen and (min-width: 400px) {
  .c-block--contact-us--item .o-email {
    font-size: calc(12px + 5 * ((100vw - 400px) / 800));
    line-height: calc(18px + 6 * ((100vw - 400px) / 800));
  }
}

@media screen and (min-width: 1200px) {
  .c-block--contact-us--item .o-email {
    font-size: 17px;
    line-height: 24px;
  }
}

@media print {
  .c-block--contact-us--item .o-email {
    font-size: 12px;
    line-height: 1.3;
  }
}

.c-block--contact-us--map {
  width: 100%;
  height: auto;
  background-color: #939598;
}

@media (max-width: 550px) {
  .c-block--contact-us--map {
    margin-bottom: -125px;
    -webkit-box-shadow: 0px 30px 73px rgba(0, 0, 0, 0.37);
            box-shadow: 0px 30px 73px rgba(0, 0, 0, 0.37);
  }
}

.c-block--contact-us--map img {
  width: 100%;
  height: auto;
}

.c-block--contact-us--footer {
  width: 100%;
  height: 165px;
  margin-top: 60px;
  background-image: url(/wp-content/themes/sapient/resources/assets/images/discovermore-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* ------------------------------------ *\
    $MODIFIERS
\* ------------------------------------ */

/* ------------------------------------ *\
    $ANIMATIONS & TRANSITIONS
\* ------------------------------------ */

.is-animated {
  -webkit-animation-fill-mode: both;
       -o-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 1s;
       -o-animation-duration: 1s;
          animation-duration: 1s;
}

.is-animated--hide {
  opacity: 0;
}

.duration--2s {
  -webkit-animation-duration: 2s;
       -o-animation-duration: 2s;
          animation-duration: 2s;
}

.duration--3s {
  -webkit-animation-duration: 3s;
       -o-animation-duration: 3s;
          animation-duration: 3s;
}

.duration--4s {
  -webkit-animation-duration: 4s;
       -o-animation-duration: 4s;
          animation-duration: 4s;
}

.duration--5s {
  -webkit-animation-duration: 5s;
       -o-animation-duration: 5s;
          animation-duration: 5s;
}

.duration--6s {
  -webkit-animation-duration: 6s;
       -o-animation-duration: 6s;
          animation-duration: 6s;
}

.duration--7s {
  -webkit-animation-duration: 7s;
       -o-animation-duration: 7s;
          animation-duration: 7s;
}

.duration--8s {
  -webkit-animation-duration: 8s;
       -o-animation-duration: 8s;
          animation-duration: 8s;
}

.duration--9s {
  -webkit-animation-duration: 9s;
       -o-animation-duration: 9s;
          animation-duration: 9s;
}

.duration--10s {
  -webkit-animation-duration: 10s;
       -o-animation-duration: 10s;
          animation-duration: 10s;
}

.delayed--1s {
  -webkit-animation-delay: 1s;
       -o-animation-delay: 1s;
          animation-delay: 1s;
}

.delayed--2s {
  -webkit-animation-delay: 2s;
       -o-animation-delay: 2s;
          animation-delay: 2s;
}

.delayed--3s {
  -webkit-animation-delay: 3s;
       -o-animation-delay: 3s;
          animation-delay: 3s;
}

.delayed--4s {
  -webkit-animation-delay: 4s;
       -o-animation-delay: 4s;
          animation-delay: 4s;
}

.delayed--5s {
  -webkit-animation-delay: 5s;
       -o-animation-delay: 5s;
          animation-delay: 5s;
}

.delayed--6s {
  -webkit-animation-delay: 6s;
       -o-animation-delay: 6s;
          animation-delay: 6s;
}

.delayed--7s {
  -webkit-animation-delay: 7s;
       -o-animation-delay: 7s;
          animation-delay: 7s;
}

.delayed--8s {
  -webkit-animation-delay: 8s;
       -o-animation-delay: 8s;
          animation-delay: 8s;
}

.delayed--9s {
  -webkit-animation-delay: 9s;
       -o-animation-delay: 9s;
          animation-delay: 9s;
}

.delayed--10s {
  -webkit-animation-delay: 10s;
       -o-animation-delay: 10s;
          animation-delay: 10s;
}

/**
 * Fade In
 */

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-o-keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fade-in--T {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes fade-in--T {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in--T {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fade-in--T--half {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
            transform: translate3d(0, 50%, 0);
  }

  50% {
    opacity: 0.35;
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes fade-in--T--half {
  0% {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }

  50% {
    opacity: 0.35;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in--T--half {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
            transform: translate3d(0, 50%, 0);
  }

  50% {
    opacity: 0.35;
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fade-in--B {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes fade-in--B {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in--B {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fade-in--B--half {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
  }

  50% {
    opacity: 0.35;
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes fade-in--B--half {
  0% {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
  }

  50% {
    opacity: 0.35;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in--B--half {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
  }

  50% {
    opacity: 0.35;
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fade-in--L {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes fade-in--L {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in--L {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fade-in--L--half {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }

  50% {
    opacity: 0.35;
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes fade-in--L--half {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }

  50% {
    opacity: 0.35;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in--L--half {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }

  50% {
    opacity: 0.35;
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fade-in--R {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes fade-in--R {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in--R {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fade-in--R--half {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
            transform: translate3d(50%, 0, 0);
  }

  50% {
    opacity: 0.35;
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes fade-in--R--half {
  0% {
    opacity: 0;
    transform: translate3d(50%, 0, 0);
  }

  50% {
    opacity: 0.35;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in--R--half {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
            transform: translate3d(50%, 0, 0);
  }

  50% {
    opacity: 0.35;
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fade-in--TL {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
            transform: translate3d(-100%, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes fade-in--TL {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in--TL {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
            transform: translate3d(-100%, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fade-in--TR {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
            transform: translate3d(100%, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes fade-in--TR {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in--TR {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
            transform: translate3d(100%, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fade-in--BL {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
            transform: translate3d(-100%, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes fade-in--BL {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in--BL {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
            transform: translate3d(-100%, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fade-in--BR {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
            transform: translate3d(100%, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes fade-in--BR {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in--BR {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
            transform: translate3d(100%, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.is-animated--fade-in {
  -webkit-animation-name: fade-in;
       -o-animation-name: fade-in;
          animation-name: fade-in;
}

.is-animated--fade-in--T {
  -webkit-animation-name: fade-in--T;
       -o-animation-name: fade-in--T;
          animation-name: fade-in--T;
}

.is-animated--fade-in--T--half {
  -webkit-animation-name: fade-in--T--half;
       -o-animation-name: fade-in--T--half;
          animation-name: fade-in--T--half;
}

.is-animated--fade-in--B {
  -webkit-animation-name: fade-in--B;
       -o-animation-name: fade-in--B;
          animation-name: fade-in--B;
}

.is-animated--fade-in--B--half {
  -webkit-animation-name: fade-in--B--half;
       -o-animation-name: fade-in--B--half;
          animation-name: fade-in--B--half;
}

.is-animated--fade-in--L {
  -webkit-animation-name: fade-in--L;
       -o-animation-name: fade-in--L;
          animation-name: fade-in--L;
}

.is-animated--fade-in--L--half {
  -webkit-animation-name: fade-in--L--half;
       -o-animation-name: fade-in--L--half;
          animation-name: fade-in--L--half;
}

.is-animated--fade-in--R {
  -webkit-animation-name: fade-in--R;
       -o-animation-name: fade-in--R;
          animation-name: fade-in--R;
}

.is-animated--fade-in--R--half {
  -webkit-animation-name: fade-in--R--half;
       -o-animation-name: fade-in--R--half;
          animation-name: fade-in--R--half;
}

.is-animated--fade-in--TL {
  -webkit-animation-name: fade-in--TL;
       -o-animation-name: fade-in--TL;
          animation-name: fade-in--TL;
}

.is-animated--fade-in--TR {
  -webkit-animation-name: fade-in--TR;
       -o-animation-name: fade-in--TR;
          animation-name: fade-in--TR;
}

.is-animated--fade-in--BL {
  -webkit-animation-name: fade-in--BL;
       -o-animation-name: fade-in--BL;
          animation-name: fade-in--BL;
}

.is-animated--fade-in--BR {
  -webkit-animation-name: fade-in--BR;
       -o-animation-name: fade-in--BR;
          animation-name: fade-in--BR;
}

/**
 * Fade In Then Slide
 */

@-webkit-keyframes fade-then-slide--T-BL {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
            transform: translate3d(0, 50%, 0);
  }

  65% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  70% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(-20px, 20px, 0);
            transform: translate3d(-20px, 20px, 0);
  }
}

@-o-keyframes fade-then-slide--T-BL {
  0% {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }

  65% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  70% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-20px, 20px, 0);
  }
}

@keyframes fade-then-slide--T-BL {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
            transform: translate3d(0, 50%, 0);
  }

  65% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  70% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(-20px, 20px, 0);
            transform: translate3d(-20px, 20px, 0);
  }
}

@-webkit-keyframes fade-then-slide--T-BR {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
            transform: translate3d(0, 50%, 0);
  }

  65% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  70% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(20px, 20px, 0);
            transform: translate3d(20px, 20px, 0);
  }
}

@-o-keyframes fade-then-slide--T-BR {
  0% {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }

  65% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  70% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(20px, 20px, 0);
  }
}

@keyframes fade-then-slide--T-BR {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
            transform: translate3d(0, 50%, 0);
  }

  65% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  70% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(20px, 20px, 0);
            transform: translate3d(20px, 20px, 0);
  }
}

.is-animated--fade-then-slide--T-BL {
  -webkit-animation-name: fade-then-slide--T-BL;
       -o-animation-name: fade-then-slide--T-BL;
          animation-name: fade-then-slide--T-BL;
}

.is-animated--fade-then-slide--T-BR {
  -webkit-animation-name: fade-then-slide--T-BR;
       -o-animation-name: fade-then-slide--T-BR;
          animation-name: fade-then-slide--T-BR;
}

/**
 * Slide In
 */

@-webkit-keyframes slide-in--U {
  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);
  }
}

@-o-keyframes slide-in--U {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slide-in--U {
  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);
  }
}

@-webkit-keyframes slide-in--D {
  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);
  }
}

@-o-keyframes slide-in--D {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slide-in--D {
  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);
  }
}

@-webkit-keyframes slide-in--L {
  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);
  }
}

@-o-keyframes slide-in--L {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slide-in--L {
  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);
  }
}

@-webkit-keyframes slide-in--R {
  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);
  }
}

@-o-keyframes slide-in--R {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slide-in--R {
  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);
  }
}

.is-animated--slide-in--U {
  -webkit-animation-name: slide-in--U;
       -o-animation-name: slide-in--U;
          animation-name: slide-in--U;
}

.is-animated--slide-in--D {
  -webkit-animation-name: slide-in--D;
       -o-animation-name: slide-in--D;
          animation-name: slide-in--D;
}

.is-animated--slide-in--L {
  -webkit-animation-name: slide-in--L;
       -o-animation-name: slide-in--L;
          animation-name: slide-in--L;
}

.is-animated--slide-in--R {
  -webkit-animation-name: slide-in--R;
       -o-animation-name: slide-in--R;
          animation-name: slide-in--R;
}

/**
 * Engine Animations
 */

@-webkit-keyframes anim-wrap {
  0% {
    width: 376px;
    height: 376px;
    opacity: 0;
  }

  100% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
}

@-o-keyframes anim-wrap {
  0% {
    width: 376px;
    height: 376px;
    opacity: 0;
  }

  100% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
}

@keyframes anim-wrap {
  0% {
    width: 376px;
    height: 376px;
    opacity: 0;
  }

  100% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
}

@media (max-width: 1100px) {
@-webkit-keyframes anim-wrap {
    0% {
      width: 345px;
      height: 345px;
      opacity: 0;
    }

    100% {
      width: 100%;
      height: 100%;
      opacity: 1;
    }
}
@-o-keyframes anim-wrap {
    0% {
      width: 345px;
      height: 345px;
      opacity: 0;
    }

    100% {
      width: 100%;
      height: 100%;
      opacity: 1;
    }
}
@keyframes anim-wrap {
    0% {
      width: 345px;
      height: 345px;
      opacity: 0;
    }

    100% {
      width: 100%;
      height: 100%;
      opacity: 1;
    }
}
}

@media (max-width: 850px) {
@-webkit-keyframes anim-wrap {
    0% {
      width: 275px;
      height: 275px;
      opacity: 0;
    }

    100% {
      width: 100%;
      height: 100%;
      opacity: 1;
    }
}
@-o-keyframes anim-wrap {
    0% {
      width: 275px;
      height: 275px;
      opacity: 0;
    }

    100% {
      width: 100%;
      height: 100%;
      opacity: 1;
    }
}
@keyframes anim-wrap {
    0% {
      width: 275px;
      height: 275px;
      opacity: 0;
    }

    100% {
      width: 100%;
      height: 100%;
      opacity: 1;
    }
}
}

@-webkit-keyframes slide-TL-back {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  40% {
    -webkit-transform: translate(-20px, -20px);
            transform: translate(-20px, -20px);
  }

  80% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-o-keyframes slide-TL-back {
  0% {
    -o-transform: translate(0, 0);
       transform: translate(0, 0);
  }

  40% {
    -o-transform: translate(-20px, -20px);
       transform: translate(-20px, -20px);
  }

  80% {
    -o-transform: translate(0, 0);
       transform: translate(0, 0);
  }

  100% {
    -o-transform: translate(0, 0);
       transform: translate(0, 0);
  }
}

@keyframes slide-TL-back {
  0% {
    -webkit-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  40% {
    -webkit-transform: translate(-20px, -20px);
         -o-transform: translate(-20px, -20px);
            transform: translate(-20px, -20px);
  }

  80% {
    -webkit-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes slide-BR-back {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  40% {
    -webkit-transform: translate(20px, 20px);
            transform: translate(20px, 20px);
  }

  80% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-o-keyframes slide-BR-back {
  0% {
    -o-transform: translate(0, 0);
       transform: translate(0, 0);
  }

  40% {
    -o-transform: translate(20px, 20px);
       transform: translate(20px, 20px);
  }

  80% {
    -o-transform: translate(0, 0);
       transform: translate(0, 0);
  }

  100% {
    -o-transform: translate(0, 0);
       transform: translate(0, 0);
  }
}

@keyframes slide-BR-back {
  0% {
    -webkit-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  40% {
    -webkit-transform: translate(20px, 20px);
         -o-transform: translate(20px, 20px);
            transform: translate(20px, 20px);
  }

  80% {
    -webkit-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes slide-BL-back {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  40% {
    -webkit-transform: translate(-20px, 20px);
            transform: translate(-20px, 20px);
  }

  80% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-o-keyframes slide-BL-back {
  0% {
    -o-transform: translate(0, 0);
       transform: translate(0, 0);
  }

  40% {
    -o-transform: translate(-20px, 20px);
       transform: translate(-20px, 20px);
  }

  80% {
    -o-transform: translate(0, 0);
       transform: translate(0, 0);
  }

  100% {
    -o-transform: translate(0, 0);
       transform: translate(0, 0);
  }
}

@keyframes slide-BL-back {
  0% {
    -webkit-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  40% {
    -webkit-transform: translate(-20px, 20px);
         -o-transform: translate(-20px, 20px);
            transform: translate(-20px, 20px);
  }

  80% {
    -webkit-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes grow {
  from {
    -webkit-transform: scale(1, -1);
         -o-transform: scale(1, -1);
            transform: scale(1, -1);
  }

  to {
    -webkit-transform: scale(1, 1);
         -o-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.is-animated--anim-wrap {
  -webkit-animation-name: anim-wrap;
       -o-animation-name: anim-wrap;
          animation-name: anim-wrap;
  -webkit-animation-delay: 500ms;
       -o-animation-delay: 500ms;
          animation-delay: 500ms;
}

@media (max-width: 700px) {
  .is-animated--anim-wrap {
    -webkit-animation: none;
         -o-animation: none;
            animation: none;
  }
}

.is-animated--item-grow {
  -webkit-animation-name: grow;
       -o-animation-name: grow;
          animation-name: grow;
}

.is-animated--item-slide-TL-back {
  -webkit-animation-name: slide-TL-back;
       -o-animation-name: slide-TL-back;
          animation-name: slide-TL-back;
  -webkit-animation-duration: 1.5s;
       -o-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.is-animated--item-slide-BR-back {
  -webkit-animation-name: slide-BR-back;
       -o-animation-name: slide-BR-back;
          animation-name: slide-BR-back;
  -webkit-animation-duration: 1.5s;
       -o-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.is-animated--item-slide-BL-back {
  -webkit-animation-name: slide-BL-back;
       -o-animation-name: slide-BL-back;
          animation-name: slide-BL-back;
  -webkit-animation-duration: 1.5s;
       -o-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.lazyload,
.lazyloading {
  opacity: 0;
  -webkit-transform: translate(0, 25px);
       -o-transform: translate(0, 25px);
          transform: translate(0, 25px);
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.lazyloaded {
  opacity: 1;
  -webkit-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}

/* ------------------------------------ *\
    $COLOR MODIFIERS
\* ------------------------------------ */

/**
 * Text Colors
 */

.u-color--black,
.u-color--black a {
  color: #000;
}

.u-color--gray,
.u-color--gray a {
  color: #939598;
}

.u-color--gray--light,
.u-color--gray--light a {
  color: #f0f0f0;
}

.u-color--white,
.u-color--white a {
  color: #fff !important;
}

/**
 * Background Colors
 */

.u-background-color--none {
  background: none;
}

.u-background-color--black {
  background-color: #000;
}

.u-background-color--gray {
  background-color: #939598;
}

.u-background-color--gray--light {
  background-color: #f0f0f0;
}

.u-background-color--white {
  background-color: #fff;
}

/**
 * SVG Fill Colors
 */

.u-path-fill--black path {
  fill: #000;
}

.u-path-fill--gray path {
  fill: #939598;
}

.u-path-fill--white path {
  fill: #fff;
}

/* ------------------------------------ *\
    $DISPLAY STATES
\* ------------------------------------ */

/**
 * Display Classes
 */

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

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

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

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

.u-align-items--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-flex-directon--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 550px) {
  .u-hide-until--s {
    display: none;
  }
}

@media (max-width: 700px) {
  .u-hide-until--m {
    display: none;
  }
}

@media (max-width: 850px) {
  .u-hide-until--l {
    display: none;
  }
}

@media (max-width: 1100px) {
  .u-hide-until--xl {
    display: none;
  }
}

@media (min-width: 551px) {
  .u-hide-after--s {
    display: none;
  }
}

@media (min-width: 701px) {
  .u-hide-after--m {
    display: none;
  }
}

@media (min-width: 851px) {
  .u-hide-after--l {
    display: none;
  }
}

@media (min-width: 1101px) {
  .u-hide-after--xl {
    display: none;
  }
}

/* ------------------------------------ *\
    $SPACING
\* ------------------------------------ */

.u-spacing > * + * {
  margin-top: 20px;
}

.u-padding {
  padding: 20px;
}

.u-space {
  margin: 20px;
}

.u-padding--top {
  padding-top: 20px;
}

.u-space--top {
  margin-top: 20px;
}

.u-padding--bottom {
  padding-bottom: 20px;
}

.u-space--bottom {
  margin-bottom: 20px;
}

.u-padding--left {
  padding-left: 20px;
}

.u-space--left {
  margin-left: 20px;
}

.u-padding--right {
  padding-right: 20px;
}

.u-space--right {
  margin-right: 20px;
}

.u-spacing--quarter > * + * {
  margin-top: 5px;
}

.u-padding--quarter {
  padding: 5px;
}

.u-space--quarter {
  margin: 5px;
}

.u-padding--quarter--top {
  padding-top: 5px;
}

.u-space--quarter--top {
  margin-top: 5px;
}

.u-padding--quarter--bottom {
  padding-bottom: 5px;
}

.u-space--quarter--bottom {
  margin-bottom: 5px;
}

.u-padding--quarter--left {
  padding-left: 5px;
}

.u-space--quarter--left {
  margin-left: 5px;
}

.u-padding--quarter--right {
  padding-right: 5px;
}

.u-space--quarter--right {
  margin-right: 5px;
}

.u-spacing--half > * + * {
  margin-top: 10px;
}

.u-padding--half {
  padding: 10px;
}

.u-space--half {
  margin: 10px;
}

.u-padding--half--top {
  padding-top: 10px;
}

.u-space--half--top {
  margin-top: 10px;
}

.u-padding--half--bottom {
  padding-bottom: 10px;
}

.u-space--half--bottom {
  margin-bottom: 10px;
}

.u-padding--half--left {
  padding-left: 10px;
}

.u-space--half--left {
  margin-left: 10px;
}

.u-padding--half--right {
  padding-right: 10px;
}

.u-space--half--right {
  margin-right: 10px;
}

.u-spacing--and-half > * + * {
  margin-top: 30px;
}

.u-padding--and-half {
  padding: 30px;
}

.u-space--and-half {
  margin: 30px;
}

.u-padding--and-half--top {
  padding-top: 30px;
}

.u-space--and-half--top {
  margin-top: 30px;
}

.u-padding--and-half--bottom {
  padding-bottom: 30px;
}

.u-space--and-half--bottom {
  margin-bottom: 30px;
}

.u-padding--and-half--left {
  padding-left: 30px;
}

.u-space--and-half--left {
  margin-left: 30px;
}

.u-padding--and-half--right {
  padding-right: 30px;
}

.u-space--and-half--right {
  margin-right: 30px;
}

.u-spacing--double > * + * {
  margin-top: 40px;
}

.u-padding--double {
  padding: 40px;
}

.u-space--double {
  margin: 40px;
}

.u-padding--double--top {
  padding-top: 40px;
}

.u-space--double--top {
  margin-top: 40px;
}

.u-padding--double--bottom {
  padding-bottom: 40px;
}

.u-space--double--bottom {
  margin-bottom: 40px;
}

.u-padding--double--left {
  padding-left: 40px;
}

.u-space--double--left {
  margin-left: 40px;
}

.u-padding--double--right {
  padding-right: 40px;
}

.u-space--double--right {
  margin-right: 40px;
}

.u-spacing--triple > * + * {
  margin-top: 60px;
}

.u-padding--triple {
  padding: 60px;
}

.u-space--triple {
  margin: 60px;
}

.u-padding--triple--top {
  padding-top: 60px;
}

.u-space--triple--top {
  margin-top: 60px;
}

.u-padding--triple--bottom {
  padding-bottom: 60px;
}

.u-space--triple--bottom {
  margin-bottom: 60px;
}

.u-padding--triple--left {
  padding-left: 60px;
}

.u-space--triple--left {
  margin-left: 60px;
}

.u-padding--triple--right {
  padding-right: 60px;
}

.u-space--triple--right {
  margin-right: 60px;
}

.u-spacing--quad > * + * {
  margin-top: 80px;
}

.u-padding--quad {
  padding: 80px;
}

.u-space--quad {
  margin: 80px;
}

.u-padding--quad--top {
  padding-top: 80px;
}

.u-space--quad--top {
  margin-top: 80px;
}

.u-padding--quad--bottom {
  padding-bottom: 80px;
}

.u-space--quad--bottom {
  margin-bottom: 80px;
}

.u-padding--quad--left {
  padding-left: 80px;
}

.u-space--quad--left {
  margin-left: 80px;
}

.u-padding--quad--right {
  padding-right: 80px;
}

.u-space--quad--right {
  margin-right: 80px;
}

.u-spacing--zero > * + * {
  margin-top: 0rem;
}

.u-padding--zero {
  padding: 0rem;
}

.u-space--zero {
  margin: 0rem;
}

.u-padding--zero--top {
  padding-top: 0rem;
}

.u-space--zero--top {
  margin-top: 0rem;
}

.u-padding--zero--bottom {
  padding-bottom: 0rem;
}

.u-space--zero--bottom {
  margin-bottom: 0rem;
}

.u-padding--zero--left {
  padding-left: 0rem;
}

.u-space--zero--left {
  margin-left: 0rem;
}

.u-padding--zero--right {
  padding-right: 0rem;
}

.u-space--zero--right {
  margin-right: 0rem;
}

.u-spacing--left > * + * {
  margin-left: 20px;
}

/* ------------------------------------ *\
    $VENDORS
\* ------------------------------------ */

.swiper {
  width: 1200px;
  height: 100%;
  overflow: initial !important;
}

@media (max-width: 550px) {
  .swiper {
    width: 100%;
    margin-left: 45px;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  width: 44%;
  margin-right: 0 !important;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.swiper-slide > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 375px;
  margin-left: 125px;
}

.swiper-scrollbar {
  position: relative;
  left: 21%;
  bottom: -19px;
  z-index: 259;
  height: 9px !important;
  width: 65%;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 2'%3E%3Crect width='0.1' height='10' fill='rgb(147, 149, 152)'/%3E%3C/svg%3E") !important;
  margin-top: 30px;
}

@media (max-width: 550px) {
  .swiper-scrollbar {
    display: none !important;
    width: 51%;
    bottom: -46px !important;
    margin-left: 6%;
    height: 13px !important;
  }
}

.swiper-scrollbar .swiper-scrollbar-drag {
  background: #939598;
}

@media (max-width: 550px) {
  .swiper-scrollbar .swiper-scrollbar-drag {
    width: 21% !important;
    margin-left: 0;
  }
}

.swiper-horizontal > .swiper-scrollbar {
  bottom: -11% !important;
}

@media (max-width: 550px) {
  .swiper-horizontal > .swiper-scrollbar {
    width: 100%;
    left: 1%;
    margin-left: 0;
  }
}

/* ------------------------------------ *\
    $TRUMPS
\* ------------------------------------ */

/* ------------------------------------ *\
    $HELPER/TRUMP CLASSES
\* ------------------------------------ */

/**
 * Completely remove from the flow but leave available to screen readers.
 */

.is-vishidden,
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
}

/**
 * Hide elements only present and necessary for js enabled browsers.
 */

.no-js .no-js-hide {
  display: none;
}

.u-full-width {
  width: 100%;
}

.u-reversed-out {
  color: #fff;
}

.u-reversed-out p,
.u-reversed-out h1,
.u-reversed-out h2,
.u-reversed-out h3,
.u-reversed-out h4,
.u-reversed-out h5,
.u-reversed-out h6,
.u-reversed-out h1 a,
.u-reversed-out h2 a,
.u-reversed-out h3 a,
.u-reversed-out h4 a,
.u-reversed-out h5 a,
.u-reversed-out h6 a {
  color: #fff;
}

/**
 * Remove all margins/padding
 */

.u-no-spacing {
  padding: 0;
  margin: 0;
}

/**
 * Active on/off states
 */

.u-active--off {
  display: none;
}

[class*="-is-active"].js-toggle-parent .u-active--on,
[class*="-is-active"].js-toggle .u-active--on {
  display: none;
}

[class*="-is-active"].js-toggle-parent .u-active--off,
[class*="-is-active"].js-toggle .u-active--off {
  display: block;
}

[class*="-is-active"] .u-hide-on-active {
  display: none;
}

/**
 * Breakout content
 */

.u-breakout {
  margin-right: -20px;
  margin-left: -20px;
}

@media (min-width: 1201px) {
  .u-breakout {
    margin-left: -40px;
    margin-right: -40px;
  }
}

/**
 * Justify left/right content
 */

.u-split-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 400px) {
  .u-split-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .u-split-content > * + * {
    margin-bottom: 20px;
  }
}

@media (min-width: 401px) {
  .u-split-content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}


/*# sourceMappingURL=main.css.map*/