/* 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;
  }
}
@media (min-width: 768px) {
  
  .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));
  }
  
}


img {
  max-width:100%;
  height:auto;
}
.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.)
*/

/* pulling theme colours from hubspot into _colors.css: */






:root {
  /* theme settings */
  --color_primary: #001C48; /* navy */
  --color_secondary: #F26724; /* orange */
  --color_light_gray: #e4e5e6; /* lightgray25: #e4e5e6 */
  --color_white: #FFFFFF;
  --color_black: #000000;
  /* new colours from 2024 brand guidelines: */
  --orange: #F26724;
  --orange75: rgba(242, 103, 36, 0.75);
  --orange50: rgba(242, 103, 36, 0.50);
  --orange25: rgba(242, 103, 36, 0.25);
  --aquablue: #73BFC9;
  --aquablue75: rgba(115, 191, 201, 0.75);
  --aquablue50: rgba(115, 191, 201, 0.50);
  --aquablue25: rgba(115, 191, 201, 0.25);
  --lightblue: #009FE3;
  --lightblue75: rgba(0, 159, 227, 0.75);
  --lightblue50: rgba(0, 159, 227, 0.50);
  --lightblue25: rgba(0, 159, 227, 0.25);
  --navy: #001C48;
  --navy75: rgba(0, 28, 72, 0.75);
  --navy50: rgba(0, 28, 72, 0.50);
  --navy25: rgba(0, 28, 72, 0.25);
  --darkgray: #425665;
  --darkgray75: rgba(66, 86, 101, 0.75);
  --darkgray50: rgba(66, 86, 101, 0.50);
  --darkgray25: rgba(66, 86, 101, 0.25);
  --lightgray: #A2AAAD;
  --lightgray75: rgba(162, 170, 173, 0.75);
  --lightgray50: rgba(162, 170, 173, 0.50);
  --lightgray25: rgba(162, 170, 173, 0.25);
  --cream: #F2F2EA;
  --cream75: rgba(242, 242, 234, 0.75);
  --cream50: rgba(242, 242, 234, 0.50);
  --cream25: rgba(242, 242, 234, 0.25);
  --coral: #FF5C5C;
  --yellow: #F5C60C;
  --red: #FC5021;
}
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;
}
h1,
h2,
h3,
h4 {
  letter-spacing: -0.9px;
}
h5,h6 {
  letter-spacing: -0.72px;
}
/* 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;
}

li::marker {
  font-size: 14px;
}
ul {
  padding-inline-start: 20px;
}

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

















































html {
  font-size: 18px;
}

body {
  font-family: trade-gothic-next, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #000000;
  font-size: 18px;
}

/* Paragraphs */

p {
  font-family: trade-gothic-next, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
}

/* Anchors */

a {
  font-family: trade-gothic-next, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #FF6600;
}

a:hover,
a:focus {
  font-family: trade-gothic-next, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  
  
  color: #FF6600;
}

a:active {
  font-family: trade-gothic-next, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  
  color: #001C48;
}

/* Headings */


h1,
.h1 {
  font-weight: 400; text-decoration: none; font-family: trade-gothic-next, sans-serif; font-style: normal;
  color: #000000;
  font-size: 40px;
  text-transform: none;
  line-height:1.2;
}

h2,
.h2 {
  font-weight: 400; text-decoration: none; font-family: trade-gothic-next, sans-serif; font-style: normal;
  color: #000000;
  font-size: 30px;
  text-transform: none;
  line-height:1.4;
}

h3,
.h3 {
  font-weight: 700; text-decoration: none; font-family: trade-gothic-next, sans-serif; font-style: normal;
  color: #000000;
  font-size: 24px;
  text-transform: none;
  line-height:1.25;
}

h4,
.h4 {
  font-weight: normal; text-decoration: none; font-family: trade-gothic-next, sans-serif; font-style: normal;
  color: #000000;
  font-size: 24px;
  text-transform: none;
  line-height:1.25;
}

h5,
.h5 {
  font-weight: normal; text-decoration: none; font-family: trade-gothic-next, sans-serif; font-style: normal;
  color: #000000;
  font-size: 24px;
  text-transform: none;
  line-height:1.25;
}

h6,
.h6 {
  font-weight: normal; text-decoration: none; font-family: trade-gothic-next, sans-serif; font-style: normal;
  color: #000000;
  font-size: 16px;
  text-transform: none;
  line-height:1.5;
}



@media (min-width:768px){
  h1,
  .h1 {
    font-size: 64px;
    line-height:1.12;
  }

  h2,
  .h2 {
    font-size: 42px;
    line-height:1.28;
  }

  h3,
  .h3 {
    font-size: 30px;
    line-height:1.4;
  }

  h4,
  .h4 {
    font-size: 28px;
    line-height:1.25;
  }

  h5,
  .h5 {
    font-size: 24px;
    line-height:1.25;
  }

  h6,
  .h6 {
    font-size: 16px;
    line-height:1.5;
  }
}



/* Blockquote */

blockquote {
  border-left-color: ;
}

.overline {
  color: #F60;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 123.077%; /* 123.077% */
  letter-spacing: 1.95px;
  text-transform: uppercase;
}

@media (min-width:992px){
  .overline {
    color: #F60;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 200% */
    letter-spacing: 2.25px;
    text-transform: uppercase;
  }
}


.header-or-footer-container button,
.header-or-footer-container .button,
.header-or-footer-container .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

.header-or-footer-container .no-button,
.header-or-footer-container .no-button:hover,
.header-or-footer-container .no-button:focus,
.header-or-footer-container .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;
}


















