/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

.banner-section .dnd-section,
.banner-section .dnd-section>.row-fluid{
  padding: 0;
  width:100%;
}

.dnd-section > .row-fluid {
  max-width: ;
  margin-left: auto;
  margin-right: auto;
}

.dnd-section>.row-fluid,
.page-center,
.header__container,
.footer__container,
.content-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}

.dnd-section[class*="full-width"]>.row-fluid {
  padding:0;
}


.dnd-section .widget-type-cell {}


.hs-inline-edit .row-fluid [class*="span"] {
  min-height:50px;
}

@media (min-width:768px) {

  .mobile {
    display:none !important;
  }
}

@media (max-width:1199px) {
  .dnd-section>.row-fluid,
  .page-center,
  .header__container,
  .footer__container,
  .content-wrapper {
    max-width:960px;
  }
}

@media (max-width:991px) {
  .dnd-section>.row-fluid,
  .page-center,
  .header__container,
  .footer__container,
  .content-wrapper {
    max-width:720px;
  }
}

@media (max-width: 767px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }

  .desktop {
    display:none !important;
  }

  .dnd-section>.row-fluid,
  .page-center,
  .header__container,
  .footer__container,
  .content-wrapper {
    max-width:calc(100% - 30px);
  }

  .hide--sm {
    display: none!important;
  }
}

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

@font-face {
  font-family:Clan W04 Medium;
  src:
    url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/Clan-W04-Medium.woff2) format("woff2"),
    url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/Clan-W04-Medium.woff)  format("woff");
  font-weight:500;
  font-style:normal;
  font-stretch:normal;
  font-display:swap
}

@font-face{
  font-family:Clan W04 News;
  src: url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/fbe19b689261f30f783ce32fe0a0a190.woff2) format("woff2"),
    url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/d3b8be58b76acecc500a06fabe3dd82c.woff)  format("woff");
  font-weight:475;
  font-style:normal;
  font-stretch:normal;
  font-display:swap
}


@font-face {
  font-family:Clan W04 Medium Italic;
  src:
    url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/Clan-W04-Medium-Italic.woff2) format("woff2"),
    url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/Clan-W04-Medium-Italic.woff)  format("woff");
  font-weight:500;
  font-style:italic;
  font-stretch:normal;
  font-display:swap
}
/* @font-face {
font-family:Clan W04 News;
src:
url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/Clan-W04-News.woff2) format("woff2"),
url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/Clan-W04-News.woff)  format("woff");
font-weight:475;
font-style:normal;
font-stretch:normal;
font-display:swap
} */
@font-face {
  font-family:Clan W04 News Italic;
  src:
    url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/Clan-W04-News-Italic.woff2) format("woff2"),
    url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/Clan-W04-News-Italic.woff)  format("woff");
  font-weight:475;
  font-style:italic;
  font-stretch:normal;
  font-display:swap
}
@font-face {
  font-family:Clan W04 Bold;
  src:
    url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/Clan-W04-Bold.woff2) format("woff2"),
    url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/Clan-W04-Bold-Italic.woff)  format("woff");
  font-weight:700;
  font-style:normal;
  font-stretch:normal;
  font-display:swap
}
@font-face {
  font-family:Clan W04 Bold Italic;
  src:
    url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/Clan-W04-Bold-Italic.woff2) format("woff2"),
    url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/Clan-W04-Bold-Italic.woff)  format("woff");
  font-weight:700;
  font-style:italic;
  font-stretch:normal;
  font-display:swap
}
@font-face {
  font-family:Clan W04 Book;
  src:
    url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/Clan-W04-Book.woff2) format("woff2"),
    url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/Clan-W04-Book.woff)  format("woff");
  font-weight:450;
  font-style:normal;
  font-stretch:normal;
  font-display:swap
}
@font-face {
  font-family:Clan W04 Book Italic;
  src:
    url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/Clan-W04-Book-Italic.woff2) format("woff2"),
    url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/fonts/Clan-W04-Book-Italic.woff2)  format("woff");
  font-weight:450;
  font-style:italic;
  font-stretch:normal;
  font-display:swap
}


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

:root {
  --swiper-navigation-size: 44px;
}

:root {
  --logo-space: 26px;
  --box-shadow-x: 0;
  --box-shadow-y: 24px;
  --box-shadow-blur: 32px;
  --box-shadow-spread: -20px;
}

:root {
  --grid-gutter: 30px;
}

