/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/css-loader@6.11.0_webpack@5.97.1/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/.pnpm/postcss-loader@6.2.1_postcss@8.5.1_webpack@5.97.1/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/.pnpm/sass-loader@12.6.0_sass@1.49.0_webpack@5.97.1/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!../Local Sites/mfhs/app/public/wp-content/themes/posturepress2-child/src/scss/app.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap);
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/css-loader@6.11.0_webpack@5.97.1/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/.pnpm/postcss-loader@6.2.1_postcss@8.5.1_webpack@5.97.1/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/.pnpm/sass-loader@12.6.0_sass@1.49.0_webpack@5.97.1/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!../Local Sites/mfhs/app/public/wp-content/themes/posturepress2-child/src/scss/app.scss (1) ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap);
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/css-loader@6.11.0_webpack@5.97.1/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/.pnpm/postcss-loader@6.2.1_postcss@8.5.1_webpack@5.97.1/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/.pnpm/sass-loader@12.6.0_sass@1.49.0_webpack@5.97.1/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!../Local Sites/mfhs/app/public/wp-content/themes/posturepress2-child/src/scss/app.scss (2) ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Parent and Core Style Imports
 *
 * Imports all core mixins and all template/component styles
 *
 * DO NO EDIT OR REMOVE THESE DIRECTLY.
 *
 **/
/**
 * Parent and Core Style Imports
 *
 * Imports all core mixins and all template/component styles
 *
 * DO NOT EDIT OR REMOVE THESE DIRECTLY.
 *
 * Except for grids they can be commented out if they are not needed
 **/
/**
 * Settings for sizing variables
 **/
/**
 * Can be used in various places like fluid typography
 * Must be called from styles ex: padding: var(--fluid-padding)
 * Very useful when styles looks too large on mobile
 **/
/**
 * Simplified Breakpoint mixin
 * Is Mobile-First but includes the modifier key to go up/down
 *
 * //TODO `Only` modifier seems logically complex maybe we don't need it?
 **/
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray: #414042;
  --color-light-gray: #707070;
  --color-lighter-gray: #eeeeee;
  --color-off-white: #EBEBEB;
  --color-purple: #B14FC5;
  --color-primary: #2E368F;
  --color-secondary: #B04EC4;
  --color-tertiary: #8DC63F;
  --color-quaternary: #414042;
}

/**
 * Fluid properties, makes life so much easier responsiveness wise
 * BIG WARNING THIS ONLY OPERATES IN Pixel units
 **/
/**
 * Fluid Properties
 * Allows properties to be linearly fluid between two viewport values.
 * This is useful for a variety of typography and responsive sizing needs
 *
 * @group Settings Mixins
 * @param {property} $property - A css property
 * @param {pixel value} $min-size - The smallest size this value will shrink to on small viewports
 * @param {pixel value} $max-size - The largest size this value will stretch to on large viewports
 * @param {pixel value} $min-vw - OPTIONAL: can set the min viewport for custom styling needs
 * @param {pixel value} $max-vw - OPTIONAL: can set the max viewport for custom styling needs
 **/
/**
 * Styling needed for accessibility
 **/
/**
 * General variables that can be used throughout the theme :)
 **/
/**
 * --- Font-face setters ---
 * Supports Local and external font foundries
 * Prefer using .woff files when using local fonts
 **/
/** --- General typography settings --- **/
/**
 * General typography utilities
 **/
/*
@mixin general-typography-setter() {
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-weight: $header-font-weight;
		line-height: $header-line-height;
		margin-bottom: $header-margin-bottom;
		color: $header-color;
	}

	html {
		font-weight: $body-font-weight;
	}

	p {
		margin-bottom: $paragraph-margin-bottom;
	}
}*/
/**
 * --- Fluid Typography ---
 *
 * Creates fonts that will scale with the width of the screen using the function below
 * Works by using viewport width and some fancy linear algorithm that works with css calc!
 * Even IE11 works with this 🙌
 *
 * TODO Make this easier to edit
 **/
/** END --- Fluid Typography --- END **/
/** Blueprint css grid **/
/** Gridlex Flex grid **/
/**
 * Simple rem calculator takes pixels and turns them into rem units
 **/
/**
 * General style normalizer
 * If sanitizer isn't working well for you there are various other options:
 * normalize.css, reset.css, css-mini-reset, html5 reset stylesheet etc...
 **/
/**
 * End Parent imports
 *
 **/
/**
 * Supers!
 * An example of a separate functionality module
 * To note this module integrates with the theme settings
 * This should be a normal aspect of modules for easy integration with existing projects
 **/
/**
 * Generic footer layout engine 📏
 **/
.s-footer {
  display: flex;
  flex-flow: column nowrap;
  background-color: #414042;
}
.s-footer .s-footer-inner-wrap {
  display: flex;
  flex-flow: column nowrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 1rem 1rem 1rem;
}
.s-footer .s-footer-grid {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: center;
  width: 230px;
  margin-left: auto;
  margin-right: auto;
}
.s-footer .s-footer-cell {
  padding: 0.6rem 0.6rem;
  display: block;
  max-width: 100%;
  width: 230px;
}
.s-footer .s-footer-logo-container .s-footer-logo {
  width: 100%;
  max-width: 100%;
  max-height: 60px;
  height: 50px;
}
.s-footer .s-footer-menu {
  width: 230px;
}
.s-footer .s-footer-menu ul {
  display: flex;
  flex-flow: column nowrap;
  list-style: none;
  width: 100%;
}
.s-footer .s-footer-menu ul li {
  width: auto;
  font-weight: bold;
  text-align: center;
}
.s-footer .s-footer-menu ul li a {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.s-footer .s-footer-copyright {
  text-align: center;
}

.s-footer-copyright-row {
  background-color: #707070;
  color: white;
}
.s-footer-copyright-row a {
  color: white;
  transition: all 0.3s ease;
}
.s-footer-copyright-row a:hover, .s-footer-copyright-row a:active, .s-footer-copyright-row a:focus {
  color: #414042;
}
.s-footer-copyright-row i {
  padding: 0.3rem;
}
.s-footer-copyright-row .inner-wrap {
  display: flex;
  flex-flow: column nowrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 20px 1rem 20px;
  justify-content: center;
  align-items: center;
}
.s-footer-copyright-row .right-cell {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.s-footer-copyright-row .right-cell .foundation-link {
  display: flex;
  margin: 1rem;
  padding-top: 1rem;
  margin-top: 0;
  text-decoration: underline;
  font-weight: 500;
}
.s-footer-copyright-row .right-cell .footer-socials {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.s-footer-menu a {
  color: #414042;
  font-weight: 500;
}
.s-footer-menu a:hover, .s-footer-menu a:active, .s-footer-menu a:focus {
  filter: brightness(110%);
}
.s-footer-menu .is-active a {
  background: transparent;
  font-weight: 700;
  color: #B04EC4;
}
.s-footer-grid .menu-item {
  flex-shrink: 0;
}

/**
 * Super section :D
 * A section that contains content
 * The section/inner-wrap is set to flex column for easy placement of children elements 🙌
 **/
.s-section {
  display: flex;
  flex-flow: column nowrap;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 100%;
}
.s-inner-wrap {
  display: flex;
  flex-flow: column nowrap;
  padding: 40px 20px;
  width: 1200px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  justify-self: stretch;
  align-self: stretch;
  overflow: hidden;
  z-index: 1;
  flex-grow: 1;
}
.s-center > .super-inner-wrap,
.s-center .s-inner-wrap {
  align-items: center;
  justify-content: center;
}
.s-flex-end > .super-inner-wrap,
.s-flex-end .s-inner-wrap {
  justify-content: flex-end;
}
.s-constrain .super-inner-wrap,
.s-constrain .s-inner-wrap {
  width: 1200px;
}

.wp-block-image img {
  height: auto !important;
}

.magenta-box {
  border: 3px solid #B04EC4;
}
.magenta-box h1, .magenta-box h2, .magenta-box h3, .magenta-box h4, .magenta-box h5, .magenta-box h6 {
  color: #B04EC4;
}

.blue-box {
  border: 3px solid #2E368F;
}
.blue-box h1, .blue-box h2, .blue-box h3, .blue-box h4, .blue-box h5, .blue-box h6 {
  color: #2E368F;
}

.green-box {
  border: 3px solid #8DC63F;
}
.green-box h1, .green-box h2, .green-box h3, .green-box h4, .green-box h5, .green-box h6 {
  color: #8DC63F;
}

.spaced-list li {
  padding-bottom: 0.4rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", -apple-system, "Ubuntu", sans-serif;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: #2E368F;
}

html {
  font-weight: 400;
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
  line-height: 1.4;
  color: #414042;
}

p {
  margin-bottom: 1rem;
}

/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct margin-top nobody ever wants margin-top
 */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

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

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Default that images won't stretch outside of the parent container
 */
img {
  max-width: 100%;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
	  in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  /* 1 */
  touch-action: manipulation;
  /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

:root {
  --fluid-h1: 32px;
}
:root {
  --fluid-h2: 30px;
}
:root {
  --fluid-h3: 28px;
}
:root {
  --fluid-h4: 26px;
}
:root {
  --fluid-h5: 18px;
}
:root {
  --fluid-h6: 16px;
}
:root {
  --fluid-body: 16px;
}
:root {
  --fluid-body-sm: 14px;
}

h1,
.fluid-h1 {
  font-size: var(--fluid-h1);
}

h2,
.fluid-h2 {
  font-size: var(--fluid-h2);
}

h3,
.fluid-h3 {
  font-size: var(--fluid-h3);
}

h4,
.fluid-h4 {
  font-size: var(--fluid-h4);
}

h5,
.fluid-h5 {
  font-size: var(--fluid-h5);
}

h6,
.fluid-h6 {
  font-size: var(--fluid-h6);
}

html,
.fluid-body,
.wp-block-button .wp-block-button__link {
  font-size: var(--fluid-body);
}

.fluid-body-sm, #footer .footer-copyright-row .copyright-text,
#footer .footer-copyright-row a {
  font-size: var(--fluid-body-sm);
}

/**
 * Spacing Variables
 * Consistent spacing values for use throughout the theme
 */
:root {
  --spacing-xs: 10px;
  --spacing-s: 20px;
  --spacing-m: 30px;
  --spacing-l: 40px;
  --spacing-xl: 60px;
  --spacing-xxl: 80px;
}

/**
 * Buttons
 **/
.fancy-btn, .fluentform form .ff-btn, .wp-block-button .wp-block-button__link {
  position: relative;
  display: inline-flex;
  align-self: stretch;
  text-align: center;
  justify-content: center;
  background: unset;
  z-index: 1;
  border-radius: 0;
  margin: 0.5rem 0;
  padding: 0.8em 1.8em;
  font-weight: bold;
  text-decoration: none;
  color: white;
  transition: color 0.3s ease, background 0.3s ease;
}
.fancy-btn:hover, .fluentform form .ff-btn:hover, .wp-block-button .wp-block-button__link:hover, .fancy-btn:focus, .fluentform form .ff-btn:focus, .wp-block-button .wp-block-button__link:focus, .fancy-btn:active, .fluentform form .ff-btn:active, .wp-block-button .wp-block-button__link:active {
  color: #8DC63F;
}
.fancy-btn:hover:before, .fluentform form .ff-btn:hover:before, .wp-block-button .wp-block-button__link:hover:before, .fancy-btn:focus:before, .fluentform form .ff-btn:focus:before, .wp-block-button .wp-block-button__link:focus:before, .fancy-btn:active:before, .fluentform form .ff-btn:active:before, .wp-block-button .wp-block-button__link:active:before {
  height: 4px;
}
.fancy-btn:active, .fluentform form .ff-btn:active, .wp-block-button .wp-block-button__link:active {
  color: #78ab33;
  background: rgba(141, 198, 63, 0.1);
}
.fancy-btn:before, .fluentform form .ff-btn:before, .wp-block-button .wp-block-button__link:before, .fancy-btn:after, .fluentform form .ff-btn:after, .wp-block-button .wp-block-button__link:after {
  content: "";
  position: absolute;
  background-color: #8DC63F;
  z-index: -1;
  transition: height 0.3s ease, background-color 0.3s ease;
}
.fancy-btn:before, .fluentform form .ff-btn:before, .wp-block-button .wp-block-button__link:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fancy-btn:after, .fluentform form .ff-btn:after, .wp-block-button .wp-block-button__link:after {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.btn-blue:before, .btn-blue:after {
  background-color: #2E368F;
}
.btn-blue:hover, .btn-blue:focus, .btn-blue:active {
  color: #2E368F;
}
.btn-blue:active {
  color: #272e7a;
  background: rgba(46, 54, 143, 0.2);
}

.heart-btn .heart-icon {
  height: 1em;
  width: 1em;
  margin-right: 0.4em;
}

.purple-btn {
  position: relative !important;
  display: inline-flex;
  align-self: stretch;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: unset;
  z-index: 1;
  border-radius: 0;
  text-decoration: none;
  color: white;
  transition: color 0.3s ease, background 0.3s ease;
}
.purple-btn:hover, .purple-btn:focus, .purple-btn:active {
  color: #B14FC5;
}
.purple-btn:hover:before, .purple-btn:focus:before, .purple-btn:active:before {
  height: 4px;
}
.purple-btn:active {
  color: #B14FC5;
  background: rgba(177, 79, 197, 0.1);
}
.purple-btn:before, .purple-btn:after {
  content: "";
  position: absolute;
  background-color: #B14FC5;
  z-index: -1;
  transition: height 0.3s ease, background-color 0.3s ease;
}
.purple-btn:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.purple-btn:after {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.wp-block-button .wp-block-button__link {
  border-radius: 0;
}

.fluentform form .ff-btn {
  border-radius: 0;
  background-color: unset !important;
  border: unset !important;
}

/**
 * Link styling
 * Links can get pretty fancy so the setting partials do not get involved
 **/
a {
  color: #2E368F;
  transition: color 0.3s ease;
  font-weight: 600;
  text-decoration: none;
}
a:hover, a:focus {
  color: #ca87d7;
}
a:active {
  color: #B04EC4;
}
a[data-s-active-anchor] {
  color: #B04EC4;
}

[data-better-menu] [data-s-active-anchor] {
  color: #B04EC4;
}

/**
 * Functional better menu styles
 * Better off not touching this stuff
 **/
[data-better-menu] {
  --bm-a-pad-top: 0.4rem;
  --bm-a-pad-left: 0.5rem;
  --bm-a-pad-right: 0.5rem;
  --bm-a-pad-bottom: 0.4rem;
  --bm-a-color: #2E368F;
  --bm-a-color-hover: #B04EC4;
  --bm-a-color-active: #9b3aaf;
  --bm-a-transition: all 0.3s ease;
  --bm-submenu-width: 225px;
  --bm-submenu-text-alignment: left;
  --bm-submenu-item-alignment: flex-start;
  --bm-vert-submenu-pad: 0.5rem;
  --bm-dropdown-arrow-height: 15px;
  --bm-dropdown-arrow-width: 18px;
  --bm-dropdown-arrow-padding: 8px;
  --bm-dropdown-arrow-color: #B04EC4;
}

[data-better-modal] {
  --bm-transition-duration: 0.4s;
  --bm-transition-function: ease;
  --bm-overlay-color: rgba(0, 0, 0, 0.4);
}

[data-bm-button] {
  --bm-button-padding-tb: 10px;
  --bm-button-padding-lr: 10px;
  --bm-button-background-color: transparent;
  --bm-button-border: unset;
  --bm-button-border-radius: 0;
  --bm-toggle-line-width: 35px;
  --bm-toggle-line-height: 5px;
  --bm-toggle-line-gap: 5px;
  --bm-toggle-line-border-radius: 10px;
  --bm-toggle-line-color: #2E368F;
}

[data-better-menu] {
  display: flex;
}
[data-better-menu] ul,
[data-better-menu] li,
[data-better-menu] a,
[data-better-menu] div {
  margin: unset;
  padding: unset;
}
[data-better-menu] ul li {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
[data-better-menu] ul a {
  width: auto;
  align-self: var(--bm-submenu-item-alignment);
}
[data-better-menu] ul [data-bm-dropdown-anchor] {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
[data-better-menu] ul [data-bm-dropdown-anchor] [data-bm-dropdown-arrow] {
  pointer-events: all;
  padding: var(--bm-dropdown-arrow-padding);
  transition: var(--bm-a-transition);
  transform: scaleY(1);
}
[data-better-menu] ul [data-bm-dropdown-anchor] [data-bm-dropdown-arrow] svg {
  height: var(--bm-dropdown-arrow-height);
  width: var(--bm-dropdown-arrow-width);
  color: var(--bm-dropdown-arrow-color);
  pointer-events: none;
}
[data-better-menu] ul [data-bm-dropdown-anchor][data-bm-active] [data-bm-dropdown-arrow] {
  transform: scaleY(-1);
}

[data-better-menu=vertical] ul {
  flex-flow: column nowrap;
}
[data-better-menu=vertical] ul li ul {
  height: 0;
}
[data-better-menu=vertical] ul li ul[data-bm-active] {
  visibility: visible;
}

[data-better-menu=horizontal] ul {
  flex-flow: row nowrap;
  align-items: center;
}
[data-better-menu=horizontal] ul li ul {
  position: absolute;
  top: 100%;
  right: 0;
  align-items: var(--bm-submenu-item-alignment);
}
[data-better-menu=horizontal] ul li ul[data-bm-active] {
  visibility: visible;
}

/**
 * Better Menu Theme file!
 */
/**
 * Better Menu Theme file!
 */
[data-better-menu] a {
  padding: var(--bm-a-pad-top) var(--bm-a-pad-right) var(--bm-a-pad-bottom) var(--bm-a-pad-left);
  color: var(--bm-a-color);
  transition: var(--bm-a-transition);
  text-decoration: none;
}
[data-better-menu] a:hover, [data-better-menu] a:focus {
  color: var(--bm-a-color-hover);
}
[data-better-menu] a:active, [data-better-menu] a[data-bm-active-anchor] {
  color: var(--bm-a-color-active);
}

[data-better-menu=vertical] ul li ul {
  position: relative;
  height: -moz-max-content;
  height: max-content;
  max-height: 0;
  padding: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, visibility 0.5s ease, padding 0.5s ease, transform 0.5s ease;
}
[data-better-menu=vertical] ul li ul[data-bm-active] {
  padding: var(--bm-vert-submenu-pad);
  max-height: 300px;
  visibility: visible;
}

[data-bm-button] {
  position: relative;
  cursor: pointer;
  background: unset;
  border: unset;
}

[data-better-modal] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  visibility: hidden;
  z-index: 100;
}
[data-better-modal][data-bm-is-open] {
  visibility: visible;
}
[data-better-modal] [data-bm-overlay] {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
[data-better-modal] [data-bm-card] {
  max-width: 100vw;
  max-height: 100vh;
  overflow: auto;
}
[data-better-modal][data-bm-position=top] {
  justify-content: center;
  align-items: flex-start;
}
[data-better-modal][data-bm-position=left] {
  justify-content: flex-start;
  align-items: center;
}
[data-better-modal][data-bm-position=right] {
  justify-content: flex-end;
  align-items: center;
}
[data-better-modal][data-bm-position=bottom] {
  justify-content: center;
  align-items: flex-end;
}
[data-better-modal][data-bm-position=center] {
  justify-content: center;
  align-items: center;
}

body[data-bm-offcanvas] {
  position: relative;
}

body {
  margin: 0;
}
body:not([data-s-loaded]) * {
  transition: none !important;
}

[data-bm-button] {
  display: flex;
  flex-flow: column nowrap;
  text-align: center;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: var(--bm-button-padding-tb) var(--bm-button-padding-lr);
  background: var(--bm-button-background-color);
  border: var(--bm-button-border);
}
[data-bm-button][data-bm-close] .close-icon {
  width: var(--bm-toggle-line-width);
}

.toggle-line {
  display: flex;
  width: var(--bm-toggle-line-width);
  height: var(--bm-toggle-line-height);
  margin-bottom: var(--bm-toggle-line-gap);
  border-radius: var(--bm-toggle-line-border-radius);
  background: var(--bm-toggle-line-color);
}

[data-bm-animation] {
  transition-duration: var(--bm-transition-duration);
  transition-timing-function: var(--bm-transition-duration);
}

[data-bm-animation~=slide-top] {
  transform: translateY(-100%);
}
[data-bm-animation~=slide-top][data-bm-active] {
  transform: translateY(0%);
}

[data-bm-animation~=slide-left] {
  transform: translate(-100%);
}
[data-bm-animation~=slide-left][data-bm-active] {
  transform: translate(0%);
}

[data-bm-animation~=slide-right] {
  transform: translate(100%);
}
[data-bm-animation~=slide-right][data-bm-active] {
  transform: translate(0%);
}

[data-bm-animation~=slide-bottom] {
  transform: translateY(100%);
}
[data-bm-animation~=slide-bottom][data-bm-active] {
  transform: translateY(0%);
}

[data-bm-animation~=fade] {
  opacity: 0;
}
[data-bm-animation~=fade][data-bm-active] {
  opacity: 1;
}

[data-better-modal] [data-bm-overlay] {
  transition: background var(--bm-transition-duration) var(--bm-transition-timing-function);
  background: transparent;
}
[data-better-modal] [data-bm-overlay][data-bm-active] {
  background: var(--bm-overlay-color);
}
[data-better-modal] [data-better-modal][data-bm-animation=bottom] {
  transform-origin: top center;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}
[data-better-modal] [data-better-modal][data-bm-animation=bottom][data-bm-is-open] {
  transform: translate(-50%, 0%);
}
[data-better-modal][data-bm-animation=center] {
  transform-origin: center center;
  width: 80%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
[data-better-modal][data-bm-animation=center][data-bm-is-open] {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.mm-active {
  overflow: hidden !important;
}

.header-nav {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  box-shadow: 1px 1px 0px #EBEBEB;
  z-index: 100;
  background-color: #fff;
}
.header-nav .header-row {
  display: flex;
  flex-flow: column nowrap;
}
.header-nav .header-row .menu-row {
  padding-bottom: 0 !important;
}
.header-nav .header-row .header-row-inner-wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0 0 20px;
  align-items: center;
}
.header-nav .header-row .header-row-inner-wrap .header-cell .logo-container {
  margin-bottom: 15px;
  display: flex;
}
.header-nav .header-row .header-row-inner-wrap .cell-main-menu {
  z-index: 1;
}
.header-nav .header-row .header-link {
  display: flex;
  align-items: center;
  color: #B04EC4;
  border: unset;
  background: unset;
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
  font-size: var(--fluid-body-sm);
  font-weight: 700;
}
.header-nav .header-row .header-link .icon {
  display: flex;
  align-items: center;
  margin-right: 0.3em;
}
.header-nav .header-row .header-link .icon svg {
  height: 1em;
}
.header-nav .top-row {
  background: #EBEBEB;
}
.header-nav .top-row .header-row-inner-wrap {
  padding: 0 0 0 10px;
  justify-content: space-between;
}
.header-nav .top-row .header-row-inner-wrap .header-link {
  padding: 12px 0;
  margin-left: 0.4em;
  transition: color 0.3s ease;
  display: flex;
  flex-flow: column nowrap;
}
.header-nav .top-row .header-row-inner-wrap .header-link:first-child {
  margin-left: 0;
}
.header-nav .top-row .header-row-inner-wrap .header-link:hover, .header-nav .top-row .header-row-inner-wrap .header-link:active, .header-nav .top-row .header-row-inner-wrap .header-link:focus {
  color: #2E368F;
}
.header-nav .top-row .header-row-inner-wrap button.header-link {
  cursor: pointer;
}
.header-nav .top-row .header-row-inner-wrap .callout-link {
  background-color: #2E368F;
  padding: 13px 14px 11px;
  color: white;
  transition: background 0.3s ease;
}
.header-nav .top-row .header-row-inner-wrap .callout-link .icon {
  color: #B04EC4;
}
.header-nav .top-row .header-row-inner-wrap .callout-link:hover, .header-nav .top-row .header-row-inner-wrap .callout-link:active, .header-nav .top-row .header-row-inner-wrap .callout-link:focus {
  background-color: #3a44b3;
  color: white !important;
}
.header-nav .top-row .header-row-inner-wrap button {
  padding: 0;
}
#desktop-nav #menu-main-navigation {
  gap: 23px;
}
#desktop-nav .menu-item {
  font-size: 0.9em;
}
#desktop-nav .menu-item a {
  padding: 0;
}
#desktop-nav .menu-item.menu-location-btn a {
  color: #fff;
  padding: 17px 28px;
  font-family: "Poppins";
  font-size: 18px;
  line-height: 24px;
}
#desktop-nav .menu-item.menu-location-btn a:hover {
  color: #B14FC5;
}

#mobile-nav-button {
  display: flex;
}

#navigation-modal a {
  color: white;
}
#navigation-modal a:hover, #navigation-modal a:focus {
  color: #B04EC4;
}
#navigation-modal a:active {
  color: #9b3aaf;
}
#navigation-modal [data-bm-card] {
  width: 100%;
  background: #2E368F;
}
#navigation-modal [data-bm-card] .bm-card-inner {
  padding: 2em;
}
#navigation-modal [data-bm-card] [data-bm-button] {
  color: white;
  margin-left: auto;
  padding: 1rem;
  font-weight: 500;
  cursor: pointer;
}
#navigation-modal [data-bm-card] [data-bm-button] svg {
  padding: 0.4rem 0.2rem;
}
#navigation-modal .nav-donate-btn {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
#navigation-modal .nav-donate-btn svg {
  height: 1em;
  margin-right: 0.4rem;
}