.header-or-footer-container button,
.header-or-footer-container .button,
.header-or-footer-container .hs-button,
.header-or-footer-container .hs-blog-post-listing__post-button {
  position:relative;
  border: 1px solid #F26724;

  padding-top: 13px;
padding-right: 66px;
padding-bottom: 13px;
padding-left: 25px;

  font-family: trade-gothic-next, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  background-color: 

#F26724
;
  border-radius: 50px;
  color: #FFFFFF;
  font-size: 18px;
  text-transform: none;
  font-weight:bold;
}

.header-or-footer-container button:hover,
.header-or-footer-container button:focus,
.header-or-footer-container button:active,
.header-or-footer-container .button:hover,
.header-or-footer-container .button:focus,
.header-or-footer-container .button:active,
.header-or-footer-container .hs-button:hover,
.header-or-footer-container .hs-button:focus,
.header-or-footer-container .hs-button:active,
.header-or-footer-container .hs-blog-post-listing__post-button:hover,
.header-or-footer-container .hs-blog-post-listing__post-button:focus,
.header-or-footer-container .hs-blog-post-listing__post-button:active {
  border: 1px solid #FF6600;
;
  color: 

#ffffff
;
  background-color: 

#FF6600
;
  border-radius: 50px;
  font-weight:bold;
}



/* button, */
.header-or-footer-container .hs-button,
.header-or-footer-container .hs-blog-post-listing__post-button,
.header-or-footer-container .button{
  text-align:left;

  min-width:215px;
}

@media (max-width:500px){
  .header-or-footer-container .button,
  .header-or-footer-container button {
/*     width:100%; */
    min-width: 1px;
  }
}

.header-or-footer-container .hs-button:after,
.header-or-footer-container .hs-blog-post-listing__post-button:after,
.header-or-footer-container .button:after{
  transition:0.2s ease all;
  -webkit-transition:0.2s ease all;
  transform-origin: top;
  -webkit-transform-origin: top;
  content:"";
  z-index:2;
  position:absolute;
  right:10px;
  top:50%;
  height:36px;
  width:36px;
  display:inline-flex;
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  transform:rotate(0deg) translateY(-50%);
  -webkit-transform:rotate(0deg) translateY(-50%);
  background-image:url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M36 18C36 27.9411 27.9411 36 18 36C8.05887 36 0 27.9411 0 18C0 8.05887 8.05887 0 18 0C27.9411 0 36 8.05887 36 18Z" fill="white" fill-opacity="0.75"/><path d="M12.03 12.5V14.5H20.57L11.5 23.58L12.91 24.99L21.99 15.91V24.46H23.99V12.5H12.03Z" fill="%23FF6600"/></svg>');
}



.header-or-footer-container .button:hover:after,
.header-or-footer-container .button:focus:after,
.header-or-footer-container .button:active:after,

.header-or-footer-container .hs-button:hover:after,
.header-or-footer-container .hs-button:focus:after,
.header-or-footer-container .hs-button:active:after,
.header-or-footer-container .hs-blog-post-listing__post-button:hover:after,
.header-or-footer-container .hs-blog-post-listing__post-button:focus:after,
.header-or-footer-container .hs-blog-post-listing__post-button:active:after {
  transform:rotate(45deg) translateY(-50%);
  -webkit-transform:rotate(45deg) translateY(-50%);
  background-image:url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M36 18C36 27.9411 27.9411 36 18 36C8.05887 36 0 27.9411 0 18C0 8.05887 8.05887 0 18 0C27.9411 0 36 8.05887 36 18Z" fill="white"/><path d="M12.03 12.5V14.5H20.57L11.5 23.58L12.91 24.99L21.99 15.91V24.46H23.99V12.5H12.03Z" fill="%23FF6600"/></svg>');
  /*   background-image:url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M30.7279 30.7279C23.6985 37.7574 12.3015 37.7574 5.27208 30.7279C-1.75736 23.6985 -1.75736 12.3015 5.27208 5.27208C12.3015 -1.75736 23.6985 -1.75736 30.7279 5.27208C37.7574 12.3015 37.7574 23.6985 30.7279 30.7279Z" fill="white"/><path d="M17.6677 9.88949L16.2534 11.3037L22.2921 17.3424L9.45815 17.3495V19.3435H22.2992L16.2534 25.3893L17.6677 26.8035L26.1247 18.3465L17.6677 9.88949Z" fill="%23FF6600"/></svg>'); */
}

.header-or-footer-container .customForm-mod .hs-submit input:hover,
.header-or-footer-container .customForm-mod .hs-submit input:active,
.header-or-footer-container .customForm-mod .hs-submit input:focus,
.header-or-footer-container .customForm-mod .hs-submit input {
  background:transparent !important;
  text-align:left !important;
  min-width:unset !important;
  border:none !important;
  min-height:56px !important;
}

.header-or-footer-container .customForm-mod .hs-submit .actions {
  position:relative;
  width:auto;
  display:inline-flex;
  align-items:center;
  position:relative;
  border: 1px solid #F26724;

  padding-top: 13px;
padding-right: 66px;
padding-bottom: 13px;
padding-left: 25px;

  font-family: trade-gothic-next, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  background-color: 

#F26724
;
  border-radius: 50px;
  color: #FFFFFF;
  font-size: 18px;
  text-transform: none;
  font-weight:bold;
  padding:0px !important;
  
}


