/* Theme base styles */

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

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

*, *:before, *:after {
  box-sizing: border-box;
}
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}


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 */
}

/**
 * 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;
}

/**
 * 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;
}


/**
 * 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 */
}


/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */ 

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


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

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

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
/*
 * THIS IS A CUSTOM ATTEMPT
 * Grant added this to make all row containers fill their parent
 */
@media screen and (max-width: 767px) {
  .row-fluid-wrapper { 
    width: 100%;
  }
}

/**
 * Beflow is from BridgeCore
 */

.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;
  border-radius: 16px;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
  .dnd-section .row-fluid > * + * {
    margin-top: 30px;
  }
}

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

body {
  line-height: 1.4;
  overflow-wrap: break-word;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

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,
a:hover {
  cursor: pointer;
  text-decoration: none;
}

/* Headings */

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

h1,
.text-h1 {
  font-size: clamp(1.85rem, 6vw, 3.2rem) !important;
}
@media screen and (min-width: 768px) {
  h1,
  .text-h1 {
    font-size: clamp(2.5rem, 3.23vw, 2.8645625rem) !important;
  }
}

.subtitle {
  font-size: 1rem;
  line-height: 145%;
  letter-spacing: 2.25px;
  text-transform: uppercase;
  font-family: Nunito, sans-serif;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  color: #5e2b7a;
  margin-bottom: 0.75em;
}

/* Lists */

ul,
ol {
  margin: 0 0 20px;
  padding-left: 1rem;
}

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

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

ul.tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

ul.tags-list li {
	background: #FFB481;
	border-radius: 24px; 
	padding: 2px 10px;
	color: #213740;
	font-size: 12px;
	margin: 0 !important;
}
ul.tags-list li:before {
	display: none;
}

/* Code blocks */

pre {
  overflow: auto;
  overflow-wrap: anywhere !important;
  white-space: pre-wrap;
  word-wrap: break-word;
  background: #0A1F27;
  color: #FCF9ED;
  padding: 1em;
  border-radius: 0.5rem;
  font-size: 0.875em;
}

code {
  vertical-align: bottom;
}

code:not(pre code) { 
  font-size: 0.875em;
  background: #efefef;
  color: #ea4a4a;
  padding: 2px 4px;
  border-radius: 4px;
}

/* Blockquotes */

blockquote {
  border-left: 0.5rem solid #FF5900;
  margin: 0 0 1.4rem;
  padding: 1em;
  background: #FCF9ED;
  border-radius: 4px;
}

blockquote > *:last-child { 
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Horizontal rules */

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

/* Image alt text */

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

/* Links */
a[data-hs-anchor="true"]:empty {
  height: 0;
  width: 0;
  display: block;
  overflow: hidden;
}

/* Tags */
.tag {
  display: inline-block;
  background: linear-gradient(to bottom right, rgba(231, 247, 240, 1), rgba(243, 232, 248, 1));
  font-size: 12px;
  padding-top: 2px;
  padding-right: 8px;
  padding-bottom: 2px;
  padding-left: 8px;
  border-radius: 24px;
}

/* Font Weights */
.font-medium {
	font-weight: 500;
}
.font-semibold,
b,
strong {
	font-weight: 600 !important;
}
.font-bold {
	font-weight: 700;
}

/* Gradient Text */
.gradient-text {
  background: -webkit-linear-gradient(121.09deg, #FFFFFF 20.38%, #aaaaaa 37.56%, #666666 54.74%, #000000 77.64%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (max-width:767px) {
  .button {
    width: 100%;
    margin: 0;
  }
  .button + .button {
    margin-top: 1rem;
    margin-left: 0 !important;
  }
}

@media screen and (min-width:768px) {
  .button + .button {
    margin-left: 1rem;
  }
}

.custom-button__inner {
  flex-wrap: wrap;
}

.button {
  text-align: center;
  margin-top: 1rem;
  transition: all 0.2s ease;
  white-space: normal !important;
}
@media screen and (max-width: 767px) {
  .button:not(.small):not(.xsmall) {
    font-size: 0.875rem !important;
  }
}

.button.small {
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 4% !important;
  padding: 8px 14px !important;
}

.button.xsmall {
  font-weight: 600 !important;
  font-size: 12px !important;
  line-height: 130% !important;
  letter-spacing: 0.05em !important;
  padding: 6px 12px !important;
}


/* ==========================================================================
   FORM STRUCTURE & LAYOUT
   ========================================================================== */

/* Form container */
.hs-form {
  background-color: #FFFFFF;
  padding: padding: 35px;
;
  border-radius: px;
}

/* Form fields */
.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Form fieldsets */
form fieldset {
  max-width: 100% !important;
  border: none;
  padding: 0;
  margin: 0;
}

/* ==========================================================================
   FORM HEADINGS & TEXT
   ========================================================================== */

/* Form title/heading */
.form-title,
.hs-form h2,
.hs-form h3 {
  font-family: Montserrat, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #000000;
  font-size: 30px;
  margin-bottom: 1.4rem;
}

/* Labels */
form label,
.hs-form-field > label {
  display: block;
  font-family: Montserrat, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #000000;
  font-size: 16px;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Help text / Field descriptions */
form legend,
.hs-field-desc {
  font-family: Montserrat, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #000000;
  font-size: calc(16px * 0.875);
  opacity: 0.8;
}

/* Rich text elements in forms */
form .hs-richtext,
form .hs-richtext p {
  font-family: Montserrat, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #000000;
  font-size: 16px;
  margin: 0 0 1.4rem;
}

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

/* ==========================================================================
   FORM INPUTS
   ========================================================================== */

/* Text 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,
.hs-input {
  display: block;
  width: 100%;
  font-family: Montserrat, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #000000;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 60%);
  border:   ;
  border-radius: 12px;
  padding: 20px 55px;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Focused input state */
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,
.hs-input:focus {
  background-color: #FFFFFF;
  
  outline: none;
}

/* Textarea specific */
form textarea,
.hs-input[type="textarea"] {
  resize: vertical;
  min-height: 150px;
}

/* File input */
form input[type=file] {
  padding: 0.7rem;
  background-color: transparent;
}

/* Select dropdown */
form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

/* ==========================================================================
   PLACEHOLDER STYLES
   ========================================================================== */

::-webkit-input-placeholder,
.hs-input::-webkit-input-placeholder {
  color: #000000;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.7;
}

::-moz-placeholder,
.hs-input::-moz-placeholder {
  color: #000000;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.7;
}

:-ms-input-placeholder,
.hs-input:-ms-input-placeholder {
  color: #000000;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.7;
}

::placeholder,
.hs-input::placeholder {
  color: #000000;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.7;
}

/* ==========================================================================
   CHECKBOX & RADIO INPUTS
   ========================================================================== */

/* Checkbox and radio lists */
form .inputs-list,
.hs-form-checkbox-display,
.hs-form-radio-display {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

/* Checkbox and radio styling */
form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.5rem;
  width: 2em !important;
  height: 2em  !important;
  padding: 0  !important;
}

/* Checkbox labels */
form label input[type="checkbox"] + span,
form label input[type="radio"] + span {
  font-family: Montserrat, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
}

/* Legal consent checkboxes */
label.hs-form-booleancheckbox-display {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  margin: 0 !important;
}

.legal-consent-container .hs-form-booleancheckbox-display > span p {
  line-height: 1.4 !important;
  margin: 0;
}

/* ==========================================================================
   DATE PICKER
   ========================================================================== */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content: '\01F4C5';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #000000;
  opacity: 0.7;
}

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

.fn-date-picker td.is-selected .pika-button {
  background: #ab4834;
  border-radius: 12px;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  background-color: #ab4834;
  border-radius: 12px;
  color: #FFFFFF;
}

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

/* ==========================================================================
   VALIDATION & ERRORS
   ========================================================================== */

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

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

.hs-error-msg,
.hs-error-msgs label {
  color: #EF6B51;
  margin-top: 0.35rem;
  font-size: calc(16px * 0.875);
  font-weight: 500;
  display: block;
}

main form ul.no-list.hs-error-msgs.inputs-list {
  line-height: 1.4;
  margin: 0.35rem 0 0;
  padding: 0;
}

main form ul.no-list.inputs-list li:first-of-type {
  margin-top: 0;
}

main form .hs_error_rollup ul.no-list.hs-error-msgs.inputs-list {
  position: relative;
}

/* ==========================================================================
   SUBMIT BUTTON
   ========================================================================== */

/* Submit button inherits from button styles in _buttons.css */
form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  width: auto;
}

/* Submit button container alignment */
.hs-submit,
.hs_submit,
form .actions,
.hsfc-NavigationRow__Buttons {
  display: flex !important;
  justify-content: flex-start !important;
}

@media screen and (max-width: 767px) {
  form input[type=submit],
  form .hs-button {
    width: 100%;
  }
}

/* ==========================================================================
   SEARCH WIDGET
   ========================================================================== */


  .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: #FFFFFF;
  }

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

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


/* ==========================================================================
   RECAPTCHA
   ========================================================================== */

.grecaptcha-badge {
  margin: 0;
}
/* Tables */

table {
	margin-bottom: 1.4rem;
	overflow-wrap: break-word;
	border: none !important;
	border-right: 1px solid #999 !important;
	border-top: 1px solid #999 !important;
}

table, td, th {
	border-collapse: collapse !important;
	border-left: 1px solid #999 !important;
	border-bottom: 1px solid #999 !important;
}

/* Table cells */

td,
th {
  vertical-align: top;
  padding: 1rem;
}

/* Table header */

thead th {
  vertical-align: bottom;
  text-align: left;
}

thead th * {
	font-weight: 600 !important;
	font-size: 1.15rem !important;
}

thead th *:last-child {
	margin-bottom: 0;
}

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

/* Header DND sections */
html:not(.hs-inline-edit) [data-global-resource-path*='header'] {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999999999999;
  position: fixed;
} 

/* CSS for header scroll behavior */
@media screen and (max-width: 767px) {
  .header-placeholder {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  /* Header becomes fixed only when JS adds this class to avoid layout jumps */
  html:not(.hs-inline-edit) [data-global-resource-path*='header'].header-fixed {
  	position: fixed;
  }

  /* Pre-animation state - hide above viewport */
  html:not(.hs-inline-edit) [data-global-resource-path*='header'].header-pre-animation {
    transform: translateY(-100%);
    transition: none;
  }

  /* Slide down animation */
  html:not(.hs-inline-edit) [data-global-resource-path*='header'].header-slide-down {
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
  }

  /* Slide up animation */
  html:not(.hs-inline-edit) [data-global-resource-path*='header'].header-slide-up {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }

  /* Keep header showing when mega menus are open */
  html:not(.hs-inline-edit) [data-global-resource-path*='header']:has(.services-mega.is-open) {
    position: fixed !important;
	transform: translateY(0) !important;
  }

  /* Show placeholder when Services mega menu is open to prevent page jump */
  html:not(.hs-inline-edit) [data-global-resource-path*='header']:has(.services-mega.is-open) + .header-placeholder {
    display: block !important;
  }
}

/* Placeholder styling */
.header-placeholder {
  display: none;
}

.header a[href*='crisis'] {
  color: #F0493E !important;
  font-weight: bold;
}

.header .row-fluid {
  flex-wrap: nowrap !important;
  align-items: center !important;
}

.header .row-fluid > * + * {
  margin-top: 0 !important;
}

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

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

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

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

.header .button {
  display: block;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
  .menu--desktop .menu__wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .menu--desktop .menu__wrapper li * {
    font-size: 1.125rem;
    line-height: 150%;
    text-transform: none;
  }
  .header .dnd-column {
    width: max-content !important; 
  }
  .header .dnd-column[class*='cell_16950585654963'] {
    width: 100% !important; 
  }
  .header .button {
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

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

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

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

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

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

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

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

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

/* Top Spacing for fixed header on all pages */
html:not(.hs-inline-edit) main#main-content {
  padding-top: 86px
}

.view-all {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.view-all span svg {
  height: .5rem;
  width: auto;
  margin-left: 1rem;
}

/* Menu and simple menu */

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

/* Vertical menu */

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

.freeze-scroll {
  overflow: hidden; 
}

/* 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%;
}
.isotope-pager {
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.isotope-pager > * + * {
  margin-left: 1rem;
}

.isotope-pager a {
  padding: .25rem .5rem;
  border-radius: 8px;
}

.isotope-pager a.active {
  background-color: var(--primary-color);
  color: white;
}

.listing-search {
  position: relative;
}

.listing-search input {
  padding: 1rem;
  appearance: none;
  width: 100%;
}

span.search-submit {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.listing__filters {
  margin-bottom: 60px;
  display: flex;
  width: 100%;
}

.listing__filter-groups {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.listing__filter-groups > *,
.listing__filters > * {
  width: 100%;
}

.listing__filter-groups > * + *,
.listing__filters > * + * {
  margin-left: 20px;
}

.listing__filters-wrap {
  max-height: 0;
  height: auto;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}

.listing__filters-wrap.active {
  max-height: 2000px;
  visibility: visible;
  opacity: 1;
}

.listing__filters fieldset {
  border: none;
  outline: none;
  appearance: none;
  margin: 0 auto;
  padding: 0;
}

.listing__filters fieldset > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  overflow: hidden;
}

.listing__filters fieldset > ul li {
  border: 2px solid;
  display: block;
  padding: 0.85rem 2rem;
}

.listing__filters label {
  cursor: pointer;
}

.listing__filters fieldset > ul li.active,
.listing__filters fieldset > ul li:hover {
  background-color: var(--dark-color);
  color: var(--light-color);
}

.listing__filters fieldset > ul li input {
  display: none;
}

.listing__filters fieldset > label h4 {
  margin: 0;
  text-align: left;
  text-transform: uppercase;
}

.listing__filters fieldset > label {
  transition: all .5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}

.blog .listing__filters label span,
.blog .listing__filters label {
  display: block;
}

.blog .listing-filters__group {
  position: relative;
}

.blog .listing__filter-groups > * + * {
  margin-left: 20px;
}

.blog .listing__filters label h4 {
  color: #000000 !important;
  background-color: #ffffff;
  border: 2px solid #000000;
  display: block;
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.blog .listing__filters label + ul {
  background-color: #ffffff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
  z-index: 99;
  border-left: 2px solid;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.blog .listing__filters fieldset.active h4 {
  border-bottom: none;
}

.blog .listing__filters fieldset > ul li {
  border: none;
  padding: 5px 2rem;
  display: block;
  width: 100%;
}

.listing__search button {
  padding: 19px 44px;
}

.body-container--podcasts-post #hs_cos_wrapper_post_dnd_area-dnd_partial-2-module-2_ {
  text-align: center;
}

@media (max-width: 767px) {
  .listing__filters {
    flex-direction: column;
  }

  .listing-filters__group {
    margin-bottom: 20px !important;
  }

  .listing__search {
    margin-left: 0;
  }
}

@media (max-width: 500px) {
  .listing__filter-groups {
    flex-direction: column;
  }

  .listing-filters__group {
    margin-left: 0 !important;
  }
}
.chat-bot-wrapper {
  position: fixed;
  bottom: 2em;
  right: 2em;
  z-index: 1000000000;
}
@media screen and (max-width: 767px) {
  .chat-bot-wrapper {
    right: 1em;
    bottom: 1em;
  }
}

#chat-bot-form:not(.active) {
  height: 0;
  width: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

#chat-bot-form.active {
  width: 350px;
  max-width: 90vw;
  max-height: calc(100vh - 8em);
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: scroll;
  border: 2px solid #000;
  background: #fff;
  overscroll-behavior: none;
  animation: showChat 0.3s ease;
}

@keyframes showChat {
  from {
    opacity: 0;
    transform: translateY(2em);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

button.close-chat-form {
  appearance: none;
  border: none;
  background: none;
  font-size: 14px;
  padding: 0;
  cursor: pointer;
}

.c-web-form__title {
  display: flex;
}

.c-web-form__title button.close-chat-form {
  margin: -1.25em -0.5em 0 auto;
  font-size: 1.75em;
  line-height: 0;
}

#chat-bot-trigger {
  cursor: pointer;
  padding: 0.25em 1em 0 0.25em !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold !important;
}

/* BLog Post Listing */
/* 40px spacing between cards */
@media screen and (min-width: 768px) {
  :root .hs-blog-post__wrapper > .hs-blog-post {
    --grid-space-between-posts: 40px !important;
    --grid-post-width: calc(50% - 40px) !important;
    --grid-post-width-four-column: calc(25% - 40px) !important;
    --grid-post-width-three-column: calc(33.3% - 40px) !important;
    margin-bottom: 40px;
  }
}
/* List page "Read More" button */
.hs-blog-post__wrapper a.button {
    width: auto !important;
    text-align: left !important;
}

/* Blog post */
.blog-post {
  margin: 0 auto;
  max-width: 960px;
}

.blog-post__meta { 
  margin-bottom: 1.4rem;
}

.blog-post__meta a {
  text-decoration: underline;
}

.blog-post__timestamp {
  display: block;
}

.blog-post__tags svg {
  height: auto;
  margin-right: 0.35rem;
  width: 15px;
}

[class*="__tag"] {
  text-transform: lowercase;
}

.blog-post__tag-link {
  font-size: 0.875rem;
}

.hs-blog-post__tag {
	transition: background-color 0.2s ease;
}

a[class*="_hsBlogPostTitleLink"] {
	transition: color 0.2s ease;
}

/* Blog related posts */

.blog-related-posts {
  background-color: #F8FAFC;
  padding: 40px 0;
}

.blog-related-posts h2 {
  text-align: center;
}

/* Blog comments */

.blog-comments {
  margin: 0 auto;
  max-width: 680px;
}

.blog-comments .hs-submit {
  text-align: center;
}

.blog-comments .comment-reply-to {
  border: 0 none;
}

.blog-comments .comment-reply-to:hover,
.blog-comments .comment-reply-to:focus {
  background-color: transparent;
  text-decoration: underline;
}

/* Left / Right Sections of Post Detail */
.blog-post-flex-wrapper .right {
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.blog-post-flex-wrapper .post-details {
  background: linear-gradient(to bottom right, rgba(231, 247, 240, 1), rgba(243, 232, 248, 1));
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.blog-post-flex-wrapper .post-details h6 {
  margin: 0.5rem 0;
}
.blog-post-flex-wrapper .post-details *:last-child { 
  margin-bottom: 0;
}

.blog-post__body strong {
	font-weight: 600;
}

.blog-post__body li {
	margin-bottom: 0.5rem;
}

/* Desktop Styles */
@media screen and (min-width: 768px) {
  .blog-post-flex-wrapper {  
    display: flex;
    gap: 80px;
    align-items: flex-start;
  }
  .blog-post-flex-wrapper .left {
    flex: 1;
    padding-top: 40px;
  }
  .blog-post-flex-wrapper .right {
    width: 392px;
    margin: 80px 0 0;
  }
  .blog-related-posts {
    padding: 80px 0 !important;
  }
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* Colors */







body {
  --primary-color: #ab4834;
  --secondary-color:  #596776;
  --tertiary-color:  #994736;
  --light-color:  #FFFFFF;
  --dark-color:  #000000;
  --light-shadow: 0px 0px 10px -6px rgba(0, 0, 0, 0.10);
  --dark-shadow: 0px 0px 20px -6px rgba(0,0,0,.2);
}

[role="dialog"] {
    z-index: 10000000000;
}



.button:not(.no-button), .hs-button:not(.no-button), .cta_button:not(.no-button) {
  text-transform: uppercase;
  
  font-size: 15px;font-family: Montserrat, sans-serif; font-weight: 600;
  font-weight: 500 !important;
}








  
    
    
    form input[type='submit'] {
      background-color: #ab4834 !important;
      color: #FFFFFF;
      border-color: #ab4834;
    }
    form input[type='submit']:hover {
      background-color: #596776 !important;
      color: #FFFFFF;
      border-color: #596776;
    }
  


  
    
    
    
      .button.button--primary,
      .hs-button.button--primary,
      .cta_button.button--primary {
        
          color: #FFFFFF;
        
          background-color: #ab4834;
        
          border-color: #ab4834;
        
      }
      .funraise-button.button--primary {
        
          color: #FFFFFF !important;
        
          background-color: #ab4834 !important;
        
          border-color: #ab4834 !important;
        
      }
      .button.button--primary.button--ghost,
      .hs-button.button--primary.button--ghost,
      .cta_button.button--primary.button--ghost {
          background-color: transparent !important;
          
            
          
            
              color: #ab4834;
              border-color: #ab4834;
            
          
            
          
      }
      .funraise-button.button--primary.button--ghost {
          background-color: transparent !important;
          
            
          
            
              color: #ab4834 !important;
              border-color: #ab4834 !important;
            
          
            
          
      }
    
  
    
    
    
      .button.button--primary:hover,
      .hs-button.button--primary:hover,
      .cta_button.button--primary:hover {
        
          color: #FFFFFF;
        
          background-color: #596776;
        
          border-color: #596776;
        
      }
      .funraise-button.button--primary:hover {
        
          color: #FFFFFF !important;
        
          background-color: #596776 !important;
        
          border-color: #596776 !important;
        
      }
      .button.button--primary.button--ghost:hover,
      .hs-button.button--primary.button--ghost:hover,
      .cta_button.button--primary.button--ghost:hover {
        
          
          
            color: #FFFFFF;
          
        
          
          
        
          
            border-color: #596776;
            background-color: #596776 !important;
          
          
         
      }
      .funraise-button.button--primary.button--ghost:hover {
        
          
          
            color: #FFFFFF !important;
          
        
          
          
        
          
            border-color: #596776 !important;
            background-color: #596776 !important;
          
          
         
      }
    
  
    
    
    
      .button.button--secondary,
      .hs-button.button--secondary,
      .cta_button.button--secondary {
        
          color: #FFFFFF;
        
          background-color: #596776;
        
          border-color: #596776;
        
      }
      .funraise-button.button--secondary {
        
          color: #FFFFFF !important;
        
          background-color: #596776 !important;
        
          border-color: #596776 !important;
        
      }
      .button.button--secondary.button--ghost,
      .hs-button.button--secondary.button--ghost,
      .cta_button.button--secondary.button--ghost {
          background-color: transparent !important;
          
            
          
            
              color: #596776;
              border-color: #596776;
            
          
            
          
      }
      .funraise-button.button--secondary.button--ghost {
          background-color: transparent !important;
          
            
          
            
              color: #596776 !important;
              border-color: #596776 !important;
            
          
            
          
      }
    
  
    
    
    
      .button.button--secondary:hover,
      .hs-button.button--secondary:hover,
      .cta_button.button--secondary:hover {
        
          color: #FFFFFF;
        
          background-color: #ab4834;
        
          border-color: #ab4834;
        
      }
      .funraise-button.button--secondary:hover {
        
          color: #FFFFFF !important;
        
          background-color: #ab4834 !important;
        
          border-color: #ab4834 !important;
        
      }
      .button.button--secondary.button--ghost:hover,
      .hs-button.button--secondary.button--ghost:hover,
      .cta_button.button--secondary.button--ghost:hover {
        
          
          
            color: #FFFFFF;
          
        
          
          
        
          
            border-color: #ab4834;
            background-color: #ab4834 !important;
          
          
         
      }
      .funraise-button.button--secondary.button--ghost:hover {
        
          
          
            color: #FFFFFF !important;
          
        
          
          
        
          
            border-color: #ab4834 !important;
            background-color: #ab4834 !important;
          
          
         
      }
    
  
    
    
    
      .button.button--tertiary,
      .hs-button.button--tertiary,
      .cta_button.button--tertiary {
        
          color: #FFFFFF;
        
          background-color: #994736;
        
          border-color: #994736;
        
      }
      .funraise-button.button--tertiary {
        
          color: #FFFFFF !important;
        
          background-color: #994736 !important;
        
          border-color: #994736 !important;
        
      }
      .button.button--tertiary.button--ghost,
      .hs-button.button--tertiary.button--ghost,
      .cta_button.button--tertiary.button--ghost {
          background-color: transparent !important;
          
            
          
            
              color: #994736;
              border-color: #994736;
            
          
            
          
      }
      .funraise-button.button--tertiary.button--ghost {
          background-color: transparent !important;
          
            
          
            
              color: #994736 !important;
              border-color: #994736 !important;
            
          
            
          
      }
    
  
    
    
    
      .button.button--tertiary:hover,
      .hs-button.button--tertiary:hover,
      .cta_button.button--tertiary:hover {
        
          color: #606159;
        
          background-color: #CABDA5;
        
          border-color: #CABDA5;
        
      }
      .funraise-button.button--tertiary:hover {
        
          color: #606159 !important;
        
          background-color: #CABDA5 !important;
        
          border-color: #CABDA5 !important;
        
      }
      .button.button--tertiary.button--ghost:hover,
      .hs-button.button--tertiary.button--ghost:hover,
      .cta_button.button--tertiary.button--ghost:hover {
        
          
          
            color: #606159;
          
        
          
          
        
          
            border-color: #CABDA5;
            background-color: #CABDA5 !important;
          
          
         
      }
      .funraise-button.button--tertiary.button--ghost:hover {
        
          
          
            color: #606159 !important;
          
        
          
          
        
          
            border-color: #CABDA5 !important;
            background-color: #CABDA5 !important;
          
          
         
      }
    
  
    
    
    
      .button.button--light,
      .hs-button.button--light,
      .cta_button.button--light {
        
          color: #000000;
        
          background-color: #FFFFFF;
        
          border-color: #FFFFFF;
        
      }
      .funraise-button.button--light {
        
          color: #000000 !important;
        
          background-color: #FFFFFF !important;
        
          border-color: #FFFFFF !important;
        
      }
      .button.button--light.button--ghost,
      .hs-button.button--light.button--ghost,
      .cta_button.button--light.button--ghost {
          background-color: transparent !important;
          
            
          
            
              color: #FFFFFF;
              border-color: #FFFFFF;
            
          
            
          
      }
      .funraise-button.button--light.button--ghost {
          background-color: transparent !important;
          
            
          
            
              color: #FFFFFF !important;
              border-color: #FFFFFF !important;
            
          
            
          
      }
    
  
    
    
    
      .button.button--light:hover,
      .hs-button.button--light:hover,
      .cta_button.button--light:hover {
        
          color: #FFFFFF;
        
          background-color: #000000;
        
          border-color: #000000;
        
      }
      .funraise-button.button--light:hover {
        
          color: #FFFFFF !important;
        
          background-color: #000000 !important;
        
          border-color: #000000 !important;
        
      }
      .button.button--light.button--ghost:hover,
      .hs-button.button--light.button--ghost:hover,
      .cta_button.button--light.button--ghost:hover {
        
          
          
            color: #FFFFFF;
          
        
          
          
        
          
            border-color: #000000;
            background-color: #000000 !important;
          
          
         
      }
      .funraise-button.button--light.button--ghost:hover {
        
          
          
            color: #FFFFFF !important;
          
        
          
          
        
          
            border-color: #000000 !important;
            background-color: #000000 !important;
          
          
         
      }
    
  
    
    
    
      .button.button--dark,
      .hs-button.button--dark,
      .cta_button.button--dark {
        
          color: #FFFFFF;
        
          background-color: #000000;
        
          border-color: #000000;
        
      }
      .funraise-button.button--dark {
        
          color: #FFFFFF !important;
        
          background-color: #000000 !important;
        
          border-color: #000000 !important;
        
      }
      .button.button--dark.button--ghost,
      .hs-button.button--dark.button--ghost,
      .cta_button.button--dark.button--ghost {
          background-color: transparent !important;
          
            
          
            
              color: #000000;
              border-color: #000000;
            
          
            
          
      }
      .funraise-button.button--dark.button--ghost {
          background-color: transparent !important;
          
            
          
            
              color: #000000 !important;
              border-color: #000000 !important;
            
          
            
          
      }
    
  
    
    
    
      .button.button--dark:hover,
      .hs-button.button--dark:hover,
      .cta_button.button--dark:hover {
        
          color: #000000;
        
          background-color: #FFFFFF;
        
          border-color: #FFFFFF;
        
      }
      .funraise-button.button--dark:hover {
        
          color: #000000 !important;
        
          background-color: #FFFFFF !important;
        
          border-color: #FFFFFF !important;
        
      }
      .button.button--dark.button--ghost:hover,
      .hs-button.button--dark.button--ghost:hover,
      .cta_button.button--dark.button--ghost:hover {
        
          
          
            color: #000000;
          
        
          
          
        
          
            border-color: #FFFFFF;
            background-color: #FFFFFF !important;
          
          
         
      }
      .funraise-button.button--dark.button--ghost:hover {
        
          
          
            color: #000000 !important;
          
        
          
          
        
          
            border-color: #FFFFFF !important;
            background-color: #FFFFFF !important;
          
          
         
      }
    
  
/* 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;
  }
}


/* Widths / Heights */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

/* Margins */
.mt-10 {
	margin-top: 2.5rem;
}
.mt-6 {
	margin-top: 2rem;
}
.mt-4 {
	margin-top: 1rem;
}

/* Rounded Corners */
.rounded-full {
  border-radius: 9999px; 
}
.rounded-lg {
  border-radius: 16px;
}
.rounded-md {
  border-radius: 8px;
}
.rounded-sm {
  border-radius: 4px;
}

div#hubspot-messages-iframe-container[role="region"] {
	z-index: 10000000000 !important; 
}