@charset "UTF-8";
/**
 * Theme Variables - colors, font sizes, breakpoint etc.
 * All the variables will goes here based on project tech specification
 * DBS>Interactive
 */
/**
 * Fonts
 */
/**
 * Type style definitions
 */
html, body {
  color: #25303A;
  font-family: "Inter", "Verdana", "Helvetica", sans-serif;
  letter-spacing: 0.025em;
}

nav, h1, h2, h3, h4, h5, h6 {
  color: #25303A;
  font-family: "Inter", "Verdana", "Helvetica", sans-serif;
  font-weight: bold;
  line-height: 1.2;
}

/**
 * Slate Layout Mixins
 * DBS>Interactive
 */
/**
 * Default responsive padding mixin for layout content
 */
/**
 * Default responsive margin mixin for layout content
 */
/**
 * Used for mimicking the vertical space provided by the default-margin mixin, but
 * with padding for colored background layouts.
 */
/**
 * Mixin to keep space (either margin or padding) between cells consistent
 *
 * It takes 2 arguments:
 * 		@param $space_property = { 'margin'|'padding' }
 * 		@param $reverse = { true|false }
 */
/**
 * Responsive layout mixin to constrain a width to containSize.
 */
/**
 * Global Mixins
 * DBS>Interactive
 */
/**
 * Helpful mixin for font size scaling.
 *
 * Decimal values should not be used here!
 * The results will not be what you'd expect.
 *
 * @usage
 * 		@include font-scale(-1) - smaller
 * 		@include font-scale(0) = 1em (.8em in mobile)
 * 		@include font-scale(1) - larger
 * 			etc...
 */
/**
 * Fixes clear bug in certain situations
 *
 * @group layout
 * @link http://fuseinteractive.ca/blog/understanding-humble-clearfix#.VJ853sAEo Understanding the humble clearfix
 * @example scss - Usage
 *   @extend clearFix; // That's It!
 */
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

/**
 * An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
 *
 * @group Typography
 * @link http://web-design-weekly.com/2013/05/12/handy-sass-mixins/ Handy Sass Mixins
 * @example scss - Usage
 *   .text-truncate {
 *	  @extend text-truncate;
 *   }
 */
/**
 * Hide On Breakpoint
 *
 * @param {Variable} $bp - Breakpoint variable, ie $largeScreen
 * @param {String} $determinate ('min') - Whether it is max-width or min-width based
 * @group General
 * @link https://github.com/GumbyFramework/Gumby/blob/master/sass/functions/_visibility.scss Gumby Framework
 * @example scss - Basic Usage
 *   .class{
 *	  @include hideOn($largeScreen);
 *   }
 *
 * @example scss - Reversed Determinate
 *   @include hideOn($baby, 'max');
 */
/**
 * Show On Breakpoint
 *
 * @param {Variable} $bp - Breakpoint variable, ie $largeScreen
 * @param {String} $determinate ('min') - Whether it is max-width or min-width based
 * @group General
 * @link https://github.com/GumbyFramework/Gumby/blob/master/sass/functions/_visibility.scss Gumby Framework
 * @example scss - Basic Usage
 *   .class{
 *	  @include showOn($largeScreen);
 *   }
 *
 * @example scss - Reversed Determinate
 *   @include showOn($baby, 'max');
 */
/**
 * Size mixin - Sets width and height.
 *
 * When only one argument is specified, both the height and width are set to the same value.
 *
 * @param width - required
 * @param height
 */
/**
 * REFLEX ISH GRID
 */
/**
 * Exponent function
 *
 * NOTE: This does NOT work for decimal values
 *
 *   @see: https://css-tricks.com/snippets/sass/power-function/
 */
/**
 * Object Fit
 *
 * If a browser supports object-fit it will use it with the params
 * given. Otherwise it will fall back on a more basic image centering method.
 *
 * @param size - required (cover, contain, auto, etc.)
 * @param position - required (center, left, right, top, bottom right, etc.)
 */
/**
 * Aspect Ratio
 *
 * Used to create a padding box that an image/video can be placed in.
 *
 * Example @include aspect-ratio(16, 9);
 */
/*! 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 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  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;
}

/**
 * General styles and helpful classes
 * DBS>Interactive
 */
