/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

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

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

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

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

.dnd-section > .row-fluid {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

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

*,:after,:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility
}
/* html {
  overflow-x: hidden;
} */
.body-style-giude-page{
	overflow-x: hidden;
}
body {
  color: var(--primary_color);
  font-family: var(--primary_font);
  font-size: 24px;
  line-height: inherit;
  line-height: 1.5;
  margin: 0;
  max-width: 100vw;
  overflow-wrap: break-word;
  overflow-x: hidden
}

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

.content-wrapper,.dnd-section>.row-fluid,.page-center {
  margin: 0 auto;
  max-width: 1310px;
  padding: 0 15px
}

.dnd-section[class*=force-full-width-section]>.row-fluid {
  padding: 0
}
.default-preview button:after {
  display: none;
}
.hs-private.hs-private.hs-private :after {
  display: none;
}
p {
  margin: 0 0 15px
}

a {
  color: var(--link_color);
  text-decoration: none;
  transition: all .3s ease-in-out
}

a:not(.button,.primary-btn,.hs-outline-btn,.secondary-btn,.custom) {
  background: linear-gradient(to right,rgba(20,130,251,0),rgba(20,130,251,0)),linear-gradient(to right,var(--link_color));
  background-position: 100% 100%,0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1.5px,0 1.5px;
  color: var(--link_color);
  cursor: pointer;
  display: inline;
  font-weight: 600;
  text-decoration: none;
  transition: background-size .4s
}

a:not(.button,.primary-btn,.hs-outline-btn,.secondary-btn,.custom):hover {
  background-size: 0 1.5px,100% 1.5px;
  text-decoration: none
}

.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
  color: var(--secondary_color);
  font-weight: 300;
  line-height: 1;
  margin: 0 0 15px
}
ol,ul {
  margin: 0 0 15px;
	padding-left: 25px;
}

ol ol,ol ul,ul ol,ul ul {
  margin: 16px 0
}

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

.no-list li {
  margin: 0
}

pre {
  overflow: auto
}

code {
  vertical-align: bottom
}

blockquote {
  border-left: 10px solid;
  margin: 0 0 1.4rem;
  padding-left: 1rem
}

hr {
  border: 0;
  border-bottom: 1px solid
}

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

sup {
  top: -.5em
}

sub {
  bottom: -.25em
}

b,strong {
  font-weight: 700
}

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

audio,canvas,embed,iframe,object,svg,video {
  display: block;
  vertical-align: middle
}
.no-banner main#main-content {
  padding-top: 136px;
}
@media(min-width:992px){
  .no-banner .header-wrapper .header-top .hs-menu-wrapper>ul>li>a {
    color: #131c27;
  }

  .no-banner .header-wrapper.fix-header .header-top .hs-menu-wrapper>ul>li>a {
    color: #fff;
  }
}
/* Model */
html.model-open{
  overflow:hidden;
}
.model-open.model-popup {
  opacity:1;
  visibility: visible;
}
.model-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(6,12,32,0.5);
  z-index: 1200;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.model-popup .popup-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  padding: 0 15px;
  width: 100%;
}
.model-popup .popup-close {
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  right:15px;
  top:4%;
  z-index: 1;
}
.model-popup .popup-wrapper {
  position: relative;
}
.model-popup .popup-close svg {
  width: 20px;
  height: 20px;
}
.model-popup .oembed_container .iframe_wrapper {
  padding: 0;
  height: inherit;
  width: 100%;
}
.model-popup .oembed_container .iframe_wrapper iframe ,.model-popup .oembed_container{
  width: 100%;
  max-width: 100% !important;
  height: inherit;
  max-height: unset !important;
}
@media(max-width:991px){
  .model-popup .popup-close {
    right: 15px;
    top: 10%;
  }
}
/**
* Simple fade transition,
*/
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out; 
  -moz-transition: all 0.15s ease-out; 
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out; 
  -moz-transition: all 0.15s ease-out; 
  transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
.social-dnd-sec .dnd-module {
  min-height: 0;
}
@media (min-width: 768px) {
  .body-style-giude-page .banner-area .banner-icon a:after { height: 428px;}
}
@media(max-width:767px){
  .no-banner main#main-content {
    padding-top: 85px;
  }
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: normal;
}

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

/* No button */

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

