/*
1. Libraries
2. Base
*/
/* Enable CSS debug mode */
/* * {border: 1px solid red;} */
/* Libraries */
*,
*:before,
*:after {
  box-sizing: border-box;
} /* 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;
} /* https://github.com/necolas/normalize.css */

/* 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));
}
  
} /* layout classes https://github.com/HubSpot/cms-theme-boilerplate */
.content-wrapper {
  margin: 0 auto;
  padding: 0;
}

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

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

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

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
} /* dnd classes https://github.com/HubSpot/cms-theme-boilerplate */
[data-sal] {
    transition-delay: 0s;
    transition-delay: var(--sal-delay, 0s);
    transition-duration: .2s;
    transition-duration: var(--sal-duration, .2s);
    transition-timing-function: ease;
    transition-timing-function: var(--sal-easing, ease)
}

[data-sal][data-sal-duration="200"] {
    transition-duration: .2s
}

[data-sal][data-sal-duration="250"] {
    transition-duration: .25s
}

[data-sal][data-sal-duration="300"] {
    transition-duration: .3s
}

[data-sal][data-sal-duration="350"] {
    transition-duration: .35s
}

[data-sal][data-sal-duration="400"] {
    transition-duration: .4s
}

[data-sal][data-sal-duration="450"] {
    transition-duration: .45s
}

[data-sal][data-sal-duration="500"] {
    transition-duration: .5s
}

[data-sal][data-sal-duration="550"] {
    transition-duration: .55s
}

[data-sal][data-sal-duration="600"] {
    transition-duration: .6s
}

[data-sal][data-sal-duration="650"] {
    transition-duration: .65s
}

[data-sal][data-sal-duration="700"] {
    transition-duration: .7s
}

[data-sal][data-sal-duration="750"] {
    transition-duration: .75s
}

[data-sal][data-sal-duration="800"] {
    transition-duration: .8s
}

[data-sal][data-sal-duration="850"] {
    transition-duration: .85s
}

[data-sal][data-sal-duration="900"] {
    transition-duration: .9s
}

[data-sal][data-sal-duration="950"] {
    transition-duration: .95s
}

[data-sal][data-sal-duration="1000"] {
    transition-duration: 1s
}

[data-sal][data-sal-duration="1050"] {
    transition-duration: 1.05s
}

[data-sal][data-sal-duration="1100"] {
    transition-duration: 1.1s
}

[data-sal][data-sal-duration="1150"] {
    transition-duration: 1.15s
}

[data-sal][data-sal-duration="1200"] {
    transition-duration: 1.2s
}

[data-sal][data-sal-duration="1250"] {
    transition-duration: 1.25s
}

[data-sal][data-sal-duration="1300"] {
    transition-duration: 1.3s
}

[data-sal][data-sal-duration="1350"] {
    transition-duration: 1.35s
}

[data-sal][data-sal-duration="1400"] {
    transition-duration: 1.4s
}

[data-sal][data-sal-duration="1450"] {
    transition-duration: 1.45s
}

[data-sal][data-sal-duration="1500"] {
    transition-duration: 1.5s
}

[data-sal][data-sal-duration="1550"] {
    transition-duration: 1.55s
}

[data-sal][data-sal-duration="1600"] {
    transition-duration: 1.6s
}

[data-sal][data-sal-duration="1650"] {
    transition-duration: 1.65s
}

[data-sal][data-sal-duration="1700"] {
    transition-duration: 1.7s
}

[data-sal][data-sal-duration="1750"] {
    transition-duration: 1.75s
}

[data-sal][data-sal-duration="1800"] {
    transition-duration: 1.8s
}

[data-sal][data-sal-duration="1850"] {
    transition-duration: 1.85s
}

[data-sal][data-sal-duration="1900"] {
    transition-duration: 1.9s
}

[data-sal][data-sal-duration="1950"] {
    transition-duration: 1.95s
}

[data-sal][data-sal-duration="2000"] {
    transition-duration: 2s
}

[data-sal][data-sal-delay="50"] {
    transition-delay: .05s
}

[data-sal][data-sal-delay="100"] {
    transition-delay: .1s
}

[data-sal][data-sal-delay="150"] {
    transition-delay: .15s
}

[data-sal][data-sal-delay="200"] {
    transition-delay: .2s
}

[data-sal][data-sal-delay="250"] {
    transition-delay: .25s
}

[data-sal][data-sal-delay="300"] {
    transition-delay: .3s
}

[data-sal][data-sal-delay="350"] {
    transition-delay: .35s
}

[data-sal][data-sal-delay="400"] {
    transition-delay: .4s
}

[data-sal][data-sal-delay="450"] {
    transition-delay: .45s
}

[data-sal][data-sal-delay="500"] {
    transition-delay: .5s
}

[data-sal][data-sal-delay="550"] {
    transition-delay: .55s
}

[data-sal][data-sal-delay="600"] {
    transition-delay: .6s
}

[data-sal][data-sal-delay="650"] {
    transition-delay: .65s
}

[data-sal][data-sal-delay="700"] {
    transition-delay: .7s
}

[data-sal][data-sal-delay="750"] {
    transition-delay: .75s
}

[data-sal][data-sal-delay="800"] {
    transition-delay: .8s
}

[data-sal][data-sal-delay="850"] {
    transition-delay: .85s
}

[data-sal][data-sal-delay="900"] {
    transition-delay: .9s
}

[data-sal][data-sal-delay="950"] {
    transition-delay: .95s
}

[data-sal][data-sal-delay="1000"] {
    transition-delay: 1s
}

[data-sal][data-sal-easing=linear] {
    transition-timing-function: linear
}

[data-sal][data-sal-easing=ease] {
    transition-timing-function: ease
}

[data-sal][data-sal-easing=ease-in] {
    transition-timing-function: ease-in
}

[data-sal][data-sal-easing=ease-out] {
    transition-timing-function: ease-out
}

[data-sal][data-sal-easing=ease-in-out] {
    transition-timing-function: ease-in-out
}

[data-sal][data-sal-easing=ease-in-cubic] {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

[data-sal][data-sal-easing=ease-out-cubic] {
    transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

[data-sal][data-sal-easing=ease-in-out-cubic] {
    transition-timing-function: cubic-bezier(.645, .045, .355, 1)
}

[data-sal][data-sal-easing=ease-in-circ] {
    transition-timing-function: cubic-bezier(.6, .04, .98, .335)
}

[data-sal][data-sal-easing=ease-out-circ] {
    transition-timing-function: cubic-bezier(.075, .82, .165, 1)
}

[data-sal][data-sal-easing=ease-in-out-circ] {
    transition-timing-function: cubic-bezier(.785, .135, .15, .86)
}

[data-sal][data-sal-easing=ease-in-expo] {
    transition-timing-function: cubic-bezier(.95, .05, .795, .035)
}

[data-sal][data-sal-easing=ease-out-expo] {
    transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

[data-sal][data-sal-easing=ease-in-out-expo] {
    transition-timing-function: cubic-bezier(1, 0, 0, 1)
}

[data-sal][data-sal-easing=ease-in-quad] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}

[data-sal][data-sal-easing=ease-out-quad] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}

[data-sal][data-sal-easing=ease-in-out-quad] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}

[data-sal][data-sal-easing=ease-in-quart] {
    transition-timing-function: cubic-bezier(.895, .03, .685, .22)
}

[data-sal][data-sal-easing=ease-out-quart] {
    transition-timing-function: cubic-bezier(.165, .84, .44, 1)
}

[data-sal][data-sal-easing=ease-in-out-quart] {
    transition-timing-function: cubic-bezier(.77, 0, .175, 1)
}

[data-sal][data-sal-easing=ease-in-quint] {
    transition-timing-function: cubic-bezier(.755, .05, .855, .06)
}

[data-sal][data-sal-easing=ease-out-quint] {
    transition-timing-function: cubic-bezier(.23, 1, .32, 1)
}

[data-sal][data-sal-easing=ease-in-out-quint] {
    transition-timing-function: cubic-bezier(.86, 0, .07, 1)
}

[data-sal][data-sal-easing=ease-in-sine] {
    transition-timing-function: cubic-bezier(.47, 0, .745, .715)
}

[data-sal][data-sal-easing=ease-out-sine] {
    transition-timing-function: cubic-bezier(.39, .575, .565, 1)
}

[data-sal][data-sal-easing=ease-in-out-sine] {
    transition-timing-function: cubic-bezier(.445, .05, .55, .95)
}

[data-sal][data-sal-easing=ease-in-back] {
    transition-timing-function: cubic-bezier(.6, -.28, .735, .045)
}

[data-sal][data-sal-easing=ease-out-back] {
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275)
}

[data-sal][data-sal-easing=ease-in-out-back] {
    transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55)
}

[data-sal|=fade] {
    opacity: 0;
    transition-property: opacity
}

[data-sal|=fade].sal-animate,
body.sal-disabled [data-sal|=fade] {
    opacity: 1
}

[data-sal|=slide] {
    opacity: 0;
    transition-property: opacity, transform
}

[data-sal=slide-up] {
    transform: translateY(20%)
}

[data-sal=slide-down] {
    transform: translateY(-20%)
}

[data-sal=slide-left] {
    transform: translateX(20%)
}

[data-sal=slide-right] {
    transform: translateX(-20%)
}

[data-sal|=slide].sal-animate,
body.sal-disabled [data-sal|=slide] {
    opacity: 1;
    transform: none
}

[data-sal|=zoom] {
    opacity: 0;
    transition-property: opacity, transform
}

[data-sal=zoom-in] {
    transform: scale(.5)
}

[data-sal=zoom-out] {
    transform: scale(1.1)
}

[data-sal|=zoom].sal-animate,
body.sal-disabled [data-sal|=zoom] {
    opacity: 1;
    transform: none
}

[data-sal|=flip] {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition-property: transform
}

[data-sal=flip-left] {
    transform: perspective(2000px) rotateY(-91deg)
}

[data-sal=flip-right] {
    transform: perspective(2000px) rotateY(91deg)
}

[data-sal=flip-up] {
    transform: perspective(2000px) rotateX(-91deg)
}