*,
*:after,
*:before,
input[type=search] {
  box-sizing: inherit;
}

* {
  -webkit-tap-highlight-color: rgba(0, 120, 195, 0.3);
}

::-moz-selection {
  background: rgba(0, 120, 195, 0.3);
}

::selection {
  background: rgba(0, 120, 195, 0.3);
}

body :focus {
  outline: none;
  box-shadow: 0 0 0 1px #0078C3, 0 0 0 2px #fff;
}

html {
  box-sizing: border-box;
}

address, ol, p, ul {
  margin: 0 0 1.5rem;
}

ol ol, ol ul, ul ol, ul ul {
  margin: 0 0 1.5rem;
}

hr {
  border: none;
  border-top: 1px solid #C2D1D9;
  display: block;
  height: 1px;
  margin: 3rem 0;
  padding: 0;
}

blockquote {
  border-left: 0.5rem solid #0078C3;
  font-style: normal;
  font-weight: 400;
  margin: 2.25rem auto;
  max-width: 90%;
  overflow: hidden;
  padding: 1em 1rem;
  position: relative;
  text-align: left;
}
@media screen and (min-width: 48em) {
  blockquote {
    max-width: 80%;
  }
}
blockquote img.alignnone {
  border-radius: 100%;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}
@media screen and (min-width: 62em) {
  blockquote img.alignnone {
    display: inline-block;
    float: left;
    margin-right: 7%;
    max-height: 8em;
    max-width: 8em;
  }
}
blockquote p {
  margin-left: 2rem;
}
blockquote small {
  font-size: 0.5490196078em;
}
@media (min-width: 48em) {
  blockquote small {
    font-size: 0.7843137255em;
  }
}
blockquote small {
  display: inline-block;
  margin: 0 0 0.8em 1.5em;
}
blockquote small:before {
  content: "— ";
}
blockquote cite {
  font-weight: bold;
}
blockquote cite a {
  font-weight: normal;
}

p:last-child {
  margin-bottom: 0em;
}

img, svg {
  height: auto;
  max-width: 100%;
}

svg {
  width: 100%;
}

li > ol,
li > ul {
  margin-bottom: 0;
}

/**
 * Helpful Re-usable Classes
 */
@media screen and (min-width: 48em) {
  .desktop-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 47.999em) {
  .mobile-hidden {
    display: none !important;
  }
}

@media screen and (min-width: 62em) {
  .mobile-nav-visible {
    display: none !important;
  }
}

@media screen and (max-width: 61.999em) {
  .mobile-nav-hidden {
    display: none !important;
  }
}

.linkclicker,
button,
input[type=submit] {
  cursor: pointer;
}

.hidden,
.hide {
  display: none !important;
}

.assistive,
.hide-text,
.screen-reader-text {
  height: 1px;
  width: 1px;
  border: 0;
  clip: rect(0 0 0 0);
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  background: #ffffff;
  color: #000000;
}
.assistive.show-on-focus:focus,
.hide-text.show-on-focus:focus,
.screen-reader-text.show-on-focus:focus {
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 1em;
  box-shadow: 0 0 3px 5px;
  color: #ffffff;
  clip: unset;
  display: inline-block;
  height: auto;
  left: 50%;
  padding: 6em;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.25s linear;
  width: auto;
  z-index: 99999;
}

.hide-text {
  text-indent: -9999px;
}

/**
 * DBS>Interactive
 * General Theme Type classes
 * These classes are generic repeatable patterns of type styles that can be
 * extended by other classes to maintain consistency throughout the theme.
 *
 * Recommended usage:
 * 		@extend %button-type;
 */
/**
 * Default Typography
 */
html {
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  color: #0078C3;
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-rendering: optimizeLegibility;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none;
}

.h1, h1 {
  font-size: 1.8498596484em;
}
@media (min-width: 48em) {
  .h1, h1 {
    font-size: 2.6426566406em;
  }
}

.h2, h2 {
  font-size: 1.4508703125em;
}
@media (min-width: 48em) {
  .h2, h2 {
    font-size: 2.072671875em;
  }
}