:root {
  --headline-font-size: 53px;
  --headline-line-height: 60px;
  --headline-font-weight: 700;
  --headline-font: "Clan W04 Bold","Verdana","Arial",sans-serif;
  --headline-color: var(--color-grey-dark-2,#1f292e);
  --margin: 0 0 30px 0;
}

:root {
  --text-font: "Clan W04 News","Verdana","Arial",sans-serif;
  --text-font-medium: "Clan W04 Medium","Verdana","Arial",sans-serif;
  --text-font-bold: "Clan W04 Bold","Verdana","Arial",sans-serif;
  --text-font-size: 16px;
  --text-line-height: 28px;
  --text-font-weight: 475;
  --icon-size: 24px;
  --button-font-size: 16px;
  --button-line-height: 28px;
  --button-font: "Clan W04 Medium",sans-serif;
  --button-padding: 7px 35px;
  --button-border-width: 2px;
  --text-media-content-max-width: 750px;
  --text-media-media-max-width: 60%;
  --cards-block-item-inner-padding: 20px;
  --cards-block-item-border-radius: 5px;
  --cards-block-image-transition: 0.2s ease;
  --cards-block-margin-bottom: 30px;
  --contact-box-image-width: 124px;
  --contact-box-margin-bottom: 22px;
  --contact-box-border-width: 2px;
  --contact-box-background-color: transparent;
  --contact-box-border-radius-top-left: 0;
  --contact-box-border-radius-top-right: 0;
  --contact-box-border-radius-bottom-left: 0;
  --contact-box-border-radius-bottom-right: 0;
  --contact-box-profile-image-top: 0;
  --contact-box-padding-top: calc(var(--contact-box-image-width) + var(--contact-box-margin-bottom));
  --footer-padding: 90px 0;
  --footer-meta-padding: 18px 0;
  --footer-padding-between: 125px;
  --text-book: "Clan W04 Book",sans-serif;
  --text-icon-size: 85px;
  --text-icon-margin: 0 30px 0 0;
  --text-icon-max-width: 750px;
  --max-container-width: 1140px;
}



body {
  line-height: 1.4;
  overflow-wrap: break-word;
  font-family:Times;
  font-size:14px;
  line-height:24px;
  color:#1f292e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale;
}

body::-webkit-scrollbar {
  background-color: #c8cdd0;
  width: 8px;
  height: 6px
}

body::-webkit-scrollbar-thumb {
  background: #c8cdd0;
}

body::-webkit-scrollbar-track {
  background: #f2f2f3;
}

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

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

/* Paragraphs */


/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:"Clan W04 Bold","Verdana","Arial",sans-serif;
  margin:0 0 30px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale;
  color:#27348a;
  font-weight:700;
}

h1,.h1 {
  font-size:53px;
  line-height:60px;
}

h2,.h2 {
  font-size:38px;
  line-height:48px;
}

h3,.h3 {
  font-size:32px;
  line-height:42px;
  margin:0 0 25px;
}

h4,.h4 {
  font-size:28px;
  line-height:38px;
  margin:0 0 25px;
}

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

h6,.h6 {
  font-size:14px;
  line-height:24px;
}



/* Lists */

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

.body-container ul:not([class]),
.body-container ol:not([class]) {
  position: relative;
  list-style: none;
  margin-bottom: 30px;
  padding-left: 0;
}

.body-container ul:not([class]) li:not([class]),
.body-container ol:not([class]) li:not([class]) {
  margin-bottom: 4px;
  position: relative;
  padding-left: 1em;
}

.body-container ol:not([class]) li:not([class]) {
  counter-increment: li;
  padding-left: 1em;
}

.body-container ul:not([class]) li:not([class]):before {
  content: "";
  border-color:rgba(242, 148, 0,1.0);
  border-style: solid;
  border-radius: 50%;
  display: block;
  height: 0;
  width: 0;
  left: 0;
  top: 9px;
  position: absolute;
}

