HealthShare
@import url("https://fonts.googleapis.com/css2?family=Geist:[email protected]&display=swap"); @import url("https://unpkg.com/normalize.css") layer(normalize); @layer normalize, base, demo, stick, effect, srollbar; @layer scrollbar { @property --scroller { initial-value: 0; syntax: ""; inherits: true; } @property --chroma { initial-value: 0; syntax: ""; inherits: true; } [data-sync-scrollbar="false"] { scrollbar-color: light-dark(black, white) #0000; } [data-sync-scrollbar="true"] { scrollbar-color: oklch(var(--lightness) var(--chroma) var(--scroller)) #0000; } @supports (animation-timeline: scroll()) and (animation-range: 0% 100%) { [data-sync-scrollbar="true"] { timeline-scope: --list; scrollbar-color: oklch(var(--lightness) var(--chroma, 0) var(--scroller)) #0000; animation-name: change, chroma-on, chroma-off; animation-fill-mode: both; animation-timing-function: linear; /* animation-timeline: scroll(root); */ animation-range: entry 50% exit 50%, entry 40% entry 50%, exit 30% exit 40%; animation-timeline: --list; ul { view-timeline: --list; } } } @keyframes change { to { --scroller: var(--end); } } @keyframes chroma-on { to { --chroma: 0.3; } } @keyframes chroma-off { to { --chroma: 0; } } } @layer effect { :root { --start: 0; --end: 360; --lightness: 65%; --base-chroma: 0.3; } [data-theme="dark"] { --lightness: 75%; } [data-theme="light"] { --lightness: 65%; } @media (prefers-color-scheme: dark) { --lightness: 75%; } ul { --step: calc((var(--end) - var(--start)) / (var(--count) - 1)); } li:not(:last-of-type) { color: oklch( var(--lightness) var(--base-chroma) calc(var(--start) + (var(--step) * var(--i))) ); } @supports (animation-timeline: scroll()) and (animation-range: 0% 100%) { li { opacity: 0.2; animation-name: brighten; &:first-of-type { opacity: 1; animation-name: dim; } &:last-of-type { opacity: 0.2; animation-name: bright; } animation-fill-mode: both; animation-timing-function: linear; animation-range: cover calc(50% - 1lh) calc(50% + 1lh); animation-timeline: view(); } @keyframes dim { 0%, 50% { opacity: 1; } 100% { opacity: 0.2; } } @keyframes bright { 0% { opacity: 0.2; } 50%, 100% { opacity: 1; } } @keyframes brighten { 0%, 100% { opacity: 0.2; } 50% { opacity: 1; filter: brightness(1.2); } } } } @layer stick { section:first-of-type { --font-level: 6; --font-size-min: 20; display: flex; line-height: 1.25; width: 100%; padding-left: 2rem; @media (min-width: 768px) { padding-left: 5rem; } } section:last-of-type { min-height: 100svh; display: flex; place-items: center; width: 100%; justify-content: center; h2 { --font-level: 6; --font-size-min: 20; } } main { width: 100%; } section:first-of-type h2 { position: sticky; top: calc(50% - 0.5lh); font-size: inherit; margin: 0; display: inline-block; height: fit-content; font-weight: 600; } ul { font-weight: 600; padding-inline: 0; margin: 0; list-style-type: none; } html { scroll-snap-type: y proximity; } li { scroll-snap-align: center; } h2, li:last-of-type { background: linear-gradient( canvasText 50%, color-mix(in oklch, canvas, canvasText 25%) ); background-clip: text; color: #0000; } } @layer demo { header { min-height: 100svh; display: flex; place-items: center; width: 100%; padding-inline: 2rem; @media (min-width: 768px) { padding-inine: 5rem; } } footer { padding-block: 2rem; opacity: 0.5; } h1 { --font-size-min: 24; --font-level: 8; text-wrap: pretty; line-height: 0.8; margin: 0; background: linear-gradient( canvasText 60%, color-mix(in oklch, canvas, canvasText) ); background-clip: text; color: #0000; } } @layer base { :root { --font-size-min: 14; --font-size-max: 20; --font-ratio-min: 1.1; --font-ratio-max: 1.33; --font-width-min: 375; --font-width-max: 1500; } html { color-scheme: light dark; } [data-theme="light"] { color-scheme: light only; } [data-theme="dark"] { color-scheme: dark only; } :where(.fluid) { --fluid-min: calc( var(--font-size-min) * pow(var(--font-ratio-min), var(--font-level, 0)) ); --fluid-max: calc( var(--font-size-max) * pow(var(--font-ratio-max), var(--font-level, 0)) ); --fluid-preferred: calc( (var(--fluid-max) - var(--fluid-min)) / (var(--font-width-max) - var(--font-width-min)) ); --fluid-type: clamp( (var(--fluid-min) / 16) * 1rem, ((var(--fluid-min) / 16) * 1rem) - (((var(--fluid-preferred) * var(--font-width-min)) / 16) * 1rem) + (var(--fluid-preferred) * var(--variable-unit, 100vi)), (var(--fluid-max) / 16) * 1rem ); font-size: var(--fluid-type); } *, *:after, *:before { box-sizing: border-box; } body { display: grid; place-items: center; background: light-dark(white, black); min-height: 100svh; font-family: "Geist", "SF Pro Text", "SF Pro Icons", "AOS Icons", "Helvetica Neue", Helvetica, Arial, sans-serif, system-ui; } body::before { --size: 45px; --line: color-mix(in hsl, canvasText, transparent 70%); content: ""; height: 100svh; width: 100vw; position: fixed; background: linear-gradient( 90deg, var(--line) 1px, transparent 1px var(--size) ) 50% 50% / var(--size) var(--size), linear-gradient(var(--line) 1px, transparent 1px var(--size)) 50% 50% / var(--size) var(--size); mask: linear-gradient(-20deg, transparent 50%, white); top: 0; transform-style: flat; pointer-events: none; z-index: -1; } .bear-link { color: canvasText; position: fixed; top: 1rem; left: 1rem; width: 48px; aspect-ratio: 1; display: grid; place-items: center; opacity: 0.8; } :where(.x-link, .bear-link):is(:hover, :focus-visible) { opacity: 1; } .bear-link svg { width: 75%; } /* Utilities */ .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; } } div.tp-dfwv { position: fixed; }

Why The Storehouse Way

Christian Healthshares: We like your style! We understand at Storehouse Wellness that healthcare can be expensive and daunting, leaving Christians feeling they've lost freedom in choice because of the necessity of benefits. You have brought Biblical approach, community financial sharing, and Christian values to healthcare bringing options that for many is superior to alternatives.

We provide resources in nourishment, physical fitness, mental wellness, & financial health from leaders in their niche, as well as navigation/accountability support and 24/7 chaplaincy at one accessible price.

We recognize the facts regarding healthcare spending:

Image
$4.1 TRILLION

is spent annually in the US on healthcare.

Image
90%

of which is dedicated to managing & treating chronic disease, including mental health conditions.

Image
70-90%

is preventable or reversible with a holistic health approach.

But where there is Jesus,

there is hope!

And with the Storehouse Wellness Solution Model, we build all 4 pillars of the wellness approach: nourishment, physical fitness, mental wellness, and financial health on a foundation of Christian faith and Biblical principles meant to transform mindset not simply short-term behaviors.

We also ensure that everything needed is easily accessible and offer wellness navigation. Our navigators serve as prayer partners, accountability partners, and resource support coordinators.

Recent findings show that sharing goals & progress consistently with a wellness navigator provides valuable support & increases your chances of success by 95%!

Also it's been cited that "When spiritual life is shared, you’re at an 82% decreased relative risk for suicide, 80% decreased risk of addiction, 75% decreased risk of depression... If this was a pill, who wouldn’t take that?”

-Lisa Miller, PhD, Professor of Psychology & Education, Columbia University

200+Trainings

2k+Happy Members

50+Experts

Storehouse Wellness bring a Christ-Centered approach to comprehensive wellness and incorporates individual and group support options at a cost-effective and competitive approach. We believe in what you do and are eager to collaborate with a solution that works for your members and with data that shows value with time.

The Deep Dive

At this point, if you are curious to learn more about the existing data and reports that support the proposed advantages of this model, read our white paper here:

Contact Us Today

Like what you see? Let's work together! Get in touch to connect to our Payer Account Director.

Have Questions? Get in Touch

Upcoming Events

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Healthy Choices While Traveling: Nourishing Your Body On the Go

Whether you’re road-tripping with friends, flying for work, or heading off on a long-awaited getaway, one thing is true: travel can throw our rhythms off. But just because you’re out of routine doesn’... ...more

Storehouse Wellness

March 26, 20253 min read

Healthy Choices While Traveling: Nourishing Your Body On the Go

Juicing: Nourishment for the Body, Fuel for the Soul

Need a natural energy boost, glowing skin, or a little digestive reset? Juicing delivers vitamins, enzymes, and antioxidants straight to your cells—no fluff, just fuel. ✨ Start with one juice a day a... ...more

Storehouse Wellness

March 23, 20252 min read

Juicing: Nourishment for the Body, Fuel for the Soul

Our Latest Articles

Healthy Choices While Traveling: Nourishing Your Body On the Go

Healthy Choices While Traveling: Nourishing Your Body On the Go

Whether you’re road-tripping with friends, flying for work, or heading off on a long-awaited getaway, one thing is true: travel can throw our rhythms off. But just because you’re out of routine doesn’... ...more

Storehouse Wellness

March 26, 20253 min read

Juicing: Nourishment for the Body, Fuel for the Soul

Juicing: Nourishment for the Body, Fuel for the Soul

Need a natural energy boost, glowing skin, or a little digestive reset? Juicing delivers vitamins, enzymes, and antioxidants straight to your cells—no fluff, just fuel. ✨ Start with one juice a day a... ...more

Storehouse Wellness

March 23, 20252 min read

The Healing Power of Salt Caves: A Natural Path to Wellness

The Healing Power of Salt Caves: A Natural Path to Wellness

In the world of holistic wellness, salt caves have been gaining popularity as a natural therapy for respiratory health, skin conditions, and overall well-being. But what exactly are the benefits of sp... ...more

Storehouse Wellness

March 20, 20254 min read

Building Christ-Centered

Cultures of Health

Newsletter

Subscribe To Our Newsletter

Copyright 2025 Storehouse Wellness. All Right are Reserved.

Designed by Konversly