.header-or-footer-container .customForm-mod .hs-submit .actions:focus,
.header-or-footer-container .customForm-mod .hs-submit .actions:active,
.header-or-footer-container .customForm-mod .hs-submit .actions:hover {
  border: 1px solid #FF6600;
;
  color: 

#ffffff
;
  background-color: 

#FF6600
;
  border-radius: 50px;
  font-weight:bold;
}

.header-or-footer-container .customForm-mod .hs-submit .actions:after{
  transition:0.3s ease all;
  -webkit-transition:0.3s ease all;
  transform-origin: top;
  -webkit-transform-origin: top;
  content:"";
  z-index:2;
  position:absolute;
  right:10px;
  top:50%;
  height:36px;
  width:36px;
  display:inline-flex;
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  transform:rotate(0deg) translateY(-50%);
  -webkit-transform:rotate(0deg) translateY(-50%);
  background-image:url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M36 18C36 27.9411 27.9411 36 18 36C8.05887 36 0 27.9411 0 18C0 8.05887 8.05887 0 18 0C27.9411 0 36 8.05887 36 18Z" fill="white" fill-opacity="0.75"/><path d="M12.03 12.5V14.5H20.57L11.5 23.58L12.91 24.99L21.99 15.91V24.46H23.99V12.5H12.03Z" fill="%23FF6600"/></svg>');
}


.header-or-footer-container .customForm-mod .hs-submit .actions:hover:after,
.header-or-footer-container .customForm-mod .hs-submit .actions:focus:after,
.header-or-footer-container .customForm-mod .hs-submit .actions:active:after {
  transform:rotate(45deg) translateY(-50%);
  -webkit-transform:rotate(45deg) translateY(-50%);
  background-image:url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M36 18C36 27.9411 27.9411 36 18 36C8.05887 36 0 27.9411 0 18C0 8.05887 8.05887 0 18 0C27.9411 0 36 8.05887 36 18Z" fill="white"/><path d="M12.03 12.5V14.5H20.57L11.5 23.58L12.91 24.99L21.99 15.91V24.46H23.99V12.5H12.03Z" fill="%23FF6600"/></svg>');
  /*   background-image:url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M30.7279 30.7279C23.6985 37.7574 12.3015 37.7574 5.27208 30.7279C-1.75736 23.6985 -1.75736 12.3015 5.27208 5.27208C12.3015 -1.75736 23.6985 -1.75736 30.7279 5.27208C37.7574 12.3015 37.7574 23.6985 30.7279 30.7279Z" fill="white"/><path d="M17.6677 9.88949L16.2534 11.3037L22.2921 17.3424L9.45815 17.3495V19.3435H22.2992L16.2534 25.3893L17.6677 26.8035L26.1247 18.3465L17.6677 9.88949Z" fill="%23FF6600"/></svg>'); */
}


.header-or-footer-container .button.button-outlined.no-arrow {
  border-radius: 16px;
  background-image:none;
  background-color:transparent;
  min-width:auto;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  padding:8px 16px;
}

.header-or-footer-container .button.button-small {
  border-radius: 16px;
  background-image:none;
  min-width:auto;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  padding:8px 16px;
}

.header-or-footer-container .button.button-outlined.no-arrow.normal {
  font-size: 18px;
  font-style: normal;
  border-radius:50px;
  font-weight: 700;
  line-height: 100%;
  padding:21px 25px;
}

.header-or-footer-container .button.no-arrow:after {
  display:none;
}
.header-or-footer-container .button.button-outlined.no-arrow:after {
  display:none;
}

.header-or-footer-container .button.button-outlined.b-white{
  border: 1px solid #FFF;
  background-color:transparent;
}

.header-or-footer-container .button.c-orange{
  color:#F60;
}

.header-or-footer-container .button.button-outlined.b-white:hover{
  border: 1px solid #FFF;
  background-color: #FFF;
  color:#000;
}

.header-or-footer-container .button.c-orange.bg-white{
  color:#F60;
  border-color:#F60;
  background-color:#fff;
}

.header-or-footer-container .button.c-orange.bg-white:hover{
  color:#FFF;
  border-color:#F60;
  background-color:#F60;
}



.header-or-footer-container .button.button-secondary{
  border: 1px solid #FF6600;
  background-color:transparent;
  /*   background-image:url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M36 18C36 27.9411 27.9411 36 18 36C8.05887 36 0 27.9411 0 18C0 8.05887 8.05887 0 18 0C27.9411 0 36 8.05887 36 18Z" fill="%23FF6600" fill-opacity="0.15"/><path d="M12.03 12.5V14.5H20.57L11.5 23.58L12.91 24.99L21.99 15.91V24.46H23.99V12.5H12.03Z" fill="%23FF6600"/></svg>'); */
  color:#FF6600;
}
.header-or-footer-container .button.button-secondary:after{
  background-image:url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M36 18C36 27.9411 27.9411 36 18 36C8.05887 36 0 27.9411 0 18C0 8.05887 8.05887 0 18 0C27.9411 0 36 8.05887 36 18Z" fill="%23FF6600" fill-opacity="0.15"/><path d="M12.03 12.5V14.5H20.57L11.5 23.58L12.91 24.99L21.99 15.91V24.46H23.99V12.5H12.03Z" fill="%23FF6600"/></svg>');
  /*   background-image:url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M30.7279 30.7279C23.6985 37.7574 12.3015 37.7574 5.27208 30.7279C-1.75736 23.6985 -1.75736 12.3015 5.27208 5.27208C12.3015 -1.75736 23.6985 -1.75736 30.7279 5.27208C37.7574 12.3015 37.7574 23.6985 30.7279 30.7279Z" fill="%23FF6600"/><path d="M17.6677 9.88949L16.2534 11.3037L22.2921 17.3424L9.45815 17.3495V19.3435H22.2992L16.2534 25.3893L17.6677 26.8035L26.1247 18.3465L17.6677 9.88949Z" fill="white"/></svg>'); */
}