[data-sal=flip-down] {
    transform: perspective(2000px) rotateX(91deg)
}

[data-sal|=flip].sal-animate,
body.sal-disabled [data-sal|=flip] {
    transform: none
}

/*# sourceMappingURL=sal.css.map*/ /* https://github.com/mciastek/sal */

/* Base */
@font-face {
  font-family: "Averta Std";
  src: url("https://20905720.fs1.hubspotusercontent-na1.net/hubfs/20905720/raw_assets/public/Marthas-Vineyard-Bank/fonts/AvertaStd-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Averta Std";
  src: url("https://20905720.fs1.hubspotusercontent-na1.net/hubfs/20905720/raw_assets/public/Marthas-Vineyard-Bank/fonts/AvertaStd-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Averta Std";
  src: url("https://20905720.fs1.hubspotusercontent-na1.net/hubfs/20905720/raw_assets/public/Marthas-Vineyard-Bank/fonts/AvertaStd-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {

    /* Colors */
    --action1: #036A6E;
    --action2: #FCC270;
    /* Brand palette — Martha's Vineyard Bank (Figma Colors, 2026) */
    --dark-aqua: #014350;
    /* Main nav bar (Figma main header) */
    --header-nav-teal: #0d6b6e;
    --Dark-Aqua: var(--dark-aqua);
    /* Default foreground for body copy, headings, and links */
    --text: var(--dark-aqua);
    --brand-blue: #0e1840;
    --teal: #036a6e;
    --Teal: var(--teal);
    --yellow: #fcc270;
    --Yellow: var(--yellow);
    /* Figma header / accent CTA pill (solid peach) */
    --cta-pill-orange: #fdc370;
    --orange: #f77e3c;
    --sand: #f7e1c3;
    --light-seafoam: #e1e9e7;
    --seafoam: #c2d3ce;
    --light-moss: #e7e9de;
    --light-grass: #e7e9de;
    --grass: #d0d2bd;
    --light-sand: #fdf2e4;
    /* Figma lt-* aliases + accordion tokens (MVB Unified 5) */
    --lt-sand: var(--light-sand);
    --lt-moss: var(--light-moss);
    --lt-seafoam: var(--light-seafoam);
    --accordion-snow: #fffffc;
    --colors-wireframe-black: var(--black);
    --Colors-Wireframe-Black: var(--black);
    /* Figma Colors/Wireframe/Light Gray — pagination, UI chips */
    --colors-wireframe-light-gray: #f2f3f5;
    /* Figma Colors/Wireframe/Dark Gray — form fields, wireframe borders */
    --colors-wireframe-dark-gray: #868c90;
    --dusk: #ecd6ca;
    --black: #000000;
    --white: #ffffff;
    --gray1: #cccccc;
    --gray2: #979797;
    --gray3: #565656ff;
    /* Figma Colors/Brand/Charcoal — resource cards, wireframe copy */
    --charcoal: #373a36;
    --light-gray:#f5f5f5;
    --dark-gray:#2b2b2b;
     /*black */
    --black-80: rgba(0, 0, 0, .8);
    --black-50: rgba(0, 0, 0, .5);
    --black-30: rgba(0, 0, 0, .3);
    --black-20: rgba(0, 0, 0, .2);
    --black-10: rgba(0, 0, 0, .1);
    /* white */
    --white-80: rgba(255, 255, 255, .8);
    --white-50: rgba(255, 255, 255, .5);
    --white-30: rgba(255, 255, 255, .3);
    --white-20: rgba(255, 255, 255, .2);
    --white-10: rgba(255, 255, 255, .1);

    /* Module-scoped buttons — Figma 985:11359 primary, 985:11369 teal, 985:11364 golden tertiary */
    --u5-btn-primary-color: var(--white);
    --u5-btn-primary-bg: var(--dark-aqua);
    --u5-btn-primary-border: var(--teal);
    --u5-btn-primary-hover-color: var(--white);
    --u5-btn-primary-hover-bg: var(--teal);
    --u5-btn-primary-hover-border: var(--yellow);

    --u5-btn-teal-color: var(--white);
    --u5-btn-teal-bg: var(--teal);
    --u5-btn-teal-border: var(--dark-aqua);
    --u5-btn-teal-hover-color: var(--white);
    --u5-btn-teal-hover-bg: var(--dark-aqua);
    --u5-btn-teal-hover-border: var(--sand);

    --u5-btn-primaryw-color: var(--dark-aqua);
    --u5-btn-primaryw-bg: var(--white);
    --u5-btn-primaryw-border: var(--white);
    --u5-btn-primaryw-hover-color: var(--white);
    --u5-btn-primaryw-hover-bg: var(--white-20);
    --u5-btn-primaryw-hover-border: var(--white);

    --u5-btn-secondary-color: var(--dark-aqua);
    --u5-btn-secondary-bg: transparent;
    --u5-btn-secondary-border: var(--dark-aqua);
    --u5-btn-secondary-hover-color: var(--white);
    --u5-btn-secondary-hover-bg: var(--dark-aqua);
    --u5-btn-secondary-hover-border: var(--dark-aqua);

    --u5-btn-secondaryw-color: var(--white);
    --u5-btn-secondaryw-bg: transparent;
    --u5-btn-secondaryw-border: var(--white);
    --u5-btn-secondaryw-hover-color: var(--white);
    --u5-btn-secondaryw-hover-bg: var(--white-20);
    --u5-btn-secondaryw-hover-border: var(--white);

    --u5-btn-text-color: var(--dark-aqua);
    --u5-btn-text-hover-color: var(--teal);

    --u5-btn-textw-color: var(--white);
    --u5-btn-textw-hover-color: var(--white);
    --u5-btn-textw-hover-opacity: .8;

    --u5-btn-sand-color: var(--dark-aqua);
    --u5-btn-sand-bg: var(--yellow);
    --u5-btn-sand-border: var(--yellow);
    --u5-btn-sand-hover-color: var(--dark-aqua);
    --u5-btn-sand-hover-bg: var(--sand);
    --u5-btn-sand-hover-border: var(--yellow);

    /* Gradients */
    --gradient1: linear-gradient(-45deg, var(--action1) 0%, var(--action2)50%);

    --font-body: "Averta Std", sans-serif;
    --font-heading: "Averta Std", system-ui, sans-serif;
    --font1: var(--font-body);
    /* Type scale (Figma resource cards — weights with global stacks) */
    --font-resource-eyebrow: 600 15px / 1.5 var(--font-heading);
    --font-resource-title: 600 24px / 1.35 var(--font-heading);
    --font-resource-title-tight: 600 24px / 1.25 var(--font-heading);
    --font-resource-body: 400 18px / 1.35 var(--font-body);
    --font-resource-cta: 600 16px / 1.5 var(--font-heading);
    --font-size-button: 18px;
    /* Border Radius */
    --border1: 4px;
    --border2: 5px;
    --border3: 10px;
    --radius-card: 6px;
    --radius-button: 24px;
    /*  Shadow */
    
    --shadow1: rgba(0, 0, 0, 0.1) 0px 2px 12px 0px;
    --shadow2: rgba(0, 0, 0, 0.1) 0px 12px 24px 0px;
    --shadow3: rgba(0, 0, 0, 0.1) 0px 16px 32px 0px;
    /* Figma resource / filter tiles */
    --shadow-card: 0 0 20px rgb(0 0 0 / 15%);
    --textShadow1: 0px 0px 2px rgba(0,0,0,0.5);
    /*  Animation */
    --animation1: .1s ease-in;
    --animation2: .25s ease-in;
    --animation3: 1s ease-in;

    --center: 1440px;
    --center-small: 900px;
    /* Spacing */
    --section-padding-none:0;    
    --section-padding-small:50px 0;
    --section-padding-medium:80px 0;    
    --section-padding-large:100px 0;

    --section-margin-none:0 auto;
    --section-margin-small:0 auto 50px auto;    
    --section-margin-medium:0 auto 80px auto;    
    --section-margin-large:0 auto 100px auto;    
}
/* Centering */
.center {
  float: none;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--center);
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;

}

.center-small {
  float: none;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--center-small);
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

/* Default anchor link offset */
.anchor {
  display: block;
  position: relative;
  top: -160px;
  visibility: hidden;
}

body.u5-site--foundation-footer .anchor {
  top: -100px;
}


.shadow-boxes {
  background-color: var(--black-10);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 50px;

  .box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    padding: 16px;
    aspect-ratio: 1/1;
    max-width: 250px;
    width: 100%;

    &.shadow1 {
      box-shadow: var(--shadow1);
    }

    &.shadow2 {
      box-shadow: var(--shadow2);
    }

    &.shadow3 {
      box-shadow: var(--shadow3);
    }
  }

}

/* Popover styling */

/* When any card popover is open, lock body scroll. Using class so it works with top-layer. */
body:has(.popover-container:popover-open) {
  overflow: hidden;
}
.popover-container {
  border:none;
  background: transparent;

  /* Keep dialog within the viewport when short (Popover UA centers tall boxes → top/bottom clip). */
  &:popover-open {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    min-height: 0;
    overflow: hidden;
    max-height: calc(
      100vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 32px
    );
    max-height: calc(
      100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 32px
    );
  }

  /* Scroll the white panel when the stack exceeds the viewport; avoid nested flex on content (collapses height when popover is intrinsic-sized). */
  &:popover-open .popover-inner-container {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }

  &::backdrop {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: none;
    transition: background-color 0.3s;
    transition-behavior: allow-discrete;
    position: fixed;
    pointer-events: auto;
    inset: 0px;
  }

  .popover-inner-container {
    padding: 30px;
    overflow: visible;
    border-radius: var(--border3);
    box-shadow: var(--shadow3);
    background-color: var(--white);
    @media (max-width: 580px) {
      padding: 20px;
    }
  }


  /**/
  button.close-btn {
    display: block;
    margin:0 0 20px auto;
    border:none;
    background:rgba(255,255,255,.25);
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
    border: 2px solid var(--white);
    transition: var(--animation1);
    span {
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    svg {
      width: 16px;
      height: 16px;
      path {
        fill: var(--white);
        transition: var(--animation1);
      }
    }
    &:hover,&:focus {
      background: rgba(255,255,255,.9);
      svg {
        path {
          fill: var(--black);
        }
      }
    }
  }
  .popover-content-container {
    max-height: 650px;
    overflow-y:scroll;
    text-align:initial;
    h1,h2,h3,h4,h5,h6 {
      color: initial;
    }
  }
}
/* Team Member Popover CSS */
.popover-container.team-member {
  .popover-content-upper {
    display:block;
    margin-bottom: 30px;
    .popover-member-name {
      margin-bottom:0;
      font-weight: bold;
     }
     .popover-member-position {
      margin-top: 10px;
      margin-bottom:0;
     }
     .social-links {
       display:flex;
       margin-top: 20px;
       gap: 5px;
       a {
         margin:0;
         display:flex;
       }
       a:after {
         display:none;
       }
       a:hover {
         svg path {
           fill: var(--action1);
         }
       }
     }
  }

  .popover-member-bio {
    display: block;
  }
  
}


/*---------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------*/

/* splide pagination and arrows */
ul.splide__pagination {
  position: relative;
  margin-top: 30px;
  bottom: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  padding:0;
  li {
    margin:0;
    padding:0;

    button.splide__pagination__page {
      width: 16px;
      height: 16px;
      margin:0;
      opacity:1;
      border: 2px solid var(--black);
      border-radius: 50%;
      background: transparent;
      transform: none;
      transition: var(--animation1);
      &:not(.is-active) {
        &:hover,&:focus {
          background: var(--black-10);
          
        }
      }
      &.is-active {
        background: var(--black);
        transform: none;
      }
    }
  }
  .dark-mode & {
    li {
      button.splide__pagination__page {
        border: 2px solid var(--white);
        &.is-active {
          background: var(--white);
          transform: none;
        }
        &:not(.is-active) {
          &:hover,&:focus {
            background: var(--white-20);
          }
        }
      }
     
    }
  }
}

.splide__arrows {
  .splide__arrow {
    background:var(--white);
    border: 1px solid var(--gray1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--animation1);
    box-shadow: var(--shadow1);
    opacity:1!important;
      svg {
        transition: var(--animation1);
        path {
          fill: var(--black);
          transition: var(--animation1);
        }
      }    
    &.splide__arrow--prev {
      left: -18px;
      transform:scale(0.8);
    }
    &.splide__arrow--next {
      right: -18px;
      transform:scale(0.8);
    }

    &:hover:not(:disabled) {
      border: 1px solid var(--black);
      background-color: var(--black);
      opacity:1!important;
      svg {
        path {
          fill: var(--white);
        }
      }
    }
  }
  .dark-mode & {
    .splide__arrow {
      background:var(--white);
      border: 1px solid var(--gray1);
      svg path {
        fill: var(--black);
      }
      &:hover:not(:disabled) {
        border: 1px solid var(--gray2);
        background-color: var(--light-gray);
        svg path {
          fill: var(--black);
        }
      }
    }
  }
}
/* body */
:root {
  --fs-h1: clamp(1.875rem, 1.35rem + 2.8vw, 3rem);
  --fs-h2: clamp(1.5rem, 1.25rem + 1.1vw, 2.0625rem);
  --lh-h2: 1.2;
}

html {
  color: var(--text);
}

body {
  font-size: 16px;
  line-height: 1.61803398875;
  /* Golden ratio */
  font-family: var(--font1);
  color: var(--text);
  font-weight: normal;
}


h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-weight: 600;
  font-synthesis: none;
}

h1 {}

h2 {}

h3 {}

h4 {}

h5 {}

h6 {}

/* 0 top margin on 1st header */
p:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}




