/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * 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
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 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
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, 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;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 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;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * 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 and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  line-height: 1.65em;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  margin: 0;
  margin-bottom: 1.75em;
}

/* Anchors */

a {
  cursor: pointer;
  transition: all .2s linear;
  text-decoration: none;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 20px;
}

/* Lists */

ul, ol {
  margin: 0 0 1.5em 3em;
  padding-left: 0;
  list-style: outside;
}
ul{
  list-style-type: disc;
}
ol {
  list-style-type: decimal;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 5px solid;
  margin: 1.5em;
  padding: 20px;
  font-size: 1.1em;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

body ::-moz-selection {
  background-color: #b22725;
  color: #fff;
}

body ::selection {
  background-color: #b22725;
  color: #fff;
}
/* Image alt text */

img {
  word-break: normal;
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}

@media (max-width: 921px){
  html {
    font-size: 91.2%;
  }
}
button,
.button,
.hs-button,
.btn__primary,
.btn--primary a,
.btn__secondary,
.btn--secondary a,
.btn--custom a {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  line-height: 1;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

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

.hs-search-module input[type=text] {
  margin-bottom: 20px;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  padding: 10px;
  width: 100%;
  outline: 0;
  min-height: 27px;
  height: 40px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
}
form input:focus {
  outline: none;
  border-color: rgba(82, 168, 236, .8);
}
form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

form input[type=checkbox] {
  margin-top: 7px;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Search button input field and suggestions */
.body-container-wrapper .hs-search-field__button {
  padding: 15px;
}

.body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
  margin-left: 6px;
  margin-bottom: 0;
}

.body-container-wrapper .hs-search-field__button svg {
  height: 15px;
  fill: #fff;
}

.body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
  padding: 10px;
}

.body-container-wrapper .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

header.header {
  z-index: 99;
  position: relative;
}

header.header .desktop-header .top-header {
  background-color: #b22725;
  background-image: none;
}

header.header .desktop-header .top-header .support-nav-wrpr .support-nav-cntnr {
  min-height: 50px;
  position: relative;
  max-width: 1406px;
  transition: all .2s linear;
  display: grid;
  align-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  grid-column-gap: 20px;
  overflow-wrap: anywhere;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-left {
  position: relative;
  flex-wrap: nowrap;
  -js-display: flex;
  display: flex;
  height: 100%;
  min-height: 0;
  align-items: center;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right {
  position: relative;
  flex-wrap: nowrap;
  -js-display: flex;
  display: flex;
  justify-content: flex-end;
  height: 100%;
  min-height: 0;
  align-items: center;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right span.ast-icon.icon-arrow {
  display: none;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-self: center;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .phone-number-wrpr {
  display: flex;
  align-items: center;
  font-family: inherit;
  font-weight: 600;
  flex-wrap: wrap;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right>div {
  padding: 0 10px;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right>div:first-child {
  padding-left: 0;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right ul>li {
  line-height: 50px;
  -js-display: flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right ul>li a {
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -js-display: flex;
  display: flex;
  font-size: 0.8125rem;
  color: #fff;
  text-decoration: none;
  padding: 0 1em;
  transition: all .2s linear;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right ul>li:hover a {
  color: #b9b7b7;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right ul > li > a > span {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  margin: 5px;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right ul > li > a > span > span{
  -js-display: inline-flex;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right ul > li > a > span > span svg {
  width: 18px;
  height: 18px;
  color: #fff;
  fill: #fff;
  transition: all .2s linear;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right ul > li:hover > a > span > span svg {
  color: #b9b7b7;
  fill: #b9b7b7;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .get-quote-wrpr {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .get-quote-wrpr a{
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  color: #fff;
  border-color: #fff;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  display: inline-block;
  border-style: solid;
  line-height: 1em;
  background-color: #b22725;
  transition: all .2s linear;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .get-quote-wrpr a:hover {
  background-color: #e31411;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .divider-wrpr {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .divider-wrpr .ast-divider-wrapper {
  height: 25%;
  border: 0;
  border-right-width: 1px;
  border-style: solid;
  border-color: #fff;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .search-wrpr {
  padding-right: 0;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .search-wrpr .ast-search-menu-icon {
  position: relative;
  z-index: 3;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .search-wrpr .ast-search-menu-icon form.search-form {
  -js-display: flex;
  display: flex;
  align-items: center;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-color: #000000;
  border-radius: 0px;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  visibility: hidden;
  opacity: 0;
  transition: all .2s;
  position: absolute;
  z-index: 3;
  right: -1em;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #e7e7e7;
  line-height: normal;
  padding: 0 3em 0 0;
  padding-right: 0;
  color: inherit;
  background-color: #fff;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .search-wrpr .ast-search-menu-icon .ast-search-icon {
  z-index: 4;
  position: relative;
  line-height: normal;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .search-wrpr .ast-search-menu-icon .ast-search-icon a.slide-search.astra-search-icon {
  color: #fff;
  font-size: 18px;
  -js-display: flex;
  display: flex;
  line-height: normal;
  transition: all .2s linear;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .search-wrpr .ast-search-menu-icon .ast-search-icon a.slide-search.astra-search-icon span.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
  transition: all .2s linear;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .search-wrpr .ast-search-menu-icon .ast-search-icon a.slide-search.astra-search-icon span.ast-icon.icon-search {
  color: #fff;
  z-index: 4;
  transition: all .2s linear;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .search-wrpr .ast-search-menu-icon .ast-search-icon a.slide-search.astra-search-icon span.ast-icon.icon-search svg {
  height: 1em;
  width: .9em;
  margin-top: 3px;
  margin-right: 2px;
  fill: currentColor;
}

header.header .main-header {
  position: relative;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(36, 50, 66, .075);
}

header.header .main-header .main-header-wrpr {
  min-height: 90px;
  position: relative;
  max-width: 1406px;
  transition: all .2s linear;
  display: grid;
  align-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

header.header .main-header .main-header-wrpr .main-header-row {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  grid-column-gap: 20px;
  overflow-wrap: anywhere;
}

header.header {
  min-height: 140px;
}

header.header .desktop-header {
  position: fixed;
  width: 100%;
}

header.header .main-header .main-header-wrpr .main-header-row .header-logo-wrpr {
  position: relative;
  flex-wrap: nowrap;
  -js-display: flex;
  display: flex;
  height: 100%;
  min-height: 0;
  align-items: center;
}

header.header .main-header .main-header-wrpr .main-header-row .header-logo-wrpr .header-logo-cntnr {
  padding: 1em 0;
  line-height: 1;
  align-self: center;
}

header.header .main-header .main-header-wrpr .main-header-row .main-header-right-wrpr {
  position: relative;
  -js-display: flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  height: 100%;
  min-height: 0;
  align-items: center;
}

.main-header-right-wrpr {
  flex-wrap: nowrap;
}

header.header .main-header .main-header-wrpr .main-header-row .main-header-right-wrpr .menu-button-wrap {
  display: inline-block;
}

header.header .main-header .main-header-wrpr .main-header-row .main-header-right-wrpr .menu-button-wrap button.menu-toggle {
  background: transparent;
  color: #b22725;
  border: none;
  padding: .5em;
  align-items: center;
  -js-display: flex;
  display: flex;
  width: auto;
  text-align: center;
  height: 2.1em;
  font-size: 1.5em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 2px;
  vertical-align: middle;
  line-height: 1.85714285714286;
}

header.header .main-header .main-header-wrpr .main-header-row .main-header-right-wrpr .menu-button-wrap button.menu-toggle span.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

header.header .main-header .main-header-wrpr .main-header-row .main-header-right-wrpr .menu-button-wrap button.menu-toggle span.mobile-menu-toggle-icon {
  -js-display: inline-flex;
  display: inline-flex;
  align-self: center;
}

header.header .main-header .main-header-wrpr .main-header-row .main-header-right-wrpr .menu-button-wrap button.menu-toggle span.mobile-menu-toggle-icon svg.ast-close-svg {
  display: none;
}

header.header .main-header .main-header-wrpr .main-header-row .main-header-right-wrpr .menu-button-wrap button.menu-toggle span.mobile-menu-toggle-icon span.ahfb-svg-iconset {
  -js-display: inline-flex;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  align-self: center;
}

header.header .main-header .main-header-wrpr .main-header-row .main-header-right-wrpr .menu-button-wrap button.menu-toggle span.mobile-menu-toggle-icon span.ahfb-svg-iconset svg.ast-mobile-svg {
  fill: #b22725;
  width: 25px;
  height: 25px;
}

header.header .main-header .main-header-wrpr .main-header-row .main-header-right-wrpr .menu-button-wrap button.menu-toggle span.mobile-menu-wrap {
  align-items: center;
  -js-display: flex;
  display: flex;
  align-self: center;
  margin-left: .4em;
}

header.header .main-header .main-header-wrpr .main-header-row .main-header-right-wrpr .menu-button-wrap button.menu-toggle span.mobile-menu-wrap span.mobile-menu {
  color: #b22725;
  font-weight: 700;
  font-size: 1rem;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .search-wrpr .ast-search-menu-icon.search-open {
  visibility: visible;
  opacity: 1;
  position: relative;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .search-wrpr .ast-search-menu-icon.search-open form.search-form {
  visibility: visible;
  opacity: 1;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .search-wrpr .ast-search-menu-icon.search-open form.search-form input.search-field {
  width: 235px;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .search-wrpr .ast-search-menu-icon form.search-form button.search-submit {
  display: none;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .search-wrpr .ast-search-menu-icon form.search-form span.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .search-wrpr .ast-search-menu-icon form.search-form input.search-field {
  color: #000;
  border-radius: 0px;
  border: none;
  transition: all .3s;
  outline: 0;
  background: #fff;
  box-shadow: none;
  box-sizing: border-box;
  padding: .75em;
  height: auto;
  width: 0;
  -webkit-appearance: none;
  line-height: 1.65em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .search-wrpr .ast-search-menu-icon form.search-form label {
  line-height: normal;
  margin: 0;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .search-wrpr .ast-search-menu-icon form.search-form input.search-field::placeholder {
  color: #000;
}

header.header .desktop-header .top-header .support-nav-cntnr .top-nav-grid .top-nav-right .search-wrpr .ast-search-menu-icon form.search-form input.search-field::-webkit-search-cancel-button {
  display: none;
}

/************** Flyout menu style ***************/



.flyout-menu-wrapper .flyout-menu-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: -99999rem;
  right: 99999rem;
  transition: opacity 0.25s ease-in, left 0s 0.25s, right 0s 0.25s;
  opacity: 0;
}

.flyout-menu-open .flyout-menu-wrapper .flyout-menu-container {
  opacity: 1;
  visibility: visible;
  left: 0;
  right: 0;
  z-index: 100000;
  transition: opacity 0.25s ease-out;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.flyout-menu-open .flyout-menu-wrapper .flyout-menu-container .flyout-overlay {
  opacity: 1;
  cursor: pointer;
  visibility: visible;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner {
  max-width: 25%;
  background-color: #b22725;
  opacity: 1;
  visibility: visible;
  transform: translateX(100%);
  width: 100%;
  right: 0;
  top: 0;
  color: #3a3a3a;
  bottom: 0;
  position: fixed;
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
  -js-display: flex;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in, opacity 0.2s ease-in;
  overflow-y: auto;
  overflow-x: hidden;
}

.flyout-menu-open .flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner {
  transform: translateX(0%);
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .menu-header {
  -js-display: flex;
  display: flex;
  justify-content: flex-end;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .menu-header button#menu-toggle-close {
  color: #ffffff;
  background: transparent;
  border: 0;
  font-size: 24px;
  line-height: 1;
  padding: .6em;
  -js-display: flex;
  display: flex;
  box-shadow: none;
  margin: 0;
  vertical-align: middle;
  -webkit-appearance: button;
  cursor: pointer;
  font-weight: 500;
  box-sizing: border-box;
  max-height: unset;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .menu-header button#menu-toggle-close span.ast-inline-flex {
  -js-display: inline-flex;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .menu-header button#menu-toggle-close span.ast-inline-flex svg {
  width: 17px;
  height: 17px;
  transition: none;
  vertical-align: middle;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .flyout-popup-content .logo-wrapper {
  padding-top: 10px;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .flyout-popup-content .logo-wrapper .logo-wrapper-inner {
  padding-right: 25px;
  padding-bottom: 25px;
  padding-left: 25px;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .menu-header button#menu-toggle-close span.ast-svg-iconset {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .flyout-popup-content .header-navigation-wrpr .hs-menu-wrapper > ul {
  flex-wrap: wrap;
  border-style: none;
  background-image: none;
  border-top-width: 1px;
  text-align: left;
  list-style: none;
  margin: 0;
  padding-left: 0;
  -js-display: flex;
  display: flex;
  position: relative;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .flyout-popup-content .header-navigation-wrpr .hs-menu-wrapper>ul ul {
  display: none;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .flyout-popup-content .header-navigation-wrpr .hs-menu-wrapper>ul li {
  width: 100%;
  -js-display: flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  line-height: 3;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .flyout-popup-content .header-navigation-wrpr .hs-menu-wrapper>ul li a {
  color: #fff;
  padding: 0 20px;
  display: inline-block;
  width: 100%;
  border: 0;
  font-weight: 700;
  height: 100%;
  -webkit-box-align: center;
  text-decoration: none;
  transition: all .2s linear;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .flyout-popup-content .header-navigation-wrpr .hs-menu-wrapper>ul li .child-trigger {
  display: inline-block;
  position: absolute;
  font-size: inherit;
  top: 0px;
  right: 20px;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0 0.907em;
  font-weight: normal;
  line-height: inherit;
  transition: all .2s;
  color: #fff;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .flyout-popup-content .header-navigation-wrpr .hs-menu-wrapper>ul li .child-trigger svg.ast-arrow-svg {
  height: 1em;
  width: 1em;
  position: relative;
  margin-left: 10px;
  fill: currentColor;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .flyout-popup-content .header-navigation-wrpr .hs-menu-wrapper>ul li .child-trigger.child-open {
  transform: rotateX(180deg);
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .flyout-popup-content .header-navigation-wrpr .hs-menu-wrapper>ul ul li a {
  padding-left: 30px;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .flyout-popup-content .header-navigation-wrpr .hs-menu-wrapper>ul ul li a span.icon-arrow {
  display: inline-block;
  margin-right: 5px;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .flyout-popup-content .header-navigation-wrpr .hs-menu-wrapper>ul ul li a span.icon-arrow svg {
  top: .2em;
  margin-top: 0px;
  margin-left: 0px;
  width: .65em;
  transform: translate(0, -2px) rotateZ(270deg);
  height: 1em;
  position: relative;
  fill: #fff;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .flyout-popup-content .header-navigation-wrpr .hs-menu-wrapper>ul ul ul li a {
  padding-left: 40px;
}

.flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .flyout-popup-content .header-navigation-wrpr .hs-menu-wrapper>ul li:hover > a, .flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .flyout-popup-content .header-navigation-wrpr .hs-menu-wrapper>ul li:hover > .child-trigger {
  color: #b9b7b7;
}


.flyout-menu-wrapper .flyout-menu-social-wrapper {
  display: none;
}


@media (max-width: 921px){
  header.header .desktop-header .top-header {
    display: none;
  }

  header.header {
    min-height: 90px;
  }

  html {
    font-size: 91.2%;
  }

  .flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner {
    width: 90%;
    max-width: 90%;
  }
  .flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner {
    width: 90%;
    max-width: 90%;
  }

  .flyout-menu-wrapper .flyout-menu-social-wrapper {
    display: flex;
    padding: 15px 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
  }

  .flyout-menu-wrapper .flyout-menu-social-wrapper a.ast-builder-social-element {
    line-height: 1;
    color: #3a3a3a;
    background: transparent;
    vertical-align: middle;
    transition: all 0.01s;
    margin-left: 6px;
    margin-right: 6px;
    justify-content: center;
    align-items: center;
    -js-display: inline-flex;
    display: inline-flex;
    flex-wrap: wrap;
    align-content: center;
  }

  .flyout-menu-wrapper .flyout-menu-social-wrapper a.ast-builder-social-element span.ahfb-svg-iconset {
    -js-display: inline-flex;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    align-self: center;
  }

  .flyout-menu-wrapper .flyout-menu-social-wrapper a.ast-builder-social-element span.ahfb-svg-iconset svg {
    width: 18px;
    height: 18px;
  }

  .flyout-menu-wrapper .flyout-menu-container .flyout-menu-inner .flyout-popup-content .logo-wrapper {

  }

  .flyout-menu-wrapper .flyout-menu-social-wrapper a.ast-builder-social-element:first-child {
    margin-left: 0;
  }

  .flyout-menu-wrapper .flyout-menu-social-wrapper a.ast-builder-social-element:last-child {
    margin-right: 0;
  }

  .flyout-menu-wrapper .flyout-menu-social-wrapper .flyout-menu-social-inner {
    font-size: 0;
  }
}

@media (max-width: 479px) {
  header.header .main-header .main-header-wrpr .main-header-row .main-header-right-wrpr .menu-button-wrap button.menu-toggle {
    padding-right: 0;
    padding-left: 0;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}