@charset "UTF-8";
/**
 * MASTER.SCSS
 *
 * @Project     : Project Name
 * @Author      : AuthorName [author.name@nvinteractive.com]
 *
 */
@viewport {
  width: device-width;
  zoom: 1;
}
/**
 * 1. SETTINGS
 */
/**
 * SETTINGS.ANIMATIONS
 *
 * @description : Keyframe animations for this site
 *
 */
/**
 * SETTINGS.BASE
 *
 * @description : Key application variables and settings
 *
 */
/**
 * SETTINGS.BREAKPOINTS
 *
 * @description : Define major breakpoints
 *
 */
/**
    e.g.
    .thing {
        background: green;

        @include breakpoint($md){
            background: blue;
        }
    }
*/
/**
 * SETTINGS.COLORS
 *
 * @description : Color variable definitions
 *
 */
/**
 * Main Colours
 */
/**
 * UX/Validation colors
 */
/**
 * SETTINGS.EASING
 *
 * @description : Custom ease functions
 *
 */
/**
 * SETTINGS.GRID
 *
 * @description : Settings used in grid calculations
 *
 */
/**
 * GENERIC.FONT.FINANCIER
 *
 */
@font-face {
  font-family: "Financier";
  font-display: fallback;
  src: url("../fonts/financier/financier-display-web-regular.woff2") format("woff2"), url("../fonts/financier/financier-display-web-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-feature-settings: "kern", "liga", "clig";
}
/**
 * GENERIC.FONT.OPENSANS
 *
 * @description : A default font included for demonstration
 *                Remove this if you're not using it…
 *
 */
@font-face {
  font-family: "Open Sans";
  font-display: fallback;
  /*src: url('../fonts/opensans/opensans-regular-webfont.woff2') format('woff2'), url('../fonts/opensans/opensans-regular-webfont.woff') format('woff');*/
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  font-display: fallback;
  /*src: url('../fonts/opensans/opensans-italic-webfont.woff2') format('woff2'), url('../fonts/opensans/opensans-italic-webfont.woff') format('woff');*/
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans";
  font-display: fallback;
  /*src: url('../fonts/opensans/opensans-bold-webfont.woff2') format('woff2'), url('../fonts/opensans/opensans-bold-webfont.woff') format('woff');*/
  font-weight: bold;
  font-style: normal;
}
/**
 * SETTINGS.FONT.HUMANIST521
 *
 * @description : A default font included for demonstration
 *                Remove this if you're not using it…
 *
*/
@font-face {
  font-family: "Humanist521";
  font-weight: 300;
  font-display: fallback;
  src: url("../fonts/humanist521/39E30A_1_0.eot");
  src: url("../fonts/humanist521/39E30A_1_0.eot?#iefix") format("embedded-opentype"), url("../fonts/humanist521/39E30A_1_0.woff2") format("woff2"), url("../fonts/humanist521/39E30A_1_0.woff") format("woff"), url("../fonts/humanist521/39E30A_1_0.ttf") format("truetype");
}
@font-face {
  font-family: "Humanist521";
  font-weight: 300;
  font-style: italic;
  font-display: fallback;
  src: url("../fonts/humanist521/39E30A_4_0.eot");
  src: url("../fonts/humanist521/39E30A_4_0.eot?#iefix") format("embedded-opentype"), url("../fonts/humanist521/39E30A_4_0.woff2") format("woff2"), url("../fonts/humanist521/39E30A_4_0.woff") format("woff"), url("../fonts/humanist521/39E30A_4_0.ttf") format("truetype");
}
@font-face {
  font-family: "Humanist521";
  font-display: fallback;
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/humanist521/39E30A_0_0.eot");
  src: url("../fonts/humanist521//39E30A_0_0.eot?#iefix") format("embedded-opentype"), url("../fonts/humanist521//39E30A_0_0.woff2") format("woff2"), url("../fonts/humanist521//39E30A_0_0.woff") format("woff"), url("../fonts/humanist521//39E30A_0_0.ttf") format("truetype");
}
@font-face {
  font-family: "Humanist521";
  font-style: italic;
  font-weight: normal;
  font-display: fallback;
  src: url("../fonts/humanist521/39E30A_5_0.eot");
  src: url("../fonts/humanist521/39E30A_5_0.eot?#iefix") format("embedded-opentype"), url("../fonts/humanist521/39E30A_5_0.woff2") format("woff2"), url("../fonts/humanist521/39E30A_5_0.woff") format("woff"), url("../fonts/humanist521/39E30A_5_0.ttf") format("truetype");
}
@font-face {
  font-family: "Humanist521";
  font-weight: 600;
  font-display: fallback;
  src: url("../fonts/humanist521/39E30A_6_0.eot");
  src: url("../fonts/humanist521/39E30A_6_0.eot?#iefix") format("embedded-opentype"), url("../fonts/humanist521/39E30A_6_0.woff2") format("woff2"), url("../fonts/humanist521/39E30A_6_0.woff") format("woff"), url("../fonts/humanist521/39E30A_6_0.ttf") format("truetype");
}
/**
 * SETTINGS.ZINDEX
 *
 * @description : Base level z-index settings
 * Note: z-index is reset when a new stacking context is created, this can be triggered by CSS transforms
 *
 */
/**
 *  2. TOOLS
 */
/**
 * TOOLS.FUNCTIONS
 *
 * @description : Common functions
 *
 */
/**
 * Strip Unit
 *  @desc       : Strips the unit from a value to we can use it for calculations
 *  @source     : https://css-tricks.com/snippets/sass/strip-unit-function/
 *  @param      : $num - Number to remove unit from
 *  @return     : Unitless value
 */
/**
 *  REM Calc
 *  @desc      : Converts px values to REMs
 *  @param     : $val - The value to convert (usually passed in px but unit may be omitted)
 *  @param     : $base – Optional parameter, passed if you'd like to calculate with a different base font size
 *  @param     : $base-font-size – The default font size (defined in _settings.base.scss)
 *  @return    : $rems - rem-converted value
 */
/**
 *  Decimal-Round
 *  @desc      : Rounds a floating point number to the nearest whole number
 *  @param     : $number - The number to be rounded. must be unitless.
 */
/**
 *  Decimal-Floor
 *  @desc      : Rounds a floating point number down to the nearest whole number
 */
/**
 * Spacer
 * @desc     : Returns a simple multipled value, converted to rem
 */
/**
 * TOOLS.MIXIN.HEADING-SCALE
 *
 * @description : Generates heading sizes, their line heights and bottom margins from the base font size and a multiplier
 *                Reuseable classes are also generated
 *
 */
/**
 * TOOLS.MIXIN.POSITION
 *
 * @description :  Sets top, right, bottom and left values for an element
 * @note: Pass 'null' as an argument to ensure that value isn't set
 *
 */
/**
 * TOOLS.MIXIN.CLEARFIX
 *
 * @description : Force an element to self-clear floated children
 *
 */
/**
 * TOOLS.MIXIN.BASELINE_GRID
 *
 * @description :  Adds a baseline grid for setting type.
 *                 Used in development only.
 *
 */
/**
 * @param $spacing            Set the desired line height of the grid. Defaults to 20px
 */
/**
 * 3. GENERIC
 */
/**
 * GENERIC.RESET
 *
 * @description :  Include your desired reset here.
 *                 Default is Eric Meyer's reset
 *
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

figure {
  margin: 0;
  padding: 0;
}

/**
 * GENERIC.BOXSIZING
 *
 * @description : Sets global box-sizing
 * @reference   : https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 *
 */
html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/**
 *  4. ELEMENTS
 *  Basic styles for raw HTML elements
 *  No classes here
 */
/**
 * ELEMENTS.BASE
 *
 * @description : Base element styles
 *
 */
html {
  height: 100%;
  background: #ffffff;
  scroll-padding-top: 200px;
}

body {
  min-height: 100%;
}
body.dev_type {
  background-image: linear-gradient(to bottom, #0ff 0, rgba(255, 255, 255, 0) 1px);
  background-repeat: repeat-y;
  background-size: 100% 24px;
}

hr {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: 3em 0;
}

/**
 * ELEMENTS.DISABLED
 *
 * @description : Default styles for disabled elements
 *
 */
.disabled,
*:disabled,
[disabled] {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

/**
 * ELEMENTS.FORMS
 *
 * @description : Core form styles
 *
 */
form {
  width: 100%;
}

label {
  display: inline-block;
}
label.aligned {
  padding: 1em 0;
  border-top: 1px solid transparent;
}

textarea, [type=text],
[type=email],
[type=password],
[type=tel],
[type=search],
[type=url] {
  border: 1px solid #000000;
  border-radius: 0;
  display: inline-block;
  font-size: inherit;
  padding: 1em 1.5em;
  width: 100%;
}
textarea:focus, [type=text]:focus,
[type=email]:focus,
[type=password]:focus,
[type=tel]:focus,
[type=search]:focus,
[type=url]:focus {
  border-color: #000000;
  outline: none;
}
textarea::placeholder, [type=text]::placeholder,
[type=email]::placeholder,
[type=password]::placeholder,
[type=tel]::placeholder,
[type=search]::placeholder,
[type=url]::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

textarea {
  min-height: 10em;
  resize: vertical;
}

[type=submit],
button {
  appearance: none;
  border-radius: 0;
  border: 0;
  display: inline-block;
  padding: 0;
}

/**
 * ELEMENTS.HIDDEN
 *
 * @description : Default styles for hidden elements
 *
 */
[hidden] {
  display: none !important;
}

/**
 * ELEMENTS.IMAGES
 *
 * @description : Basic image styles
 *
 */
/**
 *  Set images for responsive sizing
 */
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img[data-fade-in-on-load] {
  opacity: 0;
  transition: opacity 0.2s;
}
img[data-has-loaded] {
  opacity: 1;
}

/**
 * ELEMENTS.TYPE
 *
 * @description : Basic typographical styles
 *
 */
body {
  color: #000;
  font-family: "Open Sans", "Segoe UI", "SegoeUI", "Segoe WP", "Helvetica Neue", "Helvetica", "Tahoma", "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  font-family: "Financier", Times, "Times New Roman", serif;
  margin: 0;
}

/**
 * Optional: Generate headings using a scale based on the body font size.
 * Also matching classes using SI prefixes are also generated. Done at the element level to keep specificity low.
 * See https://www.modularscale.com for common scale multipliers
 * and https://csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css/ for more info on using classes for headings
 *
 * Use this function to generate heading metrics, or declare them manually below
 * @include headingScale($base-font-size, 1.25);
 */
p {
  margin: 0 0 1.5em 0;
}

a {
  text-decoration-skip-ink: auto;
  text-decoration: none;
}

/**
 *  5. OBJECTS
 *  These are repeating visual/structural patterns with no 'design' added
 *  Must be built with classes only
 */
/**
 * OBJECTS.GRID
 *
 * @description : The NV Grid
 * @settings    : See /1.settings/_settings.grid.scss
 *
 */
/** -------------------------------------------------------
 *  GRID WIDTH CALCULATOR
 */
/**
 * General Styles
 */
.b {
  position: relative;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.b-s {
  max-width: 61.25rem;
}

.b-c {
  max-width: 1300px;
}

.b-cs {
  max-width: 1200px;
}

/**
 *  Helper classes for non-grid items so they fit nicely within the grid
 */
.ng-p {
  padding-left: 2.3333333333%;
  padding-right: 2.3333333333%;
}

.ng-pr {
  padding-left: 0;
  padding-right: 2.3333333333%;
}

.ng-pl {
  padding-left: 2.3333333333%;
  padding-right: 0;
}

.ng-m {
  margin-left: 2.3333333333%;
  margin-right: 2.3333333333%;
}

.ng-mr {
  margin-left: 0;
  margin-right: 2.3333333333%;
}

.ng-ml {
  margin-left: 2.3333333333%;
  margin-right: 0;
}

/**
 * The Grid
 */
.g {
  letter-spacing: -0.31em;
  *letter-spacing: normal;
  *word-spacing: -0.43em;
  text-rendering: optimizespeed;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.no-flexbox .g {
  display: table-cell;
  float: left;
  width: 100%;
}
.g-m {
  margin: 0 -2.3333333333%;
}

/** -------------------------
 *  GRID ITEMS
 */
.gi,
[class^=gi-] {
  display: inline-block;
  letter-spacing: normal;
  text-rendering: auto;
  vertical-align: top;
  width: 100%;
}

.gi-p {
  padding-left: 2.3333333333%;
  padding-right: 2.3333333333%;
}

.gi-pr {
  padding-right: 2.3333333333%;
}

.gi-pl {
  padding-left: 2.3333333333%;
}

.gi-m {
  margin-left: 2.3333333333%;
  margin-right: 2.3333333333%;
}

.gi-ml {
  margin-left: 2.3333333333%;
}

.gi-mr {
  margin-right: 2.3333333333%;
}

.g-c {
  justify-content: center;
}

.g-vam {
  align-items: center;
}

.g-vc,
.g-vam .gi,
.g-vam .gi-p,
.g-vam .gi-pl,
.g-vam .gi-pr {
  align-self: center;
  vertical-align: middle;
}

.g-vab {
  align-items: flex-end;
}

.g-vab .gi,
.g-vab .gi-p,
.g-vab .gi-pl,
.g-vab .gi-pr,
.gi-b {
  align-self: flex-end;
  vertical-align: bottom;
}

.gi-1 {
  width: 8.33333333%;
}

.gi-m.gi-1 {
  width: 3.6666666633%;
}

.gi-mr.gi-1,
.gi-mr.gi-1 {
  width: 5.9999999967%;
}

.gi-in-1 {
  margin-left: 8.33333333%;
}

.gi-m.gi-in-1,
.gi-ml.gi-in-1 {
  margin-left: 10.6666666633%;
}

.gi-2 {
  width: 16.66666666%;
}

.gi-m.gi-2 {
  width: 11.9999999933%;
}

.gi-mr.gi-2,
.gi-mr.gi-2 {
  width: 14.3333333267%;
}

.gi-in-2 {
  margin-left: 16.66666666%;
}

.gi-m.gi-in-2,
.gi-ml.gi-in-2 {
  margin-left: 18.9999999933%;
}

.gi-3 {
  width: 25%;
}

.gi-m.gi-3 {
  width: 20.3333333333%;
}

.gi-mr.gi-3,
.gi-mr.gi-3 {
  width: 22.6666666667%;
}

.gi-in-3 {
  margin-left: 25%;
}

.gi-m.gi-in-3,
.gi-ml.gi-in-3 {
  margin-left: 27.3333333333%;
}

.gi-4 {
  width: 33.33333333%;
}

.gi-m.gi-4 {
  width: 28.6666666633%;
}

.gi-mr.gi-4,
.gi-mr.gi-4 {
  width: 30.9999999967%;
}

.gi-in-4 {
  margin-left: 33.33333333%;
}

.gi-m.gi-in-4,
.gi-ml.gi-in-4 {
  margin-left: 35.6666666633%;
}

.gi-5 {
  width: 41.66666666%;
}

.gi-m.gi-5 {
  width: 36.9999999933%;
}

.gi-mr.gi-5,
.gi-mr.gi-5 {
  width: 39.3333333267%;
}

.gi-in-5 {
  margin-left: 41.66666666%;
}

.gi-m.gi-in-5,
.gi-ml.gi-in-5 {
  margin-left: 43.9999999933%;
}

.gi-6 {
  width: 50%;
}

.gi-m.gi-6 {
  width: 45.3333333333%;
}

.gi-mr.gi-6,
.gi-mr.gi-6 {
  width: 47.6666666667%;
}

.gi-in-6 {
  margin-left: 50%;
}

.gi-m.gi-in-6,
.gi-ml.gi-in-6 {
  margin-left: 52.3333333333%;
}

.gi-7 {
  width: 58.33333333%;
}

.gi-m.gi-7 {
  width: 53.6666666633%;
}

.gi-mr.gi-7,
.gi-mr.gi-7 {
  width: 55.9999999967%;
}

.gi-in-7 {
  margin-left: 58.33333333%;
}

.gi-m.gi-in-7,
.gi-ml.gi-in-7 {
  margin-left: 60.6666666633%;
}

.gi-8 {
  width: 66.66666666%;
}

.gi-m.gi-8 {
  width: 61.9999999933%;
}

.gi-mr.gi-8,
.gi-mr.gi-8 {
  width: 64.3333333267%;
}

.gi-in-8 {
  margin-left: 66.66666666%;
}

.gi-m.gi-in-8,
.gi-ml.gi-in-8 {
  margin-left: 68.9999999933%;
}

.gi-9 {
  width: 75%;
}

.gi-m.gi-9 {
  width: 70.3333333333%;
}

.gi-mr.gi-9,
.gi-mr.gi-9 {
  width: 72.6666666667%;
}

.gi-in-9 {
  margin-left: 75%;
}

.gi-m.gi-in-9,
.gi-ml.gi-in-9 {
  margin-left: 77.3333333333%;
}

.gi-10 {
  width: 83.33333333%;
}

.gi-m.gi-10 {
  width: 78.6666666633%;
}

.gi-mr.gi-10,
.gi-mr.gi-10 {
  width: 80.9999999967%;
}

.gi-in-10 {
  margin-left: 83.33333333%;
}

.gi-m.gi-in-10,
.gi-ml.gi-in-10 {
  margin-left: 85.6666666633%;
}

.gi-11 {
  width: 91.66666666%;
}

.gi-m.gi-11 {
  width: 86.9999999933%;
}

.gi-mr.gi-11,
.gi-mr.gi-11 {
  width: 89.3333333267%;
}

.gi-in-11 {
  margin-left: 91.66666666%;
}

.gi-m.gi-in-11,
.gi-ml.gi-in-11 {
  margin-left: 93.9999999933%;
}

.gi-12 {
  width: 100%;
}

.gi-m.gi-12 {
  width: 95.3333333333%;
}

.gi-mr.gi-12,
.gi-mr.gi-12 {
  width: 97.6666666667%;
}

.gi-in-12 {
  margin-left: 100%;
}

.gi-m.gi-in-12,
.gi-ml.gi-in-12 {
  margin-left: 102.3333333333%;
}

@media (min-width: 30em) {
  .gi-sm-1 {
    width: 8.33333333%;
  }
  .gi-m.gi-sm-1 {
    width: 3.6666666633%;
  }
  .gi-ml.gi-sm-1,
  .gi-mr.gi-sm-1 {
    width: 5.9999999967%;
  }
  .gi-sm-in-1 {
    margin-left: 8.33333333%;
  }
  .gi-m.gi-sm-in-1,
  .gi-ml.gi-sm-in-1 {
    margin-left: 10.6666666633%;
  }
  .gi-sm-2 {
    width: 16.66666666%;
  }
  .gi-m.gi-sm-2 {
    width: 11.9999999933%;
  }
  .gi-ml.gi-sm-2,
  .gi-mr.gi-sm-2 {
    width: 14.3333333267%;
  }
  .gi-sm-in-2 {
    margin-left: 16.66666666%;
  }
  .gi-m.gi-sm-in-2,
  .gi-ml.gi-sm-in-2 {
    margin-left: 18.9999999933%;
  }
  .gi-sm-3 {
    width: 25%;
  }
  .gi-m.gi-sm-3 {
    width: 20.3333333333%;
  }
  .gi-ml.gi-sm-3,
  .gi-mr.gi-sm-3 {
    width: 22.6666666667%;
  }
  .gi-sm-in-3 {
    margin-left: 25%;
  }
  .gi-m.gi-sm-in-3,
  .gi-ml.gi-sm-in-3 {
    margin-left: 27.3333333333%;
  }
  .gi-sm-4 {
    width: 33.33333333%;
  }
  .gi-m.gi-sm-4 {
    width: 28.6666666633%;
  }
  .gi-ml.gi-sm-4,
  .gi-mr.gi-sm-4 {
    width: 30.9999999967%;
  }
  .gi-sm-in-4 {
    margin-left: 33.33333333%;
  }
  .gi-m.gi-sm-in-4,
  .gi-ml.gi-sm-in-4 {
    margin-left: 35.6666666633%;
  }
  .gi-sm-5 {
    width: 41.66666666%;
  }
  .gi-m.gi-sm-5 {
    width: 36.9999999933%;
  }
  .gi-ml.gi-sm-5,
  .gi-mr.gi-sm-5 {
    width: 39.3333333267%;
  }
  .gi-sm-in-5 {
    margin-left: 41.66666666%;
  }
  .gi-m.gi-sm-in-5,
  .gi-ml.gi-sm-in-5 {
    margin-left: 43.9999999933%;
  }
  .gi-sm-6 {
    width: 50%;
  }
  .gi-m.gi-sm-6 {
    width: 45.3333333333%;
  }
  .gi-ml.gi-sm-6,
  .gi-mr.gi-sm-6 {
    width: 47.6666666667%;
  }
  .gi-sm-in-6 {
    margin-left: 50%;
  }
  .gi-m.gi-sm-in-6,
  .gi-ml.gi-sm-in-6 {
    margin-left: 52.3333333333%;
  }
  .gi-sm-7 {
    width: 58.33333333%;
  }
  .gi-m.gi-sm-7 {
    width: 53.6666666633%;
  }
  .gi-ml.gi-sm-7,
  .gi-mr.gi-sm-7 {
    width: 55.9999999967%;
  }
  .gi-sm-in-7 {
    margin-left: 58.33333333%;
  }
  .gi-m.gi-sm-in-7,
  .gi-ml.gi-sm-in-7 {
    margin-left: 60.6666666633%;
  }
  .gi-sm-8 {
    width: 66.66666666%;
  }
  .gi-m.gi-sm-8 {
    width: 61.9999999933%;
  }
  .gi-ml.gi-sm-8,
  .gi-mr.gi-sm-8 {
    width: 64.3333333267%;
  }
  .gi-sm-in-8 {
    margin-left: 66.66666666%;
  }
  .gi-m.gi-sm-in-8,
  .gi-ml.gi-sm-in-8 {
    margin-left: 68.9999999933%;
  }
  .gi-sm-9 {
    width: 75%;
  }
  .gi-m.gi-sm-9 {
    width: 70.3333333333%;
  }
  .gi-ml.gi-sm-9,
  .gi-mr.gi-sm-9 {
    width: 72.6666666667%;
  }
  .gi-sm-in-9 {
    margin-left: 75%;
  }
  .gi-m.gi-sm-in-9,
  .gi-ml.gi-sm-in-9 {
    margin-left: 77.3333333333%;
  }
  .gi-sm-10 {
    width: 83.33333333%;
  }
  .gi-m.gi-sm-10 {
    width: 78.6666666633%;
  }
  .gi-ml.gi-sm-10,
  .gi-mr.gi-sm-10 {
    width: 80.9999999967%;
  }
  .gi-sm-in-10 {
    margin-left: 83.33333333%;
  }
  .gi-m.gi-sm-in-10,
  .gi-ml.gi-sm-in-10 {
    margin-left: 85.6666666633%;
  }
  .gi-sm-11 {
    width: 91.66666666%;
  }
  .gi-m.gi-sm-11 {
    width: 86.9999999933%;
  }
  .gi-ml.gi-sm-11,
  .gi-mr.gi-sm-11 {
    width: 89.3333333267%;
  }
  .gi-sm-in-11 {
    margin-left: 91.66666666%;
  }
  .gi-m.gi-sm-in-11,
  .gi-ml.gi-sm-in-11 {
    margin-left: 93.9999999933%;
  }
  .gi-sm-12 {
    width: 100%;
  }
  .gi-m.gi-sm-12 {
    width: 95.3333333333%;
  }
  .gi-ml.gi-sm-12,
  .gi-mr.gi-sm-12 {
    width: 97.6666666667%;
  }
  .gi-sm-in-12 {
    margin-left: 100%;
  }
  .gi-m.gi-sm-in-12,
  .gi-ml.gi-sm-in-12 {
    margin-left: 102.3333333333%;
  }
  .gi-sm-pr {
    padding-left: 0;
    padding-right: 2.3333333333%;
  }
  .gi-sm-pl {
    padding-left: 2.3333333333%;
    padding-right: 0;
  }
}
@media (min-width: 48em) {
  .gi-md-1 {
    width: 8.33333333%;
  }
  .gi-m.gi-md-1 {
    width: 3.6666666633%;
  }
  .gi-ml.gi-md-1,
  .gi-mr.gi-md-1 {
    width: 5.9999999967%;
  }
  .gi-md-in-1 {
    margin-left: 8.33333333%;
  }
  .gi-m.gi-md-in-1,
  .gi-ml.gi-md-in-1 {
    margin-left: 10.6666666633%;
  }
  .gi-md-2 {
    width: 16.66666666%;
  }
  .gi-m.gi-md-2 {
    width: 11.9999999933%;
  }
  .gi-ml.gi-md-2,
  .gi-mr.gi-md-2 {
    width: 14.3333333267%;
  }
  .gi-md-in-2 {
    margin-left: 16.66666666%;
  }
  .gi-m.gi-md-in-2,
  .gi-ml.gi-md-in-2 {
    margin-left: 18.9999999933%;
  }
  .gi-md-3 {
    width: 25%;
  }
  .gi-m.gi-md-3 {
    width: 20.3333333333%;
  }
  .gi-ml.gi-md-3,
  .gi-mr.gi-md-3 {
    width: 22.6666666667%;
  }
  .gi-md-in-3 {
    margin-left: 25%;
  }
  .gi-m.gi-md-in-3,
  .gi-ml.gi-md-in-3 {
    margin-left: 27.3333333333%;
  }
  .gi-md-4 {
    width: 33.33333333%;
  }
  .gi-m.gi-md-4 {
    width: 28.6666666633%;
  }
  .gi-ml.gi-md-4,
  .gi-mr.gi-md-4 {
    width: 30.9999999967%;
  }
  .gi-md-in-4 {
    margin-left: 33.33333333%;
  }
  .gi-m.gi-md-in-4,
  .gi-ml.gi-md-in-4 {
    margin-left: 35.6666666633%;
  }
  .gi-md-5 {
    width: 41.66666666%;
  }
  .gi-m.gi-md-5 {
    width: 36.9999999933%;
  }
  .gi-ml.gi-md-5,
  .gi-mr.gi-md-5 {
    width: 39.3333333267%;
  }
  .gi-md-in-5 {
    margin-left: 41.66666666%;
  }
  .gi-m.gi-md-in-5,
  .gi-ml.gi-md-in-5 {
    margin-left: 43.9999999933%;
  }
  .gi-md-6 {
    width: 50%;
  }
  .gi-m.gi-md-6 {
    width: 45.3333333333%;
  }
  .gi-ml.gi-md-6,
  .gi-mr.gi-md-6 {
    width: 47.6666666667%;
  }
  .gi-md-in-6 {
    margin-left: 50%;
  }
  .gi-m.gi-md-in-6,
  .gi-ml.gi-md-in-6 {
    margin-left: 52.3333333333%;
  }
  .gi-md-7 {
    width: 58.33333333%;
  }
  .gi-m.gi-md-7 {
    width: 53.6666666633%;
  }
  .gi-ml.gi-md-7,
  .gi-mr.gi-md-7 {
    width: 55.9999999967%;
  }
  .gi-md-in-7 {
    margin-left: 58.33333333%;
  }
  .gi-m.gi-md-in-7,
  .gi-ml.gi-md-in-7 {
    margin-left: 60.6666666633%;
  }
  .gi-md-8 {
    width: 66.66666666%;
  }
  .gi-m.gi-md-8 {
    width: 61.9999999933%;
  }
  .gi-ml.gi-md-8,
  .gi-mr.gi-md-8 {
    width: 64.3333333267%;
  }
  .gi-md-in-8 {
    margin-left: 66.66666666%;
  }
  .gi-m.gi-md-in-8,
  .gi-ml.gi-md-in-8 {
    margin-left: 68.9999999933%;
  }
  .gi-md-9 {
    width: 75%;
  }
  .gi-m.gi-md-9 {
    width: 70.3333333333%;
  }
  .gi-ml.gi-md-9,
  .gi-mr.gi-md-9 {
    width: 72.6666666667%;
  }
  .gi-md-in-9 {
    margin-left: 75%;
  }
  .gi-m.gi-md-in-9,
  .gi-ml.gi-md-in-9 {
    margin-left: 77.3333333333%;
  }
  .gi-md-10 {
    width: 83.33333333%;
  }
  .gi-m.gi-md-10 {
    width: 78.6666666633%;
  }
  .gi-ml.gi-md-10,
  .gi-mr.gi-md-10 {
    width: 80.9999999967%;
  }
  .gi-md-in-10 {
    margin-left: 83.33333333%;
  }
  .gi-m.gi-md-in-10,
  .gi-ml.gi-md-in-10 {
    margin-left: 85.6666666633%;
  }
  .gi-md-11 {
    width: 91.66666666%;
  }
  .gi-m.gi-md-11 {
    width: 86.9999999933%;
  }
  .gi-ml.gi-md-11,
  .gi-mr.gi-md-11 {
    width: 89.3333333267%;
  }
  .gi-md-in-11 {
    margin-left: 91.66666666%;
  }
  .gi-m.gi-md-in-11,
  .gi-ml.gi-md-in-11 {
    margin-left: 93.9999999933%;
  }
  .gi-md-12 {
    width: 100%;
  }
  .gi-m.gi-md-12 {
    width: 95.3333333333%;
  }
  .gi-ml.gi-md-12,
  .gi-mr.gi-md-12 {
    width: 97.6666666667%;
  }
  .gi-md-in-12 {
    margin-left: 100%;
  }
  .gi-m.gi-md-in-12,
  .gi-ml.gi-md-in-12 {
    margin-left: 102.3333333333%;
  }
  .gi-md-pr {
    padding-left: 0;
    padding-right: 2.3333333333%;
  }
  .gi-md-pl {
    padding-left: 2.3333333333%;
    padding-right: 0;
  }
}
@media (min-width: 64em) {
  .gi-lg-1 {
    width: 8.33333333%;
  }
  .gi-m.gi-lg-1 {
    width: 3.6666666633%;
  }
  .gi-ml.gi-lg-1,
  .gi-mr.gi-lg-1 {
    width: 5.9999999967%;
  }
  .gi-lg-in-1 {
    margin-left: 8.33333333%;
  }
  .gi-m.gi-lg-in-1,
  .gi-ml.gi-lg-in-1 {
    margin-left: 10.6666666633%;
  }
  .gi-lg-2 {
    width: 16.66666666%;
  }
  .gi-m.gi-lg-2 {
    width: 11.9999999933%;
  }
  .gi-ml.gi-lg-2,
  .gi-mr.gi-lg-2 {
    width: 14.3333333267%;
  }
  .gi-lg-in-2 {
    margin-left: 16.66666666%;
  }
  .gi-m.gi-lg-in-2,
  .gi-ml.gi-lg-in-2 {
    margin-left: 18.9999999933%;
  }
  .gi-lg-3 {
    width: 25%;
  }
  .gi-m.gi-lg-3 {
    width: 20.3333333333%;
  }
  .gi-ml.gi-lg-3,
  .gi-mr.gi-lg-3 {
    width: 22.6666666667%;
  }
  .gi-lg-in-3 {
    margin-left: 25%;
  }
  .gi-m.gi-lg-in-3,
  .gi-ml.gi-lg-in-3 {
    margin-left: 27.3333333333%;
  }
  .gi-lg-4 {
    width: 33.33333333%;
  }
  .gi-m.gi-lg-4 {
    width: 28.6666666633%;
  }
  .gi-ml.gi-lg-4,
  .gi-mr.gi-lg-4 {
    width: 30.9999999967%;
  }
  .gi-lg-in-4 {
    margin-left: 33.33333333%;
  }
  .gi-m.gi-lg-in-4,
  .gi-ml.gi-lg-in-4 {
    margin-left: 35.6666666633%;
  }
  .gi-lg-5 {
    width: 41.66666666%;
  }
  .gi-m.gi-lg-5 {
    width: 36.9999999933%;
  }
  .gi-ml.gi-lg-5,
  .gi-mr.gi-lg-5 {
    width: 39.3333333267%;
  }
  .gi-lg-in-5 {
    margin-left: 41.66666666%;
  }
  .gi-m.gi-lg-in-5,
  .gi-ml.gi-lg-in-5 {
    margin-left: 43.9999999933%;
  }
  .gi-lg-6 {
    width: 50%;
  }
  .gi-m.gi-lg-6 {
    width: 45.3333333333%;
  }
  .gi-ml.gi-lg-6,
  .gi-mr.gi-lg-6 {
    width: 47.6666666667%;
  }
  .gi-lg-in-6 {
    margin-left: 50%;
  }
  .gi-m.gi-lg-in-6,
  .gi-ml.gi-lg-in-6 {
    margin-left: 52.3333333333%;
  }
  .gi-lg-7 {
    width: 58.33333333%;
  }
  .gi-m.gi-lg-7 {
    width: 53.6666666633%;
  }
  .gi-ml.gi-lg-7,
  .gi-mr.gi-lg-7 {
    width: 55.9999999967%;
  }
  .gi-lg-in-7 {
    margin-left: 58.33333333%;
  }
  .gi-m.gi-lg-in-7,
  .gi-ml.gi-lg-in-7 {
    margin-left: 60.6666666633%;
  }
  .gi-lg-8 {
    width: 66.66666666%;
  }
  .gi-m.gi-lg-8 {
    width: 61.9999999933%;
  }
  .gi-ml.gi-lg-8,
  .gi-mr.gi-lg-8 {
    width: 64.3333333267%;
  }
  .gi-lg-in-8 {
    margin-left: 66.66666666%;
  }
  .gi-m.gi-lg-in-8,
  .gi-ml.gi-lg-in-8 {
    margin-left: 68.9999999933%;
  }
  .gi-lg-9 {
    width: 75%;
  }
  .gi-m.gi-lg-9 {
    width: 70.3333333333%;
  }
  .gi-ml.gi-lg-9,
  .gi-mr.gi-lg-9 {
    width: 72.6666666667%;
  }
  .gi-lg-in-9 {
    margin-left: 75%;
  }
  .gi-m.gi-lg-in-9,
  .gi-ml.gi-lg-in-9 {
    margin-left: 77.3333333333%;
  }
  .gi-lg-10 {
    width: 83.33333333%;
  }
  .gi-m.gi-lg-10 {
    width: 78.6666666633%;
  }
  .gi-ml.gi-lg-10,
  .gi-mr.gi-lg-10 {
    width: 80.9999999967%;
  }
  .gi-lg-in-10 {
    margin-left: 83.33333333%;
  }
  .gi-m.gi-lg-in-10,
  .gi-ml.gi-lg-in-10 {
    margin-left: 85.6666666633%;
  }
  .gi-lg-11 {
    width: 91.66666666%;
  }
  .gi-m.gi-lg-11 {
    width: 86.9999999933%;
  }
  .gi-ml.gi-lg-11,
  .gi-mr.gi-lg-11 {
    width: 89.3333333267%;
  }
  .gi-lg-in-11 {
    margin-left: 91.66666666%;
  }
  .gi-m.gi-lg-in-11,
  .gi-ml.gi-lg-in-11 {
    margin-left: 93.9999999933%;
  }
  .gi-lg-12 {
    width: 100%;
  }
  .gi-m.gi-lg-12 {
    width: 95.3333333333%;
  }
  .gi-ml.gi-lg-12,
  .gi-mr.gi-lg-12 {
    width: 97.6666666667%;
  }
  .gi-lg-in-12 {
    margin-left: 100%;
  }
  .gi-m.gi-lg-in-12,
  .gi-ml.gi-lg-in-12 {
    margin-left: 102.3333333333%;
  }
  .gi-lg-pr {
    padding-left: 0;
    padding-right: 2.3333333333%;
  }
  .gi-lg-pl {
    padding-left: 2.3333333333%;
    padding-right: 0;
  }
}
@media (min-width: 90em) {
  .gi-xl-1 {
    width: 8.33333333%;
  }
  .gi-m.gi-xl-1 {
    width: 3.6666666633%;
  }
  .gi-ml.gi-xl-1,
  .gi-mr.gi-xl-1 {
    width: 5.9999999967%;
  }
  .gi-xl-in-1 {
    margin-left: 8.33333333%;
  }
  .gi-m.gi-xl-in-1,
  .gi-ml.gi-xl-in-1 {
    margin-left: 10.6666666633%;
  }
  .gi-xl-2 {
    width: 16.66666666%;
  }
  .gi-m.gi-xl-2 {
    width: 11.9999999933%;
  }
  .gi-ml.gi-xl-2,
  .gi-mr.gi-xl-2 {
    width: 14.3333333267%;
  }
  .gi-xl-in-2 {
    margin-left: 16.66666666%;
  }
  .gi-m.gi-xl-in-2,
  .gi-ml.gi-xl-in-2 {
    margin-left: 18.9999999933%;
  }
  .gi-xl-3 {
    width: 25%;
  }
  .gi-m.gi-xl-3 {
    width: 20.3333333333%;
  }
  .gi-ml.gi-xl-3,
  .gi-mr.gi-xl-3 {
    width: 22.6666666667%;
  }
  .gi-xl-in-3 {
    margin-left: 25%;
  }
  .gi-m.gi-xl-in-3,
  .gi-ml.gi-xl-in-3 {
    margin-left: 27.3333333333%;
  }
  .gi-xl-4 {
    width: 33.33333333%;
  }
  .gi-m.gi-xl-4 {
    width: 28.6666666633%;
  }
  .gi-ml.gi-xl-4,
  .gi-mr.gi-xl-4 {
    width: 30.9999999967%;
  }
  .gi-xl-in-4 {
    margin-left: 33.33333333%;
  }
  .gi-m.gi-xl-in-4,
  .gi-ml.gi-xl-in-4 {
    margin-left: 35.6666666633%;
  }
  .gi-xl-5 {
    width: 41.66666666%;
  }
  .gi-m.gi-xl-5 {
    width: 36.9999999933%;
  }
  .gi-ml.gi-xl-5,
  .gi-mr.gi-xl-5 {
    width: 39.3333333267%;
  }
  .gi-xl-in-5 {
    margin-left: 41.66666666%;
  }
  .gi-m.gi-xl-in-5,
  .gi-ml.gi-xl-in-5 {
    margin-left: 43.9999999933%;
  }
  .gi-xl-6 {
    width: 50%;
  }
  .gi-m.gi-xl-6 {
    width: 45.3333333333%;
  }
  .gi-ml.gi-xl-6,
  .gi-mr.gi-xl-6 {
    width: 47.6666666667%;
  }
  .gi-xl-in-6 {
    margin-left: 50%;
  }
  .gi-m.gi-xl-in-6,
  .gi-ml.gi-xl-in-6 {
    margin-left: 52.3333333333%;
  }
  .gi-xl-7 {
    width: 58.33333333%;
  }
  .gi-m.gi-xl-7 {
    width: 53.6666666633%;
  }
  .gi-ml.gi-xl-7,
  .gi-mr.gi-xl-7 {
    width: 55.9999999967%;
  }
  .gi-xl-in-7 {
    margin-left: 58.33333333%;
  }
  .gi-m.gi-xl-in-7,
  .gi-ml.gi-xl-in-7 {
    margin-left: 60.6666666633%;
  }
  .gi-xl-8 {
    width: 66.66666666%;
  }
  .gi-m.gi-xl-8 {
    width: 61.9999999933%;
  }
  .gi-ml.gi-xl-8,
  .gi-mr.gi-xl-8 {
    width: 64.3333333267%;
  }
  .gi-xl-in-8 {
    margin-left: 66.66666666%;
  }
  .gi-m.gi-xl-in-8,
  .gi-ml.gi-xl-in-8 {
    margin-left: 68.9999999933%;
  }
  .gi-xl-9 {
    width: 75%;
  }
  .gi-m.gi-xl-9 {
    width: 70.3333333333%;
  }
  .gi-ml.gi-xl-9,
  .gi-mr.gi-xl-9 {
    width: 72.6666666667%;
  }
  .gi-xl-in-9 {
    margin-left: 75%;
  }
  .gi-m.gi-xl-in-9,
  .gi-ml.gi-xl-in-9 {
    margin-left: 77.3333333333%;
  }
  .gi-xl-10 {
    width: 83.33333333%;
  }
  .gi-m.gi-xl-10 {
    width: 78.6666666633%;
  }
  .gi-ml.gi-xl-10,
  .gi-mr.gi-xl-10 {
    width: 80.9999999967%;
  }
  .gi-xl-in-10 {
    margin-left: 83.33333333%;
  }
  .gi-m.gi-xl-in-10,
  .gi-ml.gi-xl-in-10 {
    margin-left: 85.6666666633%;
  }
  .gi-xl-11 {
    width: 91.66666666%;
  }
  .gi-m.gi-xl-11 {
    width: 86.9999999933%;
  }
  .gi-ml.gi-xl-11,
  .gi-mr.gi-xl-11 {
    width: 89.3333333267%;
  }
  .gi-xl-in-11 {
    margin-left: 91.66666666%;
  }
  .gi-m.gi-xl-in-11,
  .gi-ml.gi-xl-in-11 {
    margin-left: 93.9999999933%;
  }
  .gi-xl-12 {
    width: 100%;
  }
  .gi-m.gi-xl-12 {
    width: 95.3333333333%;
  }
  .gi-ml.gi-xl-12,
  .gi-mr.gi-xl-12 {
    width: 97.6666666667%;
  }
  .gi-xl-in-12 {
    margin-left: 100%;
  }
  .gi-m.gi-xl-in-12,
  .gi-ml.gi-xl-in-12 {
    margin-left: 102.3333333333%;
  }
  .gi-xl-pr {
    padding-left: 0;
    padding-right: 2.3333333333%;
  }
  .gi-xl-pl {
    padding-left: 2.3333333333%;
    padding-right: 0;
  }
}
@media (min-width: 64em) {
  .gi-nav-1 {
    width: 8.33333333%;
  }
  .gi-m.gi-nav-1 {
    width: 3.6666666633%;
  }
  .gi-ml.gi-nav-1,
  .gi-mr.gi-nav-1 {
    width: 5.9999999967%;
  }
  .gi-nav-in-1 {
    margin-left: 8.33333333%;
  }
  .gi-m.gi-nav-in-1,
  .gi-ml.gi-nav-in-1 {
    margin-left: 10.6666666633%;
  }
  .gi-nav-2 {
    width: 16.66666666%;
  }
  .gi-m.gi-nav-2 {
    width: 11.9999999933%;
  }
  .gi-ml.gi-nav-2,
  .gi-mr.gi-nav-2 {
    width: 14.3333333267%;
  }
  .gi-nav-in-2 {
    margin-left: 16.66666666%;
  }
  .gi-m.gi-nav-in-2,
  .gi-ml.gi-nav-in-2 {
    margin-left: 18.9999999933%;
  }
  .gi-nav-3 {
    width: 25%;
  }
  .gi-m.gi-nav-3 {
    width: 20.3333333333%;
  }
  .gi-ml.gi-nav-3,
  .gi-mr.gi-nav-3 {
    width: 22.6666666667%;
  }
  .gi-nav-in-3 {
    margin-left: 25%;
  }
  .gi-m.gi-nav-in-3,
  .gi-ml.gi-nav-in-3 {
    margin-left: 27.3333333333%;
  }
  .gi-nav-4 {
    width: 33.33333333%;
  }
  .gi-m.gi-nav-4 {
    width: 28.6666666633%;
  }
  .gi-ml.gi-nav-4,
  .gi-mr.gi-nav-4 {
    width: 30.9999999967%;
  }
  .gi-nav-in-4 {
    margin-left: 33.33333333%;
  }
  .gi-m.gi-nav-in-4,
  .gi-ml.gi-nav-in-4 {
    margin-left: 35.6666666633%;
  }
  .gi-nav-5 {
    width: 41.66666666%;
  }
  .gi-m.gi-nav-5 {
    width: 36.9999999933%;
  }
  .gi-ml.gi-nav-5,
  .gi-mr.gi-nav-5 {
    width: 39.3333333267%;
  }
  .gi-nav-in-5 {
    margin-left: 41.66666666%;
  }
  .gi-m.gi-nav-in-5,
  .gi-ml.gi-nav-in-5 {
    margin-left: 43.9999999933%;
  }
  .gi-nav-6 {
    width: 50%;
  }
  .gi-m.gi-nav-6 {
    width: 45.3333333333%;
  }
  .gi-ml.gi-nav-6,
  .gi-mr.gi-nav-6 {
    width: 47.6666666667%;
  }
  .gi-nav-in-6 {
    margin-left: 50%;
  }
  .gi-m.gi-nav-in-6,
  .gi-ml.gi-nav-in-6 {
    margin-left: 52.3333333333%;
  }
  .gi-nav-7 {
    width: 58.33333333%;
  }
  .gi-m.gi-nav-7 {
    width: 53.6666666633%;
  }
  .gi-ml.gi-nav-7,
  .gi-mr.gi-nav-7 {
    width: 55.9999999967%;
  }
  .gi-nav-in-7 {
    margin-left: 58.33333333%;
  }
  .gi-m.gi-nav-in-7,
  .gi-ml.gi-nav-in-7 {
    margin-left: 60.6666666633%;
  }
  .gi-nav-8 {
    width: 66.66666666%;
  }
  .gi-m.gi-nav-8 {
    width: 61.9999999933%;
  }
  .gi-ml.gi-nav-8,
  .gi-mr.gi-nav-8 {
    width: 64.3333333267%;
  }
  .gi-nav-in-8 {
    margin-left: 66.66666666%;
  }
  .gi-m.gi-nav-in-8,
  .gi-ml.gi-nav-in-8 {
    margin-left: 68.9999999933%;
  }
  .gi-nav-9 {
    width: 75%;
  }
  .gi-m.gi-nav-9 {
    width: 70.3333333333%;
  }
  .gi-ml.gi-nav-9,
  .gi-mr.gi-nav-9 {
    width: 72.6666666667%;
  }
  .gi-nav-in-9 {
    margin-left: 75%;
  }
  .gi-m.gi-nav-in-9,
  .gi-ml.gi-nav-in-9 {
    margin-left: 77.3333333333%;
  }
  .gi-nav-10 {
    width: 83.33333333%;
  }
  .gi-m.gi-nav-10 {
    width: 78.6666666633%;
  }
  .gi-ml.gi-nav-10,
  .gi-mr.gi-nav-10 {
    width: 80.9999999967%;
  }
  .gi-nav-in-10 {
    margin-left: 83.33333333%;
  }
  .gi-m.gi-nav-in-10,
  .gi-ml.gi-nav-in-10 {
    margin-left: 85.6666666633%;
  }
  .gi-nav-11 {
    width: 91.66666666%;
  }
  .gi-m.gi-nav-11 {
    width: 86.9999999933%;
  }
  .gi-ml.gi-nav-11,
  .gi-mr.gi-nav-11 {
    width: 89.3333333267%;
  }
  .gi-nav-in-11 {
    margin-left: 91.66666666%;
  }
  .gi-m.gi-nav-in-11,
  .gi-ml.gi-nav-in-11 {
    margin-left: 93.9999999933%;
  }
  .gi-nav-12 {
    width: 100%;
  }
  .gi-m.gi-nav-12 {
    width: 95.3333333333%;
  }
  .gi-ml.gi-nav-12,
  .gi-mr.gi-nav-12 {
    width: 97.6666666667%;
  }
  .gi-nav-in-12 {
    margin-left: 100%;
  }
  .gi-m.gi-nav-in-12,
  .gi-ml.gi-nav-in-12 {
    margin-left: 102.3333333333%;
  }
  .gi-nav-pr {
    padding-left: 0;
    padding-right: 2.3333333333%;
  }
  .gi-nav-pl {
    padding-left: 2.3333333333%;
    padding-right: 0;
  }
}
.o-image-grid {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 48em) {
  .o-image-grid {
    flex-wrap: nowrap;
  }
}

.o-image-grid__secondary-images {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 48em) {
  .o-image-grid__secondary-images {
    margin-left: 32px;
    width: 50%;
  }
}

.o-image-grid__image {
  background-size: cover;
  background-position: center;
}

.o-image-grid__image--main {
  width: 100%;
  height: 320px;
}
@media (min-width: 30em) {
  .o-image-grid__image--main {
    height: 420px;
  }
}
@media (min-width: 48em) {
  .o-image-grid__image--main {
    height: 600px;
    width: 50%;
  }
}

.o-image-grid__image--profile {
  width: 100%;
  height: 320px;
  margin-bottom: 32px;
}
@media (min-width: 30em) {
  .o-image-grid__image--profile {
    margin-bottom: 0;
    height: 420px;
  }
}
@media (min-width: 48em) {
  .o-image-grid__image--profile {
    height: 640px;
  }
}

.o-image-grid__image--secondary {
  width: 589px;
  height: 286px;
  flex: 100%;
  margin-top: 28px;
}
@media (min-width: 48em) {
  .o-image-grid__image--secondary {
    margin-top: 0;
  }
}

.o-image-grid__image--tertiary {
  width: 286px;
  height: 286px;
  flex: 1;
  margin-right: 32px;
  margin-top: 28px;
}
.o-image-grid__image--tertiary:last-child {
  margin-left: auto;
  margin-right: 0;
}

/**
 * OBJECTS.LAYOUT
 *
 * @description : Core layout objects used in addition to the grid
 *
 */
.o-content {
  padding-bottom: 2.5rem;
}

.o-container {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 48em) {
  .o-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (min-width: 64em) {
  .o-container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.o-container--hero {
  padding-top: 3.75rem;
}
@media (min-width: 64em) {
  .o-container--hero {
    padding-top: 6rem;
  }
}

/**
 * OBJECTS.MODULE
 *
 * @description : 
 *
 */
.o-module--white {
  background: #fff;
}

.o-module--light-gray {
  background: #fbfbfb;
}

.o-module--black {
  background: #2d205d;
  color: #fff;
}

/**
 *  6. TYPOGRAPHY
 *  All styles on top of resets that affect typography, including titles, paragraphs, lists, links etc.
 *  Prefer classes where possible
 */
/**
* TYPOGRAPHY.COPY
*
* @description : 
*
*/
.t-small-text {
  font-size: 0.75rem;
  line-height: 1.125rem;
}

/**
 * TYPOGRAPHY.DISPLAY
 *
 * @description : Display Text
 *
 */
.t-display_4, .t-display_3, .t-display_2, .t-display_1 {
  line-height: 1;
}

.t-display_1 {
  font-size: 3.75rem;
}
@media (min-width: 48em) {
  .t-display_1 {
    font-size: 4rem;
  }
}
@media (min-width: 90em) {
  .t-display_1 {
    font-size: 6rem;
  }
}

.t-display_2 {
  font-size: 2.1875rem;
}
@media (min-width: 48em) {
  .t-display_2 {
    font-size: 3rem;
  }
}
@media (min-width: 90em) {
  .t-display_2 {
    font-size: 3.75rem;
  }
}

.t-display_3 {
  letter-spacing: 0.93px;
  font-size: 1.125rem;
  color: #000000;
}
@media (min-width: 48em) {
  .t-display_3 {
    font-size: 1.25rem;
  }
}

.t-display_4 {
  letter-spacing: 0.93px;
  font-size: 1.25rem;
  color: #000000;
  font-family: "Open Sans", "Segoe UI", "SegoeUI", "Segoe WP", "Helvetica Neue", "Helvetica", "Tahoma", "Arial", sans-serif;
  font-weight: 300;
}
@media (min-width: 48em) {
  .t-display_4 {
    font-size: 1.375rem;
  }
}

/**
* TYPOGRAPHY.HEADINGS
*
* @description : Main body level headings styles
*
*/
.t-heading_6, .t-rich_text h6, .t-heading_5, .t-rich_text h5, .t-heading_4, .t-rich_text h4, .t-heading_3, .t-rich_text h3, .t-heading_2, .t-rich_text h2, .t-heading_1, .t-rich_text h1 {
  line-height: 1;
  margin: 0;
  color: #2d205d;
}
.o-module--black .t-heading_6, .o-module--black .t-rich_text h6, .t-rich_text .o-module--black h6, .o-module--black .t-heading_5, .o-module--black .t-rich_text h5, .t-rich_text .o-module--black h5, .o-module--black .t-heading_4, .o-module--black .t-rich_text h4, .t-rich_text .o-module--black h4, .o-module--black .t-heading_3, .o-module--black .t-rich_text h3, .t-rich_text .o-module--black h3, .o-module--black .t-heading_2, .o-module--black .t-rich_text h2, .t-rich_text .o-module--black h2, .o-module--black .t-heading_1, .o-module--black .t-rich_text h1, .t-rich_text .o-module--black h1 {
  color: #ffffff;
}

.t-heading--black {
  color: #000000;
}

.t-heading--white {
  color: #000000;
}

.t-heading_1, .t-rich_text h1 {
  font-family: "Financier", Times, "Times New Roman", serif;
  font-size: 3.75rem;
  line-height: 3.5rem;
}
@media (min-width: 48em) {
  .t-heading_1, .t-rich_text h1 {
    font-size: 5rem;
    line-height: 4.625rem;
  }
}
@media (min-width: 90em) {
  .t-heading_1, .t-rich_text h1 {
    font-size: 6rem;
    line-height: 5.625rem;
  }
}

.t-heading_2, .t-rich_text h2 {
  font-family: "Open Sans", "Segoe UI", "SegoeUI", "Segoe WP", "Helvetica Neue", "Helvetica", "Tahoma", "Arial", sans-serif;
  font-size: 2.125rem;
  line-height: 2.5rem;
}
@media (min-width: 48em) {
  .t-heading_2, .t-rich_text h2 {
    font-size: 3.125rem;
    line-height: 3.75rem;
  }
}
@media (min-width: 90em) {
  .t-heading_2, .t-rich_text h2 {
    font-size: 4.375rem;
    line-height: 4.625rem;
  }
}

.t-heading_3, .t-rich_text h3 {
  font-family: "Open Sans", "Segoe UI", "SegoeUI", "Segoe WP", "Helvetica Neue", "Helvetica", "Tahoma", "Arial", sans-serif;
  font-size: 1.875rem;
  line-height: 2.375rem;
}
@media (min-width: 48em) {
  .t-heading_3, .t-rich_text h3 {
    font-size: 2.875rem;
    line-height: 3.375rem;
  }
}
@media (min-width: 90em) {
  .t-heading_3, .t-rich_text h3 {
    font-size: 3.75rem;
    line-height: 4.125rem;
  }
}

.t-heading_4, .t-rich_text h4 {
  font-family: "Open Sans", "Segoe UI", "SegoeUI", "Segoe WP", "Helvetica Neue", "Helvetica", "Tahoma", "Arial", sans-serif;
  font-size: 1.875rem;
  font-weight: normal;
  line-height: 2.5rem;
}
@media (min-width: 64em) {
  .t-heading_4, .t-rich_text h4 {
    font-size: 2.25rem;
    line-height: 2.875rem;
  }
}

.t-heading_5, .t-rich_text h5 {
  font-family: "Open Sans", "Segoe UI", "SegoeUI", "Segoe WP", "Helvetica Neue", "Helvetica", "Tahoma", "Arial", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.875rem;
}
@media (min-width: 64em) {
  .t-heading_5, .t-rich_text h5 {
    font-size: 1.875rem;
    line-height: 2.375rem;
  }
}

.t-heading_6, .t-rich_text h6 {
  font-family: "Open Sans", "Segoe UI", "SegoeUI", "Segoe WP", "Helvetica Neue", "Helvetica", "Tahoma", "Arial", sans-serif;
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.5rem;
}
@media (min-width: 64em) {
  .t-heading_6, .t-rich_text h6 {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}

.t-heading--with-accent {
  display: flex;
  flex-flow: row;
  padding: 0.5em 0;
  margin-left: 1em;
}
.t-heading--with-accent::before {
  border: solid;
  border-width: 0px 0 3px 0px;
  content: "";
  display: block;
  margin: -0.5em -1em;
  min-width: 1em;
}

/**
 * TYPOGRAPHY.LEDE
 *
 * @description :
 *
 */
.t-lede_1, .t-rich_text .t-lede_1 {
  font-size: 1.125rem;
  line-height: 1.625rem;
}
@media (min-width: 48em) {
  .t-lede_1, .t-rich_text .t-lede_1 {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
@media (min-width: 64em) {
  .t-lede_1, .t-rich_text .t-lede_1 {
    font-size: 1.5rem;
    line-height: 2.125rem;
  }
}

.t-lede_2 {
  font-size: 1.125rem;
  line-height: 1.625rem;
}
@media (min-width: 48em) {
  .t-lede_2 {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}

/**
* TYPOGRAPHY.LISTS
*
* @description : List styles
*
*/
/* e.g.
    .t-ulist {
        li  {
            margin-bottom: 1em;
        }
    }

    .t-olist {
        li  {
            margin-bottom: 1em;
        }
    }
*/
/**
 * TYPOGRAPHY.RICH-TEXT
 *
 * @description :
 *
 */
.t-rich_text {
  font-size: 1rem;
}
.t-rich_text *:first-child {
  margin-top: 0;
}
.t-rich_text *:last-child {
  margin-bottom: 0;
}
.t-rich_text h1,
.t-rich_text h2,
.t-rich_text h3,
.t-rich_text h4,
.t-rich_text h5,
.t-rich_text h6 {
  margin-bottom: 0.5em;
}
.t-rich_text p,
.t-rich_text ul,
.t-rich_text ol {
  margin-bottom: 1.5em;
}
.t-rich_text a:not(.t-rich_text__cta) {
  color: inherit;
  font-weight: 400;
  text-decoration: underline;
  transition: border 0.1s ease;
  border-bottom: 1px solid transparent;
  transition: 0.2s opacity;
}
.t-rich_text a:not(.t-rich_text__cta):hover {
  opacity: 0.6;
}
.t-rich_text li {
  font: inherit;
  margin-bottom: 0.75em;
  padding-left: 1.5rem;
}
.t-rich_text li:last-child {
  margin-bottom: 0;
}
.t-rich_text ul {
  margin-bottom: 1.5;
}
.t-rich_text ul li::before {
  content: "•";
  display: inline-block;
  font-weight: bold;
  margin-left: -1.5rem;
  width: 1.5rem;
}
.t-rich_text ol {
  margin-bottom: 1.5;
  counter-reset: ol;
}
.t-rich_text ol li {
  counter-increment: ol;
  padding-left: 2rem;
}
.t-rich_text ol li::before {
  content: counter(ol) ".";
  display: inline-block;
  font-weight: bold;
  margin-left: -2rem;
  width: 2rem;
}
.t-rich_text b, .t-rich_text strong {
  font-weight: bold;
}
.t-rich_text--780 h1,
.t-rich_text--780 h2,
.t-rich_text--780 h3,
.t-rich_text--780 h4,
.t-rich_text--780 h5,
.t-rich_text--780 h6,
.t-rich_text--780 p,
.t-rich_text--780 ul,
.t-rich_text--780 ol,
.t-rich_text--780 blockquote {
  max-width: 48.75rem;
}
.t-rich_text--780 p + img {
  max-width: 100%;
}

/**
 *  7. COMPONENTS
 *  A component is a reusable chunk of UI that is clearly designed, as opposed to an object.
 *  Clearly refers to a block of UI: pagination, buttons, modals, icons... etc
 *  You should be able to take a component and paste it anywhere in the app
 *  Must be built with classes only
 */
/**
 * COMPONENTS.ACCORDION
 *
 * @description : 
 *
 */
.c-accordion__list {
  border-bottom: 1px solid;
  padding: 0 8px;
}

.c-accordion__list-item_header {
  font-size: 18px;
  font-weight: 300;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
@media (min-width: 48em) {
  .c-accordion__list-item_header {
    font-size: 28px;
  }
}

.c-accordion__list-item_content {
  padding-bottom: 50px;
  display: none;
}

.c-accordion__list-item_header_button {
  fill: #2d205d;
  min-width: fit-content;
  transition: 0.2s;
}
.o-module--black .c-accordion__list-item_header_button {
  fill: currentColor;
}

.c-accordion__list-item {
  border-top: 1px solid;
}
.c-accordion__list-item.is-active .c-accordion__list-item_content {
  display: block;
}
.c-accordion__list-item.is-active .c-accordion__list-item_header_button {
  transform: rotate(45deg);
}

/**
 * COMPONENTS.BANNER
 *
 */
.c-banner {
  position: relative;
}

.c-banner--purple-gradient:before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/hero-backgrounds/purple-gradient-banner.png);
  content: "";
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 100%;
}
.c-banner--purple-gradient .c-banner__content .t-heading_2, .c-banner--purple-gradient .c-banner__content .t-rich_text h2, .t-rich_text .c-banner--purple-gradient .c-banner__content h2 {
  color: #fff;
}

/**
 * COMPONENTS.CONTACT-FORM
 *
 * @description : 
 *
 */
.c-contact-form__field {
  margin-bottom: 1.5em;
}

.c-contact-form__label {
  display: block;
  line-height: 1.25;
  padding-bottom: 0.375em;
}

.c-contact-form__label--required::after {
  color: #c60000;
  content: "*";
  display: inline-block;
  margin-left: 0.25em;
}

.c-contact-form__text-input {
  border: 1px solid;
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0);
  color: inherit;
  font: inherit;
  font-size: 1rem;
  font-weight: 300;
  height: 2.5em;
  padding: 0 0.75em;
  transition: 0.2s;
}
@media (min-width: 30em) {
  .c-contact-form__text-input {
    font-size: 1.125rem;
  }
}
@media (min-width: 48em) {
  .c-contact-form__text-input {
    font-size: 1.25rem;
  }
}
.c-contact-form__text-input:focus {
  border: 1px solid;
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.08);
}
.c-contact-form__text-input.input-validation-error {
  border-color: #c60000;
}

.c-contact-form__error {
  color: #c60000;
  font-size: 0.875rem;
}

.c-contact-form__radio-item {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  margin-bottom: 0.25em;
}

.c-contact-form__radio-wrap {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  height: 1.25em;
  justify-content: flex-start;
  width: 1.25em;
}

.c-contact-form__radio {
  margin: 0;
  padding: 0;
}

.c-contact-form__radio-label {
  display: inline-block;
  font-weight: 300;
  line-height: 1.25;
}

/**
 * COMPONENTS.CHECKLIST
 *
 * @description : 
 *
 */
.c-checklist__item {
  background: #2d205d url(/img/icons/check.png) center right 1rem no-repeat;
  background-size: 1.75rem 1.75rem;
  color: #fff;
  margin-bottom: 0.0625rem;
  padding: 0.75rem 3.5rem 0.75rem 1rem;
}
@media (min-width: 64em) {
  .c-checklist__item {
    padding: 1rem 3.5rem 1rem 1rem;
  }
}

.c-checklist__small {
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

/**
 * COMPONENTS.CTA
 *
 * @description : Call to Action links/buttons
 *
 */
.c-cta, .t-rich_text__cta, .t-rich_text__cta--narrow {
  background: transparent;
  color: inherit;
  display: inline-block;
  cursor: pointer;
  font: inherit;
  font-size: 0.875rem;
  padding: 0;
  text-decoration: underline;
  white-space: nowrap;
}
@media (min-width: 48em) {
  .c-cta, .t-rich_text__cta, .t-rich_text__cta--narrow {
    font-size: 1rem;
  }
}
.c-cta svg, .t-rich_text__cta svg, .t-rich_text__cta--narrow svg {
  display: inline-block;
  fill: currentColor;
  height: 1rem;
  margin-left: 0.6ch;
  width: 1rem;
}

.c-cta--xs {
  font-size: 0.625rem;
}
@media (min-width: 48em) {
  .c-cta--xs {
    font-size: 0.75rem;
  }
}

.c-cta--sm, .t-rich_text__cta, .t-rich_text__cta--narrow {
  font-size: 0.75rem;
}
@media (min-width: 48em) {
  .c-cta--sm, .t-rich_text__cta, .t-rich_text__cta--narrow {
    font-size: 0.875rem;
  }
}

.c-cta--plus {
  text-decoration: none;
}
.c-cta--plus:hover {
  text-decoration: underline;
}
.c-cta--plus::after {
  content: "+";
  display: inline-block;
  margin-left: 0.5ch;
  text-decoration: none !important;
}

.c-cta--arrow, .t-rich_text__cta, .t-rich_text__cta--narrow {
  text-decoration: none;
}
.c-cta--arrow:hover, .t-rich_text__cta:hover, .t-rich_text__cta--narrow:hover {
  text-decoration: underline;
}
.c-cta--arrow::after, .t-rich_text__cta::after, .t-rich_text__cta--narrow::after {
  content: ">";
  display: inline-block;
  height: 0.75em;
  line-height: 0.75;
  margin: 0.125em 0 0.125em 1ch;
  overflow: hidden;
  text-decoration: none !important;
  transform: scaleX(0.6);
  transform-origin: 0 0;
}

.c-cta--arrow-left {
  text-decoration: none;
}
.c-cta--arrow-left:hover {
  text-decoration: underline;
}
.c-cta--arrow-left::before {
  content: "<";
  display: inline-block;
  height: 0.75em;
  line-height: 0.75;
  margin: 0.125em 1ch 0.125em 0;
  overflow: hidden;
  text-decoration: none !important;
  transform: scaleX(0.6);
  transform-origin: 0 0;
}

.c-cta--ghost-button, .t-rich_text__cta, .t-rich_text__cta--narrow {
  align-items: center;
  border: 1px solid;
  border-radius: 3px;
  display: inline-flex;
  flex-flow: row;
  justify-content: space-between;
  max-width: 100%;
  padding: 0.375rem 0.625rem;
  text-decoration: none;
}
@media (min-width: 48em) {
  .c-cta--ghost-button, .t-rich_text__cta, .t-rich_text__cta--narrow {
    padding: 0.5rem 0.875rem;
  }
}
.c-cta--ghost-button:hover, .t-rich_text__cta:hover, .t-rich_text__cta--narrow:hover {
  text-decoration: underline;
}

.c-cta--solid-button {
  align-items: center;
  background-color: #2d205d;
  border: 1px solid #2d205d;
  border-radius: 3px;
  color: #fff;
  display: inline-flex;
  flex-flow: row;
  justify-content: center;
  max-width: 100%;
  padding: 0.375rem 1rem;
  text-decoration: none;
}
.o-module--black .c-cta--solid-button {
  background-color: #A026D3;
  border: 1px solid #A026D3;
  color: #fff;
}
@media (min-width: 48em) {
  .c-cta--solid-button {
    padding: 0.5rem 1.5rem;
  }
}
.c-cta--solid-button:hover {
  text-decoration: underline;
}

.c-cta--solid-button--white {
  background-color: #fff;
  border: 1px solid #fff;
  color: #2d205d;
}

.c-cta--uppercase {
  text-transform: uppercase;
}

.c-cta--min-width, .t-rich_text__cta {
  min-width: 11.25rem;
}

/**
* COMPONENTS.Lightbox
*
* @description : Lightbox Modal Element
*
*/
.c-lightbox {
  z-index: 10000;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: none;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.c-lightbox:after {
  background: black;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  z-index: 1;
}

.c-lightbox__inner {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1440px;
}
@media (min-width: 48em) {
  .c-lightbox__inner {
    width: 80%;
  }
}

.c-lightbox__video {
  position: relative;
  padding-top: 25px;
  padding-bottom: 56.25%;
  height: 0;
}
.c-lightbox__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * COMPONENTS.DROPDOWN-CTA
 *
 * @description : Call to Action with dropdown menu
 *
 */
.c-dropdown-cta {
  display: inline-block;
  min-width: 12.5rem;
  position: relative;
}
@media (min-width: 1638px) {
  .c-dropdown-cta {
    min-width: 0;
  }
}

.c-dropdown-cta__cta {
  justify-content: center;
  min-width: 6.25rem;
  text-align: center;
  transition: 0.2s color, 0.2s background-color, 0.2s border-color;
}
.c-header--black .c-dropdown-cta[data-is-active] .c-dropdown-cta__cta, .c-header--black .c-dropdown-cta__cta:focus {
  background: #fff;
  border-color: #fff;
  color: #2d205d;
  outline: none;
}

.c-dropdown-cta__menu {
  background: #fff;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  color: #2d205d;
  display: block;
  left: 0;
  margin-top: 0.0625rem;
  max-width: 95vw;
  min-width: 12.5rem;
  opacity: 0;
  padding: 1.25rem 1.5rem;
  pointer-events: none;
  position: absolute;
  top: 100%;
  transition: opacity 0.2s;
}
.c-dropdown-cta[data-is-active] .c-dropdown-cta__menu {
  opacity: 1;
  pointer-events: all;
}

.c-dropdown-cta__menu-item {
  margin-bottom: 0.5rem;
  white-space: nowrap;
}
.c-dropdown-cta__menu-item:last-child {
  margin-bottom: 0;
}

.c-dropdown-cta__menu-link {
  color: inherit;
  transition: 0.2s color;
}
.c-dropdown-cta__menu-link:hover {
  color: #979797;
}

/**
 * COMPONENTS.EDITORIAL-IMAGE
 *
 * @description : 
 *
 */
.c-editorial-image {
  margin: 0 auto;
  position: relative;
}

.c-editorial-image--with-shadow {
  background: #fff;
  box-shadow: 0 3px 16px 3px rgba(0, 0, 0, 0.06);
}

.c-editorial-image__wrap {
  display: flex;
  justify-content: center;
}

.c-editorial-image__image {
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

/**
 * COMPONENTS.FOOTER
 *
 * @description : Main site footer
 *
 */
.c-footer {
  color: white;
  background: #2d205d;
}

.c-footer__tagline {
  font-size: 1.875rem;
  letter-spacing: -0.041875rem;
  line-height: 2.8125rem;
  white-space: nowrap;
}
@media (min-width: 48em) {
  .c-footer__tagline {
    font-size: 2.5rem;
    line-height: 3.75rem;
  }
}

.c-footer__small-text {
  font-size: 0.75rem;
  line-height: 1.25rem;
}
@media (min-width: 48em) {
  .c-footer__small-text {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}
.c-footer__small-text a {
  color: inherit;
  text-decoration: none;
}
.c-footer__small-text a:hover {
  text-decoration: underline;
}

.c-footer__address {
  color: #979797;
}

.c-footer_nav {
  font-size: 1.0625rem;
}

.c-footer__back-to-top {
  font-size: 12px;
  display: inline-block;
  text-align: center;
  width: auto;
}
.c-footer__back-to-top:hover {
  cursor: pointer;
}
.c-footer__back-to-top p {
  margin-bottom: 0;
}

.c-footer__back-to-top-icon {
  margin: 0 auto 0.5rem auto;
  transition: transform 0.35s ease-in-out !important;
  max-height: 26px;
}
.c-footer__back-to-top:hover .c-footer__back-to-top-icon {
  transform: translateY(-4px);
}
@media (min-width: 30em) {
  .c-footer__back-to-top-icon {
    max-height: unset;
  }
}

.c-footer__icon {
  margin-bottom: 100%;
  width: 2.5rem;
}

.c-footer__buttons {
  align-items: center;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
}

.c-footer__button {
  margin: 0 0.75rem 0.75rem 0;
}

.c-footer__brand-list {
  display: inline-flex;
  flex-flow: row;
}

.c-footer__brand-item {
  align-items: center;
  border-right: 1px solid #979797;
  display: flex;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.c-footer__brand-item:first-child {
  padding-left: 0;
}
.c-footer__brand-item:last-child {
  padding-right: 0;
  border-right: none;
}

.c-footer__brand-item--kiwiwrap img {
  height: 24px;
}

.c-footer__brand-logo {
  display: block;
  height: 2.375rem;
  width: auto;
  margin: 2px 0px;
}

.c-footer__product_links {
  display: flex;
  align-items: center;
}
@media (min-width: 64em) {
  .c-footer__product_links {
    justify-content: flex-end;
    margin-bottom: 0.5rem;
  }
}

.c-footer__product_link {
  opacity: 0.7;
  transition: opacity 0.2s ease;
  flex: 0 0 auto;
  margin: 0 1em;
  max-width: 25%;
}
.c-footer__product_link:hover {
  opacity: 1;
}
.c-footer__product_link:first-child {
  margin-left: 0;
}
.c-footer__product_link:last-child {
  margin-right: 0;
}
.c-footer__product_link img {
  width: 100%;
}
@media (min-width: 30em) {
  .c-footer__product_link {
    max-width: 100%;
  }
}

.c-footer__logo {
  max-width: 130px;
}

.c-footer__product_link--wrap {
  flex-basis: 77px;
}

.c-footer__product_link--kiwiwrap {
  flex-basis: 126px;
}

.c-footer__product_link--consilium {
  flex-basis: 140px;
}

.c-footer__credits {
  color: #979797;
  font-size: 0.75rem;
}

.c-footer__legal_links {
  color: #979797;
  font-size: 0.75rem;
}
@media (min-width: 64em) {
  .c-footer__legal_links {
    display: flex;
    justify-content: flex-end;
  }
}

.c-footer__legal_link_wrap {
  display: inline-block;
}
.c-footer__legal_link_wrap:not(:last-child)::after {
  content: "|";
  display: inline-block;
  margin: 0 0.375em;
}

.c-footer__legal_link {
  color: inherit;
  font-size: 0.6875rem;
}
.c-footer__legal_link:hover {
  opacity: 1;
}

/**
 * COMPONENTS.HEADER
 *
 * @description : Main site header
 *
 */
.c-header {
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0);
  height: 3.75rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: 0.5s box-shadow;
}
@media (min-width: 64em) {
  .c-header {
    height: 6rem;
  }
}
.is-scrolled .c-header {
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.05);
}
.c-header .o-container {
  height: 100%;
}

.c-header--white {
  background: #fff;
  color: #2d205d;
}
.c-header--white g {
  fill: #2d205d;
}

.c-header--light-gray {
  background: #fbfbfb;
}
.c-header--light-gray g {
  fill: #2d205d;
}

.c-header--black {
  background: transparent;
  color: #fff;
  transition: background 1s;
}
.is-scrolled .c-header--black {
  background: #2d205d;
  transition: background 1s;
}

.home .c-header--black,
.home .c-header--white {
  background: transparent;
  color: #fff;
  transition: background 1s;
}
.home .c-header--black g,
.home .c-header--white g {
  fill: #fff;
}

.home.is-scrolled .c-header--black,
.home.is-scrolled .c-header--white {
  background: #2d205d;
  color: #fff;
  transition: background 1s;
}

.c-header__inner {
  display: flex;
  height: 100%;
  justify-content: space-between;
}
@media (min-width: 64em) {
  .c-header__inner {
    display: flex;
    align-items: stretch;
    justify-content: unset;
  }
}

.c-header__logo_link {
  color: inherit;
  display: flex;
  flex: 0 1 auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.c-header__logo_link svg {
  fill: currentColor;
  display: block;
  width: 100px;
}
@media (min-width: 64em) {
  .c-header__logo_link svg {
    width: 125px;
  }
}

.c-header__logo_link_color {
  fill: currentColor;
}

.c-header__nav {
  display: block;
  margin-left: auto;
  transition: 0.2s opacity, left 0s 0.2s;
}
@media (min-width: 0) and (max-width: 64em) {
  .c-header__nav {
    background: rgba(255, 255, 255, 0.975);
    color: #000;
    height: 100vh;
    left: -200vw;
    opacity: 0;
    padding: 2rem 1rem 6.875rem;
    position: fixed;
    top: 3.75rem;
    transition: 0.2s opacity;
    width: 100%;
    z-index: 9999;
  }
  .c-header--open .c-header__nav {
    opacity: 1;
    left: 0;
    transition: 0.3s opacity, 0s left;
  }
}

.c-header__nav_buttons .c-btn:not(:last-child) {
  margin-right: 1.5vw;
}

/**
 * COMPONENTS.HERO
 *
 */
.c-hero-module {
  min-height: 80vh;
}
@media (min-width: 48em) {
  .c-hero-module {
    height: 80vh;
  }
}

.c-hero {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.c-hero .o-container,
.c-hero .b {
  height: 100%;
}

.c-hero__text {
  z-index: 1;
}

.c-hero__heading-gradient {
  background: linear-gradient(126deg, #C742FF 0%, #CA4AFF 40%, #813FF8 60%, #9160FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Open Sans", "Segoe UI", "SegoeUI", "Segoe WP", "Helvetica Neue", "Helvetica", "Tahoma", "Arial", sans-serif;
  letter-spacing: -3px;
}

.c-hero__image {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  min-width: 85%;
  position: relative;
  z-index: 1;
}
.c-hero__image::after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
@media (min-width: 48em) {
  .c-hero__image::after {
    display: none;
    padding: 0;
    width: 0;
  }
}
@media (min-width: 64em) {
  .c-hero__image {
    min-width: 55%;
  }
}
@media (min-width: 90em) {
  .c-hero__image {
    min-width: 60%;
  }
}

.c-hero__image-item {
  position: absolute;
}

.c-hero__heading_image {
  margin: auto;
  /*max-height: 180px;
  max-width: 70%;*/
  max-height: 400px;
  max-width: 400px;
  position: absolute;
  z-index: 1;
}
@media (min-width: 64em) {
  .c-hero__heading_image {
    max-height: 650px;
    max-width: 650px;
  }
}

.c-hero--purple-gradient:before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/hero-backgrounds/purple-decorative.png);
  content: "";
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 100%;
}

.c-hero__content {
  align-items: center;
  display: flex;
  flex-flow: column;
  height: 100%;
  justify-content: space-between;
  margin-inline: auto;
  padding-top: 120px;
}
.c-hero__content h1 {
  z-index: 1;
}
@media (min-width: 48em) {
  .c-hero__content {
    flex-flow: row;
    margin-top: -20px;
    padding-top: 80px;
  }
}

.c-hero-animation {
  height: 100vh;
  position: absolute;
  top: 30%;
  right: -60%;
  transform: rotate(-45deg);
  width: 150vw;
}
@media (min-width: 64em) {
  .c-hero-animation {
    top: 10%;
    right: -20%;
    width: 100vw;
  }
}

.c-hero-animation__line {
  background-color: rgb(91, 13, 155);
  background: linear-gradient(90deg, rgb(91, 13, 155) 0%, rgb(58, 12, 146) 75%, rgba(255, 255, 255, 0) 100%);
  border-radius: 5px;
  height: 2px;
  min-width: 300px;
  position: absolute;
  width: 60vw;
}
@media (min-width: 48em) {
  .c-hero-animation__line {
    height: 3px;
  }
}
@media (min-width: 64em) {
  .c-hero-animation__line {
    height: 5px;
    width: 40vw;
  }
}

.c-hero__cta-buttons {
  display: flex;
  gap: 1rem;
  flex-direction: row;
}
.c-hero__cta-buttons a {
  color: #fff;
}
.c-hero__cta-buttons a:nth-child(2) .c-hero__cta-button {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.c-hero__cta-button {
  background-color: #A026D3;
  min-width: 6.25rem;
}

.c-icon-btn {
  align-items: center;
  background: #000000;
  border-radius: 10em;
  color: #fff;
  display: inline-flex;
  height: 1.875rem;
  justify-content: center;
  opacity: 1;
  text-align: center;
  transition: opacity 0.2s;
  width: 1.875rem;
}
.c-icon-btn:hover {
  opacity: 0.6;
}
.c-icon-btn svg {
  display: block;
  fill: currentColor;
  width: 1rem;
  height: 1rem;
}

.c-icon-btn--sm-icon svg {
  height: 0.875rem;
  width: 0.875rem;
}

/**
 * COMPONENTS.INFO-CARD
 *
 * @description : 
 *
 */
.c-info-card__image {
  margin: auto;
}

.c-info-card__media--image .c-info-card__image {
  width: 100%;
}

/**
 * COMPONENTS.RESOURCE
 *
 * @description : A downloadable resource
 *
 */
.c-resource {
  align-items: center;
  background: rgba(0, 0, 0, 0.02);
  color: #000;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  padding: 0.25rem 0.75rem;
  transition: background 0.2s;
}
@media (min-width: 48em) {
  .c-resource {
    flex-wrap: nowrap;
    padding: 0.75rem 1.25rem;
  }
}
a:hover .c-resource {
  background: rgba(0, 0, 0, 0.04);
}
.c-resource::before {
  background: url(/img/icons/pdf.svg) center no-repeat;
  background-size: contain;
  content: "";
  display: block;
  flex: 0 0 auto;
  height: 1.5rem;
  margin: 0.375rem 1.25rem 0.375rem 0;
  width: 1.5rem;
}
@media (min-width: 64em) {
  .c-resource::before {
    margin-right: 1.875rem;
  }
}

.c-resource__detail {
  font-size: 0.75rem;
  line-height: 1.25rem;
  margin: 0 0 0 1.25rem;
  opacity: 0.5;
  padding: 0.375rem 0;
}
@media (min-width: 48em) {
  .c-resource__detail {
    font-size: 0.875rem;
    line-height: 1.375rem;
    margin: 0 0 0 2.125rem;
    opacity: 1;
  }
}
@media (min-width: 64em) {
  .c-resource__detail {
    font-size: 1rem;
    line-height: 1.375rem;
    margin: 0 0 0 2.125rem;
  }
}
@media (min-width: 90em) {
  .c-resource__detail {
    font-size: 1.0625rem;
    line-height: 1.375rem;
    margin: 0 0 0 2.625rem;
  }
}
.c-resource__detail:first-child {
  margin-left: 0;
}

.c-resource__name {
  flex: 1 0;
  min-width: calc(100% - 44px);
  opacity: 1;
}
@media (min-width: 0) and (max-width: 48em) {
  .c-resource__name {
    font-size: 0.875rem;
  }
}
@media (min-width: 48em) {
  .c-resource__name {
    min-width: 0;
  }
}
a:hover .c-resource__name {
  text-decoration: underline;
}

.c-resource__file-type {
  text-align: right;
}
@media (min-width: 0) and (max-width: 48em) {
  .c-resource__file-type {
    margin-left: 0;
  }
}
@media (min-width: 48em) {
  .c-resource__file-type {
    width: 4ch;
  }
}

.c-resource__file-size {
  text-align: right;
}
@media (min-width: 48em) {
  .c-resource__file-size {
    width: 8ch;
  }
}

.c-resource__date {
  text-align: right;
}
@media (min-width: 48em) {
  .c-resource__date {
    width: 12ch;
  }
}

/**
 * COMPONENTS.MEDIA-PANEL
 *
 * @description : 
 *
 */
@media (min-width: 30em) {
  .c-media_panel:nth-of-type(even) .c-media_panel__content {
    order: -1;
  }
}

.c-media_panel__heading {
  font-weight: 600;
}

/**
 * COMPONENTS.NAV
 *
 * @description :
 *
 */
@media (min-width: 64em) {
  .c-nav__list {
    display: flex;
    height: 100%;
    margin: auto 2vw auto 0;
  }
}

.c-nav__item {
  margin-bottom: 0.5rem;
  position: relative;
}
.c-nav__item.is-active .c-nav__item {
  margin-top: 0.5rem;
}
@media (min-width: 64em) {
  .c-nav__item {
    height: 100%;
    margin-bottom: 0;
  }
  .c-nav__item:not(:last-child) {
    margin-right: 2vw;
  }
}

@media (min-width: 64em) {
  .c-nav__item--mobile {
    display: none;
  }
}

.c-header__nav_buttons {
  display: none;
}
@media (min-width: 64em) {
  .c-header__nav_buttons {
    display: flex;
    align-items: center;
  }
}

.c-nav__link {
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
@media (min-width: 64em) {
  .c-nav__link {
    align-items: center;
    display: flex;
    font-weight: inherit;
    height: 100%;
    padding-bottom: 1.75rem;
    padding-top: 1.75rem;
    position: relative;
  }
  .c-nav__link::before {
    position: absolute;
    background-color: currentColor;
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    display: block;
    height: 3px;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(1, 0, 0.75, 1);
  }
  .c-nav__link:hover::before {
    transition: transform 0.2s cubic-bezier(0.6, 0.75, 0.5, 1);
    transform: scaleX(1);
  }
  .c-nav__link.is-active {
    opacity: 1;
  }
  .c-nav__link.is-active::before {
    transform: scaleX(1);
  }
}

.c-nav__submenu {
  transition: opacity 0.25s ease;
  margin-left: 1.5rem;
}
.is-active .c-nav__submenu {
  opacity: 1;
  pointer-events: all;
  height: auto;
  margin-top: 8px;
}
@media (min-width: 64em) {
  .c-nav__submenu {
    height: auto;
    position: absolute;
    left: 0;
    top: 80%;
    padding: 1.375rem 3.875rem 1.125rem 1.5625rem;
    background: white;
    box-shadow: 1px 2px 6px 0px rgba(0, 0, 0, 0.1);
    color: inherit;
    left: -24px;
    margin-left: 0rem;
    margin-top: 0rem;
    opacity: 0;
    pointer-events: none;
  }
  .c-nav__item:hover .c-nav__submenu {
    opacity: 1;
    pointer-events: all;
  }
}

.c-nav__child {
  margin-left: 24px;
}

.c-nav__sublink {
  display: block;
  white-space: nowrap;
  padding-bottom: 0.5rem;
  color: #2d205d;
}
.c-nav__sublink:focus, .c-nav__sublink:active {
  color: #2d205d;
}
.c-nav__sublink.is-active, .c-nav__sublink:hover {
  opacity: 0.7;
}

.c-nav__sublink--bold {
  font-weight: 600;
}

.c-nav__childlink {
  font-size: 15px;
}

.c-nav__external-items {
  margin-top: 1.75rem;
}

@media (min-width: 64em) {
  .c-nav__item--external {
    display: none;
  }
}

.c-nav__external-link {
  color: inherit;
  font-size: 1rem;
  margin-left: 0rem;
  margin-top: 1rem;
  margin-bottom: 0.375rem;
  display: block;
}
.c-nav__external-link svg {
  display: inline-block;
  height: 1em;
  margin-right: 0.25rem;
  vertical-align: -10%;
  width: 1em;
}

.c-nav__external-item--large {
  display: flex;
  margin: 1rem 0;
}

/**
 * COMPONENTS.NAV-TOGGLE
 *
 * @description :
 *
 */
.c-nav_toggle {
  background-color: transparent !important;
  color: inherit;
  cursor: pointer;
  font: inherit;
  align-self: center;
  width: 2.5rem;
  height: 2.5rem;
}
.c-nav_toggle:hover .c-nav_toggle__line--1 {
  transform: translateY(2px);
}
.c-nav_toggle:hover .c-nav_toggle__line--2 {
  transform: translateY(-2px);
}
.c-nav_toggle.is-active .c-nav_toggle__line--1 {
  transform: translate(-6px, 5.5px) rotate(45deg);
}
.c-nav_toggle.is-active .c-nav_toggle__line--2 {
  transform: translate(-6px, -5.5px) rotate(-45deg);
}
@media (min-width: 64em) {
  .c-nav_toggle {
    display: none;
  }
}

.c-nav_toggle__icon {
  fill: currentColor;
}

.c-nav_toggle__line {
  transform-origin: center;
  transition: all 0.2s ease;
}

/**
 * COMPONENTS.PROFILE-CARD
 *
 * @description : A card representing a team member profile
 *
 */
.c-profile-card {
  border-bottom: 2px solid transparent;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 20px -15px;
  color: #000000;
  padding-bottom: 1rem;
  transition: all 0.5s ease;
  transition: box-shadow 0.2s ease, border-bottom-color 0.25s ease;
}

.c-profile-card__name {
  display: block;
}

/**
 * COMPONENTS.STATS-ITEM
 *
 * @description : Displays stats quantity and labels
 *
 */
.c-stats-item {
  display: flex;
  flex-direction: column;
  color: #2D205D;
}
.o-module--black .c-stats-item {
  color: #ffffff;
}

.c-stats-item__quantity {
  font-family: "Financier", Times, "Times New Roman", serif;
  font-size: 64px;
  letter-spacing: 0;
  line-height: 50px;
}
@media (min-width: 48em) {
  .c-stats-item__quantity {
    font-size: 80px;
    letter-spacing: 0;
    line-height: 70px;
  }
}
.c-stats-item__quantity::after {
  border: solid;
  border-width: 0px 0 3px 0px;
  content: "";
  display: block;
  margin: 0.4em 0em 0.2em 0em;
  width: 100%;
  max-width: 1em;
}

.c-stats-item__label {
  color: #808080;
}

.c-text_media__media {
  margin-top: 3.75rem;
}
@media (min-width: 1025px) {
  .c-text_media__media {
    margin-top: 0;
  }
}

.c-text-media__media_video_image {
  position: relative;
}

.c-text-media__media_image {
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
}

.c-text-media__media_video_play {
  position: absolute;
  width: 20%;
  max-width: 100px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.swiper-slide.c-logo-wrapper {
  display: flex;
  justify-content: center;
  user-select: none;
}

/**
 *  8. UTILITIES
 */
/**
 * UTILITIES.LAYOUT
 *
 * @description : These classes trump other preceeding styles.
 *                Userful for quickly applying common adjustments.
 */
.u-fr {
  float: right;
}

.u-fl {
  float: left;
}

.u-mb {
  margin-bottom: 0.03125rem;
}

.u-bb {
  border-bottom: 1px solid;
}

.u-bt {
  border-top: 1px solid;
}

.flex-middle {
  display: flex;
  align-items: center;
}

/**
 * UTILITIES.MARGINS.SCSS
 *
 * @description :
 *
 */
/**
 * UTILITIES.MARGIN
 *
 * @description :
 *
 */
.u-mt--xxxs {
  margin-top: 0.25rem !important;
}

.u-mt--xxs {
  margin-top: 0.5rem !important;
}

.u-mt--xs {
  margin-top: 0.75rem !important;
}
@media (min-width: 48em) {
  .u-mt--xs {
    margin-top: 1rem !important;
  }
}

.u-mt--sm {
  margin-top: 1rem !important;
}
@media (min-width: 48em) {
  .u-mt--sm {
    margin-top: 1.5rem !important;
  }
}

.u-mt--md {
  margin-top: 1.5rem !important;
}
@media (min-width: 48em) {
  .u-mt--md {
    margin-top: 2rem !important;
  }
}

.u-mt--lg {
  margin-top: 2rem !important;
}
@media (min-width: 48em) {
  .u-mt--lg {
    margin-top: 3.125rem !important;
  }
}

.u-mt--xl {
  margin-top: 3.125rem !important;
}
@media (min-width: 48em) {
  .u-mt--xl {
    margin-top: 4.6875rem !important;
  }
}

.u-mt--xxl {
  margin-top: 4.6875rem !important;
}
@media (min-width: 48em) {
  .u-mt--xxl {
    margin-top: 6.25rem !important;
  }
}

.u-mt--xxxl {
  margin-top: 4.6875rem !important;
}
@media (min-width: 48em) {
  .u-mt--xxxl {
    margin-top: 7.8125rem !important;
  }
}

.u-mt--xxxxl {
  margin-top: 6.25rem !important;
}
@media (min-width: 48em) {
  .u-mt--xxxxl {
    margin-top: 9.375rem !important;
  }
}

.u-mb--xxxs {
  margin-bottom: 0.25rem !important;
}

.u-mb--xxs {
  margin-bottom: 0.5rem !important;
}

.u-mb--xs {
  margin-bottom: 0.75rem !important;
}
@media (min-width: 48em) {
  .u-mb--xs {
    margin-bottom: 1rem !important;
  }
}

.u-mb--sm {
  margin-bottom: 1rem !important;
}
@media (min-width: 48em) {
  .u-mb--sm {
    margin-bottom: 1.5rem !important;
  }
}

.u-mb--md {
  margin-bottom: 1.5rem !important;
}
@media (min-width: 48em) {
  .u-mb--md {
    margin-bottom: 2rem !important;
  }
}

.u-mb--lg {
  margin-bottom: 2rem !important;
}
@media (min-width: 48em) {
  .u-mb--lg {
    margin-bottom: 3.125rem !important;
  }
}

.u-mb--xl {
  margin-bottom: 3.125rem !important;
}
@media (min-width: 48em) {
  .u-mb--xl {
    margin-bottom: 4.6875rem !important;
  }
}

.u-mb--xxl {
  margin-bottom: 4.6875rem !important;
}
@media (min-width: 48em) {
  .u-mb--xxl {
    margin-bottom: 6.25rem !important;
  }
}

.u-mb--xxxl {
  margin-bottom: 4.6875rem !important;
}
@media (min-width: 48em) {
  .u-mb--xxxl {
    margin-bottom: 7.8125rem !important;
  }
}

.u-mb--xxxxl {
  margin-bottom: 6.25rem !important;
}
@media (min-width: 48em) {
  .u-mb--xxxxl {
    margin-bottom: 9.375rem !important;
  }
}

.u-mr {
  margin-right: 0.5rem;
}
@media (min-width: 48em) {
  .u-mr {
    margin-right: 1rem;
  }
}

@media (min-width: 64em) {
  .u-space-in {
    margin-left: 100px;
    margin-right: 100px;
  }
}

/**
 * UTILITIES.PADDING
 *
 * @description :
 *
 */
.u-pt--xxxs {
  padding-top: 0.25rem !important;
}

.u-pt--xxs {
  padding-top: 0.5rem !important;
}

.u-pt--xs {
  padding-top: 0.75rem !important;
}
@media (min-width: 48em) {
  .u-pt--xs {
    padding-top: 1rem !important;
  }
}

.u-pt--sm {
  padding-top: 1rem !important;
}
@media (min-width: 48em) {
  .u-pt--sm {
    padding-top: 1.5rem !important;
  }
}

.u-pt--md {
  padding-top: 1.5rem !important;
}
@media (min-width: 48em) {
  .u-pt--md {
    padding-top: 2rem !important;
  }
}

.u-pt--lg {
  padding-top: 2rem !important;
}
@media (min-width: 48em) {
  .u-pt--lg {
    padding-top: 3.125rem !important;
  }
}

.u-pt--xl {
  padding-top: 3.125rem !important;
}
@media (min-width: 48em) {
  .u-pt--xl {
    padding-top: 4.6875rem !important;
  }
}

.u-pt--xxl {
  padding-top: 4.6875rem !important;
}
@media (min-width: 48em) {
  .u-pt--xxl {
    padding-top: 6.25rem !important;
  }
}

.u-pt--xxxl {
  padding-top: 4.6875rem !important;
}
@media (min-width: 48em) {
  .u-pt--xxxl {
    padding-top: 7.8125rem !important;
  }
}

.u-pt--xxxxl {
  padding-top: 6.25rem !important;
}
@media (min-width: 48em) {
  .u-pt--xxxxl {
    padding-top: 9.375rem !important;
  }
}

.u-pb--xxxs {
  padding-bottom: 0.25rem !important;
}

.u-pb--xxs {
  padding-bottom: 0.5rem !important;
}

.u-pb--xs {
  padding-bottom: 0.75rem !important;
}
@media (min-width: 48em) {
  .u-pb--xs {
    padding-bottom: 1rem !important;
  }
}

.u-pb--sm {
  padding-bottom: 1rem !important;
}
@media (min-width: 48em) {
  .u-pb--sm {
    padding-bottom: 1.5rem !important;
  }
}

.u-pb--md {
  padding-bottom: 1.5rem !important;
}
@media (min-width: 48em) {
  .u-pb--md {
    padding-bottom: 2rem !important;
  }
}

.u-pb--lg {
  padding-bottom: 2rem !important;
}
@media (min-width: 48em) {
  .u-pb--lg {
    padding-bottom: 3.125rem !important;
  }
}

.u-pb--xl {
  padding-bottom: 3.125rem !important;
}
@media (min-width: 48em) {
  .u-pb--xl {
    padding-bottom: 4.6875rem !important;
  }
}

.u-pb--xxl {
  padding-bottom: 4.6875rem !important;
}
@media (min-width: 48em) {
  .u-pb--xxl {
    padding-bottom: 6.25rem !important;
  }
}

.u-pb--xxxl {
  padding-bottom: 4.6875rem !important;
}
@media (min-width: 48em) {
  .u-pb--xxxl {
    padding-bottom: 7.8125rem !important;
  }
}

.u-pb--xxxxl {
  padding-bottom: 6.25rem !important;
}
@media (min-width: 48em) {
  .u-pb--xxxxl {
    padding-bottom: 9.375rem !important;
  }
}

/**
 * UTILITIES.TYPE
 *
 * @description : These classes trump other preceeding styles.
 *                Userful for quickly applying common adjustments.
 */
.u-tc {
  text-align: center;
}

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

@media (min-width: 48em) {
  .u-tr--md {
    text-align: right;
  }
}

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

.u-bold {
  font-weight: bold !important;
}

/**
 * COMPONENTS.VALIDATION
 *
 * @description : Validation styles for form elements
 *
 */
p.u-error {
  color: #c60000;
  font-weight: bold;
  font-size: 0.875em;
  padding: 0.5em 0;
  margin-bottom: 0;
}

[type=radio].u-error + label,
[type=checkbox].u-error + label {
  color: #c60000;
}

[type=text].u-error,
[type=email].u-error,
[type=password].u-error,
[type=tel].u-error,
[type=search].u-error,
[type=url].u-error,
select.u-error,
textarea.u-error {
  border-color: #c60000;
}

.u-fg-primary-brand {
  color: #2d205d;
}

/**
 * Swiper 11.1.14
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 12, 2024
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

/*# sourceMappingURL=master.css.map */