/* heading styles */
h1,
.h1 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  letter-spacing: .25px;
  margin: 0 0 20px;
  line-height: 1.2;
}

h2,
.h2 {
  font: 600 var(--fs-h2) / var(--lh-h2) var(--font-heading);
  letter-spacing: .25px;
  margin: 0 0 20px;
}

h3,
.h3 {
  font-family: var(--font-heading);
  font-size: 38px;
  letter-spacing: .25px;
  margin-bottom: 15px;
  line-height: 1.2;
  margin-top: 0;
  @media (max-width: 1024px) {
    font-size: 32px;
  }

  @media (max-width: 580px) {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

h4,
.h4 {
  font-family: var(--font-heading);
  font-size: 34px;
  letter-spacing: .25px;
  margin-bottom: 15px;
  line-height: 1.2;
  margin-top: 0;
  @media (max-width: 1024px) {
    font-size: 28px;
  }

  @media (max-width: 580px) {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

h5,
.h5 {
  font-family: var(--font-heading);
  font-size: 30px;
  letter-spacing: .25px;
  margin-bottom: 15px;
  line-height: 1.2;
  margin-top: 0;
  @media (max-width: 1024px) {
    font-size: 24px;
  }

  @media (max-width: 580px) {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

h6,
.h6 {
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: .25px;
  margin-bottom: 15px;
  line-height: 1.2;
  margin-top: 0;
  @media (max-width: 1024px) {
    font-size: 20px;
  }

  @media (max-width: 580px) {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

/* body styles */
.b1 {
  font-family: var(--font1);
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: .25px;
  margin-bottom: 20px;

  @media (max-width: 580px) {
    font-size: 17px;
  }
}

.b2 {
  font-family: var(--font1);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: .25px;
  margin-bottom: 20px;

  @media (max-width: 580px) {
    font-size: 16px;
  }
}

.b3 {
  font-family: var(--font1);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .25px;
  margin-bottom: 20px;

  @media (max-width: 580px) {
    font-size: 15px;
  }
}

.b4 {
  font-family: var(--font1);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .35px;
  margin-bottom: 20px;

  @media (max-width: 580px) {
    font-size: 14px;
  }
}

.b5 {
  font-family: var(--font1);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: .35px;
  margin-bottom: 20px;

  @media (max-width: 580px) {
    font-size: 13px;
  }
}

.b6 {
  font-family: var(--font1);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: .35px;
  margin-bottom: 10px;

  @media (max-width: 580px) {
    font-size: 12px;
  }
}

.blockquote,blockquote {
  font-family: var(--font1);
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  margin: 50px auto;
  display: block;
  padding: 50px;
  max-width: 100%;
  border-radius: var(--border3);
  border: 1px solid var(--gray1);
  background: var(--white);
  @media (max-width: 1024px) {
    padding: 30px;
    
  }
  @media (max-width: 580px) {
    padding: 20px;
    font-size: 18px;
  }
  p:last-of-type {
    margin-bottom: 0;
  }
  p:first-of-type {
    margin-top: 0;
  }


}

/* Eyebrow label — Averta 15/600, dark aqua; no chip background */
.eyebrow {
  color: var(--text);
  font: 600 15px / 1.5 var(--font-heading);
  font-style: normal;
  letter-spacing: 0;
  display: block;
  margin: 0 0 12px;
  padding: 0;
  background: none;
  border-radius: 0;
}
/****************/
/* BUTTON .btn */
/**************/
a.btn,
span.btn a,
input.hs-button,
span.btn button:not(.close-btn),
button.btn,
.systems-page form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-button);
  line-height: 1.3;
  color: var(--u5-btn-primary-color);
  border: 1.5px solid var(--u5-btn-primary-border);
  border-radius: 24px;
  background: var(--u5-btn-primary-bg);
  padding: 12px 24px;
  margin: 0;
  transition: var(--animation1);
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

a.btn:hover,
a.btn:focus,
span.btn a:hover,
span.btn a:focus,
input.hs-button:hover,
input.hs-button:focus,
span.btn button:not(.close-btn):hover,
span.btn button:not(.close-btn):focus,
button.btn:hover,
button.btn:focus,
.systems-page form button:hover,
.systems-page form button:focus {
  background: var(--u5-btn-primary-hover-bg);
  color: var(--u5-btn-primary-hover-color);
  border-color: var(--u5-btn-primary-hover-border);
}

/***************************/
/* BUTTON WHITE — on dark / contrast */
/***************************/
span.btn-white a,
a.btn-white,
span.btn-white button:not(.close-btn),
button.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-button);
  line-height: 1.3;
  color: var(--u5-btn-primaryw-color);
  background-color: var(--u5-btn-primaryw-bg);
  border: 1.5px solid var(--u5-btn-primaryw-border);
  border-radius: var(--radius-button);
  padding: 12px 24px;
  margin: 0;
  transition: var(--animation1);
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

a.btn-white:hover,
a.btn-white:focus,
span.btn-white a:hover,
span.btn-white a:focus,
span.btn-white button:not(.close-btn):hover,
span.btn-white button:not(.close-btn):focus,
button.btn-white:hover,
button.btn-white:focus {
  background-color: var(--u5-btn-primaryw-hover-bg);
  border-color: var(--u5-btn-primaryw-hover-border);
  color: var(--u5-btn-primaryw-hover-color);
}

/***************************/
/* BUTTON SAND — lt sand + yellow ring (Figma: MV Bank) */
/***************************/
span.btn-sand a,
a.btn-sand,
span.btn-sand button:not(.close-btn),
button.btn-sand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-button);
  line-height: 1.3;
  color: var(--u5-btn-sand-color);
  background-color: var(--u5-btn-sand-bg);
  border: 1.5px solid var(--u5-btn-sand-border);
  border-radius: var(--radius-button);
  padding: 12px 24px;
  margin: 0;
  transition: var(--animation1);
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

a.btn-sand:hover,
a.btn-sand:focus,
span.btn-sand a:hover,
span.btn-sand a:focus,
span.btn-sand button:not(.close-btn):hover,
span.btn-sand button:not(.close-btn):focus,
button.btn-sand:hover,
button.btn-sand:focus {
  background-color: var(--u5-btn-sand-hover-bg);
  border-color: var(--u5-btn-sand-hover-border);
  color: var(--u5-btn-sand-hover-color);
}

/*---------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------*/

/********************************/
/* BUTTON STROKED .btn-stroked */
/******************************/
a.btn-stroked,
span.btn-stroked a,
span.btn-stroked button:not(.close-btn),
button.btn-stroked {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-button);
  line-height: 1.3;
  color: var(--u5-btn-secondary-color);
  background-color: var(--u5-btn-secondary-bg);
  border: 1.5px solid var(--u5-btn-secondary-border);
  border-radius: var(--radius-button);
  padding: 12px 24px;
  margin: 0;
  transition: var(--animation1);
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

a.btn-stroked:hover,
a.btn-stroked:focus,
span.btn-stroked a:hover,
span.btn-stroked a:focus,
span.btn-stroked button:not(.close-btn):hover,
span.btn-stroked button:not(.close-btn):focus,
button.btn-stroked:hover,
button.btn-stroked:focus {
  background-color: var(--u5-btn-secondary-hover-bg);
  border-color: var(--u5-btn-secondary-hover-border);
  color: var(--u5-btn-secondary-hover-color);
}

/********************************************/
/* BUTTON STROKED WHITE .btn-stroked-white */
/******************************************/
a.btn-stroked-white,
span.btn-stroked-white a,
span.btn-stroked-white button:not(.close-btn),
button.btn-stroked-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-button);
  line-height: 1.3;
  color: var(--u5-btn-secondaryw-color);
  background-color: var(--u5-btn-secondaryw-bg);
  border: 1.5px solid var(--u5-btn-secondaryw-border);
  border-radius: var(--radius-button);
  padding: 12px 24px;
  margin: 0;
  transition: var(--animation1);
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

a.btn-stroked-white:hover,
a.btn-stroked-white:focus,
span.btn-stroked-white a:hover,
span.btn-stroked-white a:focus,
span.btn-stroked-white button:not(.close-btn):hover,
span.btn-stroked-white button:not(.close-btn):focus,
button.btn-stroked-white:hover,
button.btn-stroked-white:focus {
  background-color: var(--u5-btn-secondaryw-hover-bg);
  border-color: var(--u5-btn-secondaryw-hover-border);
  color: var(--u5-btn-secondaryw-hover-color);
}

/*---------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------*/


/**************************/
/* BUTTON TEXT .btn-text */
/*************************/
a.btn-text,
span.btn-text a,
.read-more,
span.btn-text button:not(.close-btn),
button.btn-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-button);
  line-height: 1.3;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--u5-btn-text-color);
  border: none;
  background-color: transparent;
  padding: 0;

  &:after {
    content: "";
    display: inline-block;
    flex: 0 0 auto;
    width: 7px;
    height: 12px;
    margin-left: 8px;
    position: relative;
    top: -2px;
    vertical-align: middle;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='7.94 5.94 7.11 12.11'%3E%3Cpath fill='black' fill-rule='evenodd' clip-rule='evenodd' d='M14.8381 11.6211C15.054 11.8304 15.054 12.1697 14.8381 12.379L9.2039 17.843C8.98808 18.0523 8.63823 18.0523 8.42241 17.843L8.16186 17.5904C7.94605 17.3811 7.94605 17.0417 8.16186 16.8324L13.1448 12L8.16187 7.16755C7.94605 6.95824 7.94605 6.61896 8.16187 6.40965L8.42241 6.15698C8.63823 5.94767 8.98808 5.94767 9.2039 6.15698L14.8381 11.6211Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='7.94 5.94 7.11 12.11'%3E%3Cpath fill='black' fill-rule='evenodd' clip-rule='evenodd' d='M14.8381 11.6211C15.054 11.8304 15.054 12.1697 14.8381 12.379L9.2039 17.843C8.98808 18.0523 8.63823 18.0523 8.42241 17.843L8.16186 17.5904C7.94605 17.3811 7.94605 17.0417 8.16186 16.8324L13.1448 12L8.16187 7.16755C7.94605 6.95824 7.94605 6.61896 8.16187 6.40965L8.42241 6.15698C8.63823 5.94767 8.98808 5.94767 9.2039 6.15698L14.8381 11.6211Z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: var(--animation1);
  }
}

a.btn-text:hover,
a.btn-text:focus,
span.btn-text a:hover,
span.btn-text a:focus,
.read-more:hover,
.read-more:focus,
span.btn-text button:not(.close-btn):hover,
span.btn-text button:not(.close-btn):focus,
button.btn-text:hover,
button.btn-text:focus {
  color: var(--u5-btn-text-hover-color);

  &:after {
    transform: translateX(2px);
  }
}

/**************************************/
/* BUTTON TEXT WHITE .btn-text-white */
/************************************/
a.btn-text-white,
span.btn-text-white a,
span.btn-text-white button:not(.close-btn),
button.btn-text-white {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-button);
  line-height: 1.3;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--u5-btn-textw-color);
  border: none;
  background-color: transparent;
  padding: 0;
  &:after {
    content: "";
    display: inline-block;
    flex: 0 0 auto;
    width: 7px;
    height: 12px;
    margin-left: 8px;
    position: relative;
    top: -2px;
    vertical-align: middle;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='7.94 5.94 7.11 12.11'%3E%3Cpath fill='black' fill-rule='evenodd' clip-rule='evenodd' d='M14.8381 11.6211C15.054 11.8304 15.054 12.1697 14.8381 12.379L9.2039 17.843C8.98808 18.0523 8.63823 18.0523 8.42241 17.843L8.16186 17.5904C7.94605 17.3811 7.94605 17.0417 8.16186 16.8324L13.1448 12L8.16187 7.16755C7.94605 6.95824 7.94605 6.61896 8.16187 6.40965L8.42241 6.15698C8.63823 5.94767 8.98808 5.94767 9.2039 6.15698L14.8381 11.6211Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='7.94 5.94 7.11 12.11'%3E%3Cpath fill='black' fill-rule='evenodd' clip-rule='evenodd' d='M14.8381 11.6211C15.054 11.8304 15.054 12.1697 14.8381 12.379L9.2039 17.843C8.98808 18.0523 8.63823 18.0523 8.42241 17.843L8.16186 17.5904C7.94605 17.3811 7.94605 17.0417 8.16186 16.8324L13.1448 12L8.16187 7.16755C7.94605 6.95824 7.94605 6.61896 8.16187 6.40965L8.42241 6.15698C8.63823 5.94767 8.98808 5.94767 9.2039 6.15698L14.8381 11.6211Z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: var(--animation1);
  }
}