#mobile-nav li > ul {
  padding-top: 0;
}
#mobile-nav li > ul a {
  font-weight: 500;
}

.menu-row {
  padding-top: 0.8em;
}

.bm-card-inner {
  max-width: 100%;
  margin: 0 auto;
  width: 350px;
}

.default-modal {
  background: #2E368F;
  width: 100%;
  max-width: 100vw;
}
.default-modal .bm-card-inner {
  padding: 4rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.default-modal [data-bm-button] {
  color: white;
  margin-left: auto;
  margin-right: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.default-modal [data-bm-button] svg {
  padding: 0.4rem 0.2rem;
}

#search-modal [data-bm-card] {
  background: #B04EC4;
}

#searchform {
  display: flex;
  max-width: 100%;
}

.search-wrap {
  max-width: 100%;
}
.search-wrap .search-title {
  padding-bottom: 1rem;
  color: white;
  font-weight: 400;
}
.search-wrap .input-group {
  display: flex;
  width: 500px;
  max-width: 100%;
}
.search-wrap .input-group input[type=text] {
  border: unset;
  box-shadow: 3px 3px 8px rgba(65, 64, 66, 0.3);
  width: auto;
  border-radius: 0;
  flex-grow: 1;
  font-size: var(--fluid-body-sm);
  padding: 15px;
}
.search-wrap .input-group input[type=submit] {
  font-size: var(--fluid-body-sm);
  padding: 15px 40px;
  align-self: flex-start;
  box-shadow: 3px 3px 8px rgba(65, 64, 66, 0.3);
  border: unset;
  border-radius: 0;
  background: #8DC63F;
  color: white;
  font-weight: bold;
}

#desktop-nav .ubermenu-responsive-toggle {
  padding: 0 10px 10px;
}

.ubermenu .ubermenu-target-text {
  font-size: 17px;
}

.ubermenu-nav .ubermenu-item.arrow-cs > a {
  padding-right: 30px !important;
}
.ubermenu-nav .ubermenu-item.items > a {
  padding: 10px 9px 38px;
}
.ubermenu-nav .ubermenu-submenu .col-left-img {
  margin: 27px 0 35px 20px;
}
.ubermenu-nav .ubermenu-submenu .menu-pr {
  margin: 25px 0 20px;
}
.ubermenu-nav .ubermenu-submenu .menu-pr.left {
  margin-left: 0;
}
.ubermenu-nav .ubermenu-submenu .ubermenu-item-has-children ul {
  margin-left: 1.3rem;
}
.ubermenu-nav li.arrow-cs [data-bm-dropdown-arrow] {
  display: none !important;
}
.ubermenu-nav li.arrow-cs > .ubermenu-target {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.ubermenu-nav li.arrow-cs > .ubermenu-target::after {
  content: "";
  background-image: url(/wp-content/themes/posturepress2-child/dist/images/arrow-icon.svg);
  width: 17px;
  height: 10px;
  right: 4px;
  position: absolute;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  margin-top: 3px;
  background-size: 100%;
}
.ubermenu-nav li.arrow-cs > .ubermenu-target:hover::after {
  transform: rotate(180deg);
}
.ubermenu-nav li.arrow-cs > .ubermenu-target .ubermenu-sub-indicator-close {
  top: 10px;
}
.ubermenu-nav .ubermenu-submenu.ubermenu-submenu-drop {
  border: 0 !important;
}
.ubermenu-nav .ubermenu-submenu.ubermenu-submenu-drop .ubermenu-row {
  padding: 0 20px;
}
.ubermenu-nav .ubermenu-submenu.ubermenu-submenu-drop .ubermenu-submenu-type-stack {
  transform: none;
  padding: 0;
}
.ubermenu-nav .ubermenu-submenu.ubermenu-submenu-drop .ubermenu-submenu-type-stack .programs-left-image {
  padding: 0 !important;
}
.ubermenu-nav .ubermenu-submenu.ubermenu-submenu-drop .ubermenu-submenu-type-stack .programs-left-image img {
  max-width: 382px;
}
.ubermenu-nav .ubermenu-submenu.ubermenu-submenu-drop .ubermenu-submenu-type-stack li {
  margin: 0 !important;
  padding: 0 !important;
}
.ubermenu-nav .ubermenu-submenu.ubermenu-submenu-drop .ubermenu-submenu-type-stack li a {
  color: #fff;
}
.ubermenu-nav .ubermenu-submenu.ubermenu-submenu-drop .ubermenu-submenu-type-stack li a:hover span {
  color: #2e3192;
  transition: all 0.2s ease;
}
.ubermenu-nav .ubermenu-submenu.ubermenu-submenu-drop::before {
  content: "";
  position: absolute;
  background-image: url(/wp-content/themes/posturepress2-child/dist/images/submenu-bg.png);
  width: 100%;
  height: 100%;
  right: 150px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 100% 100%;
}
.ubermenu-nav li:last-child {
  margin-left: 15px;
  margin-bottom: 23px;
}
.ubermenu-mobile-view .ubermenu-nav {
  padding: 0 20px;
}
.ubermenu-mobile-view .ubermenu-nav .menu-pr {
  margin: 27px 0 0;
}
.ubermenu-mobile-view .ubermenu-nav .menu-pr:last-child {
  margin: 0 !important;
}
.ubermenu-mobile-view .ubermenu-nav .ubermenu-row .col-left-img {
  order: 1;
}
.ubermenu-mobile-view .ubermenu-nav .ubermenu-active > a.ubermenu-target::after {
  transform: rotate(180deg);
}
.ubermenu-mobile-view .ubermenu-mobile-footer {
  display: none !important;
}
.ubermenu-mobile-view .ubermenu-sub-indicator-close .fa-times {
  display: none !important;
}

.body-controller {
  overflow-x: hidden;
  display: flex;
  flex-flow: column nowrap;
  min-height: 100vh;
}
.body-controller footer {
  margin-top: auto;
}

body {
  margin: 0;
  overflow-x: hidden;
}
body:not([data-s-loaded]) * {
  transition: none !important;
}

.uagb-column__inner-wrap {
  display: flex;
  flex-flow: column nowrap;
}

hr {
  width: 100%;
}
hr.title-underline {
  border-color: #EBEBEB;
}

#footer {
  background-color: #EBEBEB;
}
#footer .s-inner-wrap {
  padding-top: 25px;
  padding-bottom: 25px;
  width: 100%;
}
#footer .f-grid {
  display: flex;
  flex-flow: column nowrap;
  align-content: center;
}
#footer .f-grid .cell {
  padding: 10px 0;
}
#footer .logo-cell {
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  display: flex;
}
#footer .logo-cell img {
  width: 100px;
}
#footer .menu-cell .menu {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 0;
  gap: 11px;
  margin-bottom: 0;
}
#footer .menu-cell .menu > li {
  display: flex;
  flex-flow: column nowrap;
  padding: 0 20px;
}
#footer .menu-cell .menu > li a {
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
#footer .menu-cell .menu > li ul {
  list-style: none;
  padding: 0;
}
#footer .menu-cell .menu > li ul li {
  padding: 0;
}
#footer .menu-cell .menu > li ul li a {
  font-weight: 700;
  font-size: 12px;
  font-family: "Open Sans";
  color: #B14FC5;
  line-height: 20px;
}
#footer .cell-mid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#footer .links-cell .menu {
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
}
#footer .links-cell .menu li a {
  font-size: var(--fluid-body-sm);
  font-weight: 700;
  padding-bottom: 7px;
  display: flex;
}
#footer .links-cell .menu li .sub-menu {
  padding-left: 0;
  list-style-type: none;
  -moz-column-count: 2;
       column-count: 2;
}
#footer .links-cell .menu li .sub-menu li a {
  font-weight: 700;
  font-size: 12px;
  font-family: "Open Sans";
  color: #B14FC5;
  line-height: 20px;
}
#footer .footer-copyright-row {
  background-color: #2E368F;
  padding: 0;
}
#footer .footer-copyright-row .s-inner-wrap .wrap {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  flex-direction: column;
}
#footer .footer-copyright-row .copyright-text,
#footer .footer-copyright-row a {
  color: white;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}
