/* 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[class*="full-width-section"]>.row-fluid {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.full-width-container .dnd-section > .row-fluid {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.overflow-hidden{
    overflow:hidden;
}
.dnd-section[class*=force-full-width-section] {
    padding: 0;
}
.dnd-section[class*=force-full-width-section] .dnd-column {
    padding-left: 0;
    padding-right: 0;
}
.dnd-section[class*=force-full-width-section]>.row-fluid {
    padding-left: 0;
    padding-right: 0;
}
.small-container {
    margin: 0 auto;
    padding: 0 20px;
}
.content-wrapper, 
.page-center,
.dnd-section>.row-fluid { 
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}
.dnd-section[class*="-force-full-width-section"]>.row-fluid {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right:0 !important;
    width: 100% !important;
}

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

@font-face {
    font-family: 'At Aero';
    src: url('https://422392.fs1.hubspotusercontent-na1.net/hubfs/422392/AtAero-Semibold.woff2') format('woff2'),
	   url('https://422392.fs1.hubspotusercontent-na1.net/hubfs/422392/AtAero-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'At Aero';
    src: url('https://422392.fs1.hubspotusercontent-na1.net/hubfs/422392/NexusTek_July2025/fonts/AtAero-Regular.eot');
    src: url('https://422392.fs1.hubspotusercontent-na1.net/hubfs/422392/NexusTek_July2025/fonts/AtAero-Regular.eot#iefix') format('embedded-opentype'),
	   url('https://422392.fs1.hubspotusercontent-na1.net/hubfs/422392/NexusTek_July2025/fonts/AtAero-Regular.woff2') format('woff2'),
	   url('https://422392.fs1.hubspotusercontent-na1.net/hubfs/422392/NexusTek_July2025/fonts/AtAero-Regular.woff') format('woff'),
	   url('https://422392.fs1.hubspotusercontent-na1.net/hubfs/422392/NexusTek_July2025/fonts/AtAero-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'At Aero';
    src: url('https://422392.fs1.hubspotusercontent-na1.net/hubfs/422392/NexusTek_July2025/fonts/AtAero-Medium.eot');
    src: url('https://422392.fs1.hubspotusercontent-na1.net/hubfs/422392/NexusTek_July2025/fonts/AtAero-Medium.eot#iefix') format('embedded-opentype'),
	   url('https://422392.fs1.hubspotusercontent-na1.net/hubfs/422392/NexusTek_July2025/fonts/AtAero-Medium.woff2') format('woff2'),
	   url('https://422392.fs1.hubspotusercontent-na1.net/hubfs/422392/NexusTek_July2025/fonts/AtAero-Medium.woff') format('woff'),
	   url('https://422392.fs1.hubspotusercontent-na1.net/hubfs/422392/NexusTek_July2025/fonts/AtAero-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'At Aero';
    src: url('https://422392.fs1.hubspotusercontent-na1.net/hubfs/422392/NexusTek_July2025/fonts/AtAero-Bold.eot');
    src: url('https://422392.fs1.hubspotusercontent-na1.net/hubfs/422392/NexusTek_July2025/fonts/AtAero-Bold.eot#iefix') format('embedded-opentype'),
	   url('https://422392.fs1.hubspotusercontent-na1.net/hubfs/422392/NexusTek_July2025/fonts/AtAero-Bold.woff2') format('woff2'),
	   url('https://422392.fs1.hubspotusercontent-na1.net/hubfs/422392/NexusTek_July2025/fonts/AtAero-Bold.woff') format('woff'),
	   url('https://422392.fs1.hubspotusercontent-na1.net/hubfs/422392/NexusTek_July2025/fonts/AtAero-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


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

/* 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 0 1.4rem;
}
img {
    max-width: 100%;
    vertical-align: middle;
    height: auto;
}
/* Anchors */

