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

/* Global color variables */
:root {
  --primary-color: 		#1A5A97;
  --dark-blue: 			#003666;
  --blue-black: 		#011934;
  --light-blue: 		#5194CC;
  --active-blue: 		#3FD5DB;
  --max-content-width: 	1825px;
}

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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



.blurred {
  filter: blur(10px); /* Adjust blur value as necessary */
  pointer-events: none; /* Optionally disable interactions with the blurred content */
} 

#main-content {
  margin-top: -178px;
}

/* Constrain the child .row-fluid to a max-width of 1800px */
#main-content .dnd-section > .row-fluid:first-child  {
    max-width: var(--max-content-width);
    padding: 5% 40px;
    margin: 0 auto; /* Center the container */
}

#main-content .dnd-section.centered-row-10 > .row-fluid {
  padding: 0 40px 5%;
}


#main-content .no-header {
  margin-top: 200px;
}

.related_products {
  border-top: 1px solid #707070;
}


@media (max-width: 767px) {

  #main-content .dnd-section > .row-fluid:first-child {
    padding-left: 20px;
    padding-right: 20px;
  }

}


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

/* =====================================================
   Typography Resets
   ===================================================== 

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

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

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}


/* =====================================================
   Custom Typography
   ===================================================== 


/* Global font styles */
body, button, input, textarea, select {
  font-family: 'Proxima Nova', sans-serif;
  color: var(--primary-color);
}

body {
  font-size: clamp(1rem, 1.7vw, 2rem);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 300; /* Light */
}

strong, .bold-text {
  font-weight: 700; /* Bold */
}


h1 {
  font-size: clamp(3rem, 5vw, 6rem); 
  line-height: 1.2;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 4.125rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(2rem,3.5vw,3.125rem);
  line-height: 1.2;
}

p {
  font-size: clamp(1rem, 1.7vw, 2rem);
  font-weight: 300;
}

ul, ol {
  font-weight: 300;
}

ul li{
  margin-bottom: 1rem;
}

ul li::marker {
  font-size: 1rem;
  color: currentColor;
}

p a, li a {
  color: var(--primary-color);
  transition: all .2s ease-in-out;
}

p a:hover, li a:hover {
  color: var(--active-blue);
}


.bold_override strong {
  font-weight: 400;
}

.cta-buttons-container .btn {
  font-size: clamp(0.9rem, 1.3vw, 1.625rem);
}

.careers_type ul li {
  margin-bottom: 20px;
  font-size: clamp(1rem, 1.6vw, 1.5rem);
}

.careers_type ul li::marker {
  font-size: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}

th, td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--primary-color);
  text-align: left;
  vertical-align: top;
}

th {
  background-color: #f9f9f9; /* optional for better contrast */
  font-weight: 600;
}

@media (max-width: 600px) {
  table {
    font-size: 0.875rem;
  }

  th, td {
    padding: 0.5rem;
  }
}
/* =====================================================
   Main Button Styles
   ===================================================== */

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


/* =====================================================
   Default Button Styles
   ===================================================== */

.button-wrapper .button {
  background-color: var(--light-blue);
  color: #fff;
  line-height: 1.1;
  text-decoration: none;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.3vw, 1.625rem);
  border-radius: 44px;
  padding: 18px 71px;
}



.button-wrapper .button:hover {
  background-color: var(--active-blue);
}

/* =====================================================
   Outline Button Styles
   ===================================================== */

.button-wrapper.outline_button .button {
  background-color: transparent;
  color: #5194CC;
  border: 2px solid #5194CC;
  line-height: 1.1;
  text-decoration: none;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.3vw, 1.625rem);
  border-radius: 44px;
  padding: 16px 71px;

}

.button-wrapper.outline_button .button:hover {
  background-color: #3FD5DB;
  border-color: #3FD5DB;
  color: #fff;
}

.button-wrapper.white_outline_button .button {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  line-height: 1.1;
  text-decoration: none;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.3vw, 1.625rem);
  border-radius: 44px;
  padding: 16px 71px;

}

.button-wrapper.white_outline_button .button:hover {
  background-color: #3FD5DB;
  border-color: #3FD5DB;
  color: #fff;
}

/* =====================================================
   White Button Blue Outline Styles
   ===================================================== */

.button-wrapper.white_button .button {
  background-color: #fff;
  color: #5194CC;
  border: 2px solid #5194CC;
  line-height: 1.1;
  text-decoration: none;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.3vw, 1.625rem);
  border-radius: 44px;
  padding: 16px 71px;

}

.button-wrapper.white_button .button:hover {
  background-color: #3FD5DB;
  border-color: #3FD5DB;
  color: #fff;
}


/* =====================================================
   CTA MULTIPLE Button Styles
   ===================================================== */

.cta-buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Space between buttons */
  justify-content: flex-start; /* Center buttons horizontally */
}

.btn {
  padding: 13px 39px; /* Button padding */
  text-align: center;
  text-decoration: none;
  color: white; /* Adjust based on your design */
  border: 2px solid var(--light-blue);
  border-radius: 44px;
  font-size: 1.625rem;
  font-weight: 300;
  transition: all 0.2s ease-in-out;
}

.btn-primary {
  background-color: var(--light-blue); 
}

.btn-primary:hover {
  color: #fff;
  background-color: var(--active-blue); 
  border: 2px solid var(--active-blue);
}

.btn-secondary {
  color: var(--light-blue); 
  background-color: #fff; /* Example secondary color */
}

.btn-secondary:hover {
  color: #fff;
  background-color: var(--active-blue); 
  border: 2px solid var(--active-blue);
}