#footer .footer-copyright-row .copyright-text {
  font-weight: 300;
  text-align: center;
}
#footer .footer-copyright-row .policy-link {
  padding: 0;
  text-align: center;
}
#footer .footer-copyright-row .policy-link a:hover, #footer .footer-copyright-row .policy-link a:focus {
  color: #9ecf5c;
}
#footer .footer-copyright-row .policy-link a:active {
  color: #8DC63F;
}
#footer .footer-copyright-row .policy-link a[data-s-active-anchor] {
  color: #8DC63F;
}
#footer .footer-copyright-row .policy-links {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
  list-style: none;
  max-width: 100%;
  padding-left: 0;
  align-self: center;
  margin: 0;
}
#footer .footer-copyright-row .footer-social {
  margin-bottom: 10px;
}
#footer .footer-copyright-row .footer-social ul {
  display: flex;
  list-style-type: none;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding-left: 0;
}
#footer .footer-copyright-row .footer-social ul li a:hover svg path {
  fill: #B14FC5;
  transition: all 0.3s ease;
}
#footer #menu-footer-bold-links {
  padding-left: 20px;
}

#footer .menu .footer-title > a {
  margin-bottom: 8px;
}

.pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination li span.current {
  background: #B04EC4;
  color: #ffffff;
  padding: 0.5rem 0.65rem;
  border: none;
  border: 2px solid #B04EC4;
  font-weight: bold;
}
.pagination li a {
  font-weight: bold;
  background: #ffffff;
  color: #2E368F;
  border: 2px solid #c9c9c9;
  padding: 0.5rem 0.65rem;
  transition: all 0.3s ease-in-out;
}
.pagination li a:hover {
  background: #B04EC4;
  color: #ffffff;
  border: 2px solid #B04EC4;
}
.pagination li.pagination-next a, .pagination li.pagination-previous a {
  border: none;
}
.pagination li.pagination-next a:hover, .pagination li.pagination-previous a:hover {
  border: none;
  background: none;
}
.pagination li.pagination-next a svg path, .pagination li.pagination-previous a svg path {
  transition: all 0.3s ease-in-out;
}
.pagination li.pagination-next a:hover svg path, .pagination li.pagination-previous a:hover svg path {
  fill: #2E368F;
}

.fluentform textarea {
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
}

#chatbotIconContainer {
  position: fixed;
  right: 2%;
  bottom: 2%;
  z-index: 999;
}
#chatbotIconContainer #chatTextPopup {
  visibility: visible;
  margin-right: 0.7em;
  position: relative;
  opacity: 1;
  transform: scale(1);
  transition: visibility 550ms, opacity 450ms ease-in-out, transform 600ms ease-in-out;
}
#chatbotIconContainer #chatTextPopup.invisible {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.5);
}
#chatbotIconContainer #chatTextPopup a:active .chat-inner-text, #chatbotIconContainer #chatTextPopup a:focus .chat-inner-text, #chatbotIconContainer #chatTextPopup a:hover .chat-inner-text {
  color: #B04EC4;
}
#chatbotIconContainer .icon-text {
  background-color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 1px 2px 15px rgba(0, 0, 0, 0.35);
  padding: 1em;
  opacity: 100;
  width: 100%;
  height: auto;
  max-width: 275px;
}
#chatbotIconContainer .icon-text .chat-logo-container {
  margin-top: -2em;
  margin-bottom: 0.75em;
  background-color: white;
  padding: 0.25em;
  border-radius: 30px;
}
#chatbotIconContainer .icon-text .chat-logo-container img {
  width: 100%;
  max-width: 40px;
  height: auto;
}
#chatbotIconContainer .icon-text .chat-inner-text {
  color: #2E368F;
  font-weight: 700;
  font-size: 1em;
  text-align: center;
}
#chatbotIconContainer #closeIcon {
  position: absolute;
  right: 3%;
  top: 8%;
  width: 100%;
  height: auto;
  max-width: 13px;
  cursor: pointer;
}
#chatbotIconContainer #floatChatIcon {
  background-color: #8DC63F;
  padding: 12px;
  border: 2px solid #8DC63F;
  border-radius: 33px;
  position: relative;
  top: 10px;
  left: 75%;
  width: 55px;
  height: 55px;
  box-shadow: 1px 2px 15px rgba(0, 0, 0, 0.35);
  transition: all 300ms ease-in-out;
  cursor: pointer;
}
#chatbotIconContainer #floatChatIcon img {
  margin: 4px auto;
  width: 100%;
  height: auto;
  max-width: 36px;
}
#chatbotIconContainer #floatChatIcon:active, #chatbotIconContainer #floatChatIcon:focus, #chatbotIconContainer #floatChatIcon:hover {
  background-color: rgba(84, 84, 84, 0.2);
}
#chatbotIconContainer #floatChatIcon:active #iconText, #chatbotIconContainer #floatChatIcon:focus #iconText, #chatbotIconContainer #floatChatIcon:hover #iconText {
  opacity: 10;
  width: 10%;
}

.bulleted-list-block {
  padding: 15px 10px;
  box-shadow: 2px 3px 15px rgba(0, 0, 0, 0.35);
  background-color: #B04EC4;
  color: white;
  margin-bottom: 2rem;
}
.bulleted-list-block ul {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 10px;
}
.bulleted-list-block a {
  color: #2E368F;
}
.bulleted-list-block a:hover, .bulleted-list-block a:active, .bulleted-list-block a:focus {
  color: #4650c3;
}
.bulleted-list-block a[data-s-active-anchor] {
  color: #4650c3;
}

.content-block {
  padding: 30px 15px;
  margin-bottom: 2rem;
  box-shadow: 2px 3px 15px rgba(0, 0, 0, 0.35);
}
.content-block .content-block-title {
  margin-bottom: 1rem;
}
.content-block .wp-block-column {
  display: flex;
  flex-flow: column nowrap;
}
.content-block .content-block-image {
  margin-top: auto;
  margin-bottom: auto;
}
.content-block .content-block-image img {
  height: auto !important;
}
.content-block img {
  height: auto !important;
}

.accordion-block {
  margin-bottom: 2rem;
}
.accordion-block .uagb-faq-questions {
  background: #B04EC4;
  color: white;
  padding: 10px 15px;
}
.accordion-block .uagb-faq-questions .uagb-question {
  color: white;
  font-weight: 600;
}
.accordion-block .uagb-faq-questions .uagb-question:hover, .accordion-block .uagb-faq-questions .uagb-question:active, .accordion-block .uagb-faq-questions .uagb-question:focus {
  color: #EBEBEB !important;
}
.accordion-block .uagb-faq-item-active .uagb-faq-questions {
  background: #9b3aaf;
}
.accordion-block .uagb-faq-item-active .uagb-faq-questions .uagb-question {
  color: white;
}
.accordion-block .uagb-faq-content {
  padding: 15px;
}

.icon-box-block {
  position: relative;
  margin-top: 2rem;
  border: 2px solid #B04EC4;
  padding: 40px 20px 20px;
  height: calc(100% - 2rem);
}
.icon-box-block .icon-box-icon {
  height: 2em;
  margin-top: -1em;
  background: white;
}
.icon-box-block:before {
  content: url("data:image/svg+xml; utf8, <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 67.3 60.5\"><path data-name=\"Icon awesome-heart\" d=\"M57.7 5.2A16.6 16.6 0 0035 7l-2.4 2.5-2.4-2.5c-6-6.3-16-7.3-22.7-1.7a17.5 17.5 0 00-1.2 25.3L30 54.8a3.8 3.8 0 005.5 0l23.5-24.3a17.4 17.4 0 00-1.2-25.3z\" fill=\"none\" stroke=\"rgb%28176, 78, 196%29\" stroke-width=\"2\" vector-effect=\"non-scaling-stroke\"/></svg>");
  position: absolute;
  top: -1.6em;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  padding: 5px;
  height: 4em;
  width: 4em;
  background-color: white;
}
.icon-box-block.icon-heart:before {
  content: url("data:image/svg+xml; utf8, <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 67.3 60.5\"><path data-name=\"Icon awesome-heart\" d=\"M57.7 5.2A16.6 16.6 0 0035 7l-2.4 2.5-2.4-2.5c-6-6.3-16-7.3-22.7-1.7a17.5 17.5 0 00-1.2 25.3L30 54.8a3.8 3.8 0 005.5 0l23.5-24.3a17.4 17.4 0 00-1.2-25.3z\" fill=\"none\" stroke=\"rgb%28176, 78, 196%29\" stroke-width=\"2\" vector-effect=\"non-scaling-stroke\"/></svg>");
}
.icon-box-block.icon-megaphone:before {
  content: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 71.9 68.8\"> <path d=\"M30.6 68.8a4.8 4.8 0 01-4.2-2.4l-12-20.8h-2.8A11.6 11.6 0 010 34v-4.8a11.6 11.6 0 0111.6-11.6h32.2a1.4 1.4 0 110 2.8H11.6a8.8 8.8 0 00-8.8 8.8V34a8.8 8.8 0 008.8 8.8h3.6a1.4 1.4 0 011.2.7L28.8 65a2 2 0 002.8.7l6.2-3.6a2 2 0 00.8-2.8L30.2 45a1.4 1.4 0 010-1.4 1.4 1.4 0 011.2-.7h12.4a1.4 1.4 0 110 2.8h-10L41 57.9a4.8 4.8 0 01-1.8 6.6L33 68.1a4.8 4.8 0 01-2.4.7z\" fill=\"rgb%28176, 78, 196%29\"/> <path d=\"M64.4 40.6a1.4 1.4 0 110-2.8c2.5 0 4.7-1.5 4.7-3.4v-5.6c0-1.9-2.2-3.4-4.7-3.4a1.4 1.4 0 110-2.8c4.1 0 7.5 2.8 7.5 6.2v5.6c0 3.4-3.4 6.2-7.5 6.2z\" fill=\"rgb%28176, 78, 196%29\"/> <path d=\"M64.4 62.2a1.5 1.5 0 01-.8-.3L43 48.4a1.4 1.4 0 01-.6-1.2V15.7a1.4 1.4 0 01.6-1.1L63.6.2a1.4 1.4 0 011.4 0 1.4 1.4 0 01.8 1.2v59.4a1.4 1.4 0 01-1.4 1.4zM45.2 46.5L63 58.2V4L45.2 16.4z\" fill=\"rgb%28176, 78, 196%29\"/></svg>");
}
.icon-box-block.icon-moon:before {
  content: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 79.5 89\"> <g><path data-name=\"Path 34\" d=\"M6 28.3c23.7-2 38.5 2.8 48.5 46.3C65.4 58.3 71 41.8 59.8 25.4 44.5 3 13 10.7 5.9 28.3z\" fill=\"none\" stroke=\"rgb%28176, 78, 196%29\" stroke-width=\"2px\" vector-effect=\"non-scaling-stroke\"/></g></svg>");
}
.icon-box-block.icon-health:before {
  content: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16.7 16.7\"><path d=\"M15.7 5.9a.3.3 0 00-.3-.3h-4a.3.3 0 01-.3-.3v-4a.3.3 0 00-.3-.3H6a.3.3 0 00-.3.3v4a.3.3 0 01-.3.3h-4a.3.3 0 00-.3.3v4.9a.3.3 0 00.3.3h4a.3.3 0 01.3.3v4a.3.3 0 00.3.3h4.9a.3.3 0 00.3-.3v-4a.3.3 0 01.3-.3h4a.3.3 0 00.3-.3z\" fill=\"none\" stroke=\"rgb%28176, 78, 196%29\" stroke-width=\"1\"/></svg>");
}

#get-involved {
  background: #B04EC4;
  color: white;
  background-size: 100% 40%;
  background-repeat: no-repeat;
  background-position: bottom;
}
#get-involved .s-inner-wrap {
  padding-top: 60px;
  padding-bottom: 60px;
}
#get-involved .get-involved-title {
  color: white;
}
#get-involved .f-grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
#get-involved .info-cell {
  max-width: 100%;
  width: 50%;
}
#get-involved .info-cell .inner-wrap {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 20px;
}
#get-involved .info-cell .description {
  max-width: 445px;
  width: 100%;
  font-weight: 400;
  margin: 17px 0 18px;
  font-size: 18px;
  line-height: 26px;
  font-family: "Open Sans";
}
#get-involved .info-cell .button-row {
  display: flex;
  flex-flow: column;
  flex-direction: row-reverse;
  justify-content: space-between;
  max-width: 375px;
  gap: 18px;
}
#get-involved .info-cell .button-row a {
  width: 100%;
  flex-grow: 1;
}
#get-involved .info-cell .button-row .btn-blue {
  padding: 0.9em 0.8em;
  font-family: "Poppins";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
#get-involved .info-cell .button-row .adv-btn {
  font-family: "Poppins";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  align-items: center;
  padding: 0.9em 0.2em;
}
#get-involved #mc_embed_signup form {
  margin: 0;
}
#get-involved #mc_embed_signup .asterisk {
  font-size: 100%;
  top: 4px;
}
#get-involved #mc_embed_signup .clear {
  margin-top: 1rem;
}
#get-involved .form-cell {
  width: 100%;
  max-width: 50%;
  background-position: center center;
  background-size: cover;
  padding: 115px 0px;
}
#get-involved .form-cell .inner-wrap {
  width: 90%;
  padding-left: 20px;
  max-width: 450px;
}
#get-involved .form-cell .form-title {
  color: white;
  font-weight: 700;
}
#get-involved .form-cell .subscribe-wrap {
  display: flex;
  margin-top: 1rem;
}
#get-involved .form-cell input[type=email], #get-involved .form-cell input[type=text] {
  border: unset;
  box-shadow: 3px 3px 8px rgba(65, 64, 66, 0.3) !important;
  width: 100%;
  border-radius: 0;
  flex-grow: 1;
  font-size: 18px;
  margin-right: 0;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  font-family: "Open Sans";
  outline: none;
}
#get-involved .form-cell input[type=submit] {
  height: 65px;
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  padding: 0.9rem 1.2rem;
  box-shadow: 3px 3px 8px rgba(65, 64, 66, 0.3);
  margin: 0;
  border: unset;
  border-radius: 0;
  background: #8DC63F;
  transition: background-color 0.3s ease;
  color: white;
  font-weight: bold;
}
#get-involved .form-cell input[type=submit]:hover, #get-involved .form-cell input[type=submit]:active, #get-involved .form-cell input[type=submit]:focus {
  background: #9ecf5c;
}
#get-involved .form-cell input[type=submit]:active {
  background: #80b636;
}

#care-awaits {
  background-color: #B04EC4;
  padding: 10px 0;
}
#care-awaits .f-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
#care-awaits .f-grid .info-cell h2 {
  color: #fff;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 15px;
}
#care-awaits .f-grid .info-cell .description {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
#care-awaits .f-grid .button-row a {
  color: #FFF;
  padding: 1.01em 1.1em;
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
}

.general-page-single {
  padding-top: 20px;
  background-color: #fff;
  z-index: 1;
  position: relative;
}

.page-header {
  display: flex;
  align-items: flex-end;
  background-position: center center;
  background-size: cover;
  background-image: url(/wp-content/themes/posturepress2-child/dist/images/news-default-header.jpg);
  min-height: 200px;
  margin: 0 auto;
  width: 1400px;
  max-width: 100%;
}
.page-header .page-title {
  background-color: #B04EC4;
  color: white;
  padding: 0.5em 1em;
  min-width: 50%;
  max-width: 75%;
  margin-bottom: 0;
}

.page-header-hero h2 {
  font-style: normal;
  font-weight: 700;
}
.page-header-hero p {
  color: #000;
  font-family: "Open Sans";
  font-size: 18px;
  line-height: 26px;
  font-style: normal;
  font-weight: 400;
}

.page-header-hero {
  position: relative;
  padding: 15px 0 0;
  background-color: #EBEBEB;
}
.page-header-hero.inner {
  padding: 15px 0 0 !important;
}
.page-header-hero.inner .f-grid {
  padding-right: 10px;
}
.page-header-hero .f-grid {
  display: flex;
}
.page-header-hero .f-grid .info-cell h2 {
  font-size: 38px;
  line-height: 46px;
}
.page-header-hero .f-grid .info-cell p {
  margin-top: 11px;
  margin-bottom: 0;
}
.page-header-hero .col-right-outer {
  display: flex;
  position: relative;
  justify-content: flex-end;
}
.page-header-hero .col-right-outer::before {
  content: "";
  background-image: url(/wp-content/themes/posturepress2-child/dist/images/banner-moon.svg);
  width: 100%;
  height: 350px;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -40px;
}
.page-header-hero .col-right-outer .cell-right {
  z-index: 2;
  position: absolute;
  top: 0;
}
.page-header-hero .col-right-outer .cell-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-header-hero .col-right-outer .moon-icon {
  position: relative;
  right: 0;
  top: -10%;
  height: 110%;
  z-index: 1;
  max-width: 55%;
  width: 100%;
}
.page-header-hero .col-right-outer .moon-icon svg {
  height: 100%;
  width: 100%;
}

.videoResources {
  padding: 75px 0 75px !important;
}

.county-card {
  background: #EBEBEB;
  padding: 30px;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 79px;
  margin-bottom: 59px;
}
.county-card .inner-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}
.county-card .pa-image {
  padding: 0;
}

