/* Theme base styles */

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

div.layers-full-width-section,
div.layers-full-width-section > .row-fluid > .dnd-column {
  padding: 0;
}

div.layers-full-width-section > .row-fluid {
  max-width: unset;
}

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

.layers-container {
  padding: 0 24px;
}

.layers-wrapper {
  max-width: 1464px;
  margin: 0 auto;
}

div:not(.hs_cos_wrapper_widget) .layers-container-full > .layers-wrapper {
  max-width: initial;
}

/* Tools

*/ 





 











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

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* Paragraphs */

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

/* Headings */

.layers-default-module.heading-module.h1 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h1 > .text-module-wrapper > .text-content > p,
.layers-default-module.heading-module.h2 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h2 > .text-module-wrapper > .text-content > p,
.layers-default-module.heading-module.h3 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h3 > .text-module-wrapper > .text-content > p,
.layers-default-module.heading-module.h4 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h4 > .text-module-wrapper > .text-content > p,
.layers-default-module.heading-module.h5 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h5 > .text-module-wrapper > .text-content > p,
h1, .h1:not(.layers-default-module),
h2, .h2:not(.layers-default-module),
h3, .h3:not(.layers-default-module),
h4, .h4:not(.layers-default-module),
h5, .h5:not(.layers-default-module) {
  margin: 0 0 1.4rem;
  letter-spacing: 0em;
  font-weight: 500;
  font-family: "Space Grotesk", system-ui;
  font-optical-sizing: auto;
  color: #000000;
}

.layers-default-module.heading-module.preformatted > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.preformatted > .text-module-wrapper > .text-content > p,
.preformatted {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
  color: #000000;
}

.layers-default-module.heading-module.paragraph > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.paragraph > .text-module-wrapper > .text-content > p,
p,
ul li,
ol li,
table {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #000000;
}

.layers-default-module.heading-module.h1 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h1 > .text-module-wrapper > .text-content > p,
h1, .h1:not(.layers-default-module) {
  font-size: 64px;
  line-height: 88px;
}

.layers-default-module.heading-module.h2 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h2 > .text-module-wrapper > .text-content > p,
h2, .h2:not(.layers-default-module) {
  font-size: 48px;
  line-height: 61.25px;
}

.layers-default-module.heading-module.h3 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h3 > .text-module-wrapper > .text-content > p,
h3, .h3:not(.layers-default-module) {
  font-size: 32px;
  line-height: 48px;
}

.layers-default-module.heading-module.h4 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h4 > .text-module-wrapper > .text-content > p,
h4, .h4:not(.layers-default-module) {
  font-size: 24px;
  line-height: 28.15px;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
}

.layers-default-module.heading-module.h5 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
.layers-default-module.text-module.h5 > .text-module-wrapper > .text-content > p,
h5, .h5:not(.layers-default-module) {
  font-weight: 600;
  font-size: 16px;
  line-height: 18.77px;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
}

@media (max-width: 767px){
  .layers-default-module.heading-module.h1 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
  .layers-default-module.text-module.h1 > .text-module-wrapper > .text-content > p,
  h1, .h1:not(.layers-default-module) {
    font-size: 51px;
    line-height: 70.13px;
  }

  .layers-default-module.heading-module.h2 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
  .layers-default-module.text-module.h2 > .text-module-wrapper > .text-content > p,
  h2, .h2:not(.layers-default-module) {
    font-size: 39px;
    line-height: 58.5px;
  }

  .layers-default-module.heading-module.h3 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
  .layers-default-module.text-module.h3 > .text-module-wrapper > .text-content > p,
  h3, .h3:not(.layers-default-module) {
    font-size: 26px;
    line-height: 39px;
  }

  .layers-default-module.heading-module.h5 > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
  .layers-default-module.text-module.h5 > .text-module-wrapper > .text-content > p,
  h5, .h5:not(.layers-default-module) {
    font-size: 16px;
    line-height: 18.77px;
  }
  
  .layers-default-module.heading-module.preformatted > .heading-module-wrapper > .heading-content > .hs_cos_wrapper_type_header > *,
  .layers-default-module.text-module.preformatted > .text-module-wrapper > .text-content > p,
  .preformatted {
    font-size: 26px;
    line-height: 39px;
  }

  .layers-default-module.heading-module.paragraph > .heading-module-wrapper .hs_cos_wrapper_type_header > *,
  .layers-default-module.text-module.paragraph > .text-module-wrapper > .text-content > p,
  p,
  ul li,
  ol li,
  table {
    font-size: 16px;
    line-height: 24px;
  }

}