.button,.hs-button,button {
  background-color: var(--link_color);
  border: 0;
  border-radius: 39px;
  color: #fff;
  cursor: pointer;
  font-family: Barlow;
  font-size: 21px;
  font-weight: 700;
  line-height: normal;
  outline: none;
  padding: 16px 15px 15px 28px;
  position: relative;
  text-align: center;
  transition:background-color 1s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.button svg,
.hs-button svg,
button svg{
  left: 0;
  margin-left: 5px;
  /*   opacity: 0; */
  position: relative;
  top:1px;
  transition: all .5s ease-in-out;
  height: 25px;
  width:21px;
}
.button svg,
.hs-button svg,
button svg,
.button span,
.hs-button span,
button span{
  display: inline-block;
  position: relative;
  z-index: 1;
}
.button:hover svg, .hs-button:hover svg, button:hover svg {
  left: 9px;
  margin-left: 5px;
}
.button:after,.hs-button:after,button:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  right: 0;
  background: -moz-linear-gradient(0deg,#1482fb 0,#1b5faa 100%);
  background: -webkit-linear-gradient(0deg, #1482fb, #1b5faa);
  background: -ms-linear-gradient(0deg,#1482fb 0,#1b5faa 100%);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
}
.button:hover:after,.hs-button:hover:after,button:hover:after {
  opacity: 1;
  left: 0;
}
.hs-outline-btn,
.button.secondary-btn,
.hs-button.secondary-btn{
  background-image:unset;  
}
/* .button:hover svg,
.hs-button:hover svg,
button:hover svg {
left: 0;
opacity: 1;
} */
.header-wrapper .slide-menu-control:after {
  display: none;
}
a.button {
  transition: all .5s ease-in-out;
}
/* Fields */

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  width: 100%!important;
  line-height:1.5;
  padding-bottom: 5px;
}
form input[type=email]:focus,
form input[type=file]:focus,
form input[type=number]:focus,
form input[type=password]:focus,
form input[type=search]:focus, 
form input[type=tel]:focus,
form input[type=text]:focus,
form select:focus, form textarea:focus{
  outline: none;
}
form .hs-input:focus::placeholder {
  color: transparent;
}
form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

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

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: normal;
  font-weight: 500;
  background-image: unset;
  transition: all 0.3s ease-in-out;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0
}

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

form label {
  display: block;
  margin-bottom: 11px
}

form legend {
  font-size: 90%;
  padding-bottom: 5px
}

fieldset.form-columns-2,fieldset.form-columns-3 {
  display: flex;
  justify-content: space-between
}

fieldset.form-columns-2>div {
  width: calc(50% - 16px)!important
}

fieldset.form-columns-3>div {
  width: calc(33.3337% - 31.33333px)!important
}

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

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

.hs-dependent-field .field {
  width: 100%!important
}

.input {
  margin: 0!important;
}

.hs-search-field form label {
  width: 100%
}
.hs-input:focus {
  border-color: var(--link_color);
  outline: none;
}
form select{
  cursor:pointer;
  background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none'%3E%3Cpath fill='%231482fb' d='m7 8.508.602-.63 5.25-5.25L13.48 2 12.25.77l-.629.628L7 6.02 2.352 1.398 1.75.77.492 2l.63.629 5.25 5.25z'/%3E%3C/svg%3E);
  appearance: none;
  background-position: 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-right: 25px !important;
  text-overflow: ellipsis;
}
form select option {
  background-color:#131c27;
  color: #fff;
  padding: 0 10px;
}
form .hs-button:hover, form input[type=submit]:hover {
  padding: 15px 28px;
}
.hs-fieldtype-textarea.hs-input {
  resize: vertical;
  vertical-align: middle;
}
.hs-form-field > label {
  margin: 0;
}
.submitted-message {
  text-align: center;
}
@media(min-width: 768px) {
  form ul.inputs-list.multi-container {
    column-gap:15px;
    display: flex;
    flex-wrap: wrap
  }

  form ul.inputs-list.multi-container li {
    width: calc(50% - 15px)
  }
}
@media(max-width:1200px){
  .hs-error-msg, .hs-error-msgs label {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  fieldset.form-columns-2>div, fieldset.form-columns-3>div {
    width: 100% !important;
  }
  .legal-consent-container .hs-form-booleancheckbox-display>span,fieldset.form-columns-2,fieldset.form-columns-3 {
    display: block
  }
}

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

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

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

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

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

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
  vertical-align: middle;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

.header-wrapper .header-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 500;
  min-height: 80px;
}
.header-wrapper .header-top ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-wrapper .header-top .content-wrapper {
  display: flex;
  justify-content: flex-end;
}
.header-wrapper .header-top .hs-menu-wrapper > ul {
  display: flex;
  align-items: center;
}
.header-wrapper .header-top .hs-menu-wrapper {
  padding: 0 40px;
  line-height: normal;
}
.header-wrapper .header-top .hs-menu-wrapper > ul > li > a {
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: normal;
  transition: all 0.3s ease-in-out;
}
.header-wrapper .header-top .hs-menu-wrapper > ul > li:not(:last-child) {padding-right: 15px;}
.header-wrapper .header-top {
  padding: 23px 0 16px;
  font-size: 14px;
}
.header-wrapper .custom-menu-primary {
  transition: all 0.3s ease-in-out;
}
.header-wrapper .navigation-section {
  background-color: rgba(55 ,81 ,114,0.7);
  border-radius: 40px;
  padding:0 40px;
  display: flex;
  justify-content: space-between;
  column-gap: 15px;
  height: 80px;
  font-size: 18px;
  line-height: normal;
  transition: all .5s ease-in-out;
}
.header-wrapper .logo a {
  display: block;
  position: relative;
  background: unset;
  top: -18px;
}
.main-navigation ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.main-navigation .custom-menu-primary > ul.menu {
  display: flex;
  align-items: center;
}
.main-navigation .custom-menu-primary > ul.menu > .hs-menu-item:not(:last-child) {
  margin-right: 37px;
}
.main-navigation .custom-menu-primary > ul.menu > li > a {
  background: unset;
  font-size: 18px;
  line-height: normal;
  font-weight: 300;  
  transition: all 0.3s ease-in-out;
}
.main-navigation .custom-menu-primary > ul.menu > .hs-menu-item {
  padding-top: 29px;
  padding-bottom: 29px;
}
.main-navigation .custom-menu-primary > ul.menu > li > a:after {content: "";width: 0;height: 1px;transition: all 0.3s ease-in-out;display: block;background-color: var(--link_color);position: absolute;top: calc(100% + 29px);bottom: 0;}
.main-navigation .custom-menu-primary > ul.menu > li > a {
  position: relative;
}
.main-navigation .custom-menu-primary > ul.menu > li:hover > a:after {
  width: 100%;
}
.header-wrapper .search-wrapper button:after {
  display: none;
}
nav.main-navigation {
  display: flex;
  align-items: center;
}
.header-wrapper button {
  background: unset !important;
  padding: 0;
  display: flex;
}
.header-wrapper .search-wrapper button.hs-search-field__button {
  display: none;
}
.header-wrapper button span {
  left: 0;
  opacity: 1;
  top: 0;
  position: static;
}
/* Search */
.search-container {
  opacity: 0;
}
.search-wrapper .search-container {
  opacity: 1;
}
.header-wrapper .search-wrapper button {
  padding: 0;
  border: 0;
}
.header-wrapper .search-wrapper button:hover {
  background: unset;
}

nav.main-navigation .search-wrapper {
  margin-left:15px;
}
nav.main-navigation .search-wrapper svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  position: relative;
  top: 4px;
  transition: all 0.3s ease-in-out;
}
.search-open.header-wrapper .search-wrapper button.hs-search-field__button {
  display: flex;
}
.search-open button.search-btn,
.hs-search-field__suggestions-container {
  display: none;
}
.search-container svg {
  fill: transparent;
}
.search-container svg circle.cls-2 {
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search-container svg line.cls-2 {
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search-container rect.cls-1 {
  fill: none;
}
.header-wrapper .search-wrapper button svg {
  fill: none;
  width: 30px;
  height: 30px;
}
.header-wrapper .search-wrapper button:hover svg circle.cls-2,
.header-wrapper .search-wrapper button:hover svg line.cls-2,
.header-wrapper.search-open button svg circle.cls-2,.header-wrapper.search-open button svg line.cls-2{
  stroke:var(--link_color);
}

.header-wrapper .hs-search-field__input:focus {
  outline: none;
}
.search-open .hs-search-field__suggestions-container {
  display: block;
}
.header-wrapper .search-wrapper button svg {
  left: 0;
  opacity: 1;
  top: 0;
  margin-left: 0;
}
.hs-search-field__suggestions-container {
  position: absolute !important;
  left: auto;
  width: calc(100% - 245px) !important;
  right: 0;
  max-width: 100%;
  top: 100%;
  margin-top: 16px;
}
.header-wrapper .hs-search-field__suggestions {
  max-width: 426px;
  width: 100%;
  height: 415px;
  background-color: rgba(19, 28, 39,0.8);
  border-radius: 25px;
  padding:0;
  margin-left: -18px;
  overflow: hidden;
}
.header-wrapper .hs-search-field__suggestions li {
  color: #fff;
  font-size: 18px;
  line-height: normal;
  padding: 0;
  font-weight: 400;
  padding: 10px 30px 10px 30px !important;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: 0 !important;
}
/* .header-wrapper .hs-search-field__suggestions li:hover {
background-color: var(--primary_color);
} */
.header-wrapper .hs-search-field__suggestions li > a {
  background: unset;
  color: #fff;
}
.header-wrapper .hs-search-field__suggestions li a {
  color: #fff;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
  padding: 0;
}
.header-wrapper.fix-header .hs-search-field__input {
  color: #fff;
}
.custom-menu-primary .normal-dropdown:hover > .submenu-dropdown:before {
  content: "";
  width: 100%;
  display: block;
  height: 80px;
  position: absolute;
  top: -53px;
  left: auto;
  right: 0;
}
.custom-menu-primary .normal-dropdown {
  position: relative;
}
.custom-menu-primary .normal-dropdown .submenu-dropdown {
  padding: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  min-width:200px;

}
.custom-menu-primary .normal-dropdown .submenu-dropdown a {
  color: #fff;
  font-weight: 300;
  font-size: 17px;
  transition: all .3s ease-in-out;
  background: unset;
  line-height: normal;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.custom-menu-primary .normal-dropdown .submenu-dropdown a:hover {
  color: var(--link_color);
}
.custom-menu-primary .normal-dropdown .submenu-dropdown a:before {
  content: "";
  display: inline-flex;
  width: 8px;
  height: 8px;
  background: var(--link_color);
  border-radius: 50%;
  align-items: center;
  opacity: 0;
  transition: all .3s ease-in-out;  
  position: absolute;
  left: -8px;
}
.custom-menu-primary .normal-dropdown .submenu-dropdown a > span {
  margin-left: -8px;
  transition: all .3s ease-in-out;
}
.custom-menu-primary .normal-dropdown .submenu-dropdown a:hover span,
.custom-menu-primary .normal-dropdown .submenu-dropdown li.active a span{
  margin-left: 8px;
}
.custom-menu-primary .normal-dropdown .submenu-dropdown a:hover:before,
.custom-menu-primary .normal-dropdown .submenu-dropdown .hs-menu-item.active a:before{
  opacity: 1;
}
.custom-menu-primary .submenu-dropdown {
  border-radius: 15px;
}
/* mega menu  */
.main-navigation .mega-menu-wrapper, .custom-menu-primary .submenu-dropdown {
  background-color: rgba(19, 28,39,0.9);
  position: absolute;
  left: 0;
  width: 100%;
  top: auto;
  border-radius: 30px;
  padding:39px 40px 26px 40px;
  margin-top: 50px;
  bottom: auto;
  opacity: 0;
  transform: translate3d(0px, 0px, 0px) scale3d(0.8, 0.8, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.main-navigation .mega-menu-wrapper{
  overflow-x: hidden;
  overflow-y: auto;
  height:70vh;
  max-height: 511px;
}
.main-navigation .mega-menu{
  display: flex;
}
.header-wrapper .navigation-section {
  position: relative;
}
.main-navigation .mega-menu-wrapper:before {
  content: "";
  display: block;
  width: 75%;
  height: 80px;
  position: absolute;
  top: -53px;
  left: auto;
  right: 0;
}
.main-navigation .custom-menu-primary > ul > .hs-menu-item:hover .mega-menu-wrapper, 
.custom-menu-primary .normal-dropdown:hover > .submenu-dropdown {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  opacity: 1;
  pointer-events: auto;
}
.main-navigation .mega-menu .mega-menu-section {
  width: 25%;
}
.main-navigation .mega-menu-section ul.hs-menu-children-wrapper > li:last-child {
  margin-bottom: 14px;
}
.main-navigation .mega-menu h4 {
  color: var(--link_color);
  font-size: 16px;
  line-height: normal;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom:10px;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
.main-navigation .mega-menu h4 a{
  background: unset;
  font-weight: 700;
}
.main-navigation .mega-menu h4 a:hover:after {
  width: 100%;
}
.main-navigation .mega-menu h4 a:after {
  content: "";
  width: 0;
  height: 1px;
  transition: all 0.3s ease-in-out;
  display: block;
  background-color: var(--link_color);
  position: absolute;
  top: auto;
  bottom: 0;
}
.main-navigation .mega-menu-section ul ul > li,
.main-navigation .mega-menu-section ul ul > li > a{
  display: flex;
  align-items: center;
}
.main-navigation .mega-menu-section ul ul > li > a {
  font-size: 15px;
  line-height: 2.133;
}
.main-navigation .mega-menu-section ul > li > a {
  color: #fff;
  font-weight: 300;
  font-size: 17px;
  line-height: 2.1176;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all .3s ease-in-out;
  background: unset;
  width: auto;   
}
.main-navigation .hs-menu-wrapper > ul > li > a:before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  position: relative;
  left: 0;
  top: 0;
  transition: all .3s ease-in-out;
  border: 1px solid var(--link_color);
  border-radius: 50%;
  opacity: 0;
  margin-right: -8px;
}
.main-navigation .hs-menu-wrapper ul > li {
  position: relative;
}
.main-navigation .hs-menu-wrapper > ul > li > a:hover:before ,
.main-navigation .hs-menu-wrapper > ul > li.active > a:before{
  opacity: 1;
  left:0;
  margin-right: 10px;
}
.main-navigation .hs-menu-wrapper > ul > li > a:hover {
  color: var(--link_color);
}
.main-navigation .hs-menu-wrapper > ul > li > a:hover > span,
.main-navigation .hs-menu-wrapper > ul > li.active > a > span{
  margin-left:10px;
}
.main-navigation .mega-menu-section .sub-items {
  padding-left: 10px;
}
.main-navigation .mega-menu-section ul ul > li:before {
  content: "";
  width:6px;
  height: 6px;
  display: inline-block;
  position: relative;
  left: -15px;
  top: 0;
  transition: all .3s ease-in-out;
  background-color: var(--link_color);
  border-radius: 50%;
  opacity: 0;
}
.main-navigation .mega-menu .mega-menu-section:not(:first-child) {
  border-left: 1px solid #2f3945;
  padding-left: 25px;
}
.main-navigation .mega-menu-section ul ul > li > a {
  margin-left: -10px;
}
.main-navigation .mega-menu-section ul ul > li:hover > a,
.main-navigation .mega-menu-section ul ul > li.active > a{
  color: var(--link_color);
  margin-left: 10px;
}
.main-navigation .mega-menu-section ul ul > li:hover:before ,
.main-navigation .mega-menu-section ul ul > li.active:before {
  opacity: 1;
  left: 0;
}
.main-navigation .mega-menu-section ul {
  flex-direction: column;
}
.main-navigation .mega-menu-section ul.hs-menu-children-wrapper > li {
  padding-left: 10px;
}
.mega-menu-section .hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  position: static;
  opacity: 1;
  visibility: visible;
}
.main-navigation .mega-menu-section > ul > li > a {
  transition: all .3s ease-in-out;
}
.main-navigation .menu-heading {
  font-weight: 400;
  font-size: 16px;
  color: #a3b8d6;
  text-transform: uppercase;
  margin-bottom: 38px;
  letter-spacing: 2px;
  line-height: normal;
}

/* Search */

.header-wrapper .hs-search-field__input {
  display: block;
  position: absolute;
  left: auto;
  width: calc(100% - 245px) !important;
  right: 0;
  max-width: 100%;
  font-size: 18px;
  line-height: normal;
  font-weight: 500;
  border: 0;
  padding: 12px;
  padding-right: 100px;
  outline: none;
  top: 0;
  height: 100%;
  background-color: transparent;
  opacity: 0;
  transition: all .5s ease-in-out;
  pointer-events: none;
}
.header-wrapper .hs-search-field__input::placeholder {
  color: var(--link_color);
}
/* .no-banner .header-wrapper .hs-search-field__input::placeholder{
  color:#fff;
}
.no-banner .header-wrapper .hs-search-field__input{
  color:#fff;
} */
.header-wrapper.search-open .hs-search-field__input{
  opacity:1;
}
.header-wrapper.search-open .navigation-section{
  background-color: rgba(255, 255, 255, 0.8);
}

.header-wrapper.search-open form button {
  display: flex;
}

.header-wrapper.fix-header .navigation-section {
  background-color: rgba(55, 81, 114, 0.9);
}
.header-wrapper.search-open .custom-menu-primary {
  opacity: 0;
}
.header-wrapper.search-open .hs-search-field__input{
  pointer-events: auto;
}
.header-wrapper .hs-search-field__suggestions {
  border:0 !important;
  height: auto;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
.custom-menu-primary .normal-dropdown > .submenu-dropdown .submenu-dropdown {
  left: calc(100% + 20px);
  top: 0;
  margin: 0;
}

.main-navigation .custom-menu-primary>ul.menu>li>a > span {
  transition: all .3s ease-in-out;
}
header.header-wrapper.fix-header .header-container{
  background-image: -moz-linear-gradient( -90deg,#131c27,rgba(3,5,15,.5) 47%,rgba(5,8,24,0) 75%,rgba(5,9,28,0) 86%,rgba(6,11,32,0));
  background-image: -webkit-linear-gradient( -90deg,#131c27,rgba(3,5,15,.5) 47%,rgba(5,8,24,0) 75%,rgba(5,9,28,0) 86%,rgba(6,11,32,0));
  background-image: -ms-linear-gradient( -90deg,#131c27,rgba(3,5,15,.5) 47%,rgba(5,8,24,0) 75%,rgba(5,9,28,0) 86%,rgba(6,11,32,0));
}
.no-banner .header-wrapper .navigation-section {
  background-color: rgba(55, 81, 114, 1);
}
.no-banner .header-wrapper.search-open:not(.fix-header) .navigation-section {
	background-color:hsla(0,0%,90%,1);
}
@media(min-width:992px){
  .header-wrapper button.slide-menu-control,
  .mobile-navigation{
    display:none;
  }
  .custom-menu-primary li.hs-menu-item.hs-sub-menu:not(.normal-dropdown):after {
    width: 70%;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    left: auto;
    right: 0;
    top: 90%;
    pointer-events: none;
  }
  .custom-menu-primary li.hs-menu-item.hs-sub-menu:not(.normal-dropdown):hover:after {
    pointer-events: all;
  }
  .header-wrapper .child-trigger {display:none;}
/*   header.header-wrapper.fix-header .header-container{
    background-image: -moz-linear-gradient( -90deg, rgb(0,0,0) 0%, rgba(3,5,15,0.5) 47%, rgba(5,8,24,0) 75%, rgba(5,9,28,0) 86%, rgba(6,11,32,0) 100%);
    background-image: -webkit-linear-gradient( -90deg, rgb(0,0,0) 0%, rgba(3,5,15,0.5) 47%, rgba(5,8,24,0) 75%, rgba(5,9,28,0) 86%, rgba(6,11,32,0) 100%);
    background-image: -ms-linear-gradient( -90deg, rgb(0,0,0) 0%, rgba(3,5,15,0.5) 47%, rgba(5,8,24,0) 75%, rgba(5,9,28,0) 86%, rgba(6,11,32,0) 100%);
  } */
}

@media(max-width:1340px){
  .main-navigation .custom-menu-primary > ul.menu > .hs-menu-item:not(:last-child) {
    margin-right: 15px;
  }
  .main-navigation .custom-menu-primary > ul.menu > li > a {
    font-size: 16px;
  }
}
@media(max-width:1200px){
  .main-navigation .custom-menu-primary > ul.menu > .hs-menu-item:not(:last-child) {
    margin-right: 15px;
  }

  .header-wrapper .navigation-section {
    column-gap: 25px;
  }

  .main-navigation .custom-menu-primary > ul.menu > li > a {
    font-size: 14px;
  }

  .main-navigation .mega-menu-section ul > li > a,.custom-menu-primary .normal-dropdown .submenu-dropdown a {
    font-size: 14px;
  }

  .main-navigation .mega-menu-section ul ul > li > a {
    font-size: 13px;
  }

}


@media(max-width:991px){
  .header-wrapper .header-top .hs-menu-wrapper {
    padding-left: 0;
    padding-right:15px;
  }

  nav.main-navigation{
    display:none;
  }
  .header-wrapper .slide-menu-control {
    padding: 0px;
    width: 26px;
    height: 18px;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    /* margin-top: 8px; */
    cursor: pointer;
    display: block;
    overflow: visible;
    border: 0;
  }
  .header-wrapper .mobile-navigation {
    position: fixed;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    top: 156px;
    right: 0;
    left: 0;
    overflow: hidden;
    box-sizing: border-box;
    background:#375172;
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
    -webkit-transform:translateX(-100%);
    transform:translateX(-100%);
    will-change: transform;
    z-index: 1020; 
    height:100vh;
    max-width: 100%;
    overflow: hidden;
    overflow-y: auto;
  }
  .header-wrapper .slide-menu-control span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin-bottom: 4px;
    border-radius: 1px;
    transition: 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
    position: relative;
  }
  .header-wrapper .slide-menu-control:hover span {
    width: 30px;
  }
  .header-wrapper .slide-menu-control:hover span:nth-of-type(2n) {
    width: 15px;
  }
  .header-wrapper .navigation-section {
    display: flex;
    align-items: center;
  }
  .header-wrapper .logo a {
    top:-3px;
  }
  .mobile-open .header-wrapper .mobile-navigation {
    transform: translateX(0%);
    /*     overflow: visible; */
  }
  .mobile-open .header-wrapper .slide-menu-control span,.mobile-open .header-wrapper .slide-menu-control:hover span {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 5px;
    width: 25px;
  }
  .mobile-open .header-wrapper .slide-menu-control span:nth-of-type(2n), 
  .mobile-open .header-wrapper .slide-menu-control:hover span span:nth-of-type(2n){
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: -1px;
  }
  .header-wrapper .mobile-navigation .hs-menu-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    will-change: transform;
    padding: 0;
    /*     overflow: hidden; */
  }
  .header-wrapper .mobile-navigation .hs-menu-wrapper > ul {
    padding-left: 0;
    list-style: none;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    /*     background-color: #fff; */
    flex-direction: column;
    align-items: flex-start;
    pointer-events: auto;
  }
  .header-wrapper .mobile-navigation .hs-menu-wrapper  ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .header-wrapper .mobile-navigation .hs-menu-wrapper ul > li {
    border-bottom: solid 1px #dae2ec;
    padding: 0;
    width: 100%;background-color: #fff;
  }
  .header-wrapper .mobile-navigation .hs-menu-wrapper  ul > li > a {
    display: block;
    padding: 16px 20px 16px 20px;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    color: var(--link_color);
    text-transform: capitalize;
    background: unset;
  }
  .header-wrapper .mobile-navigation .hs-menu-wrapper ul ul {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
  }
  .mobile-navigation .hs-item-has-children {
    position: relative;
  }
  .header-wrapper .mobile-navigation .hs-menu-wrapper ul > li.hs-item-has-children > a {
    display: flex;
    justify-content: space-between;
  }
  .header-wrapper .mobile-navigation .hs-menu-wrapper ul > li.hs-item-has-children > a svg,
  .header-wrapper .mobile-navigation .hs-menu-wrapper ul>li.dl-back >a > svg{
    width: 20px;
    height: 20px;
  }
  .header-wrapper .mobile-navigation .hs-menu-wrapper ul>li.dl-back >a > svg {
    display: inline-block;
    transform: rotate(180deg);
    margin-right: 10px;
    margin-left: -5px;
  }
  .header-wrapper .mobile-navigation .hs-menu-wrapper ul>li.dl-back >a > svg path {
    fill: #99aad5;
  }
  .mobile-navigation .hs-item-has-children > a {
    display: flex !important;
    justify-content: space-between;
  }
  /*   DL Back */
  .mobile-navigation .custom-menu-primary  ul {
    margin:  0;
    padding: 0;
    list-style: none;
  }
  .mobile-navigation ul.hs-menu-children-wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    transform: translateX(100%);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
    left:0;
    right: 0;
    z-index: 1000;
    transform-origin: top right;
  }
  .mobile-navigation .parent-wrapper{  
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  }
  .mobile-navigation ul.hs-menu-children-wrapper.child-open {
    transform:  translateX(0);
    left: 0;
  }
  .mobile-navigation li.hs-item-has-children:last-child {
    margin-bottom:  0;
  }
  .mobile-navigation ul.after-child-open {
    transform: translateX(-100%);
    transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  }
  .header-wrapper .mobile-navigation .hs-menu-wrapper ul {
    /*     background-color: #fff; */
    opacity:1;
  }
  .header-wrapper .mobile-navigation .hs-menu-wrapper ul>li.dl-back >a {
    color: #99aad5;
  }
  .mobile-navigation button.search-btn {
    display: none;
  }
  .mobile-navigation input.hs-search-field__input {
    background-color: #375172;
    max-width: 100%;
    opacity: 1;
    position: static;
    width: 100% !important;
    pointer-events: auto;
    color: #fff;
  }
  .mobile-navigation .search-wrapper {
    width: 100%;
  }
  .mobile-navigation input.hs-search-field__input::placeholder{
    color:#fff;
  }
  .mobile-navigation .search-wrapper form button {
    display: flex !important;
    width: 72px;
    height: auto;
    align-items: center;
    justify-content: center;
    padding: 5px;
    cursor: pointer;
  }
  .mobile-navigation .search-wrapper form {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
  }
  .mobile-navigation .search-wrapper {
    background-color: #375172;
  }
  .mobile-navigation .search-wrapper form button svg {
    width:30px;
    height:30px;
  }
  input[type="search"]::-webkit-search-decoration,
  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-results-button,
  input[type="search"]::-webkit-search-results-decoration {
    display: none;
  }
  .hs-search-field__suggestions-container {
    display: block;
  }
  .header-wrapper .mobile-navigation .hs-search-field__suggestions-container ul {
    display: block !important;
    left: 0 !important;
    height:auto;
  }
  .dropdown-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 100%;
    pointer-events: none;
    min-height: 620px;
  }
  .dropdown-wrapper.parent-child {
    left: 0;
  }
  .header-wrapper .mobile-navigation .hs-menu-wrapper ul{
    pointer-events: auto;
  }
  .header-wrapper .slide-menu-control span:last-child {
    margin-bottom: 0;
  }
  .mobile-navigation input.hs-search-field__input {padding-left: 20px;}
  .mobile-navigation .search-wrapper form button {
    padding-right: 0px;
  }
  .mobile-navigation input.hs-search-field__input {
    padding-right: 0;
  }
  .header-wrapper .header-top {
    padding: 15px;
  }
  .header-wrapper .header-container > .hs_cos_wrapper_widget {
    display: none;
  }
  .header-wrapper .content-wrapper {
    padding-top: 35px;
  }
  .header-wrapper .header-top {
    padding: 0;
    width: 100%;
  }
  .header-wrapper .mobile-navigation .header-top .hs-menu-wrapper  ul {
    display: block;
    position: static;
    background-color: #375172;
    width: 100%;
  }

  .header-wrapper .mobile-navigation .header-top .hs-menu-wrapper {
    position: static;
    transform: unset;
  }
  .header-wrapper .header-top .content-wrapper {
    display: block;
    padding: 0;
  }
  .header-wrapper .header-top .hs-menu-wrapper>ul>li {
    padding: 16px 20px !important;
    border: 0;
    background-color: transparent;
  }
  .header-wrapper .header-top .hs-menu-wrapper>ul>li>a {
    background:unset !important;
    display: inline-block;
    padding: 0;
  }
  .header-wrapper .mobile-navigation .hs-menu-wrapper ul>li {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-wrapper .child-trigger {
    width: 50px;
    height: 100%;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
    cursor: pointer;
  }
  .header-wrapper .child-trigger svg {
    height: 20px;
    width: 20px;
  }
  .header-wrapper .mobile-navigation .hs-menu-wrapper ul>li>a {
    width: 100%;
  }
  li.dl-back {
    display: inline-flex;
    flex-direction: row-reverse;
  }
  .header-wrapper li.dl-back .child-trigger {
    padding: 14px 0 14px 14px;
    justify-content: flex-start;
    width: 40px;
  }
  li.dl-back > a {
    padding-left: 0 !important;
  }
  .header-wrapper li.dl-back .child-trigger svg {
    transform: rotate(-180deg);
    fill: #99aad5;
  }
  .header-wrapper li.dl-back .child-trigger svg path {
    fill: #99aad5;
  }

}
@media(max-width:540px){
  .header-wrapper .logo a img {
    max-width:100px !important
  }
  .header-wrapper .navigation-section {
    padding: 15px 25px;
  }
  .header-wrapper .header-container {
    min-height: 50px;
  }
  .header-wrapper .header-container .navigation-section {
    height: 50px;
  }
  .header-wrapper .mobile-navigation {
    top: 120px;
  }
  .header-wrapper .hs-menu-wrapper>ul {
    flex-wrap: wrap;
  }

}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
/* 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;
  }
}