.county-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px;
  padding-left: 0;
}
.county-list a {
  display: flex;
  justify-content: flex-start;
  color: #414042;
  font-size: var(--fluid-body-sm);
}
.county-list a .pin-icon {
  display: block;
  width: 1em;
  height: 1em;
  margin-right: 0.4em;
  color: #B04EC4;
}
.county-list a .pin-icon svg {
  height: 100%;
}
.county-list a .pin-icon svg g {
  fill: transparent;
  transition: all 0.3s ease;
}
.county-list a:hover .pin-icon svg g, .county-list a:active .pin-icon svg g, .county-list a:focus .pin-icon svg g, .county-list a[data-s-active-anchor] .pin-icon svg g {
  fill: #2E368F;
}

.awsm-jobs-single-title {
  margin-bottom: 35px;
}

.awsm-job-form-inner h2 {
  font-size: 30px;
}

.awsm-application-submit-btn, .awsm-jobs-alerts-btn {
  background: #8dc63f;
  border: unset;
  border-radius: 0;
  color: #fff;
  font-size: var(--fluid-body-sm);
  font-weight: 700;
  margin: 0;
  padding: 15px 40px;
  transition: background-color 0.3s ease;
}

.awsm-application-submit-btn:hover {
  background-color: #9ecf5c;
}

.awsm-job-specification-label {
  color: #b04ec4;
}

.awsm-job-form {
  display: none;
}

.awsm-filter-wrap form {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.awsm-filter-wrap form #job-alerts-signup-text {
  display: none;
  position: relative;
  order: 2;
  width: 100%;
  max-width: 200px;
}
.awsm-filter-wrap .awsm-filter-items {
  flex-wrap: wrap;
}

.awsm-filter-wrap.awsm-no-search-filter-wrap.awsm-jobs-alerts-on .awsm-filter-items {
  order: 1;
  width: 60%;
}

/**
 * Featured Jobs Styling
 * 
 * Visual enhancements for featured/urgent job postings
 * Following MFHS design system and project rules
 * 
 * @package PosturePress
 * @since PosturePress 2.0.0
 */
.awsm-job-item.featured-job {
  border: 4px solid #b14fc5 !important;
  position: relative;
}
.awsm-job-item.featured-job::before {
  content: "URGENT";
  position: absolute;
  top: -12px;
  right: var(--spacing-sm);
  background: #b14fc5;
  color: white;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--header-font-family);
  border-radius: 12px;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(177, 79, 197, 0.3);
}
.awsm-job-item.featured-job:hover {
  border-color: #9c42b0;
  box-shadow: 0 4px 12px rgba(177, 79, 197, 0.2);
  transform: translateY(-1px);
  transition: all 0.3s ease;
}
.awsm-job-item.featured-job:hover::before {
  background: #9c42b0;
  box-shadow: 0 3px 8px rgba(177, 79, 197, 0.4);
}
.awsm-job-item.featured-job:focus, .awsm-job-item.featured-job:focus-within {
  outline: 2px solid #b14fc5;
  outline-offset: 2px;
}

/**
 * Coming Soon Jobs Styling
 * 
 * Visual enhancements for coming soon job postings
 * Following MFHS design system and project rules
 * Complements existing featured jobs styling
 * 
 * @package PosturePress
 * @since PosturePress 2.0.0
 */
.jobs-section {
  margin-bottom: var(--spacing-xl);
}
.jobs-section:not(:first-child) {
  margin-top: var(--spacing-xxl);
  padding-top: var(--spacing-xl);
  border-top: 2px solid var(--color-light-gray);
}
.jobs-section .jobs-section-header {
  margin-bottom: var(--spacing-lg);
  text-align: center;
}
.jobs-section .jobs-section-header .jobs-section-title {
  font-family: var(--header-font-family);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
}
.jobs-section .jobs-section-header .jobs-section-description {
  font-size: 1.1rem;
  color: var(--color-medium-gray);
  margin: 0;
  font-style: italic;
}

.available-jobs-section .jobs-section-title {
  color: var(--color-primary);
}
.available-jobs-section .awsm-job-listings .coming-soon-job {
  display: none;
}

.coming-soon-jobs-section .jobs-section-title {
  color: #0073aa;
}
.coming-soon-jobs-section .jobs-section-description {
  color: #0073aa;
}
.awsm-job-item.coming-soon-job:focus, .awsm-job-item.coming-soon-job:focus-within {
  outline: 2px solid #0073aa;
  outline-offset: 2px;
}
.awsm-job-item.coming-soon-job.coming-soon-featured:focus, .awsm-job-item.coming-soon-job.coming-soon-featured:focus-within {
  outline: 2px solid #b14fc5;
  outline-offset: 2px;
}

@keyframes comingSoonPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.awsm-job-item.coming-soon-job::before {
  animation: comingSoonPulse 3s ease-in-out infinite;
}
#hero {
  background-position: 25% top;
  background-size: auto 65%;
  display: flex;
}
#hero .s-inner-wrap {
  padding-top: 20px;
  padding-bottom: 0;
}
#hero .c-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
#hero .content-box {
  background: white;
  padding: 20px 15px;
  display: flex;
  flex-flow: column nowrap;
}
#hero .content-box .fancy-btn, #hero .content-box .wp-block-button .wp-block-button__link, .wp-block-button #hero .content-box .wp-block-button__link, #hero .content-box .fluentform form .ff-btn, .fluentform form #hero .content-box .ff-btn {
  align-self: flex-start;
}
#hero .content-box h1 {
  font-size: 28px;
  padding-right: 0;
  line-height: 36px;
  color: #2E368F;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
}
#hero .content-box p {
  margin-top: 0;
  color: #000;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 475px;
  margin-bottom: 32px;
}
#hero .content-box a {
  font-size: 21px;
  line-height: 28px;
  font-family: "Poppins";
  padding: 0.9em 1.28em;
}
#hero .moons {
  position: relative;
  padding-bottom: 65%;
  width: 90%;
  margin: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
#hero .moons .moon-icon {
  position: absolute;
  color: #8DC63F;
}
#hero .moons .moon-icon:first-child {
  top: 40%;
  right: 64px;
  width: 20%;
  transform: rotate(10deg);
}
#hero .moons .moon-icon:first-child svg path {
  stroke-width: 3.7;
}
#hero .moons .moon-icon:nth-child(2) {
  top: -10px;
  left: 21%;
  width: 30%;
  transform: rotate(20deg);
  z-index: -1;
  color: #B14FC5;
}
#hero .moons .moon-icon:nth-child(2) svg path {
  stroke-width: 3.7;
}
#hero .moons .moon-icon:last-child {
  bottom: -10px;
  width: 50%;
  left: 21%;
  color: #2E368F;
}

/* New Program section*/
.programs-s {
  background-color: #2E368F;
  padding: 12px 0 78px;
  position: relative;
}
.programs-s .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.programs-s .top h2 {
  color: #FFF;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 0;
}
.programs-s .top .all-services {
  display: none;
}
.programs-s .top .all-services a {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  padding: 18px 20px;
  text-transform: capitalize;
}
.programs-s .all-services.mb {
  display: flex;
  justify-content: flex-start;
  margin: 40px 30px 0;
}
.programs-s .all-services.mb a {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  padding: 18px 20px;
  text-transform: capitalize;
}
.programs-s .programs-carousel::after {
  content: "";
  position: absolute;
  width: 22%;
  height: calc(100% + 0px);
  top: 50%;
  transform: translateY(-50%) scale(-1);
  right: 0;
  z-index: 2;
  background: linear-gradient(92deg, #2E3192 1.45%, rgba(46, 49, 146, 0) 82.74%);
}
.programs-s .programs-carousel::before {
  content: "";
  position: absolute;
  width: 22%;
  height: calc(100% + 0px);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: linear-gradient(92deg, #2E3192 1.45%, rgba(46, 49, 146, 0) 82.74%);
  z-index: 2;
}
.programs-s .programs-carousel .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  cursor: pointer;
}
.programs-s .programs-carousel .slick-arrow:hover svg path {
  stroke: #B14FC5;
  transition: all 0.3s ease;
}
.programs-s .programs-carousel .slick-prev {
  left: 1%;
  transform: translate(50%, -50%);
}
.programs-s .programs-carousel .slick-next {
  right: 1%;
  transform: translate(-50%, -50%);
}
.programs-s .programs-carousel .slick-dots {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  margin: 30px auto 0;
  padding: 0;
}
.programs-s .programs-carousel .slick-slide {
  position: relative;
  padding: 0 10px;
  height: auto;
  width: 360px;
  transition: all 0.5s ease;
}
.programs-s .programs-carousel .slick-slide img {
  height: 225px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.programs-s .programs-carousel .slick-slide .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  z-index: 1;
}
.programs-s .programs-carousel .slick-slide a {
  display: flex;
  position: relative;
}
.programs-s .programs-carousel .slick-slide a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.programs-s .programs-carousel .slick-slide:nth-child(3n+1) a::after {
  background-color: #2e368f87 !important;
}
.programs-s .programs-carousel .slick-slide:nth-child(3n+1) a:hover:after {
  background-color: #2e368fbd !important;
}
.programs-s .programs-carousel .slick-slide:nth-child(3n+2) a::after {
  background-color: #b14fc5b5 !important;
}
.programs-s .programs-carousel .slick-slide:nth-child(3n+2) a:hover:after {
  background-color: #b14fc5d6 !important;
}
.programs-s .programs-carousel .slick-slide:nth-child(3n+3) a::after {
  background-color: #8dc73f91 !important;
}
.programs-s .programs-carousel .slick-slide:nth-child(3n+3) a:hover:after {
  background-color: #8dc73f6e !important;
}

#quality-care {
  position: relative;
}
#quality-care .overlay {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
  background: linear-gradient(90deg, #fff 60%, #ed7f2800 100%);
}
#quality-care::after {
  content: "";
  position: absolute;
  width: 10%;
  height: calc(100% + 0px);
  top: 50%;
  transform: translateY(-50%) scale(-1);
  right: 0;
  z-index: 2;
  background: linear-gradient(88deg, #FFF 12.01%, rgba(255, 255, 255, 0) 85.14%);
}
#quality-care::before {
  content: "";
  position: absolute;
  width: 4%;
  height: calc(100% + 0px);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: radial-gradient(ellipse 50% 200% at 54%, #ffffff00 64%, #ffffff 93%);
  z-index: 2;
}
#quality-care .s-inner-wrap {
  padding: 40px 20px 60px 40px;
  position: relative;
  overflow: visible;
  z-index: 3;
}
#quality-care .s-inner-wrap .icon-right, #quality-care .s-inner-wrap .icon-left {
  position: absolute;
  color: #EBEBEB;
}
#quality-care .s-inner-wrap .icon-left {
  width: 192px;
  bottom: 4%;
  left: 0;
}
#quality-care .s-inner-wrap .icon-right {
  width: 81px;
  display: none;
  right: 0;
  top: 46px;
  z-index: 3;
}
#quality-care .c-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
  width: 500px;
  margin: initial;
}
#quality-care .c-grid .cell {
  display: flex;
}
#quality-care .c-grid .cell:last-child {
  grid-row: 1;
}
#quality-care .c-grid .right-col {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55%;
}
#quality-care .c-grid .right-col img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#quality-care .c-grid .right-col::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 102%;
  top: 0;
  z-index: 0;
  background: linear-gradient(90deg, #ffffff 20%, #ffffff00, #ffffffff);
}
#quality-care .image-box {
  position: relative;
}
#quality-care .image-box .moons {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  padding: 1rem;
}
#quality-care .image-box .moons .moon-icon {
  position: absolute;
  color: #B04EC4;
}
#quality-care .image-box .moons .moon-icon:first-child {
  top: 60%;
  right: 0;
  width: 25%;
}
#quality-care .image-box .moons .moon-icon:nth-child(2) {
  top: 0;
  left: 5%;
  width: 35%;
}
#quality-care .image-box .moons .moon-icon:last-child {
  bottom: 1rem;
  width: 45%;
}
#quality-care .info-box {
  margin: auto 0;
  z-index: 1;
}
#quality-care .info-box .quality-desc {
  margin: 11px 0 20px;
  line-height: 26px;
  font-family: "Open Sans";
  color: #000;
}
#quality-care .info-box a {
  text-transform: capitalize;
  font-size: 21px;
  font-family: "Poppins";
  line-height: 30px;
  padding: 18px 38px;
}

.wpsl_stores_home_main {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  gap: 20px;
  margin: 17px 0 20px;
}
.wpsl_stores_home_main #wpsl-gmap {
  margin-top: 30px;
}
.wpsl_stores_home_main #wpsl_stores_home {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  overflow: hidden;
  padding-bottom: 80px;
}
.wpsl_stores_home_main #wpsl_stores_home .slick-arrow {
  position: absolute;
  bottom: 0;
  z-index: 10;
  border: 1px solid #8DC73F;
  padding: 17px 27px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.wpsl_stores_home_main #wpsl_stores_home .slick-arrow svg {
  transition: all 0.3s ease;
}
.wpsl_stores_home_main #wpsl_stores_home .slick-arrow svg path {
  fill: #8DC73F;
}
.wpsl_stores_home_main #wpsl_stores_home .slick-arrow:hover {
  border: 1px solid #B14FC5;
  background-color: #B14FC5;
}
.wpsl_stores_home_main #wpsl_stores_home .slick-arrow:hover svg path {
  fill: #fff;
}
.wpsl_stores_home_main #wpsl_stores_home .slick-prev {
  right: 80px;
}
.wpsl_stores_home_main #wpsl_stores_home .slick-next {
  right: 0;
}
.wpsl_stores_home_main #wpsl-result-list {
  margin: 0 !important;
  position: relative;
}
.wpsl_stores_home_main #wpsl-result-list .wpsl-search {
  margin-bottom: 36px !important;
}
.wpsl_stores_home_main #wpsl-result-list #wpsl-search-wrap {
  padding-top: 0;
}
.wpsl_stores_home_main #wpsl-result-list #wpsl-search-wrap .loc-top {
  grid-template-columns: 1fr;
  width: 100%;
}
.wpsl_stores_home_main #wpsl-result-list #wpsl-search-wrap .loc-top .loc-main-title h2 {
  font-size: 37px;
  font-style: normal;
  font-weight: 700;
  line-height: 46px;
  margin-bottom: 25px;
}
.wpsl_stores_home_main #wpsl-result-list #wpsl-search-wrap .loc-top .input-search-wrap-outer {
  max-width: 100%;
}
.wpsl_stores_home_main #wpsl-result-list .slick-list {
  margin: 0 -10px;
}
.wpsl_stores_home_main #wpsl-result-list .slick-list .slick-slide {
  margin: 0 10px;
}
.wpsl_stores_home_main #wpsl-result-list .viewLocations {
  max-width: 56%;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.wpsl_stores_home_main #wpsl-result-list .viewLocations a {
  width: 100%;
  padding: 19px 20px;
  font-family: "Poppins";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  margin-bottom: 0;
}

#locations {
  background-position: 25% top;
  background-size: auto 65%;
  display: flex;
}
#locations .s-inner-wrap {
  padding-top: 20px;
  padding-bottom: 0;
}
#locations .c-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
#locations .moons {
  position: relative;
  padding-bottom: 65%;
  margin: 1rem;
  width: 75%;
}
#locations .moons .moon-icon {
  position: absolute;
  color: #2E368F;
}
#locations .moons .moon-icon:first-child {
  top: 30%;
  right: 0;
  width: 25%;
}
#locations .moons .moon-icon:nth-child(2) {
  top: 0;
  left: 5%;
  width: 35%;
}
#locations .moons .moon-icon:last-child {
  bottom: 0;
  width: 45%;
}
#locations .inner-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}
#locations .location-box {
  background: #EBEBEB;
  padding: 30px;
}
#locations .location-box .location-description {
  font-size: var(--fluid-body-sm);
  color: #414042;
  margin-bottom: 0.5rem;
}

#home-news {
  padding: 30px 0 67px;
}
#home-news .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#home-news .top h2 {
  font-size: 24px;
  line-height: 32px;
  font-style: normal;
  font-weight: 700;
}
#home-news .top .all-news a {
  font-size: 16px;
  line-height: 24px;
  font-style: normal;
  font-weight: 700;
  padding: 18px 34px;
  text-transform: capitalize;
}
#home-news .news-grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 28px;
}

.c-grid,
.f-grid {
  max-width: 100%;
}

#news {
  background-color: #fff;
  position: relative;
  padding-top: 60px;
}

.archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin-left: 1rem;
  margin-right: 1rem;
}