/* 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;
}
/* Anchors & Buttons */
.hs-button, .hs-button.primary, button, .button {
  padding: 10px 24px;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 600;
  line-height: 18.77px;
  letter-spacing: 0.1em;
  background: #DF5226;
  color: #fff;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-block;
  border: none;
}

.button:disabled, .hs-button:disabled, .hs-button.primary:disabled, button:disabled {
  opacity: 0.5;
  background: #DF5226;
}
  
.hs-button:has(img.has-icon), 
.hs-button.primary:has(img.has-icon) {
  padding: 10px 20px;
}

.hs-button img.has-icon {
  vertical-align: middle;
}

.hs-button img.has-icon.before {
  margin-right: 8px;
}

.hs-button img.has-icon.after {
  margin-left: 8px;
}

.hs-button:hover, .hs-button.primary:hover, button:hover, .button:hover,
.hs-button:focus, .hs-button.primary:focus, button:focus, .button:focus {
  background: #FF6E41;
}

.hs-button.secondary,
.hs-button.secondary_black {
  background: transparent;
  border: solid 1.5px;
  border-color: #fff;
}

.hs-button.secondary_black {
  border-color: #000000;
  color: #000000;
}

.hs-button.secondary:hover,
.hs-button.secondary:focus,
.hs-button.secondary_black:hover,
.hs-button.secondary_black:focus {
  border-color: transparent;
}

.hs-button.animate-button .animation-container {
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}

.hs-button.animate-button img {
  transition: transform 0.3s ease-in-out; 
}
  
.hs-button.animate-button:hover img {
  animation: animateIcon 0.3s linear;
}

.button:disabled:hover img, .hs-button:disabled:hover img, .hs-button.primary:disabled:hover img, button:disabled:hover img {
 animation: unset; 
}

@keyframes animateIcon {
    0% {
        transform: translate(0, 0); /* Starting position */
    }
    50% {
        transform: translate(100%, -100%); /* Move to the top right */
        opacity: 0; /* Make the arrow invisible as it moves out */
    }
    51% {
        transform: translate(-100%, 100%); /* Jump to the bottom left */
        opacity: 0; /* Keep the arrow invisible */
    }
    100% {
        transform: translate(0, 0); /* Return to the original position */
        opacity: 1; /* Make the arrow visible again */
    }
}

.hs-cta-img {
    width: 100% !important;
    height: auto !important;
}
/* Fields */

.hs-form-field {
  margin-bottom: 28px;
}

/* Labels */
form label,
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 input[type=date],
form select,
form textarea {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;
}

form label {
  font-weight: 500;
  text-align: left;
  margin-bottom: 12px;
  color: #595959;
  display: block;
}

