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

/* 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-container {
  margin:0 auto;
  padding:0 1.563rem;
  max-width:120rem; 
}

.content-container--medium {
  max-width:90rem; 
}

.content-container--small {
  max-width:60rem; 
}

.content-container--events {
  max-width:80rem;
}

@media(min-width:80rem) {
  .content-container {
    padding:0 3.125rem;
  }
  
  .content-container--fluid {
    padding:0;
  }
  
  .content-container--events {
    padding:20px;
  }
}

@media(min-width:90.375rem) {
  .content-container {
    padding:0 6.25rem;
  }
  
  .content-container--fluid {
    padding:0;
  }
  
  .content-container--events {
    padding:20px;
  }
}

.dnd-section, .content-wrapper--vertical-spacing {
  padding:0 !important;  
}

.dnd-section .dnd-column {
  padding:0 !important;  
}

body .dnd_area-row-1-padding {
    padding-top: 26px !important;
}

body .dnd_area-row-2-padding {
  padding-top: 20px !important;
}

.body-container-wrapper {
  padding-top:145px;  
}

@media (max-width: 79.938rem) {
  .body-container-wrapper {
    padding-top:90px;  
  }
}

.blog-post__tag-link[class^='audience-'], 
.blog-post__tag-link[class*=' audience-'], 
.blog-post__tag-link[href*='audience-']{
  display:none !important;
}
.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 HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

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

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

.visually-hidden:not(:focus):not(:active) {
  clip: rect(0 0 0 0); 
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; 
  width: 1px;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  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;
}

.updates__icon-arrow--link {
  display: flex;
}

.updates__icon-arrow--wrap {
  width: 32px;
  margin-left: 5px;
  overflow: hidden;
}

.updates__icon-arrow--wrap .updates__icon-arrow--new {
  width:22px;
  height:22px;
  fill:#2154BF;
  margin-left:-5px;
  display:inline-block;
  /*transform:translateX(0);*/
  vertical-align: top;
/*   margin-top: 50%;
  transform: translate(0, -70%);   */
  transform: translateX(0); 
  transition:transform .3s;
}

a.extended-banner__link-list-item-link:hover,
a.extended-banner__link-list-item-link:focus,
a.extended-banner__link-list-item-link:active {
  color: #002060;
}

a:hover .updates__icon-arrow--wrap .updates__icon-arrow--new,
a:focus .updates__icon-arrow--wrap .updates__icon-arrow--new,
a:active .updates__icon-arrow--wrap .updates__icon-arrow--new {
  fill: #002060;
/*   transform: translate(10px, -70%);   */
  transform: translateX(10px); 
}

a {
  color: #2154bf;
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  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;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

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 {
  color: #EF6B51;
  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;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

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

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

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

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

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* Header DND sections */

.site-header {
  position:fixed;
  top:0;
  z-index:999;
  background-color:#fff;
  box-shadow:0 0 0 #d2d2d2;
  transition:box-shadow .3s;
  width:100%;
}

.past-top .site-header {
  box-shadow:0 0 15px #d2d2d2;  
}

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  /*justify-content: space-between;*/
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 79.938rem) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 79.938rem) {
  .header__container {
    /*flex-direction: column;*/
    padding: 1rem 0 0;
  }
  
   .past-top .header__container {
    padding-bottom: .613rem;
  }

  .header__column {
    /*position: relative;*/
    display:flex;
    justify-content:flex-end;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    /*padding: 1.05rem;*/
  }
  .header__row-1, .header__row-2 {
    width:auto !important;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  /*margin-right: auto*/
  max-width: 200px;
/*   overflow: hidden; */
}

.site-header__logo-link {
  display:block;
  width:180px;
  z-index: 3;
  margin-top: 28px;
}

.past-top .site-header__logo-link.past-top-logo {
  display: none;
}
.site-header__logo-link.past-top-logo-sticky {
  display: none;
}
.past-top .site-header__logo-link.past-top-logo-sticky {
  display: block;
  width: 120px;
  margin-top: 12px;
}

.site-header__logo-link svg {
  width:100%;  
  height:80px;
  transition:height .3s;
}

.past-top .site-header__logo-link svg {
  height: 60px;
  width:120px;
}

.past-top .site-header__logo-link.past-top-logo-sticky svg {
  height: 42px;
  width:120px;
}
@media (max-width: 79.938rem) {
  .site-header__logo-link {
    margin-top: -2px;
  }
}
@media (max-width: 61.938rem) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
  .site-header__logo-link svg {
    height: 60px;
    width:120px;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}



/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 18px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

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

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 79.938rem) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 79.938rem) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 79.938rem) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }}