.post-card {
  display: flex;
  flex-flow: column nowrap;
}
.post-card .post-card-image {
  position: relative;
  padding-bottom: 64%;
  width: 100%;
}
.post-card .post-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.post-card .post-card-content {
  display: flex;
  flex-flow: column nowrap;
  padding: 8px 0 0 1px;
  flex-grow: 1;
}
.post-card .post-card-title {
  padding-right: 27px;
}
.post-card .post-card-date {
  color: #B14FC5;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 3px;
}
.post-card .post-card-excerpt {
  margin-top: 0;
  font-size: var(--fluid-body-sm);
}
.post-card .post-card-link {
  display: flex;
  align-items: center;
  color: #8DC73F;
  margin-left: 0;
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-top: 10px;
}
.post-card .post-card-link .arrow-icon {
  font-size: 21px;
  margin-left: 7px;
}
.post-card .post-card-link .arrow-icon svg {
  height: 0.8em;
  transition: transform 0.3s ease, color 0.3s ease;
  transform: translateX(0);
}
.post-card .post-card-link:hover .arrow-icon svg, .post-card .post-card-link:active .arrow-icon svg, .post-card .post-card-link:focus .arrow-icon svg {
  transform: translateX(10px);
  color: #2E368F;
}
.post-card .post-card-link:active {
  color: #2E368F;
}

.single-post {
  background-color: #fff;
  position: relative;
}
.single-post .single-post-content {
  display: flex;
  flex-flow: column nowrap;
  width: 65ch;
  max-width: 100%;
  margin: 0 auto;
}
.single-post .post-top-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: var(--fluid-body-sm);
}
.single-post .post-top-bar .author-wrap {
  display: flex;
  justify-content: space-between;
}
.single-post .post-top-bar .author-wrap .author-img {
  border: 1px solid #000000;
  border-radius: 500px;
  height: 3em;
  width: 3em;
  overflow: hidden;
  margin-right: 1em;
}
.single-post .post-top-bar .author-wrap .author-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.single-post .post-top-bar .author-wrap .author-name {
  font-weight: 600;
}
.single-post .post-top-bar .author-wrap .post-date {
  color: #414042;
}
.single-post .post-image {
  display: flex;
  width: 100%;
  margin: 1.5rem 0;
}
.single-post .post-image img {
  width: 100%;
}

.program-single-section .s-inner-wrap {
  padding-top: 20px;
}
.program-single-section .program-breadcrumbs {
  margin-bottom: 1rem;
  font-size: var(--fluid-body-sm);
}
.program-single-section .program-breadcrumbs .breadcrumb_last {
  color: #B04EC4;
  font-weight: 600;
}
.program-single-section .f-grid {
  display: flex;
  flex-flow: column nowrap;
}
.program-single-section .sidebar-wrapper {
  background-color: #EBEBEB;
  width: 100%;
  max-width: 100%;
  padding: 1.2em 2em;
  flex-shrink: 0.1;
  align-self: flex-start;
  margin-bottom: 1.5rem;
}
.program-single-section .sidebar-wrapper ul {
  margin: 0;
  list-style: none;
  padding-left: 0;
  display: none;
}
.program-single-section .sidebar-wrapper ul li {
  padding-bottom: 0.6em;
}
.program-single-section .program-single-content {
  width: 100%;
}

.select-wrap {
  display: flex;
  flex-flow: column nowrap;
}
.select-wrap label {
  visibility: hidden;
  display: none;
}
.select-wrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 13.5 7.7%27><path d=%27M6.7 5.4L11.8.3a1 1 0 011.4 0 1 1 0 010 1.3L7.4 7.4a1 1 0 01-1.3 0L.3 1.8A1 1 0 011.6.3z%27 fill=%27%23b04ec4%27/></svg>") no-repeat;
  background-size: 16px;
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
  border: none;
  outline: none;
  background-color: #EBEBEB;
  color: #2E368F;
  font-weight: 600;
  font-size: var(--fluid-body);
}

.services-single {
  position: relative;
  background-color: #fff;
  padding-top: 60px;
}

#wpsl-result-list #wpsl-stores {
  height: auto !important;
}
#wpsl-result-list #wpsl-stores ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 19px;
}
#wpsl-result-list #wpsl-stores [data-store-id] {
  border-bottom: unset;
  padding: 0 !important;
  display: flex;
  flex-flow: column nowrap;
}
#wpsl-result-list #wpsl-stores [data-store-id] .wpsl-store-location {
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 200px;
  border: 1px solid #2E3192;
  transition: all 0.5s ease;
}
#wpsl-result-list #wpsl-stores [data-store-id] .service-outer:hover .wpsl-street {
  color: #fff !important;
}
#wpsl-result-list #wpsl-stores [data-store-id] .service-outer:hover .wpsl-store-location {
  background-color: #B14FC5;
  border: 1px solid #B14FC5;
}
#wpsl-result-list #wpsl-stores [data-store-id] .service-outer:hover .title, #wpsl-result-list #wpsl-stores [data-store-id] .service-outer:hover .services-tag, #wpsl-result-list #wpsl-stores [data-store-id] .service-outer:hover .service-list {
  color: #fff;
}
#wpsl-result-list #wpsl-stores [data-store-id] .service-outer:hover .wpsl-direction-wrap, #wpsl-result-list #wpsl-stores [data-store-id] .service-outer:hover .location-link {
  color: #fff;
}
#wpsl-result-list #wpsl-stores [data-store-id] .store-image-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  order: 1;
}
#wpsl-result-list #wpsl-stores [data-store-id] .store-image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 200px;
  max-height: 300px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: cover;
     object-fit: cover;
}
#wpsl-result-list #wpsl-stores [data-store-id] .store-image-wrap strong {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 90%;
  padding: 10px;
  color: white;
  background: #2E368F;
}
#wpsl-result-list #wpsl-stores [data-store-id] .store-image-wrap strong a {
  color: white;
}
#wpsl-result-list #wpsl-stores [data-store-id] .location-card-info-wrap {
  display: flex;
  flex-flow: column nowrap;
  padding: 30px 20px 25px;
  flex-grow: 1;
}
#wpsl-result-list #wpsl-stores [data-store-id] .location-card-info-wrap .title {
  color: #2E3192;
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
}
#wpsl-result-list #wpsl-stores [data-store-id] .location-card-info-wrap .wpsl-street-address {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
  flex-wrap: wrap;
  flex-direction: row;
}
#wpsl-result-list #wpsl-stores [data-store-id] .location-card-info-wrap .wpsl-street-address .wpsl-street {
  color: #B04EC4;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#wpsl-result-list #wpsl-stores [data-store-id] .location-card-info-wrap .left-bottom {
  -moz-column-count: 2;
       column-count: 2;
}
#wpsl-result-list #wpsl-stores [data-store-id] .services-tag {
  margin-top: 12px;
  color: #000;
  font-family: "Poppins";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
#wpsl-result-list #wpsl-stores [data-store-id] .service-list {
  margin-bottom: 17px;
  color: #000;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -moz-column-count: 2;
       column-count: 2;
}
#wpsl-result-list #wpsl-stores [data-store-id] .service-list span {
  display: flex;
}
#wpsl-result-list #wpsl-stores [data-store-id] .wpsl-direction-wrap {
  margin-top: auto;
  color: #000;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#wpsl-result-list #wpsl-stores [data-store-id] .location-link {
  display: flex;
  align-items: center;
  color: #8DC73F;
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
#wpsl-result-list #wpsl-stores [data-store-id] .location-link .arrow-icon {
  margin-left: 0.5em;
}
#wpsl-result-list #wpsl-stores [data-store-id] .location-link .arrow-icon svg {
  height: 0.9em;
  transition: transform 0.3s ease, color 0.3s ease;
  transform: translateX(0);
}
#wpsl-result-list #wpsl-stores [data-store-id] .location-link:hover .arrow-icon svg, #wpsl-result-list #wpsl-stores [data-store-id] .location-link:active .arrow-icon svg, #wpsl-result-list #wpsl-stores [data-store-id] .location-link:focus .arrow-icon svg {
  transform: translateX(5px);
  color: #2E368F;
}
#wpsl-result-list #wpsl-stores [data-store-id] .location-link:active {
  color: #2E368F;
}

.location-results-title {
  margin-top: 2rem;
  display: none;
}

#wpsl-search-wrap {
  background: unset;
  padding-bottom: 0;
}
#wpsl-search-wrap div {
  margin-right: 0px;
}
#wpsl-search-wrap form {
  background: unset;
}
#wpsl-search-wrap form .wpsl-input {
  display: flex;
  flex-flow: column;
  margin: 0;
}
#wpsl-search-wrap form .wpsl-input > div {
  margin-right: 0;
}
#wpsl-search-wrap form label {
  display: flex;
  color: #000;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  width: 100%;
  margin-bottom: 19px;
}
#wpsl-search-wrap form .input-search-wrap {
  display: flex;
  width: 100%;
  max-width: 100%;
  position: relative;
  margin-right: 0;
}
#wpsl-search-wrap form .input-search-wrap #wpsl-search-input {
  border: 1px solid #B14FC5;
  width: 100%;
  border-radius: 0;
  flex-grow: 1;
  font-size: 12px;
  padding: 21px 15px;
  border-left: 0;
  outline: 0;
  display: block;
}
#wpsl-search-wrap form .input-search-wrap .wpsl-search-btn-wrap {
  margin-top: 0;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  margin-right: 0;
}
#wpsl-search-wrap form .input-search-wrap .wpsl-search-btn-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background-image: url(/wp-content/themes/posturepress2-child/dist/images/search-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: filter 0.3s ease;
  cursor: pointer;
  pointer-events: none;
}
#wpsl-search-wrap form .input-search-wrap .wpsl-search-btn-wrap:hover::after {
  filter: brightness(2.3);
}
#wpsl-search-wrap form .input-search-wrap #wpsl-search-btn {
  font-size: var(--fluid-body-sm);
  padding: 15px 20px;
  margin: 0;
  border: unset;
  border-radius: 0;
  background: transparent;
  transition: background-color 0.3s ease;
  color: white;
  font-weight: bold;
  height: 100%;
  box-shadow: none;
  opacity: 0;
  width: 100%;
}
#wpsl-search-wrap .loc-top {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin-right: 0;
  width: 100%;
}
#wpsl-search-wrap .loc-top .loc-main-title {
  max-width: 85%;
  margin-right: 0;
}
#wpsl-search-wrap .loc-top .loc-main-title h2 {
  font-size: 38px;
  line-height: 46px;
  font-style: normal;
  font-weight: 700;
}
#wpsl-search-wrap .loc-top .input-search-wrap-outer {
  display: flex;
  max-width: 100%;
  margin-right: 0;
}
#wpsl-search-wrap .loc-top #wpsl-category {
  margin-right: 0;
  margin-bottom: 0;
  z-index: 2;
}
#wpsl-search-wrap .loc-top #wpsl-category label {
  display: none;
}
#wpsl-search-wrap .loc-top #wpsl-category .wpsl-dropdown {
  background-color: #B14FC5;
  border: 1px solid #B14FC5;
  border-radius: 0;
  width: 150px !important;
}
#wpsl-search-wrap .loc-top #wpsl-category .wpsl-dropdown .wpsl-selected-item {
  color: #fff;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 19.5px 21px !important;
}
#wpsl-search-wrap .loc-top #wpsl-category .wpsl-dropdown .wpsl-selected-item::after {
  border: 0;
  background-image: url(/wp-content/themes/posturepress2-child/dist/images/dropdown-arrow.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 10px;
  transition: all 0.3s ease;
  margin-top: -4px;
}
#wpsl-search-wrap .loc-top #wpsl-category .wpsl-dropdown.wpsl-active .wpsl-selected-item::after {
  transform: rotate(180deg);
}
#wpsl-search-wrap .loc-top #wpsl-category .wpsl-dropdown ul li {
  display: flex;
  align-items: center;
}
#wpsl-search-wrap .loc-top #wpsl-category #wpsl-category-list {
  color: #fff;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 19.5px 10px !important;
  outline: 0;
}

.loadlocations {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.loadlocations .fancy-btn.hidden, .loadlocations .wp-block-button .hidden.wp-block-button__link, .wp-block-button .loadlocations .hidden.wp-block-button__link, .loadlocations .fluentform form .hidden.ff-btn, .fluentform form .loadlocations .hidden.ff-btn {
  opacity: 0;
}
.loadlocations a.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.locations-header {
  background-image: url(/wp-content/themes/posturepress2-child/dist/images/locations-header.jpg) !important;
}

#wpsl-wrap {
  overflow: visible;
}
#wpsl-wrap .wpsl-search {
  background: unset;
  margin-bottom: 42px;
  padding: 0;
}
#wpsl-wrap #wpsl-result-list {
  margin: 42px 0 0 0;
}

#programs-archive .f-grid {
  display: flex;
  flex-flow: column-reverse nowrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.program-list-wrapper {
  max-width: 100%;
}

.program-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 350px;
  max-width: 100%;
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}
.program-list .program-box {
  display: flex;
  flex-flow: column nowrap;
  border: 3px solid currentColor;
  margin-top: 30px;
  color: #B04EC4;
  text-align: center;
  padding: 10px;
  transition: color 0.5s ease;
  height: calc(100% - 30px);
}
.program-list .program-box .program-icon {
  margin-top: -40px;
  align-self: center;
  background: white;
  padding: 5px;
}
.program-list .program-box .program-icon svg {
  height: 75px;
  transition: transform 0.5s ease;
}
.program-list .program-box .program-icon svg path {
  stroke: #B04EC4;
}
.program-list .program-box div {
  margin-top: 5px;
  color: #B04EC4;
  font-size: var(--fluid-body-sm);
}
.program-list .program-box:hover, .program-list .program-box:focus {
  color: #4650c3;
}
.program-list .program-box:hover svg, .program-list .program-box:focus svg {
  transform: scale(1.08);
}
.program-list .program-box:active {
  color: #2E368F;
}

.events-archive-header {
  background-image: url(/wp-content/themes/posturepress2-child/dist/images/events-header.jpg);
}

#events {
  background-color: #fff;
  position: relative;
  padding-top: 60px;
}

.archive-events .archive-events-container {
  background-position: center center;
  background-size: cover;
  min-height: 400px;
  margin: 1.4rem auto;
  width: 1400px;
  max-width: 100%;
}
.archive-events .archive-events-container .s-inner-wrap {
  width: 100%;
  max-width: initial;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.archive-events .archive-events-container .s-inner-wrap .no-event {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 85px;
}
.archive-events .archive-events-container .s-inner-wrap .no-event .no-event-icon {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-end;
  flex-basis: 0;
}
.archive-events .archive-events-container .s-inner-wrap .no-event .no-event-icon svg {
  height: 100px;
  width: 100px;
}
.archive-events .archive-events-container .s-inner-wrap .no-event .no-event-icon svg g {
  stroke: #2e3192;
}
.archive-events .archive-events-container .s-inner-wrap .no-event .no-event-text {
  display: flex;
  flex-flow: column nowrap;
  flex-grow: 1;
  justify-content: space-evenly;
  flex-basis: 0;
  max-width: 400px;
  margin: 4px 0 0 60px;
}
.archive-events .archive-events-container .s-inner-wrap .no-event .no-event-text h4 {
  line-height: 2rem;
  margin: 0;
  padding: 0;
}
.archive-events .archive-events-container .s-inner-wrap .f-grid {
  display: flex;
  flex-flow: wrap-reverse;
  align-items: flex-start;
  gap: 30px;
  padding: 0 2em;
}
.archive-events .archive-events-container .s-inner-wrap .posts-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
}
.archive-events .archive-events-container .s-inner-wrap .posts-wrapper > .row {
  display: flex;
  width: 100%;
  margin-bottom: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
  padding-right: 1em;
  gap: 1em;
  flex-wrap: wrap;
}
.archive-events .archive-events-container .s-inner-wrap .posts-wrapper > .row .col {
  width: 100%;
  margin-bottom: 1em;
}
.archive-events .archive-events-container .s-inner-wrap .posts-wrapper > .row .col .title-area {
  margin-bottom: 1em;
}
.archive-events .archive-events-container .s-inner-wrap .posts-wrapper > .row .event-posts {
  width: 100%;
}
.archive-events .archive-events-container .s-inner-wrap .posts-wrapper > .row .event-posts.scroll-posts {
  position: relative;
  padding-bottom: 1em;
  border-bottom: 1px solid #EBEBEB;
}
.archive-events .archive-events-container .s-inner-wrap .posts-wrapper > .row .event-posts.scroll-posts .posts-area {
  position: relative;
}
.archive-events .archive-events-container .s-inner-wrap .posts-wrapper > .row .event-posts.scroll-posts .posts-area .no-event {
  margin-top: 2.5em;
  padding: 1em 0;
}
.archive-events .archive-events-container .s-inner-wrap .posts-wrapper > .row .event-posts.scroll-posts .c-grid {
  position: relative;
  height: 300px;
  overflow-y: scroll;
  padding-top: 1em;
  padding-bottom: 1em;
}
.archive-events .archive-events-container .s-inner-wrap .posts-wrapper > .row .event-posts .term-title-link * {
  display: flex;
  align-items: center;
  gap: 4px;
}
.archive-events .archive-events-container .s-inner-wrap .posts-wrapper > .row .event-posts .term-title-link:hover .text {
  opacity: 0.8;
}
.archive-events .archive-events-container .s-inner-wrap .posts-wrapper > .row .event-posts .term-title-link:hover .icon {
  text-decoration: none;
}
.archive-events .archive-events-container .s-inner-wrap .posts-wrapper > .row .event-posts .term-title-link .icon {
  font-size: 0.5em;
}