/* 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 input[type=date],
form select,
form textarea {
  display: inline-block;
  width: 100%;
  border-radius: 4px;
  padding: 12px;
  border: 2px solid #B1B1B1;
  outline: 4px solid transparent;
  background: #FFFFFF;
  font-weight: 400;
  color: #646464;
}

form input[type=text]:focus,
form input[type=search]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form input[type=file]:focus,
form input[type=date]:focus,
form select:focus,
form textarea:focus {
  border: 2px solid #5C99C7;
  outline: 4px solid #9DC2DD;
}

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: 2px solid #F06D6D;
  outline: 4px solid #F6A7A7;
}

.no-list.hs-error-msgs.inputs-list li {
  margin: 0;  
}

.hs-error-msg {
  color: #C75454;
  margin-top: 12px;
  margin-bottom: 0px;
}
 
/* 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;
}



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

.header__bg {
  background-color: #09204A;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1999999999;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.header__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  height: 92px;
  line-height: 1;
  margin-right: 2rem;
}
.header__logo .hs_cos_wrapper {
  line-height: 1;
}
.header__navigation {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1 0 0%;
}
.header__navigation .hs_cos_wrapper {
  height: 100%;
  width: 100%;
}

@media (min-width: 992px) {

}
.blog-post-hero {
  background-color: #09204A;
}

.blog-post-hero-wrapper h1,
.blog-post-hero-wrapper h1 span,
.latest-posts .latest-posts-inner h2 {
  color: #fff;
}

.blog-post-hero-wrapper {
    margin: 0 auto;
    max-width: 1512px;
    padding: 40px 24px 0px;
    display: flex;
    flex-direction: column;
}

  .blog-post-hero-wrapper .blog-post-content {
    display: flex;
    flex-direction: row;
  }

img.featured-image {
  border-radius: 16px;
}

.blog-post-content-container {
  background-color: #FBF4F0;
}

.blog-post-content-container .blog-post-content-inner,
.latest-posts .latest-posts-inner {
  max-width: 1512px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.social-sharing,
.latest-blog-text-wrapper-inner {
  position: sticky;
  top: 110px;
}

.social-sharing__share-text {
  font-family: Space Grotesk;
  font-size: 48px;
  font-weight: 500;
  line-height: 61.25px;
  text-align: left;
}

.social_profiles-content a:not(:first-of-type) {
  margin-left: 26px;
}

.blog-post-content-container .blog-post-content-inner,
.latest-posts .latest-posts-inner,
.blog-call-to-action {
  padding: 0px 24px;
}

.latest-posts {
  background-color: #09204A;
}

.blog-call-to-action {
  background-color: #FBF4F0;
}

.discover-column a {
  width: max-content;
}

.latest-blog-text-wrapper {
  margin-bottom: 24px;
}

@media only screen and (min-width: 901px) {
  .blog-post-content-container .blog-post-content-inner,
  .latest-posts .latest-posts-inner,
  .blog-cta-inner {
    max-width: 1512px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    padding: 0px 148px;
  }
  
  .blog-post-content {
    padding-left: 194px;
  }
  
  .latest-blogs {
    padding-left: 70px;
  }
  
  .blog-post-share,
  .latest-blog-text-wrapper {
    flex: 1 0 302px; 
  }
  
  .blog-cta-inner .text-column {
    flex: 1 0 468px; 
  }
  
  .blog-cta-inner .text-column h2 {
    margin-bottom: 0px;
  }
  
  .discover-column {
    padding-left: 60px;
  }
  
  .blog-cta-inner .discover-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .blog-post-content {
    flex-grow: 1;
  }
  
  .blog-post-hero-wrapper {
      margin: 0 auto;
      max-width: 1512px;
      padding: 80px 74px 0 148px;
      display: flex;
      flex-direction: row;
  }
  
  .blog-post-hero-wrapper .blog-post-content {
    display: flex;
    flex-direction: column;
    flex: 0 0 451px;
  }
}

@media only screen and (max-width: 1200px) {
    .blog-post-content {
        padding-left: 0px;
    }
  
  .latest-blogs {
    padding-left: 0px;
  }
}
.blog-list,
.hs-search-results__listing {
  display: flex !important;
  flex-direction: column;
  gap: 33px;
}

.hs-search-results__listing {
  margin-bottom: 80px !important;
}

.blog-card {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
  padding: 40px 24px !important;
  border-radius: 16px;
  background-color: #fff;
}

.blog-card .blog-card-meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-card .blog-card-meta a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease-in-out;
}

.blog-card .blog-card-meta p.h5 {
  margin-bottom: 16px;
}

.blog-card .blog-card-meta h3,
.blog-card .blog-card-meta p:not(.h5) {
  margin-bottom: 0;
}

.blog-card .blog-card-image {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-height: 230.25px;
}

.blog-card .blog-card-image img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}

.blog-card:has(.blog-card-image:hover) .blog-card-meta a,
.blog-card .blog-card-meta a:hover {
  color: #DF5226;
}

@media only screen and (min-width: 901px){
  .blog-card {
    flex-direction: row;
    padding: 40px;
    justify-content: space-between;
  }
  
  .blog-card .blog-card-image {
    max-width: 45.17%; /* Proper rounding for percentage */
    max-height: 92.57%; /* Proper rounding for percentage */
    align-self: center;
  }
}

.blog-archive {
  background: #FBF4F0;
}

.blog-archive-hero {
  background: #09204A;
  padding: 40px 24px 0px 24px;
  min-height: 747px;
}

.blog-archive-hero-wrapper {
  max-width: 1512px;
  margin: 0 auto;
}

