/* Colors */












/* Brand surfaces (Healing Hands)
   sand & sage reuse the core slots (light_gray = sand, secondary = sage);
   sand-soft, sage-soft and terracotta are dedicated brand fields. */






/* Typography */








/* Button */








/* Header */


/* Form */














/* Other */



/* Tables */











/* Spacing */



:root {
  --color-body: #363941;
  --color-primary: #5C6A57;
  --color-secondary: #A5B29F;
  --color-link: #5C6A57;
  --color-link-hover-focus: #4A5746;
  --color-light: #F7F4EF;
  --color-dark: #17181C;
  --color-light-gray: #D9CEC1;
  --color-dark-gray: #363941;
  --color-transparent: transparent;
  /* Brand surface custom properties (used by custom Healing Hands modules) */
  --color-sand: #D9CEC1;
  --color-sand-soft: #E8DFD3;
  --color-sage: #A5B29F;
  --color-sage-soft: #C4CDC0;
  --color-terracotta: #B97263;
  --color-olive: #5C6A57;
  --color-olive-deep: #4A5746;
  --color-charcoal: #17181C;
  --color-ivory: #F7F4EF;
  --color-ink: #363941;
  --color-ink-2: #363941;
  --color-ink-3: #54575F;
  --color-rule: rgba(92, 106, 87, 0.18);
  --table-body-background-color-odd: rgba(247, 244, 239,1.0);
  --table-body-background-color-even: rgba(217, 206, 193,1.0);
  --header-height: 113px; /* For smooth animations on page load, manualy set this variable to be the height of the full site header. 
                              * It will be automatically set to the actual header height on page load and resize.*/
}

@media (max-width: 991px) {
  :root {
    --header-height: 133px; /* For smooth animations on page load, manualy set this variable to be the height of the full site header, at this screen width.
                                * It will be automatically set to the actual header height on page load and resize.*/
  }
}
*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

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

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

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

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

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

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

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, 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;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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 #000;
}

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

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

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/* Responsive Grid */
.row-fluid {
  width: 100%;
  *zoom: 1;
}
.row-fluid:before, .row-fluid:after {
  display: table;
  content: "";
}
.row-fluid:after {
  clear: both;
}
.row-fluid [class*="span"] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  margin-left: 2.127659574%;
  *margin-left: 2.0744680846382977%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}
.row-fluid .span12 {
  width: 99.99999998999999%;
  *width: 99.94680850063828%;
}
.row-fluid .span11 {
  width: 91.489361693%;
  *width: 91.4361702036383%;
}
.row-fluid .span10 {
  width: 82.97872339599999%;
  *width: 82.92553190663828%;
}
.row-fluid .span9 {
  width: 74.468085099%;
  *width: 74.4148936096383%;
}
.row-fluid .span8 {
  width: 65.95744680199999%;
  *width: 65.90425531263828%;
}
.row-fluid .span7 {
  width: 57.446808505%;
  *width: 57.3936170156383%;
}
.row-fluid .span6 {
  width: 48.93617020799999%;
  *width: 48.88297871863829%;
}
.row-fluid .span5 {
  width: 40.425531911%;
  *width: 40.3723404216383%;
}
.row-fluid .span4 {
  width: 31.914893614%;
  *width: 31.8617021246383%;
}
.row-fluid .span3 {
  width: 23.404255317%;
  *width: 23.3510638276383%;
}
.row-fluid .span2 {
  width: 14.89361702%;
  *width: 14.8404255306383%;
}
.row-fluid .span1 {
  width: 6.382978723%;
  *width: 6.329787233638298%;
}
.container-fluid {
  *zoom: 1;
}
.container-fluid:before, .container-fluid:after {
  display: table;
  content: "";
}
.container-fluid:after {
  clear: both;
}

@media (max-width: 767px) {
  .row-fluid {
    width: 100%;
  }
  .row-fluid [class*="span"] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .row-fluid {
    width: 100%;
    *zoom: 1;
  }
  .row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
  }
  .row-fluid:after {
    clear: both;
  }
  .row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.762430939%;
    *margin-left: 2.709239449638298%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  .row-fluid .span12 {
    width: 99.999999993%;
    *width: 99.9468085036383%;
  }
  .row-fluid .span11 {
    width: 91.436464082%;
    *width: 91.38327259263829%;
  }
  .row-fluid .span10 {
    width: 82.87292817100001%;
    *width: 82.8197366816383%;
  }
  .row-fluid .span9 {
    width: 74.30939226%;
    *width: 74.25620077063829%;
  }
  .row-fluid .span8 {
    width: 65.74585634900001%;
    *width: 65.6926648596383%;
  }
  .row-fluid .span7 {
    width: 57.182320438000005%;
    *width: 57.129128948638304%;
  }
  .row-fluid .span6 {
    width: 48.618784527%;
    *width: 48.5655930376383%;
  }
  .row-fluid .span5 {
    width: 40.055248616%;
    *width: 40.0020571266383%;
  }
  .row-fluid .span4 {
    width: 31.491712705%;
    *width: 31.4385212156383%;
  }
  .row-fluid .span3 {
    width: 22.928176794%;
    *width: 22.874985304638297%;
  }
  .row-fluid .span2 {
    width: 14.364640883%;
    *width: 14.311449393638298%;
  }
  .row-fluid .span1 {
    width: 5.801104972%;
    *width: 5.747913482638298%;
  }
}

@media (min-width: 1280px) {
  .row-fluid {
    width: 100%;
    *zoom: 1;
  }
  .row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
  }
  .row-fluid:after {
    clear: both;
  }
  .row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.564102564%;
    *margin-left: 2.510911074638298%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  .row-fluid .span12 {
    width: 100%;
    *width: 99.94680851063829%;
  }
  .row-fluid .span11 {
    width: 91.45299145300001%;
    *width: 91.3997999636383%;
  }
  .row-fluid .span10 {
    width: 82.905982906%;
    *width: 82.8527914166383%;
  }
  .row-fluid .span9 {
    width: 74.358974359%;
    *width: 74.30578286963829%;
  }
  .row-fluid .span8 {
    width: 65.81196581200001%;
    *width: 65.7587743226383%;
  }
  .row-fluid .span7 {
    width: 57.264957265%;
    *width: 57.2117657756383%;
  }
  .row-fluid .span6 {
    width: 48.717948718%;
    *width: 48.6647572286383%;
  }
  .row-fluid .span5 {
    width: 40.170940171000005%;
    *width: 40.117748681638304%;
  }
  .row-fluid .span4 {
    width: 31.623931624%;
    *width: 31.5707401346383%;
  }
  .row-fluid .span3 {
    width: 23.076923077%;
    *width: 23.0237315876383%;
  }
  .row-fluid .span2 {
    width: 14.529914530000001%;
    *width: 14.4767230406383%;
  }
  .row-fluid .span1 {
    width: 5.982905983%;
    *width: 5.929714493638298%;
  }
}

/* Clearfix */
.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}

/* Visibilty Classes */
.hide {
  display: none;
}
.show {
  display: block;
}
.invisible {
  visibility: hidden;
}
.hidden {
  display: none !important;
  visibility: hidden;
}

/* Responsive Visibilty Classes */
.visible-phone {
  display: none !important;
}
.visible-tablet {
  display: none !important;
}
.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }
  .hidden-phone {
    display: none !important;
  }
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-tablet {
    display: inherit !important;
  }
  .hidden-tablet {
    display: none !important;
  }
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important ;
  }
}


.body-wrapper {
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.body-wrapper.header-type-default:before {
  content: "";
  height: var(--header-height);
  display: block;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.body-wrapper.header-type-transparent .hero-banner:before,
.body-wrapper.header-type-transparent .blog-post__header:before{
  content: "";
  height: calc(var(--header-height) - 2rem);
  display: block;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1240px;
}
.dnd-section,
.content-wrapper--vertical-spacing {
  padding: 80px 50px;
}
.dnd-section > .row-fluid {
  margin: 0 auto;
  max-width: 1240px;
}
.dnd-section .dnd-row + .dnd-row {
  margin-top: 1.25rem;
}

@media (max-width: 991px) {
  .dnd-section,
  .content-wrapper--vertical-spacing {
    padding: 60.0px 20px;
  }
}

@media (max-width: 767px) {
  .dnd-section,
  .content-wrapper--vertical-spacing {
    padding: 40.0px 20px;
  }
  
  .dnd-section .dnd-module + .dnd-module,
  .dnd-section .dnd-column + .dnd-column,
  .dnd-section .dnd-column + .dnd-module,
  .dnd-section .dnd-module + .dnd-column {
    margin-top: 1.25rem;
  }
}


/* Menu and simple menu */
.hs-menu-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */
.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* Vertical menu */
.hs-menu-wrapper.hs-menu-flow-vertical ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* Flyouts */
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}
/*.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
}*/
.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  opacity: 1;
}
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}
.hs-menu-wrapper ul li a,
.hs-menu-wrapper ul li a:after {
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}
/* Error pages */
.error-page {
  padding: 10rem 0;
  position: relative;
  text-align: center;
  z-index: 2;
}
.error-page * {
  position: relative;
  z-index: 2;
}
.error-page:before {
  color: #F7F4EF;
  content: attr(data-error);
  font-size: 40vw;
  font-weight: bold;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}

@media (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}

/* System pages */
.systems-page {
  margin: 0 auto;
  max-width: 700px;
  padding: 3rem 1.4rem;
}
.systems-page--search-results {
  max-width: 100%;
  padding: 3rem 0;
}
.systems-page .header {
  background-color: transparent;
  border-bottom: none;
  padding: 0;
  margin-top: 1.2rem;
  font-weight: bold;
}
.systems-page .success {
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  color: #4F7D24;
  display: inline-block;
  margin: 1.4rem 0;
  padding: 0.1rem 0.7rem;
  width: 100%;
}
.systems-page .form-container {
  margin-bottom: 1.2rem;
}
.systems-page form input[type='submit'] {
  display: block;
}

/* Search pages */
.hs-search-results__title {
  color: #494A52;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  text-decoration: underline;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: 0.7rem;
}
.hs-search-results__listing li {
  margin-bottom: .75rem !important;
  padding-bottom: .75rem !important;
  border-bottom: 1px solid #D9CEC1;
}

/* Password prompt */
.password-prompt input[type=password] {
  height: auto !important;
  margin-bottom: 1.4rem;
}
.systems-page form .hs-form-field:nth-last-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.systems-page #hs-login-widget-remember ~ label {
  margin-bottom: 0;
}
.systems-page #hs_login_reset {
  display: block;
  margin-bottom: 0.625rem;
}

/* Backup unsubscribe */
.backup-unsubscribe #email-prefs-form div {
  padding-bottom: 0 !important;
}
.backup-unsubscribe input[type=email] {
  font-size: 0.875rem !important;
  margin-bottom: 1.4rem;
  padding: 0.7rem !important;
}

/* Subscription preferences */
#email-prefs-form .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
#email-prefs-form .item.disabled input:disabled {
  cursor: not-allowed;
}
.checkbox-row > span,
.subscribe-options > p:last-child > label{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Membership pages */
#hs-membership-form a[class*='show-password'] {
  font-size: .75rem;
  display: block;
  margin: -.5rem 0 .5rem;
}

/* Input error messages */
.form-input-validation-message ul.hs-error-msgs {
  padding-left: 0;
  margin: 0;
}
.form-input-validation-message ul.hs-error-msgs li {
  margin: 0;
}


html {
  font-size: 18px;
}
body {
  line-height: 1.7;
  word-break: break-word;
  font-family: Inter, sans-serif;
  font-weight: 400;
  color: #363941;
}
html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  word-break: break-all;
}

@media (max-width: 767px) {
  html {
    font-size: 15.75px;
  }
}

/* Paragraphs */
p {
  margin: 0 0 1.25rem;
}
p:last-child {
  margin-bottom: 0;
}

/* Anchors */
a {
  cursor: pointer;
  text-decoration: none;
  color: #5C6A57;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
a:hover,
a:focus {
  color: #4A5746;
}


/* Headings */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .75rem;
  line-height: 1.25;
  word-break: break-word;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}
h1, .h1 {
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  font-family: Cormorant Garamond, serif;
  color: #17181C;
	
	  text-decoration: none;
	
  letter-spacing: calc(-0.005em + 0px);
}
h2, .h2 {
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  font-family: Cormorant Garamond, serif;
  color: #17181C;
	
	  text-decoration: none;
	
  letter-spacing: calc(-0.01em + 0px);
}
h3, .h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  font-family: Cormorant Garamond, serif;
  color: #17181C;
	
	  text-decoration: none;
	
  letter-spacing: 0px;
}
h4, .h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  font-family: Cormorant Garamond, serif;
  color: #17181C;
	
	  text-decoration: none;
	
  letter-spacing: 0px;
}
h5, .h5 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  font-family: Cormorant Garamond, serif;
  color: #17181C;
	
	  text-decoration: none;
	
  letter-spacing: 0px;
}
h6, .h6 {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  font-family: Cormorant Garamond, serif;
  color: #17181C;
	
	  text-decoration: none;
	
  letter-spacing: 0px;
}

@media (max-width: 1279px) {
  h1, .h1 {
    font-size: 57.6px;
  }
  h2, .h2 {
    font-size: 34.2px;
  }
  h3, .h3 {
    font-size: 27.0px;
  }
  h4, .h4 {
    font-size: 21.6px;
  }
  h5, .h5 {
    font-size: 18.0px;
  }
  h6, .h6 {
    font-size: 14.4px;
  }
}

@media (max-width: 991px) {
  h1, .h1 {
    font-size: 51.2px;
  }
  h2, .h2 {
    font-size: 30.400000000000002px;
  }
  h3, .h3 {
    font-size: 24.0px;
  }
  h4, .h4 {
    font-size: 19.200000000000003px;
  }
  h5, .h5 {
    font-size: 16.0px;
  }
  h6, .h6 {
    font-size: 12.8px;
  }
}

@media (max-width: 767px) {
  h1, .h1 {
    font-size: 44.8px;
  }
  h2, .h2 {
    font-size: 26.599999999999998px;
  }
  h3, .h3 {
    font-size: 22.5px;
  }
  h4, .h4 {
    font-size: 18.0px;
  }
}

@media (max-width: 479px) {
  h1, .h1 {
    font-size: 38.4px;
  }
  h2, .h2 {
    font-size: 24.7px;
  }
  h3, .h3 {
    font-size: 21.0px;
  }
}