.h3, h3 {
  font-size: 1.1379375em;
}
@media (min-width: 48em) {
  .h3, h3 {
    font-size: 1.625625em;
  }
}

.h4, h4 {
  font-size: 0.8925em;
}
@media (min-width: 48em) {
  .h4, h4 {
    font-size: 1.275em;
  }
}

.h5, h5 {
  font-size: 0.7em;
}
@media (min-width: 48em) {
  .h5, h5 {
    font-size: 1em;
  }
}

.h6, h6 {
  font-size: 0.7em;
}
@media (min-width: 48em) {
  .h6, h6 {
    font-size: 1em;
  }
}

a {
  color: #25303A;
  font-weight: bold;
  text-decoration: underline;
  transition: color ease-in-out 0.25s;
}
a:hover, a:focus, a:active {
  text-decoration: none;
}

.bg-dark a {
  color: #ffffff;
}

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.font_small,
small {
  font-size: 0.707em;
}

.intro-text,
.bigger-text {
  font-size: 1.125rem;
}

.white {
  color: #ffffff !important;
}

.black {
  color: #000000 !important;
}

.blue {
  color: #0078C3 !important;
}

.caps {
  text-transform: uppercase;
}

.no-caps {
  text-transform: none !important;
}

.underline {
  text-decoration: underline;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.normal {
  font-weight: 400;
}

.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extra-bold {
  font-weight: 900;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-Thin.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-Thin.woff") format("woff");
  font-display: swap;
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-ThinItalic.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-ThinItalic.woff") format("woff");
  font-display: swap;
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-ExtraLight.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-ExtraLight.woff") format("woff");
  font-display: swap;
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-ExtraLightItalic.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-ExtraLightItalic.woff") format("woff");
  font-display: swap;
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-Light.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-Light.woff") format("woff");
  font-display: swap;
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-LightItalic.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-LightItalic.woff") format("woff");
  font-display: swap;
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-Regular.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-Regular.woff") format("woff");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-Italic.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-Italic.woff") format("woff");
  font-display: swap;
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-Medium.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-Medium.woff") format("woff");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-MediumItalic.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-MediumItalic.woff") format("woff");
  font-display: swap;
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-SemiBold.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-SemiBold.woff") format("woff");
  font-display: swap;
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-SemiBoldItalic.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-SemiBoldItalic.woff") format("woff");
  font-display: swap;
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-Bold.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-Bold.woff") format("woff");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-BoldItalic.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-BoldItalic.woff") format("woff");
  font-display: swap;
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-ExtraBold.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-ExtraBold.woff") format("woff");
  font-display: swap;
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-ExtraBoldItalic.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-ExtraBoldItalic.woff") format("woff");
  font-display: swap;
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-Black.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-Black.woff") format("woff");
  font-display: swap;
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/subset-Inter18pt-BlackItalic.woff2") format("woff2"), url("../fonts/inter/subset-Inter18pt-BlackItalic.woff") format("woff");
  font-display: swap;
  font-weight: 900;
  font-style: italic;
}
/**
 *	Inline (Arrow) Button Styling
 */