@media (max-width: 600px) {
  .cta-buttons-container {
    flex-direction: column;
  }
}


/* =====================================================
   Arrow Button Styles
   ===================================================== */
 
#main-content button.splide__arrow {
  border: 2px solid var(--light-blue);
  background-color: #fff;
  height: 2em;
  width: 2em;
}

#main-content button.splide__arrow svg { 
  height: 1em;
  width: 1em;
  fill: var(--light-blue);
}

#main-content .splide__pagination__page {
  background-color: var(--light-blue) !important; 
}


/* =====================================================
   Responsive Button Styles
   ===================================================== */

@media (max-width: 767px) {
  .mobile-btn-center .button-wrapper {
    text-align: center !important;
  }
  
  .mobile-btn-left .button-wrapper {
    text-align: left !important;
  }
}
/* Fields */

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

/* Labels */

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

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

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

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

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

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

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

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


/* =====================================================
   Custom Form Styles
   ===================================================== 
*/

form.hsfc-Form label {
  font-family: 'Proxima Nova', sans-serif !important;
  font-size: clamp(1rem, 1.7vw, 1.5rem) !important;
}

form.hsfc-Form h2 { 
  color: #fff !important;
}

form.hsfc-Form .hsfc-Button {
  font-weight: 300 !important;
  font-family: 'Proxima Nova', sans-serif !important;
  font-size: clamp(1rem, 1.7vw, 1.5rem) !important;
}

/* only hide the banner inside your form container */
#hs_form_target_widget_1743009269508-23 .hsfc-Step__Banner {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !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 Container & General Header Styles
   ===================================================== */

.header__container {
  display: flex; /* Aligns children (logo and navs) in a row */
  align-items: center; /* Centers children vertically */
  justify-content: space-between; /* Distributes extra space */
  max-width: var(--max-content-width);
  padding-left: 40px;
  padding-right: 40px;
}

.header__logo {
  flex: 0 0 auto; /* Logo does not grow or shrink */
}

.header__navigation {
  flex: 1 1 auto; /* Navigation areas grow and shrink as needed */
}

.primary-nav {
  justify-content: flex-start; /* Align primary navigation to the start */
}

.secondary-nav {
  justify-content: flex-end; /* Align secondary navigation to the end */
}

.header {
  position: relative;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  animation: slideDown 0.3s forwards;
  z-index: 1000;
}

.header.sticky .header__logo img {
  width: 49px !important;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* =====================================================
   Main Menu / Desktop Navigation Styles
   ===================================================== */

/* Navigation Container */
.main-nav {
  position: relative;
  z-index: 1000;
  padding: 0 20px;
}

/* Left-aligned navigation list */
.nav-list {
  list-style: none;
  display: flex;
  justify-content: flex-start; /* Aligns nav items to the left */
  padding: 0;
  margin: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  text-decoration: none;
  color: var(--primary-color);
  font-size: 21px;
  border-bottom: 5px solid rgba(255, 255, 255, 0);
  transition: color 0.2s ease-in-out;
}

.nav-link:hover {
  color: var(--active-blue);
}

.nav-link.active {
  color: var(--active-blue);
  border-bottom-color: var(--active-blue);
}

.nav-link i {
  margin-left: 5px;
  opacity: 0.8;
  font-size: 0.85em;
  transition: transform 0.1s ease-in-out;
}

.nav-link.active i {
  transform: rotate(180deg);
}

/* =====================================================
   Mega Menu Styles
   ===================================================== */

/* Dropdown Menu (Shared and Positioned Relative to .main-nav) */
.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 68%;
  /* Limit width and center content */
  max-width:100%;
  width: 100vw;
  background-color: #fff;
  padding: 5% 0;
  box-sizing: border-box;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  max-height: 599px;
  height: 100vh;
  justify-content: flex-start;
  -webkit-box-shadow: 0px 23px 35px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 23px 35px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 23px 35px 0px rgba(0,0,0,0.75);
}


.header.sticky .dropdown-menu {
  top: 82%;
}


/* Dropdown Sections */
.dropdown-section {
  display: none; /* Initially hidden, will be shown dynamically */
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.dropdown-section h3 {
  font-size: 18px;
  font-weight: 300;
  color: #BFD1E3;
  line-height: 1;
}

.dropdown-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-section ul li {
  margin-bottom: 18px;
}

.dropdown-section ul li a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.2;
  transition: color 0.2s ease-in-out;
}

.dropdown-section ul li a:hover {
  color: var(--active-blue);
}

/* Mega Menu Grid Layout */
.dropdown-grid {
  display: flex;
  gap: 50px; /* Spacing between columns */
  width: 100%;
  max-width: 1585px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.dropdown-grid.dropdown-grid-even-space{
   justify-content: space-between;
}

.dropdown-grid.dropdown-grid-space-around{
  justify-content: flex-start;
}

.dropdown-column {
  padding: 0 25px; /* Balanced padding */
  position: relative;
  white-space: nowrap; /* Prevents text wrapping */
}

.dropdown-column:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -25px; /* Centered in the gap */
  width: 1px;
  height: 100%;
  background-color: #5194CC;
}

.dropdown-grid.dropdown-grid-even-space .dropdown-column:not(:last-child)::after {
  right: -45px;
}


.dropdown-grid.dropdown-grid-space-around .dropdown-column:not(:last-child)::after {
  right: -20px;
}

/* Column Header (with Image) */
.column-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  line-height: 1;
}

.column-header img {
  height: 100%;
  object-fit: contain;
  width: auto;
  max-width: 100%;
}