/* Heading underline */
.heading-accent--full-width,
.heading-accent--text-width,
.heading-accent--small-width {
  position: relative;
  padding-bottom: .5rem;
}
.heading-accent--text-width span,
.heading-accent--left-horizontal span,
.heading-accent--left-vertical span,
.heading-accent--split-vertical span,
.heading-accent--split-horizontal span {
  position: relative;
  display: inline-block;
}
.heading-accent--split-horizontal {
  padding: 0 2.625rem;
}
.heading-accent--split-vertical {
  padding: 2.375rem 0;
}
.heading-accent--full-width:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #5C6A57;
}
.heading-accent--text-width span:after {
  content: "";
  position: absolute;
  bottom: -.5rem;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #5C6A57;
}
.heading-accent--small-width:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 5rem;
  background-color: #5C6A57;
}
.text-center .heading-accent--small-width:after,
.justify-center .heading-accent--small-width:after {
  left: 50%;
  transform: translateX(-50%);
}
.text-right .heading-accent--small-width:after,
.justify-right .heading-accent--small-width:after {
  left: unset;
  right: 0;
}
.heading-accent--left-horizontal span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.625rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 0.5rem;
  width: 1.5rem;
  background-color: #5C6A57;
}
.heading-accent--left-vertical span:after {
  content: "";
  position: absolute;
  top: 0;
  left: -.875rem;
  height: 100%;
  width: 0.5rem;
  background-color: #5C6A57;
}
.heading-accent--split-horizontal span:before,
.heading-accent--split-horizontal span:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 3px;
  width: 2.25rem;
  background-color: #5C6A57;
}
.heading-accent--split-horizontal span:before {
  left: -2.5rem;
}
.heading-accent--split-horizontal span:after {
  right: -2.5rem;
}
.heading-accent--split-vertical span:before,
.heading-accent--split-vertical span:after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 2.25rem;
  width: 0.5rem;
  background-color: #5C6A57;
}
.heading-accent--split-vertical span:before {
  top: -2.375rem;
}
.heading-accent--split-vertical span:after {
  bottom: -2.375rem;
}

/* Subheading */
.subheading {
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  font-size: .75rem;
}

/* Intro */
.intro-text {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.intro-text:last-child {
  margin-bottom: 0;
}

/* Lists */
ul,
ol {
  margin: 0 0 1.25rem;
  padding-left: 2rem;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

/* Code blocks */
pre {
  overflow: auto;
}
code {
  vertical-align: bottom;
}

/* Mark */
mark {
  background-color: #5C6A57;
}

/* Selection */
::-moz-selection {
  background-color: #5C6A57;
  color: #fff;
}
::selection {
  background-color: #5C6A57;
  color: #fff;
}

/* Blockquotes */
blockquote {
  border-left: 2px solid #5C6A57;
  margin: 0 0 1.25rem;
  padding-left: 15px;
}

/* Horizontal rules */
hr {
  background-color: #D9CEC1;
  border: none;
  color: #D9CEC1;
  height: 1px;
}

/* Image alt text */
img {
  font-size: 14px;
  word-break: normal;
  max-width: 100%;
  height: auto;
}

/* Drop Shadow */
.text-shadow {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}


form {
  background: #FFFFFF;
  border: 1px solid #D9CEC1;
  border-radius: 10px;
  padding: 2.5rem 2.75rem;
}
fieldset {
  max-width: none !important;
  margin-left: -.5rem !important;
  margin-right: -.5rem !important;
}
fieldset .field {
  padding-left: .5rem;
	padding-right: .5rem;
  margin-bottom: 1.25rem;
}
fieldset .input {
	margin-right: 0!important;
}
fieldset.form-columns-2 .hs-form-field {
	width: 50%;
}
fieldset.form-columns-3 .hs-form-field {
	width: 33.33%;
}

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

/* Form title - shares the form body background so the heading + form read as one continuous card */
.form-title {
  background-color: #FFFFFF;
  color: #363941;
  border: 1px solid #D9CEC1;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  padding: 1.5rem 2.75rem;
	margin-bottom: 0;
}

/* Labels */
form label {
  color: #17181C;
  display: block;
  float: none;
  width: auto;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.2;
  padding-top: 0;
  margin-bottom: .5rem;
}

/* Help text - legends */
form legend {
  color: #17181C;
  opacity: .875;
  font-size: .625rem;
  line-height: 1.2;
  margin: 0 0 .25rem;
}
form .legal-consent-container {
  color: #17181C;  
}

/* Inputs */
input,
select,
textarea {
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
input[type=file],
input[type=date],
input[type=search],
select,
textarea {
  -webkit-appearance: none;
  display: inline-block;
  width: 100%!important;
  height: auto!important;
  padding: 13px 14px;
  font-size: .9375rem;
  font-weight: normal;
  line-height: 1.5;
  color: #363941;
  background-color: #F7F4EF;
	border: 1px solid #D9CEC1;
  box-sizing: border-box;
  border-radius: 4px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=file]:focus,
input[type=date]:focus,
select:focus,
textarea:focus {
  border-color: #5C6A57;
  background-color: #FFFFFF;
  outline: none;
  box-shadow: 0 0 0 3px rgba(92, 106, 87, 12%);
}

/* Inputs - checkbox/radio */
.inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.inputs-list > li {
  display: block;
  margin: .625rem 0;
}
.inputs-list input,
.inputs-list span {
  vertical-align: middle;
}

input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none;
  cursor: pointer;
  width: 1rem !important;
  height: 1rem !important;
  line-height: normal;
  border: none;
  background-color: #F7F4EF;
	border: 1px solid #D9CEC1;
  border-radius: 1.0px;
	outline: none;
  padding: 0 !important;
  margin: 0 .25rem 0 0;
}
input[type=checkbox] {
  border-radius: 0.5px;
}
input[type=radio] {
  border-radius: 50%;
}
input[type=checkbox]:focus,
input[type=radio]:focus {
  border-color: #5C6A57;
}
input[type=checkbox]:checked,
input[type=radio]:checked {
  background: #5C6A57 !important;
}

/* Inputs - datepicker */
input[type=date] {
  -webkit-appearance: auto;
}
.fn-date-picker .pika-table th {
  color: #17181C;
}
.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #5C6A57;
}
.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #F7F4EF;
  background-color: #5C6A57 !important;
}
.fn-date-picker td.is-today .pika-button {
  color: #5C6A57;
}

/* Inputs - file picker */
input[type=file] {
  border: initial;
}

/* Select */
select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23363941' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-position: 99% center;
  background-repeat: no-repeat;
  padding-right: 1.5rem;
}
select[multiple] {
  height: inherit;
}

/* Textarea */
textarea {
  height: auto;
}

/* Submit Button */
input[type=submit] {
	background-color: #5C6A57;
  border: 1px solid #5C6A57;
  color: #F7F4EF;
  padding: 16px 28px;
  font-size: .9375rem;
  border-radius: 4px;
  box-shadow: 0 8px 22px -10px rgba(92, 106, 87, 50%);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
input[type=submit]:hover {
  background-color: #4A5746;
  border-color: #4A5746;
  color: #F7F4EF;
}

/* Form placeholder text */
::-webkit-input-placeholder {
  color: rgba(54, 57, 65, 50%);
}
::-moz-placeholder {
  color: rgba(54, 57, 65, 50%);
}
:-ms-input-placeholder {
  color: rgba(54, 57, 65, 50%);
}
:-moz-placeholder {
  color: rgba(54, 57, 65, 50%);
}
::placeholder {
  color: rgba(54, 57, 65, 50%);
}
.hs-fieldtype-date .input .hs-dateinput:before {
  color: rgba(54, 57, 65, 50%);
}

/* GDPR */
form .hs-richtext {
  padding-left: .5rem;
	padding-right: .5rem;
}
form .hs-richtext,
form .hs-richtext p {
  font-size: .875rem;
  line-height: 1.2;
  margin: 0 0 .625rem;
}
.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  font-size: .875rem;
  margin-left: 1.25rem !important;
}

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

/* Fullwidth Button */
.btn-fullwidth .hs_submit input {
	width: 100%;
}

/* Search field Icon*/
.hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
}

/* Dark Form */
.form-dark input:not(input[type=submit]),
.form-dark select,
.form-dark textarea {
  background-color: #17181C;
  border-color: #17181C;
  color: #F7F4EF;
}
.form-dark select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23F7F4EF' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
}
.form-dark .hs-form label,
.form-dark legend,
.form-dark .form-title,
.form-dark .hs-richtext,
.form-dark .hs-richtext p,
.form-dark .submitted-message,
.form-dark .legal-consent-container {
  color: #17181C;
}
.form-dark ::-webkit-input-placeholder {
  color: #F7F4EF;
}
.form-dark ::-moz-placeholder {
  color: #F7F4EF;
}
.form-dark :-ms-input-placeholder {
  color: #F7F4EF;
}
.form-dark :-moz-placeholder {
  color: #F7F4EF;
}
.form-dark ::placeholder {
  color: #F7F4EF;
}
.form-dark .hs-fieldtype-date .input .hs-dateinput:before {
  color: #F7F4EF;
}

/* Light Form */
.form-light input:not(input[type=submit]),
.form-light select,
.form-light textarea {
  background-color: #F7F4EF;
  border-color: #F7F4EF;
  color: #17181C;
}
.form-light select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%2317181C' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
}
.form-light .hs-form label,
.form-light legend,
.form-light .form-title,
.form-light .hs-richtext,
.form-light .hs-richtext p,
.form-light .submitted-message,
.form-light .legal-consent-container {
  color: #F7F4EF;
}
.form-light ::-webkit-input-placeholder {
  color: #17181C;
}
.form-light ::-moz-placeholder {
  color: #17181C;
}
.form-light :-ms-input-placeholder {
  color: #17181C;
}
.form-light :-moz-placeholder {
  color: #17181C;
}
.form-light ::placeholder {
  color: #17181C;
}
.form-light .hs-fieldtype-date .input .hs-dateinput:before {
  color: #17181C;
}

/* Transparent Dark Form*/
.form-transparent-dark input:not(input[type=submit]),
.form-transparent-dark select,
.form-transparent-dark textarea {
  background-color: rgba(247, 244, 239, 50%);
  border-color: #17181C;
  color: #17181C;
}
.form-transparent-dark select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%2317181C' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
}
.form-transparent-dark .hs-form label,
.form-transparent-dark legend,
.form-transparent-dark .form-title,
.form-transparent-dark .hs-richtext,
.form-transparent-dark .hs-richtext p,
.form-transparent-dark .submitted-message,
.form-transparent-dark .legal-consent-container {
  color: #363941;
}
.form-transparent-dark ::-webkit-input-placeholder {
  color: #363941;
}
.form-transparent-dark ::-moz-placeholder {
  color: #363941;
}
.form-transparent-dark :-ms-input-placeholder {
  color: #363941;
}
.form-transparent-dark :-moz-placeholder {
  color: #363941;
}
.form-transparent-dark ::placeholder {
  color: #363941;
}
.form-transparent-dark .hs-fieldtype-date .input .hs-dateinput:before {
  color: #363941;
}

/* Transparent Light Form*/
.form-transparent-light input:not(input[type=submit]),
.form-transparent-light select,
.form-transparent-light textarea {
  background-color: rgba(247, 244, 239, 50%);
  border-color: #F7F4EF;
  color: #F7F4EF;
}
.form-transparent-light select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23F7F4EF' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
}
.form-transparent-light .hs-form label,
.form-transparent-light legend,
.form-transparent-light .form-title,
.form-transparent-light .hs-richtext,
.form-transparent-light .hs-richtext p,
.form-transparent-light .submitted-message,
.form-transparent-light .legal-consent-container {
  color: #D9CEC1;
}
.form-transparent-light ::-webkit-input-placeholder {
  color: #D9CEC1;
}
.form-transparent-light ::-moz-placeholder {
  color: #D9CEC1;
}
.form-transparent-light :-ms-input-placeholder {
  color: #D9CEC1;
}
.form-transparent-light :-moz-placeholder {
  color: #D9CEC1;
}
.form-transparent-light ::placeholder {
  color: #D9CEC1;
}
.form-transparent-light .hs-fieldtype-date .input .hs-dateinput:before {
  color: #D9CEC1;
}

/* Dark Form Background */
.form-bg-dark form {
  background: #17181C;
}
.form-bg-dark .form-title {
  background-color: #17181C;
  padding-bottom: 0;
}

/* Light Form Background */
.form-bg-light form {
  background: #F7F4EF;
}
.form-bg-light .form-title {
  background-color: #F7F4EF;
  padding-bottom: 0;
}

/* Transparent Background */
.form-bg-transparent form {
  background: transparent;
}
.form-bg-transparent .form-title {
  background-color: transparent;
  padding-bottom: 0;
}

/* Validation */
.hs-form-required {
  color: #FF0000;
}
.hs-input.invalid.error {
  border-color: #FF0000;
}
.hs-error-msg {
  color: #FF0000 !important;
  margin-top: 0.35rem;
}

/* Rounded corners */
.form.rounded > h3 {
  border-radius: 4px 4px 0 0;
}
.form.rounded > div form {
    border-radius: 4px;
}
.form.rounded > h3 + div form {
    border-radius: 0 0 4px 4px;
}

/* When a title sits on top of the form, the title supplies the rounded top
   and the form body squares its top corners and drops its top border so the
   heading + body read as one continuous card with a single shared background. */
.form > h3.form-title + div form {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 0;
}

/* No Labels */
.form-no-labels .hs-fieldtype-text > label,
.form-no-labels .hs-fieldtype-textarea > label,
.form-no-labels .hs-fieldtype-select > label {
	/*display: none !important;*/
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* No Padding */
.form-no-padding form {
	padding: 0;
}
.form-no-padding .form-title {
	padding: 0;
}

/* No Border*/
.form-no-border form {
  border: 0;
}


/* Default Button*/
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.2;
  text-align: center;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

  white-space: normal;
  text-decoration: none;
  
  font-weight: 500;;
  font-family: Inter, sans-serif;
  letter-spacing: 0px;
  padding: 15px 24px;
  border: 1px solid;
  border-radius: 4px;
  background-color: #5C6A57;
  border-color: #5C6A57;
  color: #FFFFFF;
  fill: #FFFFFF;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: left 1.5em bottom 0.7em;
  background-size: 0% 1px;
}
button:hover,
button:focus,
.button:hover,
.button:focus,
.hs-button:hover,
.hs-button:focus {
  text-decoration: none;
  opacity: 1;
  background-color: #2a3825;
  border-color: #2a3825;
  background-size: calc(100% - 3em) 1px;
}

button:disabled,
.button:disabled
.hs-button:disabled {
  text-decoration: none;
  opacity: 1;
  background-color: #D9CEC1;
  border-color: #D9CEC1;
  color: #363941;
}

/* Primary Button */
.button-primary,
.button-primary:after {
  background-color: #5C6A57;
  border-color: #5C6A57;
  color: #F7F4EF;
}
.button-primary:hover,
.button-primary:focus,
.button-primary:hover:after,
.button-primary:focus:after {
  background-color: #2a3825;
  border-color: #2a3825;
  color: #F7F4EF;
  fill: #F7F4EF;
}

/* Secondary Button */
.button-secondary,
.button-secondary:after {
  background-color: #A5B29F;
  border-color: #A5B29F;
  color: #F7F4EF;
  fill: #F7F4EF;
}
.button-secondary:hover,
.button-secondary:focus,
.button-secondary:hover:after,
.button-secondary:focus:after {
  background-color: #73806d;
  border-color: #73806d;
  color: #F7F4EF;
}