a.btn-text-white:hover,
a.btn-text-white:focus,
span.btn-text-white a:hover,
span.btn-text-white a:focus,
span.btn-text-white button:not(.close-btn):hover,
span.btn-text-white button:not(.close-btn):focus,
button.btn-text-white:hover,
button.btn-text-white:focus {
  color: var(--u5-btn-textw-hover-color);
  opacity: var(--u5-btn-textw-hover-opacity);

  &:after {
    transform: translateX(2px);
  }
}




/*---------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------*/

/* Accent pill — peach/orange CTA (Figma header: #FDC370, 24px radius, teal label) */
a.btn-accent,
a.btn-orange-cta,
span.btn-accent a,
span.btn-orange-cta a,
span.btn-accent a.cta_button,
span.btn-orange-cta a.cta_button,
span.btn-accent button:not(.close-btn),
span.btn-orange-cta button:not(.close-btn),
button.btn-accent,
button.btn-orange-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-button);
  line-height: 1.3;
  color: var(--dark-aqua);
  background-color: var(--cta-pill-orange);
  border: 1.5px solid var(--cta-pill-orange);
  border-radius: 24px;
  padding: 12px 24px;
  margin: 0;
  transition: var(--animation1);
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

a.btn-accent:hover,
a.btn-accent:focus,
a.btn-orange-cta:hover,
a.btn-orange-cta:focus,
span.btn-accent a:hover,
span.btn-accent a:focus,
span.btn-orange-cta a:hover,
span.btn-orange-cta a:focus,
span.btn-accent a.cta_button:hover,
span.btn-accent a.cta_button:focus,
span.btn-orange-cta a.cta_button:hover,
span.btn-orange-cta a.cta_button:focus,
span.btn-accent button:not(.close-btn):hover,
span.btn-accent button:not(.close-btn):focus,
span.btn-orange-cta button:not(.close-btn):hover,
span.btn-orange-cta button:not(.close-btn):focus,
button.btn-accent:hover,
button.btn-accent:focus,
button.btn-orange-cta:hover,
button.btn-orange-cta:focus {
  background-color: color-mix(in srgb, var(--cta-pill-orange) 88%, var(--dark-aqua));
  border-color: color-mix(in srgb, var(--cta-pill-orange) 82%, var(--dark-aqua));
  color: var(--dark-aqua);
}

/* Charitable Foundation header nav CTA — Figma 985:11444 default, 985:11446 hover */
a.btn-foundation-nav-cta,
span.btn-foundation-nav-cta a,
span.btn-foundation-nav-cta a.cta_button,
span.btn-foundation-nav-cta button:not(.close-btn),
button.btn-foundation-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark-aqua);
  background-color: var(--light-sand);
  border: 1.5px solid var(--yellow);
  border-radius: 24px;
  padding: 12px 24px;
  margin: 0;
  transition: var(--animation1);
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

a.btn-foundation-nav-cta:hover,
a.btn-foundation-nav-cta:focus,
span.btn-foundation-nav-cta a:hover,
span.btn-foundation-nav-cta a:focus,
span.btn-foundation-nav-cta a.cta_button:hover,
span.btn-foundation-nav-cta a.cta_button:focus,
span.btn-foundation-nav-cta button:not(.close-btn):hover,
span.btn-foundation-nav-cta button:not(.close-btn):focus,
button.btn-foundation-nav-cta:hover,
button.btn-foundation-nav-cta:focus {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark-aqua);
}

a.btn-teal,
span.btn-teal a,
span.btn-teal button:not(.close-btn),
button.btn-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-button);
  line-height: 1.3;
  color: var(--u5-btn-teal-color);
  border-radius: 24px;
  border: 1.5px solid var(--u5-btn-teal-border);
  background: var(--u5-btn-teal-bg);
  padding: 12px 24px;
  margin: 0;
  transition: var(--animation1);
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

a.btn-teal:hover,
a.btn-teal:focus,
span.btn-teal a:hover,
span.btn-teal a:focus,
span.btn-teal button:not(.close-btn):hover,
span.btn-teal button:not(.close-btn):focus,
button.btn-teal:hover,
button.btn-teal:focus {
  background: var(--u5-btn-teal-hover-bg);
  border: 1.5px solid var(--u5-btn-teal-hover-border);
  color: var(--u5-btn-teal-hover-color);
}