.body-container ol:not([class]) li:not([class]):before {
  content: counter(li) ". ";
  color:rgba(242, 148, 0,1.0);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

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>:first-child {
  font-family: "Clan W04 Bold","Verdana","Arial",sans-serif;
  font-size: 22px;
  line-height: 32px;
  margin: 0 0 15px;
  color: #27348a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale;
}

.image-caption, figcaption {
  margin-top: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale;
  font-size:12px;
  line-height:20px;
}

/* Horizontal rules */

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

/* Image alt text */

img {
  max-width:100%;
  height:auto;
  vertical-align:baseline;
}
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;
}
.body-container-wrapper .custom_error_message form,
.body-container-wrapper .widget-type-form,
.body-container-wrapper .widget-type-blog_subscribe,
.body-container-wrapper .widget-type-google_search,
.body-container-wrapper .widget-type-password_prompt.custom_error_message,
.body-container-wrapper .widget-type-email_simple_subscription,
.hs-blog-post .body-container-wrapper .widget-type-blog_comments,
.body-container-wrapper .hs-search-field__bar,
.body-container-wrapper .submitted-message,
.body-container-wrapper #hs_cos_wrapper_password_prompt {
  width:100%;
  max-width:767px;
}

.body-container-wrapper form,
.body-container-wrapper .custom_error_message form,
.body-container-wrapper .widget-type-form form,
.body-container-wrapper .widget-type-blog_subscribe form,
.body-container-wrapper .widget-type-google_search form,
.body-container-wrapper .widget-type-password_prompt.custom_error_message form,
.body-container-wrapper .widget-type-email_simple_subscription form,
.hs-blog-post .body-container-wrapper .widget-type-blog_comments form,
.body-container-wrapper .hs-search-field__bar form,
.body-container-wrapper .submitted-message form,
.body-container-wrapper #hs_cos_wrapper_password_prompt form,
.body-container-wrapper .form-container-wrapper {
  width:100%;
  max-width:767px;
}

.hs-blog-post .body-container-wrapper .widget-type-blog_comments,
.hs-blog-post .body-container-wrapper .widget-type-blog_comments form,
.body-container-wrapper.subscription_preferences .form-container-wrapper{
  max-width:100%;
}

.body-container-wrapper .blog-sidebar form, 
.body-container-wrapper .blog-sidebar .custom_error_message form,
.body-container-wrapper .blog-sidebar .widget-type-form,
.body-container-wrapper .blog-sidebar .widget-type-blog_subscribe,
.body-container-wrapper .blog-sidebar .widget-type-google_search,
.body-container-wrapper .blog-sidebar .widget-type-password_prompt.custom_error_message,
.body-container-wrapper .blog-sidebar .widget-type-email_simple_subscription,
.body-container-wrapper .blog-sidebar .hs-search-field__bar, 
.body-container-wrapper .blog-sidebar .submitted-message,
.body-container-wrapper .blog-sidebar #hs_cos_wrapper_password_prompt {
  background:none;
  padding:0;
  margin:0;
  border:none;
  max-width:100%;
}



#email-prefs-form {
  max-width:100%;
}

.reset-button, .submit-button, input[type=reset] {
  margin: 10px 0;
  width: auto;
}

.hs-button,
.button,
.hs-search-field__button,
.submit-button {
  cursor:pointer;
  display: -moz-inline-stack;
  display: inline-block;
  text-decoration: none;
  white-space:normal;
  margin:15px 0;
  outline:0;
  padding: 4px 35px;
  border: 2px solid #27348a;
  background: #27348a;
  font-size: 16px;
  line-height: 28px;
  font-family: "Clan W04 Medium",sans-serif;
  color: #ffffff;
  cursor: pointer;
  border-radius: 24px;
  text-decoration: none;
  white-space: nowrap;
}

.submit-button--with-icon {
  display: flex;
  align-items: center;
}

.hs-search-field__button {
  margin:0;
}

.hs-search-field__bar button svg {
  fill:currentColor;
}

.hs-button:hover,
.button:hover,
.hs-button:focus,
.button:focus,
.hs-search-field__button:hover,
.hs-search-field__button:focus {
  text-decoration: none;
}

.hs-button:hover,
.button:hover,
.hs-search-field__button:hover,
.submit-button:hover {
  background-color: #f29400;
  border-color #f29400;
}


.content-wrapper .custom_error_message form,
.content-wrapper .widget-type-form,
.content-wrapper .widget-type-blog_subscribe,
.content-wrapper .widget-type-google_search,
.content-wrapper .widget-type-password_prompt.custom_error_message,
.content-wrapper .widget-type-email_simple_subscription,
.hs-blog-post .content-wrapper .widget-type-blog_comments,
.content-wrapper .hs-search-field__bar{
  display:block;
}



.hs-form label {
  color: ;
}

.form-container>.hs_cos_wrapper>.hs-form-field {
  display:none;
}

label,
.hs-reset-widget-show-password {
  font-family: inherit;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  cursor: pointer;
  margin-bottom: 10px;
  font-size:16px;
  line-height:28px;
}

