/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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

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

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

body {
  line-height: 1.4;
  overflow-wrap: break-word;
  font-family: "articulat-cf", sans-serif;
  font-weight: 500;
}

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

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

/* Paragraphs */

.body-container p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
  color: #312D3A;
}

.body-container h1,
.body-container h2,
.body-container h3,
.body-container h4,
.body-container h5,
.body-container h6 {
  color: #040404;
  text-align: left;
}

.body-container ul li,
.body-container ol li {
  color: #312D3A;
}

/* Anchors */

.body-container a,
.body-container button,
.body-container a:hover,
.body-container a:focus,
.body-container a:active,
.body-container button:hover,
.body-container button:focus,
.body-container button:active {
  cursor: pointer;
  text-decoration: none;
}

/* Headings */

.body-container h2 {
  font-size: 35px;
  line-height: 1;
  font-weight: 600;
}

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

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

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

/* Image aspect ratio utilities for CLS prevention */
img[width][height] {
  height: auto;
}

/* Aspect ratio containers for responsive images */
.aspect-ratio-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.aspect-ratio-container::before {
  content: '';
  display: block;
  padding-bottom: var(--aspect-ratio, 56.25%); /* Default 16:9 */
}

.aspect-ratio-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Common aspect ratios */
.aspect-ratio-16-9 {
  --aspect-ratio: 56.25%; /* 16:9 */
}

.aspect-ratio-4-3 {
  --aspect-ratio: 75%; /* 4:3 */
}

.aspect-ratio-1-1 {
  --aspect-ratio: 100%; /* 1:1 */
}

.aspect-ratio-3-2 {
  --aspect-ratio: 66.67%; /* 3:2 */
}

.aspect-ratio-21-9 {
  --aspect-ratio: 42.86%; /* 21:9 */
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  color: #000;
  font-weight: 400;
}

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
  background-color: rgb(241, 249, 253);
  border: 0px;
  border-radius: 10px;
  color: #000;
  box-sizing: border-box;
}

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 select:focus,
form textarea:focus {
  outline: none;
  border-color: #6A5ACD;
  background-color: #f1f9fd;
  box-shadow: 0 0 4px rgb(206 212 220 / 87%) !important;
}

form input[type=text]:hover,
form input[type=search]:hover,
form input[type=email]:hover,
form input[type=tel]:hover,
form input[type=number]:hover {
  box-shadow: 0 0 4px rgb(206 212 220 / 87%);
}

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: rgb(241, 249, 253);
  border: 0px;
  border-radius: 10px;
  padding: 0.7rem;
}

/* 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,
.hs-input.error,
form input[type=text].error,
form input[type=email].error,
form input[type=tel].error,
form input[type=number].error,
form select.error,
form textarea.error {
  border-color: #EF6B51;
}

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

/* Submit button */