a.btn-yellow-accent,
span.btn-yellow-accent a,
span.btn-yellow-accent button:not(.close-btn),
button.btn-yellow-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: var(--font-resource-cta);
  color: var(--dark-aqua);
  border-radius: 24px;
  border: 1px solid var(--Colors-Wireframe-Black, #000);
  background: var(--Yellow, #FCC270);
  padding: 12px 24px;
  margin: 0;
  transition: var(--animation1);
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

a.btn-yellow-accent:hover,
a.btn-yellow-accent:focus,
span.btn-yellow-accent a:hover,
span.btn-yellow-accent a:focus,
span.btn-yellow-accent button:not(.close-btn):hover,
span.btn-yellow-accent button:not(.close-btn):focus,
button.btn-yellow-accent:hover,
button.btn-yellow-accent:focus {
  background: color-mix(in srgb, var(--Yellow, #FCC270) 85%, var(--dark-aqua));
  border: 1px solid var(--Colors-Wireframe-Black, #000);
  color: var(--dark-aqua);
}

/* BUTTON SMALL .btn__sm */
a.btn.btn__sm,
.btn.btn__sm a,
span.btn-small button:not(.close-btn),
button.btn-small {
  padding: 8px 16px;
  line-height: 1.3;
}

a.btn-accent.btn__sm,
a.btn-orange-cta.btn__sm,
span.btn-accent.btn__sm a,
span.btn-orange-cta.btn__sm a,
button.btn-accent.btn__sm,
button.btn-orange-cta.btn__sm {
  padding: 10px 20px;
}

a.btn-sand.btn__sm,
.btn-sand.btn__sm a,
span.btn-sand.btn__sm button:not(.close-btn),
button.btn-sand.btn__sm {
  padding: 8px 16px;
}

a.btn-teal.btn__sm,
.btn-teal.btn__sm a,
span.btn-teal.btn__sm button:not(.close-btn),
button.btn-teal.btn__sm {
  padding: 8px 16px;
}

a.btn-yellow-accent.btn__sm,
.btn-yellow-accent.btn__sm a,
span.btn-yellow-accent.btn__sm button:not(.close-btn),
button.btn-yellow-accent.btn__sm {
  padding: 10px 20px;
}
/***************************************/
.card {
  border-radius: 6px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-basis: calc(100% / var(--cols) - var(--gap) / var(--cols) * (var(--cols) - 1));
    border: 0;
    background: var(--Colors-Brand-White, #FFF);
    transition: all var(--animation2);
    

  &.full-click {
    .button-group a, .button-group button {
      &:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
    }
  }

  &:has(.media.icon),
  &:has(.media.custom-icon),
  &:has(.media.custom-icon-headline) {
    .content {
      padding-top: 20px;
    }
    }

  .media {
    &.image {
      position: relative;
      aspect-ratio: 16/9;
      border-top-right-radius: inherit;
      border-top-left-radius: inherit;
      overflow: hidden;
      /* min-height: 200px; */
      img {
        
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }
    }
    &.icon {
      padding: 30px 30px 0 30px;
      &>span {
        display: flex;
      }
      svg {
        height:  36px;
        path {
          fill: var(--action1);
        }
      }
    }
    &.custom-icon {
      padding: 30px 30px 0 30px;
      align-self: flex-start;
      img {
        object-fit: contain;
        object-position: top left;
        display: block;
      }
    }
    &.custom-icon-headline {
      padding: 30px 30px 0;
      align-self: stretch;
      width: 100%;
      box-sizing: border-box;
      .custom-icon-headline__row {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
      }
      .custom-icon-headline__title {
        flex: 1;
        min-width: 0;
        margin: 0;
        font: var(--font-resource-title-tight);
        color: var(--text);
      }
      .custom-icon-headline__figure {
        flex: 0 0 auto;
        line-height: 0;
        img {
          object-fit: contain;
          object-position: center;
          display: block;
        }
      }
    }
  }


  .content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    flex-grow: 1;
    

   .content-upper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-grow: 1;

      /* Figma Cards / Variants — eyebrow → title 8px; title → body 20px */
      .eyebrow {
        margin: 0 0 8px;
      }

      span.title {
        display: block;
        font: var(--font-resource-title-tight);
        color: var(--text);
        margin: 0 0 20px;
        letter-spacing: 0;

        &:last-child {
          margin-bottom: 0;
        }
      }

      span.description {
        margin: 0;
        font: var(--font-resource-body);
        color: var(--text);
        letter-spacing: 0;
        display: block;
        p,
        li {
          font: inherit;
        }
        p:last-of-type {
          margin-bottom: 0;
        }
      }
   }

    .button-group {
      margin-top: 30px;
    }

  }
}

/***************************************/
.featured-card {
  /* featured cards use .card class */
  @media(min-width: 768px) {
    flex-direction:row;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    gap: 30px;
  
    .media {
      width: 40%;
      border-radius: var(--radius-card);
    }
    .content {
      width: 60%;
      padding:0;
      .content-upper {
        .title {
          font: var(--font-resource-title-tight);
        }
      }
    }
  }
  
}

/*****Resource Card**********************************/
.resource-card {
 /* resource cards use .card class */
}

/***************************************/
.blog-card {
  &.card .media.image {
    width: 100%;
    align-self: stretch;
    min-height: 0;
  }

  .read-time {
    margin-top: 10px;
  }

  .blog-card__meta {
    width: 100%;
    color: var(--charcoal);
  }

  .blog-card__tag,
  .blog-card__author,
  .blog-card__date,
  .blog-card__date-inline,
  .blog-card__sep {
    transition: color var(--animation1);
  }

  .blog-card__tag,
  .blog-card__date,
  .blog-card__date-inline,
  .blog-card__sep {
    color: var(--charcoal);
  }

  .blog-card__author {
    color: var(--charcoal);
  }

  .content-upper span.title {
    color: var(--charcoal);
  }

  .blog-card__readmore.btn-text a {
    color: var(--black);

    &:hover,
    &:focus {
      color: var(--dark-aqua);
    }
  }

  &.card .content .button-group {
    margin-top: 16px;
  }
}
.form {
  background-color: var(--light-gray);
  padding: 30px;
  max-width: 765px;
  margin: 0 auto;
  float: none;
  overflow: auto;
  border-radius: var(--border3);
  border: 1px solid var(--gray1);
  .submitted-message {
    text-align: center;
  }
  .form-title:empty {
    display: none;
  }

  form {
    margin-bottom: 0;

    .hs-form-field {
      >label {
        font-size: 12px;
        font-weight: bold;
        line-height: 1.2;
        letter-spacing: 1px;
        pointer-events: auto;
      }
    }


    /* error messages */
    .hs_error_rollup {
      margin-top: 20px;

      .hs-error-msgs {
        margin-top: 0;
      }
    }

    ul.hs-error-msgs {
      margin: -10px 0 20px 0;
      padding: 0;
      list-style: none;

      li {
        display: block;
        text-align: center;
        margin: 0;
        width: 100%;
        font-size: 14px;
        line-height: 1.2;
        font-weight: bold;
        padding: 10px;
        border-radius: var(--border1);
        color: var(--white);
        background-color: red;
      }
    }


    /****** FORM INPUTS ******/
    .form-columns-1,
    .form-columns-2 {
      .input {
        margin-right: 0 !important;
      }
    }

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

    fieldset {
      max-width: unset;
    }


    input,
    select,
    textarea {

      &.error,
      &.invalid {
        border: 1px solid red;
      }
    }



    /* Text Based Inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="password"] {
      border-radius: var(--border1);
      margin-top: 2px;
      margin-bottom: 20px;
      font-size: 16px;
      background-color: var(--white);
      color: var(--text);
      padding: 16px;
      width: 100% !important;
      appearance: none;

      &:not(.error):not(.invalid) {
        border: 1px solid transparent;
      }

      &::placeholder {
        color: var(--text);
        opacity: .65;
      }
    }

    /* Select Inputs */


    select {
      position: relative;
      border: 0;
      border-radius: var(--border1);
      margin-top: 2px;
      margin-bottom: 20px;
      font-size: 16px;
      background-color: var(--white);
      padding: 16px;
      cursor: pointer;
      width: 100% !important;
      appearance: none;
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23000"><path d="M480-357.85 253.85-584 296-626.15l184 184 184-184L706.15-584 480-357.85Z"/></svg>');
      background-repeat: no-repeat;
      background-position: right 16px center;
      background-size: 24px;
      color: var(--text);
      &::placeholder {
        color: var(--text);
        opacity: .65;
      }
    }

    /* Radios and Checkboxes */
    ul.inputs-list {
      &.multi-container {
        list-style: none;
        padding: 0;
        margin-top: 8px;
        margin-bottom: 20px;

        label {
          >span {
            font-size: 14px;
            font-weight: normal;
            line-height: 1.2;
            pointer-events: auto;
          }
        }

        /* Shared Input Styles */
        input {
          margin-right: 5px;
          cursor: pointer;
        }

        /* Radio Input */
        input[type="radio"] {}

        /* Checkbox Input */
        input[type="checkbox"] {}
      }
    }


    /* Textarea Input */
    textarea {
      border: 1px solid transparent;
      border-radius: var(--border1);
      margin-top: 2px;
      margin-bottom: 20px;
      font-size: 16px;
      background-color: var(--white);
      color: var(--text);
      padding: 16px;
      width: 100% !important;
      min-height: 150px;
      resize: vertical;

      &::placeholder {
        color: var(--text);
        opacity: .65;
      }
    }

    .legal-consent-container {
      font-size: 13px;
      font-weight: normal;
      line-height: 1.6;
      pointer-events: auto;
      display: flex;
      flex-direction: column;
      gap: 10px;

      * {
        margin: 0 !important;
      }

      ul {
        list-style: none;
        padding: 0;
        margin: 0;

        li {
          label {
            display: flex;
            gap: 5px;
            cursor: pointer;

            span {
              margin: 0;
            }
          }
        }
      }
    }

    /* Button */
    .hs-button {
      margin-top: 30px;
      margin-bottom: 0;
      display: block;
      width: 100%;
      font-size: 18px;
    }
  }

  .dark-mode & {
    background-color: rgba(255, 255, 255, .75);
  }
}

/* for the "new" hubspot form tool */
.form {
  .hsfc-Renderer {
    p {
      font-family: var(--font1)!important;
      color: var(--text)!important;
      margin: 0 0 10px 0;
    }
    .hsfc-FormWrapper {
      form {
        .hsfc-Step {
          .hsfc-Step__Content {
            padding:0!important;
            /*---- FORM ROWS ----*/
            .hsfc-Row {
              margin-bottom:20px;
              label {
                font-size: 12px;
                font-weight: bold;
                line-height: 1.2;
                letter-spacing: 1px;
                pointer-events: auto;
              }
              input {
                margin-bottom:0;
              }
              /* FIELD TYPE SPECIFIC STYLES */
              /* rich text */
              .hsfc-RichText {
                margin-bottom: 30px;
                p:last-of-type {
                  margin-bottom:0;
                }
              }
              /* text input */
              .hsfc-TextField {}
              /* phone input */
              .hsfc-PhoneField {
                .hsfc-PhoneInput {
                  margin-bottom: 20px;
                  .hsfc-PhoneInput__FlagAndCaret {
                    border-color: transparent!important;
                  }
                  input.hsfc-TextInput {
                    margin-bottom:0;
                    margin-top:0;
                  }

                }
              }
              /* textarea field */
              .hsfc-TextareaField {
                textarea {
                  background-color: var(--white);
                  border:none;
                }
              }
              /* single checkbox field */
              .hsfc-CheckboxField {
                margin-bottom: 10px;
              }
              /* multiple checkbox field */
              .hsfc-CheckboxFieldGroup {
                margin-bottom:10px;
              }
              /* radio button field */
              .hsfc-RadioFieldGroup {
                margin-bottom: 10px;
              }
              /* file upload field */
              /* select/dropdown field */

            }
            /*---- SUBMIT BUTTON(S) ----*/
            .hsfc-NavigationRow {
              /*button style from buttons.css*/
              button[type="submit"] {
                display: block;
                width:100%;
                display: inline-block;
                font-family: var(--font1);
                color: var(--white);
                background-color: var(--action1);
                border: 2px solid var(--action1);
                border-radius: var(--border1);
                padding: 15px 40px 15px 40px;
                /* margin: 20px 0; */
                margin:0;
                transition: var(--animation1);
                text-transform: uppercase;
                text-decoration: none;
                font-weight: bold;
                font-size: 14px;
                line-height: 1.2;
                letter-spacing: .25px;
                text-decoration: none;
                cursor: pointer;
                text-align: center;
              &:hover,&:focus {
                transform: none;
                background-color: var(--black);
                color: var(--white);
                border-color: var(--black);
              }
              }
            }
          }
        }
      }
    }
  }
}

.hs-search-field {
  --search-button-bg: var(--action1);
  --search-button-color: var(--white);
  --search-border: var(--action1);
  --search-height: 48px;
  --search-radius: 6px;

  .hs-search-field__bar {
    form {
      display: flex;
      align-items: stretch;
      gap: 0;
      flex-wrap: nowrap;
      margin-bottom: 0;
    }

    .hs-search-field__input {
      height: var(--search-height);
      min-height: var(--search-height);
      padding: 0 1rem;
      border: 1px solid var(--search-border);
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      border-top-left-radius: var(--search-radius);
      border-bottom-left-radius: var(--search-radius);
      font-size: 16px;
      line-height: 1;
      box-sizing: border-box;
      flex: 0 0 180px;
      appearance: none;

      color: var(--text);

      &:focus {
        outline: none;
        border-color: var(--search-button-bg);
        box-shadow: 0 0 0 3px color-mix(in srgb, var(--search-button-bg) 20%, transparent);
      }

      &::placeholder {
        color: var(--text);
        opacity: .65;
      }
    }

    .search-button {
      height: var(--search-height);
      min-height: var(--search-height);
      padding: 0 1rem;
      border: none;
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
      border-top-right-radius: var(--search-radius);
      border-bottom-right-radius: var(--search-radius);
      background: var(--search-button-bg);
      color: var(--search-button-color);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-sizing: border-box;
      transition: background 0.2s ease, transform 0.2s ease;

      &:hover {
        filter: brightness(0.95);
      }

      &:focus {
        outline: none;
        box-shadow: 0 0 0 3px color-mix(in srgb, var(--search-button-bg) 20%, transparent);
      }

      svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
      }
    }
  }
  ul.hs-search-field__suggestions {
    margin-top: 0;
    margin-bottom: 0;
  }
}
/* Keep background from scrolling when menu is open */
html.menu-open {
  overflow-y: hidden;
}

/* set body offset height for fixed header */
body {
  margin-top: 160px;
}

body.hs-landing-page.hs-page {
  margin-top: 100px;
}

body.u5-site--foundation-footer {
  margin-top: 100px;
}

body.hide-header {
  margin-top: 0;
}

body.lp-sign-up {
  margin-top: 0;
}

body.u5-in-page-editor {
  & #main-content,
  & .body-container {
    padding-top: 160px;
    margin-top: -160px;
  }
}

body.u5-site--foundation-footer.u5-in-page-editor {
  & #main-content,
  & .body-container {
    padding-top: 100px;
    margin-top: -100px;
  }
}



/* HubSpot Cookie Notification */
div#hs-eu-cookie-confirmation.hs-cookie-notification-position-bottom.can-use-gradients {
  box-shadow: 2px -1px 5px 0px rgba(0, 0, 0, 0.05);
  border: 0;
  background-color: rgba(var(--white), .9);

  div#hs-eu-cookie-confirmation-inner {
    background-color: rgba(var(--white), 0);
    padding: 15px 20px 10px 20px;
    max-width: 1240px;

    p {
      margin-bottom: 0;
    }

    div#hs-en-cookie-confirmation-buttons-area {
      text-align: left;
      margin: 0;

      a#hs-eu-confirmation-button {
        font-weight: bold;
        margin: 10px 0;

        &:hover {
          background-color: var(--black);
        }
      }
    }
  }
}