.header-or-footer-container .button.button-secondary:hover{
  border: 1px solid #FF6600;
  background-color: rgba(255, 102, 0, 0.15);
  color:#FF6600;
  /*   background-image:url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M30.7279 30.7279C23.6985 37.7574 12.3015 37.7574 5.27208 30.7279C-1.75736 23.6985 -1.75736 12.3015 5.27208 5.27208C12.3015 -1.75736 23.6985 -1.75736 30.7279 5.27208C37.7574 12.3015 37.7574 23.6985 30.7279 30.7279Z" fill="%23FF6600"/><path d="M17.6677 9.88949L16.2534 11.3037L22.2921 17.3424L9.45815 17.3495V19.3435H22.2992L16.2534 25.3893L17.6677 26.8035L26.1247 18.3465L17.6677 9.88949Z" fill="white"/></svg>'); */
}
.header-or-footer-container .button.button-secondary:hover:after{
  background-image:url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M36 18C36 27.9411 27.9411 36 18 36C8.05887 36 0 27.9411 0 18C0 8.05887 8.05887 0 18 0C27.9411 0 36 8.05887 36 18Z" fill="%23FF6600"/><path d="M12.03 12.5V14.5H20.57L11.5 23.58L12.91 24.99L21.99 15.91V24.46H23.99V12.5H12.03Z" fill="white"/></svg>');
  /*   background-image:url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M30.7279 30.7279C23.6985 37.7574 12.3015 37.7574 5.27208 30.7279C-1.75736 23.6985 -1.75736 12.3015 5.27208 5.27208C12.3015 -1.75736 23.6985 -1.75736 30.7279 5.27208C37.7574 12.3015 37.7574 23.6985 30.7279 30.7279Z" fill="%23FF6600"/><path d="M17.6677 9.88949L16.2534 11.3037L22.2921 17.3424L9.45815 17.3495V19.3435H22.2992L16.2534 25.3893L17.6677 26.8035L26.1247 18.3465L17.6677 9.88949Z" fill="white"/></svg>'); */
}


.header-or-footer-container .button.button-white{
  border: 1px solid #FFF;
  background-color:#FFF;
  /*   background-image:url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M36 18C36 27.9411 27.9411 36 18 36C8.05887 36 0 27.9411 0 18C0 8.05887 8.05887 0 18 0C27.9411 0 36 8.05887 36 18Z" fill="%23FF6600" fill-opacity="0.15"/><path d="M12.03 12.5V14.5H20.57L11.5 23.58L12.91 24.99L21.99 15.91V24.46H23.99V12.5H12.03Z" fill="%23FF6600"/></svg>'); */
  color:#FF6600;
}


.header-or-footer-container .button.button-white:after{
  background-image:url('data:image/svg+xml,<svg width="36" height="37" viewBox="0 0 36 37" fill="none" xmlns="http://www.w3.org/2000/svg"><rect y="0.5" width="36" height="36" rx="18" fill="%23FF6600"/><rect y="0.5" width="36" height="36" rx="18" fill="white" fill-opacity="0.75"/><path d="M12.285 12.2549V14.2549H20.825L11.755 23.3349L13.165 24.7449L22.245 15.6649V24.2149H24.245V12.2549H12.285Z" fill="%23FF6600"/></svg>');
}


.header-or-footer-container .button.button-white:hover{
  border: 1px solid #FFF;
  background-color: rgba(255, 255, 255, 1);
  color:#FF6600;
  /*   background-image:url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M30.7279 30.7279C23.6985 37.7574 12.3015 37.7574 5.27208 30.7279C-1.75736 23.6985 -1.75736 12.3015 5.27208 5.27208C12.3015 -1.75736 23.6985 -1.75736 30.7279 5.27208C37.7574 12.3015 37.7574 23.6985 30.7279 30.7279Z" fill="%23FF6600"/><path d="M17.6677 9.88949L16.2534 11.3037L22.2921 17.3424L9.45815 17.3495V19.3435H22.2992L16.2534 25.3893L17.6677 26.8035L26.1247 18.3465L17.6677 9.88949Z" fill="white"/></svg>'); */
}
.header-or-footer-container .button.button-white:hover:after{
  background-image:url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M36 18C36 27.9411 27.9411 36 18 36C8.05887 36 0 27.9411 0 18C0 8.05887 8.05887 0 18 0C27.9411 0 36 8.05887 36 18Z" fill="%23FF6600"/><path d="M12.03 12.5V14.5H20.57L11.5 23.58L12.91 24.99L21.99 15.91V24.46H23.99V12.5H12.03Z" fill="white"/></svg>');
  /*   background-image:url('data:image/svg+xml,<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M30.7279 30.7279C23.6985 37.7574 12.3015 37.7574 5.27208 30.7279C-1.75736 23.6985 -1.75736 12.3015 5.27208 5.27208C12.3015 -1.75736 23.6985 -1.75736 30.7279 5.27208C37.7574 12.3015 37.7574 23.6985 30.7279 30.7279Z" fill="%23FF6600"/><path d="M17.6677 9.88949L16.2534 11.3037L22.2921 17.3424L9.45815 17.3495V19.3435H22.2992L16.2534 25.3893L17.6677 26.8035L26.1247 18.3465L17.6677 9.88949Z" fill="white"/></svg>'); */
}

