/* 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;
}
*{
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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


body {
  line-height:1.33;
  overflow-wrap: break-word;font-feature-settings: 'liga' off, 'clig' off;
}

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

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

/* Paragraphs */

p {
  margin: 0 0 15px;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
  
-webkit-transition: all .25s ease-in-out;
-moz-transition: all .25s ease-in-out;
-o-transition: all .25s ease-in-out;
-ms-transition: all .25s ease-in-out;
transition: all .25s ease-in-out;
;
}
.body-container-wrapper a:hover {
  text-decoration: underline;
}
/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  line-height:1.1;
}
h1,
.h1 {
  line-height: 1.111; /* 60px */
}

h2,
.h2 {
  line-height: 1.316; /* 50px letter-spacing: -1px;*/
}

h3,
.h3 {
  line-height: 1.417; /* 34px */
}

h4,
.h4 {
  line-height: 1.273; /* 28px */
}

h5,
.h5 {
  line-height: 1.333; /* 24px */
}

h6,
.h6 {
  line-height: 1.375; /* 22px */
}

/* Lists */

ul,
ol {
  margin: 0 0 15px;
  padding-left: 25px;
}

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

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

.no-list li {
  margin: 0
}
/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

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

sup {
  top: -.5em
}

sub {
  bottom: -.25em
}

b,strong {
  font-weight: 700
}

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

audio,canvas,embed,iframe,object,svg,video {
  vertical-align: middle;
  display: block;
}

/* Custom class */
.lg-font{
  font-size:24px;
  line-height:1.5833;
}

.sm-font{
  font-size:14px;
  line-height:142.857%;
}

@media (max-width: 991px) {
  .lg-font{
    font-size:18px;
  }
}

@media (max-width:767px) {
  .lg-font{
    font-size:16px;
  }
  .video-btn svg {
    width: 80px;
    height: 80px;
  }
}

/* Custom style */

.flex,.mob-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.flex,.flex-wrap,.mob-flex {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.flex-no-wrap,.flex.flex-no-wrap,.mob-flex.flex-no-wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap
}
.mob-flex.desk-flex-no-wrap, .flex.desk-flex-no-wrap{
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap
}

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.flex-between-center,.flex-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.flex-between-center {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.flex-row {
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row
}

.flex-row,.flex-row-reverse {
  -webkit-box-orient: horizontal
}

.flex-row-reverse {
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.flex-col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse
}

.align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline
}

.align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

.justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

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

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around
}

.justify-evenly {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly
}