.hs-reset-widget-show-password {
  margin-left:20px;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

form input[type="text"],
form input[type="password"], 
form input[type="datetime"], 
form input[type="datetime-local"], 
form input[type="date"], 
form input[type="month"], 
form input[type="time"], 
form input[type="week"], 
form input[type="number"], 
form input[type="email"], 
form input[type="url"], 
form input[type="search"], 
form input[type="tel"], 
form input[type="color"],
form input[type="file"],
form textarea,
.hs-search-field__input,
#hs-pwd-widget-password { 
  width: 100%;
  max-width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

form input[type="text"],
form input[type="password"], 
form input[type="datetime"], 
form input[type="datetime-local"], 
form input[type="date"], 
form input[type="month"], 
form input[type="time"], 
form input[type="week"], 
form input[type="number"], 
form input[type="email"], 
form input[type="url"], 
form input[type="search"], 
form input[type="tel"], 
form input[type="color"],
form input[type="file"],
form textarea,
form  select,
.hs-input,
.hs-search-field__input,
#hs-pwd-widget-password{
  color: #1f292e;
  position: relative;
  padding: 5px 0;
  border-radius: 0;
  border: none;
  outline: none;
  resize: none;
  background-color: rgb(0 0 0 / 0%);
  outline:0;
}

form input[type="text"]::placeholder,
form input[type="password"]::placeholder, 
form input[type="datetime"]::placeholder, 
form input[type="datetime-local"]::placeholder, 
form input[type="date"]::placeholder, 
form input[type="month"]::placeholder, 
form input[type="time"]::placeholder, 
form input[type="week"]::placeholder, 
form input[type="number"]::placeholder, 
form input[type="email"]::placeholder, 
form input[type="url"]::placeholder, 
form input[type="search"]::placeholder, 
form input[type="tel"]::placeholder,
form input[type="color"]::placeholder,
form input[type="file"]::placeholder,
form textarea::placeholder,
form select::placeholder,
form select::placeholder,
form textarea::placeholder,
.hs-search-field__input::placeholder,
#hs-pwd-widget-password::placeholder,
textarea.hs-input::placeholder {

}

form input[type="text"]:focus,
form input[type="password"]:focus, 
form input[type="datetime"]:focus, 
form input[type="datetime-local"]:focus, 
form input[type="date"]:focus, 
form input[type="month"]:focus, 
form input[type="time"]:focus, 
form input[type="week"]:focus, 
form input[type="number"]:focus, 
form input[type="email"]:focus, 
form input[type="url"]:focus, 
form input[type="search"]:focus, 
form input[type="tel"]:focus,
form input[type="color"]:focus,
form input[type="file"]:focus,
form textarea:focus,
form select:focus,
form select:focus,
form textarea:focus,
.hs-input:focus, 
.hs-search-field__input:focus,
#hs-pwd-widget-password:focus{
}

form input[type="text"]:hover,
form input[type="password"]:hover, 
form input[type="datetime"]:hover, 
form input[type="datetime-local"]:hover, 
form input[type="date"]:hover, 
form input[type="month"]:hover, 
form input[type="time"]:hover, 
form input[type="week"]:hover, 
form input[type="number"]:hover, 
form input[type="email"]:hover, 
form input[type="url"]:hover, 
form input[type="search"]:hover, 
form input[type="tel"]:hover,
form input[type="color"]:hover,
form input[type="file"]:hover,
form textarea:hover,
form select:hover,
form select:hover,
form textarea:hover,
.hs-search-field__input:hover,
#hs-pwd-widget-password:hover{

}

form input[type="text"].error,
form input[type="password"].error, 
form input[type="datetime"].error, 
form input[type="datetime-local"].error, 
form input[type="date"].error, 
form input[type="month"].error, 
form input[type="time"].error, 
form input[type="week"].error, 
form input[type="number"].error, 
form input[type="email"].error, 
form input[type="url"].error, 
form input[type="search"].error, 
form input[type="tel"].error,
form input[type="color"].error,
form input[type="file"].error,
form textarea.error,
form select.error,
form select.error,
form textarea.error,
.hs-input.error, 
.hs-search-field__input.error,
#hs-pwd-widget-passwor.error{
}

