/* 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));
    }
  
}
.dnd-section > .row-fluid,
.page-center,
.content-wrapper {
  margin:0 auto;
  padding: 0 15px;
}
.page-center.full_width,
.content-wrapper.full_width{
  width:100%;
  max-width:100%;
}
.dnd-section[class*="force-full-width-section"]>.row-fluid .dnd-column {
  padding: 0;
}

.dnd-section[class*="force-full-width-section"] > .row-fluid{
  padding:0;
}

.dnd-section[class*="force-full-width-section"]{
  padding:0;
}

.dnd-section .dnd-column {
  padding: 0 15px;
}

@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. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

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

th{
  text-align:left; 
}
/* Paragraphs */

p {
  font-size: 1em;
  margin: 0 0 22px;
}

p:last-child{
  margin-bottom: 0;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration:none;
  transition:all 0.3s ease;
}
/* Headings */

h1,
h2,
h3,
h5,
h6 {
  margin: 0 0 22px;
}

h4{
  margin: 0 0 20px;
}

/* Lists */

ul,
ol {
  margin: 0 0 22px;
}

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 {
  position: relative;
  font-style: italic;
  border-left-style: solid;
  border-left-width: 4px;
  padding-left: 15px;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}


/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

svg{
  fill: currentColor;
  vertical-align: middle;
}
.hs-search-results__listing {
  margin-bottom: 24px !important;
}
.systems-page p,.systems-page p:last-child {
  margin-bottom: 16px;
}
.hs-search-results__pagination{
  flex-wrap: wrap;
}

img{
  vertical-align: middle;
}
button,
.button,
.hs-button,
.primary_btn,
.primary-btn a,
.btn-custom a,
.secondary_btn,
.secondary-btn a,
.tertiary_btn,
.tertiary-btn a,
.custom-btn a{
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  line-height:1.467;
}


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: 16px;
}

/* Labels */

form label {
  display: inline-block;
  font-size: 0.875rem;
  margin-bottom: 5px;
}

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

form{
  margin-bottom: 20px;
}

/* 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;
  font-size: 14px;
  line-height:20px;
  padding: 11px 10px;
  width: 100%;
  font-weight:500;
  outline:0;
}

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;
}

/* 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: red !important;
}

.hs-input.invalid.error {
  border-color: red !important;
}
.hs-error-msgs label{
  color: red !important;
}
.hs-error-msg {
  color: red !important;
  margin-top: 0.35rem;
}

fieldset .input {
  margin-right: 0 !important;
}

form input[type=email],
form input[type=number],
form input[type=password],
form input[type=search],
form input[type=tel],
form input[type=text],
form select,
form textarea {
  width: 100% !important;
}
form textarea {
  min-height: 114px;
}

form .hs-submit {
  padding-top: 10px;
}
/* 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;
  margin-top:20px;
}
.submitted-message{
  font-weight:bold !important;
}
/* Captcha */

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

.systems-page form input[type=checkbox]~label {
  display: inline;
}

form fieldset.form-columns-1 > div {
  width: 100%;
}

form fieldset {
  display: flex;
  gap: 20px;
}