form input[type=submit],
form .hs-button {
  position: relative;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: normal;
  background: linear-gradient(to right, #96009A, #FF0095);
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  padding: 12px 53px 14px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

/* Hover gradient overlay - enables smooth transition */
form input[type=submit]::before,
form .hs-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #FF0095, #96009A);
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

form input[type=submit]:hover,
form input[type=submit]:focus,
form .hs-button:hover,
form .hs-button:focus {
  box-shadow: 0 2px 8px rgba(150, 0, 154, 0.35), 0 4px 12px rgba(255, 0, 149, 0.25);
  transform: translateY(-1px);
}

form input[type=submit]:hover::before,
form input[type=submit]:focus::before,
form .hs-button:hover::before,
form .hs-button:focus::before {
  opacity: 1;
}

form input[type=submit]:active,
form .hs-button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 7px rgba(150, 0, 154, 0.25), 0 2px 6px rgba(255, 0, 149, 0.15);
}

@media (max-width: 767px) {
  form input[type=submit],
  form .hs-button {
    font-size: 16px;
    padding: 12px 32px 10px;
  }
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

/* New HubSpot Form Classes (hsfc-*) */

/* Form Container */
.body-container [data-hsfc-id=Renderer] .hsfc-Form {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.body-container [data-hsfc-id=Renderer] .hsfc-Form,
.body-container [data-hsfc-id=Renderer] .hsfc-Form * {
  font-family: "articulat-cf", sans-serif;
  font-weight: 500;
}

/* Form Fields */
.body-container [data-hsfc-id=Renderer] .hsfc-Field {
  margin-bottom: 1.4rem;
  width: 100%;
}

/* Labels */
.body-container [data-hsfc-id=Renderer] .hsfc-Label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  color: #000;
  font-weight: 400;
}

/* Text Inputs */
.body-container [data-hsfc-id=Renderer] .hsfc-TextInput,
.body-container [data-hsfc-id=Renderer] .hsfc-EmailInput,
.body-container [data-hsfc-id=Renderer] .hsfc-NumberInput,
.body-container [data-hsfc-id=Renderer] .hsfc-DateInput,
.body-container [data-hsfc-id=Renderer] .hsfc-Select,
.body-container [data-hsfc-id=Renderer] .hsfc-TextareaInput {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
  background-color: rgb(241, 249, 253);
  border: 0px;
  border-radius: 10px;
  color: #000;
  box-sizing: border-box;
}

.body-container [data-hsfc-id=Renderer] .hsfc-PhoneInput {
  font-size: 0.875rem;
  padding: 0;
  width: 100%;
  background-color: rgb(241, 249, 253);
  border: 0px;
  border-radius: 10px;
  color: #000;
  box-sizing: border-box;
}

.body-container [data-hsfc-id=Renderer] .hsfc-TextInput:hover {
  box-shadow: 0 0 4px rgb(206 212 220 / 87%);
}

.body-container [data-hsfc-id=Renderer] .hsfc-TextInput[role="searchBox"] {
  background-color: #FFFFFF !important;
}

.body-container [data-hsfc-id=Renderer] .hsfc-TextInput:focus,
.body-container [data-hsfc-id=Renderer] .hsfc-EmailInput:focus,
.body-container [data-hsfc-id=Renderer] .hsfc-PhoneInput:focus,
.body-container [data-hsfc-id=Renderer] .hsfc-NumberInput:focus,
.body-container [data-hsfc-id=Renderer] .hsfc-DateInput:focus,
.body-container [data-hsfc-id=Renderer] .hsfc-Select:focus,
.body-container [data-hsfc-id=Renderer] .hsfc-TextareaInput:focus {
  outline: none;
  border-color: #6A5ACD;
  background-color: #f1f9fd;
  box-shadow: 0 0 4px rgb(206 212 220 / 87%) !important;
}

.body-container [data-hsfc-id=Renderer] .hsfc-TextareaInput {
  resize: vertical;
}

/* Phone Input Flag and Caret */
.body-container [data-hsfc-id=Renderer] .hsfc-PhoneInput__FlagAndCaret {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.body-container [data-hsfc-id=Renderer] .hsfc-PhoneInput:not(.hsfc-PhoneInput--rtl) .hsfc-PhoneInput__FlagAndCaret {
  background-color: #f1f9fd;
  border-width: .5px;
  border-radius: 8px 0 0 8px;
}

.body-container [data-hsfc-id=Renderer] .hsfc-NavigationRow__Buttons:has(>*:only-child) {
  justify-content: flex-start;
}

/* Dropdown Options */
.body-container [data-hsfc-id=Renderer] .hsfc-DropdownOptions {
  background-color: #FFFFFF;
  border-width: .5px;
  border-radius: 10px;
}

.body-container [data-hsfc-id=Renderer] .hsfc-DropdownOptions__List {
  background-color: #FFFFFF;
}

.body-container [data-hsfc-id=Renderer] .hsfc-DropdownOptions__List__ListItem {
  background-color: #FFFFFF;
}

.body-container [data-hsfc-id=Renderer] .hsfc-DropdownOptions__List__ListItem:hover {
  filter: none;
}

/* Submit Button */
.body-container [data-hsfc-id=Renderer] .hsfc-Button {
  position: relative;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: normal;
  background: linear-gradient(to right, #96009A, #FF0095);
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  padding: 12px 53px 14px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

/* Hover gradient overlay - enables smooth transition */
.body-container [data-hsfc-id=Renderer] .hsfc-Button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #FF0095, #96009A);
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.body-container [data-hsfc-id=Renderer] .hsfc-Button:hover,
.body-container [data-hsfc-id=Renderer] .hsfc-Button:focus {
  box-shadow: 0 2px 8px rgba(150, 0, 154, 0.35), 0 4px 12px rgba(255, 0, 149, 0.25);
  transform: translateY(-1px);
}

.body-container [data-hsfc-id=Renderer] .hsfc-Button:hover::before,
.body-container [data-hsfc-id=Renderer] .hsfc-Button:focus::before {
  opacity: 1;
}

.body-container [data-hsfc-id=Renderer] .hsfc-Button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 7px rgba(150, 0, 154, 0.25), 0 2px 6px rgba(255, 0, 149, 0.15);
}

@media (max-width: 767px) {
  .body-container [data-hsfc-id=Renderer] .hsfc-Button {
    font-size: 16px;
    padding: 12px 32px 10px;
  }
}

/* Required Field Indicator */
.body-container [data-hsfc-id=Renderer] .hsfc-Required {
  color: #EF6B51;
}

/* Error Messages */
.body-container [data-hsfc-id=Renderer] .hsfc-Error {
  color: #EF6B51;
  margin-top: 0.35rem;
}

.body-container [data-hsfc-id=Renderer] .hsfc-TextInput.hsfc-Error,
.body-container [data-hsfc-id=Renderer] .hsfc-EmailInput.hsfc-Error,
.body-container [data-hsfc-id=Renderer] .hsfc-PhoneInput.hsfc-Error,
.body-container [data-hsfc-id=Renderer] .hsfc-NumberInput.hsfc-Error,
.body-container [data-hsfc-id=Renderer] .hsfc-DateInput.hsfc-Error,
.body-container [data-hsfc-id=Renderer] .hsfc-Select.hsfc-Error,
.body-container [data-hsfc-id=Renderer] .hsfc-Textarea.hsfc-Error {
  border-color: #EF6B51;
}


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

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

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

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

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

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
.hs-video-container {
    border-radius: 20px;
    overflow: hidden;
}

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

/* ==========================================================================
   Header Component
   ========================================================================== */

/* CSS custom property for header height - allows JS to update without layout shift */
:root {
  --header-height: 125px;
}

/* Header height container - explicit min-height prevents CLS */
.theme-header-height {
  height: var(--header-height);
  min-height: var(--header-height);
}

/* Set header height to 165px on screens 1400px and less */
@media (max-width: 1400px) {
  .theme-header-height {
    height: 165px;
    min-height: 165px;
  }
}

/* Fixed header wrapper */
.theme-header {
  padding: 0 20px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
}

/* Header container - flexbox layout */
.header__container {
  display: flex;
  min-height: 125px;
  align-items: center;
}

/* Navigation skip link for accessibility */
.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;
  z-index: 9999;
  padding: 1rem;
  background: #000;
  color: #fff;
}

/* Logo section */
.custom-logo {
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
}

.custom-logo a {
  display: inline-block;
}

/* Override HubSpot default logo styles */
.custom-logo img,
.custom-logo .hs_cos_wrapper_type_logo img,
.custom-logo a img,
.custom-logo .hs_cos_wrapper_type_logo a img {
  vertical-align: middle;
  display: inline-block;
  max-width: 232px !important;
  width: auto !important;
  height: auto;
}

/* Primary menu container */
.custom-menu-primary {
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
    width: 100%;
  flex-wrap: wrap;
}

.custom-menu-primary .menu-inner {
  width: 100%;
}

.custom-menu-primary .hs-menu-wrapper {
  display: flex;
  padding-top: 5px;
}

/* Menu list - horizontal layout */
.custom-menu-primary .hs-menu-wrapper > ul {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.custom-menu-primary .hs-menu-wrapper > ul li {
  position: relative;
  list-style: none;
}

.custom-menu-primary .hs-menu-wrapper > ul > li {
  display: flex;
}

/* Menu links */
.custom-menu-primary .hs-menu-wrapper > ul li a {
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-grow: 1;
  line-height: 20px;
  padding: 13px 11px;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
  color: black;
}

.custom-menu-primary .hs-menu-wrapper > ul li.active > a::after {
  content: "";
  background: #3a3161;
  position: absolute;
  bottom: 8px;
  height: 1.7px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
    right: 0;
  text-align: center;
}

.custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-of-type) > a {
  margin-left: 2.5px;
}

.custom-menu-primary .hs-menu-wrapper > ul > li:not(:last-of-type) > a {
  margin-right: 2.5px;
}

/* Dropdown submenus */
.custom-menu-primary .hs-menu-wrapper > ul li > ul {
  font-size: 13px;
  line-height: normal;
  left: 2.5px;
  list-style: none;
  padding: 0;
  margin: 0;
  border: none !important;
  box-shadow: none !important;
  background-color: #fff;
  border-radius: 0;
  z-index: 1000;
}

.custom-menu-primary .hs-menu-wrapper > ul li > ul > li {
  border: none !important;
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
  background-color: #fff;
}

.custom-menu-primary .hs-menu-wrapper > ul li > ul > li:not(:last-child) {
  border-bottom: 1px solid #E0E0E0 !important;
}

.custom-menu-primary .hs-menu-wrapper > ul li > ul > li > a {
  text-shadow: none;
  border-left: 8px solid transparent;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  font-weight: 00;
  line-height: 20px;
  font-size: 13px;
  letter-spacing: normal;
  background-color: #fff;
  padding: 10.5px 15px 11px 8px;
  position: relative;
  color: black;
}

/* Subnav underline animation element - desktop only */
@media (min-width: 856px) {
  .custom-menu-primary .hs-menu-wrapper > ul li > ul > li > a .subnav-underline {
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.18s ease-in-out;
    pointer-events: none;
  }
}

.custom-menu-primary .sub-arrow {
  line-height: 1;
  padding: 10px 0 10px 10px;
  margin-top: -10px;
  margin-bottom: -10px;
  display: flex;
  align-items: center;
}

/* Sub-arrow caret icon (CSS-based to match FontAwesome caret-down) */
.custom-menu-primary .sub-arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  display: inline-block;
  vertical-align: middle;
}

/* Hide mobile toggle button by default (only show on mobile) */
.menu-toggle {
  display: none;
}

/* Desktop layout - min-width 856px */
@media (min-width: 856px) {
  .custom-logo {
    width: 25.738%;
  }

  .custom-menu-primary {
    width: 85%;
  }

  .custom-menu-primary .hs-menu-wrapper {
    padding-top: 5px;
  }
  
  /* Third level submenus - horizontal layout */
  .custom-menu-primary .hs-menu-wrapper > ul .hs-menu-item.hs-menu-depth-2.hs-item-has-children ul {
    position: static;
    padding-left: 20px;
    display: none !important;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul .hs-menu-item.hs-menu-depth-2.hs-item-has-children ul li {
    border-top: 1px solid #e0e0e0;
  }

  .custom-menu-primary .hs-menu-wrapper > ul .hs-menu-item.hs-menu-depth-2.hs-item-has-children:hover ul {
    display: block !important;
  }

  /* Dropdown submenus - hover effect (JS will handle animation) */
  .custom-menu-primary .hs-menu-wrapper > ul li > ul {
    position: absolute;
    width: auto;
    min-width: 10em;
    max-width: 1000px;
    top: 100%;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    border: none !important;
    box-shadow: none !important;
    background-color: #fff;
    border-radius: 0;
  }

  .custom-menu-primary .hs-menu-wrapper > ul li:hover > ul {
    opacity: 1;
    visibility: visible;
  }

  /* Nested submenus */
  .custom-menu-primary .hs-menu-wrapper > ul > li > ul ul {
    top: 0;
    left: 100%;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li:last-of-type > ul {
    right: 0;
    left: auto;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li:last-of-type > ul ul {
    right: 100%;
    left: auto;
  }
}

/* Medium screens - max-width 1160px */
@media (max-width: 1160px) {
  .custom-menu-primary .hs-menu-wrapper > ul > li > a {
    font-size: 14px;
    padding: 13px 10px;
  }
}

/* Medium-small screens - max-width 1000px */
@media (max-width: 1000px) {
  .custom-menu-primary .hs-menu-wrapper > ul > li > a {
    font-size: 13px;
    padding: 13px 8px;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li:not(:last-of-type) > a,
  .custom-menu-primary .hs-menu-wrapper > ul > li:not(:first-of-type) > a {
    margin: 0;
  }

  .custom-menu-primary .hs-menu-wrapper > ul li > ul {
    left: 0;
  }

  .custom-logo img,
  .custom-logo .hs_cos_wrapper_type_logo img {
    max-width: 232px !important;
  }
}

/* Mobile layout - max-width 855px */
@media (max-width: 855px) {
  /* Ensure subnav underline doesn't animate on mobile */
  .custom-menu-primary .hs-menu-wrapper > ul li > ul > li > a .subnav-underline {
    display: none !important;
  }
  :root {
    --header-height: 115px;
  }
  
  .theme-header-height {
    height: var(--header-height) !important;
    min-height: var(--header-height) !important;
  }

  .theme-header {
    border-bottom: 1px solid #E7E7E7;
    padding: 0 0 0 20px;
    height: 115px;
  }

  .header__container {
    justify-content: space-between;
    padding-right: 20px;
  }

  .custom-logo img,
  .custom-logo .hs_cos_wrapper_type_logo img {
    max-width: 232px !important;
  }

  .custom-logo {
    width: 55%;
  }

  .custom-menu-primary {
    width: 35%;
    position: static;
  }

  /* Mobile menu - hidden by default - using GPU-accelerated transforms for better performance */
  .custom-menu-primary .menu-inner {
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform-origin: top;
    overflow-y: hidden;
    position: absolute;
    z-index: 9997;
    display: block;
    box-shadow: rgb(129 129 129 / 25%) 0px 15px 10px;
    transform: translateY(-10px) scaleY(0);
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    left: 0;
    background-color: #fff;
    top: 100%;
    width: 100vw;
    will-change: transform, opacity;
  }

  /* Mobile menu - open state */
  .mobile-open .custom-menu-primary .menu-inner {
    transform: translateY(0) scaleY(1);
    opacity: 1;
    visibility: visible;
    max-height: calc(100vh - 115px);
    overflow-y: auto;
  }

  /* Mobile menu toggle button */
  .menu-toggle {
    --nav-menu-icon-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--nav-menu-icon-size, 22px);
    padding: 0.25em;
    cursor: pointer;
    border: 0;
    border-radius: 3px;
    margin-left: auto;
    color: #000000;
    background-color: #fff;
    width: 40px;
    height: 40px;
  }

  .menu-toggle:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
  }

  .menu-toggle .menu-toggle__icon--close {
        display: none;
    }

  .mobile-open .menu-toggle {
    position: relative;
    z-index: 9998;
  }

  .mobile-open .menu-toggle .menu-toggle__icon--close {
    display: inline-block;
    position: relative;
    top: 2px;
  }

  .mobile-open .menu-toggle .menu-toggle__icon--open {
    display: none;
  }

  /* Mobile menu list */
  .custom-menu-primary .hs-menu-wrapper > ul {
    width: 100%;
    display: block;
    flex-direction: column;
  }
  
  /* Mobile submenu styling */
  .custom-menu-primary .hs-menu-wrapper .hs-menu-item.hs-menu-depth-2.hs-item-has-children ul {
    padding-left: 50px;
  }
  
  .custom-menu-primary .hs-menu-wrapper .hs-menu-item.hs-menu-depth-2.hs-item-has-children ul li {
    border-top: 1px solid #E0E0E0;
  }
  
  .custom-menu-primary .hs-menu-wrapper .hs-menu-item.hs-menu-depth-2.hs-item-has-children ul li a {
    padding: 16px 30px 16px 10px;
  }

  .custom-menu-primary .hs-menu-wrapper .hs-menu-item.hs-item-has-children ul li:first-child > a {
    transition: padding 0.18s ease-in-out;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.child-open > ul > li:first-child > a {
    padding-top: 8px;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li.child-open > a {
    font-weight: 500;
    font-style: italic;
  }
  
  .custom-menu-primary .hs-menu-wrapper > ul li {
    display: block;
    width: 100%;
  }

  .custom-menu-primary .hs-menu-wrapper > ul li,
  .custom-menu-primary .hs-menu-wrapper > ul li a {
    position: relative;
  }

  .custom-menu-primary .hs-menu-wrapper > ul > li {
    border-style: solid;
    border-color: #E0E0E0;
    border-bottom-width: 0px;
  }

  .custom-menu-primary .hs-menu-wrapper > ul li a,
  .custom-menu-primary .hs-menu-wrapper > ul li > ul > li > a {
    display: flex;
    align-items: center;
    padding: 16px 30px 16px 45px;
    line-height: 20px;
    justify-content: space-between;
    overflow: hidden;
    max-width: 100%;
    width: 100% !important;
    color: black;
    transition: none;
  }

  /* Disable hover effects on mobile - use active state for touch feedback instead */
  .custom-menu-primary .hs-menu-wrapper > ul li a:hover {
    color: black;
  }

  .custom-menu-primary .hs-menu-wrapper > ul li > ul {
    display: none;
  }

  .custom-menu-primary .hs-menu-wrapper > ul li > ul > li > a {
    font-size: 0.85em;
  }

  /* Hide sub-arrow on mobile */
  .custom-menu-primary .sub-arrow {
    display: none !important;
  }

  /* Child trigger for mobile submenus */
  .child-trigger {
    position: absolute;
    right: 14px;
    top: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 0;
  }

  .child-trigger:focus {
    outline: 2px solid #000;
    outline-offset: -2px;
  }

  /* Use active state for touch feedback instead of hover on mobile */
  .child-trigger:active {
    opacity: 0.7;
  }

  /* Small caret icon inside child-trigger */
  .child-trigger i {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #000;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
  }

  /* Rotate caret when open */
  .child-trigger.open i {
    transform: scaleY(-1);
  }
}

/* Hide mobile toggle and child-trigger on desktop */
@media (min-width: 856px) {
  .menu-toggle {
    display: none !important;
  }
  
  .child-trigger {
    display: none !important;
  }
}
/* ==========================================================================
   Footer Component
   ========================================================================== */

.theme-footer {
  padding: 4em 40px;
  position: relative;
  font-size: 14px;
  line-height: 21px;
}

.theme-footer a {
  text-decoration: none;
}

.theme-footer-overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: transparent;
  opacity: 0.25;
  mix-blend-mode: overlay;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.footer__container {
  display: flex;
  position: relative;
  z-index: 1;
}

.footer_col {
  position: relative;
  display: flex;
  width: 100%;
}

.footer_col_inner {
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  align-content: flex-start;
  display: flex;
}

.theme-footer-contact .footer_col_inner {
  margin: 0 80px 0 0;
}

.footer_col .footer_col_inner .f_col_item {
  width: 100%;
  position: relative;
}

.footer_col .footer_col_inner .f_col_item:not(:last-child) {
  margin-bottom: 20px;
}

/* Footer logo */
.theme-footer-logo img {
  vertical-align: middle;
  display: inline-block;
  max-width: 200px;
  height: auto;
  margin-bottom: 10px;
}

/* Footer address/contact info */
.theme-footer-address {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
}

.theme-footer-address p {
  margin: 0 0 0.5em 0;
  font-size: 14px;
  line-height: 21px;
}

.theme-footer-address a {
  color: inherit;
  text-decoration: none;
}

.theme-footer-address a:hover {
  opacity: 1 !important;
  color: #fff !important;
  text-decoration: none;
}

/* Footer menus */
.theme-footer-menu .hs-menu-wrapper > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.theme-footer-menu .hs-menu-wrapper > ul li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: inherit;
  list-style: none;
}

.theme-footer-menu .hs-menu-wrapper > ul li a {
  display: flex;
  align-items: center;
  font-size: inherit;
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-decoration: none;
  color: inherit;
}

.theme-footer-menu .hs-menu-wrapper > ul li a:hover {
  opacity: 1 !important;
  text-decoration: none;
}

.theme-footer-menu .hs-menu-wrapper > ul li:not(:first-child) {
  margin-top: calc(10px / 2);
}

.theme-footer-menu .hs-menu-wrapper > ul li:not(:last-child) {
  padding-bottom: calc(10px / 2);
}

/* Footer social icons */
.theme-footer-social {
  margin-top: 20px;
}

.theme-footer-social .social-links {
  margin: -12px 0 0 0;
  line-height: 1;
  font-size: 0;
  text-align: left;
  display: inline-block;
  width: 100%;
}

.theme-footer-social .social-links__link {
  display: inline-block;
  word-break: break-word;
  --icon-size: 21px;
  --icon-padding: 0.3em;
  transition: transform 0.2s ease;
  transform: scale(1);
  margin-right: 12px;
}

.theme-footer-social .social-links__link:last-child {
  margin-right: 0;
}

.theme-footer-social .social-links__link:hover {
  transform: scale(1.1);
}

.theme-footer-social .social-links__icon {
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  font-size: var(--icon-size, 21px);
  line-height: var(--icon-size, 21px);
  border-radius: 10%;
  margin: 0;
  background-color: transparent !important;
  width: 20px;
  height: 20px;
}

.theme-footer-social .social-links__icon svg {
  width: 100% !important;
  height: 100% !important;
  position: relative;
  display: block;
  fill: #fff !important;
}

.theme-footer-social .social-links__icon img {
  width: 100% !important;
  height: 100% !important;
  position: relative;
  display: block;
  object-fit: contain;
}

.theme-footer-social .social-links__icon:hover {
  opacity: 0.9;
}

.home-page-footer .footer_col_inner {
  padding: 10px;
}

/* Desktop layout - min-width 856px */
@media (min-width: 856px) {
  .theme-footer-contact {
    width: 61.65%;
  }

  .footer-menu-1 {
    width: 20.532%;
  }

  .footer-menu-2 {
    width: 17.456%;
  }
}

/* Tablet layout - max-width 1024px */
@media (max-width: 1024px) {
  .theme-footer {
    padding: 50px 20px;
  }

  .footer__container {
    flex-wrap: wrap;
  }

  .theme-footer-contact .footer_col_inner {
    margin: 0 15% 0 0;
  }

  .theme-footer-menu .hs-menu-wrapper > ul li a {
    font-size: 13px;
  }

  .theme-footer-social .social-links__link {
    --icon-size: 15px;
  }
}

/* Tablet layout - max-width 1024px and min-width 856px */
@media (max-width: 1024px) and (min-width: 856px) {
  .theme-footer-contact {
    width: 35%;
  }

  .theme-footer-menu {
    width: 20%;
  }
}

/* Mobile layout - max-width 855px */
@media (max-width: 855px) {
  .theme-footer {
    padding: 35px 20px;
  }

  .theme-footer-contact {
    width: 100%;
  }

  .theme-footer-contact .footer_col_inner {
    margin: 0 0 50px 0;
    text-align: center;
  }

  .theme-footer-logo {
    display: flex;
    justify-content: center;
  }

  .theme-footer-logo img {
    max-width: 200px;
  }

  .theme-footer-menu {
    width: 50%;
  }

  .theme-footer-menu .hs-menu-wrapper > ul li a {
    justify-content: center;
  }

  .theme-footer-social .social-links {
    text-align: center;
    justify-content: center;
  }

  .theme-footer-social .social-links__link {
    --icon-size: 22px;
  }
}

/* Additional mobile adjustments */
@media (max-width: 855px) {
  .contact-page-footer .theme-footer-menu {
    width: 100%;
    margin: 0 0 40px;
  }

  .contact-page-footer .theme-footer-menu.footer-menu-2 {
    margin: 0;
  }

  .home-page-footer .footer_col_inner {
    padding: 0;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

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