.column-header h3,
.column-header h3 a {
  display: flex;
  align-items: center;
  font-size: 1.625rem;
  margin: 0;
  color: #5194CC;
  text-decoration: none;
  font-weight: 400;
   transition: color 0.2s ease-in-out;
}

.column-header h3 a:hover {
  color: var(--active-blue);
}

/* Inner Columns */
.column-content {
  display: flex;
  gap: 50px;
}

.sub-column {
  min-width: 150px;
}

.dropdown-menu h4 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 40px;
  line-height: 1.1;
}

.dropdown-menu h4 a,
.dropdown-menu h4 a:visited {
  text-decoration: none;
  color: var(--primary-color);
   transition: color 0.2s ease-in-out;
}

.dropdown-menu h4 a:hover {
  color: var(--active-blue);
}

.sub-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sub-column ul li {
  margin-bottom: 0;
}

.sub-column ul li a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.2;
  transition: color 0.2s ease-in-out;
}

.sub-column ul li a:hover {
  color: var(--active-blue);
}

.sub-column ul li.link_image a {
  display: flex;
  gap: 20px;
  align-items: center;
}

.sub-column ul li.link_image img {
  width: 95px;
  height: 95px;
  object-fit: contain;
}

.sub-column.challenges-column ul li {
 margin-bottom: 25px; 
}

.icon-list a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-swap {
  position: relative;
  width: 70px;
  height: 55px;
  flex-shrink: 0;
  background-image: var(--default-icon);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}

/* Create layered hover image */
.icon-swap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--hover-icon);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

/* Fade in on hover */
a:hover .icon-swap::after {
  opacity: 1;
}



/* Company Image Column */
.company-image-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-image-column img {
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* =====================================================
   Dropdown Resources & Blog Row
   ===================================================== */

.resources-grid .dropdown-column ul li {
  margin-bottom: 0px;
  line-height: 1.1;
}


.resources-grid .dropdown-column h4 {
  margin-bottom: 0;
}

.resources-grid .dropdown-column h4:nth-of-type(2) {
  margin-top: 20px;
}

.resources-grid .blog-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog-preview {
   display: grid;
  grid-template-columns: minmax(200px, 400px) 1fr;
  align-items: end;
  gap: 20px;
}

.blog-image {
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 414px; /* adjust as needed */
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  position: relative;
}
.blog-image::before {
  content: "";
  display: block;
  padding-bottom: 100%; /* fallback for older browsers */
}

.blog-image .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.blog-image .blog-label {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  z-index: 2;
}

.blog-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  white-space: wrap;
  padding-left: 5%;
  max-width: 414px;
}

.blog-info h4 {
  font-size: clamp(1.5rem,2vw,2rem);
  margin-bottom: 10px;
  color: var(--primary-color);
}

.blog-info p {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 200;
}

.blog-column .continue-link {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 400;
  text-decoration: none;
  transition: color .2s ease-in-out;
}

.blog-column .continue-link:hover {
  color: var(--active-blue);
}

@media (max-width: 1700px) {
  
  .resources-grid .dropdown-column ul li {
    line-height: 1.5;
  }

  
}


/* =====================================================
   Dropdown Company Row
   ===================================================== */

.company-grid {
  align-items: flex-start;
}

.company-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end; /* aligns image and copy bottoms */
  gap: 30px;
  width: 100%;
  flex-wrap: wrap;
  white-space: wrap;
}

.company-image {
  max-width: 822px;
  width: 100%;
  align-self: end;
}

.company-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.company-info {
  align-self: end;
  width: 414px;
}

.company-info h4 {
  font-size: clamp(1.5rem,2vw,2rem);
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.company-info p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-weight: 200;
}

.company-feature  .continue-link {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 400;
  text-decoration: none;
  transition: color .2s ease-in-out;
}

.company-feature  .continue-link:hover {
  color: var(--active-blue);
}


.company-grid .dropdown-column:not(:last-child)::after {
  background-color: transparent;
}


.dropdown-column.company-media-column {
  
  border-left: 1px solid var(--light-blue);
}


/* =====================================================
   Dropdown Bottom Row
   ===================================================== */


.dropdown-section-bottom-row {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: var(--light-blue);
  display: flex;
}

.dropdown-section-bottom-row  .dropdown-section-bottom-row-content {
  max-width: 1510px;
  margin-left: 10%;
  width: 100%;
  padding: 15px 0;
}



.dropdown-section-bottom-row  .dropdown-section-bottom-row-content ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.dropdown-section-bottom-row  .dropdown-section-bottom-row-content ul li {
  font-size: 21px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
} 

.dropdown-section-bottom-row  .dropdown-section-bottom-row-content ul li:not(:last-child) {
  border-right: 2px solid #fff;
}

.dropdown-section-bottom-row  .dropdown-section-bottom-row-content ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 21px;
  padding: 15px 20px;
  font-weight: 400;
}

.dropdown-section-bottom-row  .dropdown-section-bottom-row-content ul li a:hover {
  color: var(--active-blue);
}

/* =====================================================
   Responsive Updates for Mega Menu
   ===================================================== */

/* For viewports 1446px wide or below, switch the dropdown width
   to 100% of the .main-nav instead of 100vw, and hide the pseudo-elements */