a {
    cursor: pointer;
    transition:all .2s ease;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1.5rem;
}
h1,h2, .h1, .h2{
    line-height: 1;
}
h3, .h3{
    line-height: 1.21;
}
h4, .h4{
    line-height: 1.513;
}
h5, .h5{
    line-height: 1.333;
}
h6, .h6{
    line-height: 1.273;
}
/* Lists */

ul,
ol {
    margin: 0 0 1.4rem;
}

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: 2px solid;
    margin: 0 0 1.4rem;
    padding-left: 0.7rem;
}

/* Horizontal rules */

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

/* Image alt text */

img {
    font-size: 0.583rem;
    word-break: normal;
}
@media (max-width:1200px){
    br{
	   display:none
    }
}
button,
.button,
.hs-button {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all 0.15s linear;
    white-space: normal;
    font-style: italic !important;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
    /*   background-color: #D0D0D0;
    border-color: #D0D0D0;
    color: #E6E6E6; */
}
.button{
    text-decoration:none;
}
.button:hover,.button:focus{
    text-decoration:none;
}
/* 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;
}
.cta-group {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
}
.cta-group {
    margin-top: 32px;
}
.text-left .cta-group {
    -webkit-box-pack: start!important;
    -ms-flex-pack: start!important;
    justify-content: flex-start!important
}
.text-right .cta-group {
    -webkit-box-pack: end!important;
    -ms-flex-pack: end!important;
    justify-content: flex-end!important
}
.text-center .cta-group {
    -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important
}
.cta-group .btn-wrapper {
    display: inline-block;
}
.cta-group .btn-primary-white-wrapper {
    position: relative;
    overflow: hidden;
}
@media (max-width: 479px){
    .cta-group .btn-wrapper {
	   width: 100%; 
    }
}
/* Form */
form select {
    background-image: url();
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px 7px;
    background-position: 95% center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
h3.form-title:empty {
    display: none;
}
form {
    max-width: 767px;
}
form fieldset.form-columns-1 .input,
form fieldset.form-columns-2 .hs-form-field .input,
form fieldset.form-columns-3 .hs-form-field .input{
    margin-right: 0 !important;
}
form fieldset.form-columns-1 .hs-form-field:first-child .input,
form fieldset.form-columns-2 .hs-form-field:first-child .input,
form fieldset.form-columns-3 .hs-form-field:first-child .input {
    margin-right: 0 !important;
}
form fieldset.form-columns-2,
form fieldset.form-columns-3 {
    display: flex;
    column-gap: 21px;
}
form fieldset.form-columns-1 .hs-input {
    width: 100% !important;
}
form fieldset .hs-input[type=radio],
form fieldset .hs-input[type=checkbox] {
    width: auto !important;
}
.hs-fieldtype-textarea.hs-input {
    vertical-align: middle;
}
@media(max-width: 992px) {
    form fieldset.form-columns-2 {
	   flex-wrap: wrap;
    }
    form fieldset.form-columns-2 .hs-form-field {
	   float: none;
	   width: 100% !important;
    }
}
@media(max-width:479px) {
    form fieldset.form-columns-2 .hs-form-field:first-child .input,
    form fieldset.form-columns-2 .hs-form-field:first-child .input {
	   margin-right: 0 !important;
    }
    form fieldset.form-columns-2 .hs-form-field {
	   width: 100% !important;
	   float: none;
    }
    .form-columns-2 .hs-form-field .hs-input {
	   width: 100% !important;
    }
}
/* Form fields */
.hs-form-field {
    margin-bottom: 14.5px;
}
/* Labels */
.hs-form label {
    display: block;
    margin-bottom: 0.35rem;
    /*   text-transform: capitalize; */
}
.hs-form label {
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    color: ;
    display: block;
    float: none;
    width: auto;
    text-align: left;
    padding-top: 0;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.hs-form-field > label {
    margin-bottom: 5px;
}
.inputs-list.hs-error-msgs label {
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    margin-top: .5rem;
    color: red;
}
.hs-error-msgs label {
    color: red;
}
/* Help text - legends */
form legend {
    font-size: 0.875rem;
}
/* Inputs */
form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
    font-family: var(--secondary_font);
    display: inline-block;
    min-height: 53px;
    padding: 12px 23px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    box-sizing: border-box;
    outline: none;
}
textarea.hs-input {
    height: auto;
}
.hs-input:focus {
    outline: none;
}
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;
    width: auto;
    height: auto;
    padding: 0;
    margin: 3px 5px 3px 0px;
    line-height: normal;
    border: none;
    width: auto;
}
textarea.hs-input {
    /*     min-height: 87px;
    padding: 8px 4px; */
}
/* Inputs - datepicker */
.hs-dateinput {
    position: relative;
}
.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;
    padding: initial;
    border: initial;
    line-height: initial;
    box-shadow: none;
}
/* Headings and text */
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: #D82E91;
    margin-left: 4px;
}
.hs-input.invalid.error {
    border-color: red;
}
.hs-error-msg {
    color: red;
    margin-top: 0.35rem;
}
.hs-error-msgs label {
    color: red;
}
/* Submit button */
.btn-primary,
.btn-secondary,
form input[type=submit],
form .hs-button,
form input[type=submit]:hover,
form input[type=submit]:focus,
form input[type=submit]:active,
form .hs-button:hover,
form .hs-button:focus,
form .hs-button:active {
    margin: 0;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    white-space: normal;
    font-family: At Aero;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    position: relative;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 1.6px;
    font-style: italic;
}
.hs-button,
.hs-button:hover,
.hs-button:focus {
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-style: italic;
}
/* Captcha */
.grecaptcha-badge {
    margin: 0 auto;
    margin-left: 0;
}
#hs-search-module .hs-input {
    margin-bottom: 12px;
}
@media (max-width: 767px) {
    form {
	   max-width: 100%;
    }
}
.hs-form-checkbox-display, 
.hs-form-radio-display {
    align-items: center;
    display: inline-flex !important;
    position: relative;
}
.hs-form-checkbox-display input[type=checkbox], 
.hs-form-radio-display input[type=radio] {
    height: 12px;
    opacity: 0;
    visibility: hidden;
    width: 12px !important;
}
.hs-form-checkbox-display span,
.hs-form-radio-display span {
    align-items: center;
    display: inline-flex;
    font-weight: 400;
    margin-left: 2px;
}
.hs-form-radio-display input[type=radio]+span:before,
.hs-form-radio-display input[type=radio]:checked~span:after {
    border-radius: 100px;
}
.hs-form-checkbox-display input[type=checkbox]+span:before, 
.hs-form-radio-display input[type=radio]+span:before {
    border: 1px solid #0095DB;
    content: "";
    cursor: pointer;
    height: 12px;
    left: 0;
    position: absolute;
    width: 12px;
}
.hs-form-checkbox-display input[type=checkbox]+span:before, 
.hs-form-checkbox-display input[type=checkbox]:checked~span:after {
    border-radius: 2px;
}
.hs-form-checkbox-display input[type=checkbox]:checked~span:after, 
.hs-form-radio-display input[type=radio]:checked~span:after {
    background-color: #0095DB;
    content: "";
    cursor: pointer;
    display: block;
    height: 12px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
}
/* 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
*/