.sidebar-wrapper {
  background-color: #EBEBEB;
  width: 100%;
  max-width: 100%;
  padding: 1.2em 2em;
  flex-shrink: 0.1;
  align-self: flex-start;
  margin-bottom: 1.5rem;
}
.sidebar-wrapper ul {
  margin: 0;
  list-style: none;
  padding-left: 0;
  display: none;
}
.sidebar-wrapper ul li {
  padding-bottom: 0.6em;
}

.c-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.c-grid.row-layout {
  grid-template-columns: 1fr;
}
.c-grid.row-layout .simplebar-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.c-grid.row-layout .event-card {
  background: white;
}
.c-grid.row-layout .event-card .image .headline-text {
  font-size: 14px;
  height: 100%;
}
.c-grid.row-layout .event-card .image .headline-text .date {
  font-size: inherit;
}
.c-grid.slider-layout {
  position: relative;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  padding-left: 3em;
  padding-right: 3em;
  padding-bottom: 1em;
  justify-content: center;
}
.c-grid.slider-layout .splide__arrow {
  position: absolute;
  top: 40%;
  color: #2E368F;
  border: none;
  background: none;
}
.c-grid.slider-layout .splide__arrow:hover {
  opacity: 0.8;
}
.c-grid.slider-layout .splide__arrow.splide__arrow--prev {
  left: 0em;
  transform: scaleX(-1);
}
.c-grid.slider-layout .splide__arrow.splide__arrow--next {
  right: 0em;
}
.c-grid.slider-layout .splide__track {
  width: 100%;
  overflow: hidden;
}
.c-grid.slider-layout .splide__track .splide__list {
  display: flex;
  width: 100%;
  padding-left: 0;
  gap: 1rem;
}
.c-grid.slider-layout .splide__track .splide__list .event-card {
  width: 300px;
  flex-shrink: 0;
}
.c-grid.slider-layout .splide__pagination {
  display: flex;
  list-style: none;
  gap: 0.25em;
}
.c-grid.slider-layout .splide__pagination .splide__pagination__page {
  padding: 0.5em;
  border-radius: 1000px;
  border: none;
}
.c-grid.slider-layout .splide__pagination .splide__pagination__page.is-active {
  background: #2E368F;
}
.c-grid.slider-layout .splide__sr {
  display: none;
}

.event-card {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 350px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
  flex-direction: column;
  flex-wrap: wrap;
}
.event-card.row {
  max-width: initial;
  flex-direction: row;
  flex-wrap: nowrap;
}
.event-card.row .image {
  width: 35%;
  height: auto;
  flex-shrink: 0;
  background: none !important;
}
.event-card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  flex-grow: 1;
}
.event-card .card-content .card-excerpt {
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
  color: #414042;
  line-height: 1.5;
  font-size: 14px;
}
.event-card .card-content .card-link {
  display: flex;
  justify-content: flex-end;
  color: #B04EC4;
  margin-left: auto;
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
  font-size: 15px;
}
.event-card .card-content .card-link .arrow-icon {
  margin-left: 0.5em;
}
.event-card .card-content .card-link .arrow-icon svg {
  height: 0.8em;
  transition: transform 0.3s ease, color 0.3s ease;
  transform: translateX(0);
}
.event-card .card-content .card-link:hover .arrow-icon svg, .event-card .card-content .card-link:active .arrow-icon svg, .event-card .card-content .card-link:focus .arrow-icon svg {
  transform: translateX(10px);
  color: #2E368F;
}
.event-card .card-content .card-link:active {
  color: #2E368F;
}
.event-card .image {
  height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  width: 100%;
}
.event-card .image .featured-tag {
  font-size: 12px;
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  padding: 0.5em 1em;
  background: #2E368F;
}
.event-card .image .headline-text {
  background: #2E368F;
  color: #ffffff;
  padding: 1rem 1rem 0.5rem;
  font-weight: bold;
  font-family: "Poppins";
  width: 85%;
}
.event-card .image .headline-text span {
  width: 100%;
  display: block;
  font-size: 16px;
  font-weight: normal;
}
.event-card .image .headline-text span {
  font-size: 12px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2em;
  margin-bottom: 2em;
  gap: 1em;
}

#myElement {
  max-width: 800px;
  height: 150px;
}

.simplebar-scrollbar::before {
  background-color: #2E368F;
}

[data-simplebar] {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
}
[data-simplebar]::-webkit-scrollbar {
  display: none;
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  border-bottom: 1px solid #f0f0f0;
}
.events-table th,
.events-table td {
  border: none;
  padding: 10px;
}
.events-table tr:nth-child(odd):not(.head-row) {
  background-color: white;
}
.events-table tr:nth-child(even),
.events-table .head-row {
  background-color: #f0f0f0;
}

.single-event {
  background-color: #fff;
  position: relative;
  padding-top: 60px;
}
.single-event .f-grid {
  display: flex;
  flex-flow: wrap-reverse;
  align-items: flex-start;
  gap: 30px;
}
.single-event .f-grid .sidebar-wrapper {
  width: 380px;
  padding: 1.2em;
  padding-top: 0;
  background-color: transparent;
  border-left: 1px solid #EBEBEB;
}
.single-event .event-content {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  margin-left: 0;
}
.single-event .essential-details-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  border-bottom: 1px solid #EBEBEB;
  gap: 30px;
  padding: 1em;
}
.single-event .essential-details-box .detail-item .detail-field {
  font-size: 16px;
  margin: 0;
  font-weight: bold;
}
.single-event .external-link {
  display: inline-block;
  background-color: #EBEBEB;
  padding: 1em;
}
.single-event .single-event-title {
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
  color: #2E368F;
  width: 100%;
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 0.35em;
}
.single-event .eyebrow {
  font-size: 14px;
  font-weight: medium;
  margin-bottom: 0;
  margin-top: 0;
}
.single-event .date-tag {
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
  color: #414042;
  width: 100%;
}
.single-event .venue-tag {
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
  color: #B04EC4;
  font-weight: bold;
  font-size: var(--fluid-h5);
}
.single-event #event-breadcrumbs {
  margin-top: 0;
}
.single-event .event-featured-image {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 0;
  margin-bottom: 1rem;
  align-self: center;
}
.single-event .additional-events {
  display: flex;
  flex-flow: row wrap;
  margin-top: 2rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.single-event .additional-events .cell {
  padding: 0.5rem;
  flex-basis: 100%;
}
.single-event .additional-events h4 {
  width: 100%;
  margin-bottom: 1rem;
  text-align: center;
  color: #000000;
}
.single-event .content {
  border-bottom: 1px solid #EBEBEB;
  padding: 1em;
  width: 100%;
}

.sidebar-wrapper .c-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.sidebar-wrapper .c-grid.row-layout {
  grid-template-columns: 1fr;
}
.sidebar-wrapper .c-grid.row-layout .event-card {
  background: white;
}
.sidebar-wrapper .c-grid.row-layout .event-card.row {
  flex-wrap: wrap;
}
.sidebar-wrapper .c-grid.row-layout .event-card .image {
  width: 100%;
  background: none !important;
}

.location-single {
  background-color: #fff;
  position: relative;
  padding-top: 60px;
}
.location-single .c-grid {
  display: grid;
  flex-flow: column nowrap;
  grid-template-columns: 1fr;
  grid-gap: 30px;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.location-single .c-grid .cell {
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
}
.location-single .image-cell {
  max-width: 100%;
}
.location-single .image-cell img {
  width: 400px;
  max-width: 100%;
}
.location-single .inner-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  max-width: 100%;
}
.location-single .service-list ul {
  padding-left: 0;
  margin-top: 0.5rem;
  list-style: none;
}
.location-single .cell-title {
  display: flex;
  align-items: center;
}
.location-single .cell-title .icon {
  margin-right: 0.4em;
  display: flex;
  align-items: center;
}
.location-single .cell-title .icon svg {
  height: 1.5em;
  color: #B04EC4;
}
.location-single .directions-wrap {
  margin-top: 2rem;
}
.location-single .directions-wrap .fancy-btn, .location-single .directions-wrap .wp-block-button .wp-block-button__link, .wp-block-button .location-single .directions-wrap .wp-block-button__link, .location-single .directions-wrap .fluentform form .ff-btn, .fluentform form .location-single .directions-wrap .ff-btn {
  display: inline-flex;
  align-items: center;
}
.location-single .directions-wrap .fancy-btn .icon svg, .location-single .directions-wrap .wp-block-button .wp-block-button__link .icon svg, .wp-block-button .location-single .directions-wrap .wp-block-button__link .icon svg, .location-single .directions-wrap .fluentform form .ff-btn .icon svg, .fluentform form .location-single .directions-wrap .ff-btn .icon svg {
  height: 1.2em;
  margin-right: 0.5em;
  color: #B04EC4;
}

.error404 #heroSection {
  background: url(/wp-content/themes/posturepress2-child/dist/images/fourohfour-background.jpg) no-repeat top center;
  background-size: cover;
  max-width: 1200px;
  margin: 0 auto 2rem;
}
.error404 #heroSection .page-header {
  background-image: none;
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
}
.error404 #heroSection .page-header .page-title {
  min-width: 40%;
}
.error404 #heroSection .text {
  margin-left: 3rem;
}
.error404 #heroSection .text h2 {
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
}
.error404 #heroSection .text p {
  color: #414042;
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
  font-weight: bold;
  max-width: 300px;
}
.error404 #heroSection a {
  margin-left: 3rem;
  margin-top: 3rem;
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
  font-weight: normal;
}
.error404 #heroSection a:hover {
  color: #ffffff;
}

.search-results h2.entry-title {
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
}
.search-results p {
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
}
.search-results .card-link {
  display: flex;
  justify-content: flex-end;
  color: #B04EC4;
  margin-left: auto;
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
  font-size: 15px;
}
.search-results .card-link .arrow-icon {
  margin-left: 0.5em;
}
.search-results .card-link .arrow-icon svg {
  height: 0.8em;
  transition: transform 0.3s ease, color 0.3s ease;
  transform: translateX(0);
}
.search-results .card-link:hover .arrow-icon svg, .search-results .card-link:active .arrow-icon svg, .search-results .card-link:focus .arrow-icon svg {
  transform: translateX(10px);
  color: #2E368F;
}
.search-results .card-link:active {
  color: #2E368F;
}

.page-template-password-protected .body-controller {
  min-height: auto;
}
.page-template-password-protected .providers-header {
  background-image: url(/wp-content/themes/posturepress2-child/dist/images/providers-header.jpg);
}
.page-template-password-protected h2 {
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
}
.page-template-password-protected .header-content {
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
  color: #414042;
}
.page-template-password-protected .header-content {
  font-size: 12px;
}
.page-template-password-protected h3 {
  color: #ffffff;
  font-family: "Open Sans", -apple-system, "Ubuntu", sans-serif;
  margin-bottom: 2rem;
}
.page-template-password-protected h3 {
  font-size: 20px;
}

#location-categories #wpsl-search-wrap {
  display: none;
}
#location-categories .location-title span {
  font-weight: 500;
  color: #B04EC4;
}

.services-list {
  background-color: #2E368F;
  padding: 25px 0 27px;
  position: relative;
  z-index: 1;
}
.services-list .top h2 {
  color: #fff;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 29px;
}
.services-list .grid-wrap ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.services-list .grid-wrap ul li {
  width: 100%;
}
.services-list .grid-wrap ul li a {
  display: flex;
  align-items: center;
  align-content: center;
}
.services-list .grid-wrap ul li .program-icon {
  width: 35px;
  max-height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.services-list .grid-wrap ul li .program-icon::before{
  float: left;
  padding-top: 100%;
  content: '';
}
.services-list .grid-wrap ul li .program-icon::after{
  display: block;
  content: '';
  clear: both;
}
.services-list .grid-wrap ul .program-box {
  display: flex;
  justify-content: start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  color: #fff;
}
.services-list .grid-wrap ul .program-box i.program-icon {
  width: 100%;
  height: auto;
  max-width: 30px;
  max-height: 30px;
}
.services-list .grid-wrap ul .program-box i.program-icon svg {
  height: 100%;
  width: 100%;
}
.services-list .grid-wrap ul .program-box:hover svg {
  color: #b14fc5;
  transition: all 0.3s ease;
}
.services-list .grid-wrap ul .program-box:hover svg g path {
  stroke: #b14fc5;
}
.services-list .grid-wrap ul .program-box:hover div {
  color: #b14fc5;
  transition: all 0.3s ease;
}

.resource-navigator {
  background-color: #B14FC5;
}
.resource-navigator .resource-navigator-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7vw;
  flex-direction: column;
  margin: 0 auto;
}
.resource-navigator .left-cell {
  width: 100%;
  max-width: 32em;
  height: auto;
}
.resource-navigator .left-cell h3 {
  color: white;
}
.resource-navigator .right-cell {
  width: 100%;
  max-width: 10em;
  height: auto;
}

.services-blocks .s-service-cell {
  padding: 64px 0;
}
.services-blocks .s-service-cell .s-inner-wrap {
  overflow: visible;
}
.services-blocks .s-service-cell .row-service {
  display: grid;
  grid-template-columns: 100%;
}
.services-blocks .s-service-cell .row-service .left-cell {
  width: 100%;
  display: flex;
  align-items: end;
  position: relative;
}
.services-blocks .s-service-cell .row-service .left-cell .icon-right,
.services-blocks .s-service-cell .row-service .left-cell .icon-left {
  position: absolute;
}
.services-blocks .s-service-cell .row-service .left-cell .icon-left {
  width: 320px;
  bottom: -8%;
  left: 5%;
  color: #2e3192;
}
.services-blocks .s-service-cell .row-service .left-cell .icon-right {
  width: 81px;
  top: 112px;
  color: #8dc73f;
  transform: rotate(20deg);
}
.services-blocks .s-service-cell .row-service .right-cell {
  padding: 34px 30px 42px 20px;
}
.services-blocks .s-service-cell .row-service .right-cell h2 {
  color: #fff;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 0;
}
.services-blocks .s-service-cell .row-service .right-cell p {
  margin: 25px 0 16px;
  color: #fff;
}
.services-blocks .s-service-cell:nth-child(4n+1) .s-inner-wrap {
  background-color: #B14FC5;
  padding: 0;
}
.services-blocks .s-service-cell:nth-child(4n+1) .s-inner-wrap .left-cell {
  max-width: 500px;
  display: none;
}
.services-blocks .s-service-cell:nth-child(4n+1) .s-inner-wrap .left-cell .icon-right {
  right: -4%;
}
.services-blocks .s-service-cell:nth-child(4n+3) .s-inner-wrap {
  background-color: #2e3192;
  padding: 0;
}
.services-blocks .s-service-cell:nth-child(4n+3) .s-inner-wrap .left-cell {
  padding-left: 0;
  max-width: 517px;
  display: none;
}
.services-blocks .s-service-cell:nth-child(4n+3) .s-inner-wrap .left-cell .icon-right {
  right: 7%;
}
.services-blocks .f-service-cell {
  position: relative;
  padding: 30px 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.services-blocks .f-service-cell .overlay {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
  background: linear-gradient(90deg, #fff 45%, #ed7f2800 70%);
}
.services-blocks .f-service-cell .left-cell {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  z-index: 1;
}
.services-blocks .f-service-cell::after {
  content: "";
  position: absolute;
  width: 10%;
  height: calc(100% + 0px);
  top: 50%;
  transform: translateY(-50%) scale(-1);
  right: 0;
  z-index: 2;
}
.services-blocks .f-service-cell .s-inner-wrap {
  position: relative;
  overflow: visible;
}
.services-blocks .f-service-cell .s-inner-wrap .icon-right,
.services-blocks .f-service-cell .s-inner-wrap .icon-left {
  position: absolute;
  color: #ebebeb;
}
.services-blocks .f-service-cell .s-inner-wrap .icon-left {
  width: 208px;
  bottom: -10%;
  left: 0;
}
.services-blocks .f-service-cell .s-inner-wrap .icon-right {
  width: 81px;
  right: -4%;
  top: -10px;
  transform: rotate(20deg);
}
.services-blocks .f-service-cell .s-inner-wrap .right-col {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: auto;
  display: none;
  overflow: hidden;
}
.services-blocks .f-service-cell .s-inner-wrap .right-col img {
  width: 100%;
  height: auto;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-blocks .f-service-cell .s-inner-wrap .right-col::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 102%;
  top: 0;
  z-index: 1;
  background: linear-gradient(90deg, #ffffff 20%, #ffffff00, #ffffffff);
}

.video-resources {
  background-color: #fff;
  position: relative;
  padding: 35px 0px;
}
.video-resources .language-select {
  margin-bottom: 2em;
}
.video-resources .language-select .language-select-inner .language-select-form select {
  background-color: #B14FC5;
  color: white;
  padding: 15px 12px;
  font-size: 1em;
  text-transform: capitalize;
  border: 2px solid #B14FC5;
}
.video-resources .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 15px;
  margin: 0.8em auto 3.5em;
}
.video-resources .wrapper .video-card .thumbnail {
  position: relative;
  cursor: pointer;
}
.video-resources .wrapper .video-card .thumbnail img {
  width: 100%;
}
.video-resources .wrapper .video-card .thumbnail .overlay {
  content: "";
  background-color: #b14fc547;
  align-items: center;
  bottom: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  margin: auto;
  opacity: 1;
  padding-top: 10%;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  transition: 0.25s;
  width: 100%;
}
.video-resources .wrapper .video-card .thumbnail:hover .overlay {
  opacity: 1;
  padding: 0;
}
.video-resources .wrapper .video-card h3 {
  margin-top: 9px;
  margin-bottom: 0;
  font-size: 1.2em;
  line-height: 1.2em;
}
.video-resources .wrapper .video-card .duration {
  color: #B14FC5;
  font-family: "Poppins";
  font-size: 0.8em;
  font-style: normal;
  font-weight: 700;
}
.video-resources .wrapper .video-card p {
  margin-top: 9px;
  color: #000;
  font-family: "Open Sans";
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  line-height: 1em;
}
.video-resources .wrapper .modal {
  position: fixed;
  z-index: 10000;
  /* 1 */
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
}
.video-resources .wrapper .modal.is-visible {
  visibility: visible;
}
.video-resources .wrapper .modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.video-resources .wrapper .modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.video-resources .wrapper .modal-wrapper {
  position: absolute;
  z-index: 9999;
  top: 10%;
  left: 0;
  right: 0;
  width: 92%;
  max-width: 1280px;
  margin: 1em auto;
  background-color: #fff;
  box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.35);
}
.video-resources .wrapper .modal-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}
.video-resources .wrapper .modal.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}
.video-resources .wrapper .modal-content {
  padding: 5px;
}
.video-resources .wrapper .modal-content .vimeo-embed-container {
  overflow: hidden;
  position: relative;
  transform-origin: center;
  width: 100%;
  padding-top: 56.25%;
}
.video-resources .wrapper .modal-content .vimeo-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.video-resources .wrapper .modal-content .vimeo-embed-container .play-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  transition: 1s;
  width: 100%;
  z-index: 1;
}
.video-resources .wrapper .modal-content .vimeo-embed-container .play-overlay.playing {
  opacity: 0;
  z-index: -1;
}
.video-resources .wrapper .modal-header {
  position: relative;
  background-color: #fff;
  padding: 1px;
}
.video-resources .wrapper .modal-close {
  position: absolute;
  top: -22px;
  right: -20px;
  padding: 5px;
  color: #aaa;
  background: #eee;
  border-radius: 50px;
  border: 0;
  cursor: pointer;
}
.video-resources .wrapper .modal-close:hover {
  color: #777;
}