p {
  font-family: var(--font1);
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0.25px;

  @media (max-width: 580px) {
    font-size: 16px;
  }
}

a {
  color: var(--text);
  transition: color var(--animation1);
  &:hover,
  &:focus-visible {
    color: var(--action1);
  }
}

blockquote,
blockquote p {}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

ul {
  list-style: disc;
  padding-left: 40px;
  margin-top: 0;
  margin-bottom: 30px;
}

ol {
  list-style: decimal;
  padding-left: 40px;
  margin-top: 0;
  margin-bottom: 30px;
}

li {
  margin-bottom: 5px;
  letter-spacing: .5px;
}

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

input {
  font-family: var(--font1);
}

button {
  font-family: var(--font1);
  cursor: pointer;
}

/* Forms */
form {
  margin-bottom: 30px
}

::-webkit-input-placeholder {
  color: var(--text);
  opacity: .65;
  font-weight: normal;
}

/* Webkit input placeholders */
::-moz-placeholder {
  color: var(--text);
  opacity: .65;
  font-weight: normal;
}

/* Firefox input placeholders */
:-ms-input-placeholder {
  color: var(--text);
  opacity: .65;
  font-weight: normal;
}

/* IE  input placeholders */
/* Images */
img {
  max-width: 100%;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
}

/* Make responsive, clear border, fix IE scaling, suppress the space beneath the baseline, fix Webkit blurring on scaled down files */
svg {
  max-width: 100%;
  width: auto;
  height: auto;
}

/* Horizontal Rule */
hr {
  margin-top: 30px;
  margin-bottom: 35px;
  border-width: 0;
  border-top: 1px solid var(--gray1);
}

/* Abbreviations */
abbr[title] {
  border: 0;
}

/* Code */
code {
  padding: 1px;
  margin: 0 10px;
  white-space: nowrap;
  background: var(--gray1);
  border: 1px solid var(--gray1);
  border-radius: 0;
}

pre>code {
  display: block;
  padding: 1px 15px;
  white-space: pre;
  margin-bottom: 30px
}

pre {
  overflow-x: auto;
}

/* responsive pre elements */
table pre {
  white-space: pre-wrap;
}

/* responsive pre tables */
/* Tables */
th,
td {
  padding: 10px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray1);
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

table {
  margin-bottom: 30px
}

table th {
  text-transform: uppercase;
}

table td {
  border-bottom: 1px solid var(--gray2);
  font-size: 14px;
}

a[href='javascript:;'] {
  cursor: default;
}

section[class*='u5m-'] {
  scroll-margin-top: 145px;
}

body.u5-site--foundation-footer section[class*='u5m-'] {
  scroll-margin-top: 85px;
}

.hs_cos_wrapper_type_form {
  h3 {
    text-align: center;
  }

  form {}
}
section.u5m-404-error,
section.u5m-500-error,section.u5m-backup-unsubscribe {
  margin: 0 auto;
  text-align: center;
  min-height: 60vh;
  display:flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  @media (max-width: 768px) {
    min-height: 35vh;
  }
  
}

section.u5m-backup-unsubscribe {
  
  text-align: center;
  #hs_cos_wrapper_backup_unsubscribe_email_simple_subscription {
    h3 {
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      font-size: 20px;
      line-height: 1.4;
    }
  }


  form {
    h3 {
      font-size: 12px;
      font-weight: bold;
      text-align: left;
      margin-bottom: 4px;
    }

    input {
      border: 1px solid transparent;
      border-radius: 4px;
      margin-top: 2px;
      margin-bottom: 0;
      font-size: 16px;
      padding: 16px;
      width: 100%;
    }

    padding-bottom: 50px;
  }
}