body.pop-open {
    overflow: hidden;
}
.dnd-section {
    overflow: hidden;
}
.btn-custom {
    font-style: italic;
    letter-spacing: 1.6px;
    line-height: 1.125;
}
header.header {
    padding: 42px 0;
    position: fixed;
    left:0;
    top:0;
    width:100%;
    transition: top 0.6s;
    z-index:100
}
header.header .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 67px;
}
header.header .header-search-and-button {
    display: flex;
    align-items: center;
    /*     gap: 18px; */
    justify-content: flex-end; 
    max-width: 26%;
}
header.header .header-search {
    display: none;
}
header.header button.top-bar-search {
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    height: 27px;
    width:27px;
}
header.header button.top-bar-search svg {
    fill: #fff;
}

header.header .menu-toggle {
    display: none;
}
header.header .header_contact {
    width: 30%;
}

header.header .header_contact p {
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 13px;
    margin: 0;
    text-decoration: none;
}
header.header .hs-search-field__bar button svg {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

header.header .hs-search-field__bar button {
    padding: 10px;
}
header.header .header_contact p a {
    color: inherit;
}
.header-search.desktop form {
    display: flex;
}
header.header .header__menu a {
    color: inherit;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
    font-family: At Aero;
}
header.header button.top-bar-search.search-open{
    opacity: 0;
}
header.header .hs-menu-wrapper>ul>li ul {
    display: none;
    left: 0 !important;
    top: 0;
}
header.header .header_contact p {
    font-family: var(--secondary_font);
}
header.header button.top-bar-search:focus,header.header button.top-bar-search:hover {
    border: 0;
    background:transparent;
}
header.header .hs-menu-wrapper>ul>li.hs-menu-item.hs-item-has-children>a svg {
    width: 13px;
    height: 18px;
    min-width: 13px;
    transition:all .2s ease;
}
header.header .hs-menu-wrapper>ul>li>a {
    display: flex;
    align-items: center;
    column-gap: 5px;
    padding: 15px 13px;
}
header.header .hs-menu-wrapper>ul>li:hover>a {
    text-decoration:underline:
}
header.header .hs-menu-wrapper>ul>li:hover>a svg{
    transform: rotate(180deg);
}
header.header .header__buttons a{
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    font-family: 'At Aero';
    padding: 13px 17px; 
    font-style: italic;
}
header.header .hs-menu-wrapper>ul>li.hs-menu-item.hs-menu-depth-1 {
    display: flex;
    align-items: flex-end;
}
header.header .header__logo img {
    vertical-align: bottom;
}
header.header .hs-menu-wrapper>ul>li ul {
    min-width: 228px;
    padding: 10px 19px 20px;
}

header.header .hs-menu-wrapper>ul>li ul>li:not(:last-child) {
    margin-bottom: 8px;
}

header.header .hs-menu-wrapper>ul>li ul>li a {
    font-size: 26px;
    font-family: 'At Aero';
    line-height: 1;
}
header.header .hs-menu-wrapper>ul>li.hs-menu-item:hover>ul {
    display: block;
}
header.header .header-search-wrapper {
    position: relative;   
    display: flex;
}
header.header .hs-menu-wrapper>ul>li ul>li:hover>a {
    text-decoration: underline;
}
header.header .header-search.desktop {
    display: none;
    position: absolute;
    z-index: 10;
    top: -10px;
    max-width: 320px;
    width: 100%;
    min-width: 320px;
    right:-5px;
}
header.header .header__menu {
    margin-bottom: -15px;
}
header.header .header-mobile-content {
    display: none;
}
header.header .header__logo img {
    vertical-align: bottom;
    max-width: 175px;
}
header.header .header-search-wrapper form input[type=text] {
    background: var(--black);
    color: var(--primary);
}
header.header.fixed {
    top: 0 !important;
    padding: 30px 0;
}
header.header.off-canvas {
    top: -200px;
}
header.header ul.hs-search-field__suggestions {
    background: #000000;
    color: #fff;
}
header.header ul.hs-search-field__suggestions li {
    padding: 10px;
}
header.header ul.hs-search-field__suggestions a {
    color: #fff;
}
header.header ul.hs-search-field__suggestions a:hover {
    text-decoration:none;
}
header.header .header-search-wrapper form input[type=text]::placeholder {
    text-transform: capitalize;
    color: var(--primary);
}
header.header .hs-menu-wrapper>ul>li ul li.active-branch>a{
    text-decoration: underline;
}
header.header .hs-menu-wrapper>ul>li ul>li a {
    font-size: 18px;
    font-family: 'At Aero';
    line-height: 1;
}
header.header .header__menu .hs-menu-wrapper > ul > li > ul > li:hover > ul {
    opacity: 1 !important;
    visibility: visible;
}

header.header .header__menu .hs-menu-wrapper > ul > li > ul > li > ul {
    display: block;
    left: 100% !important;
    top: calc(0px - 10px) !important;
    padding: 15px 30px !important;
    opacity: 0 !important;
    visibility: hidden;
}
@media (min-width:1025px){
    header.header .header-mobile-content {
	   display: none !important;
    }
    header.header  .header-search.mobile {
	   display: none !important;
    }
    header.header .header_contact.desktop {
	   margin-left: 18px;
    }

    header.header .header__buttons.desktop {
	   margin-left: 18px;
    }
}
@media (max-width:1350px){
    header.header .header__container {
	   column-gap: 20px;
    }
    header.header .header-search-and-button {
	   gap: 13px;
    }
    header.header .hs-menu-wrapper>ul>li>a {
	   padding: 15px 7px;
    }
    header.header .header_contact.desktop {
	   display: none;
    }
    header.header .header__container{
	   column-gap: 30px;
    }
    header.header .header__logo {
	   max-width: 140px;
    }
    header.header .header__logo img {
	   max-width: 140px;
    }
}

@media (min-width:1025px) and (max-width:1300px){
    header.header .header__logo {
	   max-width: 150px;
    }
    header.header .header__logo img {
	   width: 100% !important;
    }
    header.header .header__logo img {
	   width: 100%;
	   max-width: 150px;
    }
    header.header .hs-menu-wrapper>ul>li>a {
	   font-size: 14px;
    }
    header.header .header__buttons a {
	   font-size: 14px;
	   padding: 13px 14px;
    }
    header.header .hs-menu-wrapper>ul>li ul>li a {
	   font-size: 20px;
    }
    header.header .hs-menu-wrapper>ul>li ul {
	   z-index: 99;
    }
}
@media (max-width:1024px){
    header.header .header__menu {
	   display: none;
    }
    header.header .menu-toggle {
	   display: block;
    }
    header.header .header_contact {
	   display: none;
    }
    header.header .header__buttons a {
	   padding: 8px 11px;
	   font-size: 14px;
    }
    header.header .header__logo {
	   max-width: 110px;
	   width:100%;
    }
    header.header  .header__logo img {
	   width: 100%;
    }
    header.header {
	   padding: 20px 0;
    }
    header.header .header__buttons {
	   display: none;
    }
    header.header .hamburger-icon {
	   padding: 0;
	   width: 40px;
	   height: 40px;
	   position: relative;
	   font-size: inherit;
	   transition: all 0.3s ease;
	   cursor: pointer;
	   background: transparent;
	   border: 0;
    }
    header.header .hamburger-icon span.line {
	   position: absolute;
	   right: 0;
	   width: 70%;
	   height: 4px;
	   border-radius: 5px;
	   background: currentColor;
	   transition: inherit;
    }
    header.header .hamburger-icon span.line.line-1 {
	   top: 10px;
	   width: 100%;
    }
    header.header .hamburger-icon span.line.line-3 {
	   top: 30px;
	   width: 50%;
    }
    header.header .hamburger-icon.open span.line.line-1 {
	   width: 0;
    }
    header.header .hamburger-icon.open span.line.line-2 {
	   transform: rotate(45deg);
	   width: 100%;
    }
    header.header .hamburger-icon.open span.line.line-3 {
	   width: 100%;
	   transform: rotate(-45deg);
	   top: 20px;
    }
    header.header .header__container {
	   flex-wrap: wrap;
    }
    header.header .header-mobile-content {
	   width: 100%;
	   position: absolute;
	   top: 100%;
	   background: #3C3C3C;
	   left: 0;
	   right: 0;
	   display: none;
	   z-index:99;
    }
    header.header .header-search.mobile form {
	   width: 100%;
	   max-width: 100%;
	   display: flex;
    }
    header.header .header-search-wrapper {
	   display: none;
    }

    header.header .header-search {
	   display: block !important;
	   padding: 10px;
    }
    header.header .header-mobile-menu a {
	   color: #fff;
	   text-decoration: none;
	   font-weight: 400;
	   font-size:16px;
    }
    header.header .header-mobile-menu .hs-menu-wrapper>ul>li.hs-menu-item ul {
	   position: relative !important;
	   min-width: auto;
	   width: 100%;
	   display: none;
	   opacity:1;
	   padding:0 10px;
    }
    header.header .hs-menu-wrapper>ul>li {
	   flex-wrap: wrap;
    }
    header.header .hs-menu-wrapper>ul>li ul>li a {
	   text-decoration: none;
	   font-weight: 400;
	   font-size: 16px;
    }
    header.header .hs-menu-wrapper>ul>li a {
	   padding: 8px 10px;
	   width: 100%;
    }
    header.header .hs-menu-wrapper>ul>li ul {
	   display: block;
    }
    header.header  span.child-menu-toggle {
	   order: 2;
	   width: 21px;
	   height: 20px;
	   display: flex;
	   align-items: center;
	   justify-content: center;
	   margin-right: 10px;
	   cursor: pointer;
	   position: absolute;
	   right: 0;
	   top: 10px;
	   transition:all .2s ease;
    }
    header.header ul.hs-menu-children-wrapper {
	   order: 3;
    }
    header.header .header__logo img {
	   width: 100% !important;
    }
    header.header .hs-menu-wrapper>ul>li.hs-menu-item {
	   align-items: center !important;
	   justify-content: space-between;
    }
    header.header span.child-menu-toggle svg {
	   width: 16px;
	   height: 16px;
    }
    .child-menu-toggle.child-open {
	   transform: rotate(180deg);
    }
    header.header .hs-menu-wrapper>ul>li ul>li.hs-item-has-children>a {
	   margin-bottom: 5px;
    }
    header.header .hs-menu-wrapper>ul>li ul .child-menu-toggle {
	   margin: 0;
	   top: 5px;
    }
    header.header .header_contact.mobile {
	   display: block;
    }
    header.header .header__buttons.mobile {
	   display: block;
    }
    header.header .header-mobile-content .hs-menu-wrapper>ul{
	   flex-direction: column;
    }
    header.header .header__buttons.mobile {
	   padding: 10px;
    }
    header.header .header_contact.mobile {
	   padding: 10px;
	   width: 100%;
    }
    header.header .header_contact.mobile br {
	   display: none;
    }
    header.header .header-search.mobile {
	   width: 100%;
	   margin-top: 10px;
    }
    header.header .header-search.desktop {
	   display: none !important;
    }
    header.header .hs-menu-wrapper>ul>li.hs-menu-item.active-branch>a {
	   text-decoration: underline;
    }
}

@media(max-width:767px){
    .header_contact.mobile p span {
	   display: block;
	   padding-top: 20px;
    }
    .header-search.mobile form {
	   display: flex;
    }
}
footer.footer {
    padding: 74px 0 47px;
}
.footer-top .row, 
.footer-bottom .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.footer-bottom .row {
    align-items: flex-end;
}
.footer-top .left-col {
    width: 26%;
    padding: 0 15px;
}
.footer-top .right-col {
    width: 74%;
    padding: 0 15px;
    padding: 0 15px 0 36px;
}
.footer-logo {
    margin-bottom: 55px;
}
.footer-menu .hs-menu-wrapper > ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 12px;
    row-gap: 60px;
}
.footer-menu .hs-menu-wrapper > ul > li {
    width: calc(33.3333% - 24px);
}
.footer-menu .hs-menu-wrapper > ul > li > a {
    font-family: At Aero;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0px;
    display: inline-block;
    margin-bottom: 10px;
}
.footer-menu .hs-menu-wrapper > ul > li > a[href="javascript:;"], 
.footer-menu .hs-menu-wrapper > ul > li > a[href=""], 
.footer-menu .hs-menu-wrapper > ul > li > a[href="javascript:;"]:hover,
.footer-menu .hs-menu-wrapper > ul > li > a[href=""]:hover {
    font-weight: 600;
    text-transform: uppercase;
    opacity: 1;
    cursor: text;
    text-decoration: none;
}
.footer-menu .hs-menu-wrapper  ul ul li a {
    font-family: At Aero;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0px;
    display: inline-block;
    margin-bottom: 2px;
    text-decoration: none;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: .5s;
    -webkit-text-decoration-color: transparent;
    -moz-text-decoration-color: transparent;
}
.footer-menu .hs-menu-wrapper  ul ul li:last-child > a {
    margin-bottom: 0;   
}
.footer-menu .hs-menu-wrapper  ul ul li a:hover {
    text-decoration: underline;
}
.footer-bottom {
    padding-top: 53px;
}
.footer-socials {
    width: 26%;
    padding: 0 15px;
}
.copyright {
    width: 74%;
    padding: 0 15px 0 36px;
}
.copyright a {
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: .5s;
    -webkit-text-decoration-color: transparent;
    -moz-text-decoration-color: transparent;
}
footer.footer form .hs-form-field > label {
    font-family: var(--secondary_font);
}
@media(max-width: 1024px) {
    .footer-menu .hs-menu-wrapper > ul {
	   column-gap: 15px;
	   row-gap: 30px;
    }
    .footer-menu .hs-menu-wrapper > ul > li {
	   width: calc(50% - 30px);
    }
    .footer-top .right-col,
    .copyright {
	   padding: 0 15px;
    }
    .footer-menu .hs-menu-wrapper ul ul li a {
	   font-size: 20px;
	   line-height: 1.5;
    }
    .footer-top .left-col,
    .footer-socials {
	   width: 35%;
    }
    .footer-top .right-col,
    .copyright {
	   width: 65%;
    }
}
@media(max-width: 767px) {
    footer.footer {
	   padding: 50px 0 30px;
    }
    .footer-logo,
    .hs-customer-satisfaction,
    .hs-footer-locations,
    .hs-footer-locations ul.info-wrp {
	   margin-bottom: 25px;
    }
    .hs-footer-locations ul.info-wrp {
    margin-top: 25px !important;
}
    .footer-menu {
	   margin-top: 40px;
    }
    .footer-top .left-col, .footer-socials,
    .footer-top .right-col, .copyright {
	   width: 100%;
    }
    .footer-menu .hs-menu-wrapper > ul {
	   column-gap: 0;
	   row-gap: 25px;
    }
    .footer-menu .hs-menu-wrapper > ul > li {
	   width: 100%;
    }
    .footer-bottom {
	   padding-top: 40px;
    }
    .copyright {
	   margin-top: 20px;
    }
    .footer-menu .hs-menu-wrapper ul ul li a {
	   font-size: 17px;
    }
    .footer-menu .hs-menu-wrapper.hs-menu-flow-horizontal ul,
    .footer-menu .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper {
	   flex-direction: unset;
    }
    .footer-menu .hs-menu-wrapper > ul > li {
	   width: calc(50% - 5px);
    }
    .footer-menu .hs-menu-wrapper > ul {
	   column-gap: 10px;
    }
    .footer-menu .hs-menu-wrapper ul ul {
	   flex-direction: column !important;
    }
    .footer-menu .hs-menu-wrapper > ul > li > a{
	   font-size:18px;
    }
}

@media (max-width: 479px) {
    .footer-menu .hs-menu-wrapper ul ul {
	   flex-direction: column !important;
    }
    .footer-menu .hs-menu-wrapper > ul > li {
	   width: 100%;
    }
    .footer-menu .hs-menu-wrapper > ul > li > a {
	   font-size: 20px;
	   line-height: 1.4;
    }
    .footer-menu .hs-menu-wrapper ul ul li a {
	   font-size: 18px;
    }
}
/* 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;
  }
}