/* Light Button */
.button-light,
.button-light:after {
  background-color: #F7F4EF;
  border-color: #F7F4EF;
  color: #17181C;
  fill: #17181C;
}
.button-light:hover,
.button-light:focus,
.button-light:hover:after,
.button-light:focus:after {
  background-color: #17181C;
  border-color: #17181C;
  color: #F7F4EF;
  fill: #F7F4EF;
}

/* Dark Button */
.button-dark,
.button-dark:after {
  background-color: #17181C;
  border-color: #17181C;
  color: #F7F4EF;
  fill: #F7F4EF;
}
.button-dark:hover,
.button-dark:focus,
.button-dark:hover:after,
.button-dark:focus:after {
  background-color: #5C6A57;
  border-color: #5C6A57;
  color: #F7F4EF;
  fill: #F7F4EF;
}

/* Light Gray Button */
.button-light-gray,
.button-light-gray:after {
  background-color: #D9CEC1;
  border-color: #D9CEC1;
  color: #363941;
  fill: #363941;
}
.button-light-gray:hover,
.button-light-gray:focus,
.button-light-gray:hover:after,
.button-light-gray:focus:after {
  background-color: #363941;
  border-color: #363941;
  color: #D9CEC1;
  fill: #D9CEC1;
}

/* Dark Gray Button */
.button-dark-gray,
.button-dark-gray:after {
  background-color: #363941;
  border-color: #363941;
  color: #D9CEC1;
  fill: #D9CEC1;
}
.button-dark-gray:hover,
.button-dark-gray:focus,
.button-dark-gray:hover:after,
.button-dark-gray:focus:after {
  background-color: #D9CEC1;
  border-color: #D9CEC1;
  color: #363941;
  fill: #363941;
}

/* Link Button */
.button-link,
.button-link:after {
  background-color: #5C6A57;
  border-color: #5C6A57;
  color: #F7F4EF;
  fill: #F7F4EF;
}
.button-link:hover,
.button-link:focus,
.button-link:hover:after,
.button-link:focus:after {
  background-color: #4A5746;
  border-color: #4A5746;
  color: #F7F4EF;
}

/* Primary Button Outline */
.button-outline-primary,
.button-outline-primary:after {
  background-color: transparent;
  border-color: #5C6A57;
  color: #5C6A57;
  fill: #5C6A57;
}
.button-outline-primary:hover,
.button-outline-primary:focus,
.button-outline-primary:hover:after,
.button-outline-primary:focus:after {
  background-color: #5C6A57;
  border-color: #5C6A57;
  color: #F7F4EF;
  fill: #F7F4EF;
}

/* Secondary Button Outline */
.button-outline-secondary,
.button-outline-secondary:after {
  background-color: transparent;
  border-color: #A5B29F;
  color: #A5B29F;
  fill: #A5B29F;
}
.button-outline-secondary:hover,
.button-outline-secondary:focus,
.button-outline-secondary:hover:after,
.button-outline-secondary:focus:after {
  background-color: #A5B29F;
  border-color: #A5B29F;
  color: #F7F4EF;
  fill: #F7F4EF;
}

/* Light Button Outline */
.button-outline-light,
.button-outline-light:after {
  background-color: transparent;
  border-color: #F7F4EF;
  color: #F7F4EF;
  fill: #F7F4EF;
}
.button-outline-light:hover,
.button-outline-light:focus,
.button-outline-light:hover:after,
.button-outline-light:focus:after {
  background-color: #F7F4EF;
  border-color: #F7F4EF;
  color: #17181C;
  fill: #17181C;
}

/* Dark Button Outline */
.button-outline-dark,
.button-outline-dark:after {
  background-color: transparent;
  border-color: #17181C;
  color: #17181C;
  fill: #17181C;
}
.button-outline-dark:hover,
.button-outline-dark:focus,
.button-outline-dark:hover:after,
.button-outline-dark:focus:after {
  background-color: #17181C;
  border-color: #17181C;
  color: #F7F4EF;
  fill: #F7F4EF;
}

/* Light Gray Button Outline */
.button-outline-light-gray,
.button-outline-light-gray:after {
  background-color: transparent;
  border-color: #D9CEC1;
  color: #D9CEC1;
  fill: #D9CEC1;
}
.button-outline-light-gray:hover,
.button-outline-light-gray:focus,
.button-outline-light-gray:hover:after,
.button-outline-light-gray:focus:after {
  background-color: #D9CEC1;
  border-color: #D9CEC1;
  color: #F7F4EF;
  fill: #F7F4EF;
}

/* Dark Gray Button Outline */
.button-outline-dark-gray,
.button-outline-dark-gray:after {
  background-color: transparent;
  border-color: #363941;
  color: #363941;
  fill: #363941;
}
.button-outline-dark-gray:hover,
.button-outline-dark-gray:focus,
.button-outline-dark-gray:hover:after,
.button-outline-dark-gray:focus:after {
  background-color: #363941;
  border-color: #363941;
  color: #F7F4EF;
  fill: #F7F4EF;
}

/* Link Button Outline */
.button-outline-link,
.button-outline-link:after {
  background-color: transparent;
  border-color: #5C6A57;
  color: #5C6A57;
  fill: #5C6A57;
}
.button-outline-link:hover,
.button-outline-link:focus,
.button-outline-link:hover:after,
.button-outline-link:focus:after {
  background-color: #4A5746;
  border-color: #4A5746;
  color: #F7F4EF;
  fill: #F7F4EF;
}

/* Gradient Button */
.button-gradient {
  background: -webkit-gradient(linear, left top, right top, from(#A5B29F), color-stop(#5C6A57), color-stop(#5C6A57), to(#A5B29F));
  background: -o-linear-gradient(left, #A5B29F, #5C6A57, #5C6A57, #A5B29F);
  background: linear-gradient(to right, #A5B29F, #5C6A57, #5C6A57, #A5B29F);
  background-size: 300% 100%;
  padding: 16px 25px;
  border: none;
}
.button-gradient:after {
  border-color: #A5B29F;
}
.button-gradient:hover,
.button-gradient:focus {
  background-position: 100% 0;
}
.button-gradient:hover:after,
.button-gradient:focus:after {
  border-color: #5C6A57;
}

/* Button Small */
.button-small {
  font-size: .875rem;
  padding: 11.25px 18.0px;
}
.button-gradient.button-small {
  padding: 12.25px 18.01px;
}

/* Button Large */
.button-large {
  font-size: 1rem;
  padding: 16.875px 30.0px;
}
.button-gradient.button-large {
  padding: 17.875px 30.01px;
}

/* Accent */
.button-accent {
  position: relative;
}
.button-accent:after {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  right: -0.5rem;
  bottom: -0.5rem;
  width: calc(100% + 1rem);
  height: calc(100% + 1rem);
  border-style: solid;
  border-width: 2px;
  border-radius: inherit;
  background: transparent !important;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}

/* Link */
.link {
  
  font-weight: 600;
  font-family: Inter, sans-serif;
  letter-spacing: 0px;
  font-size: 0.9375rem;
  position: relative;
  display: inline-block;
  padding: 0 0 3px;
}
.link:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  background-color: #5C6A57;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.link:hover:after,
.link:focus:after {
  opacity: 1;
}

/* ============================================================
   Healing Hands button treatment
   ============================================================ */

/* Primary = olive fill with a soft sage drop-shadow (design spec) */
.button-primary {
  box-shadow: 0 8px 22px -10px rgba(92, 106, 87, 0.5);
}
.button-primary:hover,
.button-primary:focus {
  box-shadow: 0 10px 26px -10px rgba(92, 106, 87, 0.6);
}

/* Light = the design "invert" button: ivory fill, charcoal text, sand border;
   hover fills with sand and keeps charcoal text */
.button-light,
.button-light:after {
  border-color: #D9CEC1;
}
.button-light:hover,
.button-light:focus,
.button-light:hover:after,
.button-light:focus:after {
  background-color: #D9CEC1;
  border-color: #D9CEC1;
  color: #17181C;
  fill: #17181C;
}

/* Brand surface buttons (extend the button_color dropdown) */
.button-sand,
.button-sand:after {
  background-color: #D9CEC1;
  border-color: #D9CEC1;
  color: #17181C;
  fill: #17181C;
}
.button-sand:hover,
.button-sand:focus,
.button-sand:hover:after,
.button-sand:focus:after {
  background-color: #a79c8f;
  border-color: #a79c8f;
  color: #17181C;
}
.button-sand-soft,
.button-sand-soft:after {
  background-color: #E8DFD3;
  border-color: #E8DFD3;
  color: #17181C;
  fill: #17181C;
}
.button-sand-soft:hover,
.button-sand-soft:focus,
.button-sand-soft:hover:after,
.button-sand-soft:focus:after {
  background-color: #b6ada1;
  border-color: #b6ada1;
  color: #17181C;
}
.button-sage,
.button-sage:after {
  background-color: #A5B29F;
  border-color: #A5B29F;
  color: #17181C;
  fill: #17181C;
}
.button-sage:hover,
.button-sage:focus,
.button-sage:hover:after,
.button-sage:focus:after {
  background-color: #73806d;
  border-color: #73806d;
  color: #F7F4EF;
  fill: #F7F4EF;
}
.button-sage-soft,
.button-sage-soft:after {
  background-color: #C4CDC0;
  border-color: #C4CDC0;
  color: #17181C;
  fill: #17181C;
}
.button-sage-soft:hover,
.button-sage-soft:focus,
.button-sage-soft:hover:after,
.button-sage-soft:focus:after {
  background-color: #929b8e;
  border-color: #929b8e;
  color: #17181C;
}
.button-terracotta,
.button-terracotta:after {
  background-color: #B97263;
  border-color: #B97263;
  color: #F7F4EF;
  fill: #F7F4EF;
}
.button-terracotta:hover,
.button-terracotta:focus,
.button-terracotta:hover:after,
.button-terracotta:focus:after {
  background-color: #874031;
  border-color: #874031;
  color: #F7F4EF;
}

/* Brand outline buttons */
.button-outline-sand,
.button-outline-sand:after {
  background-color: transparent;
  border-color: #D9CEC1;
  color: #D9CEC1;
  fill: #D9CEC1;
}
.button-outline-sand:hover,
.button-outline-sand:focus {
  background-color: #D9CEC1;
  color: #17181C;
  fill: #17181C;
}
.button-outline-sage,
.button-outline-sage:after {
  background-color: transparent;
  border-color: #A5B29F;
  color: #A5B29F;
  fill: #A5B29F;
}
.button-outline-sage:hover,
.button-outline-sage:focus {
  background-color: #A5B29F;
  color: #17181C;
  fill: #17181C;
}
.button-outline-terracotta,
.button-outline-terracotta:after {
  background-color: transparent;
  border-color: #B97263;
  color: #B97263;
  fill: #B97263;
}
.button-outline-terracotta:hover,
.button-outline-terracotta:focus {
  background-color: #B97263;
  color: #F7F4EF;
  fill: #F7F4EF;
}


.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -.25rem;
}
.social-links-single {
  height: 2.25rem;
  width: 2.25rem;
  margin: .25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 4px;
  background-color: #5C6A57;
}
.social-links-single:hover,
.social-links-single:focus {
  opacity: .75;
}
.social-links-single svg {
  height: 1rem;
  fill: #FFFFFF;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
table {
  border-collapse: collapse;
  overflow-wrap: break-word;
  margin: 0 0 1.25rem;
  border: 2px solid #363941;
}
th,
td {
  padding: 0.75rem;
  border: 1px solid #363941;
  background-color: rgba(247, 244, 239,1.0);
  color: #363941;
}
tbody tr:nth-child(even) th,
tbody tr:nth-child(even) td {
  background-color: rgba(217, 206, 193,1.0);
}
thead th,
thead td {
  vertical-align: middle;
  border-bottom: 1.0px solid #363941;
  background-color: rgba(92, 106, 87,1.0);
  color: #F7F4EF;
}
tfoot th,
tfoot td {
  border-top: 1.0px solid #363941;
  background-color: rgba(165, 178, 159,1.0);
  color: #F7F4EF;
}


.header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 15;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.header-static {
  position: absolute;
}
.header.reactive {
  -webkit-box-shadow: 0 10px 20px rgb(0, 0, 0, .2);
  box-shadow: 0 10px 20px rgb(0, 0, 0, .2);
}
.header-logo {
  padding: .75rem 0;
}
.header-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


/* Header Buttons */
.header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-buttons > * {
  padding: 1rem;
}
.header-menu-mobile .header-buttons {
  border-top: 1px solid #fff;
  background-color: #edeae5;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .header-menu-mobile .header-buttons {
    display: none;
  }
}
@media (max-width: 767px) {
  .header-right .header-buttons {
    display: none;
  }
}

/* Header Top */
.header-top {
  padding-top: 1px;
  padding-bottom: 1px;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

  width: 100%;
}
.header-top-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}
.header-top-column {
  font-size: .75rem;
  line-height: 1.5;
  padding: .25rem 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.header-top-column a {
  color: inherit;
}
.header-top-container svg {
  height: .8rem;
  margin-right: .3rem;
}


/* Header Main */
.header-main {
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

  width: 100%;
  padding: 0 20px;
}
.header-main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	-webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
	-webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
	position: relative;
}
.header-main-container.menu-logo-above {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.menu-logo-above .header-logo {
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 1.25rem;
}
.menu-logo-above

/* Header Menu */
.header-menu-main > .hs-menu-wrapper {
  height: 100%;
}
.header-menu-main > .hs-menu-wrapper > ul > li {
  position: relative;
}
.header-menu-main > .hs-menu-wrapper > ul > li.hs-item-has-children:after {
  content: "\f078";
  font-family: 'Font Awesome 5 Free';
  font-size: .625rem;
  font-weight: 900;
  color: inherit;
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translate(50%, -50%);
}
.header-menu-main a {
  color: inherit;
  padding: 1.25rem 1rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  font-size: .85rem;
}
.header-menu-main .active a {
  font-weight: 600;
}
.header-menu-main > .hs-menu-wrapper > ul > li > a:after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #5C6A57;
  position: absolute;
  bottom: 0;
  left: 0;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.header-menu-main > .hs-menu-wrapper > ul > li > a:hover:after {
  width: 100%;
  left: 0;
}
.header-menu-main > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper li > a {
  display: block;
  padding: .5rem 1rem;
  line-height: 1.25;
}
.header-menu-main > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper {
  background-color: #edeae5;
  padding: .5rem 0;
  min-width: 10rem;
  width: auto;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.header-menu-main > .hs-menu-wrapper > ul > li:hover > .hs-menu-children-wrapper {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  z-index: 2;
}
.header-menu-main > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper li a {
  color: inherit;
  position: relative;
}
.header-menu-main > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper li a:hover {
  background-color: #e3e0db;
}
.header-menu-main > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper li a:before {
  content: "";
  width: 3px;
  height: 0;
  background-color: #5C6A57;
  position: absolute;
  top: 50%;
  left: 0;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.header-menu-main > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper li a:hover:before {
  height: 100%;
  top: 0;
}
.header-menu-main > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper > li > .hs-menu-children-wrapper {
  background-color: #e3e0db;
  min-width: 10rem;
  width: auto;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.header-menu-main > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper > li > .hs-menu-children-wrapper a {
  padding-left: 1.25rem;
}
.header-menu-main > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper > li > .hs-menu-children-wrapper a:hover {
  background-color: #d9d6d1;
}
.header-menu-main > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper > li > .hs-menu-children-wrapper > li > .hs-menu-children-wrapper  {
  background-color: #d9d6d1;
}
.header-menu-main > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper > li > .hs-menu-children-wrapper > li > .hs-menu-children-wrapper a  {
  padding-left: 1.5rem;
}
.header-menu-main > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper > li > .hs-menu-children-wrapper > li > .hs-menu-children-wrapper a:hover {
  background-color: #cfccc7;
}

@media (max-width: 1279px) {
  .header-menu-main a {
    padding: 1.25rem .75rem;
  }
  .header-menu-main > .hs-menu-wrapper > ul > li.hs-item-has-children:after {
    right: .375rem;
  }
}


/* Navigation skipper */
.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}
.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}


/* Header Search - Pop-up */
.header-search-open {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.25rem;
}
.header-search-open svg {
  width: 1.25rem;
  height: 1.25rem;
}
.header-search {
  position: fixed;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .8);
  z-index: 20;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

  opacity: 0;
  visibility: hidden;
}
.header-search-active {
  opacity: 1;
  visibility: visible;
}
.header-search-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 1240px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
	padding: 0 20px;
	position: relative;
}
.header-search form {
  width: 500px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  position: relative;
}
.header-search form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: .5rem .75rem;
  border: none;
  border-radius: 0 1.0px 1.0px 0;
}
.header-search form button svg {
  height: 1rem;
  fill: #F7F4EF;
}
.header-search form label {
  display: none;
}
.header-search-close {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1.25rem;
  position: absolute;
  top: 0;
  right: 0;
}
.header-search-close svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #F7F4EF;
}