.wpum-form, .post-password-form {
  display: flex;
  flex-direction: column;
}
.wpum-form fieldset, .post-password-form fieldset {
  padding: 0;
}
.wpum-form label, .post-password-form label {
  color: #000;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 5px;
}
.wpum-form input, .post-password-form input {
  border: 1px solid #B14FC5;
  background: #FFF;
  outline: 0;
  padding: 17.5px 23px;
  color: rgba(0, 0, 0, 0.5);
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.wpum-form .button, .post-password-form .button {
  margin-top: 41px;
  background: #8DC73F;
  border: 0;
  color: #FFF;
  font-family: "Poppins";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  padding: 18px;
  text-transform: capitalize;
  cursor: pointer;
  display: flex;
  width: 100%;
  max-width: 185px;
}

.leftCol {
  max-width: 550px;
  width: 100%;
}
.leftCol h1 {
  font-size: 52px;
  line-height: 66px;
}
.leftCol p {
  margin-top: 0;
  color: #000;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}
.leftCol .wpum-form .fieldset-privacy {
  margin-top: 22px !important;
  padding-bottom: 0;
}
.leftCol .wpum-form .fieldset-privacy .wpum-required {
  display: none;
}
.leftCol .wpum-form .fieldset-privacy .field {
  display: flex;
  justify-content: flex-start;
  gap: 21px;
  align-items: center;
}
.leftCol .wpum-form .fieldset-privacy .input-checkbox {
  width: 45px;
  height: 30px;
  border: 1px solid #B14FC5;
  padding: 0;
}
.leftCol .wpum-form .fieldset-privacy .description {
  color: #000;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  opacity: 1;
  margin: 0;
}
.leftCol .wpum-form .fieldset-privacy .description a {
  text-decoration: underline;
  color: #000;
  font-weight: 400;
}
.leftCol .wpum-form .fieldset-remember {
  display: none;
}

.outerWrap {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  width: calc(58% - 14rem);
  height: 100%;
  justify-content: flex-end;
}
.outerWrap img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wpumForm-register .leftCol {
  margin: 52px 0px;
}
.wpumForm-register .leftCol .wpum-form fieldset {
  margin-top: 35px;
}
.wpumForm-register .wpum-action-links {
  display: none;
}

.wpumForm-login .leftCol {
  margin: 58px 0px;
}
.wpumForm-login .leftCol fieldset {
  margin-bottom: 35px;
}
.wpumForm-login .form {
  display: flex;
  flex-direction: column-reverse;
}
.wpumForm-login .form .wpum-action-links {
  margin-top: 5px;
}
.wpumForm-login .form .wpum-action-links li {
  color: #000;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.wpumForm-login .form .wpum-action-links li a {
  color: #B14FC5;
}

.wpum-account-page {
  margin-bottom: 54px;
}
.wpum-account-page .wpum_one_third {
  width: 100%;
  margin-right: 0;
}
.wpum-account-page .wpum_one_third #wpum-account-forms-tabs {
  margin-bottom: 63px;
}
.wpum-account-page .wpum_one_third #wpum-account-forms-tabs ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.wpum-account-page .wpum_one_third #wpum-account-forms-tabs ul li {
  margin: 0;
  padding: 17px 15px 17px 37px;
  border-radius: 0;
  width: 32%;
  background: #EBEBEB;
}
.wpum-account-page .wpum_one_third #wpum-account-forms-tabs ul li.tab-view {
  display: none;
}
.wpum-account-page .wpum_one_third #wpum-account-forms-tabs ul li.active {
  background: #B14FC5;
}
.wpum-account-page .wpum_one_third #wpum-account-forms-tabs ul li.active a {
  color: #fff;
}
.wpum-account-page .wpum_one_third #wpum-account-forms-tabs ul li a {
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.wpum-account-page .wpum_two_third {
  width: 100%;
}
.wpum-account-page .wpum_two_third .fieldset-user_cover, .wpum-account-page .wpum_two_third .fieldset-user_nickname, .wpum-account-page .wpum_two_third .fieldset-user_displayname, .wpum-account-page .wpum_two_third .fieldset-user_website, .wpum-account-page .wpum_two_third .fieldset-user_description {
  display: none;
}
.wpum-account-page .wpum_two_third .fieldset-user_email {
  margin: 15px 0 20px;
}
.wpum-account-page .wpum_two_third .fieldset-user_firstname {
  width: calc(50% - 12px);
  display: inline-block;
  margin-right: 20px;
}
.wpum-account-page .wpum_two_third .fieldset-user_lastname {
  width: calc(49% - 5px);
  display: inline-block;
}
.wpum-account-page .wpum_two_third .button {
  margin-top: 36px;
}

#wpum-submit-password-form .fieldset-password_repeat {
  margin-top: 20px;
}

.page-template-register main, .page-template-login main {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}
.page-template-register #footer, .page-template-login #footer {
  margin: 0 !important;
}

/**
 * Job Openings Styling
 * Custom styling for WP Job Openings plugin with Coming Soon feature
 */
.jobs-section {
  margin-bottom: 40px;
}
.jobs-section:not(:first-child) {
  margin-top: 60px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 2px solid #eeeeee;
}

.coming-soon-jobs-section {
  margin-top: 60px;
}

.jobs-section-header {
  margin-bottom: 30px;
  padding: 20px 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #eeeeee;
}

.jobs-section-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}

.jobs-section-description {
  margin-bottom: 0;
  color: #707070;
}

.coming-soon-jobs-section .mfhs-vanilla-pagination {
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding: 0 15px;
}

.coming-soon-jobs-section .mfhs-vanilla-load-more {
  display: block;
  width: 100%;
  text-align: center;
  padding: 20px;
  margin: 0;
  background: #ffffff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 19px;
  color: #2E368F;
  font-weight: 600;
}
.coming-soon-jobs-section .mfhs-vanilla-load-more:hover, .coming-soon-jobs-section .mfhs-vanilla-load-more:focus {
  box-shadow: 0 3px 15px -5px rgba(0, 0, 0, 0.2);
  color: #B14FC5;
}
.coming-soon-jobs-section .mfhs-vanilla-load-more:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.coming-soon-jobs-section .mfhs-vanilla-load-more.mfhs-loading {
  position: relative;
  color: transparent;
}
.coming-soon-jobs-section .mfhs-vanilla-load-more.mfhs-loading:after {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(46, 54, 143, 0.1);
  border-top-color: rgba(46, 54, 143, 0.5);
  border-radius: 50%;
  animation: mfhs-button-loading 0.8s linear infinite;
}

@keyframes mfhs-button-loading {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 400px){
  :root {
    --fluid-h1: calc(
					32px + 14 *
						((100vw - 400px) / 800)
				);
  }
  :root {
    --fluid-h2: calc(
					30px + 8 *
						((100vw - 400px) / 800)
				);
  }
  :root {
    --fluid-h3: calc(
					28px + 4 *
						((100vw - 400px) / 800)
				);
  }
  :root {
    --fluid-h4: calc(
					26px + 0 *
						((100vw - 400px) / 800)
				);
  }
  :root {
    --fluid-h5: calc(
					18px + 2 *
						((100vw - 400px) / 800)
				);
  }
  :root {
    --fluid-h6: calc(
					16px + 2 *
						((100vw - 400px) / 800)
				);
  }
  :root {
    --fluid-body: calc(
					16px + 2 *
						((100vw - 400px) / 800)
				);
  }
  :root {
    --fluid-body-sm: calc(
					14px + 2 *
						((100vw - 400px) / 800)
				);
  }
  .event-card .image .headline-text span {
    font-size: calc(
					12px + 4 *
						((100vw - 400px) / 800)
				);
  }
  .page-template-password-protected .header-content {
    font-size: calc(
					12px + 6 *
						((100vw - 400px) / 800)
				);
  }
  .page-template-password-protected h3 {
    font-size: calc(
					20px + 14 *
						((100vw - 400px) / 800)
				);
  }
}

@media (min-width: 480px){
  .s-footer-copyright-row .inner-wrap {
    flex-flow: row nowrap;
    justify-content: space-between;
  }
  .s-footer-copyright-row .right-cell .foundation-link {
    padding-top: unset;
    margin: unset;
    margin-right: 1rem;
  }
  .programs-s .top .all-services {
    display: flex;
  }
  .programs-s .all-services.mb {
    display: none;
  }
  .wpsl_stores_home_main #wpsl-result-list .viewLocations a {
    font-size: 20px;
  }
  .archive-events .archive-events-container .s-inner-wrap .posts-wrapper > .row .col {
    width: 48%;
  }
  .services-blocks .f-service-cell .s-inner-wrap .left-cell {
    width: 38%;
  }
  .services-blocks .f-service-cell .s-inner-wrap .right-col {
    display: initial;
  }
}

@media (min-width: 510px){
  .header-nav .top-row .header-row-inner-wrap .header-link {
    flex-flow: row nowrap;
    margin-left: 1em;
  }
}

@media (min-width: 768px){
  .s-footer .s-footer-grid {
    width: 100%;
    justify-content: space-between;
  }
  .s-footer .s-footer-cell {
    width: auto;
  }
  .s-footer .s-footer-logo-container {
    width: auto;
  }
  .s-footer .s-footer-menu {
    width: auto;
  }
  .s-footer .s-footer-menu ul {
    margin-left: -1rem;
  }
  .s-footer .s-footer-menu ul {
    flex-flow: row nowrap;
  }
  .s-footer-copyright-row .right-cell {
    flex-flow: row nowrap;
  }
  .s-footer-copyright-row .right-cell .footer-socials {
    margin-top: 0;
  }
  .fancy-btn, .fluentform form .ff-btn, .wp-block-button .wp-block-button__link {
    align-self: flex-start;
  }
  .purple-btn {
    align-self: center;
  }
  .header-nav .top-row .header-row-inner-wrap .header-link {
    margin-left: 2em;
  }
  .header-nav .top-row .header-row-inner-wrap {
    justify-content: flex-end;
  }
  .default-modal .bm-card-inner {
    padding: 4rem 2rem;
  }
  .ubermenu-nav .ubermenu-submenu.ubermenu-submenu-drop .ubermenu-submenu-type-stack li a {
    font-size: 16px;
    padding-bottom: 8px;
  }
  #footer .s-inner-wrap {
    width: 1200px;
  }
  #footer .f-grid {
    flex-flow: row nowrap;
  }
  #footer .footer-copyright-row {
    padding: 14px 0;
  }
  #footer .footer-copyright-row .copyright-text,