section.u5m-membership-login,
section.u5m-membership-register,
section.u5m-membership-reset-password-request,
section.u5m-membership-reset-password,
section.u5m-password-prompt {

span.form-separator {
  display:block;
  margin-top: 20px;
}

  margin: 180px auto 80px;
  text-align: center;

  ul.hs-error-msgs {
    margin: 10px 0 20px 0;
  }
  .form {
    &.membership-reset-password-request {
      div.hs-form-field:has(ul.no-list) {
        display:none;
      }
      div.hs-form-field {
        input.hs-input {
          margin-bottom: 0;
        }
      }
    }
    &.membership-login, &.membership-register {
      div.hs-form-field:has(ul.no-list) {
        display:none;
      }
    }


    h1 {
      font-size: 40px;
      margin-bottom: 10px;
    }
    form {
      label:not(.hs-error-msg) {
        float:left;
        
      }
      .no-list li label, label#hs-register-widget-checkbox-consent {
        float:none;
      }
      label#hs-register-widget-checkbox-consent {
        position: relative;
        top: -2px;
      }
      label.hs-login-widget-email-label {
        margin-bottom: 10px;
      }
      a.hs-reset-widget-show-password, a.hs-register-widget-show-password, a.hs-login-widget-show-password {
        float:right;
        margin-left:10px;
        position: relative;
        font-size: 14px;
        top: -5px;
        &:hover,&:focus {
          color: var(--text);
        }
      }
      a#hs_login_reset {
        margin-top: 20px;
        display:block;
        &:hover,&:focus {
          color: var(--text);
        }
      }
      .hs-form-field:has(#hs-login-widget-remember),.hs-form-field:has(#hs-passwordless-auth-checkbox-consent){
        display: flex;
        gap: 10px;
        margin-top: 30px;
      }
   
    input[type="password"] {
      height:auto!important;
      margin-bottom: 0;
    }

  }
  }
  div>p {
    margin-top: 20px;
    a {
      &:hover,&:focus {
        color: var(--text);
      }
    }
  }

}

section.u5m-password-prompt {
  form {
    padding-top: 30px;
  }
}

section.u5m-search-results {
  margin: 180px auto 100px;
  .section-inner.center {
    .systems-page {
      h1 {}
      .filters-wrapper {
        margin-bottom: 80px;
        @media (max-width: 768px) {
          margin-bottom: 50px;
        }
        select {
          position: relative;
          border: 1px solid var(--gray1);
          border-radius: var(--border1);
          transition: border-color var(--animation2);
          margin-top: 0px;
          margin-bottom: 0px;
          font-size: 16px;
          background-color: var(--white);
          padding: 16px;
          cursor: pointer;
          width: 100% !important;
          appearance: none;
          background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23000"><path d="M480-357.85 253.85-584 296-626.15l184 184 184-184L706.15-584 480-357.85Z"/></svg>');
          background-repeat: no-repeat;
          background-position: right 16px center;
          background-size: 24px;
          color: var(--text);
          &::placeholder {
            color: var(--text);
            opacity: .65;
          }
          &:hover,&:focus {
            border-color: var(--action1);
          }
        }
      }
      .hs-search-results {
        p.hs-search-results__message {}

      }
    }
  }

  /* search results 'card' style found in u5m-search-results.module.css */
  ul.hs-search-results__listing {
   
  }
  .hs-search__no-results {
    p {
      font-size: 18px;

    }
  }
}

section.u5m-subscription-preferences {
  margin: 180px auto 80px;
.page-header br {
  display: none;
}
  .systems-page {
    .form-group {
      .form {
        max-width: 1000px;
        form {
          h1 {
            font-size: 40px;
          }
          h2 {
            font-size: 24px;
          }
          .email-prefs {
            margin-top: 30px;
            div.item {
              border-bottom: 1px solid var(--gray1);
              margin-bottom: 25px;
              .item-inner {
                padding-bottom: 25px;
                  div.checkbox-row span span {
                    font-weight: bold;
                    padding-left: 5px;
                  }
               p {
                margin:0;
                padding-left: 22px;
               } 
              }


            }
          }
          

          div.subscribe-options p span {
            font-weight: bold;
            padding-left: 5px;
          }
        }
      }
    }
  }
}

section.u5m-subscriptions-confirmation {
  margin: 180px auto 80px;
  form {
    margin-top: 20px;
    fieldset {
      padding:0;
      &#hs-subscriptions-unsubscribe-survey-fieldset {
        legend {
          margin-bottom: 10px;
        }
        #hs-subscriptions-unsubscribe-survey-options {
          div {
            margin-bottom: 5px;
            label {
              input {margin-right: 5px;}
            }
          }
        }
      }
      textarea {
        margin: 20px 0 0 0;
      }
    }
    button {}
  }
  div.success {
    font-weight: bold;
  }
}
.visually-hidden,
.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001s;
    transition-duration: 0.001s;
    animation-iteration-count: 1;
  }
}

.skip-to-content-link {
  background: var(--action1);
  min-height: 40px;
  left: 50%;
  padding: 10px;
  position: absolute;
  transform: translate(-50%, -100%);
  transition: transform 0.3s;
  z-index: 20;
  display:flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .25px;
  cursor: pointer;
}

.skip-to-content-link:focus {
  transform: translate(-50%, 0%);
}
section.u5m-blog-post {
  position: relative;
  

  /*****************************************/
  /* .hero */
  /*****************************************/
  .hero {
    background-color: var(--light-gray);
    margin-bottom:0;
    position: relative;
    padding: 80px 0px;
    @media(max-width: 580px) {
      padding: 50px 0px;
    }

    

    .section-inner.center {
      max-width: 800px;

      .content {
        padding: 0;
        margin: 0 auto;

        span.date {
          display:block;
          margin-bottom: 15px;
          font-weight: 500;
          font-size: 14px;
        }

        h1.title {
          margin: 0;
        }

        .author-wrap {
          display: flex;
          align-items: center;
          margin: 20px auto 0 auto;
          justify-content:flex-start;
          gap: 10px;
          .avatar {
            overflow: hidden;
            height: 36px;
            width: 36px;
            border-radius: 50%;
            img {
              object-fit: cover;
              object-position: 50% 50%;
              width: 100%;
              height: 100%;
            }

          }

          .author-link {
            font-size: 14px;
            a {
              font-weight: 500;
              color: var(--text);
              transition: var(--animation1);
            }

            a:hover {
              color: var(--text);
            }
          }
        }
      }
    }
  }

  /*****************************************/
  /* .share */
  /*****************************************/
  .share {
    margin-bottom: 50px;
    padding: 8px 0;
    background-color: var(--white);
    border-top: 1px solid var(--gray1);
    border-bottom: 1px solid var(--gray1);
    position: sticky;
    top: 100px;
    .section-inner.center {
      max-width: 800px;
      display:flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      span.label {
        font-weight: 600;
        font-size: 14px;
        margin-right:10px;
      }
      .share-links {
        display:flex;
        gap: 5px;
        align-items: center;
        flex-direction:row;
        a {
          display:flex;
          svg {
            path {
              fill: var(--text);
              transition: var(--animation1);
            }
          }
          &:hover,&:focus {
            svg {
              path {
                fill: var(--text);
              }
            }
          }
        }
      }

    }
  }

  /*****************************************/
  /* .body */
  /*****************************************/
  .body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;

    .content {
      img {
        border-radius: var(--border2);
      }
      p,
      ul,
      ol {}

      h1 {}

      h2 {}

      h3 {}

      h4 {}

      h5 {}

      h6 {}

      h1,h2,h3,h4,h5,h6 {
        margin-top: 30px;
      }

      blockquote {
        p {}
      }

      a {
        font-weight: bold;

        &:hover {
          color: var(--text);
        }
      }
    }

    .topics {
      margin-top: 50px;
      padding-top:  50px;
      border-top: 1px solid var(--gray1);
      display:flex;
      flex-direction:row;
      align-items: center;
      gap: 12px;
      .label {
        font-size: 13px;
        font-weight: 500;
        display:inline-block;
      }
      .topics-list {
        display:flex;
        flex-direction:row;
        column-gap: 8px;
        row-gap: 10px;
        .link {
          display: flex;
          justify-content: center;
          align-items: center;
          text-align: center;
          white-space: nowrap;
          font-size: 13px;
          font-weight: 500;
          text-decoration: none;
          color: var(--text);
          padding: 5px 8px;
          border-radius: var(--border2);
          background-color: var(--white);
          transition: var(--animation1);
          border: 1px solid var(--gray1);
          &:hover {
            background-color: var(--black);
            border-color: var(--black);
            color: var(--white);
          }
        }
      }
    }

    &.has-sidebar {
      display: flex;
      flex-direction: row;
      gap: 20px;
    }
  }

  /*****************************************/
  /* .author  -- removed */
  /*****************************************/
  .author {
    max-width: 800px;
    display: flex;
    align-items: center;
    margin: 50px auto;
    padding: 0 20px;

    @media (max-width: 575.98px) {
      display: block;
    }

    .meta {
      flex: 0 0 170px;
      text-align: center;

      .avatar {
        width: 100px;
        height: 100px;
        background-image: url('https://302335.fs1.hubspotusercontent-na1.net/hubfs/302335/default-avatar.png');
        background-size: cover;
        background-position: 50%;
        border-radius: 50%;
        margin: 0 auto;

        @media (max-width: 575.98px) {
          margin-bottom: 30px;
        }
      }
    }

    .bio {
      .name {
        margin: 0;
      }

      p {
        margin-top: 20px;
      }

      .social {
        .label {
          @media (max-width: 575.98px) {}
        }

        a {
          font-size: 20px;
          margin-left: 10px;

          @media (max-width: 575.98px) {
            font-size: 18px;
            margin-left: 8px;
          }
        }
      }
    }
  }

  /*****************************************/
  /* .comments -- removed */
  /*****************************************/
  .comments {
    margin-bottom: 100px;

    h2.heading {
      text-align: center;
      margin: 100px auto 0 auto;
    }

    .content {
      max-width: 1000px;
      margin-top: 50px;

      form {
        .hs-button {}
      }
    }
  }
}
/* CSS Keyframes */
@keyframes fadeIn1 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fadeIn2 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  50% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
/* default anchor link offset */
div.hs_cos_wrapper_widget section.top-margin-none {
  margin-top: 0;
}