form input[type="text"].error:hover,
form input[type="password"].error:hover, 
form input[type="datetime"].error:hover, 
form input[type="datetime-local"].error:hover, 
form input[type="date"].error:hover, 
form input[type="month"].error:hover, 
form input[type="time"].error:hover, 
form input[type="week"].error:hover, 
form input[type="number"].error:hover, 
form input[type="email"].error:hover, 
form input[type="url"].error:hover, 
form input[type="search"].error:hover, 
form input[type="tel"].error:hover,
form input[type="color"].error:hover,
form input[type="file"].error:hover,
form textarea.error:hover,
form select.error:hover,
form select.error:hover,
form textarea.error:hover,
.hs-input.error:hover, 
.hs-search-field__input.error:hover,
#hs-pwd-widget-passwor.error:hover{
}


form input[type="text"].error:focus,
form input[type="password"].error:focus, 
form input[type="datetime"].error, 
form input[type="datetime-local"].error:focus, 
form input[type="date"].error:focus, 
form input[type="month"].error:focus, 
form input[type="time"].error:focus, 
form input[type="week"].error:focus, 
form input[type="number"].error:focus, 
form input[type="email"].error:focus, 
form input[type="url"].error:focus, 
form input[type="search"].error:focus, 
form input[type="tel"].error:focus,
form input[type="color"].error:focus,
form input[type="file"].error:focus,
form textarea.error:focus,
form select.error:focus,
form select.error:focus,
form textarea.error:focus,
.hs-input.error:focus, 
.hs-search-field__input.error:focus,
#hs-pwd-widget-passwor.error:focus {

}


#hs-pwd-widget-password {
  height:33px !important;
  margin-top:0 !important;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
  min-height:auto;
}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input:-moz-placeholder {
  color: ;
}

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

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}


textarea.hs-input {
  height: auto;
}

select[multiple].hs-input {
  height: inherit;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

.hs-error-msgs {
  margin:10px 0;
  padding:0;
  list-style:none;
}
.hs-error-msgs label {
  margin: 0;
  letter-spacing: normal;
}

.hs-form-field input+label {
  display:inline-block;
  display: inline-block;
  vertical-align: bottom;
  margin: 0;
}

hs-input[type=checkbox], .hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
}


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

.hs-form-field {
  margin-bottom: 20px;
  padding-top:calc(1em + 5px);
}

.hs-field-desc {
  color: ;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: red;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: ;
  color: ;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}
@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 90%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: ;
}

/* ================== Footer Form ============================ */

@media (max-width:767px) {

  .body-container-wrapper .custom_error_message form,
  .body-container-wrapper .widget-type-form,
  .body-container-wrapper .widget-type-blog_subscribe,
  .body-container-wrapper .widget-type-google_search,
  .body-container-wrapper .widget-type-password_prompt.custom_error_message,
  .body-container-wrapper .widget-type-email_simple_subscription,
  .hs-blog-post .body-container-wrapper .widget-type-blog_comments,
  .body-container-wrapper .hs-search-field__bar,
  .body-container-wrapper .submitted-message,
  .body-container-wrapper #hs_cos_wrapper_password_prompt {
    max-width:100%;
  }

  .body-container-wrapper form,
  .body-container-wrapper .custom_error_message form,
  .body-container-wrapper .widget-type-form form,
  .body-container-wrapper .widget-type-blog_subscribe form,
  .body-container-wrapper .widget-type-google_search form,
  .body-container-wrapper .widget-type-password_prompt.custom_error_message form,
  .body-container-wrapper .widget-type-email_simple_subscription form,
  .hs-blog-post .body-container-wrapper .widget-type-blog_comments form,
  .body-container-wrapper .hs-search-field__bar form,
  .body-container-wrapper .submitted-message form,
  .body-container-wrapper #hs_cos_wrapper_password_prompt form,
  .body-container-wrapper #email-prefs-form,
  .body-container-wrapper .form-container-wrapper{
    max-width:100%;
  }

}


@media (max-width: 479px) {
  .hs-recaptcha {
    overflow:auto !important;
  }

}
/* Table */

table {
  border: 1px solid;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table Cells */

th,
td {
  border: 1px solid;
  padding: 0.75rem;
  vertical-align: top;
}

/* Table Header */

thead th,
thead td {
  border-bottom: 2px solid;
  vertical-align: bottom;
}

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

.custom-header-height {
  height:106px;
}

.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  -webkit-box-shadow: 0 31px 67px -32px rgba(0,0,0,0.3);
  box-shadow: 0 31px 67px -32px rgba(0,0,0,0.3);
}