.header-or-footer-container .button.button-white.bordered{
  border-color:

#F26724
;
}

.header-or-footer-container .button.button-download:hover:after,
.button.button-download:after {
  transform:rotate(135deg) translateY(-50%);
  -webkit-transform:rotate(135deg) translateY(-50%);
}
.header-or-footer-container .button.button-filter:hover:after,
.header-or-footer-container .button.button-filter:after {
  background-image:url('data:image/svg+xml,<svg width="36" height="37" viewBox="0 0 36 37" fill="none" xmlns="http://www.w3.org/2000/svg"><rect y="0.255859" width="36" height="36" rx="18" fill="white" fill-opacity="0.75"/><path d="M16.0002 26.2559V19.2559L8.9502 10.2559H27.0502L20.0002 19.2559V26.2559H16.0002Z" fill="%23FF6600"/></svg>');
  transform:rotate(0deg) translateY(-50%);
  -webkit-transform:rotate(0deg) translateY(-50%);
}

.header-or-footer-container .cta-arrow {
  align-items: center;
  color: #f60;
  display: inline-flex;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  gap: 10px;
  line-height: 285.714%;
  text-transform: uppercase;
  transition: all .3s ease;
}

.header-or-footer-container .cta-arrow:focus,
.header-or-footer-container .cta-arrow:hover {
  column-gap: 15px;
  color: #f60;
  font-weight: 700;
}
.header-or-footer-container .cta-arrow > span {
  display:inline-flex;
}
.header-or-footer-container .cta-arrow > span:first-child {
  line-height: 1.5em;
  margin: 10px 0px;
}

.header-or-footer-container .button.c-orange {
  color:#F60;
}

.header-or-footer-container .button.hc-white.active,
.header-or-footer-container .button.hc-white:hover {
  color:#FFF;
}

.header-or-footer-container .button.h-orange.active,
.header-or-footer-container .button.h-orange:hover {
  background-color:#F60;
  border-color:#F60;
}
/* Fields */

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

/* Labels */

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

form[data-form-id="ec0bd2d5-1117-429d-a92f-edeb7cec7a5c"] .form-columns-2 .hs-richtext{
  display:none !important;
}
/* 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;
  }

















































form,
.submitted-message {
  font-family: trade-gothic-next, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  ;
  border-top-left-radius: px;
  border-top-right-radius: px;
  border-bottom-left-radius: px;
  border-bottom-right-radius: px;
  
  ;
}

/* Form title */

.form-title {
  ;
  ;
  ;
  border-top-left-radius: px;
  border-top-right-radius: px;
  border-bottom-left-radius: px;
  border-bottom-right-radius: px;
  font-size: ;
  color: ;
  
}


/* Labels */

form label {
  color: #000000;
}

/* Help text */

form legend {
  color: #000000;
}

/* 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 {
  border: 1px solid #8D9FB2;

  background-color: 

#FFFFFF
;
  color: #000000;
  border-radius: 4px;
}

form input[type=text]:not(.invalid):focus,
form input[type=search]:not(.invalid):focus,
form input[type=email]:not(.invalid):focus,
form input[type=password]:not(.invalid):focus,
form input[type=tel]:not(.invalid):focus,
form input[type=number]:not(.invalid):focus,
form input[type=file]:not(.invalid):focus,
form select:not(.invalid):focus,
form textarea:not(.invalid):focus{
  outline:unset;
  border-color: #F26724;
}

/* Form placeholder text */

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

::-moz-placeholder {
  color: #000000;
}

:-ms-input-placeholder {
  color: #000000;
}

::placeholder {
  color: #000000;
}

/* Inputs - date picker */

.hs-fieldtype-date .input .hs-dateinput:before {
  color: #000000;
}

.fn-date-picker td.is-selected .pika-button {
  background: ;
}

.fn-date-picker td .pika-button:hover {
  background-color:  !important;
}

.fn-date-picker td.is-today .pika-button {
  color: ;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  ;
  ;
  ;
  color: ;
  font-size: ;
  /*   background-color: ; */
  border-radius: 50px;
  text-transform: none;
}

form input[type=submit]:hover,
form input[type=submit]:focus,
form .hs-button:hover,
form .hs-button:focus {
  
  color: ;
  ;
}

form input[type=submit]:active,
form .hs-button:active {
  background-color: rgba(255, 143, 76, 1.0);
  border-color: #ff8f4c;
}


.grecaptcha-badge {
    margin: 0;
}
/* 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;
}
















/* Table */

table {
  border: 1px solid #000000;

  background-color: 

#FFFFFF
;
}

/* Table cells */

td,
th {
  border: 1px solid #000000;

  padding: 18px;

  color: #000000;
}

/* Table header */

thead th {
  background-color: 

#001C48
;
  color: #FFFFFF;
}

/* Table footer */

tfoot td {
  background-color: 

#FFFFFF
;
  color: #000000;
}

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

/* Header DND sections */

.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: 991px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

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

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

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