/* module overrides */
div.hs_cos_wrapper_widget section.top-margin-small {
  margin-top: 50px;

  @media (max-width: 767px) {
    margin-top: 35px;
  }

  @media (max-width: 575.98px) {
    margin-top: 25px;
  }
}

div.hs_cos_wrapper_widget section.top-margin-medium {
  margin-top: 100px;

  @media (max-width: 767px) {
    margin-top: 75px;
  }

  @media (max-width: 575.98px) {
    margin-top: 50px;
  }
}

div.hs_cos_wrapper_widget section.top-margin-large {
  margin-top: 150px;

  @media (max-width: 767px) {
    margin-top: 115px;
  }

  @media (max-width: 575.98px) {
    margin-top: 75px;
  }
}

div.hs_cos_wrapper_widget section.bottom-margin-none {
  margin-bottom: 0;
}

div.hs_cos_wrapper_widget section.bottom-margin-small {
  margin-bottom: 50px;

  @media (max-width: 767px) {
    margin-bottom: 35px;
  }

  @media (max-width: 575.98px) {
    margin-bottom: 25px;
  }
}

div.hs_cos_wrapper_widget section.bottom-margin-medium {
  margin-bottom: 100px;

  @media (max-width: 767px) {
    margin-bottom: 75px
  }

  @media (max-width: 575.98px) {
    margin-bottom: 50px
  }
}

div.hs_cos_wrapper_widget section.bottom-margin-large {
  margin-bottom: 150px;

  @media (max-width: 767px) {
    margin-bottom: 115px;
  }

  @media (max-width: 575.98px) {
    margin-bottom: 75px;
  }
}

div.hs_cos_wrapper_widget section.top-padding-none {
  padding-top: 0;
}

div.hs_cos_wrapper_widget section.top-padding-small {
  padding-top: 50px;

  @media (max-width: 767px) {
    padding-top: 35px;
  }

  @media (max-width: 575.98px) {
    padding-top: 25px;
  }
}

div.hs_cos_wrapper_widget section.top-padding-medium {
  padding-top: 100px;

  @media (max-width: 767px) {
    padding-top: 75px;
  }

  @media (max-width: 575.98px) {
    padding-top: 50px;
  }
}

div.hs_cos_wrapper_widget section.top-padding-large {
  padding-top: 150px;

  @media (max-width: 767px) {
    padding-top: 115px;
  }

  @media (max-width: 575.98px) {
    padding-top: 75px;
  }
}

div.hs_cos_wrapper_widget section.bottom-padding-none {
  padding-bottom: 0;
}

div.hs_cos_wrapper_widget section.bottom-padding-small {
  padding-bottom: 50px;

  @media (max-width: 767px) {
    padding-bottom: 35px;
  }

  @media (max-width: 575.98px) {
    padding-bottom: 25px;
  }
}

div.hs_cos_wrapper_widget section.bottom-padding-medium {
  padding-bottom: 100px;

  @media (max-width: 767px) {
    padding-bottom: 75px;
  }

  @media (max-width: 575.98px) {
    padding-bottom: 50px;
  }
}

div.hs_cos_wrapper_widget section.bottom-padding-large {
  padding-bottom: 150px;

  @media (max-width: 767px) {
    padding-bottom: 115px;
  }

  @media (max-width: 575.98px) {
    padding-bottom: 75px;
  }
}
.intro-content {
    display: flex;
    flex-direction: column;

    &.left-aligned {
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;

        .heading,
        .description {
            margin-left: 0;
            margin-right: auto;
        }

        .button-group {
            justify-content: flex-start;
        }
    }

    &.center-aligned {
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;

        .heading,
        .description {
            margin-left: auto;
            margin-right: auto;
        }

        .button-group {
            justify-content: center;
        }
    }

    .eyebrow {}

    .heading {
        max-width: 900px;
        margin-top: 0;
    }

    span.description {
        margin-bottom: 0;
        max-width: 750px;
        display: block;

        * {
            font-size: inherit;
        }

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

        a {
            text-decoration: underline;

        }
    }


    .button-group {
        display: flex;
        gap: 20px;
        align-items: center;

        flex-wrap: wrap;
        margin-top: 30px;



        span.button-span {
            @media (max-width: 767px) {
                width: auto;
            }

            a {
                margin: 0;
            }
        }
    }

}







section.dark-mode {
    .intro-content {
        .intro-content-upper {
            .eyebrow {
                color: var(--white);
            }
    
            h1,
            h2,
            h3 {
                color: var(--white);
            }
    
            span.description {
                color: var(--white);
                font-weight: 400;
    
                * {
                    color: var(--white);
    
                }
    
                a {
                    text-decoration: underline;
    
                    &:hover,
                    &:focus {
                        opacity: .8;
                    }
                }
    
            }
        }

    }
}
/* Flex child under fixed header: wraps HubSpot module span + .hd-topbar */
.hd-topbar-host {
  display: block;
  width: 100%;
  flex: 0 0 auto;
  box-sizing: border-box;
}

body.page-scrolled header > .hd-topbar-host {
  display: none;
}

/* Top utility strip (theme include + optional u5m-header-utility module when synced) */
.u5-header-utility.hd-topbar,
.u5m-header-utility.hd-topbar {
  background: var(--dark-aqua);
  color: var(--white);
  font: 600 13px / 1.5 var(--font-heading);
  display: block;
  width: 100%;
  max-width: none;
  box-sizing: border-box;

  & .hd-topbar__inr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 20px;
    padding: 16px max(20px, env(safe-area-inset-left)) 16px max(20px, env(safe-area-inset-right));
    @media (max-width: 1024px) {
      flex-direction: column;
      flex-wrap: nowrap;
      align-items: stretch;
      gap: 14px;
      padding: 14px max(16px, env(safe-area-inset-left)) 14px max(16px, env(safe-area-inset-right));
    }
    @media (min-width: 1025px) {
      padding: 20px max(20px, env(safe-area-inset-left)) 20px max(20px, env(safe-area-inset-right));
      flex-wrap: nowrap;
    }
  }

  & .hd-topbar__left {
    display: flex;
    flex: 1 1 220px;
    align-items: center;
    gap: 12px 16px;
    min-width: 0;
    @media (max-width: 1024px) {
      flex: none;
      width: 100%;
      align-items: flex-start;
    }
    @media (max-width: 520px) {
      flex-direction: column;
      gap: 10px;
    }
  }

  & .hd-topbar__mark-wrap {
    flex: 0 0 auto;
    line-height: 0;
  }

  & .hd-topbar__mark {
    display: block;
    max-height: 32px;
    width: auto;
    max-width: 160px;
    height: auto;
    object-fit: contain;
  }

  & .hd-topbar__rich {
    flex: 1 1 auto;
    min-width: 0;
    font: italic 12px / 1.5 var(--font-body);
    color: var(--white);
    @media (max-width: 1024px) {
      flex: none;
      width: 100%;
      font: italic 12px / 1.55 var(--font-body);
      text-wrap: balance;
    }

    & p,
    & em,
    & i,
    & span,
    & strong,
    & b {
      color: var(--white);
    }

    & p {
      margin: 0;
    }

    & a {
      color: var(--white);
      text-decoration: underline;
    }

    & a:hover {
      color: var(--white-80);
    }
  }

  & .hd-topbar__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px 20px;
    @media (max-width: 1024px) {
      width: 100%;
      justify-content: flex-start;
      align-items: stretch;
      gap: 4px 8px;
      row-gap: 8px;
    }
  }

  & .hd-topbar__action {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;

    &:focus-visible {
      outline: 2px solid var(--action1);
      outline-offset: 3px;
      border-radius: 2px;
    }

    @media (max-width: 1024px) {
      display: inline-flex;
      box-sizing: border-box;
      min-height: 44px;
      padding: 8px 10px;
      margin: 0;
      border-radius: 4px;
      align-items: center;
    }
  }

  & .hd-topbar__link:hover {
    text-decoration: underline;
  }

  & .hd-topbar__routing {
    display: inline-flex;
    align-items: center;
    gap: 4px;

    @media (max-width: 1024px) {
      min-width: 0;
      max-width: 100%;
      white-space: normal;
      justify-content: flex-start;
      text-align: left;
    }

    & .hd-topbar__routing-text {
      @media (max-width: 1024px) {
        white-space: normal;
        word-break: break-word;
      }
    }
  }

  @media (max-width: 1024px) {
    & .hd-topbar__search,
    & .hd-topbar__search.search-trigger {
      flex: 0 1 auto;
      white-space: nowrap;
    }
  }

  & .hd-topbar__copy-icon {
    display: inline-flex;
    flex: 0 0 auto;
    line-height: 0;
  }

  & .hd-topbar__search {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  & .hd-topbar__search-ic {
    display: inline-flex;
    line-height: 0;
  }
}
/* Global header renders main + Charitable Foundation modules always (so both appear in the editor).
   Visibility follows body.u5-site--foundation-footer from the Master template boolean. */

body.u5-site--foundation-footer .hd-topbar-visible-on-main-site {
  display: none !important;
}

body.u5-site--foundation-footer .hd-logo-visible-on-main-site {
  display: none !important;
}

body.u5-site--foundation-footer .hd-menu-branch--main-site,
body:not(.u5-site--foundation-footer) .hd-menu-branch--charitable-foundation {
  display: none !important;
}

body.u5-site--foundation-footer .hd-cta-branch--main-site,
body:not(.u5-site--foundation-footer) .hd-cta-branch--charitable-foundation {
  display: none !important;
}

.hd-menu-branch--main-site,
.hd-menu-branch--charitable-foundation {
  display: contents;
}

.hd-cta-branch--main-site,
.hd-cta-branch--charitable-foundation {
  display: contents;
}

body.u5-site--foundation-footer header.site-header--foundation .hd-inr.hd-inr--foundation-nav {
  justify-content: center;
  gap: 32px 48px;

  .hd-menu {
    flex: 0 1 auto;
    min-width: 0;
  }

  .hd-menu .megamenu-mdl .megamenu-inr > ul {
    justify-content: center;
  }

  .hd-right {
    flex: 0 0 auto;
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  body.u5-site--foundation-footer header.site-header--foundation .mb-menu-inr .hd-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    width: 100%;
    gap: 16px;
  }
}