/* Navigation */

#nav-toggle {
  display: none;
}

.header__navigation {
  padding-top:35px;
  padding-left:35px;
  padding-bottom:0;
  transition: padding .3s;
}
.past-top .header__navigation {
    padding-top: 0;
    padding-bottom: 20px;
}

@media(max-width:1279px){
  .past-top .header__navigation {
      padding-bottom: 8px;
  }
}

.header__search {
  display:none;
  position: absolute;
  top: 15px;
  border-radius: 16px;
  overflow: hidden;
  right: 235px;
}
.header__search.open {
  display:block;  
}

.header__search--toggle {
 cursor:pointer;
  background:transparent;
  border-radius:100%;
  display:flex;
  width:35px;
  height:35px;
  border:1px solid #78ccd9;
  align-items:center;
  justify-content:center;
  padding:5px;
  position: relative;
}

.header__search--toggle svg {
  width:24px;
  height:24px;
  fill: #002060;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.header__search--toggle:hover svg,
.header__search--toggle:focus svg{
  fill: #fff;
}

.header__search #hs_cos_wrapper_site_search .hs-search-field__bar>form>.hs-search-field__input {
  border-radius:26px;  
  height:39px;
}

.header__search form {
  background:transparent;  
}


.header__row-1 {
  /*position:relative;*/
  width:100%;
  justify-content:flex-end;
}

.header__row-2 {
  justify-content:flex-start;  
}

.header__container .header__column {
  width:100%;  
}

.hs-search-field__label  {
    clip: rect(0 0 0 0); 
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; 
  width: 1px;
}

.hs-search-field__button >.hs_cos_wrapper_type_icon {
  background-color: #fff;
}

.header__navigation--toggle {
  display: none;
}

/* Mobile toggles */


@media (max-width: 79.938rem) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #ffffff;
    display: block;
    left: 0;
    min-height: calc(100vh - 80px);
    position: absolute;
    right: 0;
    top: 74px;
    z-index: 2;
    padding: 16px 0 0;
  }
  
  .header__search.open {
    padding-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: transparent;
  }
 .header__search.open > .hs_cos_wrapper {
   background-color: #fff; 
  }
 .header__search.open > .hs_cos_wrapper > .hs-search-field {
   padding: .613rem 1rem .613rem;  
  }  
  .past-top .header__search.open > .hs_cos_wrapper > .hs-search-field {
   padding-top: 0;  
  }  
  
  .header__search.open form input[type=search] {
    font-size: 16px;
    line-height: 1;
  }  

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    height: 25px;
    width: 25px;
    padding: 5px;
    background-color: transparent;
    border: none;
    display: block;
    margin-left: 1rem;
    position: relative;
  }
  
  .header__navigation--toggle .icon{
    height: 25px;
    width: 25px;
    fill: #002060;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .header__navigation--toggle:hover .icon,
  .header__navigation--toggle:focus .icon{
    fill: #fff;
  }

  .header__navigation--toggle:after {
    /*content: "Menu";*/
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    /*background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;*/
    border: none;
  }
  

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 18px;
    margin-left: 1rem;
    width: 18px;
  }

  .header__close--toggle.show {
    display: block;
  }
  
  .header__search .hs-search-field--open .hs-search-field__input {
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;    
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
    
  
}


.site-header__utility-link {
  font-weight:bold;
  color:#002060;
  display:inline-block;
  padding:5px 15px;
  margin-left:10px;
  border:1px solid #78ccd9;
}
@media (max-width: 79.938rem) {
  .site-header__utility-link {
    display:none;
  }
}

.test101 {display:none;}
html,
body {
  overflow-x: hidden;
}

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

/* .contained-image-banner {
  margin-top: 1.5rem;
}

@media (min-width: 85.375rem) {
  .contained-image-banner {
    margin-top: 4rem;
  }
} */

.contained-image-banner__image-wrap img {
    max-width: 100%;
    height: auto;
}

@media(min-width:992px) and (max-width:1099px){
  
  .content-container.container-banner-image--left {
    display: flex;
  }
  .content-container.container-banner-image--left .contained-image-banner__image-wrap {
    width: 100%;
  }  
  .content-container.container-banner-image--left .contained-image-banner__content-wrap {
    padding-left: 3rem;
  }
  
}