@media (max-width: 767px) {
  .header-search form {
    width: 100%;
  }
}


/* Search bar */
.header-search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiNGRkZGRkYiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  padding-right: 3rem;
}
.hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 1.0px 1.0px 0 0;
  max-width: 100%;
}
.hs-search-field--open .hs-search-field__suggestions {
  background-color: #F7F4EF;
  border: none !important;
  border-radius: 0 0 1.0px 1.0px;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.header-search .hs-search-field--open form button {
  border-radius: 0 1.0px 0 0;
}
.hs-search-field__suggestions li:not(:first-child) {
  border-top: 1px solid #363941;
  font-size: 0.875rem;
}
.hs-search-field__suggestions li a {
  color: #17181C;
  padding: .5rem .625rem;
  text-decoration: none;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

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

@media (min-width: 992px) {
  .hs-search-field__input {
    width: auto;
  }
}


/* Header Search - Inline */
.header-search--inline .header-search {
  position: unset;
  background: none;
  opacity: 1;
  visibility: visible;
}
.header-search--inline .header-search-inner {
  padding: 0;
}
.header-search--inline .header-search form {
  width: auto;
  max-width: 10rem;
}
.header-search--inline:not(.header-search--slide-in) .header-search-close {
  display: none;
}
.header:not(.header-transparent) .header-search--inline .header-search .hs-search-field__input,
.header.reactive .header-search--inline .header-search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiMwMDAwMDAiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  color: #363941 !important;
}
.header:not(.header-transparent) .header-search--inline .header-search .hs-search-field__input::-webkit-input-placeholder {
  color: #363941;
}
.header.reactive .header-search--inline .header-search .hs-search-field__input::-webkit-input-placeholder {
  color: #363941;
}
.header:not(.header-transparent) .header-search--inline .header-search .hs-search-field__input::-moz-placeholder {
  color: #363941;
}
.header.reactive .header-search--inline .header-search .hs-search-field__input::-moz-placeholder {
  color: #363941;
}
.header:not(.header-transparent) .header-search--inline .header-search .hs-search-field__input:-ms-input-placeholder {
  color: #363941;
}
.header.reactive .header-search--inline .header-search .hs-search-field__input:-ms-input-placeholder {
  color: #363941;
}
.header:not(.header-transparent) .header-search--inline .header-search .hs-search-field__input:-moz-placeholder {
  color: #363941;
}
.header.reactive .header-search--inline .header-search .hs-search-field__input:-moz-placeholder {
  color: #363941;
}
.header:not(.header-transparent) .header-search--inline .header-search .hs-search-field__input::placeholder {
  color: #363941;
}
.header.reactive .header-search--inline .header-search .hs-search-field__input::placeholder {
  color: #363941;
}

@media (max-width: 479px) {
  .header-search--inline {
    display: none;
  }
}


/* Header Search - Slide-in */
.header-search--slide-in {
  position: relative;
}
.header-search--slide-in .header-search {
  position: absolute;
  width: 10rem;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.header-search--slide-in .header-search.header-search-active {
  left: -10rem;
  opacity: 1;
  visibility: visible;
}
.header-search--slide-in .header-search-close {
  position: relative;
}


/* Mobile Menu */
.header-menu-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 1;
  display: none;
}
.header-menu-mobile ul {
  background-color: #FFFFFF;
  display: block;
}
.header-menu-mobile li {
  border-top: 1px solid #FFFFFF;
  position: relative;
}
.header-menu-mobile ul li a {
  padding: 1rem;
  line-height: 1;
  color: #363941 !important;
  background-color: #edeae5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-menu-mobile .hs-menu-depth-2 a {
  background-color: #e3e0db;
}
.header-menu-mobile .hs-menu-depth-3 a {
  background-color: #d9d6d1;
}
.header-menu-mobile .hs-menu-depth-4 a {
  background-color: #cfccc7;
}
.header-menu-mobile .hs-menu-depth-5 a {
  background-color: #c5c2bd;
}
.submenu-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 3rem;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.submenu-button svg {
  height: 1rem;
  fill: #363941;
}
.menu-mobile-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.25rem;
}
.menu-mobile-button svg {
  height: 1.25rem;
}

.menu-mobile-permanent .header-navigation {
  order: 3;
}
.header-main-container.menu-mobile-permanent:not(.menu-logo-above) .header-right {
  margin-left: auto;
}

@media (min-width: 992px) {
  .header-main-container:not(.menu-mobile-permanent) .menu-mobile-button {
    display: none;
  }
  .header-main-container:not(.menu-mobile-permanent) .header-menu-mobile > .hs-menu-wrapper {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .header-main,
  .header-main-container {
    padding: 0;
  }
  .header-logo {
    padding: .875rem 1.25rem;
  }
  .header-menu-main {
    display: none;
  }
  .header-navigation {
    order: 3;
  }
  .header-main-container:not(.menu-logo-above) .header-right {
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  .header-top-column {
    margin: auto;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}


/* Language switcher */
.header-language-switcher {
  cursor: pointer;
}
.header-language-switcher .lang_switcher_class {
  position: static;
  display: block;
  padding: 1.25rem;
}
.header-language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .2);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .2);
  display: block;
  left: 50%;
  opacity: 0;
  min-width: 180px;
  padding-top: 0;
  text-align: center;
  top: 100%;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

  visibility: hidden;
}
.header-language-switcher:hover .lang_list_class,
.header-language-switcher:focus .lang_list_class {
  opacity: 1;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

  visibility: visible;
}
.header-language-switcher .lang_list_class:before {
  left: 50%;
  top: -25px;
  border-bottom-color: #17181C;
}
.header-language-switcher .lang_list_class:after {
  left: 50%;
  top: -22px;
}
.header-language-switcher .lang_list_class.first-active::after {
  top: -22px;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

  border-bottom-color: #17181C;
}
.header-language-switcher .lang_list_class li {
  border: none;
  font-size: .875rem;
  padding: .5rem .75rem;
}
.header-language-switcher .lang_list_class li:first-child {
  border-radius: 4px 4px 0 0;
  border-top: none;
}
.header-language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 4px 4px;
}
.header-language-switcher .lang_list_class li:hover {
  background-color: #EBEFF3;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.header-language-switcher-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.header-language-switcher-label-current {
  display: none;
}

@media (max-width: 992px) {
  .header-language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }
  .header-language-switcher .lang_list_class:before,
  .header-language-switcher .lang_list_class:after {
    content: none;
  }
}

.header-language-switcher .lang_list_class li a {
  color: #5C6A57;
}
.header-language-switcher .lang_list_class li:hover a,
.header-language-switcher .lang_list_class li a:focus {
  opacity: .6;
}
.header-language-switcher .lang_list_class li a:active {
  opacity: .6;
}
.header-language-switcher .lang_list_class {
  background-color: #F7F4EF;
  border-color: #17181C;
}
.header-language-switcher .lang_list_class li:hover {
  background-color: #F7F4EF;
}