@media (max-width: 991px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

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

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

/* .header__logo--main {
  padding-top: 1rem;
}
 */
/* 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: 25px;
  }


.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: 991px) {
  .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: 991px) {
  .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: 991px) {
  .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;
}

/* Mobile toggles */

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

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    /*     margin: 0 5vw; */
    position: relative;
  }

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

  .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 {
    background-image: url('data:image/svg+xml,<svg width="22" height="18" viewBox="0 0 22 18" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="22" height="2" rx="1" fill="%23162432"/><rect y="8" width="22" height="2" rx="1" fill="%23162432"/><rect y="16" width="22" height="2" rx="1" fill="%23162432"/></svg>');
    background-size: contain;
    background-repeat:no-repeat;
    height: 25px;
    width: 25px;
    background-position:center;
  }

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

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

  .header__close--toggle {
    background-image:url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.2216 1.22162C1.61213 0.831092 2.24529 0.831092 2.63582 1.22162L16.778 15.3638C17.1685 15.7543 17.1685 16.3874 16.778 16.778C16.3874 17.1685 15.7543 17.1685 15.3637 16.778L1.2216 2.63583C0.83108 2.24531 0.83108 1.61214 1.2216 1.22162Z" fill="%23162432"/><path d="M16.778 1.2216C17.1685 1.61213 17.1685 2.24529 16.778 2.63582L2.63583 16.778C2.2453 17.1685 1.61214 17.1685 1.22162 16.778C0.831091 16.3874 0.831091 15.7543 1.22162 15.3637L15.3638 1.2216C15.7543 0.83108 16.3874 0.83108 16.778 1.2216Z" fill="%23162432"/></svg>');
    background-repeat: no-repeat;
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
    display: none;
    height: 18px;
    margin-right: 0;
    width: 18px;
  }

  .header__close--toggle.show {
    display: block;
  }
}












.header {
  background-color: #FFFFFF;
}

.menu__link,
.header__logo .logo-company-name,
.header__language-switcher-label-current,
.header__language-switcher .lang_list_class li a {
  color: #001C48;
  font-family: trade-gothic-next;
}

.menu__child-toggle-icon {
  border-top-color: #001C48;
}


.menu .menu__link:hover,
.menu .menu__link:focus,
.header__language-switcher-label-current:hover,
.header__language-switcher-label-current:focus,
.header__language-switcher .lang_list_class li:hover a,
.header__language-switcher .lang_list_class li a:focus {
  color: #001C48;
}

.menu__child-toggle-icon:hover,
.menu__child-toggle-icon:focus {
  border-top-color: #001C48;
}

.menu .menu__link:active,
.header__language-switcher-label-current:active,
.header__language-switcher .lang_list_class li a:active {
  color: #001C48;
}

.menu__child-toggle-icon:active {
  border-top-color: #001C48;
}

.menu .menu__item--depth-1 > .menu__link--active-link:after {
  background-color: #001C48;
}

@media (min-width: 991px) {
  .menu .menu__submenu,
  .header__language-switcher .lang_list_class {
    border: 2px solid #001C48;

    background-color: #FFFFFF;
  }

  .menu__submenu--level-2 > .menu__item:first-child:before {
    border: 2px solid #001C48;

    background-color: #FFFFFF;
  }
}

.menu__submenu .menu__link,
.menu__submenu .menu__link:hover,
.menu__submenu .menu__link:focus {
  color: #000000;
  background-color: #FFFFFF;
}

.header__language-switcher .lang_list_class:before {
  border-bottom-color: #001C48;
}

.menu__submenu .menu__link:hover,
.menu__submenu .menu__link:focus,
.header__language-switcher .lang_list_class li:hover,
.menu__submenu--level-2 > .menu__item:first-child:hover:before,
.menu__submenu--level-2 > .menu__item:first-child.focus:before {
  background-color: #FFFFFF;
}

.header__language-switcher .lang_list_class.first-active::after {
  border-bottom-color: #FFFFFF;
}

.header__language-switcher-label-current,
.header__language-switcher .lang_list_class li a {
  font-family: trade-gothic-next;
}

.header__language-switcher-label-current:after {
  border-top-color: #001C48;
}

@media(max-width: 991px) {
  .header__navigation {
    background-color: #FFFFFF;
  }

  .header__navigation-toggle svg,
  .menu-arrow svg {
    fill: #001C48;
  }
}


/* CUSTOM */
.header__container.main-header-container {
  position:relative;
}
div[data-global-resource-path='knowb4-s2-theme/templates/partials/header-no-navigation.html']{
  position:relative;
  z-index:999;
}
header.header {
  padding-top:0px;
  padding-bottom:0px;
/*   box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
  /*   position:relative; */
  z-index:999;
}
header.header .header__cta {
  display:none;
}
@media (min-width:991px){
  header.header .header__cta {
    margin-left:30px;
    display:inline-block;
  }
}
@media (max-width:992px){
  header.header .header__logo {
    margin: 0 1rem;
    width: 137.5px;
    justify-content: start;
  }
}
/* @media (min-width:768px){
  header.header {
    padding-top:30px;
    padding-bottom:30px;
  } 
} */


/* CUSTOM */
header.header {
  box-shadow: 0px 0px 10px 0px rgba(22, 36, 50, 0.10);
}
.header-bottom-container .widget-span,
.header-top-container .widget-span {
  min-height:0px !important;
  height:auto;
  padding:0px;
  margin:0px;
}
.header__logo a,
.header__logo div,
.header__logo span {
  display:inline-flex;
}

.main-header-container {
  padding-top:17px !important;
  padding-bottom:17px !important;
}

@media (max-width: 991px) {
  .header__container {
    flex-direction: row;
    padding: 0 0 0;
  }
  .header__column {
    position: static;
  }
  .header--toggle,
  .header__close--toggle{
    position: absolute;
    top: 19px;
    right: 20px;
  }
}