@media (max-width: 1560px) {
  
  .dropdown-section {
    max-width:100%;
  }

  .dropdown-grid.dropdown-grid-even-space {
      justify-content: flex-start;
  }
  
  .dropdown-grid.dropdown-grid-even-space .dropdown-column:not(:last-child)::after {
    right: -25px;
  }


   .column-content.column-content-row{
    flex-direction: row;
   }

  .column-header{
    margin-bottom: 15px;
  }

  .dropdown-menu h4 {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  
  .dropdown-menu .challenges h4 {
    margin-bottom: 40px;
  }

  .sub-column ul li {
    margin-bottom: 5px;
  }
  
  .dropdown-section-bottom-row  .dropdown-section-bottom-row-content {
    padding: 15px 40px 15px 0;
  }

}



@media (max-width: 1410px) {
  
  .column-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
}

/* =====================================================
   Secondary Navigation Styles
   ===================================================== */
.secondary-nav {
  display: flex;
  justify-content: flex-end;
}

.secondary-nav .search-link i {
  margin-left: 0;
  margin-right: 5px;
}

.secondary-nav .contact-link {
  background-color: var(--light-blue);
  color: #fff;
  font-weight: 300;
  padding: 8px 42px;
  line-height: 1;
  border-radius: 44px;
  margin-top: 11px;
  border-bottom: none;
  transition: all 0.2s ease-in-out;
}

.secondary-nav .contact-link:hover {
  background-color: var(--active-blue);
}

/* =====================================================
   Mobile Navigation Styles
   ===================================================== */

/* Mobile nav toggle (hamburger) button */
.mobile-nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none; /* Visible only on mobile */
  padding: 10px;
}

/* Hamburger Icon */
.hamburger-icon {
  display: inline-block;
  width: 30px;
  height: 22px;
  position: relative;
}

.hamburger-icon .bar {
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--primary-color);
  left: 0;
  transition: 0.3s;
}

.hamburger-icon .bar:nth-child(1) {
  top: 0;
}

.hamburger-icon .bar:nth-child(2) {
  top: 9px;
}

.hamburger-icon .bar:nth-child(3) {
  top: 18px;
}

/* Mobile Navigation Overlay Animation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  z-index: 1500;
  -webkit-box-shadow: -7px 4px 16px -7px rgba(0,0,0,0.75);
  -moz-box-shadow: -7px 4px 16px -7px rgba(0,0,0,0.75);
  box-shadow: -7px 4px 16px -7px rgba(0,0,0,0.75);
  /* Start hidden off-screen */
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

/* When active, slide into view */
.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav[hidden] {
  display: none;
}

/* Mobile Nav Header (Close Button) */
.mobile-nav-header {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* Mobile Nav Content */
.mobile-nav-content {
  padding: 1rem;
}

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

.mobile-nav-item {
  border-bottom: 1px solid #ddd;
}

.mobile-nav-link-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  padding: 1rem;
  text-decoration: none;
  color: var(--primary-color);
}


/* Adjust chevron spacing if needed */
.mobile-nav-link .mobile-chevron {
  transition: transform 0.3s ease;
  margin-left: 10px;
}

/* Rotate chevron when expanded */
.submenu-toggle[aria-expanded="true"] .mobile-chevron {
  transform: rotate(180deg);
}

/* Mobile Submenu Toggle Button */
.submenu-toggle {
  background: none;
  border: none;
  padding: 1rem;
  cursor: pointer;
}

/* Mobile Submenu (Accordion) */
.mobile-submenu {
  list-style: none;
  padding-left: 1.5rem; 
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

/* When active, allow enough height for the content */
.mobile-submenu.active {
  max-height: 515px; /* Adjust this value if needed */
}

/* =====================================================
   Media Queries
   ===================================================== */
@media (max-width: 1400px) {
  
  .nav-link {
    font-size: 18px;
  }
  
}

/* Mobile Styles: viewport less than 1340px */
@media (max-width: 1250px) {
  /* Hide desktop navigation */
  .desktop-nav,
  .main-nav,
  .secondary-nav {
    display: none;
  }
  /* Show mobile nav toggle */
  .mobile-nav-toggle {
    display: block;
  }
}

/* Desktop Styles: viewport 1340px and above */
@media (min-width: 1250px) {
  .mobile-nav-toggle {
    display: none;
  }
  /* Ensure mobile nav remains hidden on desktop */
  .mobile-nav {
    display: none !important;
  }
}


@media (max-width: 600px) {
  .mobile-nav {
    width: 75%;
  }
}


/* Navigation skipper */

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

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

/* Logo */

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

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

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

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

/* =====================================================
   Media Queries
   ===================================================== */

.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1600;
  display: none;
  justify-content: center;
  align-items: center;
}

.search-popup.show {
  display: flex;
}

.search-popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.search-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #999;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.search-submit {
  background: var(--primary-color);
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}
/* =====================================================
   Primary Footer
   ===================================================== */

.footer__primary-section {
  background-color: #011934 !important;
  padding-top: 80px;
  padding-bottom: 60px;
  padding-left: 40px;
  padding-right: 40px;
}


/* Primary Footer Layout */
.footer-primary-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px; /* Optional gap between columns */
  align-items: flex-start;
  max-width: var(--max-content-width);
  padding-left: 40px;
  padding-right: 40px
}

.footer-primary-column {
  flex: 0 1 auto;
  box-sizing: border-box;
}

.footer_2_column {
  display: flex;
  flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
  gap: 40px;       /* Adjust spacing between columns as needed */
}

.footer_subcolumn {
  box-sizing: border-box; /* Ensure padding/borders are included in the width */
}


.footer__primary-section h3,
.footer__primary-section h3 a {
	color: #fff;
	font-weight: 500;
	font-size: 1.313rem;
	margin-bottom: 20px;
  text-decoration: none;
}