/* Header Transparent */
.header-transparent:not(.reactive) .header-logo-dark,
.header-transparent.reactive .header-logo-light {
  display: none;
}
.header-transparent:not(.reactive) .header-top {
  background-color: transparent;
  border-bottom-color: #FFFFFF;
}
.header-transparent:not(.reactive) .header-main {
  background-color: transparent;
}
.header-transparent:not(.reactive) .header-menu-main a,
.header-transparent:not(.reactive) .header-top-column,
.header-transparent:not(.reactive) .header-menu-main > .hs-menu-wrapper > ul > li.hs-item-has-children:after {
  color: #FFFFFF;
}
.header-transparent:not(.reactive) .header-search-open svg,
.header-transparent:not(.reactive) .header-top-container svg,
.header-transparent:not(.reactive) .menu-mobile-button svg,
.header-transparent:not(.reactive) .header-search-close svg {
  fill: #FFFFFF;
}
.header-transparent:not(.reactive) .globe_class {
  background-image: url(https://4545758.fs1.hubspotusercontent-na1.net/hubfs/4545758/raw_assets/public/Healing_Hands_2026_06/images/globe-white.png);
}


.footer {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer-background--gradient {
  background: -webkit-gradient(linear, left top, right top, from(#A5B29F), to(#5C6A57));
  background: -o-linear-gradient(left, #A5B29F, #5C6A57);
  background: linear-gradient(to right, #A5B29F, #5C6A57);
}
.footer-background--image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer-background--image .footer-top {
  background-color: rgba(23, 24, 28, .5 );
}
.footer-top {
  padding: 0 20px;
}
.footer-top-container {
  max-width: 1240px;
  margin: 0 auto;
	position: relative;
}
.footer-bottom {
	padding: .5rem 20px;
  background-color: transparent;
}
.footer-bottom-container {
  max-width: 1240px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .footer-top {
    padding: 4rem 20px;
    text-align: center;
  }
  .footer-bottom-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer-logo,
  .footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .footer-bottom-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

/* Column Content */
.footer-column-item {
  margin-bottom: 1.75rem;
}
.footer-column-item p {
  margin-bottom: .75rem; 
}
.footer-column-item h1,
.footer-column-item h2,
.footer-column-item h3,
.footer-column-item h4,
.footer-column-item h5,
.footer-column-item h6,
.footer-column-item-title {
  color: inherit !important;
}
.footer-column-item .social-links svg {
  fill: inherit !important;
}
.footer-column-item > *:last-child {
  margin-bottom: 0;
}
.footer-column-item a:not(.social-links-single) {
  position: relative;
  display: inline-block;
  font-weight: 500;
}
.footer-column-item a:not(.social-links-single):after {
  content: "";
  width: 0;
  height: 3px;
  background-color: #A5B29F;
  position: absolute;
  bottom: 0;
  left: 0%;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.footer-column-item a:not(.social-links-single):hover:after {
  width: 100%;
  right: 0;
}
.footer-top-container > .row-fluid > [class*="span"]:last-child > .footer-column-item:last-child {
  margin-bottom: 0;
}
.footer-column-accent-background {
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}
.footer-column-accent-background .footer-column-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .footer-top-container > .row-fluid {
    display: flex;
  }
  .footer-top-container > .row-fluid > [class*="span"] {
    padding: 4rem 0;
  }
  .footer-column-item {
    margin-bottom: 1rem;
  }
  .footer-column-item:last-child {
    margin-bottom: 0;
  }
  .footer-column-accent-line .footer-column-item {
    padding-left: 2rem !important;
    border-left-style: solid;
    border-left-width: 2px;
    border-left-color: inherit;
  }
  .footer-column-accent-background {
    padding: 4rem 2.25rem !important;
    margin-bottom: 0;
  }
}

/* Form */
.footer-form form {
  padding: 0;
  border: 0;
  background: transparent;
}
.footer-form .form-title {
  display: none;
}
.footer-form input[type=text],
.footer-form input[type=email],
.footer-form input[type=password],
.footer-form input[type=tel],
.footer-form input[type=number],
.footer-form input[type=file],
.footer-form select,
.footer-form textarea,
.footer-form form label {
  font-size: .875rem;
}
.footer-form form label {
  color: inherit !important;
}

/* Menu */
.footer-column-item-menu .hs-menu-children-wrapper {
  display: none !important;
}
.footer-column-item-menu ul {
  margin: 0;
}
.footer-column-item-menu li {
  display: block;
  width: 100%;
}
.footer-column-item-menu li:nth-child(n+2) {
  margin-top: .25rem;
}
.footer-column-item-menu a {
  color: inherit;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.7;
  padding: 0;
}
.footer-column-item-menu a:hover,
.footer-column-item-menu a:focus {
  color: inherit;
}
.footer-column-item-menu li.active a:after {
  width: 100%;
  right: 0;
}

/* Social Icons */
@media (max-width: 767px) {
  .footer-column-item .social-links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* Copyright */
.footer-bottom-copyright {
  font-size: .75rem;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
@media (min-width: 768px) {
  .footer-bottom-copyright {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 60%;
    flex: 1 0 60%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

/* Bottom Menu */
.footer-bottom-menu {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.footer-bottom-menu .hs-menu-children-wrapper {
  display: none;
}
.footer-bottom-menu .hs-menu-wrapper.hs-menu-flow-horizontal ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.footer-bottom-menu li a {
  color: inherit;
  font-size: .75rem;
  padding: 0 .5rem;
  border-right: 1px solid #17181C;
  border-color: inherit;
}
.footer-bottom-menu li:first-child a {
  padding-left: 0;
}
.footer-bottom-menu li:last-child a {
  border-right: none;
  padding-right: 0;
}
.footer-bottom-menu a:hover,
.footer-bottom-menu a:focus {
  opacity: .75;
}
.footer-bottom-menu li.active a {
  font-weight: bold;
}

@media (min-width: 768px) {
  .footer-bottom-menu {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

/* Scroll to Top */
.footer-scroll-to-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #5C6A57;
  border-radius: 4px;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

  z-index: 5;
  opacity: 0;
  visibility: hidden;
}
.footer-scroll-to-top:hover,
.footer-scroll-to-top:focus {
  opacity: 1;
}
.footer-scroll-to-top-active {
  opacity: .4;
  visibility: visible;
}
.footer-scroll-to-top svg {
  height: 1.25rem;
  fill: #F7F4EF;
}

/* ===== Healing Hands footer styling ===== */
.footer-column-item .footer-column-item-title {
  color: #A5B29F !important;
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-logo {
  display: block;
  height: 46px;
  width: auto;
  margin-bottom: 1.125rem;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 32ch;
  opacity: 0.9;
}
/* Footer bottom bar: hairline top rule + breathing room, like the design */
.footer-bottom-container {
  border-top: 1px solid rgba(247, 244, 239, 0.12);
  padding-top: 1.75rem;
}
.footer-bottom {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
.footer-column-item ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.footer-column-item li {
  margin-bottom: 0.6rem;
}
.footer-column-item li:last-child {
  margin-bottom: 0;
}
.footer-column-item a:not(.social-links-single) {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #F7F4EF;
}
/* Footer nav/menu links are light with no underline-grow animation */
.footer-column-item a:not(.social-links-single):after {
  display: none;
}
.footer-column-item a:not(.social-links-single):hover,
.footer-column-item a:not(.social-links-single):focus {
  color: #F7F4EF;
  opacity: 0.7;
}
.footer-column-item .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer-column-item .social-links-single {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(247, 244, 239, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.footer-column-item .social-links-single:hover,
.footer-column-item .social-links-single:focus {
  background-color: #5C6A57 !important;
  border-color: #5C6A57;
}


/* Slick Slider */
.slick-track {
  display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.slick-slide {
  height: inherit;
}

/* Next & Previous Buttons */
.slick-next,
.slick-prev {
	width: 2.25rem;
  height: 2.25rem;
  z-index: 2;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.slick-slider .slick-arrow:before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 1.5rem;
	background: #17181C;
	color: #F7F4EF;
	width: 2.25rem;
	height: 2.25rem;
  border-radius: 4px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: 1;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.slick-slider .slick-arrow:hover:before {
	background: #5C6A57;
	color: #F7F4EF;
}
.slick-slider .slick-arrow.slick-prev {
	left: -2.375rem;
}
.slick-slider .slick-arrow.slick-next {
	right: -2.375rem;
}
.slick-slider .slick-arrow.slick-prev:before {
	content: '\f104';
}
.slick-slider .slick-arrow.slick-next:before {
	content: '\f105';
}


.popup-enabled,
.popup-enabled label {
  cursor: pointer;
}

/* Popup */
.mfp-container {
  padding-left: 20px;
  padding-right: 20px;
}
img.mfp-img {
  padding: 2rem 0;
  cursor: auto;
}
.popup {
	position: relative;
	max-width: 720px;
  margin: 2rem auto;
  outline: none;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.mfp-close {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 1;
  background-color: rgba(255, 255, 255, .5);
  padding: .5rem;
  width: 2.25rem !important;
  height: 2.25rem;
  right: 0 !important;
}
.mfp-close:active {
  top: 0;
}
.mfp-close svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #363941;
}
.mfp-close > * {
  pointer-events: none
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  top: 2rem;
}
.popup-image img {
	display: block;
	width: 100%;
}
.popup-body {
	padding: 1.5rem;
}
.popup-body > *:not(:first-child) {
  margin-top: 1.25rem;
}
.popup-body .subheading + .popup-heading {
  margin-top: 0;
}
.popup-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: -.5rem;
}
.popup-buttons > span {
  padding: .5rem;
}
.popup form {
  background: transparent;
  padding: 0;
}
.popup-open .body-wrapper {
  filter: blur(1px);
}

@media (min-width: 480px) {
  .popup-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

/* Zoom Animation */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  /* ideally, transition speed should match zoom duration */
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-with-zoom.mfp-ready .popup {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.mfp-with-zoom.mfp-removing .popup {
  -webkit-transform: scale(.75);
  -ms-transform: scale(.75);
  transform: scale(.75);
}

/* Next & Previous Buttons */
.mfp-arrow {
	width: 2rem;
  height: 2rem;
  z-index: 1046;
  opacity: 1;
  margin-top: 0;
  cursor: pointer;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.mfp-arrow:before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 1.25rem;
	background: #5C6A57;
	color: #F7F4EF;
	width: 2rem;
	height: 2rem;
  border-radius: 4px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: 1;
  border: none;
  margin: 0;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.mfp-arrow:hover:before {
	background: #17181C;
	color: #F7F4EF;
}
.mfp-arrow:active {
  margin-top: 0;
}
.mfp-arrow-left {
	left: 1.75rem;
}
.mfp-arrow-right {
	right: 1.75rem;
}
.mfp-arrow-left:before {
	content: '\f053';
}
.mfp-arrow-right:before {
	content: '\f054';
}
.mfp-arrow:after {
  content: none;
}


.cards-wrapper {
  display: flow-root;
  position: relative;
}
.cards-wrapper .slick-dots {
  bottom: -17px;
}
.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: -.75rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cards-single {
  max-width: 100%;
  width: 100%;
  padding: .75rem;
}
.cards-single-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 4px
}

@media (max-width: 1360px) {
  .cards-wrapper {
    overflow: hidden;
  }
}

@media (max-width: 991px) {
  .cards-single:not(.flex-basis-1) {
    -ms-flex-preferred-size: 50% !important;
    flex-basis: 50% !important;
    width: 50% !important;
    max-width: 480px;
  }
  .cards-single.flex-basis-1:only-child {
    -ms-flex-preferred-size: 100% !important;
    flex-basis: 100% !important;
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .cards-single:not(.flex-basis-1) {
    -ms-flex-preferred-size: 100% !important;
    flex-basis: 100% !important;
    width: 100% !important;
  }
  .cards-single:not(.flex-basis-1) {
    max-width: 460px;
  }
}

/* Image */
.card-image-wrapper {
  overflow: hidden;
  padding-bottom: 56.25%;
}
.cards-single-inner > a > .card-image-wrapper {
  padding-bottom: 0;
}
.card-image-bg {
  background-image: url(https://4545758.fs1.hubspotusercontent-na1.net/hubfs/4545758/raw_assets/public/Healing_Hands_2026_06/images/grayscale-mountain.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 56.25%; /* This number gives the image it's proper size. It is derived as  image_height / image_width * 100% */
  position: relative;
}
.card-image {
  overflow: hidden;
}
.card-image img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}
.card-image--padding img {
  padding: 1.5rem 1.5rem 0;
}

/* Icon */
.card-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 10rem;
  max-height: 10rem;
}
.card-icon svg {
  height: inherit;
  max-width: 100%;
  max-height: inherit;
  padding: 1.5rem 1.5rem 0;
}

/* Overlay */
.card-content {
  position: absolute;
  bottom: -100%;    
  opacity: 0;
  z-index: 4;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.cards-single-inner:hover .card-content,
.cards-single-inner:focus .card-content {
  bottom: 0;
  opacity: 1;
}
.card-overlay {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.card-overlay-content {
  position: absolute;
  bottom: 0;
  z-index: 3;
  width: 100%;
}
.card-body {
  padding: 1.5rem;
  width: 100%;
}
.card-heading-wrapper {
  margin-bottom: .75rem;
}
.card-heading {
  margin-bottom: 0;
}
.card-heading + .card-text,
.card-heading + .social-links,
.card-text + .social-links {
  margin-top: .75rem;
}
.card-button {
  margin-top: auto;
  padding: 0 1.5rem 1.5rem;;
  width: 100%
}

/* Post */
.card-post-meta-wrapper {
  font-size: .875rem;
}
.card-post-meta {
  display: block;
  line-height: 1;
  margin-top: .5rem;
}
.card-post-meta svg {
  margin-right: .5rem;
}

/* Hover Animations */
.card-hover--card-zoom,
.card-hover--image-zoom .card-image-bg,
.card-hover--image-zoom .card-image img,
.card-hover--image-zoom .blog-card-image {
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.card-hover--card-zoom:hover,
.card-hover--image-zoom:hover .card-image-bg,
.card-hover--image-zoom:hover .card-image img,
.card-hover--image-zoom:hover .blog-card-image {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

/* Transparent Card */
.cards-single-inner.bg-transparent .card-image,
.cards-single-inner.bg-transparent .card-image-wrapper,
.cards-single-inner.bg-transparent .card-image-bg {
  border-radius: 4px
}
.cards-single-inner.bg-transparent .card-body {
  padding: 1rem 0;
}
.cards-single-inner.bg-transparent .card-button {
  margin-top: auto;
  padding: 0 0 1rem;
  width: 100%;
}

/* Accent Line */
.card-accent {
  width: 100%;
  height: 0.25rem;
  margin: 0.75rem 0;
}
.card-accent-top {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: .5rem;
}
.card-accent-bottom {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: .5rem;
}

/* Filter */
.cards-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
  margin: -0.5rem;
}
.cards-filter .button {
  margin: 0.5rem;
}
.cards-filter select {
  margin: 0.5rem;
  min-width: 32%;
  width: auto !important;
}

/* Filter row alignment (default: left = legacy flex-start) */
.cards-filter--left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.cards-filter--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cards-filter--right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/* Healing Hands testimonial filter pills (matches Testimonials design)
   Scoped to the var_hh_testimonial wrapper so other pages are unaffected. */
.cards-wrapper--testi-filter .cards-filter {
  gap: 8px;
  margin: 0;
  padding-bottom: 36px;
}
.cards-wrapper--testi-filter .cards-filter .button {
  margin: 0;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 9px 20px;
  border-radius: 99px;
  line-height: 1.2;
  cursor: pointer;
  border: 1px solid rgba(92, 106, 87, 0.18);
  -webkit-transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
/* Inactive pill (button-outline-dark) */
.cards-wrapper--testi-filter .cards-filter .button-outline-dark {
  background: #fff;
  color: #363941;
}
.cards-wrapper--testi-filter .cards-filter .button-outline-dark:hover,
.cards-wrapper--testi-filter .cards-filter .button-outline-dark:focus-visible {
  background: #E8DFD3;
  color: #363941;
  border-color: rgba(92, 106, 87, 0.18);
}
/* Active pill (button-dark) */
.cards-wrapper--testi-filter .cards-filter .button-dark {
  background: #17181C;
  color: #F7F4EF;
  border-color: #17181C;
}
.cards-wrapper--testi-filter .cards-filter .button-dark:hover,
.cards-wrapper--testi-filter .cards-filter .button-dark:focus-visible {
  background: #17181C;
  color: #F7F4EF;
  border-color: #17181C;
}

/* ============================================================
   Healing Hands card variations (service / path / story)
   ============================================================ */
.hh-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  gap: 0.875rem;
}

/* Icon in circle */
.hh-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-ivory);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0.375rem;
  -webkit-transition: background .25s ease, -webkit-transform .25s ease;
  transition: background .25s ease, transform .25s ease;
}
.hh-icon-circle svg { width: 22px; height: 22px; }
.hh-icon-circle--lg {
  width: 56px;
  height: 56px;
  background: rgba(165, 178, 159, 0.22);
}
.hh-icon-circle--lg svg { width: 26px; height: 26px; }
.text-center .hh-icon-circle { margin-left: auto; margin-right: auto; }

/* Heading + text */
.hh-card-heading {
  margin: 0;
  line-height: 1.12;
}
.hh-card-text {
  font-size: 1rem;
  line-height: 1.65;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
}
.hh-card-text p:last-child { margin-bottom: 0; }

/* Heading link wipe (left-to-right olive underline) */
.hh-link-wipe {
  color: inherit;
  background-image: linear-gradient(var(--color-olive), var(--color-olive));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  padding-bottom: 2px;
  -webkit-transition: background-size .35s ease, color .25s ease;
  transition: background-size .35s ease, color .25s ease;
}
.hh-card:hover .hh-link-wipe,
.hh-link-wipe:hover,
.hh-link-wipe:focus-visible {
  background-size: 100% 1px;
  color: var(--color-olive);
}

/* Card foot (learn-more link + optional badge) */
.hh-card-foot {
  margin-top: auto;
  padding-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.75rem;
}
.hh-card-foot.hh-foot-left { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; }
.hh-card-foot.hh-foot-center { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.hh-card-foot.hh-foot-right { -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; }
.hh-arrow-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}
.hh-arrow { -webkit-transition: -webkit-transform .2s ease; transition: transform .2s ease; }
.hh-arrow-link:hover .hh-arrow { -webkit-transform: translateX(3px); transform: translateX(3px); }
.hh-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #2b3328;
  padding: 5px 9px;
  border-radius: 3px;
}

/* Service card - soft sand, 16r, lifts on hover */
.hh-service-card {
  border-radius: 16px;
  padding: 2.375rem 2.125rem 2.125rem;
  -webkit-box-shadow: 0 2px 12px rgba(23, 24, 28, 0.04);
  box-shadow: 0 2px 12px rgba(23, 24, 28, 0.04);
  min-height: 300px;
  -webkit-transition: -webkit-transform .25s ease, -webkit-box-shadow .25s ease;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hh-service-card:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 14px 32px -16px rgba(23, 24, 28, 0.18);
  box-shadow: 0 14px 32px -16px rgba(23, 24, 28, 0.18);
}

/* Path card - ivory, hairline rule, 8r */
.hh-path-card {
  border: 1px solid var(--color-rule);
  border-radius: 8px;
  padding: 2.375rem 2rem 2rem;
  min-height: 280px;
  -webkit-transition: background .25s ease, -webkit-box-shadow .25s ease;
  transition: background .25s ease, box-shadow .25s ease;
}
.hh-path-card:hover {
  -webkit-box-shadow: 0 14px 32px -22px rgba(23, 24, 28, 0.18);
  box-shadow: 0 14px 32px -22px rgba(23, 24, 28, 0.18);
}
.hh-path-card:hover .hh-icon-circle--lg { background: rgba(165, 178, 159, 0.38); }

/* Story card - ivory, oversized terra quote mark */
.hh-story-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-sand);
  border-radius: 8px;
  padding: 3rem 2.25rem 2.25rem;
}
.hh-quote-mark {
  position: absolute;
  top: -1.875rem;
  left: 1.125rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-style: normal;
  font-size: 180px;
  line-height: 1;
  color: var(--color-terracotta);
  opacity: 0.18;
  pointer-events: none;
}

/* Feature card (var_hh_feature) - white surface, hairline border, sage-tint circle icon, centered (How it helps / highlights) */
.hh-feature-card {
  border: 1px solid var(--color-rule);
  border-radius: 8px;
  padding: 1.875rem 1.5rem;
  -webkit-transition: -webkit-box-shadow .25s ease;
  transition: box-shadow .25s ease;
}
.hh-feature-card:hover {
  -webkit-box-shadow: 0 14px 32px -22px rgba(23, 24, 28, 0.15);
  box-shadow: 0 14px 32px -22px rgba(23, 24, 28, 0.15);
}
.hh-feature-card .hh-icon-circle {
  background: rgba(165, 178, 159, 0.22);
}
.hh-feature-card.hh-feature-icon-light .hh-icon-circle {
  background: var(--color-ivory);
}
.hh-feature-card .hh-card-text {
  font-size: 0.85rem;
  line-height: 1.5;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

/* Trust item (var_hh_trust) - transparent, vertical divider, sage-tint circle icon, centered */
.hh-trust-card {
  padding: 0.75rem 1rem;
}
.hh-trust-card .hh-card-text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-ink-3, #54575F);
  margin-top: 0.125rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.hh-trust-card .hh-card-text p:last-child { margin-bottom: 0; }

/* Dense-grid card titles use the smaller "H4" size (design ~19px serif) */
.hh-path-card .hh-card-heading,
.hh-feature-card .hh-card-heading,
.hh-trust-card .hh-card-heading {
  font-size: 1.1875rem;
}

/* Vertical dividers between trust items - only on wide (>= 992px) layouts */
@media (min-width: 992px) {
  .hh-trust-card { border-right: 1px solid var(--color-rule); }
  .cards .cards-single:last-child .hh-trust-card { border-right: none; }
}

/* Story card footer (disclaimer with top rule) */
.hh-story-foot {
  margin-top: 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--color-rule);
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--color-ink-3);
}
.hh-story-foot strong { color: var(--color-ink); font-weight: 600; }
.hh-story-foot p:last-child { margin-bottom: 0; }

/* Step cards (var_hh_steps) - ivory container with a dashed connector through the icons.
   The container keeps the shared `.cards { margin: -.75rem }` gutter untouched; we add
   matching padding on the module wrapper so that gutter no longer pushes the rounded
   container past `.cards-wrapper`'s overflow:hidden clip (which was squaring the corners). */
.cards-wrapper--steps {
  padding: 0.75rem;
}
.cards.cards-steps {
  background: var(--color-ivory);
  border: 1px solid rgba(217, 206, 193, 0.6);
  border-radius: 12px;
  overflow: hidden;
  padding: 48px 36px;
  -webkit-box-shadow: 0 24px 50px -28px rgba(23, 24, 28, 0.18);
  box-shadow: 0 24px 50px -28px rgba(23, 24, 28, 0.18);
  display: grid;
  grid-template-columns: repeat(var(--hh-cols, 6), 1fr);
  gap: 24px;
  position: relative;
}
.cards.cards-steps .cards-single {
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cards.cards-steps::before {
  content: "";
  position: absolute;
  left: calc(100% / (var(--hh-cols, 6) * 2));
  right: calc(100% / (var(--hh-cols, 6) * 2));
  top: 74px;
  border-top: 1px dashed rgba(92, 106, 87, 0.5);
  z-index: 0;
}
.hh-step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  background: transparent;
}
.hh-step-ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(165, 178, 159, 0.2);
  display: grid;
  place-items: center;
  color: var(--color-olive);
  margin: 0 auto;
  -webkit-transition: background .25s ease;
  transition: background .25s ease;
}
.hh-step-ic svg { width: 24px; height: 24px; }
.hh-step-card:hover .hh-step-ic { background: rgba(165, 178, 159, 0.34); }
.hh-step-card .hh-card-heading { font-size: 1.125rem; }
.hh-step-card .hh-card-text {
  font-size: 0.8rem;
  line-height: 1.5;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 1100px) {
  .cards.cards-steps { grid-template-columns: repeat(3, 1fr); }
  .cards.cards-steps::before { display: none; }
}
@media (max-width: 767px) {
  .cards.cards-steps { grid-template-columns: repeat(2, 1fr); padding: 32px 20px; }
}

.hh-story-quote {
  position: relative;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}
.hh-story-quote p:last-child { margin-bottom: 0; }
.hh-story-attribution {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.hh-story-tag {
  margin-top: 0.875rem;
  font-size: 0.8rem;
}

/* Story card with portrait on the right (testimonial layout) - fixed 120px image */
.hh-story-card--with-image {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hh-story-card--with-image .hh-story-quote { margin-bottom: 1rem; }
.hh-story-media {
  width: 120px;
  -ms-flex-item-align: center;
  align-self: center;
  border-radius: 8px;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-sage)), to(var(--color-olive)));
  background: linear-gradient(180deg, var(--color-sage), var(--color-olive));
}
.hh-story-media img {
  display: block;
  width: 100%;
  height: auto;
}
/* Stack the 120px portrait under the copy only on very narrow screens */
@media (max-width: 479px) {
  .hh-story-card--with-image { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Path cards: joined grid that respects items_in_row (--hh-cols).
   Cards sit flush with 1px sage hairline dividers (no card spacing), the
   whole group has rounded outer corners (overflow clips the corner cards),
   and any partial last row grows to fill the full width. */
.cards.cards-joined {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0;
  gap: 1px;
  background: var(--color-rule);
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 18px 40px -28px rgba(23, 24, 28, 0.18);
  box-shadow: 0 18px 40px -28px rgba(23, 24, 28, 0.18);
}
.cards.cards-joined .cards-single {
  padding: 0 !important;
  max-width: none !important;
  width: auto !important;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc((100% - (var(--hh-cols, 3) - 1) * 1px) / var(--hh-cols, 3)) !important;
  flex: 1 1 calc((100% - (var(--hh-cols, 3) - 1) * 1px) / var(--hh-cols, 3)) !important;
}
.cards.cards-joined .hh-path-card {
  border: none;
  border-radius: 0;
  height: 100%;
}
/* Program/path card extras: corner badge + proof pill + heading sub-label */
.cards.cards-joined .hh-card-text { -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; }
.hh-path-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--color-charcoal);
  color: var(--color-ivory);
  padding: 5px 9px;
  border-radius: 2px;
}
.hh-path-sub {
  display: block;
  margin-top: 4px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.7em;
  color: var(--color-olive);
}
.hh-path-proof {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-sand-soft);
  padding: 11px 16px;
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--color-charcoal);
  font-weight: 500;
  margin: 0 0 18px;
}
.hh-path-proof svg {
  width: 15px;
  height: 15px;
  color: var(--color-olive);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.hh-path-proof.hh-proof-left { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; }
.hh-path-proof.hh-proof-center { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.hh-path-proof.hh-proof-right { -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; }
/* Joined grids with more than 3 columns drop to 2-up between 768px and 991px */
@media (min-width: 768px) and (max-width: 991px) {
  .cards.cards-joined--md2 .cards-single {
    -ms-flex: 1 1 calc(50% - 0.5px) !important;
    flex: 1 1 calc(50% - 0.5px) !important;
  }
}
@media (max-width: 767px) {
  .cards.cards-joined .cards-single {
    -ms-flex: 1 1 100% !important;
    flex: 1 1 100% !important;
  }
}

/* Flow cards (var_hh_flow) - a row of steps with chevrons between (e.g. "What to expect") */
.cards.cards-flow {
  display: grid;
  grid-template-columns: repeat(var(--hh-cols, 4), 1fr);
  gap: 28px;
  margin: 0;
  position: relative;
}
.cards.cards-flow .cards-single {
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
}
.cards.cards-flow .cards-single:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  right: -18px;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(92, 106, 87, 0.55);
  border-right: 2px solid rgba(92, 106, 87, 0.55);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hh-flow-card {
  text-align: center;
  background: transparent;
}
.hh-flow-card .hh-card-heading { font-size: 1.125rem; }
.hh-flow-card .hh-card-text {
  font-size: 0.85rem;
  line-height: 1.5;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (max-width: 991px) {
  .cards.cards-flow { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cards.cards-flow .cards-single::after { display: none; }
}
@media (max-width: 600px) {
  .cards.cards-flow { grid-template-columns: 1fr; }
}

/* Optional box shadow on individual cards (card_shadow toggle) */
.cards.hh-cards-shadow .hh-card {
  -webkit-box-shadow: 0 14px 32px -22px rgba(23, 24, 28, 0.18);
  box-shadow: 0 14px 32px -22px rgba(23, 24, 28, 0.18);
}

/* ============================================================
   Journey story card (var_hh_journey) - white card with avatar,
   program pill, result stat, before/during/after arc, read link.
   Standalone cards on the shared flex .cards grid.
   ============================================================ */
.hh-journey-card {
  background: #fff;
  border: 1px solid var(--color-rule);
  border-radius: 10px;
  padding: 28px 26px;
  gap: 14px;
  -webkit-box-shadow: 0 14px 32px -22px rgba(23, 24, 28, 0.12);
  box-shadow: 0 14px 32px -22px rgba(23, 24, 28, 0.12);
  -webkit-transition: -webkit-transform .25s ease, -webkit-box-shadow .25s ease;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hh-journey-card:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 24px 50px -28px rgba(23, 24, 28, 0.18);
  box-shadow: 0 24px 50px -28px rgba(23, 24, 28, 0.18);
}
.hh-journey-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}
.hh-journey-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right bottom, from(var(--color-sage)), to(var(--color-olive)));
  background: linear-gradient(135deg, var(--color-sage), var(--color-olive));
  display: grid;
  place-items: center;
  color: var(--color-ivory);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  -webkit-box-flex: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.hh-journey-nameblock { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; }
.hh-journey-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 21px;
  color: var(--color-charcoal);
  line-height: 1.1;
}
.hh-journey-pill {
  display: inline-block;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--color-sand-soft);
  color: var(--color-charcoal);
  padding: 4px 9px;
  border-radius: 2px;
  font-weight: 600;
}
.hh-journey-stat {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--color-olive);
  padding: 10px 0 14px;
  border-bottom: 1px solid var(--color-rule);
}
.hh-journey-stat strong { color: var(--color-terracotta); font-weight: 600; }
.hh-journey-arc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 11px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.hh-journey-line {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-ink-2, #363941);
}
.hh-journey-line strong { color: var(--color-charcoal); font-weight: 600; }
.hh-journey-line p:last-child { margin-bottom: 0; }
.hh-journey-exp {
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--color-charcoal);
  padding-left: 14px;
  border-left: 2px solid var(--color-terracotta);
}
.hh-journey-exp p:last-child { margin-bottom: 0; }
.hh-journey-read {
  margin-top: 6px;
  -ms-flex-item-align: start;
  align-self: flex-start;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 4px;
  border: 1px solid rgba(92, 106, 87, 0.32);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-charcoal);
  -webkit-transition: background .2s ease, border-color .2s ease, gap .2s ease;
  transition: background .2s ease, border-color .2s ease, gap .2s ease;
}
.hh-journey-read:hover {
  background: var(--color-olive);
  color: var(--color-ivory);
  border-color: var(--color-olive);
  gap: 12px;
}
/* center variant keeps the read link/arc aligned with the chosen alignment */
.hh-journey-card.text-center .hh-journey-read { -ms-flex-item-align: center; align-self: center; }
.hh-journey-card.text-center .hh-journey-head { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }

/* ============================================================
   Testimonial card (var_hh_testimonial) - white card, tag row
   (optional compliance warn), gradient avatar, centered quote,
   outcome line, star row. Standalone cards on the flex .cards grid.
   ============================================================ */
.hh-testi-card {
  background: #fff;
  border: 1px solid var(--color-rule);
  border-radius: 10px;
  padding: 24px 24px 22px;
  gap: 14px;
  position: relative;
  -webkit-box-shadow: 0 14px 32px -22px rgba(23, 24, 28, 0.10);
  box-shadow: 0 14px 32px -22px rgba(23, 24, 28, 0.10);
  -webkit-transition: -webkit-transform .25s ease, -webkit-box-shadow .25s ease;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hh-testi-card:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 24px 50px -28px rgba(23, 24, 28, 0.18);
  box-shadow: 0 24px 50px -28px rgba(23, 24, 28, 0.18);
}
.hh-testi-tagrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
.hh-testi-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--color-sand-soft);
  color: var(--color-charcoal);
  padding: 5px 9px;
  border-radius: 2px;
  font-weight: 600;
}
.hh-testi-warn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(185, 114, 99, 0.12);
  display: grid;
  place-items: center;
  color: var(--color-terracotta);
  -webkit-box-flex: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.hh-testi-warn svg { width: 12px; height: 12px; }
.hh-testi-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right bottom, from(var(--color-sage)), to(var(--color-olive)));
  background: linear-gradient(135deg, var(--color-sage), var(--color-olive));
  display: grid;
  place-items: center;
  color: var(--color-ivory);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 6px auto 4px;
}
.hh-testi-name {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--color-charcoal);
}
.hh-testi-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-charcoal);
  text-align: center;
  position: relative;
  padding: 6px 14px 0;
  margin: 0;
}
.hh-testi-quote p:last-child { margin-bottom: 0; }
.hh-testi-quote::before,
.hh-testi-quote::after {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--color-terracotta);
  font-weight: 500;
  font-size: 26px;
  position: absolute;
  line-height: 1;
}
.hh-testi-quote::before { content: "\201C"; top: -2px; left: 0; }
.hh-testi-quote::after { content: "\201D"; bottom: -2px; right: 0; }
.hh-testi-outcome {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-ink-3, #54575F);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.hh-testi-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2px;
  color: var(--color-terracotta);
  padding-top: 12px;
  border-top: 1px solid var(--color-rule);
}
.hh-testi-stars svg { width: 14px; height: 14px; }

/* ============================================================
   What to Expect step (var_hh_expect) - joined bordered container
   (one white card, hairline dividers between steps, no gaps), each
   step: circle icon + italic number + title + supporting text.
   ============================================================ */
.cards-wrapper--expect {
  padding: 0.75rem;
}
.cards.cards-expect {
  display: grid;
  grid-template-columns: repeat(var(--hh-cols, 3), 1fr);
  gap: 0;
  margin: 0;
  background: #fff;
  border: 1px solid var(--color-rule);
  border-radius: 10px;
  overflow: hidden;
}
.cards.cards-expect .cards-single {
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.hh-expect-card {
  padding: 36px 32px;
  gap: 14px;
  text-align: left;
  border-right: 1px solid var(--color-rule);
}
.cards.cards-expect .cards-single:last-child .hh-expect-card { border-right: none; }
.hh-expect-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}
.hh-expect-ic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(165, 178, 159, 0.18);
  display: grid;
  place-items: center;
  color: var(--color-olive);
  -webkit-box-flex: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: background .25s ease;
  transition: background .25s ease;
}
.hh-expect-ic svg { width: 26px; height: 26px; }
.hh-expect-card:hover .hh-expect-ic { background: rgba(165, 178, 159, 0.32); }
.hh-expect-num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-terracotta);
  margin-bottom: 2px;
  line-height: 1;
}
.hh-expect-heading {
  font-size: 1.375rem;
  line-height: 1.15;
  margin-top: 2px;
}
.hh-expect-text {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-ink-2, #363941);
}
@media (max-width: 991px) {
  .cards.cards-expect { grid-template-columns: 1fr; }
  .hh-expect-card {
    border-right: none;
    border-bottom: 1px solid var(--color-rule);
  }
  .cards.cards-expect .cards-single:last-child .hh-expect-card { border-bottom: none; }
}