/* SEARCH */
header.header .hs-search-field__button  span {
  display:none;
}
header.header .hs-search-field__button {
  font-size:0px;
  padding:0px;
  background:transparent;
  margin:0px;
  position:absolute;
  top:19px;
  border:none;
  border-radius:0px;
  right:20px;
  height:22px;
  width:22px;
  display:inline-flex;
  background-image:url('data:image/svg+xml,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.0126953 20.325L7.7627 12.5875C7.2752 11.975 6.8877 11.2625 6.6002 10.45C6.3127 9.6375 6.1752 8.7875 6.1752 7.9C6.1752 5.6875 6.9377 3.8125 8.47519 2.2875C10.0127 0.7625 11.8877 0 14.0877 0C16.2877 0 18.1627 0.7625 19.7002 2.3C21.2252 3.8375 22.0002 5.7 22.0002 7.9125C22.0002 10.125 21.2377 11.9875 19.7002 13.525C18.1627 15.05 16.3002 15.825 14.0877 15.825C13.2002 15.825 12.3502 15.6875 11.5502 15.4125C10.7502 15.1375 10.0377 14.75 9.4252 14.25L1.6752 22L0.0126953 20.3375V20.325ZM18.0377 11.85C19.1127 10.775 19.6502 9.4625 19.6502 7.9C19.6502 6.35 19.1127 5.0375 18.0377 3.95C16.9627 2.8625 15.6502 2.3375 14.0877 2.3375C12.5252 2.3375 11.2252 2.875 10.1377 3.95C9.0502 5.025 8.5252 6.3375 8.5252 7.9C8.5252 9.45 9.0627 10.7625 10.1377 11.85C11.2127 12.9375 12.5252 13.4625 14.0877 13.4625C15.6377 13.4625 16.9502 12.925 18.0377 11.85Z" fill="%23FF6600"/></svg>');
}
header.header .hs-search-field__bar form {
  position:relative;
}
header.header .hs-search-field__bar .header-search-input {
  width:89%;
}
header.header .header-search-container {
  position:relative;
  width:100%;
  height:0px;
  overflow:visible;
  z-index:9;
}
header.header .header-search {
  position:absolute;
  width:100%;
  top:0px;
  display:none;
  background:#fff;
  padding:20px 1rem;
  gap:20px;
  align-items:center;
  justify-content:center;
}
header.header .header-search.flex {
  display:flex;
}


header.header .header-search .header-search-input {
  width:89%;
}

header.header .close-header-search {
  display:inline-flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
}

header.header .close-header-search>span {
  display:inline-flex;
  color:#676767;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 187.5%;
}
header.header .hs-search-field__suggestions {
  padding: 8px 12px;
}
header.header .hs-search-field__suggestions a {
  font-weight: 300;
}
header.header .header-top-outer .header__language-switcher {
  display:none;
}
header.header .header-search .header-search-controls {
  width: auto;
}

header.header .header-search .hs-search-field__input {
  border-radius: 6px;
  border: 1px solid #8C99AC;
  background: #FFF;
  padding:23px 20px;
}
header.header .header-search .hs-search-field__input::-webkit-search-decoration,
header.header .header-search .hs-search-field__input::-webkit-search-cancel-button,
header.header .header-search .hs-search-field__input::-webkit-search-results-button,
header.header .header-search .hs-search-field__input::-webkit-search-results-decoration {
  -webkit-appearance:none;
}
header.header .header__row-2 .translate-trigger-container {
  display:none;
  position:relative;
}
header.header .header__row-2 .translate-links-container {
  display:none !important;
}
@media (max-width:992px){
/*  this stops the nav being scrollable on mobile, which is a problem, but it also stops a bug where when you scroll with the nav open you get the nav transition which breaks the page. Needs to be fixed.  */
  html.mega-open {
    overflow:hidden;
  }
  html #main-content:after {
    content:"";
    top:0px;
    left:0px;
    position:fixed;
    height:0px;
    width:0px;
    opacity:0;
    transition:0.3s ease opacity;
    -webkit-transition:0.3s ease opacity;
  }
  html.mega-open #main-content:after {
    height:100%;
    opacity:1;
    width:100%;
    background:#fff;
  }
  .header__navigation.open {
    background-color: #FFF;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    max-height: calc(100vh - 115px);
    overflow-y:auto;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 2;
  }
  .header__close--toggle {
    position: absolute;
    top: 22px;
    right: 23px;
  }
  header.header .header__row-2 {
    padding:0px !important;
  }
  header.header .header__row-2 .translate-trigger-container {
    margin-right: 60px;
    margin-top:2px;
    display:block !important;
  }
}

.header-search-container .hs-search-field__suggestions-container {
    position: absolute !important;
    top: 85%;
    width: 100%;
    border-radius: 15px;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
    background: #fff;
}
.header-search-container .hs-search-field__suggestions-container > ul {
  padding:0px !important;
}

.header-search-container .hs-search-field__suggestions-container > ul li {
  padding:10px 15px !important;
}

.translate-link-item.top-nav-link-item {
  line-height:1 !important;
/*   padding:5px 0px !important; */
}




.footer {
  background-color: #FFFFFF;
  padding: 60px 0;
}
.footer__bottom {
  padding-top:60px;
  border-top: 1px solid #CED4DE;
}