.footer__primary-section h4,
.footer__primary-section h4 a {
	font-size: 0.75rem;
	font-weight: 500;
	line-height:1.2;
	color: var(--light-blue);
	text-transform: uppercase;
	margin-bottom: 0;
  text-decoration: none
}

.footer__primary-section h3 a:hover,
.footer__primary-section h4 a:hover {
  color: var(--active-blue);
}

.footer__primary-section ul {
	list-style-type: none;
	padding: 0;
	font-size: 0.875rem;
}

.footer__primary-section ul li {
  margin-bottom: 0;
}

.footer__primary-section ul li a {
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease-in-out;
}

.footer__primary-section ul li a:hover {
	color: var(--active-blue);
}

.footer__primary-section .hs-button {
	color: #fff;
	font-size: 1.313rem;
	font-weight: 300;
	text-decoration: none;
	background-color: var(--light-blue);
	border-radius: 44px;
	padding: 11px 42px;
	line-height: 1;
}

.footer__primary-section .hs-button:hover {
	background-color: var(--active-blue);
}

.footer__primary-section #hs_cos_wrapper_widget_1738623305397 .social-links__icon svg {
	transition: all 0.2s ease-in-out;
}


.footer__primary-section #hs_cos_wrapper_widget_1738623305397 .social-links__icon:hover svg {
	fill: var(--active-blue);
}


.footer__primary-section address {
	color: #fff;
	text-align: right;
	font-size: 0.875rem;
	font-style: normal;
}


.footer__primary-section address a {
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease-in-out;
}

.footer__primary-section address a:hover {
	color: var(--active-blue);
}



@media (max-width: 1420px) {

	.footer_2_column {
		flex-direction: column;
		gap: 0;
	}

}

@media (max-width: 992px) {

	.footer-primary-column.f2,
	.footer-primary-column.f3,
	.footer-primary-column.f4,
	.footer-primary-column.f5 {
			display: none;
	}

	.footer-primary-row {
		justify-content: space-between;	
	}

}


@media (max-width: 550px) {

	.footer-primary-row {
		flex-direction: column;
	}

	.footer-primary-column {
		width: 100%;
	}

	.footer-primary-column.f1 .widget_1738620458704-flexbox-positioning > div {
		margin: 0 auto;
	}

	.footer-primary-column.f6 .widget_1738622811458-flexbox-positioning > div {
		margin: 0 auto;
	}

	.footer-primary-column.f6  #hs_cos_wrapper_widget_1738623305397 .social-links {
	    justify-content: center;
	}

	.footer-primary-column.f6 h4 {
		text-align: center !important;
	}

	.footer__primary-section address {
		text-align: center;
	}

}
 

/* =====================================================
   Legal Footer
   ===================================================== */

.footer__legal-section {
  background-color: #1A5A97 !important;
  padding-top: 28px;
  padding-bottom: 28px;
}

/* Legal Footer Layout */
.footer-legal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-content-width);
  color: #fff;
  padding-left: 40px;
  padding-right: 40px;
}

.footer-legal-column {
  flex: 0 0 calc(100%/2); /* 2 equal columns */
  padding: 0 10px;
  box-sizing: border-box;
}

.footer__legal-section p {
	margin-bottom: 0;
	line-height: 1.2;
	font-size: 0.875rem;
}

.footer__legal-section p a {
	color: #fff;
	text-decoration: none;
	transition: color 0.2s ease-in-out;
} 

.footer__legal-section p a:hover {
	color: var(--active-blue);
}


@media (max-width: 1100px) {

	.footer-legal-row {
	    flex-direction: column-reverse; /* Reverses order */
	    align-items: stretch; /* Ensures full width */
	  }

  .footer-legal-column {
    flex: 0 0 100%; /* Make each column take full width */
    padding: 10px 0; /* Adjust padding for better spacing */
  }

  .footer__legal-section p {
  	text-align: center !important;
  } 

}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
/* =====================================================
   Home Hero Styles
   ===================================================== */

.hero_banner {
	margin-bottom: -20px;
}

#main-content .hero_banner>.row-fluid {
  max-width: var(--max-content-width);
  width: 100%;
  height: clamp(780px, 50vw, 960px);
  position: relative;
  overflow: hidden;
  padding: 0 40px !important;
}


/* Hero Typography */

.hero_banner h1 {
    margin-bottom: 0;
}


.hero_banner .btn {
	font-size: clamp(1rem, 1.5vw, 1.63rem);
  font-weight: 300;
}

.hero_banner.hero_banner_left > .row-fluid > .span5 > .row-fluid-wrapper {
	max-width: 800px;
	width: 100vw;
}

.hero_banner.hero_banner_left > .row-fluid .span7 {
 	justify-content: flex-end !important;
}


@media (max-width: 1825px) {

	.hero_banner.hero_banner_left > .row-fluid .span5 {
		padding-top: 178px;
	}

}


@media (max-width: 1560px) {

	.hero_banner.hero_banner_left > .row-fluid > .span5,
	.hero_banner.hero_banner_left > .row-fluid > .span7 {
		width: calc(var(--column-width-multiplier)* 1%* 6 - var(--column-gap)* var(--column-width-multiplier)* 6 / 100);
	}

	.hero_banner.hero_banner_left > .row-fluid > .span5 > .row-fluid-wrapper {
		width: 100%;
	}


}



@media (max-width: 1199px) {

	.hero_banner.hero_banner_left > .row-fluid .span7 {
	 	justify-content: center !important;

	}
}