.text-align_right{text-align:right;}
.text-align_center{text-align:center;}
.text-align_left{text-align:left;}
.text-align_justify{text-align:justify;}
.w-full{width:100%;}
.max-w-full{max-width:100%;}
.mt-10{margin-top:10px;}
.splide__list {
  
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
;
}
.transition-none{
  transition:none;
}
.fancybox__slide.has-html,.fancybox__slide.has-iframe{
  padding-right:15px !important;
  padding-left:15px !important;
}
.carousel-arrows {
  display: flex;
  gap: 10px;
}
.carousel-arrows button {
  background: transparent;
  border:0 !important;
  cursor: pointer;
  height: 48px;
  margin: 0;
  padding: 0;
  position: static;
  transform: unset;
  width: 48px;
}
.carousel-arrows button svg {
  height: inherit;
  transform: unset;
  width: inherit;
}
.carousel-arrows button:hover {
  background-color: var(--color-primary);
}
.carousel-arrows button:hover svg path {
  fill: var(--LION-Neutral-100);
}
.heading-content .description>:last-child,.heading-content h2 {
  margin: 0;
}
.heading-content {
  gap: 9px;
  margin-bottom: 20px;
}
.overflow-hidden{overflow: hidden;}
.thumbnail-image {
  position: relative;
}
.thumbnail-image .video-btn {
  left: 50%;
  position: absolute;
  right: auto;
  top: 50%;
  transform: translate(-50%, -50%);
}
.f-html {
  padding: 0 !important;
}
.hs-inline-edit * > [data-aos] {
  transform: none !important;
  opacity: 1 !important;
}
.height-auto{height:auto;}
@media(max-width: 767px) {
  .flex {
    display:block
  }
  .mob-flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
  }
  .mob-flex-col-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
  }
  .mob-flex.flex-between-center {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
  }
  .mob-flex.desk-flex-no-wrap ,.flex.desk-flex-no-wrap{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
  .mob-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
  .mob-justify-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }

  .mob-justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }
  .mob-justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }

  .mob-justify-around {
    -ms-flex-pack: distribute;
    justify-content: space-around
  }

  .mob-justify-evenly {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly
  }
  .thumbnail-image .video-btn svg{width:80px;height:80px;}
}
.hs-col1 {
  width: 100%;
}
.hs-col2{width:calc(100%/2);}
.hs-col3{width:calc(100%/3);}
.hs-col4{width:calc(100%/4);}
.hs-col5{width:calc(100%/5);}
.hs-col6{width:calc(100%/6);}
.hs-transition {
  
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
;
}
.btn-wrapper {
  gap: 10px;
}
.text-decoration-none{
  text-decoration: none !important;
}
.list-style-none{list-style:none;}
.splide__arrows.has-arrows {
  display: flex !important;
}
.splide__arrows:not(.has-arrows) {
  display: none !important;
}
.splide__arrow:disabled {
  background: transparent;
}
.splide__arrows.carousel-arrows.hs-slider_arrow_side_by_side {
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  right: 0;
}
.splide__arrows.carousel-arrows.hs-slider_arrow_side_by_side .splide__arrow--prev {
  left: -42px;
  right: auto;
}
.splide__arrows.carousel-arrows.hs-slider_arrow_side_by_side button {
  position: absolute;
}
.splide__arrows.carousel-arrows.hs-slider_arrow_side_by_side .splide__arrow--next {
  left: auto;
  right: -42px;
}
.hs-breadcrumb-menu-divider:before {
  content: "»";
}
@media(max-width:1440px){
  .splide__arrows.carousel-arrows.hs-slider_arrow_side_by_side .splide__arrow--next {
    right: 15px;
  }
  .splide__arrows.carousel-arrows.hs-slider_arrow_side_by_side .splide__arrow--prev {
    left: 15px;
  }
}
@media(max-width:1200px){
  .hs-col4,
  .hs-col5,
  .hs-col6,
  .hs-col3{width:33.333%;}
}
@media(max-width:767px){
  .hs-col4,
  .hs-col5,
  .hs-col6,
  .hs-col3{width:50%;}
  .carousel-arrows button {
    height: 40px;
    width: 40px;
  }
}
@media(max-width:640px){
  .splide__arrows.carousel-arrows.hs-slider_arrow_side_by_side .splide__arrow--next{
    right: 0;
  }
  .splide__arrows.carousel-arrows.hs-slider_arrow_side_by_side .splide__arrow--prev {
    left: 0;
  }
}
@media(max-width:540px){
  .hs-col4,
  .hs-col5,
  .hs-col6,
  .hs-col2,
  .hs-col3{width:100%;}
}
/*  Page specific style */
.body-container--leadership-listing .two-column-content .content-column .content-buttons, 
.body-container--leadership-listing .two-column-content .facts-section {
  margin-top: 22px;
}
/* Breadcrumbs */
.breadcrumbs-wrapper .hs-breadcrumb-menu-item {
  padding: 0;
  font-size: 16px;
}
.breadcrumbs-wrapper .hs-breadcrumb-menu-item .hs-breadcrumb-menu-divider::before {
  padding-right: 10px;
  padding-left: 0;
}
.breadcrumbs-wrapper a.hs-breadcrumb-label:not(:hover),
.breadcrumbs-wrapper .hs-breadcrumb-menu-item .hs-breadcrumb-menu-divider::before {
  color: #444444;
}
.breadcrumbs-wrapper span.hs-breadcrumb-label {
  color: var(--color-primary);
}
blockquote {
  margin: 40px 0;
  border-left-color: var(--color-primary);
  padding-left: 37px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.333;
  letter-spacing: 0%;
}
@media(max-width:991px){
  blockquote {
    font-size: 18px;
    padding-left: 25px;
    margin: 20px 0;
  }
}
/* ==========================================================================
Pagination
========================================================================== */

.product-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 40px;
}

.product-pagination > *:not(.pagination-dots) {
  letter-spacing: 5px;
}

.pagination-link,
.pagination-arrow,
.pagination-dots {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--LION-Neutral-600);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.product-pagination a.pagination-link {
  text-decoration: none;
}

.product-pagination > button:hover {
  padding: 0;
  border: 0;
  background-color: transparent;
  color: var(--color-primary);
}

.pagination-link.is-active {
  color: var(--color-primary);
  font-weight: 700;
}

.pagination-arrow.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.product-pagination button:focus,.product-pagination button:active {
  background-color: transparent;
  border: 0;
  color: inherit;
}
/*  blog-two-column */
.blog-two-column-content .about-media{ flex-basis: calc(var(--image-width));width:100%;}
.blog-two-column-content .content-column{flex-basis: calc(100% - calc(var(--image-width) + var(--columnGap))); width:100%;}
.blog-two-column-content .content-column .heading-content{gap:18px;}
.blog-two-column-content .about-wrapper{gap:var(--columnGap);}
.blog-two-column-content .content-column .heading-content{margin:0;}
.blog-two-column-content .section-heading{margin-bottom:25px;}
/* Two column */
.blog-two-column-content .section-heading{margin-bottom:25px;}
.blog-two-column-content .content-column .facts-grid{gap:40px;padding-top:14px;}
.blog-two-column-content .content-column article.fact-card{width:calc(50% - 20px);display:flex;flex-direction:column;gap:15px;}
.blog-two-column-content .facts-section,.blog-two-column-content .content-column .content-buttons{margin-top:30px;}
.blog-two-column-content .content-column .hs-btn-link.hs-icon_position-right:not(:hover) {
  padding-left: 0;
}
.blog-two-column-content .content-column .hs-btn-link.hs-icon_position-left:not(:hover) {
  padding-right: 0;
}
.blog-two-column-content .about-media img {
  height: auto;
  width: 100%;
}
.blog-two-column-content .content-column {
  gap:10px;
}
.blog-two-column-content .blog-post-hero__date { 
  color:var(--color-primary);
  font-weight: 700;
  line-height: 1.333;
  letter-spacing: 0px; text-transform:uppercase;}