.footer .left-section{
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.footer .right-section{
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  text-align:right;
}
.footer .left-section a,
.footer .right-section a,
.footer .left-section span,
.footer .right-section span{
  display:inline-block;
}
.footer .right-section a:hover,
.footer .right-section a{
  color: #001C48;
  text-decoration:underline;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media (min-width:1380px){
  footer.footer .content-wrapper{
    padding:0px 1rem;
  }
}
.footer__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.foot__top {
  justify-content: normal;
  gap:0px;
}
footer.footer .foot__top .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  position: relative;
}
footer.footer .hs-item-has-children:hover > .hs-menu-children-wrapper,
footer.footer .hs-item-has-children > .hs-menu-children-wrapper {
  left: 0% !important;
  opacity: 1 !important;
  top: 0 !important;
}
footer.footer .hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: flex;
}
footer.footer .vertical-menu .hs-menu-item.hs-menu-depth-1:not(:last-child) {
  margin-bottom:20px;
}
footer.footer .vertical-menu .hs-menu-item.hs-menu-depth-1 > ul li {
  margin-top:5px;
}
footer.footer .vertical-menu .hs-menu-item.hs-menu-depth-1 > ul li a{
  font-weight:400;
}
footer.footer .vertical-menu .hs-menu-wrapper ul {
  flex-direction: column;
}
footer.footer .hs-menu-item.hs-menu-depth-1 > a {
  color:#000;
  font-weight:700;
}
.footer__menu-section > div {
  width:100%;
}
@media (min-width:1200px){
  .foot__top {
    justify-content: normal;
    gap:40px;
    align-items: stretch;
  }
  .foot__top > .footer__cta-section {
    width:calc(27% - 26px);
    padding-right:40px;
    border-right:1px solid #CED4DE;
  }
  .footer__menu-section {
    padding-bottom:50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  footer.footer .footer__vertical-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap:7%;
  }
  footer.footer .footer__vertical-links .center-menu{
    width:calc(86% - calc(278px * 2));
  }
  footer.footer .footer__vertical-links .left-menu,
  footer.footer .footer__vertical-links .right-menu{
    width:278px;
  }
  .footer__horizontal-links {
    margin-top:62px;
  }
}

.footer__horizontal-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  column-gap: 30px;
  row-gap: 20px;
}
.footer__horizontal-links ul[role="menu"] {
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap:20px;
}
footer.footer .footer__horizontal-links ul[role="menu"] .hs-menu-item a{
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
footer.footer .footer__horizontal-links ul[role="menu"] li {
  position:relative;
}
footer.footer .footer__horizontal-links ul[role="menu"] li:not(:last-child):after{
  content:"|";
  left:calc(100% + 9.5px);
  position:absolute;
  top:0px;
}

@media (max-width:1200px){

  .footer {
    padding: 30px 0;
  }
  .footer__bottom {
    padding-top: 30px;
    border-top: 1px solid #CED4DE;
  }
  .footer__row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }
}
.footer .footer__cta-section #hs_cos_wrapper_footer_title {
  letter-spacing: -0.72px;
}
.footer .footer__cta-section .button {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}


/* Footer content */

.footer p,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer label,
.footer span,
.footer li,
.footer img {
  color: #001C48;
}

@media (max-width:1200px){
  footer.footer .footer__cta-section {
    text-align:center;
    padding:0px 0px 40px;
  }
  footer.footer .footer__vertical-links {
    margin-left:-1rem;    
    margin-right:-1rem;
    width:100vw;
    border-top:1px solid #CED4DE;
    border-bottom:1px solid #CED4DE;
  }
  footer.footer .footer__vertical-links .left-menu {
    width:100vw;
    padding: 30px 1rem;
    border-bottom:1px solid #CED4DE;
  }
  footer.footer .footer__vertical-links .center-menu,
  footer.footer .footer__vertical-links .right-menu {
    padding: 30px 1rem;
  }
  .footer__vertical-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  footer.footer .footer__vertical-links .center-menu{
    width:35%
  }
  footer.footer .footer__vertical-links .right-menu{
    width:calc(65%);
    border-left: 1px solid #CED4DE;
  }
  footer.footer .footer__social-links {
    order: 1;
    padding: 30px 0px;
    width:100%;
  }
  footer.footer .footer__menu-section > div {
    /*     width: 100vw; */
  }
  footer.footer .left_horizontal_menu {
    order: 2;
    width: 100vw;
    margin: 0px -1rem;
    padding: 30px 1rem;
    text-align: center;
    border-top: 1px solid #CED4DE;
  }
  footer.footer .footer__bottom {
    margin-left:-1rem;
    width: 100vw;
    margin-right:-1rem;
    border-top: 1px solid #CED4DE;
  }
  footer.footer .footer__horizontal-links ul[role="menu"] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap:10px;
    justify-content: center;
  }
  footer.footer .footer__horizontal-links ul[role="menu"] li:not(:last-child):after {
    display:none;
  }

  .footer__horizontal-links {
    gap:0px;
  }
  footer.footer .footer__row.footer__bottom .left-section{
    margin-bottom:30px;
  }
}

footer.footer .center-menu .hs-menu-item.hs-menu-depth-1 > a:not([haspopup="true"]):hover{
  text-decoration:underline;
}
footer.footer .left_horizontal_menu a:hover {
  text-decoration:underline;
}
footer.footer .footer__social-links a {
  transition:0.3s ease all;
  -webkit-transition:0.3s ease all;
}
footer.footer .footer__social-links a:hover{
  transform:scale(1.06);
  -webkit-transform:scale(1.06);
}

@media (max-width:1400px) and (min-width:1200px){
  .footer .footer__cta-section .button {
    font-size:16px;
  }
}
/* 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%;
}

.gp {
  padding: 30px 1rem;
}

@media (min-width: 1280px){
  .gp {
    padding: 50px 0;
  }
}

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