.custom-top-header {
  background:-webkit-gradient(linear,left top, right top,from(#3f54de),to(#27348a));
  background:-o-linear-gradient(left,#3f54de,#27348a);
  background:linear-gradient(90deg,#3f54de,#27348a);
  padding:5px 0;
  color:#fff;
}

.custom-top-header a {
  color:#fff;
  text-decoration:none;
}

.custom-top-header .hs-menu-wrapper {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.custom-top-header .hs-menu-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.custom-top-header .hs-menu-wrapper>ul li {
  margin-left:30px;
}

.header__wrapper {
  color:#27348a;
  padding:20px 0;
  background-color:#ffffff;
}

.header__wrapper .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__logo {
  width: 124px;
  height: 32px;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-family:"Clan W04 Medium",sans-serif;
}

.content-toggle__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  cursor: pointer;
  color:#27348a;
  font-family:"Clan W04 Medium",sans-serif;
}

.content-toggle__trigger:hover {
  color:#f29400;
}

.header__actions .search-toggle {
  margin-right: 20px;
}

.content-toggle__icon {
  width:24px;
  height:24px;
}

.content-toggle__icon--active {
  display: block;
}

.content-toggle__icon--inactive {
  display: none;
  color: #f29400;
}

.separator {
  position: relative;
  margin-right: 20px;
  margin-left: 20px;
  color: #27348a;
  height: 23px;
}

.header__actions .separator {
  margin:0 30px;
}

.separator:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  background: currentColor;
}


.content-toggle--label-right .content-toggle__label {
  margin-left: 10px;
}

.content-toggle__label--active {
  display: inline-block;
}

.content-toggle__label--inactive {
  display: none;
}

.header__tab-content.header__menu {
  border-top: 1px solid #c8cdd0;
  padding: 0 0 20px;
  top: 106px;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 3;
}

.header__tab-content.header__menu .inner {
  overflow: hidden;
}

.header__tab-content.header__menu .animate-menu {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  flex-flow: row nowrap;
  flex: 0 0 auto;
  min-height: calc(100vh - 34px - 20px * 2 - 32px);
}

.header__tab-content.header__menu .animate-menu ul {
  background: #fff;
  border-left: 1px solid #c8cdd0;
  width: 25%;
  min-width: 25%;
  max-width: 25%;
  height: calc(100vh - 106px);
  overflow-y: auto;
  display:none;
}

.header__tab-content.header__menu .animate-menu ul.mega-menu {
  padding-top: calc(24px + 20px * 2);
  border-left: 0;
}

.header__tab-content.header__menu .animate-menu ul.active-panel,
.header__tab-content.header__menu .animate-menu ul.submenu-open {
  display:block;
}

.custom-menu-primary {
  display:none;
}

.mobile-open .custom-menu-primary {
  display:block;
}


.animate-menu-primary {
  display:none;
}

.header__tab-content.header__menu .animate-menu ul li {
  position:relative;
}

.header__tab-content.header__menu .animate-menu ul li a {
  padding:20px 30px;
  cursor: pointer;
  hyphens: auto;
  color:currentcolor;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family:"Clan W04 Medium",sans-serif;
  color: #27348a;
  text-decoration:none;
}

.header__tab-content.header__menu .animate-menu ul li a:hover,
.header__tab-content.header__menu .animate-menu ul li.active-child>a {
  background-color:#f2f2f3;
  color:#f29400;
}

.header__tab-content.header__menu .animate-menu ul li.hs-item-has-children>a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(30px/2);
  background: url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/images/navigate_next--primary.svg);
  transform: translateY(-50%);
  transition: transform .2s ease;
  width:24px;
  height:24px;
}

.header__tab-content.header__menu .animate-menu ul li.hs-item-has-children.active-child>a:after,
.header__tab-content.header__menu .animate-menu ul li.hs-item-has-children>a:hover:after{
  background: url(//43860871.fs1.hubspotusercontent-na1.net/hubfs/43860871/raw_assets/public/Leadec_december2023/images/navigate_next--secondary.svg);
  transform: translate(2px,-50%);
}

.header__tab-content.header__menu .animate-menu ul li.dl-label {
  position: relative;
  padding-bottom: 40px;
}

.header__tab-content.header__menu .animate-menu ul li.dl-label:after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 20px;
  height: 1px;
  width: calc(100% - 30px * 2);
  background: #c8cdd0;
}

.header__tab-content.header__menu .animate-menu ul li.dl-back .icon {
  display:block;
  width:24px;
  height:24px;
}

.header__tab-content.header__menu .animate-menu ul::-webkit-scrollbar {
  background-color: #c8cdd0;
  width: 8px;
  height: 6px
}

.header__tab-content.header__menu .animate-menu ul::-webkit-scrollbar-thumb {
  background: #c8cdd0;
}

.header__tab-content.header__menu .animate-menu ul::-webkit-scrollbar-track {
  background: #f2f2f3;
}

.overlay {
  content:"";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31,41,46,.5);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  pointer-events: all;
  transition: opacity .2s ease;
}