@media(max-width:991px){
  .header__search {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

@media(min-width:992px) and (max-width:1279px){
  
  .header__row-1, .header__row-2 {
      align-items: center;
      display: flex;
      justify-content: flex-end;
      margin-left: auto;
      width: inherit !important;
  }  
  .header__row-2 {
    justify-content: flex-start;
  }
  .header__search {
    border-top: none !important;
    padding: 0 !important;
    width: auto;
  }
  .header__search form {
    width: 228px;
    margin-left: auto;
  }  
  .header__search.open {
    display: block;
    right: 180px !important;
    top: inherit !important;    
    min-height: 10px !important;
  }
  .header__search--toggle {
    cursor: pointer;
    position: relative;
    border: 1px solid #78ccd9 !important;
  }
  .header__search--toggle.open:after {
    display: none;
  }
  .header__close--toggle.show {
    display: none !important;
  }
  .site-header__utility-link {
    display: inline-block !important;
  }
  .header__container .header__column {
    flex-direction: column;
  }
  .header__navigation--toggle {
      display: none;
  }  
  .header__navigation {
     display: inherit;
     padding-left: 0;
     padding-bottom: 20px;
  }
  .body-container-wrapper {
      padding-top: 140px;
  }
  
}

@media(min-width:1100px){
  .container-banner-image--right .contained-image-banner__image-wrap {
    display: block !important;
  }
}

/* Hot fix for Accessible Web Helper extension */
#awebChromeHelper {
  display: none !important; 
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.site-footer {
  padding:40px 0;  
}

.site-footer__wrap {
}

@media(min-width:80rem){
  .site-footer__wrap {
    display:flex;  
  }
}

.site-footer__left {
  padding:10px 20px;
  border-radius: 16px;
  background-color: #F2F2F2;
}

@media(min-width:60rem){
  .site-footer__left {
    display:flex;
    gap:20px;
  }
}

@media(min-width:80rem){
  .site-footer__left {
    padding:50px 45px;
    width:75%;
  }
}

@media(min-width:60rem){
  .site-footer__nav-column {
    width:25%;  
  }
}

.site-footer__navigation-toggle{
  background-color: transparent;
  border: none;
  border-radius: 0px;
  padding: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: right;
  padding: 0;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media(min-width: 60rem){
  .site-footer__navigation-toggle{
    display: none;
  }
}

.site-footer__navigation-toggle .icon{
  width: 16px;
  height: 16px;
  display: none;
}

.site-footer__navigation-toggle .icon-add-footer{
  display: block;
}

.site-footer__navigation-open .icon-x{
  display: block;
}

.site-footer__navigation-open .icon-add-footer{
  display: none;
}

.site-footer__navigation-toggle:hover,
.site-footer__navigation-toggle:focus{
  background-color: transparent;
  border: none;
  border-radius: 0px;
  padding: 0;
}

.site-footer__navigation-toggle:hover .site-footer__nav-title,
.site-footer__navigation-toggle:focus .site-footer__nav-title{
  text-decoration: underline;
  color: #0048b8;
}

.site-footer__nav-title {
  font-family:Arial, sans-serif;
  font-size:0.875rem;
  color:#002060;  
  margin-top:20px;
  margin-bottom:5px;
  position: relative;
}

@media(min-width:80rem){
  .site-footer__nav-title {
    font-size:1rem;
    margin-top:0;
    margin-bottom:20px;
  }
}

.site-footer__nav-column a {
  display:block;
  margin-bottom:11px;
  font-size:0.875rem;
  color:#002060;  
}

.site-footer__submenu{
  padding: 18px 0;
  display: none;
}

.site-footer__submenu-open{
  display: block;
}

@media(min-width: 60rem){
  .site-footer__submenu{
    padding: 0;
    display: block;
  }
}

@media(max-width: 48rem){
  .site-footer__submenu li.hs-menu-item.hs-menu-depth-1{
    width: 46%;
  }
}

.site-footer__right {
  padding: 32px 20px 0;
}

@media(min-width:80rem){
  .site-footer__right {
    padding:25px 80px;
  }
}

.site-footer__logo-link {
  display:block;
  margin-bottom: 20px;
  max-width:130px;
  height: 64px;
}

.site-footer__logo-link svg {
  position: relative;
  top: -40px;
  width:100%;
  height: 130px;
}

.site-footer__right p {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color:#002060;  
}

.site-footer__right p svg {
  width:24px; 
  height: 24px;
  margin-right: 13px;
}

p.site-footer__copyright {
  font-size:.9rem;
  color:#002060;
  display:block;
  max-width:275px;
}
.site-footer__address {
  max-width:230px;
}

.site-footer__address span{
  line-height: 1.2;
}

.site-footer__right div.site-footer__phone-number{
  display: flex;
  margin-bottom:10px;
}

.site-footer__right div.site-footer__phone-number p{
  margin: 0;
}

.site-footer__right div.site-footer__phone-number a{
  color: #002060;
  font-size: 1rem;
}

.site-footer__right div.site-footer__phone-number a:hover,
.site-footer__right div.site-footer__phone-number a:focus{
  color: #0048b8;
}

.site-footer__right div.site-footer__phone-number svg{
  width: 20px;
  height: 24px;
  margin-right: 16px;
}

.site-footer__right p.site-footer__address svg {
  margin-right: 16px;
  width: 33px;
}

.site-footer__compliance-pages a{
  color: #002060;
  font-size: 0.875rem;
}

.site-footer__compliance-pages a:hover,
.site-footer__compliance-pages a:focus{
  color: #0048b8;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

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

.events-item {
  padding: 1.625rem 0;
}

.events-image {
  border: 1px solid #eee;
  margin-right: 30px;
  height: auto;
  width: 40%;
  margin-bottom: 16px;
}

@media(min-width: 60rem){
  
  .events-item {
    display: flex;
    align-items: flex-start;
  }  
  
  .events-image {
      width: 200px;
  }
}

.events-content{
  position: relative;
}

.events-title {
  font-size:clamp(1rem,2.5vw,2rem);
  margin-bottom:15px;
  max-width: 226px;
  position: absolute;
  left: 45%;
  top: -125px;
}

@media(min-width: 60rem){
  .events-title {
    max-width: 100%;
    position: relative;
    left: 0;
    top: 0;
  }
}

.events-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom:25px;  
}

.events-meta span {
  display:flex;
  align-items: center;
  gap: 10px;
  margin-right:20px;
  margin-bottom: 10px;
}

.events-meta svg {
  margin-top: -3px;
  width:15px;
  height:15px;
  fill:#2154BF
}

.events-meta .icon-calendar {
  width: 18px;
  height: 20px;
}

.events-meta .icon-location {
  width: 16px;
  height: 20px;
}

.events-meta .icon-dollar {
  width: 20px;
  height: 20px;
}

.events-meta .resource-date {
  line-height: 1;
}

.events-item .resource-summary {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.events-button.button {
  font-weight:bold;  
  min-width: 226px;
  padding-bottom: 12px;  
  padding-top: 14px;
}

.events-button.button:hover, 
.events-button.button:focus {
  font-weight:bold;  
}

 
.heading--underline{
  font-size: clamp(2rem, 2.5vw, 3rem);
  margin: 30px 0 0;
  padding-bottom: 4.75rem;
  position: relative;
}

.heading--underline::after{
  content: '';
  width: 172px;
  height: 12px;
  position: absolute;
  bottom: 32px;
  left: 90px;
  transform: translate(-50%, -50%);
  background: url('/hubfs/21221972/Separator.png');
  background-size: cover;
}

@media(min-width:60rem){
.events-details__content-wrap {
  display:flex;
  align-items:start;
}
}

@media(max-width:29.938rem){
  .events-item {
    padding: 1.2rem 0;
  }
  .events-meta {
    margin-bottom: 15px;
  }
  .events-meta span {
    font-size: 0.875rem;
    margin-right: 12px;
  }
  .events-item .resource-summary {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .events-button.button {
    padding-bottom: 10px;
    padding-top: 11px;  
    font-size: 0.875rem;
    min-width: 100px;
  }
}

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

/* Templates
Styling for templates
 */ 
/* Blog post */

.blog-post__header {
  margin: 0 auto;
  max-width: 960px;
}

@media screen and (min-width: 80rem) {
  .blog-post__header .blog-post__header {
    margin-top: 2.188rem;
  }
}

.blog-post__meta {
  margin-bottom: 1.4rem;
}

.blog-post__meta a {
  text-decoration: underline;
}

.blog-post__timestamp {
  display: block;
}

.blog-post__tags svg {
  height: auto;
  margin-right: 0.35rem;
  width: 15px;
}

/* .blog-post__tag-link {
  font-size: 0.875rem;
} */

/* Blog related posts */

.blog-related-posts {
  background-color: #F8FAFC;
}

.blog-related-posts h2 {
  text-align: center;
}

.blog-related-posts__list {
  display: flex;
  flex-wrap: wrap;
}

.blog-related-posts__post {
  flex: 0 0 100%;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .blog-related-posts__post {
    flex: 0 0 calc(100% / 2);
  }
}

@media screen and (min-width: 1000px) {
  .blog-related-posts__post {
    flex: 0 0 calc(100% / 3);
  }
}

.blog-related-posts__image {
  height: auto;
  max-width: 100%;
}

.blog-related-posts__title {
  margin: 0.7rem 0;
}

/* Blog comments */
.blog-comments {
  margin: 0 auto;
  max-width: 680px;
}

.blog-comments .hs-submit {
  text-align: center;
}

.blog-comments .comment-reply-to {
  border: 0 none;
}

.blog-comments .comment-reply-to:hover,
.blog-comments .comment-reply-to:focus {
  background-color: transparent;
  text-decoration: underline;
}


/* .blog_post__tag-toggle {
  background-color:#fff;
  border:1px solid #333;
  display:inline-block;
  padding:10px 25px;
  text-align:left;
  cursor:pointer;
  margin-bottom:20px;
  width:300px;
  position:relative;
} */

/* .blog_post__tag-toggle:after {
  content:'';
  display:block;
  position:absolute;
  right:15px;
  top:15px;
  border-left:10px solid transparent;
  border-right:10px solid transparent;
  border-bottom:10px solid #333;
  transform:rotate(0);
  transition:all .3s;
} */

.blog_post__tag-toggle.active:after {
  transform:rotate(180deg);  
}

.blog-post__topics {
 display:none; 
  position:absolute;
  top:50px;
  left:0;
  max-height:250px;
  width:300px;
  overflow:auto;
  background-color:#fff;
  padding:10px;
  box-shadow:0 0 5px #eee;
}

.blog-post__topics ul {
  list-style:none;
  margin:0;
  padding:0;
}


/* .blog-post__topics li {
  border-bottom:1px solid #ccc;
} */

.blog-post__topics a {
  display:block;
  padding:10px 0;
  text-decoration:none;
}

.blog-post__topics h3 {
  display:none;
}

.blog-post__topics.active {
  display:block;  
}

.blog-post__body {
  max-width:960px;
  margin:0 auto;
  border-bottom:0;
}

.blog-post__body .hs-button {
  padding:1rem 1.5rem;
  font-weight:bold;
}

.blog-post__body,
.blog-post__body p,
.blog-post__body ul,
.blog-post__body ol {
  color:#414042;
  font-size:1.125rem;
}

.blog-post__body .main-body, 
.blog-post__body .main-body p {
  /*color:#444*/
}

.post-lising-filter{
  margin-bottom: 24px;
}

.post-lising-filter > div, .post-lising-filter > a {
  margin-bottom:15px;  
}

.post-lising-filter .clear-link {
  display:block;
}

@media(min-width: 48rem){
  .post-lising-filter .clear-link {
    display:inline-block; 
  }
}

@media(min-width: 64rem){
  .post-lising-filter{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 46px;
    justify-content: flex-start;
  }
  .post-lising-filter > div, .post-lising-filter > a {
    margin-bottom:0;  
  }
}

/* Breadcrumbs Styling */
.site-main__breadcrumbs {
  display:none;
  margin-bottom: 20px;
}
@media(min-width:80rem){
  .site-main__breadcrumbs {
    display:block;
  }
}
.site-main__breadcrumbs-list {
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
}
.site-main__breadcrumb{
  color: #fff;
}
.high-contrast .site-main__breadcrumb{
  color: #414042;
}
.site-main__breadcrumbs a{
  color:#78CCD9;
  display:block;
  position:relative;
  margin-right: 15px;
  padding-right: 20px;
}
.site-main__breadcrumbs.high-contrast a{
  color: #2154BF;
}
.site-main__breadcrumbs a:after {
    content: "/";
    display: block;
    color: #fff;
    position: absolute;
    top:0;
    right: -5px;
    width: 10px;
}
.site-main__breadcrumbs.high-contrast a:after{
    color: #414042;
}
/* Blog Post List Styling */
.sr-only{
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.post-listing-wrapper{
  max-width: 80.5rem;
  margin: 0 auto;
  padding: 1.5rem 0;
}
@media(min-width: 48rem){
  .post-listing-wrapper{
    padding: 1.125rem 0;
  }
}
.post-list {
  display:flex;
  flex-wrap:wrap;
  padding: 0;
  gap:40px;
}
@media(min-width: 64rem){
  .post-list {
    gap:20px;
  }
}
.blog-index__post-image{
  min-height: 225px;
  display: block;
  border-radius: 16px 16px 0 0;
  background-size: cover;
  width: 100%;
}
@media(min-width: 48rem){
  .blog-index__post-image{
    min-height: 230px;
  }
}
.post-item {
  border-radius: 16px;
  width:100%; 
  border:1px solid #d8d9da;
  position: relative;
  padding-bottom: 3rem;
} 
@media(min-width: 48rem){
  .post-item {
    width:calc(50% - 20px); 
  }
}
@media(min-width: 64rem){
  .post-item {
    width:calc(33% - 20px); 
  }
}
.blog-post-content{
  padding: 1.5rem 1.5rem 0;
}
.blog-post__tags{
  margin-bottom: 1rem;
}
.blog-post__tag-link{
  background-color: #2B76FC;
  color: #fff !important;
  text-transform: uppercase;
  font-size: 0.813rem;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
}
.blog-post__tag-link:hover{
  font-weight: 700;
}
.resource-title{
  display: inline-block;  
  font-size: inherit;
  margin-top: .7rem;
  margin-bottom: .5rem;
}
.resource-title .resource-link{
  color: #000000;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}
.blog-post__meta{
  display: flex;
  margin-bottom: 1rem;
  gap: 10px;
}
.blog-author,
.blog-date{
  padding-top: 3px;
  font-size: 0.875rem;
  color: #414042;
}
.resource-summary{
  color: #414042;
  margin-bottom: 1.3rem;
}
.blog-post__meta-section{
  position: absolute;
  bottom: 24px;
  left: 24px;
}
.blog-post__read-more{
  position: relative;
}
.blog-post__read-more::after{
  content: '';
  background: url('/hubfs/21221972/Icon%20Folder/arrow_right_alt.svg');
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  right: -25px;
  top: 5px;
}
.blog-post__read-more .hs-button{
  padding: 0;
  background-color: transparent;
  color: #2154BF;
  font-weight: 700;
  font-size: 1rem;
  border:0;
}
.blog-post__read-more .hs-button:hover,
.blog-post__read-more .hs-button:focus{
  background-color: transparent !important;
  color: #2154BF !important;
  border:0;
  text-decoration:underline;
}

/* Dropdown Styling */
.blog-sidebar-topic-filter{ 
  display: inline-block;
  position: relative;
  width: 100%;
}
@media(min-width: 48rem){
  .blog-sidebar-topic-filter{
    max-width: 18rem;
  }
}
.blog-sidebar-topic-filter::after{
  content: '';
  position: absolute;
  right: 24px;
  top: 20px;
  border: solid #414042;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  z-index: 2;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.blog_post__tag-toggle{
  border: 1px solid #C3C5C6;
  background-color: #f2f2f2;
  width: 100%;
  border-radius: 26px;
  text-align: left;
  color:#414042;
  padding: 1rem 3rem 1rem 1.5rem;
  position: relative;
  white-space: nowrap;
  z-index:2;
}
.blog_post__tag-toggle.active,
.blog_post__tag-toggle:hover{
  border: 1px solid #C3C5C6;
  background: #f2f2f2;
  color:#414042;
  cursor: pointer; 
}

.blog_post__tag-toggle.active {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.blog_post__tag-toggle:focus{
  background: #f2f2f2;
  color:#414042;
}
.blog-post__topics-list h3{
  display: none; 
}
.blog-sidebar-topic-filter{
  position: relative;
  display: inline-block;
}
.blog-sidebar-topic-filter .blog-post__topics{
  padding-top: .7rem;
  display: none;
  position: absolute;
  top: 70%;
  background-color: #f2f2f2;
  width: 100%;
  z-index: 1;
}
.blog-post__topics.active {
  border-left: 1px solid #c3c5c6;
  border-right: 1px solid #c3c5c6;
  border-bottom: 1px solid #c3c5c6;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;  
}
.blog-sidebar-topic-filter .blog-post__topics ul{
  list-style: none;
  padding: 0;
}
.blog-sidebar-topic-filter .blog-post__topics ul a{
  color: #414042;
  padding: 0.75rem 1rem;
  text-decoration: none;
  display: block;
}
.blog-sidebar-topic-filter .blog-post__topics ul a:hover{
  background-color: #ddd;
}
.blog-sidebar-topic-filter .blog-post__topics.active{
  display: block;
  z-index: 3;
}

/* Blog Post Details Styling */
.body-container--blog-post{
  max-width: 1288px;
  margin: 0 auto;
  padding-bottom: 5.625rem;
}
@media(min-width: 64rem){
  padding-bottom: 9rem;
}
.body-container--blog-post .content-wrapper{
  max-width: 53rem;
  margin: 0 auto;
}

.blog-post__featured-image {
  position:relative;
  padding-bottom:80px;
}


.blog-post__featured-image::after{
  content: '';
  width: 172px;
  height: 12px;
  position: absolute;
  bottom: 32px;
  left: 90px;
  transform: translate(-50%, -50%);
  background: url('/hubfs/21221972/Separator.png');
  background-size: cover;
}





.blog-hero{
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height:20rem;
  background-color: #002060;
  border-radius: 16px;
  margin-top:30px;
  margin-bottom:2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2rem;
}
@media(min-width: 48rem){
  .blog-hero{
    min-height:21rem;
    padding: 2.25rem 6rem;
  }
}
.blog-hero::after{
  content: '';
  background: url('/hubfs/21221972/Pattern-blue-mobile.png');
  position: absolute;
  right: -12px;
  bottom: -155px;
  background-size: contain;
  width: 14rem;
  height: 22rem;
}
@media(min-width: 64rem){
  .blog-hero::after{
    background: url('/hubfs/21221972/Pattern-blue.png');
    right: -110px;
    bottom: unset;
    background-size: cover;
    width: 41rem;
    height: 100%;
  }
}
.blog-hero-content{
  z-index:1;
}
.blog-hero__title{
  color:#fff;
  font-size: clamp(1rem, 0.55rem + 2.25vw, 3.25rem);
}
.blog-hero__excerpt{
  color: #fff;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  max-width: 42.5rem;
  margin-bottom: 35px;
}

.blog-hero__meta {
  color:#fff;
  font-size:1rem;
  display:flex;
}
.blog-hero__meta span {
  display:flex;
  align-items:center;
  margin-right:15px;
}

.blog-hero__meta svg {
  width:25px;
  height:25px;
  margin-right:8px;
  fill:#fff;
}

.blog-post__tag-link[class^='audience-'], 
.blog-post__tag-link[class*=' audience-'], 
.blog-post__tag-link[href*='audience-'],
.blog-post__tag-link.no-featured-image{
  display:none !important;
}

.widget-module a[href*='audience-'], 
.widget-module a[href^='audience-'],
.widget-module a[href*='no-featured-'], 
.widget-module a[href^='no-featured-'],
  display:none !important;  
}

.featured-blogs__tag-link[class^='audience-'], 
.featured-blogs__tag-link[class*=' audience-'], 
.featured-blogs__tag-link[href*='audience-'],
.featured-blogs__tag-link.no-featured-image{
  display:none !important;
}

.clear-link {
  position: relative;
  background-color:#f2f2f2;
  border-radius:16px;
  padding: 6px 30px 6px 15px;
  font-size: 14px;
  color: #414042;
}
.clear-link:after {
  content: 'x';
  position: absolute;
  display: block;
  top: 50%;
  right: 15px;
  transform: translateY(-52%);
  font-size: 12px;
  font-weight: 700;
}

.blog-post__tag-link,
.featured-blogs__tag-link{
  color:#000 !important;
  background-color:#5AA2FC;
}
.blog-post__tag-link.company-news,
.featured-blogs__tag-link.company-news {
  background-color:#F8D689;
}

.blog-post__tag-link.blog,
.featured-blogs__tag-link.blog {
  background-color:#2B76FC;
}

.blog-post__tag-link.in-the-news,
.featured-blogs__tag-link.in-the-news {
  background-color: #5AA2FC;
}

.blog-post__tag-link.in-the-news,
.featured-blogs__tag-link.in-the-news {
  background-color: #5AA2FC;
}

.blog-post__tag-link.no-featured-image,
.featured-blogs__tag-link.no-featured-image {
  background-color: #ff7c33;
}

.blog-post__tag-link.products-sheets,
.featured-blogs__tag-link.products-sheets {
  background-color: #ABF0F4;
}

.blog-post__tag-link.infographic,
.featured-blogs__tag-link.infographic {
  background-color: #BCD17B;
}

.blog-post__tag-link.case-studies,
.featured-blogs__tag-link.case-studies {
  background: #BCD17B;
}
.blog-post__tag-link.video,
.featured-blogs__tag-link.video {
  background: #ABF0F4;
}
.blog-post__tag-link.case-study, 
.featured-blogs__tag-link.case-study {
  background: #F8D689;
}




.blog-post__tag-link.case-summary, 
.featured-blogs__tag-link.case-summary {
  background: #bbe0fc;
}
.blog-post__tag-link.solutions-brief, 
.featured-blogs__tag-link.solutions-brief {
  background: #caf9f9;
}





.blog-post__body ::marker {
    color:#2154BF
}
.blog-post__body ol li {
  list-style: none;
  padding: 0;
}

.blog-post__body ol ::marker {
  content: counter(list-item)"\a0\a0";
    color:#2154BF
}

.featured-blogs {
  background-color: #eee;
  padding: 3rem 0;
}

.featured-blogs__title {
  text-align:center;
  font-size:1.125rem;
  font-family:arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.featured-blogs__list {
  list-style:none;
  margin:0;
  padding:0;
  position:relative;
}

@media(min-width:60rem){
  .featured-blogs__list {
    display:flex;
    gap:30px;
    align-items:stretch;
    justify-content:center;
    max-width:1100px;
    margin:0 auto;
  }
}

.featured-blogs__item {
  border:1px solid #ccc;
  border-radius:16px;
  overflow:hidden;
  background-color:#fff;
  position:relative;
  max-width:320px;
  margin:0 auto 20px;
}

@media(min-width:60rem){
  .featured-blogs__item {
    margin-bottom:0;
    max-width:none;
  }
}
.featured-blogs__image-wrap {
  height:200px;
  overflow:hidden;
}

.featured-blogs__image {
  object-fit:cover;
  height:100%;
}

.featured-blogs__content-wrap {
  padding:1.5rem;
  background-color:#fff;
}

.featured-blogs__item-title {
  color:#000;
  font-family:arial, sans-serif;
  font-size:1.125rem;
  font-weight:bold;
  margin-bottom:0;
}

.featured-blogs__meta {
  font-size:.9rem;
  margin-bottom:20px;
  display:flex;
  margin-top:10px;
}

.featured-blogs__author {
  margin-right:5px;
  padding-right:5px;
  border-right:1px solid #ccc;
}

.featured-blogs__link {
  font-weight:bold;
  position:relative;
}

.featured-blogs__link:hover,
.featured-blogs__link:focus {
  font-weight:bold;  
}

.featured-blogs__link:after {
  content:'';
  display:block;
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}


.featured-blogs__tag-link[class^='audience-'], .featured-blogs__tag-link[class*=' audience-']{
  display:none !important;
}

.featured-blogs__tag-link {
  background-color:#5AA2FC;
  border-radius:4px;
  font-size:.9rem;
  display:inline-block;
  margin-bottom:20px;
  color:#fff;
  font-weight:bold;
  padding:8px 24px;
  text-transform:uppercase;
}

.featured-blogs__tag-link.company-news {
  color:#000;
  background: #F8D689;
}

.featured-blogs__icon-arrow {
  width:15px;
  height:15px;
  fill:#0048b8;
  margin-left:5px;
  display:inline-block;
  transform:translateX(0);
  transition:transform .3s;
  position:relative;
  top:3px;
}

.featured-blogs__link .featured-blogs__icon-arrow {
  fill:#0048b8;
}

a:hover .featured-blogs__icon-arrow,
a:focus .featured-blogs__icon-arrow {
  transform:translateX(5px);  
}

.post-list__info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 23px;
}

.post-list__info .post-list__count {
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}

.blog-post__body h2,
.blog-post__body h3,
.blog-post__body h4,
.blog-post__body h5,
.blog-post__body h6 {
  font-family: arial,helvetica,sans-serif;
  font-weight: 700;
  line-height: 32px;
  color: #000;
  margin-bottom: 2.5rem;  
}
.blog-post__body h2 {
  font-size: 1.75rem;
  line-height: 28px;
}
.blog-post__body h3 {
  font-size: 1.625rem;
}
.blog-post__body h4 {
  font-size: 1.563rem;
}
.blog-post__body h5 {
  font-size: 24px;
  line-height: 28px;
}
.blog-post__body h6 {
  font-size: 1.125rem;
  line-height: 22px;
}
.blog-post__body p {
  margin-bottom: 2.5rem; 
}
.blog-post__body .general-content__text-list li p:last-child {
  margin-bottom: 0;
}
.blog-post__body .tab-banner__pane-links {
  list-style:none;
  margin: 2.125rem 0 2rem;
  padding:0;
  border-top:1px solid #C3C5C6;
  position: relative;
  z-index: 1;  
}
.blog-post__body .tab-banner__pane-link-item {
  border-bottom:1px solid #C3C5C6;
}
.blog-post__body .tab-banner__pane-link {
  position: relative;
  display: flex;  
  font-weight:bold;
  padding: 20px 0 18px;
  color: #2154BF;
}
.blog-post__body .tab-banner__icon-arrow {
  width:15px;
  height:15px;
  fill:#0048b8;
  margin-left:5px;
  display:inline-block;
  transform:translateX(0);
  transition:transform .3s;
  position:relative;
  top:3px;
}
.blog-post__body .tab-banner__pane-link:hover,
.blog-post__body .tab-banner__pane-link:focus,
.blog-post__body .tab-banner__pane-link:active {
  color: #002060;
  font-weight:bold;  
}
.blog-post__body .tab-banner__pane-link .tab-banner__icon-arrow {
  fill:#0048b8;
}

.blog-post__body a:hover .tab-banner__icon-arrow,
.blog-post__body a:focus .tab-banner__icon-arrow {
  transform:translateX(5px);  
}