.blog-two-column-content .post-title {
  letter-spacing:-1px;
  color:#170F49;
  margin: 0;
}

.blog-two-column-content .content-column .description h3 {
  line-height: 1.3333;
}
.blog-two-column-content .content-column.w-full {
  flex-basis: 100%;
}
@media(max-width:1200px){
  .blog-two-column-content .about-media,
  .blog-two-column-content .content-column{max-width:calc(100% - (50% + 15px));}
  .blog-two-column-content {--columnGap:30px;}
}
@media(max-width:991px){
  .blog-two-column-content .content-column article.fact-card {
    width: 100%;
  }
}
@media(max-width:767px){
  .blog-two-column-content .about-media,
  .blog-two-column-content .content-column{max-width:100%;}
  .blog-two-column-content .about-media img{width:100%;}
  .blog-two-column-content .blog-post-hero__date {
    font-size: 16px;
  }
}
/* Animation */
@keyframes cm-fadeInUp {
  0% { opacity: 0; -webkit-transform: translateY(20px); -ms-transform: translateY(20px); transform: translateY(20px); }
  100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}

/* Filter css */
.filter-search-section{padding:20px 0;}
.filter-search-section .search-wrapper{padding-bottom:20px;}
.filter-search-section form{padding:0;position:relative;}
.filter-search-section form.product-filter-form{max-width:829px;margin:0 auto;}
.filter-search-section input.product-search__input{width:100%;padding:15px 50px 14px 14px;border:1px solid #D3D7DC;padding-right:50px;}
.filter-search-section button.product-search__button{position:absolute;right:0;padding:13px 12px;background:transparent;border:0;border-left:1px solid #D3D7DC;}
.filter-search-section button.product-search__button:hover{background-color:var(--color-primary,#EB3300);color:#fff;}
.filter-search-section input.product-search__input::placeholder{color:#8A8E93;}
.filter-search-section button.product-search__button:hover circle,
.filter-search-section button.product-search__button:hover path{stroke:#fff;}
.filter-search-section ul.filter-list{flex:1;}
.filter-search-section ul.filter-list,
.filter-search-section form{column-gap:50px;}
.filter-search-section ul.filter-list .select-item{border-bottom:2px solid #e0e8f0;color:var(--color-primary);column-gap:10px;cursor:pointer;font-size:18px;font-weight:700;letter-spacing:0;line-height:24px;margin-bottom:23px;padding:21px 0 10px;flex-wrap:nowrap;justify-content:space-between;}
.filter-search-section ul.filter-list li.filter-item{position:relative;max-width:200px;width:100%;}
.filter-search-section ul.filter-list li.filter-item > ul{position:absolute;top:calc(100% - 23px);width:100%;height:auto;z-index:5;background:#fff;border:.5px solid #ddd;border-radius:8px;box-shadow:0 8px 24px rgba(0,0,0,.12),0 2px 6px rgba(0,0,0,.08);min-width:200px;padding:4px 0;display:none;flex-direction:column;}
.filter-search-section ul.filter-list li.filter-item > ul > li{border-radius:6px;color:#111;cursor:pointer;font-size:14px;padding:8px 12px;}
.filter-search-section ul.filter-list li.filter-item > ul > li span{font-size:14px;display:inline-block;}
.filter-search-section ul.filter-list li.filter-item > ul > li *{color:#000;}
.filter-search-section ul.filter-list li.filter-item > ul > li input.js-product-filter{display:block;inset:0;position:absolute;width:100%;height:100%;margin:0;border:0;opacity:0;padding:8px 12px;}
.filter-search-section ul.filter-list li.filter-item label{width:100%;}
.filter-search-section ul.filter-list li.filter-item > ul > li input.js-product-filter:hover + span,
.filter-search-section ul.filter-list li.filter-item > ul > li:hover a{color:var(--color-primary);}
button,
.button,
.hs-button,
.hs-blog-post-listing__post-button,
.hs-btn-secondary,
.hs-btn-primary,
.hs-btn-outline,
.hs-btn-link {
  display:inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  line-height: normal;
  background-color: var(--color-primary, #EB3300); 
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;font-family:var(--font-family-secondary),"sans-serif";
  cursor: pointer;
}

button:hover,
.button:hover,
.hs-button:hover,
.hs-blog-post-listing__post-button:hover,
.hs-btn-outline:hover,
.hs-btn-link:hover,
.hs-btn-primary:hover,
.hs-btn-secondary:hover{
  background-color: var(--color-primary-alt, #717174);
  color: var(--LION-Neutral-100, #FFF);
  text-decoration:none !important;
}

button:active,
.button:active,
.hs-button:active,
.hs-blog-post-listing__post-button:active,
.hs-btn-outline:active,
.hs-btn-link:active {
  background-color: var(--LION-Neutral-500, #8A8E93);
  color: var(--LION-Neutral-100, #FFF);
  text-decoration:none !important;
}

button:disabled,
.button:disabled,
.hs-button:disabled,
.hs-blog-post-listing__post-button:disabled,
.hs-btn-outline:disabled,
.hs-btn-link:disabled {
  opacity: 0.5;
  background-color: var(--LION-Brand, #EB3300);
  text-decoration:none !important;
}
.button__icon,
button svg path,
.button svg path,
.hs-button svg path,
.hs-blog-post-listing__post-button svg path,
.hs-btn-secondary svg path,
.hs-btn-primary svg path,
.hs-btn-outline svg path,
.hs-btn-link svg path{
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
  position: relative;
}

.hs-icon_position-right .button__icon{
  right: 0;
}
.hs-icon_position-left .button__icon {
  left: 0;
  transform: rotate(180deg);
}
.hs-icon_position-right:hover .button__icon {
  right: -10px;
}
.hs-icon_position-left:hover .button__icon {
  left: -10px;
}
/* No button */
.no-button {
  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;
}

/* Shared styles */
button,
.button{
  display: inline-flex;
  align-items: center;   
  position: relative;
  overflow: hidden;
}
.button .button__icon--plus {
  transform: rotate(0);
}
.button:hover .button__icon--plus {
  transform: rotate(90deg);
  left:0 !important;right: 0 !important;
}

.sm-btn { gap: 6px; }
.md-btn { gap: 8px; }

/* Arrow icons */
.sm-btn .button__icon--arrow svg { width: 15px; }
.md-btn .button__icon--arrow svg { width: 18px; }

/* Plus icons */
.sm-btn .button__icon--plus svg { width: 10px; height: 10px; }
.md-btn .button__icon--plus svg { width: 13px; }

/* Position adjustments */
.sm-btn.hs-icon_position-right .button__icon--plus { top: 1px; }

/* Hover animations */
.sm-btn.hs-icon_position-right:hover .button__icon { right: -6px; }
.sm-btn.hs-icon_position-left:hover .button__icon { left: -6px; }

.md-btn.hs-icon_position-right:hover .button__icon { right: -8px; }
.md-btn.hs-icon_position-left:hover .button__icon { left: -8px; }
.button:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  transition: transform 0.3s ease-in;
  mix-blend-mode: normal;
  background: radial-gradient(circle at center, #717174  24%, #eb3300 25%,#eb3300 100%);
}

.button:hover:after {
  transform: scale(4.2);
}

.button__text,.button__icon {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px){
  .lg-btn {
    padding: 8px 24px !important;
  }
}
/* Fields */

.hs-form-field {
  margin-bottom:0;
}

/* Labels */

form .hs-form-field > label{
  display: block;
  margin-bottom:10px;
}

/* 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-weight: 400;
  line-height: 1.333;
  letter-spacing: 0%;
  vertical-align: middle;
  width: 100% !important;
  padding: 14px 10px;
  outline: none;
  font-size:14px;
}
form select {
  -webkit-appearance: none;
  background-image: url(https://3475623.fs1.hubspotusercontent-na1.net/hubfs/3475623/raw_assets/public/Lion%20protects%20-%202026/images/Downarrow.svg);
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: auto;
  padding-right: 40px;'
  cursor:pointer;
}
form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}
form fieldset:last-of-type > .hs-form-field {
  margin: 0;
}
form .hs-submit {
  margin-top: 10px;
}
/* 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;
}
form {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 20px;
}

form .form-columns-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

form .form-columns-2 .hs-form-field {
  width: calc(100% - (50% + 10px)) !important;
  margin: 0;
}

form .hs-form-field .input {
  margin: 0 !important;
}

form label {
  margin: 0;
  font-weight: 400;
  line-height: 1.333;
  letter-spacing: 0%;
  vertical-align: middle;
}
form textarea {
  height: 100px;
  resize: none !important;
}
/* 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;
  font-size: 16px;
}

/* 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;
}
form .hs-button {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  white-space: normal !important;
  gap: 8px;
  line-height: 100%;
  padding: 11px 24px;
}
form .actions {
  text-align: center;
}
form .hs-button .button__icon--arrow {
  right: 0;
}
form .hs-button:hover .button__icon {
  right: -8px;
}
.hs-error-msgs label, .hs-error-msg {
  color: var(--color-primary) !important;
  font-size: 16px;
}
/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
@media(max-width:767px){
  /*   form {
  padding: 15px !important;
} */
  form .form-columns-2 .hs-form-field {
    width: 100% !important;
  }
}

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

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

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

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

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

form.hs-form .field {
  margin-bottom: 0;
  position: relative;
}
form.hs-form .hs-form-field>label {
  -webkit-touch-callout: none;
  -webkit-appearance: none;
  background: 0 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block !important;
  height: auto;
  left: 0;
  margin: 0;
  opacity: .9;
  outline: 0;
  padding: 12px 10px 10px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 1px;
  -webkit-transition: font-size .3s ease-out, padding-top .3s ease-out, color .3s ease-out;
  -moz-transition: font-size .3s ease-out,padding-top .3s ease-out,color .3s ease-out;
  -ms-transition: font-size .3s ease-out,padding-top .3s ease-out,color .3s ease-out;
  -o-transition: font-size .3s ease-out,padding-top .3s ease-out,color .3s ease-out;
  transition: font-size .3s ease-out, padding-top .3s ease-out, color .3s ease-out;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  z-index: 1;
}

form.hs-form .hs-form-field.filled>label,form.hs-form .hs-form-field.focus>label {
  font-size: 10px !important;
  padding-top: 3px
}
form.hs-form .hs-form-field.hs-fieldtype-select:not(.filled,.focus)>label {
  opacity: 0;
}
form input[type=file] {
  padding: 1.5em;
  border: 2px dashed #bbb;
  background-color: #fff;
  transition: border-color 0.25s ease-in-out;
}

form.hs-form .hs-form-field.hs-fieldtype-file>label {
  position: static;
  padding: 0;
  font-size: 18px !important;
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

.header-right-section .top-right-menu li.menu-item > a{
  font-family:var(--font-family-secondary),"sans-serif";
}
.header-main .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;    
  gap: 10px;
  width:100%;
}
.header-wrapper {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index:50;
}

header.header,.header-wrapper {
  min-height:var(--header-height, 164px);
}
.header-main {
  
  height: 83px;
  padding: 8px 0 8px;    
}
.scroll-header .header-main{
  height: 83px;
}
.header-main .logo {
  max-width: 194px;
  width: 100%;
}

.header-main .logo a {
  vertical-align: middle;
  display: block;
}

.header-main .search-wrapper {
  max-width: 593px;
  width: 100%;
  position: relative;
}

.search-wrapper input#header_site_search-input {
  padding: 14px 49px 14px 18px;
  border: 1px solid var(--LION-Neutral-300);
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px; 
  background: #fff;
}
.search-wrapper input#header_site_search-input:focus{outline:none;}
.search-wrapper ul#autocomplete-results {
  z-index: 5;
  background-color: #fff;
  box-shadow: 1px 10px 16px -9px hsla(0, 0%, 48%, .75);
  position: absolute;
  width: 100%;
}
.search-wrapper .hs-search-field__suggestions li{  padding: 10px;}
.hs-search-field__suggestions a:hover {
  color: var(--color-primary);
}
/* Chrome, Safari, Edge */
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.header-main .search-wrapper .hs-search-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  padding: 12px 13px;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--LION-Neutral-300);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  height: 37px;
}
.search-wrapper .hs-search-btn svg {
  width: 24px;
  height: 24px;
}

.search-wrapper .hs-search-btn svg path {
  fill: var(--LION-Neutral-700);
}
.header-main .search-wrapper .hs-search-btn svg circle,
.search-wrapper .hs-search-btn svg path{
  transition: all 0.3s ease-in-out;
}
.header-main .search-wrapper .hs-search-btn:hover {
  background: var(--color-primary, #EB3300);
}
.header-main .search-wrapper .hs-search-field__input {
  padding: 9px 10px;
  outline: none !important;
}
.header-main .search-wrapper .hs-search-btn:hover svg path,.header-main .search-wrapper .hs-search-btn:hover svg circle {
  stroke: var(--LION-Neutral-100);
}
.search-wrapper input#header_site_search-input::placeholder {
  color: #8A8E93;
}
.header-right-section .top-right-menu {
  list-style:none;
  display:flex;
  padding: 0;
  margin: 0;
  gap: 25px;
}

.header-right-section {
  display: flex;
  flex-direction: column;
  
}

.header-right-section li.menu-item.has-dropdown {
  position: relative;
}

.top-right-menu .dropdown-menu {
  position: absolute;
  top: 100%;
  background-color: #fff;
  border-radius: 4px;
  padding: 10px;
  width: 130px;
  right: 0;
  z-index: 5;
  margin-top: 10px;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
  visibility: hidden;
  opacity: 1;
}

.header-right-section .top-right-menu > li:not(:last-child) > a:after {
  content: "";
  display: block;
  width: 1px;
  height: 95%;
  background-color: var(--color-primary);
  position: absolute;
  right: -12.5px;
}

.header-right-section .top-right-menu li.menu-item > a {
  position: relative;
  display: flex;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.header-right-section .top-right-menu li .dropdown-item a {
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  color: var(--LION-Neutral-800,#1B1C1E);
}

.header-right-section .top-right-menu .dropdown-item {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.top-right-menu .child-trigger,
.header-right-section .top-right-menu li.menu-item > a:hover,.header-right-section .top-right-menu li .dropdown-item a:hover,
.custom-menu-primary > ul.menu > li > a:hover,.menu-tabs-wrapper > .hs-menu-children-wrapper > .hs-menu-item:hover > a,
.menu-tabs-wrapper .tab-item:hover > a,.menu-tabs-wrapper .hs-menu-children-wrapper ul ul ul a:hover{
  color: var(--color-primary);
}
.top-right-menu .dropdown-item .dropdown-image {
  width: 24px;
  text-align:center;
}
.top-right-menu .child-trigger {
  margin-left: 6px;
}

.header-right-section li.menu-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.icons-wrapper-and-btn {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}

.icons-wrapper-and-btn ul.social-icons {
  --icon-color: var(--LION-Neutral-100);
  --icon-hover-color: var(--color-primary);
  gap: 17px;
}

.icons-wrapper-and-btn a.hs-btn-primary.md-btn {
  padding: 7px 15px;
}
.nav-wrapper ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.custom-menu-primary > ul.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 77px;
  flex: 1 0 0;   
  flex-wrap: wrap;
  row-gap: 10px;
}

.custom-menu-primary > ul.menu > li > a {
  padding: 12px 0;
  display: flex;
  gap: 9px;
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px; /* 111.111% */
}
.child-trigger {
  width: 10px;
  height: auto;
  display: flex;
  align-items: center;
}

.child-trigger svg path {
  stroke: currentColor;
}
.header-main .logo img {
  width: 100%;
  height: auto;
}
nav.nav-wrapper {
  border-top: 1px solid #4a4a4a;
  position: relative;
  border-color: #4a4a4a !important;
}
.header-site-search{ display:none;}
.header-right-section li.menu-item.has-dropdown span {
  gap: 8px;
}
.header-right-section .top-right-menu li.menu-item > a img {
  width: 25px;
}
/* Mega menu */
.nav-wrapper .menu-tabs-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  border: 1px solid #DDD;
  background: #FFF;
  box-shadow: 0 10px 14px 0 rgba(74, 58, 255, 0.01);    
  padding: 0 18px;
}

.menu-tabs-wrapper > .hs-menu-children-wrapper > .hs-menu-item > a {
  color: var(--LION-Neutral-800);
  font-size: 15px;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
  display: inline-block;
  position: relative;
}

.menu-tabs-wrapper .hs-menu-children-wrapper > .hs-menu-item:first-child {
  padding-left: 0;
}

.menu-tabs-wrapper .hs-menu-children-wrapper > .hs-menu-item:last-child {
  padding-right: 0;
}

.menu-tabs-wrapper > .hs-menu-children-wrapper > .hs-menu-item:not(:last-child) > a:after {
  content: "";
  display: block;
  width: 2px;
  height: 28.683px;
  position: absolute;
  right: calc(-1 * var(--lr-padding));
  background: var(
    --LION-Neutral-300);
  top: 0;
  margin: auto 0;
  bottom: 0;
}

.menu-tabs-wrapper > .hs-menu-children-wrapper > .hs-menu-item {
  --lr-padding: 86px;
  --tb-padding: 18px;
  padding: var(--tb-padding) var(--lr-padding);
}

.menu-tabs-wrapper > .hs-menu-children-wrapper > .hs-menu-item > a:before {
  content: "";
  width: 0;
  height: 5px;
  background: var(--color-primary);
  display: block;
  position: absolute;
  bottom: calc(-1 * var(--tb-padding) + -2px);
  transition: all 0.3s ease-in-out;
}

.menu-tabs-wrapper > .hs-menu-children-wrapper > .hs-menu-item:hover > a:before {
  width: 100%;
}
.menu-tabs-wrapper .tab-row {
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  background-color: var(--LION-Neutral-100);
  box-shadow: 0 10px 14px 0 rgba(74, 58, 255, 0.01);
  top: 101%;
  flex-wrap: nowrap;
  margin: 0 -1px;
}

.menu-tabs-wrapper .tab-item {
  min-width: 240px;
  min-height: 202px;
  background-position:top center;
  background-size: cover;
  background-repeat: no-repeat;
  flex: 1 auto;
  min-width: max(150px, 16.6vw);
  width: 100%;
}

.menu-tabs-wrapper .tab-item > a {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px; /* 100% */
  display: flex;
  padding: 10px 20px;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  overflow:hidden;
}
.menu-tabs-wrapper .tab-item > a:after {
  content: "";
  display: block;
  width: 100%;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
  height: 84.16%;
  position: absolute;
  bottom: 0;
  top: auto;
  right: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  opacity:1;
  transition: all 0.3s ease-in-out;
}
/* .menu-tabs-wrapper .tab-item:hover > a:after {
opacity: 1;
} */
.mega-menu-content {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  background-color: var(--LION-Neutral-100);
  /*   box-shadow: 0 10px 14px 0 rgba(74, 58, 255, 0.1); */
  top: 100%;
  padding: 39px 0;    
  z-index: 5;
  /*   height: clamp(310px, 90vh, 420px); */
}

.mega-menu-content .hs-menu-wrapper > ul {
  display: flex;
  justify-content: flex-start;
  gap: 78px;
}

.mega-menu-content .hs-menu-wrapper > ul > li > a {
  display: none;
}
.mega-menu-content .hs-menu-wrapper > ul > .hs-item-has-children > ul.hs-menu-children-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mega-menu-content .hs-menu-wrapper > ul > .hs-item-has-children > ul.hs-menu-children-wrapper > li > a {
  color: var(--LION-Neutral-800);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
  display: block;
  margin-bottom: 10px;
}

.mega-menu-content .hs-menu-wrapper > ul > .hs-item-has-children {
  flex: 1 auto;
  max-width: 250px;
}

.menu-tabs-wrapper .hs-menu-children-wrapper > .hs-menu-item > .hs-menu-children-wrapper {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.menu-tabs-wrapper .hs-menu-children-wrapper ul ul ul a {
  color: var(--LION-Neutral-800,#1B1C1E);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.mega-menu-content .hs-menu-wrapper > ul > .hs-item-has-children > ul.hs-menu-children-wrapper > li > a[href="javascript:;"] {
  cursor: text;
}
.mega-menu-content > .menu-wrapper {
  overflow-x: hidden;
  overflow-y: auto;
  height: 40vh;
  max-height: 375px;
}
@media(max-height:810px){
  .mega-menu-content > .menu-wrapper {
    height: 30vh;
  }
}
.nav-wrapper .menu-tabs-wrapper, .menu-tabs-wrapper .tab-row,.mega-menu-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
  transform: translateY(20px);
}

.custom-menu-primary > ul.menu > .hs-sub-menu:hover .menu-tabs-wrapper,
.menu-tabs-wrapper > .hs-menu-children-wrapper > .hs-menu-item.hs-sub-menu:hover .tab-row,.menu-tabs-wrapper .tab-item:hover .mega-menu-content,
.custom-menu-primary > ul.menu > .hs-sub-menu:hover .skip_upper_tab .tab-row,
.custom-menu-primary > ul.menu > .hs-sub-menu .menu-tabs-wrapper.open,
.menu-tabs-wrapper > .hs-menu-children-wrapper > .hs-menu-item.hs-sub-menu .tab-row.open, .mega-menu-content.open,
.menu-tabs-wrapper .tab-item .mega-menu-content.open
{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  z-index:20;
}
header.header.scroll-header, .scroll-header .header-wrapper {
  min-height: var(--header-height, 164px);
}
.menu-tabs-wrapper .skip_upper_tab .tab-row {top: 0;}
.header-main .logo img {
  max-width: 150px;
}
.header-right-section {
  gap: 10px;
}
.header-main .logo img,
.header-main,
.header-right-section,
.search-wrapper input#header_site_search-input,
.header-main .search-wrapper .hs-search-btn,
.search-wrapper .hs-search-btn svg,
header.header, .header-wrapper,.menu-tabs-wrapper > .hs-menu-children-wrapper > .hs-menu-item{
  transition: all 0.3s ease-in-out;
}
.search-wrapper input#header_site_search-input {
  padding: 10px 49px 10px 14px;
}

.header-main .search-wrapper .hs-search-btn {
  padding: 10px;
}
.custom-menu-primary > ul.menu > li > a {
  padding: 12px 0;
  font-size: 16px;
}

.menu-tabs-wrapper > .hs-menu-children-wrapper > .hs-menu-item {
  --tb-padding: 12px;
}
.menu-tabs-wrapper.no_border {
  border: 0;
  background: transparent !important;
}

.feature-upper-wrap {
  gap: 15px;
}

.feature-upper-wrap .feature-wrapper {
  max-width: 250px;
  width: 100%;
}

.feature-upper-wrap .hs_cos_wrapper {
  max-width: calc(100% - 265px);
  width: 100%;
}

.feature-upper-wrap .feature-wrapper img {
  max-height: 234px;
  width: 100%;
}

.feature-upper-wrap .feature-wrapper h3.feature-title {
  margin-top: 18px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 120% */
  margin-bottom: 0;
}

.feature-upper-wrap .feature-wrapper a {
  color: var(--color-primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.feature-upper-wrap .feature-wrapper a > span {
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
  position: relative;
  right: 0;
}

.feature-upper-wrap .feature-wrapper a:hover > span {
  right: -10px;
}
.hs-search-field__form {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  align-items: center;
  gap: 0;
}
.hs-search-field__suggestions-container{width:100%;}
.skip-to-content {
  position: fixed;
  /*   left: 15px; */
  top: 12%;
  z-index: 9999;
  background-color: #ffff;
  padding: 10px 15px;
  left: -9999px;
}
.skip-to-content:focus {
  left: 15px;
  z-index: 9999;
}
@media(min-width:992px){
  .tab-mob-only{display:none;}
}
@media(max-width:1366px){
  .menu-tabs-wrapper .tab-item {
    min-height: 130px;
  }

  .mega-menu-content {
    padding: 25px 0;
  }

  @media (max-height: 810px) {
    .mega-menu-content > .menu-wrapper {
      height: 45vh;
    }
  }
}
@media(max-width:991px){
  header.header.scroll-header, .scroll-header .header-wrapper {
    min-height: unset !important;
  }
  .desktop-only{display:none;}
  header.header, .header-wrapper {
    min-height:var(--header-height, 110px);
  }
  .mobile-trigger {
    gap: 10px;
    color: #fff;
  }
  .header-main {
    height: auto;
    padding: 10px 0;
  }
  .scroll-header .header-main {
    height: auto;
  }
  .header-main .logo img {
    max-width: 140px;
  }
  .scroll-header .header-main .logo img{  max-width: 120px;}
}
@media(max-width:1280px){
  .feature-upper-wrap .feature-wrapper {
    max-width:200px;
  }
  .feature-upper-wrap .feature-wrapper h3.feature-title {
    font-size: 16px;
  }
  .feature-upper-wrap .feature-wrapper img {
    max-height: 150px;
  }
}
@media(max-width:1200px){
  .menu-tabs-wrapper > .hs-menu-children-wrapper > .hs-menu-item {
    --lr-padding: 30px;
    --tb-padding: 10px;
  }
  .custom-menu-primary > ul.menu > li > a {
    font-size: 16px;
    padding: 10px 0;
  }
  .menu-tabs-wrapper .tab-item {
    min-height: 150px;
  }
  .mega-menu-content {
    padding: 30px 0;
  }
  .mega-menu-content .hs-menu-wrapper > ul > .hs-item-has-children > ul.hs-menu-children-wrapper {
    gap: 20px;
  }
  .menu-tabs-wrapper .tab-item > a {
    font-size: 18px;
  }
  .header-main .search-wrapper {
    max-width: 400px;
  }
  .menu-tabs-wrapper .hs-menu-children-wrapper ul ul ul a {
    font-size: 14px;
  }
  .menu-tabs-wrapper .hs-menu-children-wrapper > .hs-menu-item > .hs-menu-children-wrapper {
    gap: 5px;
  }
  .mega-menu-content .hs-menu-wrapper > ul {
    gap: 4vw;
  }
}
/* ===========================
Bottom Footer
=========================== */

.bottom-footer-section {
  padding: 21px 0;
  background-color: var(--LION-Neutral-100);
}

.bottom-footer-section .f-copyright-text {
  color: var(--LION-Neutral-500, #8A8E93);
  font-weight: 400;
}
.bottom-footer-section .f-copyright-text,.top-footer-section .hs-menu-wrapper > ul ul > li > a{
  font-family:var(--font-family-secondary),"sans-serif";
}

/* ===========================
Top Footer
=========================== */

.top-footer-section {
  padding: 50px 0 48px;
  background-color: var(--color-primary-dark);
}

.top-footer-section .hs-menu-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-footer-section .hs-menu-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  --gap: 50px;
  gap: var(--gap);
}

.top-footer-section .hs-menu-wrapper > ul > li {
  display: flex;
  flex-direction: column;
  width: calc((100% - (var(--gap) * 4)) / 5);
  line-height: 20px;
}

.top-footer-section .hs-menu-wrapper ul > li {
  display: flex;
  flex-direction: column;
  line-height: 20px;
}

.top-footer-section .hs-menu-wrapper > ul > li > a {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3333;
}

.top-footer-section .hs-menu-wrapper > ul > li > a[href="javascript:;"] {
  cursor: text;
  pointer-events: none;
}

.top-footer-section .hs-menu-wrapper > ul ul {
  display: flex;
  flex-direction: column;
}

.top-footer-section .hs-menu-wrapper > ul ul ul {
  display: none;
}

.top-footer-section .hs-menu-wrapper > ul > li > ul > li:not(:last-child) {
  margin-bottom: 10px;
}

.top-footer-section .hs-menu-wrapper > ul ul > li > a {
  display: inline-block;

  color: var(--LION-Neutral-300, #D9DBE9);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.top-footer-section .hs-menu-wrapper > ul ul > li > a:hover {
  color: var(--LION-Neutral-100, #D9DBE9);
}


/* ===========================
Social Icons
=========================== */

.social-icons {
  --icon-color: var(--color-primary);
  --icon-hover-color: var(--color-primary);
  gap: 24px;
}

.social-icons .social-icons__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--icon-color);
  line-height: 1;
  transform: scale(1);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--icon-hover-color);
  transform: scale(1.2);
}

.social-icons svg {
  display: block;
  width: var(--icon-width,18px);
  height: var(--icon-height,18px);
}

.social-icons svg path,
.social-icons svg rect,
.social-icons svg circle,
.social-icons svg ellipse,
.social-icons svg polygon {
  fill: currentColor;
  transition: all 0.3s ease-in-out;
}


/* ===========================
Tablet
=========================== */

@media (min-width: 768px) {

  .top-footer-section .hs-menu-wrapper > ul ul {
    display: flex !important;
  }

}

@media (max-width: 1024px) {

  .top-footer-section .hs-menu-wrapper ul {
    --gap: 25px;
  }

}

@media (max-width: 991px) {

  .top-footer-section .hs-menu-wrapper > ul > li {
    width: calc((100% - (var(--gap) * 2)) / 3);
  }

}


/* ===========================
Mobile
=========================== */

@media (max-width: 767px) {

  .bottom-footer-section .f-copyright-text,
  .f-social-icons {
    width: 100%;
    text-align: center;
  }

  .bottom-footer-section .content-wrapper {
    gap: 25px;
  }

  .f-social-icons {
    display: flex;
    justify-content: center;
  }

  .top-footer-section .hs-menu-wrapper > ul > li {
    width: 100%;
  }

  .top-footer-section .hs-menu-wrapper > ul > li > a::after {
    content: "\f107";
    margin-left: 5px;

    font-family: FontAwesome;
    font-size: 14px;
  }

  .top-footer-section .hs-menu-wrapper > ul > li > a,
  .top-footer-section .hs-menu-wrapper > ul > li > a[href="javascript:;"] {
    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;
    pointer-events: auto;
  }

  .top-footer-section .hs-menu-wrapper > ul > li > ul {
    display: none;
  }

}


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