@charset "UTF-8";
/* global variables, mixins, functions, etc. */ /* ==========================================================================
   SASS Base: Variables, mixins, etc.
   ========================================================================== */
:root {
  /* ==========================================================================
    Colors
    ========================================================================== */
  --color-black: #000;
  --color-white: #FFF;
  --color-neutral: #F7F7F7;
  --color-quad-blue: #12A0E0;
  --color-quad-yellow: #FFDF00;
  --color-quad-red: #FF122D;
  --color-med-blue: #3245B3;
  --color-bright-green: #32E775;
  --color-pink: #FFAFD6;
  --color-orange: #F99D0A;
  --color-navy: #00007A;
  --color-med-green: #008E0D;
  --color-burgundy: #7E122D;
  --color-link: var(--color-med-blue, #3245B3);
  --color-link-visited: var(--color-med-blue, #3245B3);
  --color-link-hover: var(--color-quad-blue, #12A0E0);
  --color-button-hover: var(--color-black);
  /* ==========================================================================
    Fonts
    ========================================================================== */
  --font-sans: "Roboto", Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-sans-alt: "Quad Graphik Cond Web", Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", "sans serif";
  --font-serif: "Roboto Serif", Georgia, Times, "Times New Roman", serif;
  /* ==========================================================================
    Container sizes
    ========================================================================== */
  --container-main: 1260px;
  --container-article: 1260px;
  --container-article-body: 1260px;
  --padding-main: 20px;
  /* ==========================================================================
    Media Query Breakpoints
    ========================================================================== */
  --breakpoint-xxs: 340px;
  --breakpoint-xs: 575px;
  --breakpoint-sm: 768px;
  --breakpoint-md: 991px;
  --breakpoint-lg: 1199px;
  --breakpoint-nav-hamburger: 1000px;
}

.button:hover:after {
  opacity: 1;
  right: 10px;
}

/*
* HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/
* Don't edit
*/
/**
 * The OCM CMS will add margin-[left,right,top,bottom]: 5px as
 * inline styles to every component by default. It's editable in
 * the CMS, but it always defaults to 5 and is difficult to
 * override. The solution is to set every `.scs-component` as
 * `margin:0!important` right off the bat, then any other margin
 * rules on any element will need !important.
 */
.scs-component {
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
}

.scs-paragraph-text h1 {
  font-size: 76px;
  line-height: 1;
  margin-bottom: 48px;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
button,
input,
select,
textarea {
  color: #222;
}

html {
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
}

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

/* user defined base styles for html elements */
html {
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
body.scs-edit-mode #NavContainer, body.scs-builder #NavContainer {
  position: static;
  z-index: auto;
}

/* ==========================================================================
   Global Input Styles
   ========================================================================== */
/* ==========================================================================
   Global link styles
   ========================================================================== */
a {
  color: var(--color-link);
  text-decoration: none;
}

a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}

a:visited {
  color: var(--color-link-visited);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans-alt, "Quad Graphik Cond Web");
  font-weight: 700;
}

/* reusable or unique components */
.page-section > .scs-component-container {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(var(--container-main) + var(--padding-main) + var(--padding-main));
  padding-left: var(--padding-main);
  padding-right: var(--padding-main);
}

.page-section--breadcrumbs {
  background-color: var(--color-white);
  margin: 0;
  padding-bottom: 30px;
  padding-top: 30px;
}
@media screen and (max-width: 1000px) {
  .page-section--breadcrumbs {
    display: none;
  }
}
.page-section--breadcrumbs.first-slot-element-fractal {
  position: absolute;
  padding-left: calc((100vw - var(--container-main)) / 2 - var(--padding-main));
  background-color: transparent;
  z-index: 4;
}
@media screen and (max-width: 1000px) {
  .page-section--breadcrumbs.first-slot-element-fractal {
    display: block;
  }
}
.page-section--breadcrumbs.first-slot-element-fractal .breadcrumbs-container {
  max-width: none;
}
@media screen and (max-width: 1456px) {
  .page-section--breadcrumbs.first-slot-element-fractal .breadcrumbs-container {
    padding-left: 20px;
  }
}
.page-section--breadcrumbs.first-slot-element-fractal .breadcrumbs__list {
  max-width: none;
  flex-direction: row;
}
@media screen and (max-width: 575px) {
  .page-section--breadcrumbs.first-slot-element-fractal .breadcrumbs__list {
    flex-direction: row;
    max-width: 100%;
  }
}

.breadcrumbs__list {
  display: flex;
  list-style: none;
  margin-bottom: 0;
  padding: 0;
  text-transform: lowercase;
}
@media screen and (max-width: 999px) {
  .breadcrumbs__list {
    flex-direction: column;
    max-width: 70%;
  }
}

.breadcrumbs__item {
  margin-right: 10px;
  position: relative;
}
@media screen and (max-width: 999px) {
  .breadcrumbs__item span {
    margin-left: -3px;
  }
}
@media screen and (max-width: 999px) {
  .breadcrumbs__item {
    font-size: 14px;
  }
}
.breadcrumbs__item + .breadcrumbs__item::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
}
@media screen and (max-width: 999px) {
  .breadcrumbs__item + .breadcrumbs__item::before {
    padding-right: 5px;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumbs__item {
    display: none;
  }
  .breadcrumbs__item.breadcrumbs__item--mobile {
    display: block;
  }
  .breadcrumbs__item.breadcrumbs__item--mobile::before {
    content: "<";
  }
}
/* ==========================================================================
   Global button styles
   ========================================================================== */
.button {
  align-items: center;
  -webkit-appearance: none;
  appearance: 0;
  background-color: var(--color-link);
  border-radius: 0;
  border: 0;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.25;
  padding: 8px 24px;
  transition: all 150ms;
  position: relative;
}
.button span.scs-button-text::after {
  content: "➞";
  position: absolute;
  opacity: 0;
  top: 50%;
  margin-left: 5px;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.button:visited {
  color: var(--color-white);
}
.button:hover {
  background-color: var(--color-button-hover);
  color: var(--color-white);
  padding-right: 25px;
}
.button:hover > span:after {
  opacity: 1;
  transform: translate(0%, -50%);
}

.button--thick {
  align-items: center;
  -webkit-appearance: none;
  appearance: 0;
  background-color: var(--color-link);
  border-radius: 0;
  border: 0;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.25;
  padding: 8px 24px;
  transition: all 150ms;
  position: relative;
  padding: 14px 24px;
}
.button--thick span.scs-button-text::after {
  content: "➞";
  position: absolute;
  opacity: 0;
  top: 50%;
  margin-left: 5px;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.button--thick:visited {
  color: var(--color-white);
}
.button--thick:hover {
  background-color: var(--color-button-hover);
  color: var(--color-white);
  padding-right: 25px;
}
.button--thick:hover > span:after {
  opacity: 1;
  transform: translate(0%, -50%);
}

.button--black {
  align-items: center;
  -webkit-appearance: none;
  appearance: 0;
  background-color: var(--color-link);
  border-radius: 0;
  border: 0;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.25;
  padding: 8px 24px;
  transition: all 150ms;
  position: relative;
  background-color: var(--color-black);
}
.button--black span.scs-button-text::after {
  content: "➞";
  position: absolute;
  opacity: 0;
  top: 50%;
  margin-left: 5px;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.button--black:visited {
  color: var(--color-white);
}
.button--black:hover {
  background-color: var(--color-button-hover);
  color: var(--color-white);
  padding-right: 25px;
}
.button--black:hover > span:after {
  opacity: 1;
  transform: translate(0%, -50%);
}

.button--invert {
  align-items: center;
  -webkit-appearance: none;
  appearance: 0;
  background-color: var(--color-link);
  border-radius: 0;
  border: 0;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.25;
  padding: 8px 24px;
  transition: all 150ms;
  position: relative;
  background-color: var(--color-white);
  color: var(--color-black);
}
.button--invert span.scs-button-text::after {
  content: "➞";
  position: absolute;
  opacity: 0;
  top: 50%;
  margin-left: 5px;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.button--invert:visited {
  color: var(--color-white);
}
.button--invert:hover {
  background-color: var(--color-button-hover);
  color: var(--color-white);
  padding-right: 25px;
}
.button--invert:hover > span:after {
  opacity: 1;
  transform: translate(0%, -50%);
}
.button--invert:visited {
  color: var(--color-black);
}

.contact-cta {
  background-color: var(--color-black);
  color: var(--color-white);
  padding-bottom: 54px;
  padding-top: 54px;
  position: relative;
}

.contact-cta__container {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(936px + var(--padding-main) + var(--padding-main));
  padding-left: var(--padding-main);
  padding-right: var(--padding-main);
}

.contact-cta__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 720px) {
  .contact-cta__grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-cta__primary-heading {
  font-size: 49px;
  line-height: 1;
  margin-bottom: 24px;
}

.contact-cta__description {
  font-size: 20px;
  line-height: 1.25;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(var(--container-main) + var(--padding-main) + var(--padding-main));
  padding-left: var(--padding-main);
  padding-right: var(--padding-main);
}

.container-article {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(var(--container-article) + var(--padding-main) + var(--padding-main));
  padding-left: var(--padding-main);
  padding-right: var(--padding-main);
}

.container-article-body {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(var(--container-article-body) + var(--padding-main) + var(--padding-main));
  padding-left: var(--padding-main);
  padding-right: var(--padding-main);
}

/*!
 * Bootstrap Grid v5.2.3 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
/*
 :root {
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
}

// .container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  // padding-right: calc(var(--bs-gutter-x) * 0.5);
  // padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
.gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
.gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
.gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
.gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
.gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
.gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
.gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
.gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
.gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
.gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
.gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
.gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
.gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
.gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
.gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
.gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
.gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
.gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
.gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
.gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
.gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
.gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
.gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
.gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
.gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
.gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
.gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
.gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
.gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
.gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
.gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
.gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
.gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
.gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
.gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
.gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
.gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
.gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
.gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
.gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
.gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
.gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
.gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
.gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
.gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
.gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
.gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
.gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
.gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
.gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
.gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
.gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
.gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
.gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
.gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

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

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

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

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

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

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

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

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

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

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
*/
.elq-form {
  --form-max-width: 720px;
}
.elq-form .row {
  display: flex;
  margin-right: 0;
  margin-left: 0;
}
.elq-form .row + .row {
  margin-top: 40px;
}
.elq-form .row + .row:last-of-type {
  margin-top: 20px;
}
.elq-form .grid-layout-col {
  max-width: 100% !important;
  padding-right: 0px !important;
}
.elq-form .layout-col {
  width: 100%;
}
.elq-form .col,
.elq-form .col-1,
.elq-form .col-10,
.elq-form .col-11,
.elq-form .col-12,
.elq-form .col-2,
.elq-form .col-3,
.elq-form .col-4,
.elq-form .col-5,
.elq-form .col-6,
.elq-form .col-7,
.elq-form .col-8,
.elq-form .col-9,
.elq-form .col-auto,
.elq-form .col-lg,
.elq-form .col-lg-1,
.elq-form .col-lg-10,
.elq-form .col-lg-11,
.elq-form .col-lg-12,
.elq-form .col-lg-2,
.elq-form .col-lg-3,
.elq-form .col-lg-4,
.elq-form .col-lg-5,
.elq-form .col-lg-6,
.elq-form .col-lg-7,
.elq-form .col-lg-8,
.elq-form .col-lg-9,
.elq-form .col-lg-auto,
.elq-form .col-md,
.elq-form .col-md-1,
.elq-form .col-md-10,
.elq-form .col-md-11,
.elq-form .col-md-12,
.elq-form .col-md-2,
.elq-form .col-md-3,
.elq-form .col-md-4,
.elq-form .col-md-5,
.elq-form .col-md-6,
.elq-form .col-md-7,
.elq-form .col-md-8,
.elq-form .col-md-9,
.elq-form .col-md-auto,
.elq-form .col-sm,
.elq-form .col-sm-1,
.elq-form .col-sm-10,
.elq-form .col-sm-11,
.elq-form .col-sm-12,
.elq-form .col-sm-2,
.elq-form .col-sm-3,
.elq-form .col-sm-4,
.elq-form .col-sm-5,
.elq-form .col-sm-6,
.elq-form .col-sm-7,
.elq-form .col-sm-8,
.elq-form .col-sm-9,
.elq-form .col-sm-auto,
.elq-form .col-xl,
.elq-form .col-xl-1,
.elq-form .col-xl-10,
.elq-form .col-xl-11,
.elq-form .col-xl-12,
.elq-form .col-xl-2,
.elq-form .col-xl-3,
.elq-form .col-xl-4,
.elq-form .col-xl-5,
.elq-form .col-xl-6,
.elq-form .col-xl-7,
.elq-form .col-xl-8,
.elq-form .col-xl-9,
.elq-form .col-xl-auto,
.elq-form .col-xs-4,
.elq-form .col-xs-8,
.elq-form .col-xs-12 {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.elq-form .grid-layout-col:first-child:last-child .col-xs-8 {
  max-width: calc(var(--form-max-width) * 0.75);
}
.elq-form .grid-layout-col:first-child:last-child .col-xs-4 {
  max-width: calc(var(--form-max-width) * 0.5);
}
.elq-form .field-control-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  width: 100%;
}
.elq-form input[type=checkbox] {
  display: none;
}
.elq-form input[type=checkbox] + .elq-item-label {
  cursor: pointer;
  font-family: var(--font-sans);
  line-height: 1.23;
  padding-left: 0;
  position: relative;
  vertical-align: middle;
}
.elq-form input[type=checkbox] + .elq-item-label::before {
  background-color: var(--color-white, #ffffff);
  content: "";
  display: inline-block;
  height: 24px;
  margin-right: 17px;
  position: relative;
  top: 5px;
  width: 24px;
}
.elq-form input[type=checkbox] + .elq-item-label::after {
  background-color: var(--color-black, #000000);
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  position: absolute;
  left: 2px;
  top: 7px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 125ms;
}
.elq-form input[type=checkbox]:checked + .elq-item-label::after {
  opacity: 1;
}
.elq-form .submit-button-style {
  align-items: center;
  -webkit-appearance: none;
  appearance: 0;
  background-color: var(--color-link);
  border-radius: 0;
  border: 0;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.25;
  padding: 8px 24px;
  transition: all 150ms;
  position: relative;
  background-color: var(--color-black);
}
.elq-form .submit-button-style span.scs-button-text::after {
  content: "➞";
  position: absolute;
  opacity: 0;
  top: 50%;
  margin-left: 5px;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.elq-form .submit-button-style:visited {
  color: var(--color-white);
}
.elq-form .submit-button-style:hover {
  background-color: var(--color-button-hover);
  color: var(--color-white);
  padding-right: 25px;
}
.elq-form .submit-button-style:hover > span:after {
  opacity: 1;
  transform: translate(0%, -50%);
}

.form-element-instruction {
  font-style: italic;
  font-size: 13px;
  opacity: 0.9;
}

.elq-item-input,
.elq-item-textarea {
  font-family: var(--font-serif);
  font-size: 13px;
  line-height: 1.5;
  padding: 18px 24px 17px 24px;
  border: none;
  appearance: none;
  display: inline-block;
  margin-bottom: 10px;
}

.elq-item-select {
  font-family: var(--font-serif);
  font-size: 13px;
  width: auto !important;
  padding: 8px 14px 7px 14px;
  margin-bottom: 10px;
}

.elq-item-label {
  font-size: 13px;
  font-family: var(--font-serif);
  margin-bottom: 0;
  padding-left: 6px;
}

.page-section--background-white .elq-item-input,
.page-section--background-white .elq-item-textarea {
  background-color: var(--color-neutral);
}

.elq-form .elq-required {
  color: red !important;
  display: inline;
  float: none;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.elq-form #elq-FormLastRow {
  position: absolute;
  left: -80%;
  top: -80%;
}

.elq-form .elq-label {
  display: inline-block;
  max-width: 100%;
  font-weight: 400;
  box-sizing: border-box;
  margin-bottom: 0;
}

.elq-form .elq-label-top {
  padding-bottom: 3px;
}

.elq-form .list-order {
  margin-left: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.elq-form .one-column {
  width: 100%;
  clear: both;
}

.elq-form .two-column {
  float: left;
  width: 38%;
}

.elq-form .three-column {
  float: left;
  width: 30%;
}

.elq-form .row.single-checkbox-row {
  margin-left: 0;
}

.elq-form .elq-field-style {
  padding-bottom: 10px;
}

.elq-form .elq-field-style input[type=submit] {
  -webkit-appearance: square-button;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.elq-form .loader {
  vertical-align: middle;
  display: inline-block;
  margin-left: 10px;
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top: 3px solid #3498db;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.elq-form a {
  color: #337ab7;
  text-decoration: none;
}

.elq-form a:focus,
.elq-form a:hover {
  color: #23527c;
  text-decoration: underline;
}

.elq-form a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.elq-form figure {
  margin: 0;
}

.elq-form img {
  vertical-align: middle;
}

.elq-form .img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.elq-form .img-rounded {
  border-radius: 6px;
}

.elq-form .img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.elq-form .img-circle {
  border-radius: 50%;
}

.elq-form hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

.elq-form .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.elq-form .sr-only-focusable:active,
.elq-form .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.elq-form [role=button] {
  cursor: pointer;
}

.elq-form .col-xs-1 {
  width: 8.33333%;
}

.elq-form .col-xs-2 {
  width: 16.66667%;
}

.elq-form .col-xs-3 {
  width: 25%;
}

.elq-form .col-xs-4 {
  width: 33.33333%;
}

.elq-form .col-xs-5 {
  width: 41.66667%;
}

.elq-form .col-xs-6 {
  width: 50%;
}

.elq-form .col-xs-7 {
  width: 58.33333%;
}

.elq-form .col-xs-8 {
  width: 66.66667%;
}

.elq-form .col-xs-9 {
  width: 75%;
}

.elq-form .col-xs-10 {
  width: 83.33333%;
}

.elq-form .col-xs-11 {
  width: 91.66667%;
}

.elq-form .col-xs-12 {
  width: 100%;
}

.elq-form .col-xs-pull-0 {
  right: auto;
}

.elq-form .col-xs-pull-1 {
  right: 8.33333%;
}

.elq-form .col-xs-pull-2 {
  right: 16.66667%;
}

.elq-form .col-xs-pull-3 {
  right: 25%;
}

.elq-form .col-xs-pull-4 {
  right: 33.33333%;
}

.elq-form .col-xs-pull-5 {
  right: 41.66667%;
}

.elq-form .col-xs-pull-6 {
  right: 50%;
}

.elq-form .col-xs-pull-7 {
  right: 58.33333%;
}

.elq-form .col-xs-pull-8 {
  right: 66.66667%;
}

.elq-form .col-xs-pull-9 {
  right: 75%;
}

.elq-form .col-xs-pull-10 {
  right: 83.33333%;
}

.elq-form .col-xs-pull-11 {
  right: 91.66667%;
}

.elq-form .col-xs-pull-12 {
  right: 100%;
}

.elq-form .col-xs-push-0 {
  left: auto;
}

.elq-form .col-xs-push-1 {
  left: 8.33333%;
}

.elq-form .col-xs-push-2 {
  left: 16.66667%;
}

.elq-form .col-xs-push-3 {
  left: 25%;
}

.elq-form .col-xs-push-4 {
  left: 33.33333%;
}

.elq-form .col-xs-push-5 {
  left: 41.66667%;
}

.elq-form .col-xs-push-6 {
  left: 50%;
}

.elq-form .col-xs-push-7 {
  left: 58.33333%;
}

.elq-form .col-xs-push-8 {
  left: 66.66667%;
}

.elq-form .col-xs-push-9 {
  left: 75%;
}

.elq-form .col-xs-push-10 {
  left: 83.33333%;
}

.elq-form .col-xs-push-11 {
  left: 91.66667%;
}

.elq-form .col-xs-push-12 {
  left: 100%;
}

.elq-form .col-xs-offset-0 {
  margin-left: 0;
}

.elq-form .col-xs-offset-1 {
  margin-left: 8.33333%;
}

.elq-form .col-xs-offset-2 {
  margin-left: 16.66667%;
}

.elq-form .col-xs-offset-3 {
  margin-left: 25%;
}

.elq-form .col-xs-offset-4 {
  margin-left: 33.33333%;
}

.elq-form .col-xs-offset-5 {
  margin-left: 41.66667%;
}

.elq-form .col-xs-offset-6 {
  margin-left: 50%;
}

.elq-form .col-xs-offset-7 {
  margin-left: 58.33333%;
}

.elq-form .col-xs-offset-8 {
  margin-left: 66.66667%;
}

.elq-form .col-xs-offset-9 {
  margin-left: 75%;
}

.elq-form .col-xs-offset-10 {
  margin-left: 83.33333%;
}

.elq-form .col-xs-offset-11 {
  margin-left: 91.66667%;
}

.elq-form .col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .elq-form .col-sm-1,
  .elq-form .col-sm-2,
  .elq-form .col-sm-3,
  .elq-form .col-sm-4,
  .elq-form .col-sm-5,
  .elq-form .col-sm-6,
  .elq-form .col-sm-7,
  .elq-form .col-sm-8,
  .elq-form .col-sm-9,
  .elq-form .col-sm-10,
  .elq-form .col-sm-11,
  .elq-form .col-sm-12 {
    float: left;
  }
  .elq-form .col-sm-1 {
    width: 8.33333%;
  }
  .elq-form .col-sm-2 {
    width: 16.66667%;
  }
  .elq-form .col-sm-3 {
    width: 25%;
  }
  .elq-form .col-sm-4 {
    width: 33.33333%;
  }
  .elq-form .col-sm-5 {
    width: 41.66667%;
  }
  .elq-form .col-sm-6 {
    width: 50%;
  }
  .elq-form .col-sm-7 {
    width: 58.33333%;
  }
  .elq-form .col-sm-8 {
    width: 66.66667%;
  }
  .elq-form .col-sm-9 {
    width: 75%;
  }
  .elq-form .col-sm-10 {
    width: 83.33333%;
  }
  .elq-form .col-sm-11 {
    width: 91.66667%;
  }
  .elq-form .col-sm-12 {
    width: 100%;
  }
  .elq-form .col-sm-pull-0 {
    right: auto;
  }
  .elq-form .col-sm-pull-1 {
    right: 8.33333%;
  }
  .elq-form .col-sm-pull-2 {
    right: 16.66667%;
  }
  .elq-form .col-sm-pull-3 {
    right: 25%;
  }
  .elq-form .col-sm-pull-4 {
    right: 33.33333%;
  }
  .elq-form .col-sm-pull-5 {
    right: 41.66667%;
  }
  .elq-form .col-sm-pull-6 {
    right: 50%;
  }
  .elq-form .col-sm-pull-7 {
    right: 58.33333%;
  }
  .elq-form .col-sm-pull-8 {
    right: 66.66667%;
  }
  .elq-form .col-sm-pull-9 {
    right: 75%;
  }
  .elq-form .col-sm-pull-10 {
    right: 83.33333%;
  }
  .elq-form .col-sm-pull-11 {
    right: 91.66667%;
  }
  .elq-form .col-sm-pull-12 {
    right: 100%;
  }
  .elq-form .col-sm-push-0 {
    left: auto;
  }
  .elq-form .col-sm-push-1 {
    left: 8.33333%;
  }
  .elq-form .col-sm-push-2 {
    left: 16.66667%;
  }
  .elq-form .col-sm-push-3 {
    left: 25%;
  }
  .elq-form .col-sm-push-4 {
    left: 33.33333%;
  }
  .elq-form .col-sm-push-5 {
    left: 41.66667%;
  }
  .elq-form .col-sm-push-6 {
    left: 50%;
  }
  .elq-form .col-sm-push-7 {
    left: 58.33333%;
  }
  .elq-form .col-sm-push-8 {
    left: 66.66667%;
  }
  .elq-form .col-sm-push-9 {
    left: 75%;
  }
  .elq-form .col-sm-push-10 {
    left: 83.33333%;
  }
  .elq-form .col-sm-push-11 {
    left: 91.66667%;
  }
  .elq-form .col-sm-push-12 {
    left: 100%;
  }
  .elq-form .col-sm-offset-0 {
    margin-left: 0;
  }
  .elq-form .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .elq-form .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .elq-form .col-sm-offset-3 {
    margin-left: 25%;
  }
  .elq-form .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  .elq-form .col-sm-offset-5 {
    margin-left: 41.66667%;
  }
  .elq-form .col-sm-offset-6 {
    margin-left: 50%;
  }
  .elq-form .col-sm-offset-7 {
    margin-left: 58.33333%;
  }
  .elq-form .col-sm-offset-8 {
    margin-left: 66.66667%;
  }
  .elq-form .col-sm-offset-9 {
    margin-left: 75%;
  }
  .elq-form .col-sm-offset-10 {
    margin-left: 83.33333%;
  }
  .elq-form .col-sm-offset-11 {
    margin-left: 91.66667%;
  }
  .elq-form .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .elq-form .col-md-1,
  .elq-form .col-md-2,
  .elq-form .col-md-3,
  .elq-form .col-md-4,
  .elq-form .col-md-5,
  .elq-form .col-md-6,
  .elq-form .col-md-7,
  .elq-form .col-md-8,
  .elq-form .col-md-9,
  .elq-form .col-md-10,
  .elq-form .col-md-11,
  .elq-form .col-md-12 {
    float: left;
  }
  .elq-form .col-md-1 {
    width: 8.33333%;
  }
  .elq-form .col-md-2 {
    width: 16.66667%;
  }
  .elq-form .col-md-3 {
    width: 25%;
  }
  .elq-form .col-md-4 {
    width: 33.33333%;
  }
  .elq-form .col-md-5 {
    width: 41.66667%;
  }
  .elq-form .col-md-6 {
    width: 50%;
  }
  .elq-form .col-md-7 {
    width: 58.33333%;
  }
  .elq-form .col-md-8 {
    width: 66.66667%;
  }
  .elq-form .col-md-9 {
    width: 75%;
  }
  .elq-form .col-md-10 {
    width: 83.33333%;
  }
  .elq-form .col-md-11 {
    width: 91.66667%;
  }
  .elq-form .col-md-12 {
    width: 100%;
  }
  .elq-form .col-md-pull-0 {
    right: auto;
  }
  .elq-form .col-md-pull-1 {
    right: 8.33333%;
  }
  .elq-form .col-md-pull-2 {
    right: 16.66667%;
  }
  .elq-form .col-md-pull-3 {
    right: 25%;
  }
  .elq-form .col-md-pull-4 {
    right: 33.33333%;
  }
  .elq-form .col-md-pull-5 {
    right: 41.66667%;
  }
  .elq-form .col-md-pull-6 {
    right: 50%;
  }
  .elq-form .col-md-pull-7 {
    right: 58.33333%;
  }
  .elq-form .col-md-pull-8 {
    right: 66.66667%;
  }
  .elq-form .col-md-pull-9 {
    right: 75%;
  }
  .elq-form .col-md-pull-10 {
    right: 83.33333%;
  }
  .elq-form .col-md-pull-11 {
    right: 91.66667%;
  }
  .elq-form .col-md-pull-12 {
    right: 100%;
  }
  .elq-form .col-md-push-0 {
    left: auto;
  }
  .elq-form .col-md-push-1 {
    left: 8.33333%;
  }
  .elq-form .col-md-push-2 {
    left: 16.66667%;
  }
  .elq-form .col-md-push-3 {
    left: 25%;
  }
  .elq-form .col-md-push-4 {
    left: 33.33333%;
  }
  .elq-form .col-md-push-5 {
    left: 41.66667%;
  }
  .elq-form .col-md-push-6 {
    left: 50%;
  }
  .elq-form .col-md-push-7 {
    left: 58.33333%;
  }
  .elq-form .col-md-push-8 {
    left: 66.66667%;
  }
  .elq-form .col-md-push-9 {
    left: 75%;
  }
  .elq-form .col-md-push-10 {
    left: 83.33333%;
  }
  .elq-form .col-md-push-11 {
    left: 91.66667%;
  }
  .elq-form .col-md-push-12 {
    left: 100%;
  }
  .elq-form .col-md-offset-0 {
    margin-left: 0;
  }
  .elq-form .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .elq-form .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .elq-form .col-md-offset-3 {
    margin-left: 25%;
  }
  .elq-form .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  .elq-form .col-md-offset-5 {
    margin-left: 41.66667%;
  }
  .elq-form .col-md-offset-6 {
    margin-left: 50%;
  }
  .elq-form .col-md-offset-7 {
    margin-left: 58.33333%;
  }
  .elq-form .col-md-offset-8 {
    margin-left: 66.66667%;
  }
  .elq-form .col-md-offset-9 {
    margin-left: 75%;
  }
  .elq-form .col-md-offset-10 {
    margin-left: 83.33333%;
  }
  .elq-form .col-md-offset-11 {
    margin-left: 91.66667%;
  }
  .elq-form .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .elq-form .col-lg-1,
  .elq-form .col-lg-2,
  .elq-form .col-lg-3,
  .elq-form .col-lg-4,
  .elq-form .col-lg-5,
  .elq-form .col-lg-6,
  .elq-form .col-lg-7,
  .elq-form .col-lg-8,
  .elq-form .col-lg-9,
  .elq-form .col-lg-10,
  .elq-form .col-lg-11,
  .elq-form .col-lg-12 {
    float: left;
  }
  .elq-form .col-lg-1 {
    width: 8.33333%;
  }
  .elq-form .col-lg-2 {
    width: 16.66667%;
  }
  .elq-form .col-lg-3 {
    width: 25%;
  }
  .elq-form .col-lg-4 {
    width: 33.33333%;
  }
  .elq-form .col-lg-5 {
    width: 41.66667%;
  }
  .elq-form .col-lg-6 {
    width: 50%;
  }
  .elq-form .col-lg-7 {
    width: 58.33333%;
  }
  .elq-form .col-lg-8 {
    width: 66.66667%;
  }
  .elq-form .col-lg-9 {
    width: 75%;
  }
  .elq-form .col-lg-10 {
    width: 83.33333%;
  }
  .elq-form .col-lg-11 {
    width: 91.66667%;
  }
  .elq-form .col-lg-12 {
    width: 100%;
  }
  .elq-form .col-lg-pull-0 {
    right: auto;
  }
  .elq-form .col-lg-pull-1 {
    right: 8.33333%;
  }
  .elq-form .col-lg-pull-2 {
    right: 16.66667%;
  }
  .elq-form .col-lg-pull-3 {
    right: 25%;
  }
  .elq-form .col-lg-pull-4 {
    right: 33.33333%;
  }
  .elq-form .col-lg-pull-5 {
    right: 41.66667%;
  }
  .elq-form .col-lg-pull-6 {
    right: 50%;
  }
  .elq-form .col-lg-pull-7 {
    right: 58.33333%;
  }
  .elq-form .col-lg-pull-8 {
    right: 66.66667%;
  }
  .elq-form .col-lg-pull-9 {
    right: 75%;
  }
  .elq-form .col-lg-pull-10 {
    right: 83.33333%;
  }
  .elq-form .col-lg-pull-11 {
    right: 91.66667%;
  }
  .elq-form .col-lg-pull-12 {
    right: 100%;
  }
  .elq-form .col-lg-push-0 {
    left: auto;
  }
  .elq-form .col-lg-push-1 {
    left: 8.33333%;
  }
  .elq-form .col-lg-push-2 {
    left: 16.66667%;
  }
  .elq-form .col-lg-push-3 {
    left: 25%;
  }
  .elq-form .col-lg-push-4 {
    left: 33.33333%;
  }
  .elq-form .col-lg-push-5 {
    left: 41.66667%;
  }
  .elq-form .col-lg-push-6 {
    left: 50%;
  }
  .elq-form .col-lg-push-7 {
    left: 58.33333%;
  }
  .elq-form .col-lg-push-8 {
    left: 66.66667%;
  }
  .elq-form .col-lg-push-9 {
    left: 75%;
  }
  .elq-form .col-lg-push-10 {
    left: 83.33333%;
  }
  .elq-form .col-lg-push-11 {
    left: 91.66667%;
  }
  .elq-form .col-lg-push-12 {
    left: 100%;
  }
  .elq-form .col-lg-offset-0 {
    margin-left: 0;
  }
  .elq-form .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .elq-form .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .elq-form .col-lg-offset-3 {
    margin-left: 25%;
  }
  .elq-form .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .elq-form .col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  .elq-form .col-lg-offset-6 {
    margin-left: 50%;
  }
  .elq-form .col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  .elq-form .col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  .elq-form .col-lg-offset-9 {
    margin-left: 75%;
  }
  .elq-form .col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  .elq-form .col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  .elq-form .col-lg-offset-12 {
    margin-left: 100%;
  }
}
.LV_invalid_field,
input.LV_invalid_field:active,
input.LV_invalid_field:hover,
textarea.LV_invalid_field:active,
textarea.LV_invalid_field:hover {
  outline: 1px solid #c00;
}

.LV_validation_message {
  font-weight: 700;
  margin: 0 0 0 5px;
}

.LV_valid {
  display: none;
}

.LV_invalid {
  color: #c00;
  font-size: 10px;
}

.submit-button-style {
  padding: 7px 20px;
  border: 1px solid #979797;
  border-radius: 3px;
  background-color: #fff;
  color: #4a4a4a;
  cursor: pointer;
}

.checkbox-aligned {
  margin-left: 5px;
  display: inline;
}

.form-element-layout {
  padding: 5px 10px;
}

.form-element-instruction {
  font-size: 10px;
}

.form-element-form-text {
  margin: 0;
}

.form-field-visible-xs-block {
  display: none;
}

.elq-form-design-field .list-order input[type=radio] {
  margin-left: 1px;
}

@media (max-width: 767px) {
  .form-field-visible-xs-block {
    display: block;
  }
}
.form-field-hidden-xs {
  display: block;
}

@media (max-width: 767px) {
  .form-field-hidden-xs {
    display: none;
  }
}
.custom-overlay {
  margin-left: 2px;
  background: #fff;
  box-shadow: 0 0 4px 0 #777;
  border-radius: 2px;
  max-width: 256px;
}

.elq-form .container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.elq-form .container:after,
.elq-form .container:before {
  display: table;
  content: " ";
}

.elq-form .container:after {
  clear: both;
}

@media (min-width: 768px) {
  .elq-form .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .elq-form .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .elq-form .container {
    width: 1170px;
  }
}
.elq-form .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.elq-form .container-fluid:after,
.elq-form .container-fluid:before {
  display: table;
  content: " ";
}

.elq-form .container-fluid:after {
  clear: both;
}

.elq-form .row {
  margin-right: -15px;
  margin-left: -15px;
}

.elq-form .row:after,
.elq-form .row:before {
  display: table;
  content: " ";
}

.elq-form .row:after {
  clear: both;
}

.elq-form .row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.elq-form .row-no-gutters [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.elq-form .col-lg-1,
.elq-form .col-lg-2,
.elq-form .col-lg-3,
.elq-form .col-lg-4,
.elq-form .col-lg-5,
.elq-form .col-lg-6,
.elq-form .col-lg-7,
.elq-form .col-lg-8,
.elq-form .col-lg-9,
.elq-form .col-lg-10,
.elq-form .col-lg-11,
.elq-form .col-lg-12,
.elq-form .col-md-1,
.elq-form .col-md-2,
.elq-form .col-md-3,
.elq-form .col-md-4,
.elq-form .col-md-5,
.elq-form .col-md-6,
.elq-form .col-md-7,
.elq-form .col-md-8,
.elq-form .col-md-9,
.elq-form .col-md-10,
.elq-form .col-md-11,
.elq-form .col-md-12,
.elq-form .col-sm-1,
.elq-form .col-sm-2,
.elq-form .col-sm-3,
.elq-form .col-sm-4,
.elq-form .col-sm-5,
.elq-form .col-sm-6,
.elq-form .col-sm-7,
.elq-form .col-sm-8,
.elq-form .col-sm-9,
.elq-form .col-sm-10,
.elq-form .col-sm-11,
.elq-form .col-sm-12,
.elq-form .col-xs-1,
.elq-form .col-xs-2,
.elq-form .col-xs-3,
.elq-form .col-xs-4,
.elq-form .col-xs-5,
.elq-form .col-xs-6,
.elq-form .col-xs-7,
.elq-form .col-xs-8,
.elq-form .col-xs-9,
.elq-form .col-xs-10,
.elq-form .col-xs-11,
.elq-form .col-xs-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.elq-form .col-xs-1,
.elq-form .col-xs-2,
.elq-form .col-xs-3,
.elq-form .col-xs-4,
.elq-form .col-xs-5,
.elq-form .col-xs-6,
.elq-form .col-xs-7,
.elq-form .col-xs-8,
.elq-form .col-xs-9,
.elq-form .col-xs-10,
.elq-form .col-xs-11,
.elq-form .col-xs-12 {
  float: left;
}

.elq-form .elq-item-label {
  max-width: 100%;
  font-weight: 400;
  box-sizing: border-box;
}

.elq-form .elq-item-textarea {
  resize: vertical;
  min-height: 48px;
  max-height: 360px;
  box-sizing: border-box;
}

.elq-form .row {
  display: inherit;
}

#NavContainer {
  position: sticky;
  top: 0;
  z-index: 1001;
}

.mega-nav {
  background-color: var(--color-neutral);
  box-shadow: 0 0 180px 100px rgba(0, 0, 0, 0);
  color: var(--color-black);
  font-size: 16px;
  left: 0;
  margin: 0;
  position: absolute;
  top: 76px;
  width: 100%;
  z-index: 15;
  display: block;
  overflow: hidden;
  max-height: 0px;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 1000px) {
  .mega-nav {
    box-shadow: none;
    background-color: transparent;
    display: block;
    height: calc(100vh - 62px);
    margin: 0;
    min-height: 100vh;
    overflow: scroll;
    padding-bottom: 55px;
    pointer-events: none;
    position: absolute;
    top: 62px;
    z-index: 10000;
  }
}
.mega-nav.active {
  pointer-events: initial;
}
.mega-nav.active .mega-nav__container {
  transform: translateX(0);
}

.mega-nav__container {
  display: flex;
  align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .mega-nav__container {
    flex-wrap: wrap;
    transform: translateX(110%);
    transition: transform 0.3s ease-out;
    background-color: white;
    padding: 0;
  }
}

.mega-nav__title-area {
  background-color: var(--color-white);
  flex-basis: 34.2%;
  flex-shrink: 1.5;
  max-width: 34.2%;
  padding-bottom: 93px;
  padding-right: 64px;
  padding-top: 84px;
  position: relative;
  width: 100%;
}
.mega-nav__title-area::before, .mega-nav__title-area::after {
  content: "";
  display: block;
  background-color: inherit;
  position: absolute;
  top: 0;
  left: 100%;
  width: calc((100vw - 1260px) / 2);
  height: 100%;
  pointer-events: none;
}
@media screen and (max-width: 1300px) {
  .mega-nav__title-area::before, .mega-nav__title-area::after {
    width: 20px;
  }
}
.mega-nav__title-area::before {
  left: auto;
  right: 100%;
}
.mega-nav__title-area::after {
  opacity: 0;
}
@media screen and (max-width: 1000px) {
  .mega-nav__title-area::after {
    opacity: 1;
  }
}
@media screen and (max-width: 1300px) {
  .mega-nav__title-area {
    padding-right: 2.55vw;
    flex-basis: 29%;
    max-width: 29%;
  }
}
@media screen and (max-width: 1000px) {
  .mega-nav__title-area {
    max-width: 100%;
    flex-basis: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .mega-nav__title-area {
    padding-bottom: 36px;
    padding-top: 39px;
    padding-left: var(--padding-main);
    padding-right: var(--padding-main);
  }
}

.mega-nav__primary-heading {
  font-size: 76px;
  line-height: 1;
  margin-bottom: 18px;
}
@media screen and (max-width: 1300px) {
  .mega-nav__primary-heading {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 29px;
  }
}
@media screen and (max-width: 600px) {
  .mega-nav__primary-heading {
    font-weight: 900;
    font-size: 39px;
    line-height: 1.25;
    margin-bottom: 13px;
  }
}

.mega-nav__description {
  margin-bottom: 54px;
}
@media screen and (max-width: 1300px) {
  .mega-nav__description {
    font-size: 13px;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 600px) {
  .mega-nav__description {
    margin-bottom: 21px;
  }
}
.mega-nav__description a[linktype=scs-link-sitepage] {
  display: block;
  margin-top: 64px;
  position: relative;
}
.mega-nav__description a[linktype=scs-link-sitepage]:after {
  content: url("../img/icon-arrow-right--blue.svg");
  margin-left: 10px;
}

.mega-nav__cta-link {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.mega-nav__cta-link::after {
  background-image: url("../img/icon-arrow-right--blue.svg");
  content: "";
  display: block;
  height: 9px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translate3d(-16px, 0, 0);
  transition: transform 150ms ease, opacity 150ms ease;
  top: calc(0.5em - 1px);
  right: -16px;
  width: 12px;
}
.mega-nav__cta-link::before {
  opacity: 0;
  background-color: var(--color-link-hover, #12A0E0);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  pointer-events: none;
  position: absolute;
  transform: opacity 150ms ease;
  width: 100%;
}
.mega-nav__cta-link:hover {
  text-decoration: none;
}
.mega-nav__cta-link:hover::before, .mega-nav__cta-link:hover::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.mega-nav__main {
  background-color: var(--color-neutral);
  display: flex;
  gap: 64px;
  padding: 64px;
  flex-basis: 65.8%;
  max-width: 65.8%;
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .mega-nav__main {
    padding-left: 4.4vw;
    flex-basis: 71%;
    max-width: 71%;
  }
}
@media screen and (max-width: 1000px) {
  .mega-nav__main {
    display: block;
    max-width: 100%;
    padding-left: 0;
    flex-basis: 100%;
    padding-top: 40px;
    padding-left: var(--padding-main);
    padding-right: var(--padding-main);
  }
}

.mega-nav__sub-heading {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .mega-nav__sub-heading {
    font-weight: 900;
    font-size: 18px;
    line-height: 1.25;
  }
}

.mega-nav__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-nav__menu-item + .mega-nav__menu-item {
  margin-top: 16px;
}

.mega-nav__menu-item-link {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: var(--color-black);
}
.mega-nav__menu-item-link::after {
  background-image: url("../img/icon-arrow-right--blue.svg");
  content: "";
  display: block;
  height: 9px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translate3d(-16px, 0, 0);
  transition: transform 150ms ease, opacity 150ms ease;
  top: calc(0.5em - 1px);
  right: -16px;
  width: 12px;
}
.mega-nav__menu-item-link::before {
  opacity: 0;
  background-color: var(--color-link-hover, #12A0E0);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  pointer-events: none;
  position: absolute;
  transform: opacity 150ms ease;
  width: 100%;
}
.mega-nav__menu-item-link:hover {
  text-decoration: none;
}
.mega-nav__menu-item-link:hover::before, .mega-nav__menu-item-link:hover::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.mega-nav__menu-item-link:visited {
  color: var(--color-black);
}
.mega-nav__menu-item-link:hover {
  color: var(--color-link-hover);
}

.mega-nav__card-grid {
  align-items: stretch;
  display: flex;
  gap: 9px;
}
@media screen and (max-width: 600px) {
  .mega-nav__card-grid {
    flex-direction: column;
  }
}

.mega-nav__card-grid-item {
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 840px) {
  .mega-nav__card-grid-item {
    max-width: 175px;
  }
}
@media screen and (max-width: 600px) {
  .mega-nav__card-grid-item {
    max-width: 100%;
  }
}

.mega-nav__card {
  height: 100%;
}
@media screen and (max-width: 600px) {
  .mega-nav__card {
    background-color: var(--color-white);
    padding: 13px 24px 9px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
  }
}

.mega-nav__card-image-link {
  color: var(--color-black);
  display: block;
  margin-bottom: 16px;
}

.mega-nav__card-image {
  display: block;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 600px) {
  .mega-nav__card-image {
    height: 67px;
    width: 63px;
    object-fit: cover;
    object-position: center;
  }
}

.mega-nav__card-heading {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.75;
}
@media screen and (max-width: 600px) {
  .mega-nav__card-heading {
    font-weight: 900;
    font-size: 16px;
    line-height: 1.1875;
  }
}

.mega-nav__card-heading-link {
  color: var(--color-black);
}
.mega-nav__card-heading-link:visited {
  color: var(--color-black);
}
.mega-nav__card-heading-link:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}

.mega-nav__card-description {
  font-size: 10px;
  line-height: 1.75;
  margin-top: 11px;
}
@media screen and (max-width: 670px) {
  .mega-nav__card-description {
    display: none;
  }
}

.mega-nav__card--fancy {
  background-color: var(--color-white);
}
@media screen and (max-width: 600px) {
  .mega-nav__card--fancy {
    background-color: transparent;
    padding: 0;
  }
}
.mega-nav__card--fancy .mega-nav__card-image-link {
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .mega-nav__card--fancy .mega-nav__card-image-link {
    display: none;
  }
}
.mega-nav__card--fancy .mega-nav__card-heading {
  font-family: var(--font-sans-alt);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.25;
  padding: 12px 21px 27px 21px;
}
@media screen and (max-width: 600px) {
  .mega-nav__card--fancy .mega-nav__card-heading {
    font-family: var(--font-sans);
    font-weight: 700;
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  .mega-nav__card--fancy .mega-nav__card-heading-link {
    color: var(--color-link);
    text-decoration: underline;
  }
}
.mega-nav__card--fancy .mega-nav__card-description {
  display: none;
}

.mega-nav__controls {
  background-color: var(--color-white);
  display: none;
  padding-bottom: 24px;
  padding-top: 23px;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .mega-nav__controls {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .mega-nav__controls {
    padding-left: var(--padding-main);
    padding-right: var(--padding-main);
    border-bottom: 2px solid var(--color-neutral);
  }
}

.mega-nav__controls-container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.mega-nav__back,
.mega-nav__close {
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.mega-nav__back {
  font-weight: 600;
  font-size: 13px;
  line-height: 125%;
}

.mega-nav--is-open {
  display: block;
  transition-delay: 0.5s;
  max-height: 600px;
  box-shadow: 0 0 180px 100px rgba(0, 0, 0, 0.2);
}

.mega-nav__column--featured-items {
  margin-left: auto;
  margin-right: 0;
  flex: 1;
  gap: 24px;
}
@media screen and (max-width: 1000px) {
  .mega-nav__column--featured-items {
    margin-left: 0;
  }
}

.mega-nav__featured-items {
  display: flex;
}
@media screen and (max-width: 1000px) {
  .mega-nav__featured-items {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .mega-nav__featured-item + .mega-nav__featured-item {
    margin-top: 5px;
  }
}

.mega-nav__solution,
.mega-nav__insight {
  margin-top: 0 !important;
  max-width: 200px;
}
@media screen and (max-width: 1000px) {
  .mega-nav__solution,
  .mega-nav__insight {
    width: 100%;
    max-width: none;
  }
}
.mega-nav__solution:first-child,
.mega-nav__insight:first-child {
  margin-right: 32px;
}
@media screen and (max-width: 1000px) {
  .mega-nav__solution:first-child,
  .mega-nav__insight:first-child {
    margin-right: 0;
  }
}

.mega-nav__solution-image-link,
.mega-nav__insight-image-link {
  display: flex;
  flex-direction: column;
}
.mega-nav__solution-image-link:hover,
.mega-nav__insight-image-link:hover {
  text-decoration: none;
}

.mega-nav__solution-title,
.mega-nav__insight-title {
  color: var(--color-black);
  font-size: 16px;
  font-family: var(--font-sans);
  margin-top: 24px;
  margin-bottom: 8px;
  order: 2;
}

.mega-nav__solution-image,
.mega-nav__insight-image {
  height: 160px;
  object-fit: cover;
  order: 1;
  width: 100%;
}

.mega-nav__solution-description,
.mega-nav__insight-description {
  color: var(--color-black);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 24px;
  order: 3;
}

@media screen and (max-width: 1000px) {
  .mega-nav__column + .mega-nav__column {
    margin-top: 15px;
  }
}

#mega-nav--industries .mega-nav__main .mega-nav__column:first-child {
  flex: 1;
}
#mega-nav--industries .mega-nav__main .mega-nav__column:last-child {
  flex: 2;
}

#mega-nav--investor-relations .mega-nav__column:nth-child(2) .mega-nav__featured-items {
  display: block;
}
#mega-nav--investor-relations .mega-nav__column:nth-child(2) .mega-nav__featured-item--links .mega-nav__event-and-presentation-title, #mega-nav--investor-relations .mega-nav__column:nth-child(2) .mega-nav__featured-item--links .mega-nav__news-item-title {
  color: var(--color-link);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  position: relative;
}
#mega-nav--investor-relations .mega-nav__column:nth-child(2) .mega-nav__featured-item--links .mega-nav__event-and-presentation-title:after, #mega-nav--investor-relations .mega-nav__column:nth-child(2) .mega-nav__featured-item--links .mega-nav__news-item-title:after {
  content: url("../img/icon-arrow-right--blue.svg");
  margin-left: 10px;
}

#mega-nav--solutions .mega-nav__column:nth-child(2) .mega-nav__featured-item--links .mega-nav__solution-title {
  color: var(--color-link);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  position: relative;
}
#mega-nav--solutions .mega-nav__column:nth-child(2) .mega-nav__featured-item--links .mega-nav__solution-title:after {
  content: url("../img/icon-arrow-right--blue.svg");
  margin-left: 10px;
}

.mobile-nav {
  background-color: transparent;
  display: none;
  height: 100vh;
  left: 0;
  margin: 0;
  position: absolute;
  pointer-events: none;
  overflow: hidden;
  top: 0;
  z-index: 10;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .mobile-nav {
    display: block;
  }
}
.mobile-nav.active {
  pointer-events: initial;
}
.mobile-nav.active .mobile-nav__controls {
  transform: translateX(0%);
}

.mobile-nav__main {
  background-color: var(--color-white);
  padding-bottom: 48px;
  padding-top: 44px;
}
@media screen and (max-width: 600px) {
  .mobile-nav__main {
    padding-left: var(--padding-main);
    padding-right: var(--padding-main);
  }
}

.mobile-nav__utility {
  flex: 1;
  align-self: stretch;
  justify-self: stretch;
  background-color: var(--color-neutral);
  padding-bottom: 55px;
  padding-top: 55px;
}
@media screen and (max-width: 600px) {
  .mobile-nav__utility {
    padding-left: var(--padding-main);
    padding-right: var(--padding-main);
  }
}

.mobile-nav__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav__menu-item {
  display: flex;
  justify-content: space-between;
}

.mobile-nav__menu-item + .mobile-nav__menu-item {
  margin-top: 30px;
}

.mobile-nav__menu-item-link {
  color: var(--color-black);
}
.mobile-nav__menu-item-link:visited {
  color: var(--color-black);
}
.mobile-nav__menu-item-link:hover {
  color: var(--color-link-hover);
}
.mobile-nav__menu-item-link:hover path {
  stroke: var(--color-link-hover);
}

.mobile-nav__menu-item-link--has-mega-nav {
  display: inline-block;
  align-items: center;
  gap: 0.33em;
}
.mobile-nav__menu-item-link--has-mega-nav .mobile-nav__indicator-arrow {
  display: inline-block;
}

.mobile-nav__indicator-arrow {
  position: relative;
  top: -1px;
}
@media screen and (max-width: 600px) {
  .mobile-nav__indicator-arrow {
    margin-left: auto;
  }
}

.mobile-nav__back {
  font-size: 16px;
  line-height: 30px;
  display: none;
}

.mobile-nav__controls {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: scroll;
  position: relative;
  transition: transform 0.3s ease-out;
  transform: translateX(100%);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mobile-nav__controls {
    border-bottom: 2px solid var(--color-neutral);
  }
}

.mobile-nav__controls-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-top: 23px;
  gap: 24px;
  width: 100%;
}

.mobile-nav__close button {
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

@media screen and (max-width: 1000px) {
  html.nav-is-open .mobile-nav {
    display: flex;
    overflow-y: scroll;
    position: fixed;
    transform: translate3d(0, 0, 0);
  }
}

body > .row {
  margin-left: 0;
  margin-right: 0;
}

.footer {
  background-color: white;
  padding: 70px 0;
}

.footer__container {
  padding: 0;
  max-width: 100%;
  background-color: var(--color-white);
}
@media screen and (max-width: 720px) {
  .footer__container {
    padding: 40px 20px 0;
  }
}

@media screen and (max-width: 720px) {
  .footer__row--navs {
    display: none;
  }
}

@media screen and (min-width: 720px) {
  .footer__row--navs__mobile {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 700;
  }
}

.footer__logo {
  padding-right: 75px;
  display: flex;
  gap: 75px;
}
@media screen and (max-width: 800px) {
  .footer__logo {
    margin-bottom: 20px;
  }
}

.footer_logo-image {
  display: flex;
  height: 30px;
  width: 30px;
  flex-direction: row;
  justify-content: space-between;
}

.footer__row {
  display: flex;
  padding: 70px 75px 0;
}

@media screen and (max-width: 800px) {
  .footer__row--navs {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    display: none;
  }
}

.footer__row--navs__mobile {
  display: none;
}
@media screen and (max-width: 800px) {
  .footer__row--navs__mobile {
    flex-direction: row;
    padding-top: 0;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    gap: 1rem;
  }
  .footer__row--navs__mobile .footer__navigation {
    gap: 0;
  }
  .footer__row--navs__mobile .footer__navigation .footer__socials {
    display: flex;
    margin-bottom: 1rem;
    width: 100%;
  }
  .footer__row--navs__mobile .footer__navigation ul.footer__navigation-menu {
    flex: initial;
    padding-right: 10px;
  }
  .footer__row--navs__mobile .footer__navigation ul.footer__navigation-menu .footer__navigation-menu-item--title {
    margin-bottom: 12px;
  }
  .footer__row--navs__mobile .footer__navigation-menu-link {
    font-size: 1rem;
  }
  .footer__row--navs__mobile .footer__logo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 0;
  }
  .footer__row--navs__mobile .footer__logo .footer__socials {
    display: flex;
    flex-direction: row;
  }
  .footer__row--navs__mobile .footer__navigation.footer-additional {
    width: 100%;
    padding-left: 0;
  }
}

.footer__row--utility {
  justify-content: space-around;
  margin-top: 100px;
  padding: 30px;
  background-color: var(--color-neutral);
}
@media screen and (max-width: 720px) {
  .footer__row--utility {
    flex-direction: column-reverse;
    margin-top: 48px;
  }
}

.footer__navigation {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 20px 75px;
}
@media screen and (max-width: 720px) {
  .footer__navigation {
    gap: 20px;
  }
}

.footer__navigation-menu-item {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 20px;
}

@media screen and (max-width: 720px) {
  .footer__navigation-menu-item:not(.footer__navigation-menu-item--title) {
    display: none;
  }
}

.footer__navigation-menu-item--title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
}
@media screen and (max-width: 720px) {
  .footer__navigation-menu-item--title {
    font-size: 20px;
    min-width: 94px;
  }
}

.footer__navigation-menu-link:visited:hover {
  color: var(--color-quad-blue);
}

.footer__navigation-menu-link,
.footer__navigation-menu-link:visited {
  color: var(--color-black);
}

ul.footer__navigation-menu {
  flex: 1;
}

.footer__navigation-menu {
  color: var(--color-black);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__alt-nav {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 720px) {
  .footer__alt-nav {
    flex-wrap: wrap;
  }
}

.footer__alt-nav-link,
.footer__alt-nav-link:hover,
.footer__alt-nav-link:visited {
  font-size: 13px;
  color: var(--color-black);
}

.footer_alt-nav-divider {
  margin: 0 5px;
}

.footer__copyright {
  font-size: 13px;
  align-items: center;
  display: flex;
}
@media screen and (max-width: 720px) {
  .footer__copyright {
    margin-bottom: 11px;
    margin-top: 0;
    width: 100%;
  }
}

.footer__socials__logo {
  display: none;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 720px) {
  .footer__socials__logo {
    display: flex;
  }
}

.footer__socials {
  align-items: center;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 720px) {
  .footer__socials {
    margin-bottom: 48px;
    display: none;
  }
}

.footer__socials-item {
  margin: 0 10px;
}

.footer__socials-icon {
  height: 25px;
  width: 25px;
}
.footer__socials-icon--facebook {
  height: 22px;
  top: -2px;
  position: relative;
}

.footer__socials-icon:hover {
  fill: var(--color-quad-blue);
}

.footer__socials-img:hover {
  fill: var(--color-quad-blue);
}

.ot-sdk-show-settings {
  appearance: none !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-size: 13px !important;
  color: var(--color-black) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}
.ot-sdk-show-settings:hover {
  color: var(--color-black) !important;
  text-decoration: underline !important;
}
.ot-sdk-show-settings:focus {
  outline: none !important;
}

.header {
  background-color: var(--color-black, black);
  color: var(--color-white, white);
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .header {
    padding: 16px 0;
  }
}
.header .menu-item > a {
  color: var(--color-white, white);
}

.header__container {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 1040px) {
  .header__container {
    gap: 20px;
  }
}

.header__logo, .mobile-nav__logo {
  flex-shrink: 0;
  padding-left: 4px;
}

.header_logo-image {
  display: block;
  height: 30px;
  width: auto;
}

.header__menu.navigation {
  align-items: center;
  display: flex;
  list-style: none;
  margin: 0;
  margin-right: 3vw;
  margin-left: 3vw;
  padding: 0;
}
@media screen and (max-width: 1050px) {
  .header__menu.navigation {
    margin-left: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .header__menu.navigation {
    display: none;
  }
}

.header__menu-item {
  font-size: 13px;
}
.header__menu-item > a {
  display: block;
  padding: 28.5px 26.5px;
  position: relative;
}
@media screen and (max-width: 1118px) {
  .header__menu-item > a {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1050px) {
  .header__menu-item > a {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.header__menu-item > a:after {
  background-color: var(--color-quad-yellow);
  bottom: 0;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  transition: height 0.3s ease-out;
  width: 100%;
}
.header__menu-item > a:hover {
  text-decoration: none;
}
.header__menu-item > a:hover:after {
  height: 2px;
}

.header__menu.utility {
  align-items: center;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1040px) {
  .header__menu.utility {
    gap: 2vw;
  }
}
@media screen and (max-width: 1000px) {
  .header__menu.utility {
    display: none;
  }
}

.header__search {
  margin-left: auto;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .header__search {
    margin-left: auto;
  }
}
.header__search .header__search-icon--open {
  display: block;
}
.header__search .header__search-icon--close {
  display: none;
}
@media screen and (max-width: 1000px) {
  .header__search .header__search-icon--close {
    transform: translateY(5px);
  }
}
.header__search.active .header__search-icon--open {
  display: none;
}
.header__search.active .header__search-icon--close {
  display: block;
}

.header__hamburger-toggle {
  appearance: none;
  background: none;
  border-radius: 0;
  border: none;
  display: none;
  height: 18px;
  padding: 0;
  width: 27px;
}
@media screen and (max-width: 1000px) {
  .header__hamburger-toggle {
    display: block;
  }
}

.logocontainer .scs-title-text {
  color: var(--color-white, white);
}

.bg-image-full {
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

html.nav-is-open {
  height: 100%;
  overflow: hidden;
}

.header__search-menu {
  background-color: var(--color-white);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  left: calc(var(--padding-main) - 20px);
  padding: 24px 0;
  position: absolute;
  top: 76.5px;
  transform: translateY(-220%);
  transition: transform 0.3s ease-out;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .header__search-menu {
    top: 62.5px;
  }
}
.header__search-menu.active {
  transform: translateY(0);
}

.header_search-form h4 {
  visibility: hidden;
  height: 0;
  display: block;
}
@media screen and (max-width: 1000px) {
  .header_search-form h4 {
    visibility: visible;
    color: black;
  }
}

.header__search-form-container {
  align-items: center;
  background-color: var(--color-neutral);
  display: flex;
  margin: 0 auto;
  padding: 25px 20px;
  width: 576px;
}
@media screen and (max-width: 1000px) {
  .header__search-form-container {
    flex-direction: row-reverse;
    padding: 10px 13px;
    width: 100%;
  }
  .header__search-form-container h4 {
    visibility: visible;
    color: black;
  }
}
.header__search-form-container input {
  border: none;
  background-color: var(--color-neutral);
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.5em;
  margin: 0 24px;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .header__search-form-container input {
    margin-left: 0;
  }
}
.header__search-form-container button {
  background-color: transparent;
  border: none;
  margin-left: auto;
}
.header__search-form-container button > svg path {
  fill: #737373;
}
@media screen and (max-width: 1000px) {
  .header__search-form-container button > svg path {
    margin-left: auto;
    margin-right: 0;
  }
}
.header__search-form-container button.search-text {
  align-items: center;
  -webkit-appearance: none;
  appearance: 0;
  background-color: var(--color-link);
  border-radius: 0;
  border: 0;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.25;
  padding: 8px 24px;
  transition: all 150ms;
  position: relative;
}
.header__search-form-container button.search-text span.scs-button-text::after {
  content: "➞";
  position: absolute;
  opacity: 0;
  top: 50%;
  margin-left: 5px;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.header__search-form-container button.search-text:visited {
  color: var(--color-white);
}
.header__search-form-container button.search-text:hover {
  background-color: var(--color-button-hover);
  color: var(--color-white);
  padding-right: 25px;
}
.header__search-form-container button.search-text:hover > span:after {
  opacity: 1;
  transform: translate(0%, -50%);
}
@media screen and (max-width: 1000px) {
  .header__search-form-container button.search-text {
    display: none;
  }
}

.wysiwyg-content > :first-child {
  margin-top: 0;
}
.wysiwyg-content > :last-child {
  margin-bottom: 0;
}
.wysiwyg-content img {
  height: auto;
  max-width: 100%;
}
.wysiwyg-content .button {
  margin: 1em 0;
}
.wysiwyg-content .button + .button {
  margin-left: 1em;
}
.wysiwyg-content .alignright {
  float: right;
  margin: 0 0 _em(40) _em(40);
  max-width: 50%;
}
.wysiwyg-content .alignleft {
  float: left;
  margin: 0 _em(40) _em(40) 0;
  max-width: 50%;
}
@media screen and (max-width: var(--breakpoint-xs)) {
  .wysiwyg-content .alignright,
  .wysiwyg-content .alignleft {
    float: none;
    margin: 0;
    max-width: 100%;
    width: auto;
  }
}
.wysiwyg-content table {
  border: 1px solid #333;
  width: 100%;
  /* tr:nth-child(even) td {
            background-color: #ccc;
        } */
}
.wysiwyg-content table th,
.wysiwyg-content table td {
  padding: _em(15) _em(30);
  text-align: left;
  vertical-align: top;
}
.wysiwyg-content table th {
  background-color: #333;
  border-right: 1px solid #fff;
  color: #fff;
  white-space: nowrap;
}
.wysiwyg-content .iframe-container {
  height: 0;
  margin-bottom: 1.4em;
  padding-top: 56.25%;
  position: relative;
}
.wysiwyg-content .iframe-container iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.scs-button .scs-button-button {
  align-items: center;
  -webkit-appearance: none;
  appearance: 0;
  background-color: var(--color-link);
  border-radius: 0;
  border: 0;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.25;
  padding: 8px 24px;
  transition: all 150ms;
  position: relative;
}
.scs-button .scs-button-button span.scs-button-text::after {
  content: "➞";
  position: absolute;
  opacity: 0;
  top: 50%;
  margin-left: 5px;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.scs-button .scs-button-button:visited {
  color: var(--color-white);
}
.scs-button .scs-button-button:hover {
  background-color: var(--color-button-hover);
  color: var(--color-white);
  padding-right: 25px;
}
.scs-button .scs-button-button:hover > span:after {
  opacity: 1;
  transform: translate(0%, -50%);
}

.scs-button--thick .scs-button-button {
  align-items: center;
  -webkit-appearance: none;
  appearance: 0;
  background-color: var(--color-link);
  border-radius: 0;
  border: 0;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.25;
  padding: 8px 24px;
  transition: all 150ms;
  position: relative;
  padding: 14px 24px;
}
.scs-button--thick .scs-button-button span.scs-button-text::after {
  content: "➞";
  position: absolute;
  opacity: 0;
  top: 50%;
  margin-left: 5px;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.scs-button--thick .scs-button-button:visited {
  color: var(--color-white);
}
.scs-button--thick .scs-button-button:hover {
  background-color: var(--color-button-hover);
  color: var(--color-white);
  padding-right: 25px;
}
.scs-button--thick .scs-button-button:hover > span:after {
  opacity: 1;
  transform: translate(0%, -50%);
}

.scs-button--black .scs-button-button {
  align-items: center;
  -webkit-appearance: none;
  appearance: 0;
  background-color: var(--color-link);
  border-radius: 0;
  border: 0;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.25;
  padding: 8px 24px;
  transition: all 150ms;
  position: relative;
  background-color: var(--color-black);
}
.scs-button--black .scs-button-button span.scs-button-text::after {
  content: "➞";
  position: absolute;
  opacity: 0;
  top: 50%;
  margin-left: 5px;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.scs-button--black .scs-button-button:visited {
  color: var(--color-white);
}
.scs-button--black .scs-button-button:hover {
  background-color: var(--color-button-hover);
  color: var(--color-white);
  padding-right: 25px;
}
.scs-button--black .scs-button-button:hover > span:after {
  opacity: 1;
  transform: translate(0%, -50%);
}

.scs-button--invert .scs-button-button {
  align-items: center;
  -webkit-appearance: none;
  appearance: 0;
  background-color: var(--color-link);
  border-radius: 0;
  border: 0;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 1.25;
  padding: 8px 24px;
  transition: all 150ms;
  position: relative;
  background-color: var(--color-white);
  color: var(--color-black);
}
.scs-button--invert .scs-button-button span.scs-button-text::after {
  content: "➞";
  position: absolute;
  opacity: 0;
  top: 50%;
  margin-left: 5px;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.scs-button--invert .scs-button-button:visited {
  color: var(--color-white);
}
.scs-button--invert .scs-button-button:hover {
  background-color: var(--color-button-hover);
  color: var(--color-white);
  padding-right: 25px;
}
.scs-button--invert .scs-button-button:hover > span:after {
  opacity: 1;
  transform: translate(0%, -50%);
}
.scs-button--invert .scs-button-button:visited {
  color: var(--color-black);
}

.scs-button-text {
  pointer-events: none;
}

.scs-component-container + .scs-component-container .scs-button-button {
  margin-top: 24px;
}

.scs-component-content {
  position: static !important;
}

.sl-tabs div.sl-tabs-pane {
  background-color: white;
  padding-left: 47px;
  padding-right: 47px;
  padding-top: 75px;
  padding-bottom: 75px;
}
.sl-tabs div.sl-tabs-pane .container-fluid {
  background: white;
  padding-bottom: 2rem;
}
@media screen and (max-width: 720px) {
  .sl-tabs div.sl-tabs-pane {
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .sl-tabs div.sl-tabs-pane .scs-paragraph-text {
    background-color: white;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.sl-tabs ul.sl-tabs-tablist {
  padding: 0;
}
.sl-tabs li.sl-tabs-tab {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  display: inline-flex;
  padding-bottom: 1rem;
  padding-top: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  height: inherit;
}
.sl-tabs li.sl-tabs-tab li.sl-tabs-tab.sl-tabs-inactive a span,
.sl-tabs li.sl-tabs-tab li.sl-tabs-tab.sl-tabs-active a span {
  color: var(--color-black) !important;
}
.sl-tabs .sl-tabs li .sl-tabs-tab .sl-tabs-active a span {
  color: var(--color-black) !important;
}
.sl-tabs li.sl-tabs-active {
  background-color: white !important;
  color: black;
}
.sl-tabs li.sl-tabs-inactive {
  background-color: transparent;
}

.sl-tabs .sl-tabs-tablist .sl-tabs-tab a span {
  color: var(--color-black) !important;
}

@media screen and (max-width: 720px) {
  .sl-tabs .sl-tabs-tablist {
    display: flex;
    flex-direction: row;
    width: calc(100% + 1px);
  }
  .sl-tabs .sl-tabs-tablist li.sl-tabs-tab {
    padding-left: 0;
    padding-right: 0;
    flex: 1;
    display: flex;
    justify-content: center;
  }
}
.scs-contentlist .sl-horizontal-row {
  gap: 24px;
}
@media screen and (max-width: 720px) {
  .scs-contentlist .sl-horizontal-row {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 720px) {
  .scs-contentlist .sl-horizontal-item {
    flex: initial;
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 500px) {
  .scs-contentlist .sl-horizontal-item {
    flex: initial;
    width: 100%;
  }
}

.scs-component.scs-divider {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

.scs-image .scs-image-caption {
  position: static;
  background-color: transparent;
  color: var(--color-black);
  font-size: 13px;
  line-height: 1.23;
  padding: 1em 0;
}

.scs-paragraph .scs-paragraph-text,
.scs-title .scs-title-text {
  overflow: initial;
  word-wrap: initial;
}

.scs-paragraph-text {
  font-size: 20px;
  line-height: 1.5;
  font-family: var(--font-sans);
}
.scs-paragraph-text > * {
  max-width: 960px;
  margin: 0 auto;
}
.scs-paragraph-text > *[style*="text-align: center"] {
  margin-left: auto;
  margin-right: auto;
}
.scs-paragraph-text > * + * {
  margin-top: 24px;
}
.scs-paragraph-text > :last-child {
  margin-bottom: 0;
}
.scs-paragraph-text h1 {
  font-size: 76px;
  line-height: 1 !important;
  margin-bottom: 48px !important;
}
@media screen and (max-width: 720px) {
  .scs-paragraph-text h1 {
    font-size: 42px;
    line-height: 42px !important;
  }
}
.scs-paragraph-text h2 {
  font-size: 61px;
  line-height: 1 !important;
  margin-bottom: 48px !important;
}
@media screen and (max-width: 720px) {
  .scs-paragraph-text h2 {
    font-size: 36px;
    line-height: 40px !important;
  }
}
.scs-paragraph-text h3 {
  font-size: 49px;
  line-height: 1 !important;
  margin-bottom: 24px !important;
}
@media screen and (max-width: 720px) {
  .scs-paragraph-text h3 {
    font-size: 30px;
    line-height: 36px !important;
  }
}
.scs-paragraph-text h4 {
  font-size: 39px;
  line-height: 1 !important;
}
@media screen and (max-width: 720px) {
  .scs-paragraph-text h4 {
    font-size: 25px;
    line-height: 32px !important;
  }
}
.scs-paragraph-text p,
.scs-paragraph-text ul,
.scs-paragraph-text ol {
  font-family: var(--font-sans);
}
@media screen and (max-width: 720px) {
  .scs-paragraph-text p,
  .scs-paragraph-text ul,
  .scs-paragraph-text ol {
    font-size: 16px;
    line-height: 24px !important;
  }
}

.scs-paragraph table tbody td {
  background: var(--color-white);
}
.scs-paragraph table thead th {
  background: var(--color-black);
  color: var(--color-white);
  font-size: 20px;
  font-weight: 800;
  border-left: 1px solid #e3e7ea;
}

.scs-youtube iframe {
  padding: 0 20px;
}

.sl-three-columns {
  gap: 24px;
}
@media screen and (max-width: 720px) {
  .sl-three-columns {
    flex-direction: column;
  }
}

.page-section--vertical-align .sl-three-columns {
  align-items: center;
}

.sl-two-columns {
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .sl-two-columns {
    flex-direction: column;
  }
}

.page-section--vertical-align .sl-two-columns {
  align-items: center;
}

/* template styles for post type single pages or specific page templates */
/* global media specific */
/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    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 for images, or javascript/internal links
   */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

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