.arrow-link {
  color: #0078C3;
  display: inline-block;
  padding-right: 3rem;
  position: relative;
  text-decoration: underline;
}
.arrow-link:after {
  background-image: url("../images/arrow-link.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 2.25rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  transition: transform 0.25s ease-in-out;
  width: 2.25rem;
}
.arrow-link:hover, .arrow-link:focus {
  color: #0078C3;
  text-decoration: none;
}
.arrow-link:hover:after, .arrow-link:focus:after {
  transform: translate(0.5em, -50%);
}

/**
 * Header styles
 * DBS>Interactive
 *
 * 		site-header - the page's main header element
 * 			site-header__branding - the company logo
 * 			site-header__navigation - the site navigation
 * 				NOTE: Put navigation styles in _navigation.scss.
 *
 * ************************************************************************
 * This file is for the general header/branding styles. For specific
 * menu/navigation files, use _navigation.scss.
 * ************************************************************************
 */
.site-header {
  background: #ffffff;
  box-shadow: 0 6px 0.5rem -0.25rem rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.site-header h1 {
  padding-top: 1rem;
}
.site-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}
.site-header {
  /**
   * Company logo in site header
   */
}
.site-header__branding {
  padding: 0.15rem 0;
	display: inline-flex;
}
.site-header__branding img {
  width: 100%;
}
.site-header__branding {
  /**
   * Anchor tag that wraps svg element (logo graphic) for site homepage link
   */
}
.site-header__branding a {
  display: block;
  line-height: 0;
  margin-left: -0.25em;
  max-width: 23rem;
  padding: 0.25em;
}
@media screen and (max-width: 47.999em) {
  .site-header__branding {
    max-width: 75%;
  }
}

/**
 * Navigation
 */
/**
 * Hamburger Icon
 */
.menu-toggle {
  background-color: transparent;
  border: 0;
  display: block;
  height: 3rem;
  margin-right: -0.5em;
  padding: 0.5em;
  width: 3em;
}
.menu-toggle__bar {
  background: #0078C3;
  display: block;
  height: 3px;
  margin: 0 auto 6px;
  opacity: 1;
  transition: transform 0.25s, width 0.25s;
  width: 100%;
}
.menu-toggle__bar:last-child {
  margin-bottom: 0;
}
.menu-toggle.open > .menu-toggle__bar:nth-child(1) {
  transform: translate(0, 9px) rotate(45deg);
}
.menu-toggle.open > .menu-toggle__bar:nth-child(2) {
  width: 0;
}
.menu-toggle.open > .menu-toggle__bar:nth-child(3) {
  transform: translate(0, -9px) rotate(-45deg);
}

/**
 * Submenu Toggle Icon
 */
.submenu-toggle {
  background-color: transparent;
  border: 0;
  height: 3.25rem;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  transition: transform 0.25s ease-in-out;
  transform: none;
  width: 3rem;
  z-index: 1;
}
.submenu-toggle svg {
  height: 2rem;
  width: 0.75rem;
  transition: transform 0.25s ease-in-out;
}
.submenu-toggle.open svg {
  transform: rotate(180deg);
}
@media screen and (min-width: 62em) {
  .submenu-toggle {
    height: 2rem;
    opacity: 0;
    top: 50%;
    transform: translateY(-53%);
    right: -1.25rem;
    width: 2rem;
  }
  .submenu-toggle:focus {
    opacity: 1;
  }
  .submenu-toggle svg {
    height: 100%;
  }
  .menu__submenu > .menu__item > .submenu-toggle {
    opacity: 1;
    right: 0;
    transform: translateY(-50%) rotate(-90deg);
  }
}

@media screen and (min-width: 62em) {
  .subitem .submenu-toggle {
    position: absolute;
    top: 50%;
  }
}

/**
 * General Menu Styles
 *
 * These styles apply to both the mobile and the desktop menu.
 */
.site-header__navigation > nav {
  font-family: "Inter", "Verdana", "Helvetica", sans-serif;
  z-index: 100;
}
.site-header__navigation > nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__navigation > nav a {
  color: #000000;
  display: block;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
}
.site-header__navigation > nav a:hover, .site-header__navigation > nav a:focus {
  color: #0078C3;
}

.site-header__navigation {
  background-color: #ffffff;
  border-bottom: 1px solid #F7F7F7;
  box-shadow: 0 10px 1rem -0.75rem rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100vh;
  max-width: 32rem;
  min-height: calc(100vh - 4rem);
  overflow: auto;
  padding: 1.5rem;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.25s ease-in-out, visibility 0s 0.25s linear;
  visibility: hidden;
  width: 90vw;
}
@media screen and (min-width: 62em) {
  .site-header__navigation {
    transform: translate3d(100%, 0, 0);
    left: auto;
    right: 0;
  }
}
.site-header__navigation {
  /**
  	* Styles for when the mobile menu is opened.
  	*/
}
.site-header__navigation.open {
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s ease-in-out, visibility 0s 0s linear;
  visibility: visible;
}
.site-header__navigation .secondary-menu {
  order: 2;
}
.site-header__navigation .search-form__field {
  padding-left: 1.5rem;
}

.menu {
  /**
  	* Individual menu item
  	*/
}
.menu__item {
  border-top: 1px solid #F7F7F7;
  display: block;
  position: relative;
}
.menu__item a {
  padding: 1em 1.5em;
}
.menu {
  /**
  	* Submenu
  	*/
}
.menu__submenu {
  background-color: #F7F7F7;
  max-height: 0;
  overflow: hidden;
  /**
  	* Submenus when hovering parent
  	*/
}
.open > .menu__submenu {
  max-height: none;
}
.menu__submenu {
  /**
  	* Submenu item styles
  	*/
}
.menu__submenu .menu__item a {
  background-color: #F7F7F7;
  padding-left: 3rem;
  text-transform: none;
}
.menu__submenu {
  /**
  	* Sub-Submenus
  	*/
}
.menu__submenu .menu__submenu a {
  padding-left: 4.5rem;
}

.modal__wrapper {
  box-shadow: 0 0 1rem -0.5rem rgba(0, 0, 0, 0.5);
  height: 70%;
  pointer-events: none;
  position: fixed;
  top: 30%;
  left: 0;
  width: 100%;
}
.modal__wrapper.is-open {
  pointer-events: initial;
}
.modal__wrapper.is-open .modal__background {
  opacity: 1;
  transition: 0.75s opacity;
}
@media screen and (max-width: 47.999em) {
  .modal__wrapper {
    background: #ffffff;
    transform: translate3d(0, 100%, 0);
    transform-origin: bottom;
    transition: 0.35s transform;
  }
  .modal__wrapper.is-open {
    transform: translate3d(0, 0, 0);
  }
}
.modal__background {
  height: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.25s opacity;
  width: 100%;
}
.modal__background img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  top: -25%;
  z-index: 2;
}
.modal__background::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.65) 70%, transparent 90%);
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 85%;
}
.modal__background--gradients {
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.modal__background--gradients::before {
  background: linear-gradient(225deg, rgba(255, 255, 255, 0.65) 16%, transparent 30%);
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}
.modal__background--gradients::after {
  background: linear-gradient(325deg, rgba(255, 255, 255, 0.65) 16%, transparent 30%);
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
}
.modal__hex {
  height: 100%;
  transition: transform 0.35s;
  transform-origin: bottom;
}
.modal__images {
  border-bottom: 4px solid #C2D1D9;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}
.modal__images--wrapper {
  display: flex;
  align-items: end;
  justify-content: center;
  margin: 0 auto;
  max-width: 38rem;
}
.modal__images--main {
  height: 0;
  margin-right: 3rem;
  padding-bottom: 80%;
  position: relative;
  width: calc(70% - 3rem);
}
.modal__images--main img {
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@supports ((-o-object-fit: contain) or (object-fit: contain)) {
  .modal__images--main img {
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
.modal__images--main img {
  padding: 1.5rem;
}
.modal__images--main.bete img {
  padding-bottom: 4.5rem;
}
.modal__images--main.bete::after {
  background: url(../images/bete-logo-2.png) no-repeat center;
  background-size: contain;
  content: "";
  height: 3.5rem;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8rem;
}
.modal__images--nav {
  display: flex;
  flex-direction: column;
  width: 17%;
}
.modal__images--nav-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #f3f2f1;
  border: none;
  height: 0;
  margin-bottom: 0.75rem;
  padding-bottom: 100%;
  position: relative;
}
.modal__images--nav-button img {
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@supports ((-o-object-fit: contain) or (object-fit: contain)) {
  .modal__images--nav-button img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
.modal__images--nav-button img {
  padding: 1rem;
}
.modal__images--nav-button.is-active::after {
  background: #0078C3;
  content: "";
  height: 100%;
  opacity: 0.3;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.modal__interior {
  height: 100%;
  overflow: auto;
  padding: 1.5rem;
}
.modal__close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  height: 3rem;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
}
.modal__close img {
  display: block;
}
@media screen and (min-width: 48em) {
  .modal__wrapper {
    box-shadow: none;
    height: 100%;
    top: 0;
  }
  .modal__wrapper.is-open .modal__hex {
    transform: scale(1);
  }
  .modal__hex {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
    height: auto;
    position: relative;
    transform: scale(0);
    transform-origin: bottom left;
    width: min(90vw, 60rem);
    z-index: 2;
  }
  .modal__hex::before {
    content: "";
    background: url("../images/hex-border.svg") center center/contain no-repeat;
    pointer-events: none;
    position: absolute;
    inset: -2%;
    z-index: 3;
  }
  .modal__interior {
    aspect-ratio: 1012.7/1169.4;
    background: #fff;
    box-sizing: border-box;
    height: auto;
    -webkit-mask-image: url("../images/hex-interior.svg");
            mask-image: url("../images/hex-interior.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center center;
            mask-position: center center;
    -webkit-mask-size: contain;
            mask-size: contain;
    padding: 12% 10% 40%;
    position: relative;
    width: 100%;
    z-index: 1;
  }
  .modal__close {
    top: 22%;
    right: -3%;
    z-index: 5;
  }
  .modal__text .arrow-link {
    margin-left: 1.7rem;
  }
}

.graphic {
  overflow: hidden;
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 1s ease-in-out 1s;
}
.graphic.modal-open .graphic-overlay {
  opacity: 0.2;
}
.graphic.modal-open .graphic-overlay__image,
.graphic.modal-open .graphic-overlay__text {
  visibility: none;
}
.graphic.modal-open .graphic__canvas::before, .graphic.modal-open .graphic__canvas::after {
  opacity: 1;
  transition: 0.5s opacity 0s;
}
.graphic.modal-open .graphic-overlay__open {
  box-shadow: none !important;
}
.graphic__zoom-controls {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0.75rem;
  right: 1.5rem;
  z-index: 10;
}
.graphic__zoom-controls .graphic__zoom-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: white;
  border: none;
  border: 2px solid #0078C3;
  box-shadow: 0 0 0.65rem -0.25rem rgba(0, 0, 0, 0.3607843137);
  height: 2rem;
  padding: 0;
  position: relative;
  width: 2rem;
}
.graphic__zoom-controls .graphic__zoom-button::after, .graphic__zoom-controls .graphic__zoom-button::before {
  background: #0078C3;
  content: "";
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
}
.graphic__zoom-controls .graphic__zoom-button--out {
  margin-bottom: 0.5rem;
}
.graphic__zoom-controls .graphic__zoom-button--out::after {
  content: none;
}
.graphic__zoom-controls .graphic__zoom-button--in::after {
  transform: rotate(90deg) translate(-54%, -20%);
  transform-origin: 0% 50%;
}
.graphic__canvas {
  position: relative;
  transform-origin: top left;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), width 1s ease-in-out 1s;
  width: 100%;
  will-change: transform;
}
.graphic__canvas::before {
  background: linear-gradient(to right, white, transparent);
  height: 100%;
  top: 0;
  width: 5%;
}
.graphic__canvas::after {
  background: linear-gradient(to bottom, transparent, white);
  bottom: 0;
  height: 10%;
  width: 100%;
}
.graphic__canvas::before, .graphic__canvas::after {
  content: "";
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  transition: 0.5s opacity 0.25s;
  z-index: 5;
}
.graphic-image {
  display: block;
  height: auto;
  transition: 0.25s opacity;
  width: 100%;
}
.graphic-overlay {
  height: 100%;
  position: absolute;
  inset: 0;
  width: 100%;
}
@media screen and (min-width: 62em) {
  .graphic-overlay {
    top: 1vw;
  }
}
@media screen and (min-width: 75em) {
  .graphic-overlay {
    top: 1.5vw;
  }
}
@media screen and (min-width: 100em) {
  .graphic-overlay {
    top: 3vw;
  }
}
.graphic-overlay__item {
  display: flex;
  align-items: center;
  position: absolute;
  pointer-events: none;
}
.graphic-overlay__item.reverse {
  flex-direction: row-reverse;
}
.graphic-overlay__item.reverse .graphic-overlay__image {
  background-position: center left;
  margin: 0;
}
.graphic-overlay__item.reverse .graphic-overlay__image img {
  right: auto;
  left: 45%;
}
.graphic-overlay__item.reverse .graphic-overlay__text {
  background: #fff;
  padding: 0.75rem 3rem 0.75rem 2rem;
  left: auto;
  right: -1px;
}
.graphic-overlay__item.reverse .graphic-overlay__text::before {
  left: auto;
  right: -1.75rem;
}
.graphic-overlay__open, .graphic-overlay__image, .graphic-overlay__text {
  pointer-events: auto;
}
.graphic-overlay__image, .graphic-overlay__text {
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s 0s, visibility 0s 0.25s;
  visibility: hidden;
}
.graphic-overlay__item.is-active {
  z-index: 5;
}
.graphic-overlay__item.is-active .graphic-overlay__image,
.graphic-overlay__item.is-active .graphic-overlay__text {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0s linear 0s;
}
.graphic-overlay__image {
  background: url(../images/hexagon.svg) no-repeat center right;
  background-size: contain;
  height: 9rem;
  margin-left: 0;
  position: relative;
  width: 9rem;
}
.graphic-overlay__image img {
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@supports ((-o-object-fit: contain) or (object-fit: contain)) {
  .graphic-overlay__image img {
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
}
.graphic-overlay__image img {
  left: 55%;
  height: 50%;
  width: 50%;
}
.graphic-overlay__text {
  background: #fff;
  padding: 0.75rem 2rem 0.75rem 3rem;
  position: relative;
  left: -1px;
}
.graphic-overlay__text h3 {
  margin-bottom: 0.25rem;
}
.graphic-overlay__text p {
  font-size: 0.9em;
  margin-bottom: 0.25rem;
  max-width: 20rem;
}
.graphic-overlay__text::before {
  border-top: 1px solid #0078C3;
  content: "";
  position: absolute;
  top: 50%;
  left: -1.75rem;
  width: 3.5rem;
}
@media screen and (min-width: 48em) {
  .graphic-overlay__text {
    font-size: 80%;
  }
}
.graphic-overlay__open {
  height: 2rem;
  width: 2rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/modal-open.svg) no-repeat center;
  background-position: center;
  background-size: contain;
  border: none;
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.35));
}
.graphic-overlay__cta {
  color: #63C98C;
  font-size: 0.75rem;
  font-weight: bold;
}

@media screen and (max-width: 47.999em) {
  .graphic {
    height: calc(170vh - 3rem);
    position: relative;
    top: 3rem;
    overflow: auto;
  }
  .graphic__canvas {
    position: relative;
    height: 100%;
    width: -moz-fit-content;
    width: fit-content;
  }
  .graphic-image {
    display: block;
    height: 100%;
    max-width: none;
    width: auto;
  }
  .graphic-overlay {
    position: absolute;
    inset: 0;
    top: 0;
  }
}
@media screen and (max-width: 47.999em) and (min-height: 50rem) {
  .graphic-overlay {
    top: 2rem;
  }
}
.graphic-overlay__item--super-air-knife {
  top: 37.5%;
  left: 33%;
}
.graphic-overlay__item--industrial-housekeeping-products {
  top: 28.25%;
  left: 8.5%;
}
.graphic-overlay__item--air-amplifiers {
  top: 28.5%;
  left: 50%;
}
.graphic-overlay__item--cabinet-coolers {
  top: 10.5%;
  left: 38%;
}
.graphic-overlay__item--line-vacs {
  top: 70%;
  left: 45%;
}
.graphic-overlay__item--static-eliminators {
  top: 57%;
  right: 36%;
}
.graphic-overlay__item--safety-air-guns {
  top: 36%;
  right: 12%;
}
.graphic-overlay__item--bete-tank-wash {
  top: 4.2%;
  left: 20.85%;
}
.graphic-overlay__item--bete-flex-flow {
  top: 38%;
  right: 43%;
}
.graphic-overlay__item--air-nozzles-and-jets {
  top: 25.5%;
  right: 20%;
}
.graphic-overlay__item--spot-coolers {
  top: 61.5%;
  left: 29%;
}
.graphic-overlay__item--sanitary-flange-line-vacs {
  top: 8.8%;
  left: 34%;
}
.graphic-overlay__item--flexisan-modular-spray-system {
  top: 47.5%;
  left: 17%;
}
.graphic-overlay__item--custom-designed-spray-header {
  top: 33%;
  left: 20%;
}
.graphic-overlay__item--easyswitch-wet-dry-vac {
  top: 51%;
  right: 12.5%;
}

main {
  position: relative;
}/*# sourceMappingURL=styles.css.map */