.list-inner {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.list-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: .75rem;
}
.list-single:last-child {
  margin-bottom: 0
}
.list-indicator {
  min-width: 2rem;
  position: relative;
}
.list-indicator--bullet {
  position: relative;
}
.list-indicator--bullet span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: .625rem;
  width: .5rem;
  height: .5rem;
  border-radius: 100%;
}
.list-indicator--number  {
  font-weight: bold;
}
.list-indicator--icon {
  margin-top: .125rem;
}
.list-indicator--icon span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.list-indicator--icon svg {
  width: 1rem;
  height: 1rem;
}
.list-indicator--image {
  margin-top: .125rem;
}


.tab-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tab-button {
  cursor: pointer;
  padding: 1.5rem;
  font-size: 1.25rem;
  line-height: 1;
  position: relative;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.tab-button:hover,
.tab-button.active {
  opacity: .875;
}
.tab-button:after {
  content: "";
  width: 0;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
  
  
     
  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;

}
.tab-button:hover:after,
.tab-button.active:after {
  width: 100%;
  left: 0;
}
.tab-body-inner {
  display: none;
  padding: 1.5rem;
}
.tab-body-inner:first-child {
  display: block;
}
.tab-body-inner.bg-transparent {
  padding: 1rem 0;
}

/* Rounded Corners */
.tabs.rounded .tab-button:first-child {
  border-radius: 4px 0 0 0;
}
.tabs.rounded .tab-button:last-child {
  border-radius: 0 4px 0 0;
}
.tabs.rounded .tab-body-inner {
  border-radius: 0 0 4px 4px;
}


/* ============================================================
   Healing Hands - Blog (listing + post)
   Brand: ivory bg, white bordered rounded cards, olive accents,
   Cormorant headings (inherited), Inter body, terracotta rules.
   Colors come from :root custom props set in _variables.css.
   ============================================================ */

/* ---------- Tags / category chips ---------- */
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.tag {
  display: inline-block;
  line-height: 1;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 11px;
  margin: 0;
  background-color: var(--color-olive);
  color: var(--color-ivory);
  border-radius: 2px;
  text-decoration: none;
}
a.tag-link:hover,
a.tag-link:focus {
  background-color: var(--color-olive-deep);
  color: var(--color-ivory);
}

/* ---------- Category buttons (listing filter row) ---------- */
.blog-index__categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  flex: 0 0 100%;
  width: 100%;
  margin: 0 0 38px;
}
.blog-index__category {
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 9px 20px;
  border-radius: 99px;
  background-color: transparent;
  border: 1px solid var(--color-rule);
  color: var(--color-ink-2, #363941);
  text-decoration: none;
  -webkit-transition: background .2s, color .2s, border-color .2s;
  transition: background .2s, color .2s, border-color .2s;
}
.blog-index__category:hover,
.blog-index__category:focus {
  background-color: var(--color-sand-soft);
  border-color: rgba(92, 106, 87, .32);
  color: var(--color-charcoal);
  text-decoration: none;
}
.blog-index__category--active,
.blog-index__category--active:hover,
.blog-index__category--active:focus {
  background-color: var(--color-olive);
  border-color: var(--color-olive);
  color: var(--color-ivory);
}


/*************** Blog Index ***************/
/* Listing header (rendered by "Blog Listing - Header" module) */
.blog-header {
  text-align: center;
  position: relative;
}
.blog-header__inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.blog-header__title {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--color-charcoal);
  margin: 0 0 .5rem;
}
.blog-header__subtitle {
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-ink-2, #363941);
  max-width: 54ch;
  margin: 1rem auto 0;
}
/* Author listing header avatar */
.blog-header__author-avatar {
  border-radius: 50%;
  box-shadow: 0 14px 32px -22px rgba(23, 24, 28, .35);
  display: block;
  height: auto;
  margin: 0 auto 1.4rem;
  width: 160px;
}
.blog-header__author-social-links {
  margin-top: 1.25rem;
}
.blog-header__author-social-links a {
  background-color: var(--color-olive);
  border-radius: 50%;
  display: inline-block;
  height: 40px;
  margin: 0 5px;
  position: relative;
  width: 40px;
}
.blog-header__author-social-links a:hover,
.blog-header__author-social-links a:focus {
  background-color: var(--color-olive-deep);
}
.blog-header__author-social-links svg {
  fill: var(--color-ivory);
  height: 15px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}