@media (max-width: 768px) {

	#main-content .hero_banner>.row-fluid {
		height: auto;
	}

	.hero_banner.hero_banner_left > .row-fluid > .span5,
	.hero_banner.hero_banner_left > .row-fluid > .span7 {
		width: 100%;
	}

	.hero_banner.hero_banner_left > .row-fluid .span5 {
		padding-top: 225px; 
	}

	.hero_banner.hero_banner_left > .row-fluid .span7 img {
		margin-top: 50px;
	}
}



/* =====================================================
   SubHero Styles
   ===================================================== */

.hero_banner.subhero_banner h1 {
	font-size: clamp(3rem, 3.4vw, 4.125rem); 
}

.hero_banner.subhero_banner-left > .row-fluid .span6:last-of-type {
 	justify-content: flex-end !important;
}


.hero_banner.subhero_banner-right > .row-fluid .span6:first-of-type {
 	justify-content: flex-end !important;
}
  

@media (max-width: 1250px) {
  
  .hero_banner.subhero_banner-left,
  .hero_banner.subhero_banner-right  {
    margin-top: 65px;
  }

	.hero_banner.subhero_banner-left > .row-fluid .span6:last-of-type {
	 	justify-content: center !important;
	}


	.hero_banner.subhero_banner-right > .row-fluid .span6:first-of-type {
	 	justify-content: center !important;
	}


}


@media (max-width: 768px) {

  .hero_banner.subhero_banner-left,
  .hero_banner.subhero_banner-right {
    margin-top: 200px;
  }
  
  .hero_banner.subhero_banner-left img {
    margin-top: 50px;
  }

  .hero_banner.subhero_banner-right  .span6:nth-of-type(2) {
    margin-bottom: 75px;
  }

}
/* =====================================================
   Product Feature Row
   ===================================================== */

 .gradient_bkgr  {
      background-image: linear-gradient(to bottom, rgba(0, 54, 102, 1), rgba(0, 27, 51, 1))
   }

.product_feature_row {
   color: var(--light-blue);
  
  font-weight: 200;
}



.product_feature_row > .row-fluid .span6:first-child {
   border-right: 1px solid var(--light-blue);
}


.product_feature_row h2 {
   font-size: 2rem;
   margin-bottom: 20px;
}


/* Add a border between widget spans */
.product_feature_row > .row-fluid >  .widget-span:not(:first-child) {
  border-right: 1px solid var(--light-blue);
}

/* Ensure the leftmost widget has a left border */
.product_feature_row > .row-fluid > .widget-span:first-child {
  border-right: 1px solid var(--light-blue);
}

/* Ensure the rightmost widget has a right border */
.product_feature_row > .row-fluid > .widget-span:last-child {
  border-right: none;
}
 

@media (max-width: 767px) {

   .product_feature_row h2 {
      text-align: center;
      margin-top: 20px;
   }

   .product_feature_row > .row-fluid >  .widget-span:not(:first-child) {
     border-right: none;
   }

   
   .product_feature_row > .row-fluid > .widget-span:first-child {
     border-right: none;
   }


}
/* =====================================================
   Billboard Styles
   ===================================================== */

/* Ensure the parent container uses the full width */
#main-content .row-fluid-wrapper.billboard {
  width: 100%; 
  display: flex; 
  aspect-ratio: 16 / 9; 
}

/* Ensure .row-fluid fills the width of its parent */
#main-content .row-fluid-wrapper.billboard .row-fluid {
  width: 100%; 
  display: flex; 
}

/* Ensure columns take up equal space */
#main-content .row-fluid-wrapper.billboard .span6 {
  flex: 1; 
  display: flex;
  align-items: center; 
  justify-content: center;
  padding: 20px; 
  box-sizing: border-box; 
}

#main-content .row-fluid-wrapper.billboard .row-fluid-wrapper {
   width: 100%;
}

/* =====================================================
   Billboard Typography Styles
   ===================================================== */

.billboard h2 {
   font-size: clamp(3rem, 5vw, 6rem);
}

.billboard p {
   margin-bottom: 3rem;
}


/* =====================================================
   Billboard Media Queries
   ===================================================== */

@media (max-width: 767px) {

   #main-content .row-fluid-wrapper.billboard {
      aspect-ratio: auto;
   }

   #main-content .row-fluid-wrapper.billboard .row-fluid {
      flex-direction: column;
   }

   #main-content .row-fluid-wrapper.billboard .span6 {
      flex: unset;
      padding: 0;
      flex-direction: column;
      padding-left: 0 !important;
   }
  
  #main-content .row-fluid-wrapper.billboard_right > .row-fluid {
    background-color: rgba(0,0,0,0.8);
  }
  
  #main-content .row-fluid-wrapper.billboard_left > .row-fluid {
    background-color: rgba(255,255,255,0.8);
  }


}
/* =====================================================
   Product Detail Styles
   =====================================================  */

 .product_detail {
      width: 100%; 
      display: flex; 
   }


.product_detail ul {
  padding-left: 25px;
}

.product_detail ul li {
  margin-bottom: 1rem;
}

.product_detail ul li::marker {
  font-size: 1.3rem; /* or any size you want */
}


@media (max-width: 1300px) {
  .product_detail ul li {
  margin-bottom: 0.5rem;
}

}


@media (max-width: 992px) {

  .product_detail{
    aspect-ratio: unset;
  }
  
  .product_detail>.row-fluid{
    background-color: rgba(255,255,255,0.8);
  }

}
/* =====================================================
   Product Benefits Styles
   =====================================================  */

