/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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

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

@font-face {
    font-family: 'Verb';
    src: url('https://www.neamgroup.com/hubfs/fonts/30A18B_0_0.eot');
    src: url('https://www.neamgroup.com/hubfs/fonts/30A18B_0_0.eot#iefix') format('embedded-opentype'),
         url('https://www.neamgroup.com/hubfs/fonts/30A18B_0_0.woff2') format('woff2'),
         url('https://www.neamgroup.com/hubfs/fonts/30A18B_0_0.woff') format('woff'),
         url('https://www.neamgroup.com/hubfs/fonts/30A18B_0_0.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Verb';
    src: url('https://www.neamgroup.com/hubfs/fonts/30A18B_1_0.eot');
    src: url('https://www.neamgroup.com/hubfs/fonts/30A18B_1_0.eot#iefix') format('embedded-opentype'),
         url('https://www.neamgroup.com/hubfs/fonts/30A18B_1_0.woff2') format('woff2'),
         url('https://www.neamgroup.com/hubfs/fonts/30A18B_1_0.woff') format('woff'),
         url('https://www.neamgroup.com/hubfs/fonts/30A18B_1_0.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Verb';
    src: url('https://www.neamgroup.com/hubfs/fonts/30B49F_0_0.eot');
    src: url('https://www.neamgroup.com/hubfs/fonts/30B49F_0_0.eot#iefix') format('embedded-opentype'),
         url('https://www.neamgroup.com/hubfs/fonts/30B49F_0_0.woff2') format('woff2'),
         url('https://www.neamgroup.com/hubfs/fonts/30B49F_0_0.woff') format('woff'),
         url('https://www.neamgroup.com/hubfs/fonts/30B49F_0_0.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

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

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

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  position: relative;
    overflow: hidden;
  transition: all 350ms ease-in-out;
      align-items: center;
    gap: 6px;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}
.cta-group{
margin-top:36px;
}
.cta__button.sm a{
    padding: 12px 20px;
    font-size: 16px;
}
.cta__button.cta__button--btn-primary.sm a,
.cta__button.cta__button--btn-secondary.sm a{
    padding: 14px 20px;
}
.cta__link {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  position: relative;
  overflow: hidden;
  transition: all 350ms ease-in-out;
    display: inline-flex;
  text-align: center;
      gap: 6px;
    align-items: center;
}
.cta__link .btn-txt,
.cta__link svg{
  position: relative;
}
.cta__button {
    display: inline-flex;
}
a.cta__link::before,
button::before,
.button::before,
.hs-button::before{
  content: "";
  position: absolute;
  inset: -5px;
  transform: translate(-100%, -50%);
  transition: transform 350ms ease-in-out;
  z-index: 0;
  height: 110%;
  width: 200%;
  top: 50%;
  border-radius: 1000px;
}

a.cta__link:hover::before,
button:hover::before,
.button:hover::before,
.hs-button:hover::before{
  transform: translateX(-25%) translateY(-50%);
}

a.cta__link:active::before,
button:active::before,
.button:active::before,
.hs-button:active::before{
  transform: translateX(-25%) translateY(-50%);
}

/* No button */

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

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

/* Labels */

form label {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 2px;
}

/* 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;
  font-size: 1rem;
  padding: 10px 12px;
  width: 100%;
  min-height: 44px;
}

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: #F32121 !important;
}

.hs-input.invalid.error {
  border-color: #F32121 !important;
}

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

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  font-family: Verb;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  padding: 0;
  background: transparent !important;
}
.hs_submit.hs-submit {
  margin-top: 36px;
}
/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
fieldset.form-columns-1 .hs-input {
  width: 100% !important;
}

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


.contact-banner-wrp .hbspt-form, .hs_cos_wrapper_type_form, .hs_cos_wrapper_type_blog_subscribe, .hs_cos_wrapper_type_google_search, .hs_cos_wrapper_type_email_simple_subscription, .hs_cos_wrapper_type_password_prompt, .hs_cos_wrapper_type_module .widget-type-email_subscriptions, .hs_cos_wrapper_type_member_login, .hs_cos_wrapper_type_member_register, .hs_cos_wrapper_type_password_reset_request, .hs_cos_wrapper_type_password_reset {
  box-shadow: 0px 12px 36px 0px #002B461A;
  padding:24px;
  text-align:left;
  display: block;
}
form input[type=text]::placeholder,
form input[type=search]::placeholder,
form input[type=email]::placeholder,
form input[type=password]::placeholder,
form input[type=tel]::placeholder,
form input[type=number]::placeholder,
form input[type=file]::placeholder,
form select::placeholder,
form textarea::placeholder{
  color: #002B46;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  opacity: .66;
}
li.hs-form-radio label {
  display: flex;
  align-items: center;
}

form input[type=radio] {
  accent-color: #4D88AE;
  width: 16px !important;
  height: 16px;
  max-width: 16px;
}

li.hs-form-radio label span {
  color: var(--primary);
  font-size: 16px;
  line-height: 1.5;
}
.actions{
  overflow:hidden
}
.actions::before {
  content: "";
  position: absolute;
  inset: -5px;
  transform: translate(-100%, -50%);
  transition: transform 350ms ease-in-out;
  z-index: 0;
  height: 110%;
  width: 200%;
  top: 50%;
  border-radius: 1000px;
}

.actions:hover:before {
  transform: translateX(-25%) translateY(-50%);
}
form textarea{
  min-height: 96px !important;
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M4.71146 5.58958L0 0.878126L0.878125 0L4.71146 3.83333L8.54479 0L9.42292 0.878126L4.71146 5.58958Z' fill='%23002B46'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 10px 6px;
}
@media (max-width:767px){
  form:not(.hs-video-form) .form-columns-2 .hs-form-field, form:not(.hs-video-form) .form-columns-3 .hs-form-field {
    float: none !important;
    width: 100% !important;
  }

  fieldset .input {
    margin-right: 0 !important;
  }
  .hs-input{
    width: 100% !important;
  }
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

tfoot td, thead th {
    font-family: Verb;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
}
tbody td{
font-weight: 400;
font-size: 16px;
line-height: 1.5;
}
/* Table header */

thead th {
  vertical-align: bottom;
}

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

header.header {
  position: relative;
  z-index: 99;
  box-shadow: 0px 0px 16px 0px #002B461A;

}
header.header .header__logo.header__logo--main {
  max-width: 286px;
  width: 25%;
}
header.header .header__logo.header__logo--main a {
  display: flex;
  padding: 12px 0;
}
header.header .header__container.content-wrapper {
  max-width: 1368px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}
header.header ul.header-submenu>li:not(:last-child) {
  margin-bottom: 16px;
}
header.header .header-mega-menu-wrapper .header-mega-menu-left h5 {
  margin-bottom: 12px;
  color: #002B46;
}
header.header .header-mega-menu-wrapper .cta-group.header-mega-menu__header-cta-custom {
  margin-top: 24px;
}
header.header .header-mega-menu-wrapper .header-mega-menu-left-description>p:last-child {
  margin: 0;
}
header.header .header-mega-menu-wrapper .header-mega-menu-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
header.header .header-mega-menu-wrapper .header-mega-menu-right ul a {
  text-decoration: none;
  display: block;
  padding: 12px;
}
header.header .header-mega-menu-wrapper p.heading {
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #00558B;
}
header.header .header-mega-menu-wrapper .description.text-small p {
  color: #1A1A1AA8;
}
header.header .header-mega-menu-wrapper .description.text-small p:last-child {
  margin: 0;
}
header.header .header-mega-menu-wrapper ul.two-column-sub-menu li {
  width: 50%;
}
header.header .header-mega-menu-wrapper .description.text-small p {
  font-size: 14px;
}
header.header .header-mega-menu-wrapper.type-blog_card .header-mega-menu-left {
  background: #fff;
}
header.header .header-mega-menu-wrapper.type-blog_card .header-mega-menu-left {
  background: #fff;
}
header.header .header-card-item {
  border-radius: 12px;
  background: #F2F7F9;
  position: relative;
  padding: 24px;
  height: 100%;
  overflow: hidden;
}
header.header .header-card-item:after {
  content: '';
  height: 6px;
  position: absolute;
  left: 0;
  top: 0;
  background: #FDB515;
  width: 100%;
}
header.header p.blog-card-heading {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #002B46;
  margin-bottom: 16px;
}
header.header p.blog-card-description {
  margin-bottom: 12px;
}
header.header .header-card-item a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .2s ease;
}
header.header .header-card-item a:hover {
  gap: 12px;
}
header.header .top-header {
  padding: 8px 0;
}
header.header .top-header .header__container.content-wrapper>div {
  width: 100%;
}
header.header .top-header .top-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header.header .top-header .top-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header.header .top-header .lang-switcher {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 2px solid #002B4633;
}
header.header .top-header .top-menu a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  text-decoration: none;
}
header.header .top-header .lang-switcher-inner {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #3377A2;
  overflow: hidden;
}
header.header .top-header .lang-switcher-inner a {
  display: inline-block;
  padding: 5px 14px;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  color: #3377A2;
  border-radius: 8px;
}
header.header .top-header .lang-switcher-inner a.active {
  background: #3377A2;
  color: #fff;
}
header.header .top-header .lang-switcher-inner a:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
header.header .top-header .lang-switcher-inner a:last-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
@media (min-width:1025px){
  header.header .header-toggle {
    display: none;
  }
  header.header  .header-mega-menu-wrapper.one-column-sub-menu {
    max-width: 714px;
    gap: 0;
    left: 60%;
  }
  header.header .header-mega-menu-wrapper.one-column-sub-menu .header-mega-menu-left {
    width: 45%;
    padding-right: 0;
  }
  header.header .header-mega-menu-wrapper.one-column-sub-menu .header-mega-menu-right {
    width: 55%;
  }
  header.header nav.header-mega-menu.header_mega_menu {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: flex-end;
  }
  header.header .cta-group.header-mega-menu__header-cta {
    margin: 0;
    padding: 12px 0;
  }
  header.header ul.header-menu>li.position-relative {
    z-index: auto;
  }
  header.header ul.header-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 32px;
  }
  header.header ul.header-menu>li>a {
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .2s ease;
  }
  header.header ul.header-menu>li>a svg {
    margin-right: 5px;
  }
  header.header ul.header-submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 24px;
    box-shadow: 0px 6px 24px 0px #08192C26;
    background: #FFFFFF;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    padding: 24px;
    position: absolute;
    top: 100%;
    z-index: 1000;
    width: max-content;
    left: 0;
  }
  header.header ul.header-menu>li:hover>a {
    padding-top: 22px;
    padding-bottom: 6px;
  }
  header.header ul.header-menu>li:hover>a svg path {
    color: inherit;
  }
  header.header ul.header-menu>li:hover>ul {
    display: block;
  }
  header.header ul.header-menu>li {
    padding: 12px 0;
  }
  header.header ul.header-submenu a {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: #00558B;
    text-decoration: none;
  }
  header.header .header__column-mobile.visible-mobile {
    display: none;
  }
  header.header .header-child-trigger {
    display:none;
  }
  header.header .header-mega-menu-wrapper {
    display: none;
    list-style: none;
    margin: 0;
box-shadow: 0 8px 24px -6px rgba(8, 25, 44, 0.15);
    background: #FFFFFF;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    position: absolute;
    top: 100%;
    z-index: 1000;
    width: calc(100% - 40px);
    left: 50%;
    max-width: 1072px;
    transform: translateX(-50%);
    overflow: hidden;
    min-height: 289px;

  }
  header.header ul.header-menu>li:hover>.header-mega-menu-wrapper {
    display: flex;
  }
  header.header .header-mega-menu-wrapper .header-mega-menu-right {
    padding: 24px;
    width: 66.6%;
  }
  header.header .header-mega-menu-wrapper .header-mega-menu-left {
    padding: 24px;
    background: #F2F7F9;
    width: 33.4%;
  }
  header.header ul.header-menu>li:hover:before {
    background: transparent;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 70%;
    left: 0;
  }
  header.header .header-mobile-button {
    display: none;
  }
}
@media (min-width:1025px) and (max-width:1200px){
  header.header ul.header-menu {
    gap: 20px;
  }
  header.header nav.header-mega-menu.header_mega_menu {
    gap: 20px;
  }
}
@media (max-width:1024px){
  header.header .header-toggle svg.close {
    display: none;
  }
  header.header .header__column {
    display: none;
  }
  header.header .header-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 8px;
    background: #E5EEF3;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  header.header .header__logo.header__logo--main {
    max-width: 223px;
    width: 100%;
  }
  header.header .header-toggle.open .open {
    display: none;
  }
  header.header .header-toggle.open svg.close {
    display: block;
  }
  header.header .header__logo.header__logo--main a {
    padding: 0;
  }
  header.header .bottom-header {
    padding: 12px 0;
  }
  header.header.open {
    background: #FFFFFF;
    position: fixed;
    width: 100%;
  }
  header.header .header-wrapper {
    box-shadow: 0px 0px 16px 0px #002B4612;
    position: relative;
    z-index: 100;
  }
  header.header .header__column-mobile {
    position: absolute;
    top: 100%;
    z-index: 99;
    background: #fff;
    height: calc(100vh - 120px);
    left: 0;
    width: 100%;
    padding: 72px 1rem;
    display: none;
    overflow-x: auto;
  }
  header.header nav.header-mega-menu.header_mega_menu {
    max-width: 573px;
    margin: 0 auto;
    flex-direction: column;
    align-items: flex-start;
  }
  header.header .cta-group.header-mega-menu__header-cta {
    width: 100%;
  }
  header.header .cta__button, header.header .cta__button a {
    width: 100%;
    display:block;
  }
  header.header ul.header-menu {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }
  header.header ul.header-menu>li {
    width: 100%;
  }
  header.header ul.header-menu>li>a {
    width: 100%;
    justify-content: space-between;
  }
  header.header.open .header__column-mobile {
    display: block;
  }
  header.header .header__column.visible-desktop {
    display: none;
  }
  header.header ul.header-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 32px;
  }
  header.header ul.header-menu>li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  header.header ul.header-menu>li a {
    display: flex;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    text-decoration: none;
  }
  header.header ul.header-menu>li>a svg {
    display: none;
  }
  header.header .header-mega-menu-wrapper {
    width: 100%;
  }
  header.header .header-child-trigger {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  header.header ul.header-menu>li>a {
    width: calc(100% - 20px);
  }
  header.header .header-mega-menu-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 350ms ease-in-out;
  }
  header.header .header-mega-menu-wrapper.type-custom>div:last-child{
    margin-top:12px;
    margin-bottom:32px;
  }
  header.header .header-mega-menu-wrapper.type-blog_card {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
  }
  header.header .header-mega-menu-wrapper.type-blog_card>div:last-child{
    margin-top:12px;
  }
  header.header .header-mega-menu-wrapper.type-blog_card>div:first-child{
    margin-bottom:32px;
  }
  header.header .header-mega-menu-wrapper.type-custom .header-mega-menu-left {
    display: none;
  }
  header.header .header-mega-menu-wrapper ul.two-column-sub-menu li {
    width: 100%;
  }
  header.header ul.header-menu>li.active .header-mega-menu-wrapper {
    border-bottom: 2px solid #00558B;
  }
  header.header .cta-group.header-cta-mobile-custom {
    margin-top: 12px;
  }
  header.header .cta-group.header-cta-mobile-custom a {
    justify-content: center;
  }
  header.header  ul.header-submenu li a {
    text-decoration: none;
    display: block;
    padding: 12px;
  }
  header.header ul.header-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 350ms ease-in-out;
  }
  header.header ul.header-submenu li {
    margin: 0 !important;
  }
}
footer.footer .footer-bottom {
  padding: 24px 0 32px;
}
footer.footer .footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
footer.footer ul.social-links-footer {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
footer.footer ul.social-links-footer img {
  width: 32px;
  min-width: 32px;
}
footer.footer .footer-bottom .hs-menu-wrapper>ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px 24px;
}
footer.footer .footer-bottom .hs-menu-wrapper>ul a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  text-decoration: none;
}
footer.footer .footer-bottom-right {
  text-align: right;
}
footer.footer .footer-bottom-copyright {
  margin-top: 12px;
}
footer.footer .footer-bottom-copyright {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
footer.footer .footer-top-row {
  display: flex;
  gap: 48px;
}
footer.footer .footer-top {
  padding: 48px 0;
  position:relative;
}

footer.footer .footer-left-column {
  width: 33.3%;
}
footer.footer .footer-right-column {
  width: 66.6%;
}
footer.footer .footer-form {
  margin-top: 92px;
}
footer.footer .footer-top .hs-menu-wrapper>ul>li {
  width: calc(25% - 18px);
}
footer.footer .footer-top .hs-menu-wrapper>ul {
  gap: 24px;
  display: flex;
}
footer.footer .footer-top .hs-menu-wrapper>ul>li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  text-decoration: none;
}
footer.footer .footer-top ul.hs-menu-children-wrapper {
  gap: 16px;
  margin-top: 16px;
}
footer.footer .footer-top .hs-menu-wrapper>ul>li>a {
  cursor: default;
}
footer.footer ul.social-links-footer a {
  display: flex;
}
footer.footer .footer-form form {
  display: flex;
  align-items: center;
  position: relative;
}
footer.footer .footer-form .hs_cos_wrapper_type_form {
  padding: 0;
  background: transparent;
  box-shadow: none;
}
footer.footer .footer-form .hs_submit.hs-submit {
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
}
footer.footer .footer-form .hs_email {
  width: 100%;
  margin-bottom:0;
}
footer.footer .footer-form .hs_submit.hs-submit input {
  padding: 13px 20px;
}
footer.footer .footer-form .hs_email input {
  min-height: 49px !important;
  padding-right: 105px !important;
}
footer.footer .footer-form .hs_email>label {
  display: none;
}
footer.footer .footer-form .form-heading {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}
footer.footer .footer-logo a {
  display: flex;
}
footer.footer .footer-top .back-to-top {
  position: absolute;
  right: 24px;
  bottom: 24px;
  height: 44px;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  border-radius: 12px;
  padding: 15px;
  width: 44px;
  display: flex;
  align-items: center;
}
footer.footer .footer-top .back-to-top.show {
  opacity: 1;
  visibility: visible;
}
footer.footer .footer-bottom-content {
  padding: 32px 0 0;
  border-top: 1px solid #3377A2;
  margin-top: 32px;
}
footer.footer .footer-bottom-content p:last-child {
  margin: 0;
}
footer.footer .footer-bottom-content p {
  font-size: 14px;
}
footer.footer ul.social-links-footer a:hover {
    opacity: .8;
}
@media (max-width:1024px){
  footer.footer .footer-top .hs-menu-wrapper>ul>li {
    width: calc(50% - 12px);
  }
  footer.footer .footer-top .hs-menu-wrapper>ul {
    row-gap: 16px;
  }
  footer.footer .footer-left-column {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  footer.footer .footer-right-column {
    width: 50%;
  }
  footer.footer .footer-bottom-content p:first-child {
    margin-bottom: 11px;
  }
  footer.footer .footer-top ul.hs-menu-children-wrapper {
    gap: 16px;
    margin-top: 17px;
  }
  footer.footer .footer-top .hs-menu-wrapper>ul li {
    line-height: 1.3;
  }
}
@media (max-width:767px){
  footer.footer .footer-top-row {
    flex-direction: column-reverse;
  }
  footer.footer .footer-right-column {
    width: 100%;
  }
  footer.footer .footer-left-column {
    width: 100%;
  }
  footer.footer .footer-top .back-to-top {
    display: none;
  }
  footer.footer .footer-bottom-row {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  footer.footer .footer-bottom-right {
    text-align: center;
  }
  footer.footer .footer-bottom .hs-menu-wrapper>ul {
    row-gap: 24px;
  }
  footer.footer .footer-bottom-copyright {
    margin-top: 24px;
  }
  footer.footer .footer-bottom {
    padding-top: 36px;
  }
  footer.footer .footer-bottom .hs-menu-wrapper>ul li {
    line-height: 1.4;
  }
  footer.footer .footer-form {
    margin-top: 36px;
  }
  footer.footer .footer-logo {
    text-align: center;
  }
  footer.footer .footer-logo a {
    justify-content: center;
  }
  footer.footer .footer-top .hs-menu-wrapper>ul {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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

.border-shap {
  position: relative;
  margin-bottom: 36px;
  width: max-content;
  display: flex;
  align-items: center;
}
span.border-item {
  height: 6px;
  width: 64px;
}
.position-relative {
  position: relative;
  z-index: 2;
}
.cta-group{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.custom-width {
  margin: 0 auto;
}
a.popup-video svg {
  backdrop-filter: blur(10px);
  border-radius: 50%;
}
@media (min-width:1025px){
  .text-left .border-shap {
    margin-left: 0;
    margin-right: auto;
  }
  .text-center .border-shap {
    margin-left: auto;
    margin-right: auto;
  }
  .text-right .border-shap {
    margin-left: auto;
    margin-right: 0;
  }
  .text-left {
    text-align: left;
  }
  .text-center {
    text-align: center;
  }
  .text-right {
    text-align: right;
  }
  .text-center .cta-group {
    justify-content: center;
  }
  .text-right .cta-group {
    justify-content: flex-end;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .text-tablet-left .border-shap {
    margin-left: 0;
    margin-right: auto;
  }
  .text-tablet-center .border-shap {
    margin-left: auto;
    margin-right: auto;
  }
  .text-tablet-right .border-shap {
    margin-left: auto;
    margin-right: 0;
  }
  .text-tablet-left {
    text-align: left;
  }
  .text-tablet-center {
    text-align: center;
  }
  .text-tablet-right {
    text-align: right;
  }
  .text-tablet-left .cta-group {
    justify-content: flex-start;
  }
  .text-tablet-center .cta-group {
    justify-content: center;
  }
  .text-tablet-right .cta-group {
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .text-mobile-left .border-shap {
    margin-left: 0;
    margin-right: auto;
  }
  .text-mobile-center .border-shap {
    margin-left: auto;
    margin-right: auto;
  }
  .text-mobile-right .border-shap {
    margin-left: auto;
    margin-right: 0;
  }
  .text-mobile-left {
    text-align: left;
  }
  .text-mobile-center {
    text-align: center;
  }
  .text-mobile-right {
    text-align: right;
  }
  .text-mobile-left .cta-group {
    justify-content: flex-start;
  }
  .text-mobile-center .cta-group {
    justify-content: center;
  }
  .text-mobile-right .cta-group {
    justify-content: flex-end;
  }
}

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