@media only screen and (min-width: 1734px) {
  .blog-archive-hero-wrapper {
    max-width: 1734px;
  }
}

.blog-archive-hero * {
  color: #fff;
}

.blog-archive-hero h1 {
 margin-bottom: 24px; 
}

.blog-archive-hero p {
  margin-bottom: 0;
}

.blog-archive .spacer-module {
  width: 100%;
  position: relative;
}

.blog-archive .spacer-module.blue_beige,
.blog-archive .spacer-module.beige_blue{
  height: 94px;
}

.blog-archive .spacer-module.blue_beige {
  background: linear-gradient(#09204A 50.31%, #FBF4F0 50.32%); 
}

.blog-archive .spacer-module.blue_beige::before,
.blog-archive .spacer-module.blue_beige::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 100%;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.blog-archive .spacer-module.blue_beige::before {
  left: 0;
}

.blog-archive .spacer-module.blue_beige::after {
  right: 0; 
}
  
.blog-archive .spacer-module.blue_beige::before {
  background-image: url('https://25597303.fs1.hubspotusercontent-eu1.net/hubfs/25597303/raw_assets/public/layers-theme/images/module-assets/seperator-blue-top-left-mobile-v3.svg');
}

.blog-archive .spacer-module.blue_beige::after {
  background-image: url('https://25597303.fs1.hubspotusercontent-eu1.net/hubfs/25597303/raw_assets/public/layers-theme/images/module-assets/seperator-blue-top-right-mobile-v3.svg');
}

.blog-archive .spacer-module.beige_blue::before {
  background-image: url('https://25597303.fs1.hubspotusercontent-eu1.net/hubfs/25597303/raw_assets/public/layers-theme/images/module-assets/seperator-beige-top-left-mobile-v2.svg');
}

  /* Beige to blue gradient */
  .blog-archive .spacer-module.beige_blue {
    background: linear-gradient(#FBF4F0 50%, #09204A 50%);
  }

  /* Left and right separators for mobile */
  .blog-archive .spacer-module.beige_blue::before,
  .blog-archive .spacer-module.beige_blue::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 100%;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
  }

  /* Left separator */
  .blog-archive .spacer-module.beige_blue::before {
    left: 0;
  }

  /* Right separator */
  .blog-archive .spacer-module.beige_blue::after {
    right: 0;
  }

  /* Beige-to-blue mobile separators */
  .blog-archive .spacer-module.beige_blue::before {
    background-image: url('https://25597303.fs1.hubspotusercontent-eu1.net/hubfs/25597303/raw_assets/public/layers-theme/images/module-assets/seperator-beige-top-left-mobile-v2.svg');
  }

  .blog-archive .spacer-module.beige_blue::after {
    background-image: url('https://25597303.fs1.hubspotusercontent-eu1.net/hubfs/25597303/raw_assets/public/layers-theme/images/module-assets/seperator-beige-top-right-mobile-v2.svg');
  }

  /* For larger screens */
@media only screen and (min-width: 901px) {

  .blog-archive .spacer-module.blue_beige {
    background: linear-gradient(#09204A 50%, #FBF4F0 50.1%); 
  }
  
  .blog-archive .spacer-module.blue_beige {
    height: 186px;
  }

  .blog-archive .spacer-module.blue_beige::before,
  .blog-archive .spacer-module.blue_beige::after {
    width: 50px;
  }
  
  .blog-archive .spacer-module.blue_beige::before {
    background-image: url('https://25597303.fs1.hubspotusercontent-eu1.net/hubfs/25597303/raw_assets/public/layers-theme/images/module-assets/seperator-blue-top-left-desktop-v2.svg');
  }

  .blog-archive .spacer-module.blue_beige::after {
    background-image: url('https://25597303.fs1.hubspotusercontent-eu1.net/hubfs/25597303/raw_assets/public/layers-theme/images/module-assets/seperator-blue-top-right-desktop-v2.svg');
  }
  
    .blog-archive .spacer-module {
      height: 186px;
    }

    /* Beige-to-blue desktop separators */
/*     .blog-archive .spacer-module.beige_blue::before {
      background-image: url('https://25597303.fs1.hubspotusercontent-eu1.net/hubfs/25597303/raw_assets/public/layers-theme/images/module-assets/seperator-beige-top-left-desktop-v2.svg');
    }

    .blog-archive .spacer-module.beige_blue::after {
      background-image: url('https://25597303.fs1.hubspotusercontent-eu1.net/hubfs/25597303/raw_assets/public/layers-theme/images/module-assets/seperator-beige-top-right-desktop-v2.svg');
  } */
}

.blog-listing-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1512px;
  padding: 0 24px 0 24px;
}

@media only screen and (min-width: 901px) {
  .blog-archive-hero {
    background: #09204A;
    padding: 80px 148px 89px 148px;
    min-height: unset;
  }
  
  .blog-listing-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    max-width: 1512px;
    padding: 0 148px 0 148px;
  }
}