#main-content .dnd-section.product-benefits>.row-fluid:first-child {

    padding: 9.85% 40px;
}


.product-benefits  {
   color: #fff;
}


 .product-benefits h2 {
   margin-bottom: 4%;
}
/* =====================================================
   Fullwidth Video Styles
   ===================================================== */


   #main-content  .dnd-section.fullwidth-video_container >.row-fluid {
      max-width: 100%;
      padding: 0;    
      margin: 0;
   } 


   #main-content  .dnd-section.fullwidth-video_container >.row-fluid .widget-span {
      padding: 0;
   }
/* =====================================================
   Find the right Solutions CTA
   =====================================================*/ 

.find_solutions_cta {
   background-image: linear-gradient(to bottom, rgba(26, 90, 151, 1), rgba(13, 45, 76, 1)) !important;
    background-position: left top !important;
    background-size: auto !important;
    background-repeat: no-repeat !important;
   color: #fff;
   text-align: center;
}


#main-content .find_solutions_cta>.row-fluid:first-child {
   padding: 6% 40px;
}


.find_solutions_cta h2 {
   font-size: clamp(3rem, 5vw, 6rem);

}

.find_solutions_cta p {
   font-size: clamp(1rem, 1.7vw, 2rem);
   font-weight: 300;
   margin-bottom: 50px;
}
/* =====================================================
   Find the right Solutions Tool
   =====================================================*/ 


   .find_solutions_tool {
   background-image: linear-gradient(to bottom, rgba(26, 90, 151, 1), rgba(13, 45, 76, 1)) !important;
    background-position: left top !important;
    background-size: auto !important;
    background-repeat: no-repeat !important;
}
/* =====================================================
   Tile Navigation
   =====================================================  */

#main-content .tile_navigation_section {
   margin-bottom: 16px;
}


#main-content .tile_navigation_section>.row-fluid:first-child {
   max-width: 1920px;
   padding: 0;
   gap: 16px;
}

#main-content .tile_navigation_section .span6 {
   width: 100%;
   max-width: 952px;
   padding: 0;
   margin-bottom: 0;
}
/* =====================================================
  Product Hero Banner Styles
   ===================================================== */

#main-content .products-category {
   color: #fff;
} 

 #main-content .products-category .dnd_area-row-0-background-layers {
   padding: 10.4% 0;
 }
/* =====================================================
   Tabbed Products
   =====================================================  */

.tab-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.tab-wrapper .button-wrapper.outline_button {
  text-align: right;
}

.custom-tabs {
    margin: 0 auto;
    max-width: var(--max-content-width);
    padding: 6% 40px;
}

.tab-list {
    list-style: none;
    display: flex;
    padding: 0;
}

.tab-item {
    font-size: clamp(2rem, 3vw, 4.125rem);
    font-weight: 300;
    line-height: 1;
    color: #BFD1E3;
    padding: 0 5%;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    border-right: 2px solid #5194CC;
}

.tab-item:last-child {
    border-right: none;
}

.tab-item.active,
.tab-item:hover {
    color: #1A5A97;
}

.tab-content {
    margin-top: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}


@media (max-width: 768px) {

  .tab-wrapper {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .tab-wrapper .button-wrapper.outline_button {
      text-align: center;
    }

}
/* =====================================================
   Two Button CTA Styles
   ===================================================== */

@media (max-width: 768px) {

  #main-content .gradient_two_cta_callout .button-wrapper {
  text-align: center !important;
}
  
  #main-content .gradient_two_cta_callout .button-wrapper .button:first-child {
    margin-bottom: 30px;
  }

}
/* @import url('http://example.com/example_style.css'); */

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

/*****************************************/
/* Documents Page   */
/*****************************************/

.documents-page {
  max-width: var(--max-content-width);
  padding: 0 40px 5%;
  margin: 0 auto;
  margin-top: 200px;
}

.documents-container {
  display: flex;
  gap: 2rem;  
   align-items: flex-start; 
}

/*****************************************/
/* Documents Filters   */
/*****************************************/


.documents-filters {
  background: linear-gradient(to bottom, #1A5A97, #0D2D4C);
  color: #ffffff;                
  border-right: none;            
  padding: 2rem;  
  flex: 0 0 auto;
  max-width: 400px;
}

.filter-section {
  margin-bottom: 1rem;
}

.documents-filters input[type="search"] {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: #1a5a97;
  border-radius: 16px;
  font-size: clamp(1.4rem,1.7vw,2rem);
}

.documents-filters input[type="search"]::placeholder {
  color: #1a5a97;
  font-weight: 200;
}

.documents-filters  .reset-button {
  margin-top: 10px;
  background: #fff;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.documents-filters  .reset-button:hover {
  background-color: var(--active-blue);
  color: white;
}

.filter-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: clamp(1.4rem,1.7vw,2rem);
  font-weight: 300;
  text-align: left;
  width: 100%;
  margin-bottom: 1.5rem;
  cursor: pointer;
  padding: 0;
}

.filter-toggle .chevron {
  margin-left: 0.5rem;
  transition: transform 0.3s;
  display: inline-block;
}

.filter-collapse {
  display: block;
  margin-top: 1rem;
}

.filter-collapse.hidden {
  display: none;
}


.documents-filters h3 {
  font-size: clamp(1.4rem,1.7vw,2rem);
  margin-top: 30px;
}

.documents-filters .filter-group {
  background: transparent;
  overflow: hidden;
 
}

.documents-filters fieldset {
  padding: 0;
  border: none;
}