/* Listing layout */
.blog-index {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

/* ---------- Blog cards (listing + related) ---------- */
.blog-card {
  flex: 0 0 100%;
  margin: 0;
  color: var(--color-ink, #1e1f24);
}
.blog-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.blog-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid var(--color-sand);
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: transform .25s, box-shadow .25s, border-color .25s;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.blog-card-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -28px rgba(23, 24, 28, .15);
  border-color: rgba(92, 106, 87, .28);
}
.blog-card-image-wrapper {
  overflow: hidden;
  border-radius: 0;
}
.blog-card-image {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 0;
  -webkit-transition: transform .4s ease;
  transition: transform .4s ease;
}
.blog-card-inner:hover .blog-card-image {
  transform: scale(1.04);
}
.blog-card-content {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.blog-card-content .tags-list {
  margin: 0;
}
.blog-card-title {
  margin: 0;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.003em;
  color: var(--color-charcoal);
}
.blog-card-content p {
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-ink-2, #363941);
  margin: 0;
  flex: 1;
}
.blog-card-meta-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--color-rule);
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 12.5px;
  color: var(--color-ink-3, #54575F);
}
.blog-card-meta {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  margin: 0;
}
/* Separator dot between meta items (icons removed) */
.blog-card-meta + .blog-card-meta::before {
  content: "\00B7";
  margin-right: 10px;
  color: rgba(92, 106, 87, .4);
}
.blog-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-olive);
}
.blog-card-readmore__arrow {
  transition: transform .2s ease;
}
.blog-card-inner:hover .blog-card-readmore__arrow {
  transform: translateX(3px);
}

/* Featured (large) card = 2-column on desktop */
.blog-card--large .blog-card-inner {
  display: grid;
  grid-template-columns: 1fr;
}
.blog-card--large .blog-card-title {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
}
.blog-card--large .blog-card-content {
  padding: 36px;
  justify-content: center;
  gap: 16px;
}
.blog-card--large .blog-card-content p {
  font-size: 16px;
  line-height: 1.65;
}

@media (min-width: 992px) {
  .blog-card {
    flex: 0 0 calc((100% - 56px) / 3);
  }
  .blog-card--large {
    flex: 0 0 100%;
  }
  .blog-card--large .blog-card-inner {
    grid-template-columns: 45% 1fr;
  }
  .blog-card--large .blog-card-image {
    height: 100%;
    padding-bottom: 0;
  }
  .blog-card--large .blog-card-image-wrapper {
    height: 100%;
  }
  .blog-card--large .blog-card-content {
    padding: 48px 52px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .blog-card {
    flex: 0 0 calc((100% - 28px) / 2);
  }
}

/* ---------- Pagination ---------- */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  margin: 2.5rem auto 0;
}
.blog-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid transparent;
  border-radius: 4px;
  line-height: 1;
  margin: 0;
  padding: 0 12px;
  text-decoration: none;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-ink-2, #363941);
  -webkit-transition: background .2s, color .2s, border-color .2s;
  transition: background .2s, color .2s, border-color .2s;
}
.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
  background-color: var(--color-sand-soft);
  color: var(--color-charcoal);
}
.blog-pagination__link--active,
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  border: 1px solid var(--color-olive);
}
.blog-pagination__link--active {
  background-color: var(--color-olive);
  color: var(--color-ivory);
}
.blog-pagination__link--active:hover,
.blog-pagination__link--active:focus {
  background-color: var(--color-olive);
  color: var(--color-ivory);
}
.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-ink-3, #54575F);
}
.blog-pagination__prev-link:hover,
.blog-pagination__next-link:hover {
  color: var(--color-olive);
  background: transparent;
}
.blog-pagination__link.blog-pagination__prev-link--disabled,
.blog-pagination__link.blog-pagination__next-link--disabled {
  color: rgba(84, 87, 95, .4);
  cursor: default;
  pointer-events: none;
}
.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {
  fill: currentColor;
  margin: 0 0.3rem;
}


/*************** Blog Post ***************/
/* Post header */
.blog-post__header {
  padding: 64px 20px 36px;
  background-color: var(--color-ivory);
}
.blog-post__header .container {
  max-width: 760px;
}
.blog-post__header h1 {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 4.6vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--color-charcoal);
  margin: 0 0 1.25rem;
}
.blog-post__header .tags-list {
  margin-bottom: 1.25rem;
}
.blog-post__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-sage);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  -webkit-transition: color .2s, border-color .2s, gap .2s;
  transition: color .2s, border-color .2s, gap .2s;
}
.blog-post__back:hover,
.blog-post__back:focus {
  color: var(--color-olive);
  border-color: var(--color-olive);
  gap: 12px;
}
.blog-post__meta-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.blog-post__meta {
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 13.5px;
  color: var(--color-ink-3, #54575F);
  display: inline-flex;
  align-items: center;
}
.blog-post__meta--author {
  color: var(--color-charcoal);
  font-weight: 500;
}
/* Separator dot between meta items (icons removed) */
.blog-post__meta + .blog-post__meta::before {
  content: "\00B7";
  margin-right: 12px;
  color: rgba(92, 106, 87, .4);
}
.blog-post__image {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 16 / 7;
  width: 100%;
  margin: 1.5rem auto 0;
  max-width: 980px;
  border-radius: 6px;
  box-shadow: 0 24px 50px -28px rgba(23, 24, 28, .20);
}

/* Post body */
.blog-post__body {
  padding: 8px 20px 24px;
}
.blog-post__body .container {
  position: relative;
}
.blog-post__body-inner {
  max-width: 680px;
  margin: 0 auto;
}
.blog-post__body-inner img {
  height: auto;
  border-radius: 6px;
}
.blog-post__body-inner > p {
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-ink, #1e1f24);
  margin-bottom: 24px;
}
.blog-post__body-inner > p:first-of-type {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.55;
  color: var(--color-charcoal);
  margin-bottom: 28px;
}
.blog-post__body-inner h2,
.blog-post__body-inner h3,
.blog-post__body-inner h4 {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-weight: 600;
  color: var(--color-charcoal);
  letter-spacing: -0.003em;
  margin: 40px 0 18px;
}
.blog-post__body-inner h2 { font-size: 30px; line-height: 1.18; }
.blog-post__body-inner h3 { font-size: 26px; line-height: 1.2; }
.blog-post__body-inner h4 { font-size: 22px; line-height: 1.25; }
.blog-post__body-inner strong { color: var(--color-charcoal); font-weight: 600; }
.blog-post__body-inner ul,
.blog-post__body-inner ol {
  margin: 0 0 28px;
  padding-left: 24px;
}
.blog-post__body-inner ul { list-style: disc; }
.blog-post__body-inner li {
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-ink, #1e1f24);
  margin-bottom: 12px;
  padding-left: 6px;
}
.blog-post__body-inner li::marker { color: var(--color-olive); }
.blog-post__body-inner blockquote {
  border-left: 2px solid var(--color-terracotta);
  padding: 8px 0 8px 24px;
  margin: 36px 0;
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.4;
  color: var(--color-terracotta);
  letter-spacing: -0.003em;
}
.blog-post__body-inner a:not(.button) {
  color: var(--color-olive);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-post__body-inner a:not(.button):hover { color: var(--color-olive-deep); }

/* Share links */
.blog-post__share {
  margin-top: 2rem;
}
.blog-post__share .social-links {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

@media (min-width: 1000px) {
  .blog-post__share {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
  }
  .blog-post__share-inner {
    position: sticky;
    top: 120px;
  }
  .blog-post__share-inner .social-links {
    flex-direction: column;
  }
}

/* ---------- Branded inline CTA (post body / closer) ---------- */
.blog-post__cta {
  background-color: var(--color-charcoal);
  color: var(--color-ivory);
  padding: 96px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-post__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(165, 178, 159, 0.10), transparent 60%);
  pointer-events: none;
}
.blog-post__cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.blog-post__cta-label {
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 22px;
  display: inline-block;
}
.blog-post__cta h2 {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1.1;
  color: var(--color-ivory);
  margin: 0 0 18px;
}
.blog-post__cta p {
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-sage-soft);
  max-width: 56ch;
  margin: 0 auto 36px;
}
.blog-post__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-terracotta);
  color: var(--color-ivory);
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 12px 28px -12px rgba(185, 114, 99, 0.55);
  -webkit-transition: background .2s, transform .15s, box-shadow .2s;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.blog-post__cta-btn:hover,
.blog-post__cta-btn:focus {
  background-color: #a4604f;
  color: var(--color-ivory);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -12px rgba(185, 114, 99, 0.65);
}

/* ---------- Related posts ---------- */
.blog-related-posts {
  background-color: var(--color-ivory);
  padding: 64px 20px 80px;
  border-top: 1px solid var(--color-rule);
}
.blog-related-posts .container {
  max-width: 1100px;
}
.blog-related-posts h2 {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--color-charcoal);
  text-align: left;
  margin-bottom: 2rem;
}
.blog-related-posts-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.blog-related-posts .blog-card {
  flex: none;
  margin: 0;
}

@media (max-width: 768px) {
  .blog-related-posts-list {
    grid-template-columns: 1fr;
  }
}

/* Reading progress bar */
.blog-progress-wrapper {
  width: 100%;
  height: 4px;
  background-color: var(--color-sand-soft);
  position: sticky;
  top: 0;
  z-index: 1;
}
.blog-progress-bar {
  width: 0;
  max-width: 100%;
  height: 4px;
  background-color: var(--color-olive);
}

/* Blog comments */
.blog-comments {
  margin: 0 auto 80px;
  padding: 0 20px;
  max-width: 720px;
}
.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover,
.blog-comments .comment-reply-to:focus {
  background-color: transparent;
  text-decoration: underline;
}
#comments-listing .comment-reply-to {
  color: var(--color-olive);
}
#comments-listing .comment-reply-to:hover,
#comments-listing .comment-reply-to:focus {
  opacity: .6;
}

/* Blog Layout 2 (single-column list) */
.blog-index-main {
  width: 100%;
  flex: 0 0 100%;
}
.blog-index-main .blog-card {
  flex: 1 1 100%;
  margin: 0 0 28px;
}
/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