.mobile-open .overlay,
.search-open .overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.mobile-open .mobile-trigger .content-toggle__icon--inactive,
.mobile-open .mobile-trigger .content-toggle__label--inactive{
  display: block;
}

.mobile-open .mobile-trigger .content-toggle__icon--active,
.mobile-open .mobile-trigger .content-toggle__label--active {
  display: none;
}

.search-open .search-toggle .content-toggle__icon--inactive {
  display: block;
}

.search-open .search-toggle .content-toggle__icon--active {
  display: none;
}

.custom-logo img {
  height: 100%!important;
  width: auto!important;
  max-width: none;
}

.header__tab-content.header__search {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 20px 0;
  z-index: 3;
  border-top: 1px solid #c8cdd0;
  background-color: #fff;
  display:none;
}

.search-open .header__tab-content.header__search {
  display:block;
}

.header__tab-content.header__search .form--content-beside {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
}

.header__tab-content.header__search .form__field {
  margin-bottom: 20px;
  width: calc(100% - 181px);
  padding-top: 21px;
}

.header__tab-content.header__search .form__field input {
  font-family:"Clan W04 News","Verdana","Arial",sans-serif;
  font-size:14px;
  line-height:24px;

  width: 100%;
  display: flex;
  flex-flow: row;
  border-radius: 0;
  border: none;
  outline: none;
  resize: none;
  color:#1f292e;
  padding:5px 0;
  border-bottom: 1px dashed #27348a;
  position:relative;
}

.header__tab-content.header__search .form__field input:focus {
  border-bottom: 1px solid #27348a;
}


.submit-button {
  margin: 10px 0 0 30px;
  -webkit-font-smoothing: auto;
}

.submit-button svg {
  width:100%;
  height:100% !important;
}

.submit-button .icon {
  width:24px;
  height:24px;
}

.header__tab-content.header__menu .animate-menu ul li.dl-back a:hover {
  background:none !important;
}

.header__tab-content.header__menu .animate-menu ul li.dl-back a .icon {
  transition: transform .2s ease;
}

.header__tab-content.header__menu .animate-menu ul li.dl-back a:hover .icon {
  cursor: pointer;
  transform: translateX(-2px);
}