.blog-filters {
  flex: 1 0 347px; 
}

.blog-listing-grid {
  flex-grow: 1;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.blog-tags .blog-post-tag-link a {
  text-decoration: none;
  font-family: "Work Sans";
  font-size: 14px;
  line-height: 20px;
  color: #DF5226;
  padding: 4px 12px;
  border: solid 1px #DF5226;
  border-radius: 50px;
  transition: background 0.3s;
}

.blog-tags .blog-post-tag-link a:hover,
.blog-tags .blog-post-tag-link.active a {
  background: rgba(223, 82, 38, 0.16);
}

.blog-search {
  margin-right: 23px;
  margin-bottom: 24px;
}

.blog-search .hs-search-field__bar label {
  font-family: Work Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  margin-bottom: 6px;
}

html body .blog-search .hs-search-field__suggestions {
  border: none;
}

html body .blog-search .hs-search-field__suggestions li:first-of-type {
  margin-top: 16px;
}

html body .blog-search .hs-search-field__suggestions li a {
  font-family: Work Sans;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  color: #000;
  text-decoration: none;
}

html body .blog-search .hs-search-field__suggestions li a:hover {
  background-color: unset;
  text-decoration: underline;
}

html body .blog-pagination nav.pagination a.pagination__link span {
  font-family: Work Sans;
  font-size: 16px;
  font-weight: 600;
  line-height: 18.77px;
  text-align: left;
  color: #000000;
}

html body .blog-pagination nav.pagination a.pagination__link {
  color: #000000;
  text-decoration: none;
}

html body .blog-pagination nav.pagination a.pagination__link.pagination__link--disabled,
html body .blog-pagination nav.pagination a.pagination__link.pagination__link--disabled span {
  color: #000000A1;
}

html body .blog-pagination nav.pagination a.pagination__link--number {
  font-family: Open Sans;
  font-size: 13px;
  font-weight: 600;
  line-height: 17.7px;
  text-align: left;
  padding: 7px 12px;
  border: 1px solid #000;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  margin: 0px 3px;
}

html body .blog-pagination nav.pagination a.pagination__link--active.pagination__link--number {
  background-color: #DF5226;
  color: #fff;
  border: 1px solid #DF5226;
}

html body .blog-pagination nav.pagination a.pagination__link--number:hover {
  background-color: #DF5226;
  color: #fff;
  border: 1px solid #DF5226;
}

html body .blog-pagination {
  margin-top: 40px;
  margin-bottom: 20px;
}
.footer__bg {
  background-color: #09204A;
  color: #ffffff;
  font-size: 1rem;
  font-family: Work Sans, sans-serif;
}
.footer__bg a {
  transition: all .25s linear;
  text-decoration: none;
}


/* FOOTER TOP */
.footer__top {
  padding: 2rem 1rem !important;
  display: flex;
  flex-direction: column;
}
.footer__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  line-height: 1;
  margin-right: 2rem;
}
.footer__logo .hs_cos_wrapper {
  line-height: 1;
}
.footer__info {
  display: flex;
  flex-direction: column;
}
.footer__info--reviews {
  padding-top: 1.5rem;
}
.ul__footer--ctas {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 1.5rem 0;
}
.li__footer--ctas {
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  
  .ul__footer--ctas {
    flex-direction: row;
    align-items: center;
  }
  .li__footer--ctas {
    padding-bottom: 0;
    margin-left: 1.5rem;
  }
  .li__footer--ctas:first-child {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  
   .footer__top {
     padding-top: 3rem !important;
     padding-bottom: 3rem !important;
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
  }
  .footer__info {
    height: 100%;
    flex-direction: row;
    align-items: center;
    flex: 1 0 0%;
    justify-content: flex-end;
  }
  .footer__info > .hs_cos_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
  .footer__info--reviews {
    text-align: center;
    flex: 1 1 auto !important;
    padding-top: 0;
  }
  .ul__footer--ctas {
    padding: 0;
  }
  .li__footer--ctas:first-child {
    margin-left: 1.5rem;
  }
}


/* FOOTER MENUS */
.footer__menus .row-fluid-wrapper.row-number-2 {
  position: relative;
  padding: 2rem 1rem;
}
.footer__menus .row-fluid-wrapper.row-number-2:after {
  content: "";
  height: 1px;
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
}
.footer__menus .row-fluid-wrapper.row-number-2 .row-fluid .dnd-module {
  padding-bottom: 1.5rem;
}
.footer__menus a {
  color: #ffffff;
}
.footer__menus a:hover, .footer__menus a:focus {
  color: #df5226;
}
.footer__menu--title {
  color: #cccccc;
  font-size: 0.938rem;
  padding-bottom: 0.75rem;
}
.footer__menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__menu ul a {
  padding-bottom: .125rem;
  padding-top: .125rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (min-width: 768px) {
  
  .footer__menus .row-fluid-wrapper.row-number-2 {
    padding-left: 0;
    padding-right: 0;
  }
  .footer__menus .row-fluid-wrapper.row-number-2:after {
    left: 0;
    right: 0;
  }
}
@media (min-width: 992px) {
  
  .footer__menus .row-fluid-wrapper.row-number-2 {
    padding: 3rem 0;
  }
}


/* FOOTER LOGOS */
.footer__logos {
  padding: 1rem;
}
.footer__logos--ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__logos--li {
  padding: 0 0.75rem 1rem 0;
}
@media (min-width: 768px) {
  
  .footer__logos--ul {
    width: 75%;
  }
}
@media (min-width: 992px) {
  
  .footer__logos {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .footer__logos--ul {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  
  .footer__logos {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}


/* FOOTER BOTTOM */
.footer__bottom {
  padding: 2rem 1rem !important;
  display: flex;
  flex-direction: column;
}
.footer__copyright {
  padding-right: 2rem;
}
.footer__copyright p,
.footer__copyright a {
  line-height: 1.5;
  font-size: 0.875rem;
  color: #ffffff;
}
.footer__copyright p:first-child {
  margin-bottom: 0.5rem;
}
.footer__copyright a {
  text-decoration: underline;
}
.footer__copyright a:hover, .footer__copyright a:focus {
  color: #df5226;
}
.footer__copyright ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0 0 1.5rem 0;
}
.footer__copyright ul a {
  padding-bottom: .125rem;
  padding-top: .125rem;
  padding-right: 1.25rem;
}
@media (min-width: 992px) {
  
   .footer__bottom {
     padding-top: 3rem !important;
     padding-bottom: 3rem !important;
     flex-direction: row;
     justify-content: space-between;
  }
  .footer__copyright ul {
    padding-bottom: 0;
  }
  .footer__copyright ul a {
    padding-right: 1.25rem;
  }
  .footer__copyright {
    width: 70%;
  }
  .footer__social {
    display: flex;
    justify-content: flex-end;
    width: 25%;
  }
}
@media (min-width: 1200px) {
  
  .footer__copyright {
    padding-right: 0;
  }
  .footer__copyright ul a {
    padding-right: 1.75rem;
  }
}

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

/* Additional CSS
CSS Relating to the theme
*/

html { scroll-behavior: smooth; }

body {
  margin-top: 92px;
}

html body form input[type=email],
html body form input[type=file],
html body form input[type=number],
html body form input[type=password],
html body form input[type=search],
html body form input[type=tel],
html body form input[type=text],
html body form input[type=date],
html body form select,
html body form textarea {
  background: #fff;
  border: 1px solid #D0D5DD;
  border-radius: 4px;
  color: #101828;
  display: inline-block;
  font-weight: 400;
  outline: 4px solid transparent;
  padding: 12px;
  width: 100%;
}

.legal-consent-container .hs-form-booleancheckbox-display input {
    position: relative;
    top: 3px;
}

.form-columns-2 {
  display: flex;
  column-gap: 24px;
}

.form-columns-2 div.input {
  margin-right: 0px !important;
}