.documents-filters summary {
  list-style: none;
  cursor: pointer;
  padding: 0.75rem 1rem;
  background: transparent;
  color: #ffffff;
  font-weight: 200;
  font-size: clamp(.9rem,1.3vw,1.4rem);
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}

.documents-filters summary::-webkit-details-marker {
  display: none;
}

.documents-filters summary::after {
  content: '›';
  margin-left: 0.5rem;
  transition: transform 0.2s;
}

.documents-filters details[open] summary::after {
  content: '⌄';
}


.documents-filters  label {
  display: block;
  padding: 0.5rem 1rem;
  padding-left: 1.5rem;      
  font-size: clamp(.9rem,1.3vw,1.4rem);
  font-weight: 200;
  background: transparent;
  color: #ffffff;
  margin: 0;
}

.documents-filters  label input {
  margin-right: 5px;
}

.documents-filters .filter-group legend {
  padding: 0.75rem 1rem;
  background: transparent;
  color: #ffffff;
  font-weight: bold;
}

@media (max-width: 1500px) {

  .documents-filters {
    padding: 1rem;
  }

}

@media (max-width: 1360px) {
  .documents-container {
   flex-direction: column;
  }

  .documents-filters {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .filter-section.filter-search {
    width: 100%;
    order: -2;
  }

  .filter-toggle {
    display: block;
    order: -1;
  }


  
  .filter-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 1rem;
    gap: 2rem;
  }
  
 
  
  .filter-collapse.active {
    max-height: 1000px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-product, .filter-content {
    
  }
  
  .documents-filters h3 {
    margin-top: 0;
  }
}

@media (max-width: 550px) {

  .filter-collapse.active {
    grid-template-columns: repeat(1,1fr);
  }


}

/*****************************************/
/* Documents List   */
/*****************************************/

/* Documents Grid */
.documents-list {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 4.5rem 2.5rem
}

.documents-list.one-column {
  grid-template-columns: 1fr;
}

.doc-item {
  display: grid;
  grid-template-columns: 269px 1fr;
  align-items: stretch;      
  background: #fff;
  box-sizing: border-box;
}

.doc-thumb {       /* fixed width 269px */
  width: 269px;
}
.doc-thumb img {
  width: 100%;
  height: auto;            /* preserve aspect ratio */
  object-fit: contain;     /* no distortion, just fit */
  display: block;
   box-shadow: 9px 14px 32px rgba(0, 0, 0, 0.16);
}

.doc-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;  /* pushes button to bottom */
  padding: 0 0 0 1.5rem;
}

.doc-content-top {
  margin-bottom: 2rem;
}

.doc-type {
  font-size: clamp(0.8rem, 1vw, 1.2rem);
  text-transform: uppercase;
  color: #1A5A97;
  font-weight: 700;
}

.doc-title {
  font-size: clamp(1.4rem, 1.7vw, 2rem);
  margin: 1rem 0;
}



/* Button */
.doc-info  .button-wrapper {
  margin-top: auto;
}

.doc-info .button-wrapper.white_outline_button .button {
  border: 2px solid #1A5A97;
  color: #1A5A97;
  font-size: clamp(.9rem,1.3vw,1rem);
  font-weight: 400;
  padding: 12px 60px;
  margin-bottom: 20px;
}

.doc-info .button-wrapper.white_outline_button .button:hover {
  background-color: #3fd5db;
  border-color: #3fd5db;
  color: #fff;
}


@media (max-width: 1540px) {

  .doc-item {
    grid-template-columns: 200px 1fr;
  }
  
  .doc-thumb  {
    max-width: 200px;
  }
  
  .doc-type {
    margin-bottom: 0;
  }


}


@media (max-width: 960px) {
  
   .doc-item {
    grid-template-columns: 125px 1fr;
  }
   
  
  .doc-thumb  {
    max-width: 125px;
  }

}

@media (max-width: 800px) {
  
  .documents-list {
    gap: 2.5rem 2.5rem
  }

  
  
  .doc-item {
    display: flex;
    flex-direction: column;
  }

  .doc-thumb {
    width: 100%;
  }

  .doc-thumb img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .doc-info {
    padding: 1.5rem;
  }
}

@media (max-width: 560px) {
  
   .doc-thumb  {
    max-width: 100px;
  }

  .doc-info .button-wrapper.white_outline_button .button {
    padding: 12px;
  }
  
  .doc-title {
    font-size: 0.9rem;
  }

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

/* Templae Styles */

/*****************************************/
/* Blog Index Page   */
/*****************************************/

.body-container--blog-index {
  margin-top: 200px;
}
/*****************************************/
/* Search Page    */
/*****************************************/

.search-results-page {
  margin: 0 auto;
  max-width: var(--max-content-width);
  padding: 0 40px 5%;
  margin-top: 200px; 
}


.search-results-page  .hs-search-field__button {
  background: var(--primary-color);
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  padding: .75rem 1rem;
}

.search-results-page .hs-search-results{
  padding-top: 3%;
}

.search-results-page .hs-search-results__listing__item {
  margin-bottom: 50px;
}

.search-results-page  .hs-search-results__featured-image {
  height: 100%;
}

.search-results-page .hs-search-results__link {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 300;
}

.search-results-page .hs-search-results__link:hover {
  color: var(--active-blue);
}

.search-results-page  .hs-search-results__description {
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 30px;
}


.search-results-page  #hs_cos_wrapper_search_results_page_search_results .hs-search-results__pagination__link {
  color: var(--primary-color);
}

.search-results-page  #hs_cos_wrapper_search_results_page_search_results .hs-search-results__pagination__link:hover {
  color: var(--active-blue);
}