#footer .footer-copyright-row a {
    font-size: 18px;
  }
  #footer .footer-copyright-row .policy-link {
    padding: 5px 10px;
  }
  #footer .footer-copyright-row .policy-links {
    flex-flow: row wrap;
    width: 800px;
  }
  #footer .footer-copyright-row .footer-social {
    margin-bottom: 0;
  }
  .bulleted-list-block ul {
    grid-template-columns: 1fr 1fr;
  }
  .content-block .content-block-title {
    margin-bottom: 0;
  }
  .content-block {
    padding: 30px 40px;
  }
  #get-involved .info-cell .button-row a {
    width: auto;
  }
  #get-involved .info-cell .button-row a:first-child {
    margin-right: 0;
  }
  #care-awaits .f-grid {
    grid-template-columns: 2fr 1fr;
    gap: 50px;
  }
  #care-awaits .f-grid .info-cell h2 {
    font-size: 37px;
    line-height: 46px;
  }
  #care-awaits .f-grid .button-row {
    margin-left: auto;
  }
  .general-page-single {
    padding-top: 60px;
  }
  .page-header .page-title {
    padding-left: 2em;
    min-width: 30%;
    max-width: 60%;
  }
  .page-header-hero.inner {
    padding: 76px 0 47px !important;
  }
  .page-header-hero .col-right-outer::before {
    height: calc(100% - 10px);
    width: 98%;
  }
  .county-card {
    padding: 48px 11px 38px 35px;
  }
  .awsm-filter-wrap form #job-alerts-signup-text {
    display: block;
  }
  #hero {
    background-position: center center;
    background-size: cover;
  }
  #hero .s-inner-wrap {
    padding-top: 10px;
    padding-bottom: 40px;
  }
  #hero .c-grid {
    grid-template-columns: 1.2fr 0.8fr;
    grid-gap: 30px;
  }
  #hero .content-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 90px 60px 40px 0;
  }
  #hero .content-box h1 {
    padding-right: 0;
    font-size: 32px;
    line-height: 35px;
  }
  #hero .moons {
    width: 100%;
    padding-bottom: 0;
    margin: 0;
    height: 410px;
  }
  #hero .moons .moon-icon:first-child {
    top: 42%;
    right: 12px;
    width: 20%;
  }
  #hero .moons .moon-icon:nth-child(2) {
    top: 12px;
    left: 5%;
    width: 42%;
  }
  #hero .moons .moon-icon:last-child {
    width: 87%;
    left: -7px;
    bottom: -7px;
  }
  .programs-s .top h2 {
    font-size: 37px;
    line-height: 46px;
  }
  .programs-s .top .all-services a {
    font-size: 21px;
    line-height: 28px;
  }
  .programs-s .all-services.mb a {
    font-size: 21px;
    line-height: 28px;
  }
  .programs-s .programs-carousel .slick-prev {
    left: 4%;
  }
  .programs-s .programs-carousel .slick-next {
    right: 4%;
  }
  .programs-s .programs-carousel .slick-slide .title {
    font-size: 26px;
    line-height: 34px;
    width: 80%;
  }
  #quality-care .overlay {
    background: linear-gradient(90deg, #fff 45%, #ed7f2800 70%);
  }
  #quality-care::after {
    background: linear-gradient(82deg, #FFF 23.01%, rgba(255, 255, 255, 0) 77.14%);
  }
  #quality-care::before {
    width: 10%;
  }
  #quality-care .s-inner-wrap {
    padding: 120px 20px 152px;
  }
  #quality-care .s-inner-wrap .icon-left {
    left: -6%;
  }
  #quality-care .s-inner-wrap .icon-right {
    right: -3%;
    display: initial;
  }
  #quality-care .c-grid {
    margin: 0 auto;
  }
  #quality-care .c-grid {
    width: 100%;
    grid-gap: 5em;
    grid-template-columns: 1fr 1fr;
  }
  #quality-care .c-grid .cell:last-child {
    grid-column: 2;
  }
  .wpsl_stores_home_main {
    flex-direction: row-reverse;
  }
  .wpsl_stores_home_main #wpsl-gmap {
    height: 460px !important;
    margin-top: 70px;
  }
  .wpsl_stores_home_main #wpsl-result-list .viewLocations {
    max-width: 57%;
  }
  .wpsl_stores_home_main #wpsl-result-list .viewLocations a {
    font-size: 17px;
  }
  #locations {
    background-position: center center;
    background-size: cover;
  }
  #locations .s-inner-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #locations .c-grid {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  #locations .moons {
    width: 100%;
    padding-bottom: 85%;
    margin: 0;
  }
  #locations .location-box {
    padding: 48px 11px 38px 35px;
  }
  #home-news .top h2 {
    font-size: 37px;
    line-height: 46px;
  }
  #home-news .top .all-news a {
    font-size: 21px;
    line-height: 28px;
  }
  #home-news .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .archive-grid {
    grid-template-columns: 1fr 1fr;
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .program-single-section .f-grid {
    flex-flow: row nowrap;
  }
  .program-single-section .sidebar-wrapper {
    width: 250px;
    min-height: 300px;
    margin-right: 30px;
  }
  .program-single-section .sidebar-wrapper ul {
    display: block;
  }
  .select-wrap {
    display: none;
  }
  .select-wrap.event-type-select-wrap {
    display: flex;
  }
  #wpsl-result-list #wpsl-stores ul {
    grid-template-columns: 1fr 1fr;
  }
  #wpsl-result-list #wpsl-stores [data-store-id] .wpsl-store-location {
    min-height: 270px;
  }
  #wpsl-search-wrap form .input-search-wrap #wpsl-search-input {
    font-size: 18px;
  }
  #wpsl-search-wrap .loc-top .loc-main-title h2 {
    font-size: 52px;
    line-height: 60px;
  }
  #wpsl-search-wrap .loc-top #wpsl-category .wpsl-dropdown {
    width: 200px !important;
  }
  #wpsl-search-wrap .loc-top #wpsl-category .wpsl-dropdown .wpsl-selected-item {
    font-size: 18px;
  }
  #wpsl-search-wrap .loc-top #wpsl-category #wpsl-category-list {
    font-size: 18px;
    padding: 19.5px 21px !important;
  }
  .archive-events .archive-events-container .s-inner-wrap .posts-wrapper > .row .event-posts.scroll-posts .posts-area:before, .archive-events .archive-events-container .s-inner-wrap .posts-wrapper > .row .event-posts.scroll-posts .posts-area:after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25px;
  }
  .archive-events .archive-events-container .s-inner-wrap .posts-wrapper > .row .event-posts.scroll-posts .posts-area:before {
    top: 0;
    background: linear-gradient(to bottom, white 50%, rgba(255, 255, 255, 0) 100%);
  }
  .archive-events .archive-events-container .s-inner-wrap .posts-wrapper > .row .event-posts.scroll-posts .posts-area:after {
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 50%);
  }
  .sidebar-wrapper {
    width: 100%;
  }
  .event-card {
    max-width: unset;
  }
  .single-event .additional-events .cell {
    flex-basis: 50%;
  }
  .location-single .c-grid {
    grid-template-columns: 1fr 1fr;
  }
  .location-single .inner-grid {
    width: 450px;
    grid-template-columns: 1fr 1fr;
  }
  .location-single .inner-grid .hours-cell {
    grid-column: span 2;
  }
  .services-list {
    padding: 55px 0 58px;
  }
  .services-list .top h2 {
    font-size: 37px;
    line-height: 46px;
  }
  .services-list .grid-wrap ul {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    -moz-column-gap: 41px;
         column-gap: 41px;
  }
  .resource-navigator .resource-navigator-inner {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
  }
  .services-blocks .s-service-cell .row-service {
    grid-template-columns: 45% 55%;
  }
  .services-blocks .s-service-cell .row-service .left-cell .icon-left {
    width: 348px;
    bottom: -15%;
  }
  .services-blocks .s-service-cell .row-service .right-cell {
    padding: 64px 60px 82px 0;
  }
  .services-blocks .s-service-cell .row-service .right-cell h2 {
    font-size: 37px;
    line-height: 46px;
  }
  .services-blocks .s-service-cell:nth-child(4n+1) .s-inner-wrap .left-cell {
    display: inherit;
  }
  .services-blocks .s-service-cell:nth-child(4n+3) .s-inner-wrap .left-cell {
    display: inherit;
  }
  .services-blocks .f-service-cell {
    padding: 90px 0;
    background-position: center right;
    background-size: cover;
  }
  .services-blocks .f-service-cell .left-cell {
    display: inherit;
  }
}

@media (min-width: 769px){
  .page-header-hero .f-grid {
    max-width: 45%;
  }
  .page-header-hero .col-right-outer {
    position: absolute;
    right: 0;
    max-width: 55%;
    width: 100%;
    top: 0;
    height: calc(100% + 50px);
  }
}

@media (min-width: 875px){
  .awsm-filter-wrap .awsm-filter-items {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1024px){
  #desktop-nav {
    display: flex;
  }
  #mobile-nav-button {
    display: none;
  }
  .ubermenu-nav .ubermenu-submenu .col-left-img {
    margin: 27px 0 35px 0;
  }
  .ubermenu-nav .ubermenu-submenu .menu-pr {
    margin: 55px 20px 20px;
  }
  .ubermenu-nav .ubermenu-submenu .menu-pr.left {
    margin-left: 55px;
  }
  .ubermenu-nav li.arrow-cs > .ubermenu-target {
    flex-direction: row-reverse;
  }
  #footer .logo-cell {
    margin-left: unset;
  }
  #footer .logo-cell img {
    width: 115px;
  }
  #footer .footer-copyright-row .s-inner-wrap {
    padding: 0;
  }
  #footer .footer-copyright-row .s-inner-wrap .wrap {
    flex-direction: row;
  }
  .content-block {
    padding: 30px 50px;
  }
  #get-involved {
    background-size: 48% 100%;
    background-position: top right;
  }
  #get-involved .info-cell {
    margin-bottom: 0;
  }
  #care-awaits .f-grid {
    gap: 100px;
  }
  .page-header-hero {
    padding: 24px 0 37px;
  }
  .page-header-hero.inner .info-cell {
    min-height: 129px;
  }
  .page-header-hero .f-grid {
    max-width: 50%;
  }
  .page-header-hero .col-right-outer .cell-right {
    top: -60px;
    height: 120%;
  }
  .page-header-hero .col-right-outer .moon-icon {
    position: absolute;
    max-width: 96%;
  }
  .county-card .inner-grid {
    grid-template-columns: 1.1fr 0.9fr;
    grid-gap: 30px;
  }
  .county-card .inner-grid h4 {
    font-size: 37px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
    max-width: 432px;
  }
  #hero .content-box h1 {
    padding-right: 0;
    font-size: 52px;
    line-height: 66px;
  }
  #hero .moons {
    height: 560px;
  }
  #hero .moons .moon-icon:last-child {
    left: -4%;
    width: 90%;
    bottom: -10px;
  }
  .programs-s .programs-carousel .slick-prev {
    left: 7%;
  }
  .programs-s .programs-carousel .slick-next {
    right: 7%;
  }
  .programs-s .programs-carousel .slick-slide .title {
    font-size: 31px;
    line-height: 38px;
  }
  #quality-care .c-grid {
    grid-gap: 40px;
  }
  #quality-care .info-box h2 {
    padding-right: 70px;
  }
  .wpsl_stores_home_main #wpsl-result-list .viewLocations {
    max-width: 60%;
  }
  .wpsl_stores_home_main #wpsl-result-list .viewLocations a {
    font-size: 21px;
  }
  #locations .inner-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
  }
  #locations .inner-grid .cell h4 {
    font-size: 37px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
    max-width: 75%;
  }
  #home-news .news-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .archive-grid {
    grid-template-columns: 1fr 1fr 1fr;
    margin-left: 4rem;
    margin-right: 4rem;
  }
  .program-single-section .sidebar-wrapper {
    width: 275px;
  }
  .select-wrap.event-type-select-wrap {
    display: none;
  }
  #wpsl-result-list #wpsl-stores ul {
    grid-template-columns: 1fr 1fr;
  }
  #wpsl-search-wrap {
    padding-top: 57px;
  }
  #wpsl-search-wrap .loc-top .loc-main-title {
    max-width: 75%;
  }
  #wpsl-search-wrap .loc-top {
    grid-template-columns: 1fr 1fr;
  }
  #programs-archive .f-grid {
    flex-direction: row;
    -moz-column-gap: 80px;
         column-gap: 80px;
    align-items: flex-start;
    flex-flow: row nowrap;
  }
  .archive-events .archive-events-container .s-inner-wrap .f-grid {
    flex-flow: row nowrap;
    padding: 0;
  }
  .sidebar-wrapper {
    width: 275px;
    min-height: 300px;
  }
  .sidebar-wrapper ul {
    display: block;
  }
  .single-event .f-grid {
    flex-flow: row nowrap;
    padding: 0;
  }
  .single-event .additional-events .cell {
    flex-basis: 33.33%;
  }
  .services-list .grid-wrap ul {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
  .services-blocks .s-service-cell {
    padding: 124px 0;
  }
  .services-blocks .f-service-cell .s-inner-wrap .icon-left {
    left: -6%;
  }
  .services-blocks .f-service-cell .s-inner-wrap .icon-right {
    top: -46px;
  }
  .services-blocks .f-service-cell .s-inner-wrap .right-col img {
    max-height: 500px;
  }
}

@media (min-width: 1200px){
  :root {
    --fluid-h1: 46px;
  }
  :root {
    --fluid-h2: 38px;
  }
  :root {
    --fluid-h3: 32px;
  }
  :root {
    --fluid-h4: 26px;
  }
  :root {
    --fluid-h5: 20px;
  }
  :root {
    --fluid-h6: 18px;
  }
  :root {
    --fluid-body: 18px;
  }
  :root {
    --fluid-body-sm: 16px;
  }
  .page-header-hero .f-grid .info-cell h2 {
    font-size: 52px;
    line-height: 66px;
  }
  .page-header-hero .col-right-outer .cell-right {
    top: -150px;
    height: 140%;
  }
  .page-header-hero .col-right-outer .moon-icon {
    max-width: 82%;
  }
  #hero .moons .moon-icon:last-child {
    left: 0%;
    width: 85%;
    bottom: -25px;
  }
  .programs-s .s-inner-wrap {
    padding-right: 0;
  }
  .wpsl_stores_home_main #wpsl-result-list .viewLocations {
    max-width: 67%;
  }
  .event-card .image .headline-text span {
    font-size: 16px;
  }
  .page-template-password-protected .header-content {
    font-size: 18px;
  }
  .page-template-password-protected h3 {
    font-size: 34px;
  }
}

@media (min-width: sm){
  .programs-s .top {
    position: relative;
  }
}

@media (max-width: 1024px){
  .s-footer-grid {
    justify-content: center;
  }
  .s-footer-grid .menu {
    justify-content: center;
  }
  .ubermenu-nav .ubermenu-submenu.ubermenu-submenu-drop .ubermenu-row {
    display: flex;
    flex-direction: column;
  }
  .ubermenu-mobile-view {
    top: 134px !important;
    border-top: 1px solid #eee !important;
  }
  .ubermenu-mobile-view .ubermenu-nav .ubermenu-item-level-0 {
    width: 100%;
  }
  .admin-bar .ubermenu-mobile-view {
    top: 185px !important;
  }
  #hero .moons .moon-icon:last-child svg path {
    stroke-width: 5;
  }
  .wpum-account-page .wpum_two_third .fieldset-user_lastname {
    width: calc(49% - 7px);
  }
}

@media all and (max-width: 1022px){
  .single-event .f-grid .sidebar-wrapper {
    display: none;
  }
}

@media all and (max-width: 992px){
  .c-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px){
  .page-header-hero .f-grid .info-cell h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .error404 #heroSection .text {
    margin-left: 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
  }
  .error404 #heroSection a {
    margin-left: 0;
  }
}

@media (max-width: 768px){
  .ubermenu-nav .ubermenu-submenu.ubermenu-submenu-drop::before {
    display: none;
  }
  .ubermenu-mobile-view .ubermenu-nav .ubermenu-row .col-left-img {
    margin: 27px 0 25px 0 !important;
    display: flex;
    justify-content: center;
  }
  #get-involved .info-cell {
    width: 100%;
  }
  #get-involved .info-cell .inner-wrap {
    padding-top: 30px;
    padding-bottom: 40px;
    margin-left: 0;
  }
  #get-involved .form-cell {
    max-width: 100%;
  }
  .page-header-hero .f-grid .info-cell h2 {
    font-size: 38px;
    line-height: 46px;
  }
  .page-header-hero .col-right-outer {
    padding-bottom: 60px;
  }
  .page-header-hero .col-right-outer::before {
    height: 450px;
    width: 100%;
    transform: rotate(6deg);
    left: 0;
    position: relative;
    top: 15px;
    margin-top: 0;
    background-size: cover;
  }
  .page-header-hero .col-right-outer .cell-right {
    width: calc(100% + 50px);
    transform: rotate(350deg);
    top: -80px;
  }
  .videoResources {
    padding: 25px 0 30px !important;
  }
  .awsm-job-item.featured-job::before {
    font-size: 0.65rem;
    padding: 3px 8px;
    top: -10px;
    right: var(--spacing-xs);
  }
  .jobs-section .jobs-section-header .jobs-section-title {
    font-size: 1.75rem;
  }
  .jobs-section .jobs-section-header .jobs-section-description {
    font-size: 1rem;
  }
  .jobs-section {
    margin-bottom: var(--spacing-lg);
  }
  .jobs-section:not(:first-child) {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
  }

  .awsm-job-item.coming-soon-job::before {
    font-size: 0.65rem;
    padding: 3px 8px;
    top: -10px;
    right: var(--spacing-xs);
  }
  .awsm-job-item.coming-soon-job.coming-soon-featured::before {
    content: "FEATURED";
    font-size: 0.6rem;
    padding: 3px 10px;
  }
  .resource-navigator .right-cell {
    margin-right: auto;
  }
  .video-resources .wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .leftCol {
    max-width: 100%;
  }
  .outerWrap {
    position: relative;
    width: 100%;
  }
  .wpum-account-page .wpum_one_third #wpum-account-forms-tabs ul li {
    width: 100%;
  }
  .wpum-account-page .wpum_two_third .fieldset-user_firstname {
    width: 100%;
    margin-bottom: 20px;
  }
  .wpum-account-page .wpum_two_third .fieldset-user_lastname {
    width: 100%;
  }
  .coming-soon-jobs-section .mfhs-vanilla-load-more {
    padding: 15px;
  }
}

@media all and (max-width: 768px){
  .c-grid.row-layout .event-card .image {
    background-image: none !important;
  }
  .single-event .event-featured-image {
    height: 200px;
  }
}

@media (max-width: 700px){
  #quality-care .c-grid .right-col {
    display: none;
  }
}

@media (max-width: 567px){
  .page-header-hero .col-right-outer {
    padding-bottom: 40px;
    z-index: 1;
  }
  .page-header-hero .col-right-outer::before {
    height: 370px;
    left: 0;
    top: 20px;
    transform: rotate(4deg);
    background-size: cover;
  }
  #hero .moons .moon-icon:last-child svg path {
    stroke-width: 6;
  }
}

@media all and (max-width: 500px){
  .c-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 480px){
  .s-inner-wrap.inner-hero {
    padding-bottom: 0px;
  }
  .services-uniq {
    padding: 15px 0 60px;
  }
  .page-header-hero.inner {
    padding-bottom: 0px !important;
    margin-bottom: -8vw;
  }
  .page-header-hero.inner .cell-right {
    width: calc(100% + 50px);
    transform: rotate(350deg);
    top: 0px !important;
  }
  .page-header-hero.inner .cell-right img {
    height: 100%;
  }
  .page-header-hero .col-right-outer {
    padding-bottom: 0;
  }
  .page-header-hero .col-right-outer::before {
    transform: rotate(9deg);
    left: -10px;
    height: 300px;
    top: -45px;
    background-size: contain;
  }
  .page-header-hero .col-right-outer .cell-right {
    top: -80px;
  }
  .county-card {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  #hero .moons .moon-icon:first-child svg path {
    stroke-width: 3.3;
  }
  #hero .moons .moon-icon:nth-child(2) svg path {
    stroke-width: 3.3;
  }
  .programs-s {
    padding: 12px 0 52px;
  }
  #events {
    padding-top: 0;
  }
  .services-blocks .f-service-cell .overlay {
    background: linear-gradient(90deg, #fff 44%, #ed7f2800 100%);
  }
  .services-blocks .f-service-cell::after {
    width: 0;
  }
  .video-resources .wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px){
  .header-nav .header-row .header-link {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce){
  .awsm-job-item.coming-soon-job::before {
    animation: none;
  }
}

@media print{
  .awsm-job-item.coming-soon-job {
    border: 2px solid #000 !important;
    background: white !important;
  }
  .awsm-job-item.coming-soon-job::before {
    background: #000 !important;
    color: white !important;
    box-shadow: none !important;
  }

  .awsm-jobs-pagination {
    display: none !important;
  }
}

/*# sourceMappingURL=app.css.map*/