@media(max-width:400px){
  .grecaptcha-badge {
    overflow-x: 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;
}


@media(min-width:401px){
  fieldset.form-columns-2 .hs-form-field:first-child .input {
    margin-right: 9px !important;
  }
}
/* 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
*/

.cst-site-header {
  position: relative;
  z-index: 99;
  background:#fff;
}

.cst-site-header .cst-desktop-header .ast-primary-header-bar {
  max-width: 100%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 4;
  position: relative;
  padding: 1em 0;
}

.cst-site-header .cst-desktop-header .page-center .ast-builder-grid-row {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  grid-column-gap: 20px;
  overflow-wrap: anywhere;
  padding:8px 0;
}

.cst-site-header .site-header-primary-section-left,
.cst-site-header .site-header-primary-section-right {
  -js-display: flex;
  display: flex;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: nowrap;
}

.cst-site-header .site-header-primary-section-right {
  justify-content: flex-end;
}

.cst-site-header .site-header-primary-section-left .ast-site-logo {
  line-height: 1;
  align-self: center;
}

.cst-site-header .site-header-primary-section-left .ast-site-logo a {
  max-width: 180px;
  display: inline-block;
}

.cst-site-header .site-header-primary-section-left .ast-site-logo a img {
  display: inline-block;
  width: 100%;
}

.cst-site-header .site-header-primary-section-right .cst-contact-num {
  display: block;
  padding: 0 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}

.cst-site-header .site-header-primary-section-right .cst-cnt-num-inner {
  display: inline-flex;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3em;
  color: #3a3a3a;
  align-items: center;
  text-decoration: none;
  box-shadow: none;
  transition: all 0.2s;
  position: relative;
}

.cst-site-header .site-header-primary-section-right .cst-cnt-num-inner a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cst-site-header .site-header-primary-section-right .cst-cnt-num-inner .cst-tel-icon {
  display: block;
  align-items: center;
  padding: 0px;
  border-radius: 0px;
  border-width: 0px;
  align-self: center;
  margin-right: 10px;
}

.cst-site-header .site-header-primary-section-right .cst-cnt-num-inner .cst-tel-icon svg {
  width: 15px;
  height: 15px;
  font-size: 15px;
  color: #d32128;
  fill: #d32128;
  display: block;
}

.cst-site-header .site-header-primary-section-right .cst-cnt-num-inner .cst-tel-text {
  font-size: 14px;
  font-weight: 600;
  color: #d32128;
  line-height: 1.3em;
  text-align: left;
}


.cst-site-header .site-header-primary-section-right > * {
  padding: 0 10px;
}

.cst-site-header .site-header-primary-section-right form.cst-search {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.cst-site-header .site-header-primary-section-right form.cst-search label {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.cst-site-header .site-header-primary-section-right form.cst-search .wp-block-search__inside-wrapper {
  display: flex;
  flex: auto;
  flex-wrap: nowrap;
  max-width: 100%;
  min-width: 0;
  transition-property: width;
}

.cst-site-header .site-header-primary-section-right form.cst-search .wp-block-search__inside-wrapper input {
  border-left-width: 0;
  border-right-width: 0;
  flex-basis: 0;
  flex-grow: 0;
  margin: 0;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  width: 0;
  transition: all .2s linear;
  font: inherit;
  width:0 !important;
  min-width: unset;
  border-radius:2px;
  line-height:1.5em;
}

.search-open .cst-site-header .site-header-primary-section-right form.cst-search .wp-block-search__inside-wrapper input {
  flex-basis: 100%;
  transition-duration: .3s;
  padding: 0 10px;
  border: 1px solid #ddd;
  width: auto !important;
  min-width: 3rem;
}

.search-open .cst-site-header .site-header-primary-section-right form.cst-search .wp-block-search__inside-wrapper input:focus{
  color:#111;
  outline: thin dotted;
  border-width: thin;
  border-style: dotted;
  border-color:#dadada;
}

.cst-site-header .site-header-primary-section-right form.cst-search .wp-block-search__inside-wrapper button {
  border: none;
  padding-top: 15px;
  padding-right: 25px;
  padding-bottom: 15px;
  padding-left: 25px;
  font-family: inherit;
  font-weight: 800;
  line-height: 1em;
  text-transform: capitalize;
  border-radius: 3px;
  color: #d32128;
}

.cst-site-header .wp-block-search__inside-wrapper button svg.search-icon {
  height: 1.25em;
  min-height: 24px;
  min-width: 24px;
  width: 1.25em;
  fill: currentColor;
  vertical-align: text-bottom;
}


.cst-site-header .page-center{
  max-width:100%;
  padding:0 20px;
}

.cst-site-header .site-header-primary-section-right .cst-humb-icn {
  padding-right: 0;
}


.cst-site-header .site-header-primary-section-right .cst-humb-icn .ast-button-wrap {
  display: inline-block;
}

.cst-site-header .site-header-primary-section-right .cst-humb-icn .ast-button-wrap .menu-toggle {
  padding: .5em;
  display: flex;
  align-items: center;
  height: 2.1em;
  font-size: 1.5em;
  font-weight: 400;
  width: auto;
  text-align: center;
  line-height: 1.85714285714286;
  border: none;
  background:#d32128;
}

.cst-site-header .site-header-primary-section-right .cst-humb-icn .menu-toggle .screen-reader-text {
  display: none;
}

.cst-site-header .site-header-primary-section-right .cst-humb-icn  .mobile-menu-toggle-icon {
  -js-display: inline-flex;
  display: inline-flex;
  align-self: center;
}

.cst-site-header .site-header-primary-section-right .cst-humb-icn .svg-baseline {
  -js-display: inline-flex;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  align-self: center;
}

.cst-site-header .site-header-primary-section-right .cst-humb-icn .svg-baseline svg {
  width: 25px;
  height: 25px;
}

.cst-site-header .site-header-primary-section-right .cst-humb-icn .ast-close-svg {
  display: none;
}


/* popup css */


.ast-mobile-popup-drawer {
  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;
}

.ast-mobile-popup-drawer .ast-mobile-popup-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;
  /*   z-index:-1; */
}

.ast-mobile-popup-drawer .ast-mobile-popup-inner {
  width: 100%;
  transform: translateX(100%);
  max-width: 90%;
  right: 0;
  top: 0;
  background: #fafafa;
  color: #3a3a3a;
  bottom: 0;
  opacity: 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;
  max-width: 20%;
  /*   z-index:999; */
}

.ast-mobile-popup-drawer .ast-mobile-popup-header {
  -js-display: flex;
  display: flex;
  justify-content: flex-end;
  min-height: calc(1.2em + 24px);
}

.ast-mobile-popup-drawer .ast-mobile-popup-header button.menu-toggle-close {
  background: transparent;
  border: 0;
  font-size: 24px;
  line-height: 1;
  padding: .6em;
  color: #d32128;
  -js-display: flex;
  display: flex;
  box-shadow: none;
  font-weight: 800;
  text-transform: capitalize;
}

.ast-mobile-popup-drawer .ast-mobile-popup-header button.menu-toggle-close .ahfb-svg-iconset {
  -js-display: inline-flex;
  display: inline-flex;
  align-self: center;
}

.ast-mobile-popup-drawer .ast-mobile-popup-header button.menu-toggle-close .ast-inline-flex {
  -js-display: inline-flex;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}

.ast-mobile-popup-drawer .ast-mobile-popup-header button.menu-toggle-close .ast-inline-flex svg {
  width: 17px;
  height: 17px;
  transition: none;
}

.ast-mobile-popup-drawer .ast-desktop-popup-content {
  padding: 0 10px;
}

.ast-mobile-popup-drawer .ast-desktop-popup-content .widget_media_image {
  padding: 10px 0;
  height: auto;
  padding-bottom: 0px;
  margin-left: 20px;
}

.ast-mobile-popup-drawer .ast-desktop-popup-content .widget_media_image a {
  display: inline-block;
}

.ast-mobile-popup-drawer .ast-desktop-popup-content .ast-builder-layout-element {
  display: flex;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
  margin-top: 20px;
  padding: 15px 20px;
}

.ast-mobile-popup-drawer .ast-builder-layout-element .ast-search-menu-icon {
  width: 100%;
  position: relative;
  display: block;
  right: auto;
  transform: none;
}

.ast-mobile-popup-drawer .ast-builder-layout-element .ast-search-menu-icon .search-form {
  right: 0;
  visibility: visible;
  opacity: 1;
  position: relative;
  top: auto;
  transform: none;
  padding: 0;
  display: block;
  overflow: hidden;
  margin: 0;
  border:1px solid #d32128;
  border-radius:3px;
}

.ast-mobile-popup-drawer .ast-builder-layout-element .ast-search-menu-icon .search-form label {
  font-size: unset;
  margin: 0;
  width: 100%;
}

.ast-mobile-popup-drawer .ast-search-menu-icon .search-form label .screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.ast-mobile-popup-drawer .ast-search-menu-icon .search-form label input.search-field {
  width: 100%;
  padding: 0.60em;
  font: inherit;
  padding-right: 5.5em;
  color: #000;
  border: #d32128;
  line-height:1.5em;
}

.ast-mobile-popup-drawer .ast-search-menu-icon .search-form label input.search-field:focus{
  border-style: dotted;
  border-color: #dadada;
  border-width: thin;
}


.ast-mobile-popup-drawer .search-form button.search-submit.normal-search {
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  padding: 0 1em;
  border-radius: 0;
  font-size: 1.3em;
  color: #757575;
  margin-right: -5px;
  background: none;
  border: none;
}

/* header,
.ast-mobile-popup-wrapper,
footer{
display:none;
} */

.ast-mobile-popup-drawer .search-form button.search-submit.normal-search .astra-search-icon {
  -js-display: flex;
  display: flex;
  line-height: normal;
  color: #d32128;
  font-size: 18px;
}

.ast-mobile-popup-drawer .search-form button.search-submit.normal-search .ahfb-svg-iconset {
  -js-display: inline-flex;
  display: inline-flex;
  align-self: center;
  -js-display: inline-flex;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}

.ast-mobile-popup-drawer .search-form .ahfb-svg-iconset svg {
  height: 1em;
  width: .9em;
  margin-top: 3px;
  margin-right: 2px;
}

.ast-mobile-popup-drawer .search-form .search-field::placeholder {
  color: #000;
}

.ast-mobile-popup-drawer .ast-desktop-popup-content .ast-builder-menu-mobile {
  align-items: center;
  height: auto;
}

.ast-mobile-popup-drawer .ast-builder-menu-mobile .ast-main-header-bar-alignment {
  display: block;
  width: 100%;
  flex: auto;
  order: 4;
}

.ast-mobile-popup-drawer .ast-main-header-bar-alignment .main-header-bar-navigation {
  width: 100%;
  margin: 0;
  line-height: 3;
  flex: auto;
}

.ast-mobile-popup-drawer .ast-main-header-bar-alignment .main-header-bar-navigation .site-navigation {
  height: 100%;
}

.ast-mobile-popup-drawer .ast-main-header-bar-alignment .main-header-bar-navigation .site-navigation .main-navigation {
  font-size: 1rem;
  display: block;
  width: 100%;
  height: 100%;
}

.ast-mobile-popup-drawer .main-navigation .hs-menu-wrapper > ul {
  flex-wrap: wrap;
  align-self: center;
  margin-top: 20px;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ast-mobile-popup-drawer .main-navigation .hs-menu-wrapper > ul li {
  width: 100%;
  position: relative;
}

.ast-mobile-popup-drawer .main-navigation .hs-menu-wrapper > ul li a {
  padding: 0 20px;
  display: inline-block;
  width: 100%;
  border: 0;
  font-weight: 700;
  transition: all .2s linear;
}

.mobile-menu-open .ast-mobile-popup-drawer {
  opacity: 1;
  visibility: visible;
  left: 0;
  opacity: 1;
  right: 0;
  z-index: 100000;
  transition: opacity 0.25s ease-out;
}

.mobile-menu-open .ast-mobile-popup-drawer .ast-mobile-popup-overlay {
  opacity: 1;
  cursor: pointer;
  visibility: visible;
}

.mobile-menu-open .ast-mobile-popup-drawer .ast-mobile-popup-inner {
  max-width: 30%;
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}

.ast-mobile-popup-drawer .main-navigation .hs-menu-wrapper > ul ul.hs-menu-children-wrapper {
  display: none;
}

.ast-mobile-popup-drawer .main-navigation .hs-menu-wrapper > ul li.hs-item-has-children .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: #d32128;
  border-radius: 3px;
}

.ast-mobile-popup-drawer .main-navigation .hs-menu-wrapper > ul li.hs-item-has-children .child-trigger svg {
  height: .6em;
  width: .6em;
  position: relative;
  margin-left: 10px;
}

.ast-mobile-popup-drawer .main-navigation .hs-menu-wrapper > ul li.hs-item-has-children .child-trigger:focus, 
.ast-mobile-popup-drawer .main-navigation .hs-menu-wrapper > ul li.hs-item-has-children .child-trigger:focus-visible,
.ast-mobile-popup-drawer .main-navigation .hs-menu-wrapper > ul li.hs-item-has-children .child-trigger:active {
  outline: thin dotted;
  border-color: #d32128;
}


.ast-mobile-popup-drawer .ast-desktop-popup-content .ast-header-button {
  padding: 15px 20px;
  justify-content: flex-start;
  display: flex;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ast-mobile-popup-drawer .ast-desktop-popup-content .ast-header-button a.hs-button {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 0.875rem;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  line-height: 1em;
  font-weight: 800;
  border: none;
}


.ast-mobile-popup-drawer .ast-mobile-popup-header button.menu-toggle-close:focus {
  border-style: dotted;
  border-color: #dadada;
  border-width: thin;
}

.ast-mobile-popup-drawer .main-navigation .hs-menu-wrapper > ul ul.hs-menu-children-wrapper:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
}

.ast-mobile-popup-drawer .main-navigation .hs-menu-wrapper > ul ul.hs-menu-children-wrapper li a {
  padding-left: 30px;
}

.ast-mobile-popup-drawer .main-navigation .hs-menu-wrapper > ul ul.hs-menu-children-wrapper li a:before {
  content: '';
  display: inline-block;
  width: .65em;
  height: .6em;
  top: .2em;
  position: relative;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' x='0px' y='0px' width='26px' height='16.043px' viewBox='57 35.171 26 16.043' enable-background='new 57 35.171 26 16.043' xml:space='preserve'%3E%3Cpath d='M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z'%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' x='0px' y='0px' width='26px' height='16.043px' viewBox='57 35.171 26 16.043' enable-background='new 57 35.171 26 16.043' xml:space='preserve'%3E%3Cpath d='M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z'%3E%3C/path%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: contain;
  -webkit-mask-size: contain;
  margin-right: 5px;
  transform: translate(0, -2px) rotateZ(270deg);
}

.ast-mobile-popup-drawer .main-navigation .hs-menu-wrapper > ul li.hs-item-has-children .child-trigger.child-open {
  transform: rotateX(180deg);
}

.header-hide .cst-site-header,
.header-show .cst-site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

/* popup css end */

@media (min-width:992px){

  .cst-site-header .page-center{
    max-width:1240px;
  }
}



@media (max-width:991px){
  .cst-site-header .site-header-primary-section-right .cst-contact-num,
  .cst-site-header .site-header-primary-section-right .cst-rght-search {
    display: none;
  }

  .cst-site-header .cst-desktop-header .page-center .ast-builder-grid-row {
    padding: 0;
  }

  .cst-site-header .site-header-primary-section-right .cst-humb-icn .ast-button-wrap .menu-toggle {
    height: auto;
  }

  .ast-mobile-popup-drawer .ast-mobile-popup-inner {
    width: 50%;
  }

  .mobile-menu-open .ast-mobile-popup-drawer .ast-mobile-popup-inner {
    max-width: 50%;
  }

  .ast-mobile-popup-drawer .main-navigation .hs-menu-wrapper > ul li.hs-item-has-children .child-trigger {
    right: calc(20px - 0.907em);
    top: 0;
  }

  .ast-mobile-popup-drawer .main-navigation .hs-menu-wrapper > ul li.hs-item-has-children .child-trigger svg {
    height: .85em;
    width: .95em;
    position: relative;
  }

  .ast-mobile-popup-drawer .search-form .ahfb-svg-iconset svg {
    height: .85em;
    width: .95em;
    margin-top: 0;
  }
}


@media (max-width:544px){
  .ast-mobile-popup-drawer .ast-mobile-popup-inner {
    width: 100%;
  }

  .mobile-menu-open .ast-mobile-popup-drawer .ast-mobile-popup-inner {
    max-width: 100%;
  }
  .ast-mobile-popup-drawer .main-navigation .hs-menu-wrapper > ul ul.hs-menu-children-wrapper li a:before{
    top:0;
  }
}
.footer-wrapper .primary-footer-wrapper {
  padding-top: 50px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
  align-content: center;
}

.footer-wrapper .primary-footer-wrapper .page-center {
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  grid-column-gap: 50px;
  display: grid;
}

.footer-wrapper .primary-footer-wrapper .widget_nav_menu .hs-menu-wrapper > ul {
  display: block;
}

.footer-wrapper .primary-footer-wrapper .widget_nav_menu .hs-menu-wrapper > ul li a {
  color: #000;
  transition: all .2s linear;
  font-weight: 500;
  line-height: 1.5em;
  font-size: 0.875rem;
}

.footer-wrapper .primary-footer-wrapper .widget_nav_menu .hs-menu-wrapper > ul li a:hover {
  color: #d32128;
}

.footer-wrapper .primary-footer-wrapper .site-footer-primary-section-2 .contact_info_wrapper p a {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  color: #d32128;
  transition: all .2s linear;
  line-height: 1.5;
}

.footer-wrapper .primary-footer-wrapper .site-footer-primary-section-2 .contact_info_wrapper p {
  color: #000;
  margin-bottom: 10px;
  font-family: "Montserrat";
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4em;
}

.footer-wrapper .primary-footer-wrapper .site-footer-primary-section-2 .contact_info_wrapper p a:hover {
  color: #a7080d;
}

.footer-wrapper .primary-footer-wrapper .site-footer-primary-section-2 section.contact_info_wrapper {
  margin: 0 0 2.8em 0;
}

.footer-wrapper .primary-footer-wrapper .site-footer-primary-section-2 section.footer_contact_number a {
  display: inline-flex;
  font-weight: 600;
  font-size: 14px;
  color: #d32128;
  line-height: 1.3em;
}

.footer-wrapper .primary-footer-wrapper .site-footer-primary-section-2 section.footer_contact_number a svg {
  width: 15px;
  height: 15px;
  font-size: 15px;
  margin-right: 10px;
}

.footer-wrapper .primary-footer-wrapper .company-logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-wrapper .primary-footer-wrapper .company-logo-container .request-quote-cntnr a {
  display: flex;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3em;
}

.footer-wrapper .primary-footer-wrapper .company-logo-container .request-quote-cntnr a svg {
  width: 20px;
  height: 20px;
  font-size: 20px;
  margin-right: 10px;
}

.footer-wrapper .primary-footer-wrapper section.footer_contact_number>span,
.footer-wrapper .primary-footer-wrapper section.footer_contact_number {
  line-height: 0;
}

.footer-wrapper .primary-footer-wrapper .company-logo-container .footer-logo-cntnr {
  margin-top: 25px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  text-align: left;
  justify-content: flex-start;
  align-self: flex-start;
  display: flex;
}

.footer-wrapper .primary-footer-wrapper .company-logo-container .footer-helper-logo-cntnr {
  margin-top: 10px;
}

.footer-wrapper .primary-footer-wrapper .company-logo-container .footer-helper-logo-cntnr img {
  box-shadow: 0px 0px 0 #00000070;
  display: flex;
  max-width: 100%;
  transition: box-shadow 0.2s ease;
  contain-intrinsic-size: 3000px 1500px;
}

footer.footer-wrapper .secondary-footer-wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 80px;
  display: grid;
  align-content: center;
}

footer.footer-wrapper .secondary-footer-wrapper .page-center {
  padding: 0;
  display: grid;
  overflow-wrap: anywhere;
  grid-column-gap: 50px;
  grid-template-columns: repeat(3, 1fr);
  min-height: 80px;
  align-items: center;
  width: 100%;
}

footer.footer-wrapper .secondary-footer-wrapper .footer-social-inner-wrap {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

footer.footer-wrapper .secondary-footer-wrapper .footer-social-inner-wrap a {
  line-height: 1;
  color: #ffffff;
  background: transparent;
  vertical-align: middle;
  transition: all 0.01s;
  justify-content: center;
  align-items: center;
  -js-display: inline-flex;
  display: inline-flex;
  flex-wrap: wrap;
  align-content: center;
}

footer.footer-wrapper .secondary-footer-wrapper .footer-social-inner-wrap a svg {
  width: 20px;
  height: 20px;
  fill: #d32128;
}

footer.footer-wrapper .secondary-footer-wrapper .footer-social-inner-wrap a:first-child {
  margin-right: 7.5px;
}

footer.footer-wrapper .secondary-footer-wrapper .footer-social-inner-wrap a:last-child {
  margin-left: 7.5px;
}

footer.footer-wrapper .secondary-footer-wrapper .footer-copyright p {
  font-size: 0.6875rem;
  line-height: 1.5em;
  text-transform: capitalize;
  text-align: center;
}

footer.footer-wrapper .secondary-footer-wrapper .footer-bar-navigation .hs-menu-wrapper>ul li a {
  font-size: 0.6875rem;
  padding: 0 0.5em;
  color: #000;
  transition: all .2s linear;
}

footer.footer-wrapper .secondary-footer-wrapper .footer-bar-navigation .hs-menu-wrapper>ul {
  justify-content: flex-start;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
}

footer.footer-wrapper .secondary-footer-wrapper .footer-bar-navigation .hs-menu-wrapper>ul li:first-child a {
  padding-left: 0;
}

footer.footer-wrapper .secondary-footer-wrapper .footer-bar-navigation .hs-menu-wrapper>ul li:hover a {
  color: #d32128;
}

@media (max-width: 767px) {
  footer.footer-wrapper .secondary-footer-wrapper .footer-bar-navigation .hs-menu-wrapper>ul li a {
    padding-left: 0;
  }

  footer.footer-wrapper .secondary-footer-wrapper .footer-bar-navigation .hs-menu-wrapper>ul {
    flex-direction: column;
  }

  .footer-wrapper .primary-footer-wrapper .page-center {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer-wrapper .primary-footer-wrapper .site-footer-primary-section-2 section.contact_info_wrapper {
    margin-bottom: 1.4em;
  }

  footer.footer-wrapper .secondary-footer-wrapper .page-center {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  footer.footer-wrapper .secondary-footer-wrapper .page-center > div {
    width: 100%;
  }

  footer.footer-wrapper .secondary-footer-wrapper .footer-copyright p {
    text-align: left;
    margin-top: 1em;
  }

  footer.footer-wrapper .secondary-footer-wrapper .footer-social-inner-wrap {
    justify-content: flex-start;
    margin-top: 1em;
  }
}
/* 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;
  }
}