/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary variables that control standard elements
in the pages. This is also the file that loads all of the other themed CSS
styleshets into just this one in each of themed templates.
*********************************************************************************
****************************************************************************** */











































/* ******************************************************************************
*********************************************************************************
The intention of this file is to reset most of the different browser, built-in
CSS styles, so that it is an empty canvas for the themed specific stylesheets.
*********************************************************************************
****************************************************************************** */

*, *:before, *:after {
  box-sizing: border-box;
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to makes browsers render all elements more
consistently and in line with modern standards.
It precisely targets only the styles that need normalizing.
*********************************************************************************
****************************************************************************** */


/*! 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 {
  -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;
}

/* 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 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: hidden;
}

/**
 * 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;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

dnd-section {
  padding: 80px 20px;
}
.banner-area .dnd-section {
  padding: 0;
}

.banner-section .row-fluid [class*="span"] {
  min-height: 0;
}
.banner-section .dnd-section>.row-fluid {
  padding: 0;
}

.dnd-section > .row-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.page-center {
  padding-left: 30px;
  padding-right: 30px;
}

.dnd-section .widget-type-cell {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 1440px) {

  .dnd-section > .row-fluid,
  .page-center {
    padding-left: 90px;
    padding-right: 90px;
  }
}


@media (max-width: 767px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media screen and (max-width: 39.9375em) {

  .dnd-section > .row-fluid,
  .page-center {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */

@font-face {
  font-family: "Font Awesome 5 Brands";
  src: url("https://8032044.fs1.hubspotusercontent-na1.net/hubfs/8032044/Jet_Press_June2021/fonts/fa-brands-400.eot") format("embedded-opentype"), 
    url("https://8032044.fs1.hubspotusercontent-na1.net/hubfs/8032044/Jet_Press_June2021/fonts/fa-brands-400.woff2") format("woff2"), 
    url("https://8032044.fs1.hubspotusercontent-na1.net/hubfs/8032044/Jet_Press_June2021/fonts/fa-brands-400.woff") format("woff"), 
    url("https://8032044.fs1.hubspotusercontent-na1.net/hubfs/8032044/Jet_Press_June2021/fonts/fa-brands-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

@font-face {
  font-family: "Font Awesome 5 Pro";
  src: url("https://8032044.fs1.hubspotusercontent-na1.net/hubfs/8032044/Jet_Press_June2021/fonts/fa-light-300.eot") format("embedded-opentype"), 
    url("https://8032044.fs1.hubspotusercontent-na1.net/hubfs/8032044/Jet_Press_June2021/fonts/fa-light-300.woff2") format("woff2"), 
    url("https://8032044.fs1.hubspotusercontent-na1.net/hubfs/8032044/Jet_Press_June2021/fonts/fa-light-300.woff") format("woff"), 
    url("https://8032044.fs1.hubspotusercontent-na1.net/hubfs/8032044/Jet_Press_June2021/fonts/fa-light-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: block;
}

@font-face {
  font-family: "Font Awesome 5 Pro";
  src: url("https://8032044.fs1.hubspotusercontent-na1.net/hubfs/8032044/Jet_Press_June2021/fonts/fa-regular-400.eot") format("embedded-opentype"), 
    url("https://8032044.fs1.hubspotusercontent-na1.net/hubfs/8032044/Jet_Press_June2021/fonts/fa-regular-400.woff2") format("woff2"), 
    url("https://8032044.fs1.hubspotusercontent-na1.net/hubfs/8032044/Jet_Press_June2021/fonts/fa-regular-400.woff") format("woff"),
    url("https://8032044.fs1.hubspotusercontent-na1.net/hubfs/8032044/Jet_Press_June2021/fonts/fa-regular-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

@font-face {
  font-family: "Font Awesome 5 Pro";
  src: url("https://8032044.fs1.hubspotusercontent-na1.net/hubfs/8032044/Jet_Press_June2021/fonts/fa-solid-900.eot") format("embedded-opentype"),
    url("https://8032044.fs1.hubspotusercontent-na1.net/hubfs/8032044/Jet_Press_June2021/fonts/fa-solid-900.woff2") format("woff2"), 
    url("https://8032044.fs1.hubspotusercontent-na1.net/hubfs/8032044/Jet_Press_June2021/fonts/fa-solid-900.woff") format("woff"), 
    url("https://8032044.fs1.hubspotusercontent-na1.net/hubfs/8032044/Jet_Press_June2021/fonts/fa-solid-900.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: block;
}

@font-face {
  font-family: "EasyPop";
  src: url("data:application/x-font-ttf;base64,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")
    format("truetype"),
    url("data:application/font-woff;base64,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")
    format("woff"),
    url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20standalone%3D%22no%22%3F%3E%0D%0A%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%20%3E%0D%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%3Cmetadata%3E%0D%0A%3Cjson%3E%0D%0A%3C!%5BCDATA%5B%0D%0A%7B%0D%0A%09%22fontFamily%22%3A%20%22EasyPop%22%2C%0D%0A%09%22majorVersion%22%3A%201%2C%0D%0A%09%22minorVersion%22%3A%200%2C%0D%0A%09%22fontURL%22%3A%20%22http%3A%2F%2Fshane-matthews.com%22%2C%0D%0A%09%22copyright%22%3A%20%22Shane%20Matthews%22%2C%0D%0A%09%22designer%22%3A%20%22Shane%20Matthews%22%2C%0D%0A%09%22designerURL%22%3A%20%22http%3A%2F%2Fshane-matthews.com%22%2C%0D%0A%09%22version%22%3A%20%22Version%201.0%22%2C%0D%0A%09%22fontId%22%3A%20%22EasyPop%22%2C%0D%0A%09%22psName%22%3A%20%22EasyPop%22%2C%0D%0A%09%22subFamily%22%3A%20%22Regular%22%2C%0D%0A%09%22fullName%22%3A%20%22EasyPop%22%2C%0D%0A%09%22description%22%3A%20%22Font%20generated%20by%20IcoMoon.%22%0D%0A%7D%0D%0A%5D%5D%3E%0D%0A%3C%2Fjson%3E%0D%0A%3C%2Fmetadata%3E%0D%0A%3Cdefs%3E%0D%0A%3Cfont%20id%3D%22EasyPop%22%20horiz-adv-x%3D%221024%22%3E%0D%0A%3Cfont-face%20units-per-em%3D%221024%22%20ascent%3D%22960%22%20descent%3D%22-64%22%20%2F%3E%0D%0A%3Cmissing-glyph%20horiz-adv-x%3D%221024%22%20%2F%3E%0D%0A%3Cglyph%20unicode%3D%22%26%23x20%3B%22%20horiz-adv-x%3D%22512%22%20d%3D%22%22%20%2F%3E%0D%0A%3Cglyph%20unicode%3D%22%26%23xa901%3B%22%20glyph-name%3D%22Info%22%20data-tags%3D%22Info%22%20horiz-adv-x%3D%22573%22%20d%3D%22M286.72%20161.28c-158.106%200-286.72%20128.614-286.72%20286.72s128.614%20286.72%20286.72%20286.72c158.106%200%20286.72-128.614%20286.72-286.72s-128.614-286.72-286.72-286.72zM286.72%20673.28c-124.314%200-225.28-100.966-225.28-225.28s100.966-225.28%20225.28-225.28c124.314%200%20225.28%20100.966%20225.28%20225.28s-100.966%20225.28-225.28%20225.28zM286.72%20281.498c-19.866%200-35.84%2015.974-35.84%2035.84v150.528c0%2019.866%2015.974%2035.84%2035.84%2035.84s35.84-15.974%2035.84-35.84v-150.528c0-19.866-15.974-35.84-35.84-35.84zM286.72%20539.136c-19.866%200-35.84%2015.974-35.84%2035.84v0.41c0%2019.866%2015.974%2035.84%2035.84%2035.84s35.84-15.974%2035.84-35.84v-0.41c0-19.661-15.974-35.84-35.84-35.84z%22%20%2F%3E%0D%0A%3Cglyph%20unicode%3D%22%26%23xa902%3B%22%20glyph-name%3D%22Warning%22%20data-tags%3D%22Warning%22%20horiz-adv-x%3D%22573%22%20d%3D%22M286.72%20161.28c-158.106%200-286.72%20128.614-286.72%20286.72s128.614%20286.72%20286.72%20286.72%20286.72-128.614%20286.72-286.72-128.614-286.72-286.72-286.72zM286.72%20673.28c-124.314%200-225.28-100.966-225.28-225.28s100.966-225.28%20225.28-225.28%20225.28%20100.966%20225.28%20225.28-100.966%20225.28-225.28%20225.28zM286.72%20389.222c-19.866%200-35.84%2015.974-35.84%2035.84v150.528c0%2019.866%2015.974%2035.84%2035.84%2035.84s35.84-15.974%2035.84-35.84v-150.528c0-19.866-15.974-35.84-35.84-35.84zM286.72%20281.498c-19.866%200-35.84%2015.974-35.84%2035.84v0.41c0%2019.866%2015.974%2035.84%2035.84%2035.84s35.84-15.974%2035.84-35.84v-0.41c0-19.866-15.974-35.84-35.84-35.84z%22%20%2F%3E%0D%0A%3Cglyph%20unicode%3D%22%26%23xa903%3B%22%20glyph-name%3D%22Error%22%20data-tags%3D%22Error%22%20horiz-adv-x%3D%22573%22%20d%3D%22M286.72%20161.28c-158.106%200-286.72%20128.614-286.72%20286.72s128.614%20286.72%20286.72%20286.72%20286.72-128.614%20286.72-286.72-128.614-286.72-286.72-286.72zM286.72%20673.28c-124.314%200-225.28-100.966-225.28-225.28s100.966-225.28%20225.28-225.28%20225.28%20100.966%20225.28%20225.28-100.966%20225.28-225.28%20225.28zM373.965%20330.035c-7.782%200-15.77%203.072-21.709%209.011l-174.49%20174.49c-12.083%2012.083-12.083%2031.539%200%2043.418%2012.083%2012.083%2031.539%2012.083%2043.418%200l174.49-174.49c12.083-12.083%2012.083-31.539%200-43.418-5.939-5.939-13.926-9.011-21.709-9.011zM199.475%20330.035c-7.782%200-15.77%203.072-21.709%209.011-12.083%2012.083-12.083%2031.539%200%2043.418l174.49%20174.49c12.083%2012.083%2031.539%2012.083%2043.418%200%2012.083-12.083%2012.083-31.539%200-43.418l-174.49-174.49c-5.939-5.939-13.926-9.011-21.709-9.011z%22%20%2F%3E%0D%0A%3Cglyph%20unicode%3D%22%26%23xa904%3B%22%20glyph-name%3D%22Success%22%20data-tags%3D%22Success%22%20horiz-adv-x%3D%22573%22%20d%3D%22M286.72%20161.28c-158.106%200-286.72%20128.614-286.72%20286.72s128.614%20286.72%20286.72%20286.72%20286.72-128.614%20286.72-286.72-128.614-286.72-286.72-286.72zM286.72%20673.28c-124.314%200-225.28-100.966-225.28-225.28s100.966-225.28%20225.28-225.28%20225.28%20100.966%20225.28%20225.28-100.966%20225.28-225.28%20225.28zM243.507%20342.528c-7.782%200-15.77%203.072-21.709%209.011-12.083%2012.083-12.083%2031.539%200%2043.418l149.299%20149.299c12.083%2012.083%2031.539%2012.083%2043.418%200%2012.083-12.083%2012.083-31.539%200-43.418l-149.299-149.299c-5.939-5.939-13.722-9.011-21.709-9.011zM243.098%20343.142c-7.782%200-15.77%203.072-21.709%209.011l-62.669%2062.669c-12.083%2012.083-12.083%2031.539%200%2043.418%2012.083%2012.083%2031.539%2012.083%2043.418%200l62.669-62.669c12.083-12.083%2012.083-31.539%200-43.418-5.939-5.939-13.926-9.011-21.709-9.011z%22%20%2F%3E%0D%0A%3Cglyph%20unicode%3D%22%26%23xb901%3B%22%20glyph-name%3D%22Left%22%20data-tags%3D%22Left%22%20horiz-adv-x%3D%22573%22%20d%3D%22M133.325%20426.496c3.072%200%206.349%201.229%208.602%203.686%204.71%204.71%204.71%2012.493%200%2017.408-3.072%203.072-3.072%208.397%200%2011.674l277.914%20277.709c3.072%203.072%208.397%203.072%2011.674%200%203.072-3.072%203.072-8.397%200-11.674l-263.782-263.782c-4.71-4.71-4.71-12.493%200-17.408%204.71-4.71%2012.493-4.71%2017.408%200l263.782%20263.782c12.698%2012.698%2012.698%2033.587%200%2046.285s-33.587%2012.698-46.285%200l-278.118-277.709c-12.698-12.698-12.698-33.587%200-46.285%202.458-2.458%205.53-3.686%208.806-3.686zM424.141%20142.848c8.397%200%2016.794%203.277%2023.142%209.626%2012.698%2012.698%2012.698%2033.587%200%2046.285l-262.349%20262.349c-4.71%204.71-12.493%204.71-17.408%200-4.71-4.71-4.71-12.493%200-17.408l262.349-262.349c3.072-3.072%203.072-8.397%200-11.674-3.072-3.072-8.397-3.072-11.674%200l-276.685%20277.914c-4.71%204.71-12.493%204.915-17.408%200-4.71-4.71-4.915-12.493%200-17.408l276.89-277.914c6.349-6.144%2014.746-9.421%2023.142-9.421z%22%20%2F%3E%0D%0A%3Cglyph%20unicode%3D%22%26%23xb902%3B%22%20glyph-name%3D%22Right%22%20data-tags%3D%22Right%22%20horiz-adv-x%3D%22573%22%20d%3D%22M440.115%20426.496c-3.072%200-6.349%201.229-8.602%203.686-4.71%204.71-4.71%2012.493%200%2017.408%203.072%203.072%203.072%208.397%200%2011.674l-277.914%20277.709c-3.072%203.072-8.397%203.072-11.674%200-3.072-3.072-3.072-8.397%200-11.674l263.782-263.782c4.71-4.71%204.71-12.493%200-17.408-4.71-4.71-12.493-4.71-17.408%200l-263.782%20263.782c-12.698%2012.698-12.698%2033.587%200%2046.285s33.587%2012.698%2046.285%200l277.914-277.914c12.698-12.698%2012.698-33.587%200-46.285-2.253-2.253-5.325-3.482-8.602-3.482zM149.299%20142.848c-8.397%200-16.794%203.277-23.142%209.626-12.698%2012.698-12.698%2033.587%200%2046.285l262.349%20262.349c4.71%204.71%2012.493%204.71%2017.408%200%204.71-4.71%204.71-12.493%200-17.408l-262.349-262.349c-3.072-3.072-3.072-8.397%200-11.674%203.072-3.072%208.397-3.072%2011.674%200l276.685%20277.914c4.71%204.71%2012.493%204.915%2017.408%200%204.71-4.71%204.915-12.493%200-17.408l-276.89-277.709c-6.349-6.349-14.746-9.626-23.142-9.626z%22%20%2F%3E%0D%0A%3Cglyph%20unicode%3D%22%26%23xb903%3B%22%20glyph-name%3D%22Magnify%22%20data-tags%3D%22Magnify%22%20horiz-adv-x%3D%22573%22%20d%3D%22M320.512%20356.864c-97.075%200-176.128%2079.053-176.128%20176.128s79.053%20176.128%20176.128%20176.128c97.075%200%20176.128-79.053%20176.128-176.128s-79.053-176.128-176.128-176.128zM320.512%20647.68c-63.283%200-114.688-51.405-114.688-114.688s51.405-114.688%20114.688-114.688c63.283%200%20114.688%2051.405%20114.688%20114.688s-51.405%20114.688-114.688%20114.688zM107.52%20186.88c-5.939%200-12.083%201.843-17.408%205.53-13.926%209.626-17.408%2028.877-7.782%2042.803l133.12%20192.512c9.626%2013.926%2028.877%2017.408%2042.803%207.782s17.408-28.877%207.782-42.803l-133.12-192.512c-6.144-8.602-15.77-13.312-25.395-13.312z%22%20%2F%3E%0D%0A%3Cglyph%20unicode%3D%22%26%23xb904%3B%22%20glyph-name%3D%22Cross%22%20data-tags%3D%22Multiply%22%20horiz-adv-x%3D%22517%22%20d%3D%22M303.923%20448l203.162%20203.162c12.493%2012.493%2012.493%2032.768%200%2045.261s-32.768%2012.493-45.261%200l-203.162-203.162-203.981%20203.981c-12.493%2012.493-32.768%2012.493-45.261%200s-12.493-32.768%200-45.261l203.981-203.981-203.981-203.981c-12.493-12.493-12.493-32.768%200-45.261%206.349-6.349%2014.336-9.421%2022.528-9.421s16.384%203.072%2022.528%209.421l203.981%20203.981%20203.162-203.162c6.349-6.349%2014.336-9.421%2022.528-9.421s16.384%203.072%2022.528%209.421c12.493%2012.493%2012.493%2032.768%200%2045.261l-202.752%20203.162z%22%20%2F%3E%0D%0A%3C%2Ffont%3E%3C%2Fdefs%3E%3C%2Fsvg%3E#EasyPop")
    format("svg");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "EasyInput";
  src: url("data:font/ttf;base64,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")
    format("truetype"),
    url("data:font/woff;base64,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")
    format("woff"),
    url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20standalone%3D%22no%22%3F%3E%0A%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%20%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cmetadata%3EGenerated%20by%20IcoMoon%3C%2Fmetadata%3E%0A%3Cdefs%3E%0A%3Cfont%20id%3D%22EasyInput%22%20horiz-adv-x%3D%221024%22%3E%0A%3Cfont-face%20units-per-em%3D%221024%22%20ascent%3D%22960%22%20descent%3D%22-64%22%20%2F%3E%0A%3Cmissing-glyph%20horiz-adv-x%3D%221024%22%20%2F%3E%0A%3Cglyph%20unicode%3D%22%26%23x20%3B%22%20horiz-adv-x%3D%22512%22%20d%3D%22%22%20%2F%3E%0A%3Cglyph%20unicode%3D%22%26%23xe900%3B%22%20glyph-name%3D%22Tick%22%20horiz-adv-x%3D%22640%22%20d%3D%22M224.051%20224.154c-8.192%200-16.384%203.072-22.528%209.421l-192.102%20191.898c-12.493%2012.493-12.493%2032.768%200%2045.261s32.768%2012.493%2045.261%200l169.37-169.37%20361.472%20361.267c12.493%2012.493%2032.768%2012.493%2045.261%200s12.493-32.768%200-45.261l-384.205-383.795c-6.144-6.349-14.336-9.421-22.528-9.421z%22%20%2F%3E%0A%3Cglyph%20unicode%3D%22%26%23xe901%3B%22%20glyph-name%3D%22Calendar%22%20horiz-adv-x%3D%22524%22%20d%3D%22M399.155%20267.162h-75.571c-16.998%200-30.72%2013.722-30.72%2030.72v39.936c0%2016.998%2013.722%2030.72%2030.72%2030.72h75.571c16.998%200%2030.72-13.722%2030.72-30.72v-39.936c0-16.998-13.722-30.72-30.72-30.72zM492.544%20697.446h-460.8c-17.613%200-31.949-14.336-31.949-32.154v-460.8c0-17.613%2014.336-31.949%2031.949-31.949h460.8c17.613%200%2031.949%2014.336%2031.949%2031.949v460.8c0.205%2017.818-14.131%2032.154-31.949%2032.154zM460.595%20479.744v-243.098h-153.805l0.205-0.205h-12.902v0.205h-64.307l0.41-0.205h-166.502v243.302h396.902zM460.595%20543.642h-396.902v89.702h396.902v-89.702z%22%20%2F%3E%0A%3Cglyph%20unicode%3D%22%26%23xe902%3B%22%20glyph-name%3D%22Simple_Arrow_Left%22%20horiz-adv-x%3D%22256%22%20d%3D%22M224.051%20243.2c-7.578%200-15.36%202.662-21.299%208.192l-192.102%20172.851c-6.758%206.144-10.65%2014.746-10.65%2023.757s3.891%2017.613%2010.65%2023.757l191.898%20172.851c13.107%2011.878%2033.382%2010.65%2045.261-2.458s10.65-33.382-2.458-45.261l-165.478-148.89%20165.478-149.094c13.107-11.878%2014.131-32.154%202.458-45.261-6.349-6.963-15.155-10.445-23.757-10.445z%22%20%2F%3E%0A%3Cglyph%20unicode%3D%22%26%23xe903%3B%22%20glyph-name%3D%22Simple_Arrow_Up%22%20horiz-adv-x%3D%22410%22%20d%3D%22M377.651%20320.205c-8.806%200-17.408%203.482-23.757%2010.65l-149.094%20165.478-149.094-165.478c-11.878-13.107-31.949-14.131-45.261-2.458-13.107%2011.878-14.131%2032.154-2.458%2045.261l172.851%20191.898c12.083%2013.517%2035.43%2013.517%2047.514%200l172.851-191.898c11.878-13.107%2010.65-33.382-2.458-45.261-5.939-5.53-13.517-8.192-21.094-8.192z%22%20%2F%3E%0A%3Cglyph%20unicode%3D%22%26%23xe904%3B%22%20glyph-name%3D%22Simple_Arrow_Right%22%20horiz-adv-x%3D%22256%22%20d%3D%22M31.949%20243.2c7.578%200%2015.36%202.662%2021.299%208.192l192.102%20172.851c6.758%206.144%2010.65%2014.746%2010.65%2023.757s-3.891%2017.613-10.65%2023.757l-191.898%20172.851c-13.107%2011.878-33.382%2010.65-45.261-2.458s-10.65-33.382%202.458-45.261l165.478-148.89-165.478-149.094c-13.107-11.878-14.131-32.154-2.458-45.261%206.349-6.963%2015.155-10.445%2023.757-10.445z%22%20%2F%3E%0A%3Cglyph%20unicode%3D%22%26%23xe905%3B%22%20glyph-name%3D%22Simple_Arrow_Down%22%20horiz-adv-x%3D%22410%22%20d%3D%22M377.651%20575.795c-8.806%200-17.408-3.482-23.757-10.65l-149.094-165.683-149.094%20165.683c-11.878%2013.107-31.949%2014.131-45.261%202.458-13.107-11.878-14.131-32.154-2.458-45.261l172.851-192.102c12.083-13.517%2035.43-13.517%2047.514%200l172.851%20192.102c11.878%2013.107%2010.65%2033.382-2.458%2045.261-5.939%205.325-13.517%208.192-21.094%208.192z%22%20%2F%3E%0A%3Cglyph%20unicode%3D%22%26%23xe906%3B%22%20glyph-name%3D%22Simple_Arrow_Vertical_Scroll%22%20horiz-adv-x%3D%22399%22%20d%3D%22M199.68%2089.805c-8.806%200-17.203%203.686-23.142%2010.24l-168.55%20187.392c-11.469%2012.902-10.445%2032.563%202.253%2044.032%2012.902%2011.469%2032.563%2010.445%2044.032-2.253l145.408-161.382%20145.408%20161.382c11.469%2012.698%2031.334%2013.926%2044.032%202.253%2012.698-11.469%2013.926-31.334%202.253-44.032l-168.55-187.392c-5.734-6.554-14.336-10.24-23.142-10.24zM368.23%20557.363c-8.602%200-16.998%203.482-23.142%2010.24l-145.408%20161.382-145.408-161.382c-11.469-12.698-31.334-13.926-44.032-2.253-12.698%2011.469-13.926%2031.334-2.253%2044.032l168.55%20187.187c11.878%2013.107%2034.611%2013.107%2046.49%200l168.55-187.187c11.469-12.902%2010.445-32.563-2.253-44.032-6.144-5.325-13.722-7.987-21.094-7.987z%22%20%2F%3E%0A%3Cglyph%20unicode%3D%22%26%23xe907%3B%22%20glyph-name%3D%22Subtract%22%20horiz-adv-x%3D%22717%22%20d%3D%22M678.298%20409.498h-639.795c-21.299%200-38.502%2017.203-38.502%2038.502s17.203%2038.502%2038.502%2038.502h640c21.299%200%2038.502-17.203%2038.502-38.502s-17.408-38.502-38.707-38.502z%22%20%2F%3E%0A%3Cglyph%20unicode%3D%22%26%23xe908%3B%22%20glyph-name%3D%22Add%22%20horiz-adv-x%3D%22717%22%20d%3D%22M684.237%20481.178h-292.659v292.659c0%2018.022-14.541%2032.563-32.563%2032.563s-32.563-14.541-32.563-32.563v-292.659h-293.888c-18.022%200-32.563-14.541-32.563-32.563s14.541-32.563%2032.563-32.563h293.888v-293.888c0-18.022%2014.541-32.563%2032.563-32.563s32.563%2014.541%2032.563%2032.563v293.888h292.659c18.022%200%2032.563%2014.541%2032.563%2032.563s-14.541%2032.563-32.563%2032.563z%22%20%2F%3E%0A%3Cglyph%20unicode%3D%22%26%23xe909%3B%22%20glyph-name%3D%22Clock%22%20horiz-adv-x%3D%22524%22%20d%3D%22M262.144%20185.856c-144.589%200-262.144%20117.555-262.144%20262.144s117.555%20262.144%20262.144%20262.144%20262.144-117.555%20262.144-262.144-117.555-262.144-262.144-262.144zM262.144%20642.56c-107.315%200-194.56-87.245-194.56-194.56s87.245-194.56%20194.56-194.56%20194.56%2087.245%20194.56%20194.56-87.245%20194.56-194.56%20194.56zM405.299%20424.243h-143.155c-13.107%200-23.757%2010.65-23.757%2023.757v143.155c0%2013.107%2010.65%2023.757%2023.757%2023.757s23.757-10.65%2023.757-23.757v-118.989h118.989c13.107%200%2023.757-10.65%2023.757-23.757s-10.445-24.166-23.347-24.166z%22%20%2F%3E%0A%3Cglyph%20unicode%3D%22%26%23xe90a%3B%22%20glyph-name%3D%22Toggles%22%20horiz-adv-x%3D%22601%22%20d%3D%22M31.949%20604.058h40.55c13.312-39.117%2050.381-67.174%2093.798-67.174s80.486%2028.262%2093.798%2067.174h309.248c17.613%200%2031.949%2014.336%2031.949%2031.949s-14.336%2031.949-31.949%2031.949h-309.248c-13.312%2039.117-50.381%2067.174-93.798%2067.174s-80.486-27.853-93.798-66.97h-40.55c-17.613%200-31.949-14.336-31.949-31.949s14.336-32.154%2031.949-32.154zM166.298%20671.437c19.456%200%2035.226-15.77%2035.226-35.226s-15.77-35.226-35.226-35.226c-19.456%200-35.226%2015.77-35.226%2035.226s15.974%2035.226%2035.226%2035.226zM569.549%20291.738h-309.248c-13.312%2039.117-50.381%2067.174-93.798%2067.174s-80.486-28.262-93.798-67.174h-40.755c-17.613%200-31.949-14.336-31.949-31.949s14.336-31.949%2031.949-31.949h40.55c13.312-39.117%2050.381-67.174%2093.798-67.174s80.486%2028.262%2093.798%2067.174h309.248c17.613%200%2031.949%2014.336%2031.949%2031.949s-13.926%2031.949-31.744%2031.949zM166.298%20224.563c-19.456%200-35.226%2015.77-35.226%2035.226s15.77%2035.226%2035.226%2035.226c19.456%200%2035.226-15.77%2035.226-35.226s-15.77-35.226-35.226-35.226zM569.549%20479.13h-40.55c-13.312%2039.117-50.381%2067.174-93.798%2067.174s-80.486-28.262-93.798-67.174h-309.248c-17.818%200-32.154-14.336-32.154-31.949s14.336-31.949%2031.949-31.949h309.248c13.312-39.117%2050.381-67.174%2093.798-67.174s80.486%2028.262%2093.798%2067.174h40.55c17.613%200%2031.949%2014.336%2031.949%2031.949s-13.926%2031.949-31.744%2031.949zM435.2%20411.955c-19.456%200-35.226%2015.77-35.226%2035.226s15.77%2035.226%2035.226%2035.226%2035.226-15.77%2035.226-35.226-15.77-35.226-35.226-35.226z%22%20%2F%3E%0A%3Cglyph%20unicode%3D%22%26%23xe90b%3B%22%20glyph-name%3D%22Upload%22%20horiz-adv-x%3D%22524%22%20d%3D%22M71.885%20120.115c-18.432%200-33.178%2014.746-33.178%2033.178s14.746%2033.178%2033.178%2033.178h380.928c18.227%200%2033.178-14.746%2033.178-33.178s-14.746-33.178-33.178-33.178h-380.928zM191.283%20229.478c-17.613%200-31.744%2014.131-31.744%2031.744v238.592h-89.088c-12.493%200-23.962%207.373-29.082%2018.842s-2.867%2024.781%205.53%2033.997l191.898%20212.992c5.734%206.349%2014.336%2010.24%2023.552%2010.24s17.818-3.686%2023.552-10.24l191.898-212.992c8.397-9.421%2010.445-22.733%205.53-33.997-5.12-11.469-16.384-18.842-29.082-18.842h-89.088v-238.592c-0.205-17.408-14.541-31.744-31.744-31.744h-142.131zM301.67%20292.762v238.797c0%2017.408%2014.131%2031.744%2031.744%2031.744h49.766l-120.627%20133.939-120.627-133.939h49.766c17.408%200%2031.744-14.131%2031.744-31.744v-238.797h78.234z%22%20%2F%3E%0A%3Cglyph%20unicode%3D%22%26%23xe90c%3B%22%20glyph-name%3D%22Search%22%20horiz-adv-x%3D%22524%22%20d%3D%22M515.891%20238.080l-140.493%20140.493c58.368%2080.896%2051.2%20194.97-21.504%20267.674v0c-80.896%2080.896-212.173%2080.896-293.069%200s-80.896-212.173%200-293.069c40.346-40.346%2093.389-60.621%20146.432-60.621%2045.466%200%2090.726%2014.746%20128.205%2044.442l139.674-139.674c5.53-5.734%2012.902-8.397%2020.275-8.397s14.746%202.662%2020.275%208.397c11.469%2011.264%2011.469%2029.491%200.205%2040.755zM101.376%20393.933c-58.368%2058.368-58.368%20153.19%200%20211.763%2029.082%2029.082%2067.379%2043.827%20105.882%2043.827%2038.298%200%2076.595-14.541%20105.882-43.827v0c58.368-58.368%2058.368-153.19%200-211.763-58.573-58.368-153.395-58.368-211.763%200z%22%20%2F%3E%0A%3C%2Ffont%3E%3C%2Fdefs%3E%3C%2Fsvg%3E#EasyInput")
    format("svg");
  font-style: normal;
  font-weight: normal;
}



html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-size: 100%;
  line-height: 1.15;
}

body {
  font-family: Lato, serif;
  font-size: 1rem;
  color: #494a52;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 17px;
  line-height: 1.2;
}

/* Anchor Links */
a {
  color: #0270E0;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
  outline: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: Merriweather, serif;
  color: #494a52;
  word-break: break-word;
  text-transform: uppercase;
}

h1 {
  font-size: 2.1rem;
  line-height: 1.3;
}

h2 {
  font-size: 1.6rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.5;
}

h4 {
  font-family: Lato, sans-serif;
  font-weight: normal;
  font-size: 1.175rem;
  line-height: 1.5;
}

h5 {
  font-size: 1rem;
  line-height: 1.5;
}

h6 {
  font-size: .9rem;
  line-height: 1.5;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

ul li,
ol li {}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote {
  line-height: 1.5rem;
  border-left: 2px solid #A9A9A9;
  padding-left: 15px;

  margin: 0 0 1rem;
  padding: .5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca;
  line-height: 1.6;
  color: #8a8a8a;
}

/* Horizontal Rules */
hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* TODO */
small {

}

/* TODO */
mark {

}

sup,
sub {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

:focus {
  outline: none;
  outline-color: none;
}

.disable-focus-styles :focus {
  outline: none;
}

@media (max-width: 767px) {
  html { }
}

@media (max-width: 480px) {
  html { }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */

form {
  max-width: 767px;
  margin-bottom: 20px;
}

.hs-button {
  margin: 0;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  position: relative;
  text-align: center;
  transition: background-color .3s ease;
  background-color: #494A52;
  border-color: #494A52;
  color: #fff;
  border-radius: 6px;
  border-style: solid;
  border-width: 1px;
  font-family: "Barlow",sans-serif;
  font-size: 18px;
  line-height: normal;
  padding: 15px 53px;
  text-transform: uppercase;
  
  white-space: normal;
  text-decoration: none;
}

.hs-button:hover {
  background-color: #21222a;
  border-color: #21222a;
  
  color: #fff;
  white-space: normal;
}

.hs-button:active {
  background-color: #71727a;
  border-color: #71727a;
}


.hs-form label {
  font-family: "Barlow Condensed",sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  color: #33475b;
  display: block;
  float: none;
  width: auto;
  text-align: left;
  padding-top: 0;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.inputs-list.hs-error-msgs label {
  font-family: "Barlow Condensed",sans-serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 18px;
  margin-top: .5rem;
  color: #ff2522 !important;
}

.hs-error-msgs label {
  color: #ff2522 !important;
}

.hs_error_rollup .inputs-list.hs-error-msgs label {

}

.hs-input, input#hs-pwd-widget-password {
  display: inline-block;
  width: 100% !important;
  height: 40px;
  padding: 8px 20px !important;
  font-family: "Barlow",sans-serif;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 1.5;
  color: #0a0a0a;
  background-color: #fefefe;
  border: 1px solid #D1D6DC;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  transition: color .3s ease,background-color .3s ease,border-color .3s ease;
  box-shadow: inset 0 1px 2px rgb(10 10 10 / 10%);
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
  width: auto !important;
}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input:-moz-placeholder {
  color: #bfbfbf;
}

.hs-input::-webkit-input-placeholder {
  color: #bfbfbf;
}

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
.hs-input:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
}

textarea.hs-input {
  height: auto;
}

select[multiple].hs-input {
  height: inherit;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: #c87872;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: #b9554d;
}

.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

ul.no-list {
  list-style: none;
}

.field {
  margin-bottom: 18px;
}

.hs-field-desc {
  color: #7c98b6;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: red;
}

.hs-richtext {
/*   margin-bottom: 3px;
  line-height: 1.2;
  font-size: 1rem;
  color: #494a52; */
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}
@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 90%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: Lato, serif;
}



input#hs-pwd-widget-password {
  height: 40px !important;
  margin-top: 0 !important;
  width: 100% !important;
  margin-bottom: 18px;
  border: 1px solid #cacaca;
}

.hs-input:focus, 
input#hs-pwd-widget-password:focus {
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow .5s,border-color .25s ease-in-out;
}

.hs-input:hover, 
input#hs-pwd-widget-password:hover {
  border-color: #555;
}

#hs-search-module .hs-input {
  margin-bottom: 18px;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

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

.hs-menu-item a {
  text-decoration: none;
}

.hs-menu-item:hover a,
.hs-menu-item:focus a {
  text-decoration: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */

.custom-header {
  max-width: 1920px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 25px;
  margin: 0 auto;
  font-size: 16px;
}

.header__container {
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1920px !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-header {
  background-color: #fff;
  color: #707070;
  font-size: 17px;
  font-weight: 700;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.top-header-wrapper {
  padding-top: 35px;
  padding-bottom: 20px;
  transition: padding .3s ease;
}

.scroll .top-header-wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
}

.custom-logo {
  width: 100%;
  max-width: 200px;
}

.custom-logo a {
  display: block;
  width: 100%;
}

.custom-logo img {
  width: 100%;
}

.top-menu {
  max-width: 730px;
  width: 100%;
  font-family: "Barlow Condensed",sans-serif;
  margin-left: 25px;
  text-transform: uppercase;
}

.top-menu .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-menu .hs-menu-wrapper > ul > li {
  line-height: 1.2;
}

.top-menu .hs-menu-wrapper > ul > li > a {
  font-size: 17px;
  font-weight: 700;
  color: #707070;
}

.top-menu .hs-menu-wrapper > ul > li > a:hover {
  color: #d60101;
  text-decoration: underline;
}

.side-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.top-header .icon-select {
  display: block;
  margin-left: 25px;
  margin-right: 25px;
  position: relative;
  cursor: pointer;
}

.top-header .icon-select .selected-option {
  display: flex;
  align-items: center;
  width: 45px;
}

.top-header .icon-select .selected-option img {
  margin-right: 12px;
  display: block
}

.top-header .icon-select .option {
  display: block;
  margin: 0;
}

.top-header .icon-select .option:not(:last-of-type) {
  margin-bottom: 5px;
}

.top-header .icon-select .selected-option i {
  display: block;
  line-height: 11px;
  font-size: 14px;
}

.top-header .icon-select .options {
  display: none;
  position: absolute;
  background-color: #cecece;
  padding: 5px;
  margin-left: -5px;
  margin-top: 5px;
}

.lang-act .top-header .icon-select .options {
  display: block;
}

.top-header .icon-select img {
  display: block;
}

.btn-search {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background-color: #d60101;
  padding: 7px 11px;
  transition: background-color .3s ease;
  border-radius: 0;
  border: none;
  outline: none;
  white-space: nowrap;
  margin-right: 25px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.btn-search:hover {
  color: #fff;
  background-color: #a30101;
  text-decoration: none;
}

.btn-search i {
  margin-left: 16px;
}

#Header_hplAccount {
  font-size: 18px;
  white-space: nowrap;
  margin-right: 25px;
  color: #d60101;
  text-decoration: none;
}

#Header_hplAccount:hover {
  color: #a30101;
  text-decoration: none;
}

.top-header .menu-btn {
  font-size: 30px;
  line-height: inherit;
  color: inherit;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.top-header .menu-btn:hover {
  color: #d60101;
  text-decoration: underline;
}

.top-header-spacer {
  height: 113px;
}

.custom-menu-primary.desktop {
  color: #fff;
  background-color: #7d7d7d;
  font-family: "Barlow Condensed",sans-serif;
  font-weight: 500;
  position: relative;
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  margin: 0 auto;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li {
  flex-grow: 1;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a {
  text-align: center;
  display: block;
  line-height: inherit;
  text-transform: uppercase;
  text-decoration: none;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a span:after {
position: absolute;
    font-family: "Font Awesome 5 Pro";
    font-size: 14px;
    line-height: 14px;
    top: 16px;
    color: #fff;
    content: "";
    margin-left: 9px;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a span {
  display: inline-block;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:not(:hover) + li:not(:hover) > a span {
  border-left: 1px solid #fff;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a:hover {
  text-decoration: none;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  color: #707070;
  background-color: #f4f4f4;
  padding: 70px 50px 90px 50px;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  transition: opacity .3s ease .1s;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li:hover > ul {
  opacity: 1;
  pointer-events: all;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:first-child {
  padding-right: 70px;
  width: auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:first-child h2 {
  display: inline-block;
  color: #d60101;
  font-family: "Barlow",sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  border-bottom: 1px solid #d60101;
  padding-right: 20px;
  padding-bottom: 20px;
  margin-bottom: 25px;
  max-width: 300px;
  text-transform: uppercase;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:first-child p {
  font-family: "Barlow",sans-serif;
  font-size: 17px;
  line-height: 1.2;
  max-width: 190px;
  margin: 0;
  margin-bottom: 1rem;
}


.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:last-child {
  margin-left: -40px;
  margin-right: -40px;
  max-width: 900px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  width: auto;
  text-transform: uppercase;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:last-child > ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:last-child > ul > li {
  padding-left: 40px;
  padding-right: 40px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:last-child > ul > li > ul > li > a {
  display: block;
  padding: 15px 15px 15px 0;
  border-bottom: 1px solid #707070;
  font-size: 17px;
  color: #707070;
  text-decoration: none;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:last-child > ul > li > ul > li > a:hover {
  color: #d60101;
  border-bottom: 1px solid #d60101;
  text-decoration: none;
}

.top-menu-tab {
  color: #707070;
  font-family: "Barlow Condensed",sans-serif;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.top-menu-tab .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-transform: uppercase;
}

.top-menu-tab .hs-menu-wrapper > ul > li {
  line-height: 1.2;
}

.top-menu-tab .hs-menu-wrapper > ul > li > a {
  font-size: 16px;
  font-weight: 700;
  color: #707070;
}

.top-menu-tab .hs-menu-wrapper > ul > li > a:hover {
  color: #d60101;
  text-decoration: underline;
}

.sidebar-menu-primary {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  -ms-transform: translateX(250px);
  transform: translateX(250px);
  z-index: 13;
  transition: all .5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: #7d7d7d;
  font-weight: 700;
  visibility: hidden;
  color: #fff;
  font-size: 16px;
}

.menu-open .sidebar-menu-primary {
  -ms-transform: translate(0,0);
  transform: translate(0,0);
  visibility: visible;
}

.sidebar-menu-primary .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 1.6;
}

.sidebar-menu-primary .hs-menu-wrapper > ul > li > a {
  line-height: 1;
  display: block;
  padding: .7rem 1rem;
  color: #fff;
  text-decoration: none;
}

.sidebar-menu-primary .hs-menu-wrapper > ul > li > a:hover {
  color: #fff;
  background-color: #6f6f6f;
  text-decoration: none;
}

.sidebar-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  transition: opacity .5s ease,visibility .5s ease;
  background: rgba(254,254,254,.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.menu-open .sidebar-menu-overlay {
  cursor: pointer;
  opacity: 1;
  visibility: visible;
}

.side-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 6;
  height: 60px;
  font-size: 16px;
}

.side-bar .side-bar-wrapper {
  color: #fff;
  background-color: #d60101;
  font-size: 19px;
  font-weight: 700;
  padding: 20px 30px;
}

.side-bar a {
  position: relative;
  z-index: 7;
  color: #fff;
  line-height: inherit;
  text-transform: uppercase;
  text-decoration: none;
}

.side-bar a:not(:last-of-type) {
  border-right: 1px solid #fff;
  padding-right: 18px;
  margin-right: 18px;
}

.side-bar a:hover {
  color: #000;
  text-decoration: none;
}

.header-search-bar {
  background-color: #f2f2f2;
  height: 0;
  overflow: hidden;
  transition: height .3s ease;
}

.header-search-bar.open {
  height: 44px;
}

.grid {

    max-height: calc(100vh - 180px);
    column-count: 3;

}

.grid-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
  margin: 0 auto;
  max-width: 1920px;
  padding-left: 30px;
  padding-right: 30px;
}

.header-search-bar form {
  max-width: 100%;
  margin-bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-search-bar input {
  background-color: transparent ;
  width: 260px;
  margin-right: 15px;
  margin-bottom: 0;
  height: 30px;
  border: none;
  box-shadow: none;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0;
  display: block;
  transition: box-shadow .5s,border-color .25s ease-in-out;
}

.header-search-bar input::placeholder {
  color: #000;
  opacity: 1;
}

.header-search-bar button {
  color: #000;
  line-height: inherit;
  cursor: pointer;
  text-decoration: none;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.mobile-search {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  padding-right: .9375rem;
  padding-left: .9375rem;
  width: auto;
}

.mobile-search .btn-search {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background-color: #d60101;
  padding: 7px 11px;
  transition: background-color .3s ease;
  border-radius: 0;
  border: none;
  outline: none;
  display: block;
  padding-top: 18px;
  padding-bottom: 18px;
  text-transform: uppercase;
  margin: 0;
}

/* Popup Styling */

.sidebar-fixed-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  background-color: #fff;
  font-size: 12px;
  line-height: 16px;
  border-radius: 4px;
  overflow: visible;
  max-width: 90%;
  opacity: .25;
  line-height: 80px;
  box-shadow: 0 0 20px rgb(0 0 0 / 75%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-animation: ep-grow ease 350ms;
  animation: ep-grow ease 350ms;
}

.pop-act .sidebar-fixed-form { 
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sidebar-fixed-form .ep-close {
  position: absolute;
  bottom: 100%;
  right: 1rem;
  line-height: 16px;
  background-color: rgba(0,0,0,.6);
  border-radius: 3px 3px 0 0;
  cursor: pointer;
  transition: background-color ease 150ms;
}

.sidebar-fixed-form .ep-close::before {
  font-family: EasyPop;
  content: "뤄";
  color: #fff;
  font-size: 14px;
  padding: 4px 8px;
  vertical-align: bottom;
  transition: color ease 150ms;
}

.sidebar-fixed-form .ep-close:hover {
  background-color: rgba(255,255,255,.7);
}

.sidebar-fixed-form .ep-close:hover::before {
  color: #000;
}

.sidebar-fixed-form form {
  max-width: 100%;
  margin: 0;
  width: 597px;
  height: 280px;
  padding-top: 30px;
  margin-bottom: 0;
  padding-left: 30px;
  padding-right: 30px;
  overflow: hidden;

  padding-left: 15px;
  padding-right: 15px;
  overflow-y: auto;
}

.sidebar-fixed-form h2 {
  color: #707070;
  font-size: 26px;
  line-height: 1.2;
  font-family: "Barlow Condensed",sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.sidebar-fixed-form h2:after {
  content: " ";
  display: block;
  width: 90px;
  border-bottom: 1px solid #d60101;
  margin-top: 20px;
}

.sidebar-fixed-form .field {
  margin-bottom: 20px;
}

.sidebar-fixed-form .hs-form label {
  display: flex;
  align-items: center;
  min-width: 140px;
  font-size: 14px;
  font-family: "Barlow Condensed",sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1.8;
  color: #0a0a0a;
}

.sidebar-fixed-form .hs-input {
  display: block;
}

.sidebar-fixed-form textarea.hs-input {
  min-height: 200px;
}

.sidebar-fixed-form .hs-button {
  width: 100%;
  margin-bottom: 20px;
}

#ep-blackout {
  background-color: rgba(0,0,0,.85);
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJAgMAAACd/+6DAAAACVBMVEX///+BgYGBgYEqDk1XAAAAA3RSTlMAGgBKWz4FAAAALUlEQVR4Xg3HMQEAIAhE0c9ABPtcCgcikOKiOBJTxgcpOIZrokz2cpYPyqJDH2X5BnPxomElAAAAAElFTkSuQmCC);
  background-repeat: repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 99;
  visibility: hidden;
  opacity: 0;
}

.pop-act #ep-blackout {
  visibility: visible;
  opacity: 1;
}


/* Mobile Menu Styling */

.custom-menu-primary.mobile .ei-input {
  display: inline-block;
  vertical-align: top;
  color: #333;
  background: #fff;
  height: inherit;
  line-height: 28px;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  outline: none;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #fff;
  box-shadow: inset 1px 1px 3px rgb(0 0 0 / 10%);
  -webkit-transition: border linear 100ms,box-shadow linear 100ms,background-color linear 100ms;
  -moz-transition: border linear 100ms,box-shadow linear 100ms,background-color linear 100ms;
  -o-transition: border linear 100ms,box-shadow linear 100ms,background-color linear 100ms;
  transition: border linear 100ms,box-shadow linear 100ms,background-color linear 100ms;
}

.custom-menu-primary.mobile .ei-input:hover {
  border-color: #555;
}

.sel-act .custom-menu-primary.mobile .ei-input {
  border-color: #555;
  box-shadow: 0 0 5px rgb(85 85 85 / 50%);
  box-shadow: inset 1px 1px 3px rgb(0 0 0 / 10%), 0 0 5px rgb(85 85 85 / 50%);
}

.custom-menu-primary.mobile .ei-name {
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  background-color: #7d7d7d;
  padding: 10px 20px;
  line-height: inherit;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -ms-word-break: break-all;
  word-break: break-all;
}

.custom-menu-primary.mobile .ei-name:before {
  content: "";
  font-family: EasyInput;
  float: right;
  font-size: 22px;
  margin: 0px 0px 0px 12px;
}

.sel-act .custom-menu-primary.mobile .ei-name:before {
  content: "";
}

.custom-menu-primary.mobile .hs-menu-wrapper {
  position: absolute;
  top: 50px;
  left: 0;
  background-color: #fff;
  box-shadow: 0 2px 6px rgb(0 0 0 / 15%);
  overflow: auto;
  right: .9375rem;
  left: .9375rem;
  width: auto;
  border-radius: 3px;
  z-index: 9;
  display: none;
}

.sel-act .custom-menu-primary.mobile .hs-menu-wrapper {
  display: block;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li {
  height: 24px;
  line-height: 24px;
  padding: 0 12px;
  cursor: pointer;
  outline: none;
  text-transform: uppercase;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li > a {
  width: 100%;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #0a0a0a;
}

.custom-menu-primary.mobile .hs-menu-wrapper > ul > li:hover {
  background-color: #c0d2e4;
  background-color: rgba(128,179,233,.5);
}

.custom-menu-mobile {
  position: relative;
}

.custom-menu-primary .desktop-ei-name {
  display: none;
}

@media screen and (max-width: 0), screen and (min-width: 40em) {

  .custom-menu-primary .desktop-ei-name {
    display: block;
  }

  .custom-menu-primary.mobile .mobile-ei-name {
    display: none;
  }
}

@media print, screen and (min-width: 40em) {

  .mobile-search {
    display: none;
  }
}

@media print, screen and (min-width: 64em) {

  .custom-menu-primary.mobile {
    display: none;
  }

  .hide-for-large {
    display: none!important;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > ul > li:last-child > ul > li {
    width: 50%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}

@media screen and (min-width: 64em) {

  .side-bar {
    right: 0;
    top: calc(50% + 180px);
    transform: rotateZ(
      90deg
    );
    transform-origin: right top;
  }

  .side-bar i {
    transform: rotateZ(
      -90deg
    );
  }
}

@media (min-width: 1280px) {

  .top-header-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 35px;
  }

  .top-menu-tab {
    display: none;
  }

  .header-search-bar {
    padding-right: 20px;
  }
}

@media (min-width: 1440px) {

  .custom-header {
    padding-left: 90px;
    padding-right: 90px;
  }

  .header__container {
    padding-left: 90px;
    padding-right: 90px;
  }

  .grid-container {
    max-width: 1920px;
    padding-left: 90px;
    padding-right: 90px;
  }
}

@media screen and (max-width: 1024px) {

  .sidebar-fixed-form form {
    width: 906px;
    height: 425px;
    padding-left: 35px;
    padding-right: 35px;
  }
}

@media screen and (max-width: 1023px) {

  .side-bar .side-bar-wrapper {
    padding-left: 0;
  }

  .side-bar .side-bar-wrapper:before {
    content: "";
    background-color: #d60101;
    position: absolute;
    right: 20px;
    width: 120px;
    top: 0;
    bottom: 0;
    transform: skewX(
      -30deg
    );
    z-index: 6;
  }

  .sidebar-fixed-form textarea.hs-input {
    min-height: 200px;
  }
}

@media (max-width: 1280px) {

  .top-menu {
    display: none;
  }
}


@media screen and (max-width: 63.9375em) {

  .top-menu-tab {
    display: none;
  }

  .side-bar a:nth-of-type(1),
  .side-bar a span {
    display: none;
  }

  .custom-menu-primary.desktop {
    display: none;
  }

  .custom-menu-mobile ul.l_tinynav1 {
    display: none;
  }

  .custom-menu-mobile {
    margin-right: -.9375rem;
    margin-left: -.9375rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }

  .custom-menu-primary.mobile {
    padding-right: .9375rem;
    padding-left: .9375rem;
    width: auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
  }

  .custom-menu-primary.mobile .ei-input:focus,
  .custom-menu-primary.mobile .ei-input:focus-within {
    border-color: #555;
    box-shadow: 0 0 5px rgb(85 85 85 / 50%);
    box-shadow: inset 1px 1px 3px rgb(0 0 0 / 10%), 0 0 5px rgb(85 85 85 / 50%);
  }

  .custom-menu-mobile select {
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    background-color: #7d7d7d;
    padding: 10px 20px;
    height: inherit;
    line-height: inherit;
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    line-height: 28px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    position: relative;
    height: 50px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    border: none;
    height: 48px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 30px;
  }

  .custom-menu-mobile select::-ms-expand {
    display: none;
  }

  .custom-menu-mobile option {
    font-family: "Barlow",sans-serif;
    font-size: 16px;
    color: #0a0a0a;
    height: 24px;
    line-height: 24px;
    padding: 0 12px;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -ms-word-break: break-all;
    word-break: break-all;
    background-color: #fff;
    text-transform: uppercase;
  }

  .custom-menu-mobile option:hover {
    background-color: #c0d2e4;
    background-color: rgba(128,179,233,.5);
  }
}

@media screen and (max-width: 39.9375em) {

  .custom-header, 
  .header__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .btn-search {
    display: none;
  }

  .grid-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .custom-menu-mobile {
    text-align: center;
  }

  .sidebar-fixed-form form {
    padding-left: 15px;
    padding-right: 15px;
  }

  .custom-menu-mobile select {
    font-size: 12px;
  }

  .custom-menu-primary.mobile .ei-name {
    font-size: 12px;
  }
}


@media (max-width: 410px) {

  .custom-header.lp .custom-logo {
    width: calc(100% - 162px);
  }

  .custom-header.lp .side-buttons {
    height: 36px;
  }
}


@-webkit-keyframes ep-grow {
  0% {
    -webkit-transform: scale(.5);
    transform: scale(.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes ep-grow {
  0% {
    -webkit-transform: scale(.5);
    transform: scale(.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

.footer {
  padding-top: 100px;
  padding-bottom: 120px;
  font-size: 16px;
}

.footer__container {
  margin: 0 auto;
  max-width: 1460px;
  padding-left: 30px;
  padding-right: 30px;
}

.footer-logo img {
  max-width: 130px;
  margin-bottom: 60px;
}

.footer-top {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin-right: -.9375rem;
  margin-left: -.9375rem;
}

.footer-form {
  margin-bottom: 60px;
  padding-right: .9375rem;
  padding-left: .9375rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.footer-form form {
  max-width: 100% !important;
  margin: 0;
  position: relative;
}

.footer-form form .field {
  margin-bottom: 0;
}

.footer-form .hs-form label {
  display: none;
}

.footer-form .inputs-list.hs-error-msgs label {
  display: block;
}

.footer-form .hs_error_rollup .inputs-list.hs-error-msgs label {
  display: block;
}

.footer-form .hs-input {
  height: 60px;
  font-size: 24px !important;
  padding-left: 20px !important;
}

.footer-form input::placeholder, 
.footer-form textarea::placeholder {
  color: #898989;
  opacity: 1;
}

.footer-form .hs-submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  color: #d60101;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  top: 69px;
}

.footer-form .hs-submit:hover {
  color: #a30101;
  text-decoration: none;
}

.footer-form .hs-button {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  text-indent: -99999px;
  width: 60px;
  height: 100%;
  background: none;
  border: none;
  height: 60px;
}

.footer-form .hs-button:hover {
  background: none;
  border: none;
}

.footer-form  .actions:before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.footer-form h2,
.footer-form h3.form-title {
  font-family: "Barlow",sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #fff;
}

.footer-form h2:after,
.footer-form h3.form-title:after {
  content: "";
  display: block;
  width: 75px;
  border-bottom: 1px solid #d60101;
  margin-top: 26px;
}

.footer-form p {
  font-family: "Barlow",sans-serif;
  font-size: 17px;
  color: #fff;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 30px;
}

.footer-social-wrapper {
  padding-right: .9375rem;
  padding-left: .9375rem;
  margin-bottom: 60px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.footer-social-wrapper h2 {
  font-family: "Barlow",sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #fff;
}

.footer-social-wrapper h2:after {
  content: "";
  display: block;
  width: 75px;
  border-bottom: 1px solid #d60101;
  margin-top: 26px;
}

.footer-social-wrapper h2 a {
  color: #fff;
  text-decoration: none;
}

.footer-social-wrapper h2 a:hover {
  color: #d60101;
  text-decoration: none;
}

.contact-links {
  margin-bottom: 28px;
}

.contact-links a {
  font-size: 22px;
  color: #fff;
  text-decoration: none;
}

.contact-links a:not(:last-of-type) {
  margin-right: 25px;
}

.contact-links a span {
  color: #d60101;
  margin-right: 5px;
}

.contact-links a:hover {
  color: #d60101;
  text-decoration: none;
}

.office-links {
  font-size: 14px;
  margin-bottom: 36px;
}

.office-links a {
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
}

.office-links a:hover {
  color: #d60101;
  text-decoration: none;
}

.office-links a:not(:last-of-type) {
  margin-right: 40px;
}

.social-links {
  font-size: 24px;
}

.social-links a {
  color: #fff;
  text-decoration: none;
}

.social-links a:not(:last-of-type) {
  margin-right: 60px;
}

.social-links a:hover {
  color: #d60101;
  text-decoration: none;
}

.footer hr {
  box-sizing: content-box;
  height: 0;
  margin-top: 0;
  margin-bottom: 90px;
  clear: both;
  max-width: 80rem;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
}

.footer-bottom {
  overflow: auto;
  text-transform: uppercase;
}

.footer-bottom h3 {
  font-family: "Barlow",sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.footer-bottom h3:after {
  content: "";
  display: block;
  width: 75px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  margin-top: 20px;
}

.footer-bottom h3 a {
  color: #fff;
  display: block;
  white-space: nowrap;
  text-decoration: none;
}

.footer-bottom h3 a:hover {
  color: #d60101;
  text-decoration: none;
}

.general-menu, 
.products-menu, 
.services-menu {
  float: left;
  margin-right: 100px;
  margin-bottom: 60px;
}

.terms-menu {
  float: left;
  margin-bottom: 60px;
}

.footer-bottom .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}

.footer-bottom .hs-menu-wrapper > ul > li > a {
  display: block;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
}

.footer-bottom .hs-menu-wrapper > ul > li > a:hover {
  color: #d60101;
  text-decoration: none;
}

.row {
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.copyright {
  margin-bottom: 30px;
  margin-right: 100px;

  margin-bottom: 64px;
}

.footer-right a {
  display: inline-block;
  font-size: 18px;
  border-bottom: 1px solid #fff;
  padding-bottom: 25px;
}

.footer-right a strong {
  font-weight: bold;
  line-height: inherit;
}

.footer-right a:hover {
  border-bottom: 1px solid #d60101;
}

.back-to-top {
  position: fixed;
  bottom: 8px;
  left: 0;
  right: 0;
  z-index: 5;
  text-align: left;
  font-size: 16px;
}

.back-to-top a {
  color: #fff;
  background-color: #d60101;
  padding: 12px 30px 8px 30px;
  position: relative;
  text-transform: uppercase;
  transition: background-color .3s ease;
  text-decoration: none;
}

.back-to-top a:hover {
  color: #fff;
  background-color: #000;
  text-decoration: none;
}

.back-to-top a:before {
  content: " ";
  background-color: #d60101;
  display: block;
  width: 20px;
  transform: skewX(
    -20deg
  );
  position: absolute;
  top: 0;
  bottom: 0;
  left: -7px;
  transition: background-color .3s ease;
}

.back-to-top a:after {
  content: " ";
  background-color: #d60101;
  display: block;
  width: 20px;
  transform: skewX(
    20deg
  );
  position: absolute;
  top: 0;
  bottom: 0;
  right: -7px;
  transition: background-color .3s ease;
}

.back-to-top a:hover:before, 
.back-to-top a:hover:after {
  background-color: #000;
}

@media print, screen and (min-width: 64em) {

  .footer-form {
    width: 41.66667%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .footer-social-wrapper {
    width: 41.66667%;
    margin-left: 8.33333%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}

@media screen and (min-width: 64em) {

  .back-to-top {
    text-align: center;
  }
}

@media (min-width: 1440px) {

  .footer__container {
    padding-left: 90px;
    padding-right: 90px;
  }
}


@media screen and (max-width: 1023px) {

  .footer-form p {
    font-size: 14px;
  }
}


@media screen and (max-width: 39.9375em) {

  .footer__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer hr {
    margin-bottom: 40px;
  }

  .footer-bottom h3 {
    margin-bottom: 20px;
  }

  .general-menu {
    display: none;
  }

  .general-menu, 
  .products-menu, 
  .services-menu {
    margin-right: 20px;
    margin-bottom: 20px;
  }

  .terms-menu {
    margin-bottom: 20px;
  }

  .footer-bottom .hs-menu-wrapper {
    display: none;
  }
}


@media screen and (max-width: 390px) {

  .footer-form .hs-input {
    padding-right: 60px !important;
  }
}

@media screen and (max-width: 340px) {

  .contact-links a:nth-of-type(2) {
    font-size: 20px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

.section.post-footer .actions {
  text-align: left;
}

.blog-comments .hs-submit {
  text-align: center;
  margin-top: 30px;
}

.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  overflow: hidden;
  overflow-x: auto;
}

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

input[type="search"] {
  -webkit-appearance: none;
}

.grecaptcha-badge {
  margin-left: 0;
}


/* TODO: Find a better place for this */
.content-wrapper {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.hs-blog-listing, 
.hs-blog-post {
  font-size: 16px;
}

.breadcrumb {
  color: #707070;
  margin-bottom: 25px;
  font-size: 14px;
  font-family: "Barlow Condensed",sans-serif;
  font-weight: 700;
}

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

.breadcrumb a {
  color: #707070;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #d60101;
  text-decoration: underline;
}

.listing-banner {
  margin-bottom: 50px;
}

.listing-banner .extra-title {
  text-transform: uppercase;
  margin-bottom: 25px;
}

.extra-title-wrapper {
  background-color: #000;
  padding: 25px 36px;
}

.extra-title-wrapper h1 {
  font-family: "Barlow",sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.featured-post-wrapper {
  margin-right: -.9375rem;
  margin-left: -.9375rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.left-panel {
  padding-right: .9375rem;
  padding-left: .9375rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.banner-featured-products {
  padding-right: .9375rem;
  padding-left: .9375rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.left-panel .content {
  color: #fff;
  background-color: #000;
  padding: 30px 15px 110px 15px;
  position: relative;
}

.left-panel h2 {
  color: #d60101;
  margin: 0;
  line-height: 1;
  margin-bottom: 25px;
  font-family: "Barlow",sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.left-panel h2 a {
  color: #fff;
  font-size: 30px;
  line-height: inherit;
  text-decoration: none;
}

.left-panel h2 a:hover {
  color: #fff;
  text-decoration: underline;
}

.left-panel p {
  font-family: "Barlow",sans-serif;
  font-size: 17px;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 1rem;
}

.featured-post-wrapper .left-panel p strong {
  font-weight: normal;
}

.left-panel .browse-label {
  position: absolute;
  bottom: 40px;
  font-family: "Barlow Condensed",sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

.left-panel .browse-label:hover {
  color: #d60101;
  text-decoration: underline;
}

.left-panel .browse-label:before {
  content: "";
  display: block;
  width: 110px;
  border-top: 1px solid #d60101;
  margin-bottom: 20px;
}

.banner-featured-products-slider {
  position: relative;
  overflow: hidden;
}

.banner-featured-products a {
  position: relative;
  background-color: #e6e6e6;
  display: block;
  background-position: center;
  background-size: auto 102%;
  transition: background-size .3s ease;
  height: 460px;
}

h2.listing-title {
  font-family: "Barlow",sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: #d60101;
  margin: 0;
  margin-bottom: 50px;
}

.filter-settings {
  font-size: 14px;
  color: #000;
  background-color: #ededed;
  font-family: "Barlow Condensed",sans-serif;
  font-weight: 500;
  position: sticky;
  top: 60px;
  z-index: 3;
  margin-bottom: 40px;
}

.filter-settings .sort-options {
  padding: 11px 0 0 25px;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
}

.list-category {
  margin-right: 26px;
  width: auto;
  margin-bottom: 11px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.list-category span {
  margin-right: 26px;
  white-space: nowrap;
}

.list-category ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}

ul.l_tinynav2 {
  display: none;
}

.list-category-wrap {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  color: #333;
  background: #fff;
  height: 30px;
  line-height: 28px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 0;
  box-shadow: inset 1px 1px 3px rgb(0 0 0 / 10%);
  -webkit-transition: border linear 100ms,box-shadow linear 100ms,background-color linear 100ms;
  -moz-transition: border linear 100ms,box-shadow linear 100ms,background-color linear 100ms;
  -o-transition: border linear 100ms,box-shadow linear 100ms,background-color linear 100ms;
  transition: border linear 100ms,box-shadow linear 100ms,background-color linear 100ms;
  position: relative;
}

.list-category-wrap:hover {
  border-color: #555;
}

.list-category-wrap::after {
  content: "";
  font-family: EasyInput;
  float: right;
  font-size: 22px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  font-weight: 500;
  color: #333;
  margin: 0px 0px 0px 12px;
}

.top-act .list-category-wrap::after {
  content: "";
}

.list-category select {
  border: none;
  display: block;
  height: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  border: 0;
  padding: 0 0 0 4px;
  box-shadow: inset 1px 1px 3px rgb(0 0 0 / 10%);
}

.blog-site-search {
  margin-right: 26px;
  width: auto;
  margin-bottom: 11px;
  position: relative;
}

.blog-site-search form {
  max-width: 100%;
  margin: 0;
}

.blog-site-search .hs-search-field__input {
  width: 150px;
  height: 30px;
  padding: .5rem;
  border: 1px solid #cacaca;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgb(10 10 10 / 10%);
  font-family: inherit;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #0a0a0a;
  padding-left: 12px;
  padding-right: 20px;
  border-radius: 0;
  transition: color .3s ease,background-color .3s ease,border-color .3s ease;
}

.blog-site-search .hs-search-field__input:hover {
  border-color: #555;
}

.blog-site-search .hs-search-field__input:focus {
  outline: 0;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow .5s,border-color .25s ease-in-out;
}

.blog-site-search .hs-search-field--open .hs-search-field__suggestions {
  border: 1px solid #000;
  padding: 12px;
  background-color: #fff;
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  width: 100%;
}

.blog-site-search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 100%;
  color: #d60101;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

.blog-site-search button:hover {
  color: #a30101;
  text-decoration: none;
}

.filter-settings .sort-options input[type=text]::placeholder {
  color: #333;
  opacity: 1;
}


.post-listing {
  margin-right: -.9375rem;
  margin-left: -.9375rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.post-item {
  padding-right: .9375rem;
  padding-left: .9375rem;
  margin-bottom: 50px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.post-item-inner {
  padding-bottom: 30px;
  margin-right: -.9375rem;
  margin-left: -.9375rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.post-item hr {
  clear: both;
  max-width: 80rem;
  height: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
  box-sizing: content-box;
  margin: 0;
  width: 100%;
}


.post-item-body {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
  padding-right: .9375rem;
  padding-left: .9375rem;
}

.post-item h3 {
  font-family: "Barlow Condensed",sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 30px;
  color: #d60101;
  text-transform: uppercase;
}

.post-item h3:after {
  content: " ";
  display: block;
  width: 90px;
  border-bottom: 1px solid #d60101;
  margin-top: 30px;
}

.post-item h3 a {
  color: inherit;
  text-decoration: none;
}

.post-item h3 a:hover {
  color: #d60101;
  text-decoration: underline;
}

.post-item .date {
  font-family: "Barlow Condensed",sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.post-item p {
  font-family: "Barlow Condensed",sans-serif;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.post-item .info-link {
  color: #707070;
  font-size: 15px;
  font-family: "Barlow Condensed",sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.post-item .info-link:hover {
  color: #707070;
  text-decoration: underline;
}

.post-item .info-link:before {
  content: " ";
  display: block;
  width: 90px;
  border-top: 1px solid #d60101;
  margin-bottom: 15px;
}

a.blog-item__image {
  padding-right: .9375rem;
  padding-left: .9375rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.img-zoom-wrapper {
  display: block;
  overflow: hidden;
}

.img-zoom-wrapper img {
  width: 250px;
  transition: transform .3s ease;
}

.post-item .img-zoom-wrapper img {
  max-height: 185px;
  height: 185px;
  object-fit: cover;
}

div#infscr-loading {
  display: none !important;
}

.blog-pagination a {
  display: block;
  color: #0a0a0a;
  background-color: #cecece;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  padding: 25px 20px;
  margin-bottom: 40px;
  text-transform: uppercase;
  transition: color .3s ease,background-color .3s ease;
}

.blog-pagination a:hover {
  color: #fff;
  background-color: #d60101;
  text-decoration: none;
}

.services-banner {
  margin-bottom: 50px;
}

.services-banner-row {
  margin-right: -.9375rem;
  margin-left: -.9375rem;
  -ms-flex-align: end;
  align-items: flex-end;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.services-left {
  padding-right: .9375rem;
  padding-left: .9375rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.services-right {
  padding-right: .9375rem;
  padding-left: .9375rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.services-right-inner {
  margin-right: -.9375rem;
  margin-left: -.9375rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.latest-testimonial-wrapper {
  padding-right: .9375rem;
  padding-left: .9375rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.downloads-wrapper {
  padding-right: .9375rem;
  padding-left: .9375rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
  text-transform: uppercase;
}

.downloads-wrapper .hs_cos_wrapper,
.downloads-wrapper .download-inner {
  height: 100%;
}

.brochures-downloads-more {
  height: 100%;
  color: #000;
  padding: 40px 30px;
  position: relative;
  background-position: center;
  background-size: 102% auto;
  transition: background-size .3s ease;
}

.brochures-downloads-more h2 {
  font-family: "Barlow",sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 10px;
  word-break: normal;
}

.brochures-downloads-more h2 a {
  color: inherit;
  text-decoration: none;
}

.brochures-downloads-more h2 a:hover {
  color: #d60101;
  text-decoration: underline;
}

.brochures-downloads-more .subtitle {
  color: #d60101;
  font-size: 18px;
  font-weight: 700;
  font-family: "Barlow Condensed",sans-serif;
}

.brochures-downloads-more .link {
  font-weight: 700;
  font-family: "Barlow Condensed",sans-serif;
  position: absolute;
  bottom: 40px;
  color: inherit;
}

.brochures-downloads-more .link:before {
  content: "";
  display: block;
  width: 110px;
  border-top: 1px solid #d60101;
  margin-bottom: 10px;
}

.brochures-downloads-more .link:hover {
  color: #d60101;
  text-decoration: underline;
}


.latest-testimonial-wrapper h2 {
  font-family: "Barlow",sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: #d60101;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.latest-testimonial-wrapper h2 a {
  color: inherit;
  text-decoration: none;
}

.latest-testimonial-wrapper h2 a:hover {
  color: #d60101;
  text-decoration: underline;
}

.latest-testimonial-wrapper p {
  font-family: "Barlow",sans-serif;
  font-size: 17px;
  color: #707070;
  line-height: 1.2;
  margin-bottom: 40px;
}

.latest-testimonial-wrapper .name {
  color: #d60101;
  font-size: 14px;
  font-weight: 700;
  font-family: "Barlow Condensed",sans-serif;
}

.latest-testimonial-wrapper .company {
  font-size: 12px;
  font-weight: 700;
  color: #707070;
  font-family: "Barlow Condensed",sans-serif;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.latest-testimonial-wrapper .link {
  font-size: 18px;
  font-weight: 700;
  font-family: "Barlow Condensed",sans-serif;
  text-transform: uppercase;
  color: #707070;
  text-decoration: none;
}

.latest-testimonial-wrapper .link:hover {
  color: #d60101;
  text-decoration: underline;
}

.latest-testimonial-wrapper .link:before {
  content: "";
  display: block;
  width: 110px;
  border-top: 1px solid #d60101;
  margin-bottom: 30px;
}

.services-banner .heading {
  color: #fff;
  background-color: #000;
  padding: 35px 20px;
  margin-bottom: 30px;
}

.services-banner .heading h2 {
  font-size: 50px;
  font-family: "Barlow Condensed",sans-serif;
  font-weight: 600;
  color: inherit;
  line-height: .8;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.services-banner .heading h2 span {
  display: block;
  font-size: 15px;
  font-weight: 700;
  font-family: "Barlow",sans-serif;
  color: #b4b4b4;
}

.services-banner .heading h2 a {
  color: inherit;
  text-decoration: none;
}

.services-banner .heading h2 a:hover {
  color: #d60101;
  text-decoration: underline;
}

.services-banner .heading .grid-x {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}


.services-banner .heading .medium-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.services-banner .heading .medium-shrink {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.services-banner .heading p {
  font-family: "Barlow",sans-serif;
  line-height: 1.2;
  font-size: 15px;
  font-weight: 700;
  max-width: 320px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.services-banner .heading .link {
  font-size: 18px;
  font-weight: 700;
  font-family: "Barlow Condensed",sans-serif;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
}

.services-banner .heading .link:hover {
  color: #d60101;
  text-decoration: underline;
}

.services-banner .heading .link:before {
  content: " ";
  display: block;
  margin-bottom: 15px;
  width: 110px;
  border-top: 1px solid #d60101;
}

.services-banner .video {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  margin-bottom: 50px;
  background-position: center;
  background-size: auto 102%;
  transition: background-size .3s ease;
}	

.video-list .title-container {
  margin-bottom: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.video-list .title-container h2 {
  font-family: "Barlow",sans-serif;
  line-height: 1.2;
  font-size: 36px;
  font-weight: 700;
  color: #d60101;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: .5rem;
}

.video-list .title-container .view-archive {
  font-size: 16px;
  font-family: "Barlow Condensed",sans-serif;
  font-weight: 700;
  color: #0a0a0a;
  text-transform: uppercase;
  text-decoration: none;
}

.video-list .title-container .view-archive:hover {
  color: #d60101;
  text-decoration: underline;
}

.video-list .title-container .view-archive:before {
  content: " ";
  display: block;
  width: 110px;
  border-top: 1px solid #d60101;
  margin-bottom: 10px;
}

.video-items-x {
  margin-right: -.9375rem;
  margin-left: -.9375rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.video-item {
  padding-right: .9375rem;
  padding-left: .9375rem;
  margin-bottom: 50px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.video-item h3 {
  font-family: "Barlow",sans-serif;
  line-height: 1.2;
  color: #d60101;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  height: 40px;
}

.video-item .video {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}

.video-item .video img {
  width: 100%;
  transition: transform .3s ease;
}

.video-item .video i {
  color: #fff;
  background-color: #000;
  opacity: .7;
  font-size: 24px;
  transition: opacity .3s ease;
  border-radius: 90px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-left: 6px;
  position: absolute;
}

.video-item .video:hover i {
  opacity: 1;
}


.btn-full {
  display: block;
  background-color: #cecece;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  padding: 25px 20px;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #fff;
  background-color: #000;
  transition: color .3s ease,background-color .3s ease;
}

.btn-full:hover {
  color: #fff;
  background-color: #d60101;
  text-decoration: none;
}

/* Post Page Styling */

.post-wrapper {
  margin-bottom: 50px;
  overflow: hidden;
}

.post-wrapper.post-top-wrapper {
  margin-bottom: 0;
}

.post-wrapper hr {
  clear: both;
  max-width: 80rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
  box-sizing: content-box;
  margin-bottom: 60px;
  overflow: visible;
}

.blog-post-header h1 {
  font-family: "Barlow",sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #d60101;
  border-bottom: 1px solid #cacaca;
  padding-bottom: 30px;
  margin-bottom: 30px;
  margin-top: 15px;
  line-height: 1;
  text-transform: uppercase;
}

.blog-post-header .date {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.blog-post-header-inner {
  margin-left: -35px;
  margin-right: -35px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.blog-post-header-wrap {
  padding-left: 35px;
  padding-right: 35px;
  margin-bottom: 30px;
  width: 100%;
}

.post-wrapper.post-top-wrapper .blog-post-header-wrap {
  margin-bottom: 0;
}

.blog-post-header .back-link {
  color: #0a0a0a;
  display: block;
  margin-top: 45px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
}

.blog-post-header .back-link:hover {
  color: #d60101;
  text-decoration: underline;
}

.contact-details {
  color: #fff;
  background-color: #707070;
  font-size: 14px;
  padding: 12px 40px 12px 25px;
  font-family: "Barlow Condensed",sans-serif;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-top: 45px;
}

.contact-details .text-upper {
  text-transform: uppercase;
}

.contact-details a {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  text-decoration: none;
}

.contact-details a:hover {
  color: #d60101;
  text-decoration: none;
}

.contact-details .vr {
  width: 1px;
  height: 30px;
  border-left: 1px solid #fff;
  margin-left: 10px;
  margin-right: 10px;
}

.contact-details i {
  margin-right: 12px;
}

.product-search-bar .search-bar {
  color: #000;
  font-size: 17px;
  font-weight: 700;
  background-color: #cecece;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 20px;
  padding-right: 20px;
}

.product-search-bar .search-bar-text {
  padding: 0 20px;
  text-transform: uppercase;
}

.product-search-bar .search-bar-text a {
  color: #000;
  white-space: nowrap;
  text-decoration: none;
}

.product-search-bar .search-bar-text a:hover {
  color: #d60101;
  text-decoration: underline;
}

.product-search-bar .button-on-input {
  width: 100%;
  max-width: 550px;
  position: relative;
}

.product-search-bar form {
  max-width: 100%;
  margin: 0;
}

.product-search-bar .hs-search-field__input {
  font-size: 17px;
  font-weight: 700;
  height: 40px;
  margin: 0 0 1rem;
  padding: .5rem;
  border: 1px solid #cacaca;
  margin-bottom: 0;
  border-radius: 0;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgb(10 10 10 / 10%);
  font-family: inherit;
  line-height: 1.5;
  color: #0a0a0a;
  transition: color .3s ease,background-color .3s ease,border-color .3s ease;
}

.product-search-bar .hs-search-field__input:hover {
  border-color: #555;
}

.product-search-bar .hs-search-field__input:focus {
  outline: 0;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow .5s,border-color .25s ease-in-out;
}

.product-search-bar .hs-search-field--open .hs-search-field__suggestions {
  border: 1px solid #000;
  background-color: #fff;
  padding: 12px;
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  width: 100%;
}

.product-search-bar button {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  color: #d60101;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}

.product-search-bar button:hover {
  color: #a30101;
  text-decoration: none;
}

.product-search-bar .search-bar input[type=text]::placeholder {
  color: #000;
  opacity: 1;
}

.cat-title {
  padding-right: .9375rem;
  padding-left: .9375rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
  margin-bottom: 20px;
}

.cat-title h2 {
  font-family: "Barlow",sans-serif;
  line-height: 1.2;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #d60101;
  margin-bottom: 0;
}

.cat-title h2 a {
  color: inherit;
  text-decoration: none;
}

.cat-title h2 a:hover {
  color: #d60101;
  text-decoration: underline;
}

.cat-post-item {
  margin-bottom: 40px;
  padding-right: .9375rem;
  padding-left: .9375rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.cat-post-item-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.hs-cat-image-wrapper {
  width: 100%;
}

.hs-cat-image-wrapper a {
  display: block;
  min-height: 340px;
  overflow: hidden;
  position: relative;
}

.hs-cat-image-wrapper div {
  position: absolute;
  background-position: center;
  background-size: cover;
  transition: top .3s ease,bottom .3s ease,left .3s ease,right .3s ease;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.cat-body-content {
  color: #fff;
  background-color: #d60101;
  padding: 40px 45px 80px;
  position: relative;
  width: 100%;
}

.cat-body-content h3 {
  font-family: "Barlow",sans-serif;
  line-height: 1.2;
  font-size: 24px;
  font-weight: 700;
  color: inherit;
  margin: 0;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.cat-body-content h3 a {
  color: inherit;
  text-decoration: none;
}

.cat-body-content h3 a:hover {
  color: inherit;
  text-decoration: underline;
}

.cat-body-content .subtitle {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
}

.cat-body-content p {
  font-family: "Barlow",sans-serif;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cat-body-content .link {
  position: absolute;
  bottom: 40px;
  font-weight: 700;
  font-family: "Barlow Condensed",sans-serif;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
}

.cat-body-content .link:hover {
  color: inherit;
  text-decoration: underline;
}

.cat-body-content .link:before {
  content: "";
  display: block;
  width: 110px;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}

.hs-blog-post .services-banner {
  margin-bottom: 10px;
}

.section.post-footer {
  margin-top: 50px;
}

.blog-post__body h2,
.blog-post__body h3 {
  font-family: "Barlow",sans-serif;
  font-size: 24px;
  line-height: 1.2;
  color: #0a0a0a;
  font-weight: 700;
  margin: 0;
  margin-bottom: .5rem;
}


.hs-blog-post .services-right {
  margin-bottom: 40px;
}

.hs-blog-post .latest-testimonial-wrapper {
  height: 340px;
  margin-bottom: 0;
}

.hs-blog-post .brochures-downloads-more {
  height: 380px;
}

.product-search-bar {
  margin-bottom: 60px;
}

@media print, screen and (min-width: 40em) {

  .breadcrumb .hide-for-medium {
    display: none;
  }

  .post-item-body {
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    width: auto;
  }

  a.blog-item__image { 
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .latest-testimonial-wrapper {
    width: 50%;
  }

  .downloads-wrapper {
    width: 50%;
  }

  .services-banner .heading .medium-auto {
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    width: auto;
  }

  .services-banner .heading .medium-shrink {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .video-item {
    width: 50%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  a.blog-item__image.for-mob {
    display: none;
  }

  .hs-cat-image-wrapper {
    width: 41.66667%;
  }

  .cat-body-content {
    width: 58.33333%;
  }
}


@media screen and (min-width: 40em) {

  .left-panel .content {
    padding: 40px 35px 110px 35px;
  }

  .post-item-body {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
  }

  .product-search-bar .search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    padding-right: 0;
  }

  .services-banner .heading {
    padding: 35px;
  }

  .services-banner .heading .medium-auto {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
  }

  .services-banner .heading .medium-shrink {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .services-banner .video {
    height: 520px;
  }

  .cat-body-content {
    min-height: 380px;
  }
}

@media print, screen and (min-width: 64em) {

  .left-panel {
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    width: auto;
  }

  .banner-featured-products {
    width: 50%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .services-left {
    width: 66.66667%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .services-right {
    width: 33.33333%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .latest-testimonial-wrapper {
    width: 100%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .downloads-wrapper {
    width: 100%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .video-item { 
    width: 33.33333%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .cat-post-item {
    width: 33.33333%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .hs-cat-image-wrapper,
  .cat-body-content {
    width: 100%;
  }
}

@media screen and (min-width: 64em) {

  .extra-title-wrapper {
    padding: 30px 36px;
  }

  .extra-title-wrapper h1 {
    font-size: 26px;
  }

  .left-panel {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
  }

  .banner-featured-products {
    width: 50%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .left-panel .content {
    padding-right: 20%;
    padding: 60px 60px 110px 60px;
    min-height: 460px;
  }

  .left-panel h2 {
    margin-bottom: 50px;
  }

  .left-panel h2 a {
    font-size: 38px;
  }

  .banner-featured-products a:hover {
    background-size: auto 110%;
  }

  .post-item:hover .img-zoom-wrapper img {
    transform: scale(1.1);
  }

  .product-search-bar {
    margin-bottom: 100px;
  }

  .product-search-bar .search-bar {
    padding-left: 0;
    justify-content: space-around;
  }

  .services-banner {
    margin-bottom: 100px;
  }

  .latest-testimonial-wrapper {
    margin-bottom: 40px;
  }

  .brochures-downloads-more {
    min-height: 380px;
  }

  .brochures-downloads-more:hover {
    background-size: 110% auto;
  }

  .services-banner .heading {
    padding: 50px 50px 80px;
  }

  .services-banner .heading h2 {
    font-size: 78px;
  }

  .services-banner .heading p {
    max-width: 170px;
    margin-bottom: 0;
  }

  .services-banner .video {
    height: 460px;
    margin-bottom: 0;
  }

  .services-banner .video:hover {
    background-size: auto 110%;
  }

  .video-item:hover .video img {
    transform: scale(1.1);
  }

  .product-search-bar .search-bar input[type=text]::placeholder {
    color: #fff;
    opacity: 0;
  }

  .cat-title {
    margin-bottom: 50px;
  }

  .cat-post-item-inner:hover .hs-cat-image-wrapper div {
    top: -20px;
    bottom: -20px;
    left: -20px;
    right: -20px;
  }

  .hs-blog-post .services-banner {
    margin-bottom: 50px;
  }

  .hs-blog-post .brochures-downloads-more {
    min-height: 380px;
  }
}

@media (min-width: 1440px) {

  .content-wrapper {
    padding-left: 90px;
    padding-right: 90px;
  }
}


@media screen and (max-width: 1279px) and (min-width: 1023px) {

  .cat-post-item {
    width: 100%;
  }

  .hs-cat-image-wrapper {
    width: 41.66667%;
  }

  .cat-body-content {
    width: 58.33333%;
  }

  .hs-blog-post .services-right {
    width: 100%;
  }

  .hs-blog-post .latest-testimonial-wrapper {
    width: 33.33333%;
  }

  .hs-blog-post .downloads-wrapper {
    width: 66.66667%;
  }
}

@media screen and (max-width: 1023px) {

  .left-panel p {
    font-size: 14px;
  }

  .banner-featured-products a {
    height: auto;
    min-height: 1px;
  }

  .blog-post__body p {
    font-size: 14px;
  }

  .hs-blog-post .latest-testimonial-wrapper p {
    font-size: 14px;
  }
}

@media screen and (max-width: 730px) {

  .product-search-bar .hs-search-field__input {
    font-size: 13px;
  }
}


@media screen and (max-width: 639px) {

  .video-item h3 {
    height: auto;
  }

  .hs-blog-post .brochures-downloads-more {
    height: 380px;
  }
}

@media screen and (max-width: 63.9375em) {

  .post-wrapper hr.top-hr {
    display: none;
  }

  .blog-post-header h1 {
    margin-top: 0;
  }

  .product-search-bar .search-bar-text.show-for-large {
    display: none;
  }

  .cat-post-item + .cat-post-item {
    display: none;
  }
}

@media screen and (max-width: 39.9375em) {

  .content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .breadcrumb .show-for-medium {
    display: none;
  }

  .latest-testimonial-wrapper {
    margin-bottom: 40px;
  }

  .brochures-downloads-more {
    height: 320px;
  }

  .video-list .title-container h2 {
    font-size: 22px;
  }

  .video-list .title-container .view-archive {
    display: none;
  }

  h2.listing-title {
    font-size: 22px;
  }

  a.blog-item__image:not(.for-mob) {
    display: none;
  }

  a.blog-item__image.for-mob {
    padding-right: 0;
    padding-left: 0;
  }

  a.blog-item__image.for-mob img {
    margin-bottom: 20px;
    width: 100%;
    margin-bottom: 20px;
  }

  .contact-details {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 40px 20px 25px;
  }

  .contact-details .title {
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 10px;
    width: 100%;
  }

  .contact-details .show-for-medium {
    display: none!important;
  }

  .contact-details a:not(:last-of-type) {
    margin-bottom: 10px;
  }

  .product-search-bar .search-bar-text {
    padding: 10px 0 7px 0;
    text-align: center;
  }

  .product-search-bar .hs-search-field__input {
    font-size: 10px;
  }

  .cat-title h2 {
    font-size: 22px;
  }

  .cat-body-content {
    padding: 40px 30px 80px;
  }

  .cat-body-content p {
    display: none;
  }
}


/*********************************** Component Direct Blog **********************************************/

/****************Component Direct  Header Css Start *************/

.loaded  .top-header .menu-btn i {
  vertical-align: middle;
  margin-top: 4px;
}
header.loaded .selling-points a:hover {
  text-decoration: underline;
}
.loaded input#Header_txtSearch {
  margin-bottom: 0;
  height: 50px;
  min-width: 0;
  font-family: "Roboto",sans-serif;
  font-weight: 300;
  font-size: 16px;
  transition: height .3s ease;
  border: 1px solid #cacaca;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgb(10 10 10 / 10%);
  padding: .5rem 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1.5;
  color: #0a0a0a;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  width: auto;
  border-radius: 0;
}
button#Header_btnSearch {
  color: #fff;
  background-color: #d60101;
  width: 50px;
  font-size: 20px;
  text-decoration: none;
  border: 0;
  border-radius: 0 !important;
}

.loaded .top-header .account-btn {
  font-size: 24px !important;
  margin-right: 44px !important;
  vertical-align: middle;
  line-height: 29px;
  margin-top: 5px;
}
.loaded  .top-header .menu-btn {
  font-size: 32px;
  line-height: 22px;
  color: #fff;
}
.loaded .search-box {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  width: auto;
  position: relative;
  margin-left: 80px;
  margin-right: 80px;
}
form#search_form {
  margin-bottom: 0;
  max-width: 100% !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.loaded  .top-header .custom-logo img {
  height:100% !important;
  max-width: 239px !important;
  width: auto;
}
.loaded  .top-header .custom-logo {
  width: auto !important;
  max-width: unset !important;
}
.loaded  .top-header .custom-logo a {
  display: block;
  height: 50px;
  transition: height .3s ease;
}
body.blog-template .grid-container {
  max-width: 1460px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  display: block;
}
.loaded .top-header .basket-btn i {
  color: #d60101;
  font-size: 29px;
  margin-left: 7px;
  vertical-align: sub;
}
.loaded .top-header .basket-btn strong {
  margin-top: 2px !important;
  display: inline-block;
}
.loaded .top-header .basket-btn {
  font-size: 19px;
  margin-right: 19px;
  font-family: "Roboto",sans-serif;
  font-weight: 300;
  vertical-align: middle;
  margin-top: 6px;
}
.loaded  a#Header_hplSwitchIncludeVAT {
  margin-top: 1px;
}
.loaded  .top-header-wrapper * {
  color: #fff;
}
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.loaded .top-header {
  background-color: #181818;
  padding-top: 25px;
  padding-bottom: 25px;
  transition: padding .3s ease;
  position: static;
}
.loaded .top-header-wrapper {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 0;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.bottom-header {
  background-color: #222;
}
header.loaded {
  color: #fff;
  padding-top: 178px;
}
.loaded  .bottom-header .bottom-header-wrapper {
  position: relative;
}
.loaded .custom-menu-primary.desktop {
  background-color: transparent;
  display: block !important;
}
.loaded .bottom-header .product-category:not(:last-child) {
  padding-right: 30px;
}
.loaded .bottom-header .product-category {
  display: inline-block;
}
.loaded .bottom-header .product-cat-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 25px 0;
  transition: padding .3s ease;
  font-family: "Roboto Condensed",sans-serif;
  color: #fff;
}
.loaded .bottom-header .product-cat-btn i {
  color: #d60101;
  margin-left: 15px;
  font-size: 26px;
  vertical-align: middle;
}
.align-middle {
  -ms-flex-align: center;
  align-items: center;
}

.align-justify {
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.grid-x {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.loaded .bottom-header .sub-categories-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 5;
  color: #5c5c5c !important;
  background-color: #fff;
  border: #c1c1c1 2px solid;
  padding: 35px 45px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease .1s;
  overflow-y: auto;
  max-height: calc(100vh - 180px);
  font-family: "Roboto Condensed",sans-serif;
}
.loaded .bottom-header .product-category:hover .sub-categories-menu, header .bottom-header .product-category.hover .sub-categories-menu {
  opacity: 1;
  pointer-events: all;
}

.loaded .bottom-header .account-btn i, header .bottom-header .vat-switch-btn i {
  font-size: 18px;
  margin-right: 10px;
}
.loaded .bottom-header .account-btn, header .bottom-header .vat-switch-btn {
  text-decoration: none;
  font-family: "Roboto",sans-serif;
  font-weight: 300;
  color: #fff;
}
.text-upper {
  text-transform: uppercase;
}
.loaded .bottom-header .product-category:not(:first-child) .product-cat-btn span {
  border-left: 1px solid #5d5d5d;
  padding-left: 30px;
}
.loaded a:hover {
  color: #d60101 !important;
}
.loaded .bottom-header .sub-categories-level-1 {
  font-size: 18px;
  font-weight: 700;
  border-right: 1px solid #707070;
}
.loaded  .bottom-header .sub-categories-level-1 .level-heading {
  color: #d60101;
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.2;
}
.loaded  .bottom-header .sub-categories-level-1 .link-wrapper {
  margin-bottom: 10px;
}
.loaded  .bottom-header .link-wrapper:hover a {
  text-decoration: underline !important;
}
.loaded  .bottom-header .grid-padding-x>.cell {
  padding-right: .9375rem;
  padding-left: .9375rem;
}
.loaded .bottom-header .sub-categories-menu a {
  color: #5c5c5c !important;
}
.link-wrapper {
  line-height: 1.2;
}
header.loaded .selling-points {
  color: #5c5c5c;
  background-color: #fff;
  font-size: 14px;
  font-weight: 400;
}
header.loaded .selling-points a {
  color: #5c5c5c;
}
header.loaded .selling-points .flex-container {
  justify-content: space-around;
}
.flex-container {
  display: -ms-flexbox;
  display: flex;
}
header.loaded .selling-points i, header.loaded .selling-points img{
  color: #d60101;
  font-size: 22px;
  margin-right: 28px;
  vertical-align: middle;
  width: auto;
  height: 22px !important;
  display: inline-block;
}
header.loaded .selling-points .spacer:last-child {
  display: none;
}
header.loaded .selling-points svg path {
  fill: #d60101;
}
header.loaded .selling-points .spacer {
  border-right: 1px solid #d9d9d9;
}
.sidebar-menu-primary .hs-menu-wrapper>ul>li>a {
  font-family: "Roboto Condensed",sans-serif;
}
header.loaded .search-box input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #898989;
}
header.loaded .search-box input::-moz-placeholder { /* Firefox 19+ */
  color: #898989;
}
header.loaded .search-box  input:-ms-input-placeholder { /* IE 10+ */
  color: #898989;
}
header.loaded .search-box  input:-moz-placeholder { /* Firefox 18- */
  color: #898989;
}
/* Mega menus Drop Style */
header .bottom-header .sub-categories-level-2 .level-heading {
  color: #000 !important;
  font-weight: 700;
}
header .bottom-header .sub-categories-level-2 .level-heading:not(:only-child) {
  margin-bottom: 5px;
}
header .bottom-header .sub-categories-level-2 a {
  display: block;
}
header .bottom-header .sub-categories-level-2 .sub-categories-level-2-group {
  margin-bottom: 12px;
  width: 33.33%;
  padding: 0 25px;
  font-size: 14px;
  line-height: 1.2;
}
.loaded .bottom-header .sub-categories-menu a:hover {
  color: #d60101 !important;
  text-decoration: underline;
}
.loaded .bottom-header input#Header_txtSearch {
  height: 30px;
  font-size: 12px;
}
.loaded .bottom-header button#Header_btnSearch {
  width: 30px;
  font-size: 12px;
}
header.loaded .selling-points .item , header.loaded .selling-points .spacer {
  margin-top: 22px;
  margin-bottom: 22px;
  font-weight: 700;
  font-family: "Roboto Condensed",sans-serif;
}

/****************Component Direct  Header Css End *************/


body.blog-template .list-categories {
  margin-right: 26px;
  margin-bottom: 11px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
body.blog-template .sort-list, body.blog-template .list-categories ul {
  z-index: 10;
}
body.blog-template .list-categories span {
  margin-right: 26px;
  white-space: nowrap;
}
body.blog-template .list-categories .list-category-wrap .topic-title {
  height: auto;
  overflow: visible;
  vertical-align: top;
  color: #333;
  background: #fff;
  cursor: pointer;
  min-width: 57px;
  padding: 0 10px 0 10px;
}
body.blog-template .sort-topic-title {
  height: auto;
  overflow: visible;
  vertical-align: top;
  color: #333;
  background: #fff;
  cursor: pointer;
  min-width: 85px;
  padding: 0 10px 0 10px;
}
body.blog-template .list-categories ul {
  position: absolute;
  top: 30px;
  margin: 0;
  opacity: 1 !important;
  visibility: visible !important;
  padding: 16px 8px !important;
  list-style-type: none;
  background-color: #fff;
  box-shadow: 0 2px 6px rgb(0 0 0 / 15%);
  overflow: auto;
  right: initial;
  width: auto;
  border-radius: 3px; 
  min-width: 151px;
  display: none;
  padding: 0 !important;
}
body.blog-template .list-categories .list-category-wrap {
  overflow: visible !important;
}
body.blog-template .topic-title:before, body.blog-template .sort-topic-title:before {
  content: "";
  font-family: EasyInput;
  float: right;
  font-size: 22px;
  margin: 0 0 0 12px;
}
body.top-act .topic-title:before{
  content: "";
}
body.blog-template .sort-topic-title.sort-active:before {
  content: "";
}
body.blog-template .sort-list {
  vertical-align: top;
  color: #333;
  background: #fff;
  cursor: pointer;
  min-width: 85px;
  padding: 0 10px 0 10px;
  height: 28px;
}
body.blog-template .category-wrap:hover {
  border-color: #555;
}
body.blog-template .sort-list {
  margin: 0;
  padding: 0 !important;
  list-style-type: none;
}
body.blog-template .category-wrap {
  color: #333;
  background: #fff;
  height: 30px;
  line-height: 28px;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 0;
  box-shadow: inset 1px 1px 3px rgb(0 0 0 / 10%);
  -webkit-transition: border linear 100ms,box-shadow linear 100ms,background-color linear 100ms;
  -moz-transition: border linear 100ms,box-shadow linear 100ms,background-color linear 100ms;
  -o-transition: border linear 100ms,box-shadow linear 100ms,background-color linear 100ms;
  transition: border linear 100ms,box-shadow linear 100ms,background-color linear 100ms;
  position: relative;
  width: 100%;
  display: inline-block;
  vertical-align: top;

}
body.blog-template .sort-options ul li.cat-items-wrapper:hover {
  background-color: rgba(128,179,233,.5);
}
body.blog-template ul li.cat-items-wrapper {
  line-height: 24px;
  padding: 0 12px;
  cursor: pointer;
  outline: none;
}
body.blog-template  input.quicksearch {
  margin-bottom: 0;
}
body.blog-template ul li.cat-items-wrapper a:hover{
  color: rgba(10,10,10,1.0);
}
body.blog-template .filter-search {
  position: relative;
}
body.blog-template .filter-search i.fas.fa-search {
  position: absolute;
  top: 5px;
  right: 7px;
  color: #d60101;
}
body.blog-template .breadcrumb a:not(:last-of-type) {
  margin-right: 25px;
}
body.blog-template  .breadcrumb a:before {
  content: "> ";
  color: #d60101;
}
body.blog-template  .blog-list-wrap {
  background-image: linear-gradient( 
    180deg,#eee,transparent 60px);
  padding-top: 20px;
}
.page-outer {
  background-image: linear-gradient(
    180deg,#eee,transparent 60px);
  padding-top: 25px;
}
body.blog-template, body.blog-template .breadcrumb, body.blog-template .breadcrumb a{
  font-family: "Roboto Condensed",sans-serif !important;

}
body.blog-template .h1, body.blog-template .h2, body.blog-template .h3, body.blog-template .h4, body.blog-template .h5, body.blog-template .h6, 
body.blog-template h1, body.blog-template h2, body.blog-template h3, body.blog-template h4, body.blog-template h5, body.blog-template h6,  body.blog-template p {
  font-family: "Roboto Condensed",sans-serif !important;
}




/***************************** Footer Css ***********************************************/

footer .grid-container {
  max-width: 1460px;
  display: block;
}
footer * {
  font-family: "Roboto Condensed",sans-serif;
  line-height: 1.2;

}
.group-company p {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
}
footer hr {
  margin-top: 0;
  margin-bottom: 40px;
  opacity: .2;
}
footer {
  color: #fff;
  background-color: #000;
  padding-top: 100px;
  padding-bottom: 120px;
}

footer a:hover {
  text-decoration: none;
}

footer .fail-msg {
  color: #ff2522;
  font-weight: 700;
}

footer .logo a img {
  height: 50px;
  margin-bottom: 60px;
  max-width: 239px !important;
  object-fit: cover;
}
footer form label#label-email-520f7b07-906d-440a-b353-a355deed25b4_3143 {
  font-size: 0;
  margin: 0;
}
footer .contact-section form  .hs-input{
  border-radius: 0;
  height: 60px;
  font-size: 24px !important;
  padding-left: 20px !important;
  padding-right: 50px !important;
  margin: 0 !important;
}
form#hsForm_520f7b07-906d-440a-b353-a355deed25b4_6611 {
  position: relative;
}
footer .contact-section form  label {
  color: rgba(10,10,10,1.0);
  font-size: 0;
  margin: 0;
  line-height: 0;
}
footer .copyright p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}
footer .contact-section form input.hs-button.primary.large {
  background-color: #d60101;
  color: #fff;
  position: absolute;
  top: auto;
  bottom:0;
  right: 0;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  border-radius: 0;
  background-image: url(https://8032044.fs1.hubspotusercontent-na1.net/hubfs/8032044/Jet_Press_June2021/images/right-arrow.png);
  background-repeat: no-repeat;
  background-position: 50%;
}
footer .contact-section form  .hs-form-required {
  display: none;
}
footer .contact-section .cell {
  margin-bottom: 60px;
}
.contact-section form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #898989;
}
.contact-section form input::-moz-placeholder { /* Firefox 19+ */
  color: #898989;
}
.contact-section form input:-ms-input-placeholder { /* IE 10+ */
  color: #898989;
}
.contact-section form input:-moz-placeholder { /* Firefox 18- */
  color: #898989;
}
footer h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.2;
}

footer h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

footer p {
  margin-bottom: 30px;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.2;
}

footer input[type=text] {
  margin-bottom: 0;
  padding-right: 50px;
}

footer .contact-links {
  margin-bottom: 28px;
}

footer .contact-links a {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}

footer .contact-links a i {
  margin-right: 20px;
}

footer .contact-links a span {
  color: #d60101;
  margin-right: 5px;
}

footer .contact-links a:not(:last-of-type) {
  margin-right: 25px;
}

footer .office-links {
  font-size: 14px;
  margin-bottom: 36px;
}

footer .office-links a:not(:last-of-type) {
  margin-right: 40px;
}

footer .social-links {
  font-size: 24px;
}

footer .social-links a:not(:last-of-type) {
  margin-right: 60px;
}
footer nav {
  overflow: auto;
}

footer nav>div {
  margin-bottom: 60px;
}
footer  h3#hs_cos_wrapper_form_title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}
footer .contact-section form {
  position: relative;
}
footer .contact-section form .field {
  margin-bottom: 0;
}
label.hs-error-msg {
  display: none;
}
.contact-section a {
  color: #fff;
}
.footer-menu h3 {
  text-transform: none;
  line-height: 1.2;
}
body.blog-template .back-to-top.scroll-top {
  bottom: 5px
}
body.blog-template .back-to-top.scroll-top a {
  font-family: "Roboto Condensed",sans-serif;
  font-size: 16px;
}
body.blog-template .side-bar .side-bar-wrapper {
  font-family: "Roboto Condensed",sans-serif;
}
footer nav a {
  display: block;
  white-space: nowrap;
  font-weight: 300;
  font-size: 14px;
  color: #fff;
}

footer nav h3 a {
  font-weight: 700;
  font-size: 16px;
}

footer .copyright {
  margin-bottom: 0;
  margin-right: 100px;
}

footer .group-company {
  margin-right: 40px;
}

footer .site-verto {
  display: inline-block;
  color: #d60101;
  margin-top: 15px;
  font-weight: 700;
}

footer .site-verto:hover {
  color: #a30101;
}

footer .button-on-input a {
  background-color: #d60101;
  color: #fff;
}
@media screen and (max-width:39.9375em) {
  footer nav>div {
    margin-bottom: 20px;
  }
}

footer nav>div:not(:last-of-type) {
  margin-right: 100px;
}

@media screen and (max-width:39.9375em) {
  footer nav>div:not(:last-of-type) {
    margin-right: 20px;
  }
}



@media screen and (max-width: 1280px){
  header.loaded .bottom-header .product-category:not(:last-child) {
    padding-right: 20px !important;
  }
  header.loaded .bottom-header .product-category:not(:first-child) .product-cat-btn span {
    padding-left: 20px !important;
  }
}



@media screen and (max-width: 1023px){
  footer .contact-section form {
    width: 100% !important;
    max-width: 100%;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  header.loaded .selling-points .slides:not(.slick-initialized) *:nth-child(n+4) {
    display: none;
  }
  .loaded .top-header .custom-logo a{
    height: 35px;
  }
  .loaded  .search-box {
    margin-left: 40px;
    margin-right: 40px;
  }
  header.loaded .selling-points .item, header.loaded .selling-points .spacer {
    text-align: center;
  }
  header.loaded  .bottom-header .sub-categories-level-1 {
    border-right: none;
    border-bottom: 1px solid #707070;
    padding-bottom: 20px;
    margin-bottom: 20px;
  } 
  .loaded .bottom-header .grid-x>.large-3 , .loaded .bottom-header .grid-x>.large-9{
    width: 100%;
  }
  header.loaded .bottom-header .search-box input {
    height: 30px;
    font-family: "Roboto",sans-serif;
    font-weight: 300;
  }
  header.loaded .bottom-header .search-box input {
    font-size: 12px;
  }
  header .bottom-header .sub-categories-level-2 .sub-categories-level-2-group {
    width: 50% !important;
  }
}

@media screen and (max-width: 770px){
  header.loaded .bottom-header .product-category:not(:first-child) {
    display: none;
  }
}

@media screen and (max-width:639px){
  .footer-menu ul {
    display: none;
  }
  .loaded .top-header .search-box {
    display: none!important;
  } 
  .loaded .top-header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  body.blog-template .grid-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .loaded .top-header .basket-btn i {
    font-size: 28px;
    margin-left: 9px;
  }
  .loaded .top-header .account-btn {
    margin-top: 6px;
  }
  .search-box {
    display: block !important;
  }
  .show-for-medium {
    display: none!important;
  }
  header.loaded  .bottom-header-extension {
    background-color: #404040;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header.loaded  .bottom-header-extension .vat-switch-btn i {
    margin-right: 10px;
  }
  header.loaded .bottom-header-extension .flex-container {
    display: flex !important;
  } 
  a.vat-switch-btn {
    color: #ffff;
    font-family: "Roboto Condensed",sans-serif;
    line-height: 19px;
  }
  header.loaded  .bottom-header .product-cat-btn {
    padding: 15px 0;
  }
  header.loaded a#Header_LinkButton1 {
    color: #fff;
    background-color: #d60101;
    width: 30px;
    font-size: 12px;
    position: absolute;
    right: 0;
    top: 0;
    height: 30px;
  }
  header.loaded input#Header_txtSearch2 {
    margin: 0 0 1rem;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #cacaca;
    margin-left: 0;
    margin-right: 0;
    background-color: #fefefe;
    box-shadow: inset 0 1px 2px rgb(10 10 10 / 10%);
    line-height: 1.5;
    width: 100%;
    border-radius: 0;
    margin-bottom: 0;
  }  
  .bottom-header .search-box {
    margin-left: 0;
    margin-right: 0;
  }
  header.loaded {
    padding-top: 166px;
  } 
  header.loaded .bottom-header .sub-categories-level-2 {
    display: none !important;
  }
  header.loaded .bottom-header .sub-categories-level-1 {
    border: none;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .loaded .bottom-header .sub-categories-menu{
    padding: 25px 15px;
  }  
}


@media (max-width: 380px){  
  .loaded .top-header .custom-logo a {
    height: 20px;
    display: inline-block;
  }
  .loaded .custom-menu-primary.desktop .grid-x {
    display: block;
  }
  .loaded .top-header .basket-btn {
    margin-top: 4px;
  } 
}  

@media (min-width:1024px){
  body.scroll  .loaded .top-header .custom-logo a{
    height: 30px;
  }
  body.scroll  .loaded input#Header_txtSearch {
    height: 40px;
  }
  body.scroll .loaded .top-header {
    padding-top: 15px;
    padding-bottom: 15px;
  } 
  body.scroll .loaded .bottom-header .product-cat-btn {
    padding-top: 15px;
    padding-bottom: 15px;
  }  
}

@media (min-width: 1440px){
  body.blog-template .grid-container {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

.error-page {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}
.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Lato, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #F3F6F9;
  z-index: -1;
}
@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding: 3rem 20px;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  font-size: 13px;
  color: #4F7D24;
  padding: .1rem .75rem;
  max-width: 767px;
  width: 100%;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  color: #494a52;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #494a52;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}


.systems-page form .hs-form-field label {
  margin-bottom: 5px;
  display: inline-block;
}

.systems-page {
  padding-left: 0;
  padding-right: 0;
}

.systems-page .actions {
  margin: 10px 0;
}

.systems-page .hs-input {
  margin-bottom: 18px;
}

.form-input-validation-message ul.no-list {
  margin: 0;
  padding: 0;
}

.form-input-validation-message ul.no-list {
  padding: 0;
}

.systems-page .hs-input[type=checkbox] {
  width: auto !important;
}

@media (max-width: 767px) {

  form {
    max-width: 100% !important;
  }

  .systems-page h3 {
    font-size: 23px;
  }

  h1.error-page_heading {
    font-size: 40px;
  }
}


@media (max-width: 479px) {

  .form-input-validation-message label.hs-error-msg, 
  ul.no-list.hs-error-msgs label {  }


  .systems-page h1 {
    font-size: 33px;
  }

  .systems-page h2 {
    font-size: 25px;
  }
}