/* Full Height */
.full-height {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Full Width */
.full-width {
  width: 100%;
  max-width: 100%;
}

/* Text Alignment */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

/* Margin Alignment */
.margin-align-left {
  margin-left: 0;
  margin-right: auto;
}
.margin-align-center {
  margin-left: auto;
  margin-right: auto;
}
.margin-align-right {
  margin-left: auto;
  margin-right: 0;
}

/* Flex Alignment - Horizontal */
.justify-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/* Flex Basis - Width in 12 col grid */
.flex-basis-1 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  width: 100%;
}
.flex-basis-2 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  width: 50%;
}
.flex-basis-3 {
  -ms-flex-preferred-size: 33.33%;
  flex-basis: 33.33%;
  width: 33.33%;
}
.flex-basis-4 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  width: 25%;
}
.flex-basis-5 {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  width: 20%;
}
.flex-basis-6 {
  -ms-flex-preferred-size: 16.66%;
  flex-basis: 16.66%;
  width: 16.66%;
}
.flex-basis-7 {
  -ms-flex-preferred-size: 14.28%;
  flex-basis: 14.28%;
  width: 14.28%;
}
.flex-basis-8 {
  -ms-flex-preferred-size: 12.5%;
  flex-basis: 12.5%;
  width: 12.5%;
}
.flex-basis-9 {
  -ms-flex-preferred-size: 11.11%;
  flex-basis: 11.11%;
  width: 11.11%;
}
.flex-basis-10 {
  -ms-flex-preferred-size: 10%;
  flex-basis: 10%;
  width: 10%;
}
.flex-basis-11 {
  -ms-flex-preferred-size: 9.09%;
  flex-basis: 9.09%;
  width: 9.09%;
}
.flex-basis-12 {
  -ms-flex-preferred-size: 8.33%;
  flex-basis: 8.33%;
  width: 8.33%;
}

/* Text Color */
.color-body,
.color-body svg,
.color-body:hover,
.color-body:focus {
  color: #363941;
  fill: #363941;
}
.color-primary,
.color-primary svg,
.color-primary:hover,
.color-primary:focus {
  color: #5C6A57;
  fill: #5C6A57;
}
.color-secondary,
.color-secondary svg,
.color-secondary:hover,
.color-secondary:focus {
  color: #A5B29F;
  fill: #A5B29F;
}
.color-dark,
.color-dark svg,
.color-dark:hover,
.color-dark:focus {
  color: #17181C;
  fill: #17181C;
}
.color-light,
.color-light svg,
.color-light:hover,
.color-light:focus {
  color: #F7F4EF;
  fill: #F7F4EF;
}
.color-dark-gray,
.color-dark-gray svg,
.color-dark-gray:hover,
.color-dark-gray:focus {
  color: #363941;
  fill: #363941;
}
.color-light-gray,
.color-light-gray svg,
.color-light-gray:hover,
.color-light-gray:focus {
  color: #D9CEC1;
  fill: #D9CEC1;
}
.color-link,
.color-link svg,
.color-link:hover,
.color-link:focus {
  color: #5C6A57;
  fill: #5C6A57;
}

/* Background Fixed */
.bg-fixed {
  background-attachment: fixed;
}

/* Background Color */
.bg-transparent {
  background-color: transparent;
}
.bg-primary {
  background-color: #5C6A57;
}
.bg-secondary {
  background-color: #A5B29F;
}
.bg-dark {
  background-color: #17181C
}
.bg-light {
  background-color: #F7F4EF
}
.bg-dark-gray {
  background-color: #363941;
}
.bg-light-gray {
  background-color: #D9CEC1;
}
.bg-link {
  background-color: #5C6A57;
}

/* Border Color */
.border-transparent {
  border-color: transparent;
}
.border-primary {
  border-color: #5C6A57;
}
.border-secondary {
  border-color: #A5B29F;
}
.border-dark {
  border-color: #17181C
}
.border-light {
  border-color: #F7F4EF
}
.border-dark-gray {
  border-color: #363941;
}
.border-light-gray {
  border-color: #D9CEC1;
}
.border-link {
  border-color: #5C6A57;
}

/* Pseudo Element Background Color */
.pe-transparent:before,
.pe-transparent:after,
.pe-transparent a:before,
.pe-transparent a:after,
.pe-transparent > span:before,
.pe-transparent > span:after {
  background-color: transparent;
  color: transparent;
}
.pe-primary:before,
.pe-primary:after,
.pe-primary a:before,
.pe-primary a:after,
.pe-primary > span:before,
.pe-primary > span:after {
  background-color: #5C6A57;
  color: #5C6A57;
}
.pe-secondary:before,
.pe-secondary:after,
.pe-secondary a:before,
.pe-secondary a:after,
.pe-secondary > span:before,
.pe-secondary > span:after {
  background-color: #A5B29F;
  color: #A5B29F;
}
.pe-dark:before,
.pe-dark:after,
.pe-dark a:before,
.pe-dark a:after,
.pe-dark > span:before,
.pe-dark > span:after {
  background-color: #17181C;
  color: #17181C;
}
.pe-light:before,
.pe-light:after,
.pe-light a:before,
.pe-light a:after,
.pe-light > span:before,
.pe-light > span:after {
  background-color: #F7F4EF;
  color: #F7F4EF;
}
.pe-dark-gray:before,
.pe-dark-gray:after,
.pe-dark-gray a:before,
.pe-dark-gray a:after,
.pe-dark-gray > span:before,
.pe-dark-gray > span:after {
  background-color: #363941;
  color: #363941;
}
.pe-light-gray:before,
.pe-light-gray:after,
.pe-light-gray a:before,
.pe-light-gray a:after,
.pe-light-gray > span:before,
.pe-light-gray > span:after {
  background-color: #D9CEC1;
  color: #D9CEC1;
}
.pe-link:before,
.pe-link:after,
.pe-link a:before,
.pe-link a:after,
.pe-link > span:before,
.pe-link > span:after {
  background-color: #5C6A57;
  color: #5C6A57;
}

/* Pseudo Element Border Color */
.pe-border-transparent:before,
.pe-border-transparent:after {
  border-color: transparent;
}
.pe-border-primary:before,
.pe-border-primary:after {
  border-color: #5C6A57;
}
.pe-border-secondary:before,
.pe-border-secondary:after {
  border-color: #A5B29F;
}
.pe-border-dark:before,
.pe-border-dark:after {
  border-color: #17181C
}
.pe-border-light:before,
.pe-border-light:after {
  border-color: #F7F4EF
}
.pe-border-dark-gray:before,
.pe-border-dark-gray:after {
  border-color: #363941;
}
.pe-border-light-gray:before,
.pe-border-light-gray:after {
  border-color: #D9CEC1;
}
.pe-border-link:before,
.pe-border-link:after {
  border-color: #5C6A57;
}

/* Rounding */
.rounded,
.rounded:before,
.rounded:after {
  border-radius: 4px;
}

/* Margins */
.margin-top-05 {
  margin-top: .5rem;
}
.margin-top-1 {
  margin-top: 1rem;
}
.margin-top-2 {
  margin-top: 2rem;
}
.margin-top-3 {
  margin-top: 3rem;
}
.margin-top-4 {
  margin-top: 4rem;
}
.margin-top-5 {
  margin-top: 5rem;
}
.margin-top-6 {
  margin-top: 6rem;
}
.margin-top-8 {
  margin-top: 8rem;
}
.margin-top-10 {
  margin-top: 10rem;
}

.margin-bottom-05 {
  margin-bottom: .5rem;
}
.margin-bottom-1 {
  margin-bottom: 1rem;
}
.margin-bottom-2 {
  margin-bottom: 2rem;
}
.margin-bottom-3 {
  margin-bottom: 3rem;
}
.margin-bottom-4 {
  margin-bottom: 4rem;
}
.margin-bottom-5 {
  margin-bottom: 5rem;
}
.margin-bottom-6 {
  margin-bottom: 6rem;
}
.margin-bottom-8 {
  margin-bottom: 8rem;
}
.margin-bottom-10 {
  margin-bottom: 10rem;
}

/* Paddings */
.padding-05 {
  padding: .5rem;
}
.padding-1 {
  padding: 1rem;
}
.padding-2 {
  padding: 2rem;
}
.padding-3 {
  padding: 3rem;
}
.padding-4 {
  padding: 4rem;
}
.padding-5 {
  padding: 5rem;
}
.padding-6 {
  padding: 6rem;
}
.padding-8 {
  padding: 8rem;
}
.padding-10 {
  padding: 10rem;
}

.padding-top-05 {
  padding-top: .5rem;
}
.padding-top-1 {
  padding-top: 1rem;
}
.padding-top-2 {
  padding-top: 2rem;
}
.padding-top-3 {
  padding-top: 3rem;
}
.padding-top-4 {
  padding-top: 4rem;
}
.padding-top-5 {
  padding-top: 5rem;
}
.padding-top-6 {
  padding-top: 6rem;
}
.padding-top-8 {
  padding-top: 8rem;
}
.padding-top-10 {
  padding-top: 10rem;
}

.padding-bottom-05 {
  padding-bottom: .5rem;
}
.padding-bottom-1 {
  padding-bottom: 1rem;
}
.padding-bottom-2 {
  padding-bottom: 2rem;
}
.padding-bottom-3 {
  padding-bottom: 3rem;
}
.padding-bottom-4 {
  padding-bottom: 4rem;
}
.padding-bottom-5 {
  padding-bottom: 5rem;
}
.padding-bottom-6 {
  padding-bottom: 6rem;
}
.padding-bottom-8 {
  padding-bottom: 8rem;
}
.padding-bottom-10 {
  padding-bottom: 10rem;
}

/* Responsiveness - MD */
@media (max-width: 991px) {
  /* Flex Basis - Width in 12 col grid */
  .md-flex-basis-1 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .md-flex-basis-2 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
  .md-flex-basis-3 {
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
  }
  .md-flex-basis-4 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
  }
  .md-flex-basis-5 {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
  }
  .md-flex-basis-6 {
    -ms-flex-preferred-size: 16.66%;
    flex-basis: 16.66%;
  }
  .md-flex-basis-7 {
    -ms-flex-preferred-size: 14.28%;
    flex-basis: 14.28%;
  }
  .md-flex-basis-8 {
    -ms-flex-preferred-size: 12.5%;
    flex-basis: 12.5%;
  }
  .md-flex-basis-9 {
    -ms-flex-preferred-size: 11.11%;
    flex-basis: 11.11%;
  }
  .md-flex-basis-10 {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
  }
  .md-flex-basis-11 {
    -ms-flex-preferred-size: 9.09%;
    flex-basis: 9.09%;
  }
  .md-flex-basis-12 {
    -ms-flex-preferred-size: 8.33%;
    flex-basis: 8.33%;
  }
}

/* Responsiveness - SM */
@media (max-width: 767px) {
  /* Text Alignment */
  .sm-text-left {
    text-align: left;
  }
  .sm-text-center {
    text-align: center;
  }
  .sm-text-right {
    text-align: right;
  }
}

/* Sticky Sidebar */
.inner-wrapper-sticky {
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0);
}

/* ============================================================
   Healing Hands brand surface colors
   Extends the color-choice system with sand, sand-soft, sage,
   sage-soft and terracotta so they appear via .bg-/.color-/.border-/.pe-
   classes wherever a module renders bg- etc.
   ============================================================ */

/* Text Color */
.color-sand,
.color-sand svg,
.color-sand:hover,
.color-sand:focus {
  color: #D9CEC1;
  fill: #D9CEC1;
}
.color-sand-soft,
.color-sand-soft svg {
  color: #E8DFD3;
  fill: #E8DFD3;
}
.color-sage,
.color-sage svg,
.color-sage:hover,
.color-sage:focus {
  color: #A5B29F;
  fill: #A5B29F;
}
.color-sage-soft,
.color-sage-soft svg {
  color: #C4CDC0;
  fill: #C4CDC0;
}
.color-terracotta,
.color-terracotta svg,
.color-terracotta:hover,
.color-terracotta:focus {
  color: #B97263;
  fill: #B97263;
}

/* Background Color */
.bg-sand {
  background-color: #D9CEC1;
}
.bg-sand-soft {
  background-color: #E8DFD3;
}
.bg-sage {
  background-color: #A5B29F;
}
.bg-sage-soft {
  background-color: #C4CDC0;
}
.bg-terracotta {
  background-color: #B97263;
}
.bg-white {
  background-color: #ffffff;
}
.hh-terra-italic {
  color: var(--color-terracotta);
  font-style: italic;
  font-weight: 500;
}

/* Border Color */
.border-sand {
  border-color: #D9CEC1;
}
.border-sand-soft {
  border-color: #E8DFD3;
}
.border-sage {
  border-color: #A5B29F;
}
.border-sage-soft {
  border-color: #C4CDC0;
}
.border-terracotta {
  border-color: #B97263;
}

/* Pseudo Element Background / Text Color */
.pe-sand:before, .pe-sand:after, .pe-sand a:before, .pe-sand a:after, .pe-sand > span:before, .pe-sand > span:after {
  background-color: #D9CEC1;
  color: #D9CEC1;
}
.pe-sand-soft:before, .pe-sand-soft:after, .pe-sand-soft a:before, .pe-sand-soft a:after, .pe-sand-soft > span:before, .pe-sand-soft > span:after {
  background-color: #E8DFD3;
  color: #E8DFD3;
}
.pe-sage:before, .pe-sage:after, .pe-sage a:before, .pe-sage a:after, .pe-sage > span:before, .pe-sage > span:after {
  background-color: #A5B29F;
  color: #A5B29F;
}
.pe-sage-soft:before, .pe-sage-soft:after, .pe-sage-soft a:before, .pe-sage-soft a:after, .pe-sage-soft > span:before, .pe-sage-soft > span:after {
  background-color: #C4CDC0;
  color: #C4CDC0;
}
.pe-terracotta:before, .pe-terracotta:after, .pe-terracotta a:before, .pe-terracotta a:after, .pe-terracotta > span:before, .pe-terracotta > span:after {
  background-color: #B97263;
  color: #B97263;
}

/* Stroke-only (transparent fill) icons.
   The .color-* helpers set svg { fill } on purpose; this opt-in class
   keeps that feature but removes the fill for stroke-style custom SVGs.
   Paths with an explicit fill="currentColor" (e.g. small dots) are kept. */
.hh-icon-fill-none svg {
  fill: none !important;
}

/* List rendered as a light panel (pass custom_class="hh-list-panel" to the List module) */
.list.hh-list-panel {
  background: #ffffff;
  border: 1px solid var(--color-rule);
  border-radius: 10px;
  padding: 22px 28px;
}
.list.hh-list-panel .list-inner { margin: 0; }
/* Animations off */
.hs-inline-edit [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

/* Website Header overlap fix*/
.hs-inline-edit header {
  position: unset !important;
  margin-top: 0 !important;
}
.hs-inline-edit .body-wrapper.header-type-default:before,
.hs-inline-edit .body-wrapper.header-type-transparent .hero-banner:before {
  content: none;
}