/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
*, *: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;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/* Responsive Grid */

.row-fluid {
    width: 100%;
    *zoom: 1;
}

.row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
}

.row-fluid:after {
    clear: both;
}

.row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
    margin-left: 0;
}

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
    display: table;
    content: "";
}

.container-fluid:after {
    clear: both;
}

@media (max-width: 767px) {
    .row-fluid {
        width: 100%;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: none;
        width: auto;
        margin-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 100%;
        *width: 99.94680851063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
    visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important ;
    }
}
.content-wrapper {
  margin: 0 auto;
  
}



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


@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}
@font-face { 
  font-family: "Font Awesome 5 Pro"; 
  src: url(https://19567407.fs1.hubspotusercontent-na1.net/hubfs/19567407/raw_assets/public/Birchwood_Credit_Services_August_2021/fonts/fa-regular-400.woff) format("woff"); 
  font-style: normal;
  font-weight: 400; 
}


@font-face { 
  font-family: "Font Awesome 5 Pro"; 
  src: url(https://19567407.fs1.hubspotusercontent-na1.net/hubfs/19567407/raw_assets/public/Birchwood_Credit_Services_August_2021/fonts/fa-light-300.woff) format("woff"); 
  font-style: normal;
  font-weight: 300; 
}

@font-face { 
  font-family: "Font Awesome 5 Pro"; 
  src: url(https://19567407.fs1.hubspotusercontent-na1.net/hubfs/19567407/raw_assets/public/Birchwood_Credit_Services_August_2021/fonts/fa-solid-900.woff) format("woff"); 
  font-style: normal; 
  font-weight: 900; 
}

@font-face {
  font-family: "awb-icons"; 
  src: url(https://19567407.fs1.hubspotusercontent-na1.net/hubfs/19567407/raw_assets/public/Birchwood_Credit_Services_August_2021/fonts/awb-icons.woff) format("woff"),
    url(https://19567407.fs1.hubspotusercontent-na1.net/hubfs/19567407/raw_assets/public/Birchwood_Credit_Services_August_2021/fonts/awb-icons.ttf) format("truetype"),
    url(https://19567407.fs1.hubspotusercontent-na1.net/hubfs/19567407/raw_assets/public/Birchwood_Credit_Services_August_2021/fonts/awb-icons.ttf) format("svg"); 
  font-style: normal; 
  font-weight: normal; 
  font-display: swap; 
}





[class*=" awb-icon-"], [class^=awb-icon-] {
  font-family: awb-icons!important;
  speak: never;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa, .fab, .fal, .far, .fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa, .fas {
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
}

body {
  -webkit-text-size-adjust: 100%;
  font: 13px/20px PTSansRegular,Arial,Helvetica,sans-serif;
  letter-spacing: 0.008em;
  font-style: normal;
  line-height: 1.6;
}

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

/* Paragraphs */

p {
  margin-bottom: 20px;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;

}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-style: normal;
  margin-bottom:15px;
}

/* Lists */

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

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

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

/* Code blocks */

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 15px;
}
.body-container a.hs-button.primary {
  margin-top: 10px;
}
/* Horizontal rules */

hr {
  background-color: #CCC;
  border: none;
  color: #CCC;
  height: 1px;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
  text-decoration: none;
}

button:active,
.button:active {
  text-decoration: none;
}
/* Form fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

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

/* 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 {
  background-color: #FFF;
  border: 2px solid;
  border-radius: 3px;
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
  background-color: #FFF;
  border: 2px solid;
  border-radius: 3px;
  display: inline-block;
  font-size: .875rem;
  padding: .7rem;
  width: 100%;
  padding: 8px 15px;
  border-radius: 8px;
  padding-top: 0;
  padding-bottom: 0;
  color: #59667d;
  background-color: #f9fafb;
  font-size: 14px;
  border-color: #dce4f1;
  max-width: 100%;
  border-width: 1px;
  height: 56px;
  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;
  margin-right: 0.35rem;
}

/* Inputs - datepicker */

.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: #dce4f1;
}

form .hs-error-msgs li{
  margin:0;
  line-height: normal;
}

.hs-error-msg,
.hs-error-msgs label{
  color: #c02b0a;
  background: #fff9f9;
  border: 1px solid #c02b0a;
  margin-top: 8px;
  padding: 12.992px 24px;
  font-weight: 400;
  font-size: 15px;
  line-height: inherit;
  clear: both;
  font-family: inherit;
  letter-spacing: normal;
  padding-top: 13px;
  width: 100%;
}
/* Submit button */

form input[type=submit],
form .hs-button {

  cursor: pointer;
  display: inline-block;
  font-size: .92rem;
  text-align: center;
  transition: all .15s linear;
  white-space: normal;
  cursor: pointer;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  zoom: 1;
  text-transform: none;
  font-style: normal;
  letter-spacing: 0px;
  transition: all .2s;
  font-family: Poppins;
  padding: 13px 29px;
  line-height: 17px;
  font-size: 14px;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 600;
  padding-top: 15px;
  padding-bottom: 15px;
  border: 1px solid;
  border-radius: 8px;
  background-color: #004883;
  text-transform: uppercase;
}

form input[type=submit]:hover,
form .hs-button:hover{

  transform: translateY(-3px) !important;
  border: 1px solid;
  background-color: #0E6AAC;
}

form input[type=submit]:active,
form .hs-button:active {

}


::-webkit-input-placeholder {
  color: ;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder,
::placeholder,
.hs-fieldtype-date .input .hs-dateinput:before {
  color: #59667d;
}


/* Captcha */

.grecaptcha-badge {
  margin:0;
}

form {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #ffffff;
  border-radius: 12px 12px 12px 12px;
  overflow: hidden;
  box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 10%);
  margin-bottom: 15px;
  max-width: 767px;
}

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

.hs-form-field > label {
  letter-spacing: 0.008em;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
}
/* Table */

table {
  border: 1px solid;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table Cells */

th,
td {
  border: 1px solid;
  padding: 0.75rem;
  vertical-align: top;
}

/* Table Header */

thead th,
thead td {
  border-bottom: 2px solid;
  vertical-align: bottom;
}
header.header {
  z-index: 10011;
  padding-right: 30px;
  padding-bottom: 0px;
  margin-bottom: -1px;
  padding-left: 30px;
  min-height: 85px;
  position: fixed;
  top: 0px;
  width: 100%;
  box-shadow: rgb(0 0 0 / 10%) 3px 7px 12px;
  display: flex;
  justify-content: center;
  line-height: 26px;
  font-size: 16px;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, min-height .1s ease-in-out;
  -webkit-backface-visibility: hidden;
}
header.header.header-no-nav {
  min-height: 95px;
}
.header_container {
  display: flex;
  flex: 1;
  width: 100%;
}
.nav-up header.header {
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity .3s, transform .3s, background .3s, border .3s, border-radius .3s, box-shadow .3s ease-in-out;
  pointer-events: none;
}
.nav-down header.header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .3s, transform .3s, background .3s, border .3s, border-radius .3s, box-shadow .3s ease-in-out;
}
.header_container {
  position: relative;
  z-index: 10;
  display: flex;
  width: 100%;
  align-items: center;
  margin-left: calc(-4% / 2);
  margin-right: calc(-4% / 2);
  justify-content: center;
  max-width: 1310.4px !important;
}
.header-no-nav .header_container {
  justify-content: flex-start;
}
.navbar-brand {
  position: relative;
  align-self: stretch;
  float: left;
  width: 33.3333333333%;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
}
.logo_wrapper {
  justify-content: center;
  margin-right: 5.76%;
  margin-left: 5.76%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.logo_wrapper a {
  display: block;
  max-width: 325px;
  transition: max-width .1s ease-in-out;
}
.shrink .logo_wrapper a {
  max-width: 225px;
}
.logo_wrapper img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.heade_navWrapper {
  position: relative;
  float: left;
  width: 66.6666666667%;
  display: flex;
  margin-top: 12px;
  margin-bottom: 12px;
}
.heade_navWrapper ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.navBar_wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex: auto;
  width: 104%;
  max-width: 104%;
  margin-left: calc(-4% / 2);
  margin-right: calc(-4% / 2);
}
.heade_innerNav {
  margin-left: 10px;
  margin-right: 2.88%;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.headerTop_navWrapper {
  flex-direction: row;
  width: 100%;
  display: flex;
  border-bottom: 1px solid rgba(2, 58, 81, 0.1);
  margin-top: -25px;
}
.shrink .headerTop_navWrapper {
  display: none;
}
.primaryMenu_wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: flex-end;
}
.top_nav {
  margin-bottom: 0;
  width: 100%;
  opacity: 1;
  transition: opacity .1s cubic-bezier(.42, .01, .58, 1);
  float: left;
  padding-right: 10px;
  font-size: 14px;
  margin-top: 10px;
}
.top_nav .navigation-primary>ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  position: relative;
  transition: all calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  text-transform: none;
  justify-content: flex-end;
  align-items: center;
  font-family: "Poppins";
  font-weight: 500;
  min-height: 30px;
}
.top_nav .navigation-primary>ul>li {
  position: relative;
  display: flex;
  justify-content: center;
  transition: all calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  margin-left: calc(10px / 2);
  margin-right: calc(10px / 2);
}
.top_nav .navigation-primary>ul>li:first-child {
  margin-left: 0;
}
.top_nav .navigation-primary>ul>li:last-child {
  margin-right: 0;
}
.top_nav .navigation-primary>ul>li a {
  font-family: "Poppins";
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1), background-color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  flex-direction: row;
  font-size: 14px;
  padding-top: calc(3px + 2px);
  padding-right: calc(10px + 0px);
  padding-bottom: calc(3px + 2px);
  padding-left: calc(10px + 0px);
  color: #004883;
  text-transform: uppercase;
}
.top_nav .navigation-primary>ul>li a:hover {
  text-decoration: underline;
}
.custom-menu-wrapper {
  position: relative;
  float: left;
  width: 83.3333333333% !important;
  margin-top: -15px;
  margin-bottom: 0px;
  display: flex;
}
.custom-menu-wrapper .navigation-primary>ul {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  transition: all calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  justify-content: flex-end;
  align-items: center;
  font-family: "Poppins";
  font-weight: 500;
  min-height: 30px;
}
.menu_inner {
  font-size: 16px;
  width: 100%;
  opacity: 1;
  padding-top: 20px;
  margin-top: 10px;
}
.shrink .menu_inner {}
.custom-menu-wrapper .navigation-primary>ul>li {
  position: relative;
  display: flex;
  justify-content: center;
  transition: all calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  margin-left: calc(10px / 2);
  margin-right: calc(10px / 2);
}
span.background-active.transition-center {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-style: solid;
  transition: calc(300 * 1ms);
  transition-timing-function: cubic-bezier(0.42, 0.01, 0.58, 1);
  background: rgba(0, 0, 0, 0);
  border-left-width: 0;
  border-right-width: 0;
  transform: scaleX(0);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-color: #004883;
}
.custom-menu-wrapper .navigation-primary>ul>li:hover .background-active.transition-center {
  transform: scaleX(1);
}
.custom-menu-wrapper .navigation-primary>ul>li:hover:before {
  content: " ";
  position: absolute;
  width: 100%;
  bottom: calc(0px - 10px);
  height: 10px;
}
.custom-menu-wrapper .navigation-primary>ul>li>a {
  font-family: "Poppins";
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1), background-color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  flex-direction: row;
  padding-top: calc(10px + 1px);
  padding-right: calc(10px + 0px);
  padding-bottom: calc(10px + 1px);
  padding-left: calc(10px + 0px);
  color: #1c1c1c;
}
.custom-menu-wrapper .navigation-primary>ul ul.level-2 {
  position: absolute;
  top: 100%;
  display: table;
  visibility: hidden;
  opacity: 0;
  flex-direction: column;
  padding: 0;
  font-size: 14px;
  text-transform: none;
  z-index: -10;
  left: 0;
  width: max-content;
  box-shadow: 0px 20px 32px -12px rgb(2 58 81 / 20%);
  transition: all calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1), transform calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  transform: translateY(20px);
  margin-top: 10px;
}
.custom-menu-wrapper .navigation-primary>ul>li:hover ul.level-2 {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  z-index: 999999999;
}
.custom-menu-wrapper .navigation-primary>ul ul.level-2 li {
  position: relative;
  border-bottom: 1px solid #e2e2e2;
  transition: all calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  font-family: "Poppins";
  font-weight: 600;
  min-width: 250px;
}
.custom-menu-wrapper .navigation-primary>ul ul.level-2 li a {
  font-family: "Poppins";
  display: flex;
  width: 100%;
  transition: color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1), background-color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 600;
  color: #023a51;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  justify-content: space-between;
}
.custom-menu-wrapper .navigation-primary>ul ul.level-2 li:hover>a {
  color: #004883 !important;
}
span.fusion-open-nav-submenu {
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: none;
  outline: 0;
  display: flex;
  padding-left: .5em;
}
span.fusion-open-nav-submenu:before {
  content: "\f107";
  font-family: awb-icons;
  line-height: 1;
}
.login_menu_wrapper {
  position: relative;
  float: left;
  width: 16.6666666667%;
  margin-top: -2px;
  display: flex;
  justify-content: flex-end;
}
.login_menu .navigation-primary>ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  transition: all calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  font-family: "Poppins";
  font-weight: 500;
  transition-duration: 0ms;
  padding-top: 20px;
  float: right;
}
.login_menu .navigation-primary>ul>li>a {
  font-family: Poppins;
  font-weight: 600;
  transition: all .2s;
  outline: 0;
  border-radius: 5px;
  font-size: 14px;
}
.login_menu .navigation-primary>ul>li>a .menu-text {
  display: inline-block;
  position: relative;
  line-height: 17px;
  font-family: Poppins;
  font-weight: 600;
  transition: all .2s;
  outline: 0;
  text-align: center;
  color: #1c1c1c;
  border-radius: 5px;
  padding: 14px 28px;
  font-size: 14px;
  background: #f58025;
}
.login_menu .navigation-primary>ul>li>a .menu-text:before {
  content: " ";
  display: table;
}
.login_menu .navigation-primary>ul>li>a .menu-text:after {
  clear: both;
  content: '\f107';
  display: inline-block;
  font-family: 'Font Awesome 5 Pro';
  color: #1c1c1c;
  padding-left: 5px;
}
.login_menu .navigation-primary>ul>li>a .menu-text:hover {
  background: #F89D56;
  color: #1c1c1c;
}
.login_menu .navigation-primary>ul ul.submenu.level-2 {
  position: absolute;
  top: 100%;
  display: table;
  visibility: hidden;
  opacity: 0;
  transition: opacity calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  flex-direction: column;
  font-size: 14px;
  text-transform: none;
  z-index: -10;
  min-width: 100%;
  width: max-content;
  left: auto;
  right: 0;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  padding: 25px 0;
  background: #004883;
}
.login_menu .navigation-primary>ul ul.submenu.level-2 li {
  position: relative;
  border-bottom: 1px solid #e2e2e2;
  transition: all calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  font-family: "Poppins";
  font-weight: 500;
  transition-duration: 0ms;
  width: 300px;
  border-bottom-color: rgba(226, 226, 226, 0);
}
.login_menu .navigation-primary>ul ul.submenu.level-2 li a {
  font-family: "Poppins";
  display: flex;
  align-items: center;
  width: 100%;
  transition: color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1), background-color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  justify-content: space-between;
  min-width: max-content;
  font-weight: 500;
  color: #ffffff;
  padding: 6px 20px;
}
.login_menu .navigation-primary>ul ul.submenu.level-2 li a span {
  font-size: 14px;
  border: solid 1px #fff;
  border-radius: 5px;
  padding: 7px 10px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.login_menu .navigation-primary>ul ul.submenu.level-2 li a span:hover {
  background: #0E6AAC;
}
.login_menu .navigation-primary>ul ul.submenu.level-2 li a span:after {
  display: inline-block;
  font-family: 'Font Awesome 5 Pro';
  color: #fff;
  padding-left: 6px;
  content: '';
}
.login_menuToggle .login_menu .navigation-primary>ul>li>a .menu-text:after {
  content: '\f00d';
  display: inline-block;
  font-family: 'Font Awesome 5 Pro';
  color: #fff;
  padding-left: 6px;
}
.login_menuToggle .login_menu .navigation-primary>ul>li>a .menu-text {
  background: #004883;
  color: #fff;
  border-radius: 5px 5px 0 0;
}
.login_menuToggle .login_menu .navigation-primary>ul ul.submenu.level-2 {
  visibility: visible;
  opacity: 1;
  z-index: 999999999;
}
.mobile_triggerWrapper,
.mobileSearch_btn {
  display: none;
}
.mobile-search-bar form {
  max-width: 100%;
  padding: 0;
  margin: 0;
  box-shadow: none;
  background-color: transparent;
}
.header_mobileSearch {
  position: relative;
  background-attachment: scroll;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, min-height .1s ease-in-out;
  -webkit-backface-visibility: hidden;
  z-index: 10011;
  padding: 0px 30px;
  margin-top: 1px;
}
.mobile-search-bar {
  display: none;
  padding-bottom: 15px;
}
.mobile_menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.mobile_menu {
  font: 13px/20px PTSansRegular, Arial, Helvetica, sans-serif;
  letter-spacing: .008em;
  font-style: normal;
  line-height: 26px;
  overflow: hidden;
  transition: all calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  justify-content: flex-end;
  font-family: "Poppins";
  font-weight: 500;
  position: absolute;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  top: 74px;
  opacity: 0;
  visibility: inherit;
  z-index: -10;
}
.open_menu .mobile_menu {
  z-index: 99999999999999;
  opacity: 1;
  visibility: visible;
}
.mobile_menu>div {
  width: 100%;
  background-color: #fff;
}
.mobile_menu>div {
  width: 100%;
}
.mobile_menu .navigation-primary>ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.mobile_menu .navigation-primary>ul>li {
  justify-content: center;
  transition: all calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  box-shadow: none;
  flex-direction: column !important;
  position: relative;
  display: flex;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  min-height: 60px;
}
.mobile_menu .navigation-primary>ul>li.open_child {
  border-bottom: 0;
}
.mobile_menu .navigation-primary>ul>li:first-child,
.mobile_menu .navigation-primary>ul>li:nth-child(2) {
  display: block;
  flex: 0 0 50%;
  border-top: 1px solid rgba(0, 0, 0, .1);
}
.mobile_menu .navigation-primary>ul>li>a {
  font-family: "Poppins";
  z-index: 10;
  width: 100%;
  border: none;
  padding: 0 1.5em;
  background: #fff;
  display: flex;
  align-items: center;
  transition: color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1), background-color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  color: #1c1c1c !important;
  min-height: 60px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.mobile_menu .navigation-primary>ul>li:hover>a,
.mobile_menu .navigation-primary>ul>li:hover>.child-trigger:before,
.mobile_menu .navigation-primary>ul>li.open_child:hover>a,
.mobile_menu .navigation-primary>ul>li.open_child:hover>.child-trigger:before {
  color: #004883 !important;
}
.mobile_menu .navigation-primary>ul>li:first-child>a,
.mobile_menu .navigation-primary>ul>li:nth-child(2)>a {
  justify-content: center;
  padding: 0 .25em !important;
}
.mobile_menu .navigation-primary>ul>li:first-child>a>.menu-text,
.mobile_menu .navigation-primary>ul>li:nth-child(2)>a .menu-text {
  color: #004883;
  text-transform: uppercase;
  font-weight: 500;
}
.mobile_menu .child-trigger {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  z-index: 10;
  outline: 0;
  position: absolute;
  top: 0;
  right: 0;
  color: #212934;
}
.mobile_menu .child-trigger:before {
  content: "\f107";
  font-family: awb-icons;
  line-height: 1;
  display: flex;
  align-items: center;
  transform: none !important;
  padding: 0 2em !important;
  min-height: 60px;
  color: #1c1c1c;
}
.mobile_menu .open_child>.child-trigger:before {
  transform: rotate(180deg) !important;
}
.mobile_menu .navigation-primary>ul ul.submenu.level-2 {
  max-height: 500px;
  overflow: hidden;
  display: none;
}
.mobile_menu .navigation-primary>ul ul.submenu.level-2 li {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  font-family: "Poppins";
  font-weight: 600;
  min-height: 60px;
}
.mobile_menu .navigation-primary>ul ul.submenu.level-2 li:last-child {
  border: none;
}
.mobile_menu .navigation-primary>ul ul.submenu.level-2 li a {
  font-family: "Poppins";
  width: 100%;
  padding: 0 1.5em;
  display: flex;
  align-items: center;
  transition: color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1), background-color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  justify-content: flex-start;
  min-height: 60px;
  padding-left: 2.5em;
  background: #fff;
  color: #1c1c1c;
  font-size: 14px;
}
.mobile_menu .navigation-primary>ul>li:nth-child(7),
.mobile_menu .navigation-primary>ul>li:nth-child(8),
.mobile_menu .navigation-primary>ul>li:nth-child(9),
.mobile_menu .navigation-primary>ul>li:nth-child(10),
.mobile_menu .navigation-primary>ul>li:nth-child(11) {
  text-transform: uppercase;
  padding: 0 30px;
  border: 0;
}
.mobile_menu .navigation-primary>ul>li:nth-child(7) {
  padding-top: 15px;
}
.mobile_menu .navigation-primary>ul>li:nth-child(7)>a {
  font-size: 20px;
  font-weight: 600;
  padding: 25px 0 15px;
  background: #004883;
  justify-content: center;
}
.mobile_menu .navigation-primary>ul>li:nth-child(7) a,
.mobile_menu .navigation-primary>ul>li:nth-child(8) a,
.mobile_menu .navigation-primary>ul>li:nth-child(9) a,
.mobile_menu .navigation-primary>ul>li:nth-child(10) a,
.mobile_menu .navigation-primary>ul>li:nth-child(11) a {
  background: #004883 !important;
  justify-content: center;
}
.mobile_menu .navigation-primary>ul>li:nth-child(7)>a .menu-text {
  color: #fff;
}
.mobile_menu .navigation-primary>ul>li:nth-child(8) a span.menu-text,
.mobile_menu .navigation-primary>ul>li:nth-child(9) a span.menu-text,
.mobile_menu .navigation-primary>ul>li:nth-child(10) a span.menu-text,
.mobile_menu .navigation-primary>ul>li:nth-child(11) a span.menu-text {
  color: #fff;
  width: 80%;
  padding: 6px 20px;
  text-align: center;
  border: solid 1px #fff;
  font-weight: 600;
  font-size: 15px;
}
@media only screen and (max-width: 1200px) {
  .mobile_menu .navigation-primary a.no-link {
    pointer-events: none;
    cursor: default;
  }
}
.mobile_menu .navigation-primary>ul>li:last-child {
  padding-bottom: 30px;
}
.mobile_menu .navigation-primary>ul>li:last-child>a {
  padding: 10px 25px 25px;
}
.header_searchBox .hs-search-field__bar form .hs-search-field__input::placeholder {
  color: #59667d;
}
.headerTop_navWrapper {
  position: relative;
}
.hs-search-field--open .hs-search-field__suggestions {
  padding: 10px;
}
.hs-search-field__suggestions {
  position: absolute;
  width: 100%;
  background-color: #fff;
  padding: 10px;
  z-index: 99;
}
.mobile_search_mod.hs-search-field.hs-search-field--open ul.hs-search-field__suggestions {
  position: relative;
}
.mobile_search_mod.hs-search-field ::-webkit-input-placeholder {
  color: #59667d;
}
.mobile_search_mod.hs-search-field ::-webkit-input-placeholder,
.mobile_search_mod.hs-search-field ::-moz-placeholder,
:-ms-input-placeholder,
.mobile_search_mod.hs-search-field :-moz-placeholder {
  color: #59667d;
}
header .hs-search-field__bar form .hs-search-field__input {
  background-image: url({{%20get_asset_url%28%27../../images/search-icon.png%27%29%20}%20});
}
@media only screen and (max-width:1335px) and (min-width: 1320px) {
  .custom-menu-wrapper .navigation-primary>ul>li>a {
    padding-right: calc(8px + 0px);
    padding-left: calc(8px + 0px);
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1319px) {
  .custom-menu-wrapper .navigation-primary>ul>li>a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1319px) {
  .login_menu .navigation-primary>ul>li>a .menu-text:after {
    padding-left: 6px;
  }
}
.safari .heade_innerNav {
  margin-left: 0;
}
@media(min-width:1201px) {
  .custom-menu-wrapper .navigation-primary>ul>li.active-item>span,
  .custom-menu-wrapper .navigation-primary>ul>li.active-branch>span {
    transform: scaleX(1);
  }
  .custom-menu-wrapper .navigation-primary>ul ul.level-2 li.active-item>a {
    color: #004883 !important;
  }
}
@media only screen and (max-width: 1200px) {
  header.header {
    position: static;
    box-shadow: none;
    border-bottom: 1px solid transparent;
  }
  .heade_navWrapper {
    display: none;
  }
  .navbar-brand {
    margin-left: 0;
    margin-right: 0;
    width: 66.6666666667%;
    order: 0;
  }
  .logo_wrapper {
    width: 100%;
    margin-right: 2.88%;
    margin-left: 2.88%;
  }
  .logo_wrapper a {
    max-width: 180px;
  }
  .mobileSearch_btn {
    position: relative;
    float: left;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 16.6666666667%;
    order: 0;
    display: flex;
  }
  .mobile-header-search {
    width: 100%;
    justify-content: flex-start;
    margin-right: 11.52%;
    margin-left: 11.52%;
    display: flex;
    flex-direction: column;
  }
  .navbar-text {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
  .navbar-text i.fa-search {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: 'Font Awesome 5 Pro';
    color: #004883;
    font-size: 26px;
    font-weight: 400;
  }
  .fa-search:before {
    content: "\f002";
  }
  .mobile_triggerWrapper {
    position: relative;
    float: left;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 16.6666666667%;
    order: 0;
    display: flex;
  }
  .mobile_trigger {
    justify-content: flex-start;
    margin-right: 11.52%;
    margin-left: 11.52%;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .mobile-menu-trigger {
    padding-top: 12px;
    padding-right: 20px;
    padding-bottom: 12px;
    padding-left: 20px;
    cursor: pointer;
    width: 100%;
    font-weight: 300;
    font-family: "Poppins";
    color: #004883;
    font-size: 30px;
  }
  .inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .collapsed-nav-icon {
    position: relative;
    width: 1em;
    height: 1em;
    color: #004883;
    font-size: 30px;
  }
  .header_mobileSearch {
    z-index: 9999999999;
  }
  .collapsed-nav-icon-open {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    width: 1em;
    transition: all calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
    position: absolute;
    transform: rotate(0);
    opacity: 1;
    left: 0;
  }
  .collapsed-nav-icon-open {
    left: 2px;
  }
  .open_menu .collapsed-nav-icon-open {
    width: 1em;
    transition: all calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
    position: absolute;
    opacity: 0;
    transform: rotate(360deg);
    left: 0;
  }
  .fa-bars:before {
    content: "\f0c9";
  }
  .collapsed-nav-icon-close {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    width: 1em;
    transition: all calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
    position: absolute;
    opacity: 0;
    transform: rotate(0);
    left: 0;
    text-align: center;
  }
  .open_menu .collapsed-nav-icon-close {
    opacity: 1;
    transform: rotate(360deg);
    left: 0;
  }
  .fa-times:before {
    content: "\f00d";
  }
  .open_form .navbar-text .fa-search:before {
    content: "\f00d";
  }
  .open_form .navbar-text i.fa-search {
    font-size: 38px;
    font-weight: 300;
  }
  body {
    padding-top: 0 !important;
  }
  .mobile_menu .navigation-primary>ul>li>a.active-item {
    background: #ffffff;
    color: #004883 !important;
  }
  .mobile_search_mod .hs-search-field__input:focus {
    border-color: #2cbc63;
  }
  .mobile_menu .navigation-primary>ul>li>a.active-branch {
    color: #004883 !important;
  }
  .mobile_menu .navigation-primary>ul>li.open_child>a {
    color: #004883 !important;
  }
  .mobile_menu .navigation-primary>ul>li.open_child>.child-trigger:before {
    color: #004883;
  }
  .mobile_menu .navigation-primary>ul ul.submenu.level-2>li>a.active-item {
    color: #004883;
  }
  .mobile_menu .navigation-primary>ul>li.active-item>a {
    color: #004883 !important;
  }
  .mobile_menu .navigation-primary>ul>li.active-item>.child-trigger:before {
    color: #004883 !important;
  }
  .mobile_menu .navigation-primary>ul>li.active-branch>a,
  .mobile_menu .navigation-primary>ul>li.active-branch>.child-trigger:before {
    color: #004883 !important;
  }
  .mobile_menu .navigation-primary>ul ul.submenu.level-2 li.active-item>a {
    color: #004883 !important;
  }
}
@media only screen and (max-width: 640px) {
  .navbar-brand {
    width: 60%;
    order: 0;
  }
  .mobileSearch_btn {
    width: 20%;
  }
  .mobile_triggerWrapper {
    width: 20%
  }
  .logo_wrapper {
    margin-right: 3.2%;
    margin-left: 3.2%;
  }
  .mobile-header-search {
    margin-right: 9.6%;
    margin-left: 9.6%;
  }
  .mobile_trigger {
    margin-right: 9.6%;
    margin-left: 9.6%;
  }
}
footer.footer {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 60px;
  padding-right: 30px;
  padding-bottom: 32px;
  padding-left: 30px;   
}

.footer__container {
  margin: 0 auto;
  position: relative;
  z-index: 10;  
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  max-width: 1310.4px;
  margin-left: calc(-4% / 2 );
  margin-right: calc(-4% / 2 );
}

.footer__container {
    display: flex;
    width: 100% !important;
    order: 0;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    width: 100%;
}

.footer_inner{
  display: flex;            
  flex-wrap: wrap;
  flex: 1;
  width: 100%;
  align-items: flex-start;
  justify-content: space-evenly;
}

.footer_wrapper {
  width: 100%;
}
.footer_menu .hs-menu-wrapper>ul li.active-branch > a {
  color: #000000 !important;
}
.footer_cols {
  position: relative;
  float: left;
  width: 33.3333333333%;
  margin-top: 0px;
  margin-bottom: 20px;
  display: flex;
}

.footerLogo_wrapper {
  justify-content: flex-start;
  margin-right: 5.76%;
  margin-left: 5.76%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.footer_logo {
  text-align: center;
}

.footer_logo>div {
  display: inline-block;
  z-index: 1;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  max-width: 100%;
  line-height: 1;
  margin-bottom: 2px;
}

.footer_logo img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.footer_btn {
  text-align: center;
}

.footer_btn a {
  display: inline-block;
  position: relative;
  border: 1px solid transparent;
  text-align: center;
  text-decoration: none;
  padding: 13px 29px;
  line-height: 17px;
  font-size: 14px;
  font-family: Poppins;
  font-weight: 600;
  transition: all .2s;
  width: 100%;
  outline: 0;
  border-color: #f4f6fa;
  border-width: 3px;
  border-radius: 10px;
  background: #f4f6fa;
  margin-top: 12px;
  margin-bottom: 12px;
  color: #004883;
}
.footer_btn:last-child a {
  margin-top: 8px;
  margin-bottom: 0;
}

.footer_btn a:hover {
  border-color: #f4f6fa;
  border-width: 3px;
  background: #ffffff;
  text-decoration: none;
  color: #004883;
}

.footer_btn a span {
  font-size: 15px;
  letter-spacing: normal;
  word-break: break-all;
}

.footer_menu ul {
  position: static !important;
  display: block !important;
  opacity: 1 !important;
  text-align: left;
}

.footer_menu {
  justify-content: flex-start;
  margin-right: 30px;
  padding-left: 100px;
  margin-left: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.footer_menu .hs-menu-wrapper>ul {
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
  transition: all calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  flex-direction: column;
  font-family: "Poppins";
  font-weight: 600;
}

.footer_menu .hs-menu-wrapper>ul li a {
  font-family: "Poppins";
  display: flex;
  align-items: center;
  width: 100%;
  transition: color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1),background-color calc(300 * 1ms) cubic-bezier(.42, .01, .58, 1);
  justify-content: flex-start;
  flex-direction: row;
  padding-bottom: calc(20px + 0px);
  color: #004883;
  line-height: 26px;
}

.footer_menu .hs-menu-wrapper>ul li a:hover{
  text-decoration:underline;
}

h5.footer_heading {
  letter-spacing: -0.01em;
  color: #141414;
  font-family: "Poppins";
  font-weight: 500;
  margin: 0;
  line-height: 1.8;
  font-size: 18px;
  width: 100%;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 30px;
}

.fusion-social-links {
  width: 100%;
  overflow: hidden;
}

.fusion-separator {
  clear: both;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 11;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.footer_contactWrapper {
  justify-content: flex-start;
  margin-right: 5.76%;
  margin-left: 5.76%;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.copyright_text {
  text-align: left;
  font-size: 14px;
  line-height: 22px;
  font-family: "Poppins";
  font-weight: 500;
  margin-top: 14px;
  margin-bottom: 14px;
}

.footer_brands {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-evenly;
  flex: auto;
  flex-grow: initial;
  flex-shrink: initial;
  width: 104%;
  max-width: 104%;
  margin-left: calc(-4% / 2 );
  margin-right: calc(-4% / 2 );
}

.sas_certification, .godaddy_certification {
  position: relative;
  float: left;
  align-self: stretch;
  width: 40%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.godaddy_certification {
  width: 60% !important;
  margin-top: 20px;
  margin-bottom: 20px;
}

.sas_certification>div {
  margin-right: 4.8%;
  margin-left: 4.8%;
}

.sas_certification img, .godaddy_certification img {
  vertical-align: top;
  max-width: 100%;
}

.godaddy_certification>div {
  margin-right: 3.2%;
  margin-left: 3.2%;
}


.fusion-top-top-link {
  text-decoration: none;
  background-color: #333;
  position: fixed;
  text-align: center;
  opacity: 0;
  z-index: 100000;
  transition: opacity .4s ease-in-out,background .2s ease-in-out;
  line-height: 1;
  pointer-events: none;
  bottom: 30px;
  height: 44px;
  width: 44px;
  border-radius: 50px 50px 50px 50px;
  right: 75px;
}

.fusion-top-top-link:hover{
  background-color: #004883;
}

.fusion-top-top-link:before {
  transition-property: color,background-color,border-color;
  transition-duration: .2s;
  transition-timing-function: linear;
  content: "\f106";
  -webkit-font-smoothing: antialiased;
  font-family: awb-icons;
  font-size: 22px;
  color: #fff;
  line-height: 42px;
}

.fusion-top-top-link.visible{
  pointer-events: auto;
  opacity: .9;
  transition: opacity .4s ease-in-out,background .2s ease-in-out;
}

.footer_contactWrapper>hr{
  display:none;
}




.footer_brands .sas_certification img {
  width: 100% !important;
}

.footer_brands .godaddy_certification img {
  width: 100% !important;
}
@media (max-width: 1200px){
  footer.footer{
    padding-top: 0px;
    padding-right: 30px;
    padding-bottom: 60px;
    padding-left: 30px;
  }
  .footer__container{
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .footer_inner {
    margin-right: 1.92%;
    margin-left: 1.92%;
    flex-direction: column;
  }

  .footer_cols {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }

  .copyright_text {
    text-align: center;
    font-size: 16px;
    line-height: 22px;
    font-family: "Poppins";
    font-weight: 500;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .footer_contactWrapper {
    margin: 0;
    margin-top: 10px;
    border-top: 1px inset;
  }

  .sas_certification, .godaddy_certification {
    width: 50% !important;
    margin: 0;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .fusion-social-networks-wrapper a {
    font-size: 30px;
  }

  .fusion-social-links {
    margin-top: 40px;
  }

  h5.footer_heading {
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 20px;
    text-align: center;
    font-weight: 400;
  }

  .footer_menu {
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
  }

  .footer_menu .hs-menu-wrapper>ul>li {
    border-bottom: 1px solid transparent;
  }

  .footer_menu .hs-menu-wrapper>ul>li>a {
    justify-content: center;
    color: #004883 !important;
    min-height: 45px;
    font-weight: 500;
    font-size: 16px;
    padding: 0 1.5em;
  }

  .footerLogo_wrapper {
    margin: 0;
    margin-bottom: 40px;
  }

  .footer_btn a span {
    padding: 13px 29px;
    line-height: 17px;
    font-size: 14px;
  }

  .footer_contactWrapper>hr{
    display: block;
    color: #dedede;
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    height: 1px;
  }


  .footer_menu .hs-menu-wrapper>ul>li.active-branch > a {
    background: #f9f9fb!important;
    color: #004883 !important;
    text-decoration: none !important;
  }

  .footer_menu .hs-menu-wrapper>ul li a:hover {
    background-color: #f9f9fb;
    color: #004883 !important;
    text-decoration: none !important;
  }
}

@media (max-width: 1024px){
  .copyright_text{
    margin-bottom: 15px;
  }

  .footerLogo_wrapper{
    margin-bottom: 39px;
  }
}

@media (max-width:1000px){
  h5.footer_heading{
    margin-top: 16px;
    font-size:16px;

  }
}

@media (max-width: 800px){

  .copyright_text{
    margin-bottom: 16px;
  }
  .footer_menu{
    margin-bottom: 9px;
  }

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