.header__tab-content.header__menu .animate-menu ul.submenu-open>li.dl-back {
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

@media (max-width:1140px) {
  .header__tab-content.header__menu .inner {
    max-width: 100%;
  }
}

@media (max-width:991px) {
  .header__tab-content.header__menu .animate-menu ul {
    width: 50%;
    min-width: 50%;
    max-width: 50%;
  }

  .header__tab-content.header__menu .animate-menu ul li.hs-item-has-children>a:after {
    right:30px;
  }
}

@media (max-width:767px) {

  .header__wrapper {
    padding:15px 0;
  }

  .top-links,.header__wrapper .separator,
  .custom-top-header {
    display: none;
  } 

  .menu-toggle {
    margin-left: 15px;
  }

  .header__actions .search-toggle {
    margin-right:15px;
  }

  .header__logo {
    height:40px;
  }

  .header__tab-content.header__search .form__field {
    width: calc(100% - 68px);
  }

  .header__tab-content.header__search {
    padding: 15px 0;
    top: 100%;
  }

  .header__tab-content.header__menu .inner {
    max-width: calc(100% - 30px);
  }

  .header__tab-content.header__menu .animate-menu ul {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .header__tab-content.header__menu .animate-menu ul li.dl-back {
    width: 84px;
    display: inline-block;
    padding-top: 13px;
  }

  .header__tab-content.header__menu .animate-menu ul li.dl-label {
    width: calc(100% - 84px);
    display: inline-block;
    padding-top: 20px;
  }

  .header__tab-content.header__menu .animate-menu ul li.dl-label:after {
    width: 104%;
    left: -55px;
  }

  .header__tab-content.header__menu .animate-menu ul li.dl-label a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    transform: translateY(-50%);
    height: 24px;
    background: #27348a;
  }

  .header__tab-content.header__menu .animate-menu ul li.dl-back a {
    position: relative;
    top: 6px;
  }

  .header__tab-content.header__menu {
    top: 100%;
  }

  .custom-header-height {
    height:80px;
  }

  .submit-button {
    padding: 5px;
  }

}
.footer__meta {
  --text-font-size: 14px;
  --text-line-height: 24px;
  font-family: var(--text-font);
  font-size: var(--text-font-size);
  line-height: var(--text-line-height);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale;
  background:-webkit-gradient(linear,left top, right top,from(#27348a),to(#3f54de));
  background:-o-linear-gradient(left,#27348a,#3f54de);
  background:linear-gradient(90deg,#27348a,#3f54de);
  padding: 18px 0;
  font-size: 14px;
  line-height: 24px;
  font-family: "Clan W04 News","Verdana","Arial",sans-serif;
}

.custom-footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.custom-footer .footer__meta>.inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.custom-footer-menu .hs-menu-wrapper>ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.custom-footer-menu .hs-menu-wrapper>ul>li {
  margin-left:30px;
}

.custom-footer-menu .hs-menu-wrapper>ul>li>a {
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale;
  font-size:14px;
  line-height:24px;
  font-family:"Clan W04 News","Verdana","Arial",sans-serif;
}

.custom-footer p {
  margin:0;
}

.custom-footer,
.custom-footer p,
.custom-footer h1,
.custom-footer h2,
.custom-footer h3,
.custom-footer h4,
.custom-footer h5,
.custom-footer h6 {
  color:#fff;
}

.custom-footer a {
  color:#fff;
  font-family:"Clan W04 Medium",sans-serif;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale;
}

.footer__main {
  background:-webkit-gradient(linear,left top, right top,from(#414141),to(#939393));
  background:-o-linear-gradient(left,#414141,#939393);
  background:linear-gradient(90deg,#414141,#939393);
  padding:90px 0;
}

.footer__main>.inner {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 165px;
  flex: 0 1 165px;
}

.footer__logo {
  width: 165px;
}

.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 125px;
}

.footer__contact {
  margin-bottom: 35px;
}

.footer__contact .content-bodytext {
  width:100%;
}

.footer__contact .content-bodytext>.hs_cos_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__contact .content-bodytext h1,
.footer__contact .content-bodytext h2, 
.footer__contact .content-bodytext h3, 
.footer__contact .content-bodytext h4,
.footer__contact .content-bodytext h5,
.footer__contact .content-bodytext h6 {
  font-weight: 700;
  width: 100%;
  -webkit-box-flex: 100%;
  -ms-flex: 100%;
  flex: 100%;
  margin-bottom: 35px;
  font-family: "Clan W04 Bold","Verdana","Arial",sans-serif;
}

.footer__contact .content-bodytext * {
  color:#fff;
}

.footer-social-icons-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-social-icons-wrapper .footer__social-element {
  margin-right: 20px;
  font-size: 0;
}

.footer-social-icons-wrapper .icon--large {
  --icon-size: 36px;
  display: block;
  width: var(--icon-size);
  height: var(--icon-size);
}

.custom-footer a:hover {
  color:#f29400;
}

.custom-footer-logo a,
.custom-footer-social,
.custom-footer-social a {
  font-family:Times;
}

@media (max-width:1199px) {
  .footer__right {
    padding-left:80px;
  }
}

@media (max-width:991px) {
  .footer__left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    margin-bottom: 60px;
  }

  .footer__main>.inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .footer__right {
    padding-left:0;
  }
}

@media (max-width:767px) {
  .custom-footer .inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin:0 0 56px;
  }

  .footer__right {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }

  .custom-footer .content-bodytext .hs_cos_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    text-align: center;
  }

  .custom-footer .content-bodytext .hs_cos_wrapper>* {
    margin-bottom: 35px;
  }

  footer__contact .inner {
    max-width:calc(100% - 30px);
  }

  .footer-social-icons-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-social-icons-wrapper .footer__social-element {
    margin: 10px;
  }

  .footer__meta>.inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
  }

  .footer__copyright {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  
  .custom-footer-menu {
    width:100%;
  }

  .custom-footer-menu .hs-menu-wrapper>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 14px;
    width: 100%;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }

  .custom-footer-menu .hs-menu-wrapper>ul li {
    margin-left: 0;
    white-space: nowrap;
  }
  
  .custom-footer-menu .hs-menu-wrapper>ul>li>a {
    padding:0 3px;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 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;
  }
}