@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
/**
 * Locally Load the typekit/google fonts instead of having to load them from the CDN.
 * Make sure to adjust the preload in header.php if needed
 **/
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 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. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%; /* 6 */
}

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

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

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

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

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(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.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

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

/**
 * Restrict sizing to the page width in all browsers (opinionated).
 */
:where(iframe, img, input, video, select, textarea) {
  height: auto;
  max-width: 100%;
}

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

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

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color in Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: currentColor; /* 2 */
  text-indent: 0; /* 3 */
}

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

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

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -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 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

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

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

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

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

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

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

/*
 * Form section
 */
/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */
:where(button, input, select, textarea) {
  background-color: transparent; /* 1 */
  border: 1px solid WindowFrame; /* 1 */
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  letter-spacing: inherit; /* 2 */
  padding: 0.25em 0.375em; /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(select) {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") no-repeat right center/1em;
  border-radius: 0;
  padding-right: 1em;
}

/**
 * Don't show the arrow for multiple choice selects
 */
:where(select[multiple]) {
  background-image: none;
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */
:where([type=color i], [type=range i]) {
  border-width: 0;
  padding: 0;
}

/**
 * Reduce Motion section
 */
/*
 * 1. Remove animations when motion is reduced (opinionated).
 * 2. Remove fixed background attachments when motion is reduced (opinionated).
 * 3. Remove timed scrolling behaviors when motion is reduced (opinionated).
 * 4. Remove transitions when motion is reduced (opinionated).
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important; /* 1 */
    animation-duration: 1ms !important; /* 1 */
    animation-iteration-count: 1 !important; /* 1 */
    background-attachment: initial !important; /* 2 */
    scroll-behavior: auto !important; /* 3 */
    transition-delay: 0s !important; /* 4 */
    transition-duration: 0s !important; /* 4 */
  }
}
/**
 * Simplified Breakpoint mixin
 * Is mobile-first but includes the modifier key to go up/down
 *
 **/
/** Fluid typography mixin
 * ONLY ACCEPTS PIXEL UNITS
 *
 * @param {number} $min-px: The minimum size in pixels of this fluid variable
 * @param {number} $max-px: The maximum size in pixels of this fluid variable
 * @param {number} $min-bp: The minimum viewport size in pixels of this fluid variable
 * @param {number} $max-bp: The maximum viewport size in pixels of this fluid variable
 * @return {property} The fluid typography clamp property
 **/
:root {
  --fluid-jumbo: calc(var(--fluid-h1) * 1.3);
  --fluid-h1: clamp(2.25rem, 1.5vw + 1.88rem, 3rem);
  --fluid-h2: clamp(2rem, 0.75vw + 1.81rem, 2.38rem);
  --fluid-h3: clamp(1.75rem, 0.75vw + 1.56rem, 2.13rem);
  --fluid-h4: clamp(1.5rem, 0.75vw + 1.31rem, 1.88rem);
  --fluid-h5: clamp(1.38rem, 0.5vw + 1.25rem, 1.63rem);
  --fluid-h6: clamp(1.13rem, 0.5vw + 1rem, 1.38rem);
  --fluid-body: clamp(1rem, 0.25vw + 0.94rem, 1.13rem);
  --fluid-body-sm: clamp(0.88rem, 0.25vw + 0.81rem, 1rem);
  --fluid-body-xs: clamp(0.5rem, 0.25vw + 0.44rem, 0.63rem);
}

/**
 * Basic Sizing variables!
 * @important: rem has been modified to 10px
 *
 **/
/**
 * For any sass variables that may be used in multiple places,
 * in the settings folder.
 * List them here.
 *
 * With sass @use rules there is no longer a "global" scope.
 * For example trying to @use "sizing" in fluid-typography will result in an error.
 * Because it is already @forwarded in the settings.scss file. This will cause a looping error in the compiler.
 * When a global value is needed in multiple places list it here or prefer to use a css custom attribute
 **/
.container {
  padding: 0 25px;
  max-width: 1220px;
}

.btn-dark {
  background-color: var(--color-primary) !important;
  border: 0 !important;
  border-radius: 5px !important;
}
.btn-dark:hover {
  background-color: #BE77CE !important;
  color: #fff !important;
  box-shadow: 0px 0px 12px 0px rgba(137, 23, 163, 0.2) !important;
  border: 0 !important;
}

.btn-light {
  border-radius: 5px !important;
  border: 0 !important;
  color: var(--color-primary) !important;
}
.btn-light:hover {
  background-color: var(--color-primary) !important;
  color: #fff !important;
  border: 0 !important;
}

.purple-btn {
  font-family: var(--body-font-family);
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #fff;
  background-color: var(--color-primary);
  padding: 8px 10px;
  border-radius: 7px;
  display: inline-block;
  text-align: center;
}

.faqs {
  padding: 103px 0 85px;
}
.faqs .title {
  font-family: var(--body-font-family);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: var(--color-secondary);
  text-align: center;
  margin-bottom: 41px;
}
.faqs .purple-btn {
  max-width: 248px;
  margin: 28px auto 0;
  display: block;
}
.faqs #accordionFAQs {
  max-width: 648px;
  width: 100%;
  margin: 0 auto;
}
.faqs #accordionFAQs .accordion-item {
  background-color: #fff;
  box-shadow: 1px 1px 5px 4px #FBEEFE;
  border-radius: 12px;
  padding-left: 0;
  padding-right: 0;
  border: 1px solid rgba(0, 0, 0, 0.0705882353);
  margin-bottom: 20px;
  cursor: pointer;
}
.faqs #accordionFAQs .accordion-item .accordion-header {
  margin-bottom: 0;
  background-color: #fff;
  box-shadow: 1px 1px 5px 4px #FBEEFE;
  border-radius: 12px;
  outline: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.faqs #accordionFAQs .accordion-item .accordion-header .accordion-button {
  border-radius: 12px;
  font-family: var(--body-font-family);
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  color: var(--color-primary);
  padding: 18px 20px 20px;
  background-color: transparent;
  box-shadow: none;
  display: flex;
  justify-content: space-between;
}
.faqs #accordionFAQs .accordion-item .accordion-header .accordion-button::after {
  display: none;
}
.faqs #accordionFAQs .accordion-item .accordion-header .accordion-button img {
  transform: rotate(90deg);
}
.faqs #accordionFAQs .accordion-item .accordion-header .accordion-button.collapsed img {
  transform: rotate(0);
}
.faqs #accordionFAQs .accordion-item .accordion-header img {
  transition: all 0.3s ease;
}
.faqs #accordionFAQs .accordion-item .accordion-header.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.faqs #accordionFAQs .accordion-item .accordion-collapse {
  font-family: var(--sub-font-family);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  background-color: var(--color-quaternary);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.gform-body .gform-theme-button:hover {
  background-color: #BE77CE !important;
}

:root {
  --global-width: 1100px;
  --global-width-wide: 1400px;
  --global-content-width: 800px;
  --global-gutter: 1.3rem;
  --global-block-gap: 1.5rem;
  --global-section-padding: 4rem;
  --global-fluid-section-padding: clamp(2.5rem, 1.25vw + 2.19rem, 3.13rem);
  --sizing-base: 1rem;
  --size-xs: calc(var(--sizing-base) * 0.5);
  --size-sm: calc(var(--sizing-base) * 1);
  --size-md: calc(var(--sizing-base) * 1.5);
  --size-lg: calc(var(--sizing-base) * 2);
  --size-xl: calc(var(--sizing-base) * 3);
  --fluid-sizing-min-view: var(--breakpoint-sm, 40rem);
  --fluid-sizing-max-view: var(--global-width, 120rem);
  --fluid-sizer: clamp(0rem, 1.25vw + -0.31rem, 0.63rem);
  --size-fluid-xs: calc(var(--size-xs) + var(--fluid-sizer));
  --fluid-size-xs: calc(var(--size-xs) + var(--fluid-sizer));
  --fluid-size-sm: calc(var(--size-sm) + var(--fluid-sizer));
  --fluid-size-md: calc(var(--size-md) + var(--fluid-sizer));
  --fluid-size-lg: calc(var(--size-lg) + var(--fluid-sizer));
  --fluid-size-xl: calc(var(--size-xl) + var(--fluid-sizer));
}

:root {
  --color-primary: #8917A3;
  --color-secondary: #4799E1;
  --color-tertiary: #F3A959;
  --color-quaternary: #BE77CE;
  --color-quinary: maroon;
  --color-primary-light: #af1dd0;
  --color-secondary-light: #73b1e8;
  --color-tertiary-light: #f6c289;
  --color-quaternary-light: #d09cdc;
  --color-quinary-light: #b30000;
  --color-primary-dark: #631176;
  --color-secondary-dark: #2280d3;
  --color-tertiary-dark: #f09029;
  --color-quaternary-dark: #ac52c0;
  --color-quinary-dark: #4d0000;
  --color-black: #707070;
  --color-gray: gray;
  --color-dark-gray: #707070;
  --color-light-gray: #ebf5fc;
  --color-white: white;
  --color-warning: maroon;
  --color-success: green;
}

:root {
  --body-font-family: Outfit, sans-serif;
  --header-font-family: Outfit, sans-serif;
  --heading-font-family: Lato, sans-serif;
  --sub-font-family: Roboto, sans-serif;
  --body-font-weight: 400;
  --body-line-height: 1.6;
  --color-body-font: var(--color-black);
  --header-font-weight: 500;
  --header-line-height: 1.3;
  --color-header: var(--color-primary);
  --color-sub-header: var(--color-secondary);
  --default-typography-gap: 1rem;
}

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

body {
  color: var(--color-body-font);
  font-size: var(--fluid-body);
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}

h1,
h2,
h3,
h4,
h5,
h6,
.is-header {
  font-family: var(--header-font-family);
  font-weight: var(--header-font-weight);
  line-height: var(--header-line-height);
  color: var(--color-header);
  margin-bottom: 0;
}

h4,
h5,
h6,
.is-sub-header {
  font-weight: calc(var(--header-font-weight) - 100);
  color: var(--color-sub-header);
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

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

html {
  --scroll-behavior: smooth;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-flow: column nowrap;
}

a {
  text-decoration: none !important;
}

.fancy-btn :is(.is-style-outline), form input[type=submit] :is(.is-style-outline),
form button :is(.is-style-outline), .callout-btn :is(.is-style-outline), .wp-block-buttons :is(.is-style-outline) {
  --button-background-color: transparent;
  --button-border-color: currentColor;
  --button-color: var(--color-quinary, lightred);
}
.fancy-btn :is(.is-style-outline):hover, form input[type=submit] :is(.is-style-outline):hover,
form button :is(.is-style-outline):hover, .callout-btn :is(.is-style-outline):hover, .wp-block-buttons :is(.is-style-outline):hover, .fancy-btn :is(.is-style-outline):focus, form input[type=submit] :is(.is-style-outline):focus,
form button :is(.is-style-outline):focus, .callout-btn :is(.is-style-outline):focus, .wp-block-buttons :is(.is-style-outline):focus, .fancy-btn :is(.is-style-outline):active, form input[type=submit] :is(.is-style-outline):active,
form button :is(.is-style-outline):active, .callout-btn :is(.is-style-outline):active, .wp-block-buttons :is(.is-style-outline):active {
  --button-color: var(--color-quaternary-dark);
}

.callout-btn a {
  --button-padding-vertical: 0.5em;
  --button-padding-horizontal: 1em;
  --button-background-color: transparent;
  --button-border-color: currentColor;
  --button-color: var(--color-quinary, lightred);
}

.course-button {
  cursor: help;
}

button:not([disabled]):not([aria-disabled=true]) {
  cursor: pointer;
}

form input,
form textarea {
  font-size: var(--fluid-body);
  font-family: var(--body-font-family);
  border-radius: 0;
}
/**
 * CSS grid
 *
 * Ideal for layouts that do not require centering
 * A bonus compared to the `f-grid` is items will never mangle themselves sizing wise
 * CSS grid is very strong about making sure elements do not cause unseen side effects
 * When possible CSS grid > flexbox
 **/
.c-grid {
  --grid-col-sm: 1fr;
  --grid-col-md: 1fr 1fr;
  --grid-col-lg: 1fr 1fr 1fr;
  --grid-gap: var(--global-gutter, 10px);
  display: grid;
}
.c-grid .cell {
  display: flex;
  flex-flow: column nowrap;
  height: auto;
}

/**
 * Basic Flex Grid
 *
 * Ideal for layouts that need to center anything
 * Purposely basic as most layouts are never the same.
 * This just gives a sane default to get started
 * With some responsiveness builtin.
 **/
.f-grid {
  display: flex;
  flex-flow: row wrap;
  --cell-size-sm: 100%;
  --cell-size-md: 50%;
  --cell-size-lg: 33.33%;
  --grid-gap: var(--global-gutter, 10px);
  gap: var(--grid-gap);
}
.f-grid .cell {
  display: flex;
  flex-flow: column nowrap;
  height: auto;
  flex-basis: calc(var(--cell-size-sm) - var(--grid-gap));
}

.has-text-color {
  color: var(--custom-color, var(--color-primary));
}

.has-border-color {
  border-color: var(--custom-color, var(--color-primary));
}

.has-background-color {
  background-color: var(--custom-color, var(--color-primary));
}

.has-inline-color {
  color: var(--custom-color, var(--color-primary));
}

.has-color-primary-color {
  --custom-color: var(--color-primary);
}
.has-color-secondary-color {
  --custom-color: var(--color-secondary);
}
.has-color-tertiary-color {
  --custom-color: var(--color-tertiary);
}
.has-color-quaternary-color {
  --custom-color: var(--color-quaternary);
}
.has-color-quinary-color {
  --custom-color: var(--color-quinary);
}
.has-color-white-color {
  --custom-color: var(--color-white);
}
.has-color-black-color {
  --custom-color: var(--color-black);
}
.has-color-gray-color {
  --custom-color: var(--color-gray);
}
.has-color-light-gray-color {
  --custom-color: var(--color-light-gray);
}

:where(a) {
  --link-color: var(--color-primary);
  --link-hover-color: var(--color-primary-dark);
  --link-active-color: var(--color-primary-light);
  --link-font-weight: 500;
  color: var(--color-primary);
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: --link-font-weight;
}
:where(a):hover, :where(a):active, :where(a):focus {
  color: var(--color-primary-dark);
}
:where(a):active {
  color: var(--color-primary-light);
}
:where(a).ghost-link {
  color: var(--color-white);
}
:where(a).ghost-link:hover, :where(a).ghost-link:active, :where(a).ghost-link:focus {
  color: var(--color-light-gray);
}
:where(a).ghost-link:active {
  color: var(--color-gray);
}

#footer {
  display: flex;
  flex-flow: column nowrap;
  padding-top: 48px;
  padding-bottom: 15px;
  background-color: var(--color-primary);
}
@media (max-width: 575px) {
  #footer {
    padding-top: 52px;
    padding-bottom: 36px;
  }
}
#footer .col-left .footer_logo {
  max-width: 283px;
  width: 100%;
  margin-bottom: 48px;
}
#footer .col-left .footer_logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#footer .col-left .social_links {
  margin: 30px 0 25px;
}
@media (max-width: 575px) {
  #footer .col-left .social_links {
    margin: 30px 0 25px 15px;
  }
}
#footer .col-left .social_links li {
  margin-bottom: 0;
}
#footer .col-left .social_links li a {
  color: var(--color-tertiary);
  display: flex;
}
#footer .col-left .social_links li a svg {
  width: 20px;
  height: 20px;
}
#footer .col-left .privacy {
  color: white;
}
#footer .col-left .privacy a {
  font-family: var(--sub-font-family);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  color: #fff;
}
#footer .footer_menu ul {
  padding-left: 0;
}
@media (max-width: 575px) {
  #footer .footer_menu ul {
    margin-bottom: 53px;
  }
}
#footer .footer_menu li {
  margin-bottom: 0;
}
#footer .footer_menu li > a {
  color: var(--color-tertiary);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 10px;
  display: inline-block;
}
#footer .footer_menu li .sub-menu a {
  color: #FFF;
  font-family: var(--sub-font-family);
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}
#footer .footer_desc p {
  color: #BE77CE;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}
#footer .privacy.mob {
  font-size: 10px;
  text-align: center;
  margin-top: 27px;
  font-family: var(--sub-font-family);
}
#footer .privacy.mob a {
  color: #fff;
}

@media (max-width: 575px) {
  .subscriptionForm {
    padding: 0 10px;
  }
}
.subscriptionForm .title {
  color: #fff;
  font-family: var(--body-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 9px;
}
.subscriptionForm .ctct-form-embed.form_1 .ctct-form-defaults {
  background-color: transparent !important;
  padding: 0 !important;
}
.subscriptionForm .ctct-form-embed.form_1 .ctct-form-defaults #gdpr_text, .subscriptionForm .ctct-form-embed.form_1 .ctct-form-defaults .ctct-form-label, .subscriptionForm .ctct-form-embed.form_1 .ctct-form-defaults .ctct-form-footer, .subscriptionForm .ctct-form-embed.form_1 .ctct-form-defaults .ctct-form-header {
  display: none;
}
.subscriptionForm .ctct-form-embed.form_1 .ctct-form-defaults .ctct-form-field {
  margin: 0 !important;
  max-width: 209px;
}
.subscriptionForm .ctct-form-embed.form_1 .ctct-form-defaults .ctct-form-field .ctct-form-element {
  height: 53px !important;
  padding: 9px 5px 9px 25px !important;
  background: #A651B9;
  border: 0;
  border-radius: 5px;
  color: #fff;
}
.subscriptionForm .ctct-form-embed.form_1 .ctct-form-defaults .ctct-form-field .ctct-form-element::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.subscriptionForm .ctct-form-embed.form_1 .ctct-form-defaults .ctct-form-field .ctct-form-element::placeholder {
  color: #fff;
  opacity: 1;
}
.subscriptionForm .ctct-form-embed.form_1 .ctct-form-defaults .ctct-form-field .ctct-form-element::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
.subscriptionForm .ctct-form-embed.form_1 .ctct-form-defaults .ctct-form-field .ctct-form-element::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.subscriptionForm .ctct-form-embed.form_1 .ctct-form-defaults .ctct-form-field .ctct-form-element:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.subscriptionForm .ctct-form-embed.form_1 .ctct-form-defaults .ctct-form-field .ctct-form-element:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.subscriptionForm .ctct-form-embed.form_1 .ctct-form-defaults #ctct_form_1 {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  min-height: 54px;
}
.subscriptionForm .ctct-form-embed.form_1 .ctct-form-defaults .ctct-form-button {
  color: var(--color-primary);
  font-family: var(--body-font-family);
  font-weight: 600;
  line-height: normal;
  border: 1px solid var(--color-primary);
  border-radius: 5px !important;
  max-width: 115px;
  height: 53px;
}
.subscriptionForm .ctct-form-embed.form_1 .ctct-form-defaults .ctct-form-button:hover {
  background-color: var(--color-primary) !important;
  border: 1px solid #ffffff !important;
  color: #fff;
}
.subscriptionForm .ctct-form-embed.form_1 #ctct_recaptcha_1 {
  display: none !important;
}

.ctct-popup-form {
  display: none !important;
}

.ow-screen-padding .ow-leave-page-fab {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
  top: 140px;
  bottom: unset;
  right: 0px;
  box-shadow: none;
  width: 100%;
  min-width: 71px;
  max-width: 178px;
  height: auto;
  background-color: #CD2C49;
  border-radius: 8px 0 0 8px;
  padding: 14px 9px;
  transition: all 0.18s ease-in-out;
}
.ow-screen-padding .ow-leave-page-fab .ow-fab-icon {
  margin: 0;
  width: 12px;
  height: 12px;
}
.ow-screen-padding .ow-leave-page-fab h3 {
  text-transform: none;
  font-size: 1.2rem;
  margin-bottom: 0;
  margin-left: 10%;
  margin-right: 8%;
}

.safety_alert {
  display: none;
}
.safety_alert.active {
  display: block;
}
.safety_alert .alert_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  display: none;
  background: rgba(137, 23, 163, 0.4);
  z-index: 99999;
}
.safety_alert .alert_wrapper.active {
  display: flex;
}
.safety_alert .alert_wrapper .box {
  max-width: 550px;
  margin: auto;
  display: flex;
  position: relative;
  width: calc(100% - 38px);
}
.safety_alert .alert_wrapper .box::after {
  content: " ";
  position: absolute;
  height: calc(100% - 25px);
  width: calc(100% - 48px);
  bottom: 0;
  left: 40px;
  background-color: #fff;
  filter: drop-shadow(0px 0px 14px rgba(137, 23, 163, 0.2));
  border-radius: 0 95px 30px 95px;
  z-index: -1;
}
.safety_alert .alert_wrapper .box .thumbnail {
  width: 100%;
  max-width: 110px;
  height: 100%;
}
@media (max-width: 575px) {
  .safety_alert .alert_wrapper .box .thumbnail svg {
    width: 80px;
    height: 80px;
  }
}
.safety_alert .alert_wrapper .box .close_btn {
  min-width: 45px;
  height: 34px;
  margin: 14px 0 0 -30px;
  cursor: pointer;
}
.safety_alert .alert_wrapper .box .close_btn svg {
  height: 100%;
  width: 100%;
  max-width: 100%;
}
.safety_alert .alert_wrapper .box .content {
  padding: 55px 35px 60px 25px;
}
@media (max-width: 575px) {
  .safety_alert .alert_wrapper .box .content {
    padding: 50px 15px 40px 5px;
  }
}
.safety_alert .alert_wrapper .box .content h3 {
  color: #8917A3;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 10px;
}
.safety_alert .alert_wrapper .box .content p {
  color: #8917A3;
  font-family: Lato;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}
@media (max-width: 575px) {
  .safety_alert .alert_wrapper .box .content p {
    font-size: 16px;
  }
}

body.mm_active {
  overflow: hidden !important;
}
body.mm_active .header::after {
  width: 100%;
}

.header {
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}
.header::after {
  content: " ";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  background: rgba(92, 106, 136, 0.7);
  transition: width 0.4s ease;
}
.header .container {
  display: flex;
  gap: 70px;
  justify-content: space-between;
}
.header .container .logo {
  width: 100%;
  max-width: 293px;
  display: flex;
  align-items: center;
  padding: 32px 0;
}
@media (max-width: 575px) {
  .header .container .logo {
    padding: 20px 0;
  }
}
.header .container .header_nav {
  flex-grow: 1;
}
.header .container .header_nav .actions {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: flex-end;
}
.header .container .header_nav .actions .country-selector .wgcurrent {
  display: flex;
  justify-content: center;
  border-radius: 0px 0px 5px 5px;
  box-shadow: 0px 0px 10px 0px rgba(137, 23, 163, 0.2);
  background: #FFF;
}
.header .container .header_nav .actions .country-selector .wgcurrent::after {
  display: none !important;
}
.header .container .header_nav .actions .country-selector .wgcurrent .wglanguage-name {
  font-family: var(--header-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  padding: 20px 18px 5px 18px;
  display: flex;
  color: var(--color-primary);
  height: auto;
}
.header .container .header_nav .actions .country-selector ul li .weglot-language-es {
  font-family: var(--header-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px 12px 10px 18px;
  display: flex;
  color: var(--color-primary);
  height: auto;
}
.header .container .header_nav .actions .menuTop {
  display: flex;
  gap: 25px;
  margin-bottom: 0;
}
.header .container .header_nav .actions .menuTop li {
  display: flex;
  justify-content: center;
  border-radius: 0px 0px 5px 5px;
  box-shadow: 0px 0px 10px 0px rgba(137, 23, 163, 0.2);
}
.header .container .header_nav .actions .menuTop li a {
  font-family: var(--header-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  padding: 20px 18px 5px 18px;
}
.header .container .header_nav .actions .menuTop .switch_lang {
  background: #FFF;
}
.header .container .header_nav .actions .menuTop .switch_lang a {
  color: var(--color-primary);
}
.header .container .header_nav .actions .menuTop .get_help {
  background: var(--color-primary);
}
.header .container .header_nav .actions .menuTop .get_help a {
  color: #fff;
}
.header .container .header_nav .main_nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .container .header_nav .main_nav .menu-main-menu-container .menu {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 62px;
}
.header .container .header_nav .main_nav .menu-main-menu-container .menu li {
  list-style-type: none;
  position: relative;
}
.header .container .header_nav .main_nav .menu-main-menu-container .menu li.menu-item-has-children > a::after {
  content: " ";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cpath fill='%23BCBEC0' d='m6.293 13.293l1.414 1.414L12 10.414l4.293 4.293l1.414-1.414L12 7.586z'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
  background-size: cover;
  background-position: center center;
}
.header .container .header_nav .main_nav .menu-main-menu-container .menu li.menu-item-has-children > a:hover::after {
  transform: rotate(0deg);
}
.header .container .header_nav .main_nav .menu-main-menu-container .menu li a {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  display: flex;
  padding: 33px 10px 10px;
  text-decoration: none;
}
.header .container .header_nav .main_nav .menu-main-menu-container .menu li ul.sub-menu {
  display: none;
  position: absolute;
  bottom: 0;
  transform: translateY(98%);
  background: #fff;
  margin: 0;
  left: 0;
  right: 0;
  padding: 0;
  width: 150px;
  box-shadow: 0 0px 4px 1px rgba(0, 0, 0, 0.21);
  z-index: 2;
  border-bottom: 2px solid var(--color-primary);
}
.header .container .header_nav .main_nav .menu-main-menu-container .menu li ul.sub-menu li a {
  padding: 15px 10px 15px;
}
.header .container .header_nav .main_nav .menu-main-menu-container .menu li ul.sub-menu li a:hover {
  color: #4799E1;
}
.header .container .mobile_header_nav .top_menu .menu_icon {
  cursor: pointer;
  width: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  margin-bottom: -2px;
  background: #fff;
  cursor: pointer;
}
.header .container .mobile_header_nav .top_menu .mm_menu {
  width: 330px;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  height: 100vh;
  z-index: 999;
  overflow: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(103%);
  transition: 0.3s all ease;
  padding-top: 0;
}
.header .container .mobile_header_nav .top_menu .mm_menu.mm_active {
  transform: translateX(0);
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_header {
  border-bottom: 1px solid #C1C6D2;
  display: flex;
  justify-content: space-between;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_header a {
  padding: 7px 15px 7px 25px;
  max-width: 220px;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_header .menu_close {
  border-left: 1px solid #C1C6D2;
  min-width: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_mobile_menu {
  flex-grow: 1;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_mobile_menu .menu-main-menu-container ul {
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_mobile_menu .menu-main-menu-container ul li {
  padding: 22px 24px;
  border-bottom: 1px solid #C1C6D2;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_mobile_menu .menu-main-menu-container ul li a {
  color: var(--color-primary);
  font-family: var(--body-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_mobile_menu .menu-main-menu-container ul li .sub-menu {
  display: none;
  margin: 20px 0 0;
  background-color: #DEE0E6;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_mobile_menu .menu-main-menu-container ul li .sub-menu li {
  border: none;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_mobile_menu .menu-main-menu-container ul li.menu-item-has-children.open > a {
  color: #c76c78;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_mobile_menu .menu-main-menu-container ul li.menu-item-has-children.open > a::after {
  transform: rotate(0deg);
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_mobile_menu .menu-main-menu-container ul li.menu-item-has-children.open > .sub-menu {
  display: block;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_mobile_menu .menu-main-menu-container ul li.menu-item-has-children > a {
  align-items: center;
  display: inline-flex;
  gap: 5px;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_mobile_menu .menu-main-menu-container ul li.menu-item-has-children > a::after {
  content: " ";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cpath fill='%23BCBEC0' d='M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6l-6 6z'/%3E%3C/svg%3E");
  width: 25px;
  height: 25px;
  background-size: cover;
  background-position: center center;
  transform: rotate(180deg);
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_mobile_menu .actions .menuTop {
  position: fixed;
  bottom: 0;
  display: flex;
  flex-direction: row;
  padding: 0;
  width: 100%;
  margin: 0;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_mobile_menu .actions .menuTop li {
  width: 50%;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_mobile_menu .actions .menuTop li a {
  width: 100%;
  border-radius: 0;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_mobile_menu .actions .menuTop li .btn-light {
  box-shadow: 0px 0px 10px 0px rgba(137, 23, 163, 0.2);
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_btns {
  margin: 0;
  padding: 0;
  display: flex;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_btns li {
  flex-grow: 1;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_btns li a {
  min-height: 61px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 17px;
  color: #fff;
  text-align: center;
  font-family: Raleway;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  width: 100%;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_btns li a.order {
  background-color: #DEE0E6;
  color: #2C3D74;
}
.header .container .mobile_header_nav .top_menu .mm_menu .mm_btns li a.customer {
  background-color: #5C6A88;
}

/**
 * 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: var(--color-white);
  --bm-a-color-hover: var(--color-light-gray);
  --bm-a-color-active: var(--color-quaternary);
  --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.4rem;
  --bm-dropdown-arrow-height: 10px;
  --bm-dropdown-arrow-width: 15px;
  --bm-dropdown-arrow-padding: 6px;
  --bm-dropdown-arrow-color: var(--color-black);
}

[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: var(--color-primary);
}

[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 {
  display: flex;
  list-style: none;
}
[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 ul {
  visibility: hidden;
  flex-flow: column nowrap;
  height: 0;
}
[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;
  padding: 10px;
  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-better-menu=horizontal] ul li ul {
  position: absolute;
  top: 100%;
  height: auto;
  width: var(--bm-submenu-width);
  transition: transform 0.3s ease, visibility 0.3s ease;
  transform-origin: top;
  transform: scaleY(0);
  background: white;
  box-shadow: 2px 2px 10px rgba(var(--color-black), 0.3);
  z-index: 100;
}
[data-better-menu=horizontal] ul li ul[data-bm-active] {
  transform: scaleY(1);
  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-better-menu=horizontal] ul li ul {
  position: absolute;
  top: 100%;
  height: auto;
  width: var(--bm-submenu-width);
  transition: transform 0.3s ease, visibility 0.3s ease;
  transform-origin: top;
  transform: scaleY(0);
  background: white;
  box-shadow: 2px 2px 10px rgba(var(--color-black), 0.3);
  z-index: 100;
}
[data-better-menu=horizontal] ul li ul[data-bm-active] {
  transform: scaleY(1);
  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: 1000;
}
[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;
  z-index: 2;
}
[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;
}
[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;
}
.home-banner {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  padding: 93px 0 66px;
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .home-banner {
    align-items: end;
  }
}
.home-banner .wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-banner .wrapper .slider, .home-banner .wrapper .slick-list, .home-banner .wrapper .slick-track {
  height: 100%;
}
.home-banner .wrapper .slider-hero .hero_slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  filter: brightness(0.6);
  height: 100%;
}
.home-banner .hero_content {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 950px;
  padding: 0 25px;
  width: 100%;
}
.home-banner .hero_content .content {
  max-width: 545px;
}
.home-banner .hero_content h1 {
  color: #FFF;
  font-family: var(--body-font-family);
  font-size: 80px;
  font-weight: 700;
  line-height: 90px;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .home-banner .hero_content h1 {
    font-size: 60px;
    line-height: 70px;
  }
}
.home-banner .hero_content p {
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 38px;
}
@media (max-width: 767.98px) {
  .home-banner .hero_content p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
.home-banner .hero_content .gethelp {
  padding: 10px 50px 9px 50px;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.hotline.active {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
}

.hotline {
  background-color: #FBEEFE;
  padding: 17px 0 16px;
  position: relative;
}
@media (max-width: 767.98px) {
  .hotline {
    padding: 0;
  }
}
.hotline .mb_hotline {
  background-color: #8917a3;
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  top: 0;
  transform: translateY(-100%);
  z-index: 9;
  position: absolute;
  transition: 0.3s all ease;
  opacity: 0;
  visibility: hidden;
}
.hotline .mb_hotline.active {
  opacity: 1;
  visibility: visible;
}
.hotline .mb_hotline .wrap {
  padding: 8px 10px;
  border-radius: 7.38px;
  background: #fff;
  box-shadow: 0px 0px 10.331px 0px rgba(137, 23, 163, 0.2);
  position: relative;
  transition: all 0.5s ease;
  border: 1px solid #fff;
}
.hotline .mb_hotline .wrap:hover {
  background: var(--color-primary);
}
.hotline .mb_hotline .wrap:hover p, .hotline .mb_hotline .wrap:hover a {
  color: #fff;
}
.hotline .mb_hotline .wrap p {
  font-size: 9px;
  font-family: var(--heading-font-family);
  color: var(--color-primary);
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.817px;
  text-transform: uppercase;
  text-align: center;
}
.hotline .mb_hotline .wrap h5 {
  font-family: var(--body-font-family);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.hotline .mb_hotline .wrap h5 a {
  color: var(--color-primary);
}
.hotline .mb_hotline .wrap span {
  position: absolute;
  color: var(--color-primary);
  text-align: center;
  font-family: var(--sub-font-family);
  font-size: 6.5px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px;
  right: 0;
  bottom: 0;
  border-radius: 0px 0px 7.38px 0px;
  background: var(--color-tertiary);
  padding: 1px 4px 0px;
}
.hotline .container {
  max-width: 750px;
  width: 100%;
}
.hotline .container .outer {
  display: flex;
  align-items: center;
}
.hotline .container .outer .hotline-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .hotline .container .outer .hotline-wrapper {
    justify-content: center;
    padding: 17px 0 16px;
    cursor: pointer;
  }
}
.hotline .container .outer .hotline-wrapper .hotline-icon {
  display: flex;
}
.hotline .container .outer .hotline-wrapper h5 {
  color: var(--color-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.hotline .container .outer .hotline-wrapper span {
  margin: -5px 0 0 -2px;
  position: relative;
  width: 20px;
  display: block;
}
.hotline .container .outer .hotline-wrapper span svg {
  transition: 0.5s all ease;
  transform: rotate(180deg);
}
.hotline .container .outer .hotline-wrapper.active svg {
  transform: rotate(0);
}
.hotline .container .outer .wrap {
  padding: 12px 2px 9px 11px;
  border-radius: 7.38px;
  background: #fff;
  box-shadow: 0px 0px 10.331px 0px rgba(137, 23, 163, 0.2);
  position: relative;
  transition: all 0.5s ease;
}
.hotline .container .outer .wrap:hover {
  background: var(--color-primary);
}
.hotline .container .outer .wrap:hover p, .hotline .container .outer .wrap:hover a {
  color: #fff;
}
.hotline .container .outer .wrap p {
  font-size: 9px;
  font-family: var(--heading-font-family);
  color: var(--color-primary);
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.817px;
  text-transform: uppercase;
  margin: 0;
}
.hotline .container .outer .wrap h5 {
  font-family: var(--body-font-family);
  font-size: 16.336px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.hotline .container .outer .wrap h5 a {
  color: var(--color-primary);
}
.hotline .container .outer .wrap span {
  position: absolute;
  color: var(--color-primary);
  text-align: center;
  font-family: var(--sub-font-family);
  font-size: 7.5px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px;
  right: 0;
  bottom: 0;
  border-radius: 0px 0px 7.38px 0px;
  background: var(--color-tertiary);
  padding: 1px 4px 0px;
}
.hotline.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
}
@media (max-width: 575px) {
  .hotline.fixed {
    position: static;
  }
}
.hotline.fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

@media (min-width: 767px) {
  .hotline-inner {
    visibility: hidden;
    opacity: 0;
    padding: 0;
    position: absolute;
    width: 100%;
  }
  .hotline-inner.fixed {
    visibility: visible;
    padding: 17px 0 16px;
    opacity: 1;
  }
}

.home_section_1 {
  padding: 78px 0 82px;
}
@media (max-width: 575px) {
  .home_section_1 {
    padding: 36px 0 47px;
  }
}
.home_section_1 .container {
  max-width: 1040px;
  width: 100%;
}
@media (max-width: 575px) {
  .home_section_1 .container .col-left {
    padding: 0 15px;
    margin-top: 10px;
  }
}
.home_section_1 .container .col-left h2 {
  color: var(--color-secondary);
  font-family: var(--body-font-family);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 14px;
}
@media (max-width: 575px) {
  .home_section_1 .container .col-left h2 {
    font-size: 22px;
    line-height: 30px;
  }
}
.home_section_1 .container .col-left p {
  color: #000;
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 17px;
}
@media (max-width: 575px) {
  .home_section_1 .container .col-left p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    font-family: var(--body-font-family);
  }
}
.home_section_1 .container .col-left p strong {
  font-weight: 600;
  color: #4FAEA6;
}
.home_section_1 .container .col-left .k_signs {
  padding: 10px 26px 9px 26px;
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 575px) {
  .home_section_1 .container .col-left .k_signs {
    font-size: 16px;
  }
}
.home_section_1 .container .col-right {
  max-width: 350px;
  width: 100%;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 575px) {
  .home_section_1 .container .col-right {
    max-width: 255px;
  }
}
.home_section_1 .container .col-right::before {
  content: "";
  background-image: url("../../assets/images/grnpill-nobg.svg");
  position: absolute;
  bottom: 48px;
  left: 38px;
  background-position: 100% 100%;
  width: 112px;
  height: 135px;
}
@media (max-width: 575px) {
  .home_section_1 .container .col-right::before {
    bottom: -8px;
    left: auto;
    width: 90px;
    height: 110px;
    right: -50px;
    background-size: contain;
  }
}
.home_section_1 .container .col-right::after {
  content: "";
  background-image: url("../../assets/images/yellow-pill.svg");
  position: absolute;
  bottom: 0;
  left: 5px;
  background-position: 100% 100%;
  width: 85px;
  height: 100px;
}
@media (max-width: 575px) {
  .home_section_1 .container .col-right::after {
    bottom: auto;
    left: -25px;
    width: 68px;
    height: 80px;
    background-size: contain;
    top: 15px;
  }
}
.home_section_1 .container .col-right img {
  border-radius: 50px 175px;
}
@media (max-width: 767.98px) {
  .home_section_1 .container .col-right img {
    border-radius: 45px 170px;
  }
}
@media (max-width: 767.98px) {
  .home_section_1 .container .col-right img {
    border-radius: 20px 130px;
  }
}

.home_section_2 {
  margin-bottom: 53px;
}
@media (max-width: 575px) {
  .home_section_2 {
    margin-bottom: 0;
  }
}
.home_section_2 .container {
  max-width: 1040px;
  width: 100%;
}
@media (max-width: 575px) {
  .home_section_2 .container {
    padding: 0;
  }
}
.home_section_2 .container .sec_2 {
  background-color: #FBEEFE;
  padding: 45px 70px 45px 41px;
}
@media (max-width: 575px) {
  .home_section_2 .container .sec_2 {
    padding: 53px 46px 38px 39px;
  }
}
.home_section_2 .container .sec_2 .col-right {
  margin-top: 71px;
  padding-left: 40px;
}
@media (max-width: 575px) {
  .home_section_2 .container .sec_2 .col-right {
    margin-top: 48px;
    padding-left: 0;
  }
}
.home_section_2 .container .sec_2 .col-right h2 {
  color: var(--color-secondary);
  font-family: var(--body-font-family);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .home_section_2 .container .sec_2 .col-right h2 {
    font-size: 22px;
    line-height: 30px;
  }
}
.home_section_2 .container .sec_2 .col-right p {
  color: #000;
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.home_section_2 .container .sec_2 .col-right .actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  align-items: center;
}
@media (max-width: 575px) {
  .home_section_2 .container .sec_2 .col-right .actions {
    gap: 10px;
  }
}
.home_section_2 .container .sec_2 .col-right .actions .exp_btn {
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  padding: 10px 37px 9px 36px;
}
@media (max-width: 991.98px) {
  .home_section_2 .container .sec_2 .col-right .actions .exp_btn {
    padding: 10px 22px 9px 22px;
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 575px) {
  .home_section_2 .container .sec_2 .col-right .actions .exp_btn {
    padding: 7px 10px 6px 10px;
    max-width: 161px;
    width: 100%;
    font-size: 14px;
    line-height: 22px;
  }
}
.home_section_2 .container .sec_2 .col-right .actions .hp_btn {
  box-shadow: 0px 0px 12px 0px rgba(137, 23, 163, 0.2);
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  padding: 10px 28px 9px 27px;
}
@media (max-width: 575px) {
  .home_section_2 .container .sec_2 .col-right .actions .hp_btn {
    padding: 7px 10px 6px 10px;
    max-width: 142px;
    width: 100%;
    font-size: 14px;
    line-height: 22px;
  }
}
.home_section_2 .container .sec_2 .col-left {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 575px) {
  .home_section_2 .container .sec_2 .col-left {
    max-width: 260px;
  }
}
.home_section_2 .container .sec_2 .col-left img {
  max-width: 350px;
  border-radius: 50px 175px;
}
@media (max-width: 767.98px) {
  .home_section_2 .container .sec_2 .col-left img {
    border-radius: 45px 170px;
  }
}
@media (max-width: 575px) {
  .home_section_2 .container .sec_2 .col-left img {
    border-radius: 20px 130px;
    max-width: 100%;
  }
}
.home_section_2 .container .sec_2 .col-left::after {
  content: "";
  background-image: url("../../assets/images/green-pill.svg");
  position: absolute;
  max-width: 104px;
  height: 120px;
  left: 0;
  bottom: 0;
  width: 100%;
}
@media (max-width: 575px) {
  .home_section_2 .container .sec_2 .col-left::after {
    max-width: 84px;
    height: 88px;
    left: -30px;
    bottom: auto;
    top: 30px;
    background-size: contain;
  }
}

.hm_services {
  padding: 64px 0 84px;
  background: linear-gradient(102deg, #F3A959 -6.08%, #8917A3 18.85%, #4799E1 49.08%, #4FAEA6 100%);
}
@media (max-width: 575px) {
  .hm_services {
    padding: 35px 0 34px;
    background: linear-gradient(115deg, #F3A959 -6.08%, #8917A3 18.85%, #4799E1 49.08%, #4FAEA6 100%);
  }
}
.hm_services .container h1 {
  color: #fff;
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .hm_services .container h1 {
    font-size: 40px;
    line-height: 50px;
  }
}
.hm_services .container p {
  color: #fff;
  text-align: center;
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 32px;
}
@media (max-width: 575px) {
  .hm_services .container p {
    padding: 0 36px;
    font-size: 14px;
    line-height: 24px;
  }
}
.hm_services .container .services .wrap {
  row-gap: 21px;
}
.hm_services .container .services .wrap .colm {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 14px 0px rgba(38, 114, 108, 0.2);
  padding: 18px 5px 17px 25px;
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media (max-width: 575px) {
  .hm_services .container .services .wrap .colm {
    padding: 15px 5px 14px 25px;
  }
}
.hm_services .container .services .wrap .colm .icon {
  max-width: 67px;
  height: 63px;
  width: 100%;
}
.hm_services .container .services .wrap .colm .icon img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px) {
  .hm_services .container .services .wrap .colm .icon {
    max-width: 58px;
    height: 57px;
  }
}
.hm_services .container .services .wrap .colm .service span {
  color: var(--color-primary);
  font-family: var(--body-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 575px) {
  .hm_services .container .services .wrap .colm .service span {
    font-size: 21px;
  }
}
.hm_services .container .services .wrap .colm:hover {
  background-color: var(--color-primary);
}
.hm_services .container .services .wrap .colm:hover .service span {
  color: #FFF;
}
.hm_services .container .services .wrap .colm:hover .icon img {
  filter: brightness(30.5);
}

.partners {
  padding: 51px 0 52px;
}
@media (max-width: 575px) {
  .partners {
    padding: 44px 0 35px;
  }
}
.partners .container h2 {
  color: var(--color-secondary);
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 18px;
}
@media (max-width: 575px) {
  .partners .container h2 {
    margin-bottom: 30px;
  }
}
.partners .container .partners_slider {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 575px) {
  .partners .container .partners_slider {
    flex-wrap: wrap;
    -moz-column-gap: 5px;
         column-gap: 5px;
    row-gap: 15px;
  }
}
.partners .container .partners_slider .partner_logo {
  max-width: 20%;
  width: 100%;
  height: 69px;
}
@media (max-width: 575px) {
  .partners .container .partners_slider .partner_logo {
    max-width: 32%;
    height: auto;
  }
  .partners .container .partners_slider .partner_logo:nth-child(1), .partners .container .partners_slider .partner_logo:nth-child(2) {
    max-width: 48%;
  }
}
.partners .container .partners_slider .partner_logo img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}

.break_cycle {
  padding: 125px 0 114px;
  background-color: var(--color-quaternary);
}
@media (max-width: 767.98px) {
  .break_cycle {
    padding: 51px 0 58px;
  }
}
.break_cycle .container .col-right {
  display: flex;
  align-items: center;
}
.break_cycle .container .video_content {
  margin-left: 30px;
  max-width: 330px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .break_cycle .container .video_content {
    margin: 44px 0 0 8px;
    max-width: 100%;
  }
}
.break_cycle .container .video_content h2 {
  color: #fff;
  font-family: var(--body-font-family);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}
.break_cycle .container .video_content p {
  color: #fff;
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 30px;
}
.break_cycle .container .video_content .wrc_btn {
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px 28px 9px 27px;
}
.break_cycle .container .video-wrapper {
  position: relative;
}
.break_cycle .container .video-wrapper.icon_hide .video_wrapper {
  opacity: 1 !important;
}
.break_cycle .container .video-wrapper .video-container {
  position: relative;
}
.break_cycle .container .video-wrapper .video-container .video_wrapper {
  opacity: 0;
  transition: 0.1s all ease;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9*/
  position: relative;
}
.break_cycle .container .video-wrapper .video-container .video_wrapper #video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.break_cycle .container .video-wrapper .video-container .play-button-wrapper #circle-play-b {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.break_cycle .container .video-wrapper .video-container .play-button-wrapper #circle-play-b.poster_hide {
  display: none;
}
.break_cycle .container .video-wrapper .video-container .play-button-wrapper #circle-play-b img {
  width: 100%;
  height: 100%;
}
.break_cycle .container .video-wrapper .video-container .play-button-wrapper #circle-play-b::after {
  content: "";
  background-image: url("../../assets/images/play.svg");
  background-position: 100% 100%;
  position: absolute;
  width: 79px;
  height: 78px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.support {
  padding-top: 115px;
  padding-bottom: 30px;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media (max-width: 575px) {
  .support {
    padding-top: 10px;
    padding-bottom: 0;
  }
}
.support .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(165deg, rgba(39, 37, 35, 0.44) 20%, rgba(39, 37, 35, 0.45) 100%);
  top: 0;
  left: 0;
  z-index: 1;
}
.support .main-img {
  max-width: 60%;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media (max-width: 575px) {
  .support .main-img {
    max-width: 90%;
    position: relative;
    left: -40px;
    height: 405px;
  }
}
.support .main-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  max-width: 895px;
  -o-object-position: right;
     object-position: right;
  margin-left: auto;
  display: flex;
}
.support .container {
  padding: 0;
}
@media (max-width: 575px) {
  .support .container {
    z-index: 1;
    position: relative;
  }
}
.support .container .left-col {
  display: flex;
  align-content: end;
  flex-wrap: wrap;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .support .container .left-col {
    display: none;
  }
}
.support .container .right-col {
  padding: 0 40px 0 30px;
}
@media (max-width: 575px) {
  .support .container .right-col {
    padding: 0 26px;
    background-color: #4faea6;
  }
}
.support .container .right-col .wrap {
  border-top-right-radius: 180px;
  border-bottom-right-radius: 180px;
  background: #4FAEA6;
  max-width: 817px;
  width: 100%;
  display: flex;
  justify-content: end;
  padding: 31px 35px 40px 0;
  margin-bottom: 40px;
  z-index: 1;
  position: relative;
}
@media (max-width: 575px) {
  .support .container .right-col .wrap {
    justify-content: center;
    padding: 31px 0px 30px 0;
    margin-bottom: 5px;
  }
}
.support .container .right-col .wrap h2 {
  color: #FFF;
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 2px;
  max-width: 492px;
  width: 100%;
  padding: 0 20px 0 60px;
}
@media (max-width: 991.98px) {
  .support .container .right-col .wrap h2 {
    font-size: 25px;
    line-height: 30px;
    max-width: 305px;
    padding: 0 0 0 80px;
  }
}
@media (max-width: 575px) {
  .support .container .right-col .wrap h2 {
    font-size: 40px;
    line-height: 50px;
    padding: 0 15px;
    max-width: 420px;
  }
}
.support .container .right-col .blocks-wrapper {
  padding-bottom: 133px;
  z-index: 2;
  position: relative;
}
@media (max-width: 991.98px) {
  .support .container .right-col .blocks-wrapper {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .support .container .right-col .blocks-wrapper .block-outer {
    margin-top: 0;
  }
}
.support .container .right-col .blocks-wrapper .block-outer.current {
  margin-bottom: 100px;
}
.support .container .right-col .blocks-wrapper .block-outer .wrapper {
  position: relative;
  height: 100%;
}
.support .container .right-col .blocks-wrapper .block-outer .wrapper .block {
  position: relative;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 14px 0px rgba(38, 114, 108, 0.2);
  padding: 81px 17px 16px 17px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 100%;
  cursor: pointer;
  z-index: 2;
  transition: all 0.5s ease;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media (max-width: 575px) {
  .support .container .right-col .blocks-wrapper .block-outer .wrapper .block {
    min-height: 157px;
    height: auto;
  }
}
.support .container .right-col .blocks-wrapper .block-outer .wrapper .block.spin:hover img {
  transform: rotate(90deg);
}
@media (max-width: 575px) {
  .support .container .right-col .blocks-wrapper .block-outer .wrapper .block.spin:hover img {
    transform: rotate(0deg);
  }
}
.support .container .right-col .blocks-wrapper .block-outer .wrapper .block h4 {
  font-family: var(--body-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: var(--color-primary);
}
.support .container .right-col .blocks-wrapper .block-outer .wrapper .block img {
  transition: all 0.2s ease;
}
.support .container .right-col .blocks-wrapper .block-outer .wrapper .content {
  z-index: -1;
  opacity: 0;
  padding: 30px 15px 16px 16px;
  background-color: #fff;
  max-width: 100%;
  width: 100%;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50px);
  transition: opacity 0.15s ease-in, transform 0.3s ease-out;
  background-color: var(--color-primary);
}
.support .container .right-col .blocks-wrapper .block-outer .wrapper .content p {
  font-size: 15px;
  line-height: normal;
  color: #fff;
}
@media (max-width: 575px) {
  .support .container .right-col .blocks-wrapper .block-outer .wrapper .content {
    display: flex;
    opacity: 1;
    position: relative;
    transform: translate(-50%, -15px);
  }
}
.support .container .right-col .blocks-wrapper .block-outer .wrapper:hover .content {
  height: auto;
  opacity: 1;
  z-index: 1;
  transform: translate(-50%, -20px);
}

.page-404 .hm_services {
  padding: 90px 0 60px;
  background: linear-gradient(202deg, #F3A959 -30.27%, #8917A3 0.11%, #4799E1 85.32%, #4FAEA6 98.98%);
}
.page-404 .hm_services h1 {
  color: #fff;
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 90px;
}
@media (max-width: 575px) {
  .page-404 .hm_services h1 {
    font-size: 60px;
    line-height: 70px;
  }
}
.page-404 .hm_services p {
  color: #fff;
  text-align: center;
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
}
.page-404 .hm_services .bck_btn {
  display: flex;
  width: auto;
  justify-content: center;
  margin: 0 auto;
  padding: 9px 58px 8px 57px;
}
.page-404 .hm_services .services {
  margin-top: 100px;
}
.page-404 .hm_services .services .wrap h4 {
  text-align: center;
  color: #fff;
  font-family: var(--body-font-family);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.about-page h2 {
  color: var(--color-secondary);
  font-family: var(--body-font-family);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
}
@media (max-width: 575px) {
  .about-page h2 {
    font-size: 22px;
    line-height: 30px;
  }
}
.about-page p {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 575px) {
  .about-page p {
    font-size: 14px;
    line-height: 22px;
  }
}
.about-page .btn {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}

.our-mission {
  padding: 95px 0;
}
@media (max-width: 767.98px) {
  .our-mission {
    padding: 45px 0;
  }
}
.our-mission .container {
  position: relative;
}
@media (max-width: 767.98px) {
  .our-mission .container .outer {
    flex-direction: column-reverse;
  }
}
.our-mission .container .col-left {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}
.our-mission .container .col-left .wrap {
  max-width: 396px;
}
@media (max-width: 767.98px) {
  .our-mission .container .col-left .wrap {
    margin-top: 20px;
    max-width: 100%;
  }
}
.our-mission .container .col-left .wrap h2 {
  margin-bottom: 30px;
}
.our-mission .container .col-left .wrap p {
  font-family: var(--body-font-family);
}
.our-mission .container .col-right {
  display: flex;
  justify-content: center;
}
.our-mission .container .col-right .wrap {
  max-width: 380px;
  width: 100%;
  position: relative;
}
.our-mission .container .col-right .wrap::before {
  content: "";
  background-image: url("../../assets/images/mis_pills.svg");
  position: absolute;
  left: -60px;
  top: 45px;
  max-width: 167px;
  width: 100%;
  height: 190px;
}
@media (max-width: 767.98px) {
  .our-mission .container .col-right .wrap::before {
    left: -30px;
  }
}
.our-mission .container .col-right .wrap img {
  border-radius: 50px 150px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .our-mission .container .col-right .wrap img {
    border-radius: 20px 130px;
  }
}

.our-vision .container {
  background-color: #FBEEFE;
}
.our-vision .container .wrapper {
  padding: 47px 0 59px;
}
.our-vision .container .wrapper .col-right {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .our-vision .container .wrapper .col-right {
    margin-top: 20px;
  }
}
.our-vision .container .wrapper .col-right .wrap {
  max-width: 265px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .our-vision .container .wrapper .col-right .wrap {
    max-width: 350px;
  }
}
.our-vision .container .wrapper .col-right .wrap h2 {
  margin-bottom: 25px;
}
@media (max-width: 767.98px) {
  .our-vision .container .wrapper .col-right .wrap h2 {
    margin-bottom: 15px;
  }
}
.our-vision .container .wrapper .col-right .wrap p {
  font-family: var(--body-font-family);
}
.our-vision .container .wrapper .col-left .wrap {
  max-width: 479px;
  width: 100%;
}

.communityHistory {
  padding: 95px 0 126px;
}
@media (max-width: 767.98px) {
  .communityHistory {
    padding: 65px 0 60px;
  }
}
@media (max-width: 767.98px) {
  .communityHistory .outer {
    flex-direction: column-reverse;
  }
}
.communityHistory .col-left {
  display: flex;
  align-items: center;
}
.communityHistory .col-left .wrap {
  max-width: 422px;
}
@media (max-width: 767.98px) {
  .communityHistory .col-left .wrap {
    margin-top: 20px;
    max-width: 100%;
  }
}
.communityHistory .col-left .wrap h2 {
  margin-bottom: 15px;
}
.communityHistory .col-left .wrap p {
  font-family: var(--heading-font-family);
}
.communityHistory .col-left .wrap .cm_btn {
  margin-top: 31px;
  font-family: var(--body-font-family);
  padding: 9px 46px;
}
.communityHistory .col-right .wrap {
  position: relative;
  max-width: 380px;
  width: 100%;
}
.communityHistory .col-right .wrap::after {
  content: "";
  background-image: url("../../assets/images/hist-rec.svg");
  position: absolute;
  width: 140px;
  height: 165px;
  right: -20px;
  bottom: 10%;
  transform: translate(35px, 20px);
}
@media (max-width: 767.98px) {
  .communityHistory .col-right .wrap::after {
    right: 10px;
  }
}
.communityHistory .col-right .wrap img {
  border-radius: 50px 150px;
}
@media (max-width: 767.98px) {
  .communityHistory .col-right .wrap img {
    border-radius: 20px 130px;
  }
}

.supportEveryone {
  padding: 95px 0 126px;
}
@media (max-width: 767.98px) {
  .supportEveryone {
    padding: 65px 0 60px;
  }
}
.supportEveryone .col-left {
  display: flex;
  align-items: center;
}
.supportEveryone .col-left .wrap {
  max-width: 422px;
}
@media (max-width: 767.98px) {
  .supportEveryone .col-left .wrap {
    margin-top: 20px;
    max-width: 100%;
  }
}
.supportEveryone .col-left .wrap h2 {
  margin-bottom: 15px;
}
.supportEveryone .col-left .wrap p {
  font-family: var(--heading-font-family);
}
.supportEveryone .col-left .wrap .cm_btn {
  margin-top: 31px;
  font-family: var(--body-font-family);
  padding: 9px 46px;
}
.supportEveryone .col-right .wrap {
  position: relative;
  max-width: 380px;
  width: 100%;
}
.supportEveryone .col-right .wrap::after {
  content: "";
  background-image: url("../../assets/images/green-pill.svg");
  position: absolute;
  width: 140px;
  height: 165px;
  right: -20px;
  bottom: 10%;
  transform: translate(35px, 20px);
}
@media (max-width: 767.98px) {
  .supportEveryone .col-right .wrap::after {
    right: 10px;
  }
}
.supportEveryone .col-right .wrap img {
  border-radius: 50px 150px;
}
@media (max-width: 767.98px) {
  .supportEveryone .col-right .wrap img {
    border-radius: 20px 130px;
  }
}

.supportEveryone {
  padding: 95px 0 126px;
}
@media (max-width: 767.98px) {
  .supportEveryone {
    padding: 65px 0 60px;
  }
}
.supportEveryone .col-left {
  display: flex;
  align-items: center;
}
.supportEveryone .col-left .wrap {
  max-width: 422px;
}
@media (max-width: 767.98px) {
  .supportEveryone .col-left .wrap {
    margin-top: 20px;
    max-width: 100%;
  }
}
.supportEveryone .col-left .wrap h2 {
  margin-bottom: 15px;
}
.supportEveryone .col-left .wrap p {
  font-family: var(--heading-font-family);
}
.supportEveryone .col-left .wrap .cm_btn {
  margin-top: 31px;
  font-family: var(--body-font-family);
  padding: 9px 46px;
}
.supportEveryone .col-right .wrap {
  position: relative;
  max-width: 380px;
  width: 100%;
}
.supportEveryone .col-right .wrap::after {
  content: "";
  background-image: url("../../assets/images/green-pill.svg");
  position: absolute;
  width: 140px;
  height: 165px;
  right: -20px;
  bottom: 10%;
  transform: translate(35px, 20px);
}
@media (max-width: 767.98px) {
  .supportEveryone .col-right .wrap::after {
    right: 10px;
  }
}
.supportEveryone .col-right .wrap img {
  border-radius: 50px 150px;
}
@media (max-width: 767.98px) {
  .supportEveryone .col-right .wrap img {
    border-radius: 20px 130px;
  }
}

.about-stat-cards {
  padding: 160px 0 200px;
}
@media (max-width: 767.98px) {
  .about-stat-cards {
    padding: 70px 0 140px;
  }
}
.about-stat-cards .container {
  max-width: 1020px;
}
.about-stat-cards .cards-wrap {
  position: relative;
  display: grid;
  grid-template-areas: "item1 item2 item3" "item1 item4 item5";
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 991.98px) {
  .about-stat-cards .cards-wrap {
    grid-template-areas: "item1 item3" "item1 item4 " "item2 item5";
  }
}
@media (max-width: 767.98px) {
  .about-stat-cards .cards-wrap {
    grid-template-areas: "item1" "item2" "item3" "item4" "item5";
  }
}
.about-stat-cards .cards-wrap.grid-7 {
  grid-template-areas: "item1 item3 ." "item2 item4 item6" ". item5 item7";
}
@media (max-width: 991.98px) {
  .about-stat-cards .cards-wrap.grid-7 {
    grid-template-areas: "item1 item4" "item2 item5 " "item3 item6" ". item7";
  }
}
@media (max-width: 767.98px) {
  .about-stat-cards .cards-wrap.grid-7 {
    grid-template-areas: "item1" "item2" "item3" "item4" "item5" "item6" "item7";
  }
}
.about-stat-cards .cards-wrap.grid-7 .cards {
  margin: 0;
}
.about-stat-cards .cards-wrap.grid-6 {
  grid-template-areas: "item1 item2 ." "item1 item3 item5" "item1 item4 item6";
}
@media (max-width: 991.98px) {
  .about-stat-cards .cards-wrap.grid-6 {
    grid-template-areas: "item1 item4" "item2 item5 " "item3 item6";
  }
}
@media (max-width: 767.98px) {
  .about-stat-cards .cards-wrap.grid-6 {
    grid-template-areas: "item1" "item2" "item3" "item4" "item5" "item6";
  }
}
.about-stat-cards .cards-wrap.grid-6 .cards {
  margin: 0;
}
.about-stat-cards .cards-wrap .bars {
  position: absolute;
  bottom: -100px;
  left: 130px;
}
.about-stat-cards .cards {
  background-color: #FBEEFE;
  padding: 10% 15%;
  min-height: 270px;
  width: 100%;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  border-top-right-radius: 130px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 130px;
  grid-area: item1;
  justify-content: center;
  word-wrap: normal;
}
.about-stat-cards .cards:nth-child(2) {
  grid-area: item2;
}
@media (max-width: 991.98px) {
  .about-stat-cards .cards:nth-child(2) {
    margin-top: -310px;
  }
}
@media (max-width: 767.98px) {
  .about-stat-cards .cards:nth-child(2) {
    margin: 0;
  }
}
.about-stat-cards .cards:nth-child(3) {
  grid-area: item3;
  margin-bottom: -205px;
}
@media (max-width: 991.98px) {
  .about-stat-cards .cards:nth-child(3) {
    margin-bottom: 0;
  }
}
.about-stat-cards .cards:nth-child(4) {
  grid-area: item4;
}
.about-stat-cards .cards:nth-child(5) {
  grid-area: item5;
  margin-bottom: -215px;
}
@media (max-width: 991.98px) {
  .about-stat-cards .cards:nth-child(5) {
    margin-bottom: 0;
  }
}
.about-stat-cards .cards:nth-child(6) {
  grid-area: item6;
  margin-bottom: -215px;
}
@media (max-width: 991.98px) {
  .about-stat-cards .cards:nth-child(6) {
    margin-bottom: 0;
  }
}
.about-stat-cards .cards:nth-child(7) {
  grid-area: item7;
  margin-bottom: -215px;
}
@media (max-width: 991.98px) {
  .about-stat-cards .cards:nth-child(7) {
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .about-stat-cards .cards {
    max-width: 100%;
  }
}
.about-stat-cards .cards h2 {
  font-family: var(--body-font-family);
  font-size: 1.9em;
  line-height: 33px;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 0;
  margin-bottom: 14px;
}
.about-stat-cards .cards p {
  font-family: var(--heading-font-family);
  font-size: 1em;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  margin: 0 0 15px;
}

.survivorTestimonials {
  padding: 63px 0 155px;
}
.survivorTestimonials.active-Testimonials {
  margin-top: 50px;
}
@media (max-width: 767.98px) {
  .survivorTestimonials {
    padding: 60px 0 115px;
  }
}
.survivorTestimonials .testimonials-slider .testimonial-reel {
  margin-top: 42px;
}
.survivorTestimonials .testimonials-slider .testimonial-reel .box {
  position: relative;
  margin-bottom: 15px;
}
.survivorTestimonials .testimonials-slider .testimonial-reel .box .test-component {
  background-color: #fff;
  padding: 31px 48px 40px 99px;
  box-shadow: 0 0.1em 1rem rgba(0, 0, 0, 0.15);
  min-height: 200px;
  position: relative;
  background-image: url("../images/testimobg.png");
  background-position: 100% 100%;
  background-size: cover;
  border-radius: 10px;
}
.survivorTestimonials .testimonials-slider .testimonial-reel .box .test-component::before {
  content: "";
  background-image: url("../images/quot.svg");
  position: absolute;
  width: 47px;
  height: 50px;
  left: 21px;
  top: 20px;
}
.survivorTestimonials .testimonials-slider .testimonial-reel .box .test-title {
  font-family: var(--heading-font-family);
  color: #000;
  text-align: center;
  margin-top: 3.3rem;
  margin-bottom: 15px;
}
.survivorTestimonials .testimonials-slider .testimonial-reel .box .test-content {
  text-align: left;
}
@media (max-width: 575px) {
  .survivorTestimonials .testimonials-slider .testimonial-reel .box .test-content p {
    font-size: 14px;
  }
}
.survivorTestimonials .testimonials-slider .testimonial-reel .box {
  max-width: 600px;
}
@media (max-width: 575px) {
  .survivorTestimonials .testimonials-slider .testimonial-reel .box {
    max-width: 432px;
  }
}
.survivorTestimonials .testimonials-slider .testimonial-reel .slick-list {
  padding-left: 18%;
  overflow: visible;
}
@media (max-width: 575px) {
  .survivorTestimonials .testimonials-slider .testimonial-reel .slick-list {
    padding-left: 0;
  }
}
.survivorTestimonials .testimonials-slider .testimonial-reel .slick-slide {
  opacity: 0.3;
  transition: opacity 0.3s, padding 0.3s, transform 0.3s;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 20px;
}
.survivorTestimonials .testimonials-slider .testimonial-reel .slick-slide.slick-cloned {
  opacity: 0.3;
  transition: opacity 0.3s;
}
.survivorTestimonials .testimonials-slider .testimonial-reel .slick-slide.slick-current.slick-active {
  opacity: 1;
  transition: opacity 0.3s, padding 0.3s, transform 0.3s;
  transform: scaleY(1.08);
  transform-origin: top;
  padding-top: 0;
}
.survivorTestimonials .testimonials-slider .testimonial-reel button {
  position: absolute;
  bottom: -40px;
  border: 0;
}
.survivorTestimonials .testimonials-slider .testimonial-reel button.prev {
  left: 47%;
}
@media (max-width: 991.98px) {
  .survivorTestimonials .testimonials-slider .testimonial-reel button.prev {
    left: 45%;
  }
}
@media (max-width: 767.98px) {
  .survivorTestimonials .testimonials-slider .testimonial-reel button.prev {
    left: 44%;
  }
}
@media (max-width: 575px) {
  .survivorTestimonials .testimonials-slider .testimonial-reel button.prev {
    right: 40%;
  }
}
.survivorTestimonials .testimonials-slider .testimonial-reel button.next {
  right: 47%;
}
@media (max-width: 991.98px) {
  .survivorTestimonials .testimonials-slider .testimonial-reel button.next {
    right: 45%;
  }
}
@media (max-width: 767.98px) {
  .survivorTestimonials .testimonials-slider .testimonial-reel button.next {
    right: 44%;
  }
}
@media (max-width: 575px) {
  .survivorTestimonials .testimonials-slider .testimonial-reel button.next {
    right: 40%;
  }
}
.survivorTestimonials .testimonials-slider .testimonial-reel button .arrow-left, .survivorTestimonials .testimonials-slider .testimonial-reel button .arrow-right {
  position: relative;
  display: block;
  width: 22px;
  height: 15px;
}
.survivorTestimonials .testimonials-slider .testimonial-reel button .arrow-left::after, .survivorTestimonials .testimonials-slider .testimonial-reel button .arrow-right::after {
  width: 100%;
  height: 100%;
  position: absolute;
}
.survivorTestimonials .testimonials-slider .testimonial-reel button .arrow-left::after {
  content: "";
  background-image: url("../images/leftarrow.svg");
}
.survivorTestimonials .testimonials-slider .testimonial-reel button .arrow-right::after {
  content: "";
  background-image: url("../images/rightarrow.svg");
}

.maritz_story {
  padding: 81px 0 104px;
  background-color: var(--color-quaternary);
}
@media (max-width: 767.98px) {
  .maritz_story {
    padding: 40px 0 54px;
  }
}
.maritz_story .container .col-right {
  display: flex;
  align-items: center;
}
.maritz_story .container .col-right .video_content {
  margin-left: 30px;
  max-width: 64%;
  width: 100%;
}
@media (max-width: 767.98px) {
  .maritz_story .container .col-right .video_content {
    max-width: 85%;
    margin-left: 15px;
  }
}
.maritz_story .container .col-right .video_content h2 {
  color: #fff;
  font-family: var(--body-font-family);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .maritz_story .container .col-right .video_content h2 {
    font-size: 22px;
    line-height: 30px;
  }
}
.maritz_story .container .col-right .video_content p {
  color: #fff;
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .maritz_story .container .col-right .video_content p {
    font-size: 14px;
    line-height: 22px;
  }
}
.maritz_story .container .col-right .video_content .wrc_btn {
  font-family: var(--body-font-family);
  padding: 10px 28px 9px 27px;
}
.maritz_story .container .video-wrapper {
  position: relative;
}
.maritz_story .container .video-wrapper.icon_hide .video_wrapper {
  opacity: 1 !important;
}
.maritz_story .container .video-wrapper .video-container {
  position: relative;
}
.maritz_story .container .video-wrapper .video-container .video_wrapper {
  opacity: 0;
  transition: 0.1s all ease;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9*/
  position: relative;
}
.maritz_story .container .video-wrapper .video-container .video_wrapper #video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.maritz_story .container .video-wrapper .video-container .play-button-wrapper #circle-play-b {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.maritz_story .container .video-wrapper .video-container .play-button-wrapper #circle-play-b.poster_hide {
  display: none;
}
.maritz_story .container .video-wrapper .video-container .play-button-wrapper #circle-play-b img {
  width: 100%;
  height: 100%;
}
.maritz_story .container .video-wrapper .video-container .play-button-wrapper #circle-play-b::after {
  content: "";
  background-image: url("../../assets/images/play.svg");
  background-position: 100% 100%;
  position: absolute;
  width: 79px;
  height: 78px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.ourTeam {
  background-color: #FBEEFE;
  padding: 76px 0 80px;
}
@media (max-width: 767.98px) {
  .ourTeam {
    padding: 46px 0 40px;
  }
}
@media (max-width: 767.98px) {
  .ourTeam .outer {
    flex-direction: column-reverse;
  }
}
.ourTeam .col-left {
  display: flex;
  align-items: center;
}
.ourTeam .col-left .wrap {
  max-width: 338px;
  width: 100%;
}
@media (max-width: 575px) {
  .ourTeam .col-left .wrap {
    margin-top: 15px;
  }
}
.ourTeam .col-left .wrap h2 {
  margin-bottom: 15px;
}
.ourTeam .col-left .wrap p {
  font-family: var(--heading-font-family);
}
.ourTeam .col-left .wrap .cm_btn {
  margin-top: 34px;
  padding: 9px 46px;
}

.annualReports {
  padding: 61px 0 94px;
}
.annualReports .container {
  max-width: 1030px;
}
.annualReports .title {
  font-family: var(--body-font-family);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 30px;
}
.annualReports .cards {
  box-shadow: 1px 1px 7px 2px #ecd3f1;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  transition: all 0.5s ease;
}
.annualReports .cards:hover .bottom {
  background-color: #BE77CE;
}
.annualReports .cards:hover .bottom span {
  color: #fff;
}
.annualReports .cards:hover .bottom svg path {
  fill: #fff;
}
.annualReports .cards .top {
  position: relative;
  padding: 42px 10px 75px 35px;
  background-color: #4FAEA6;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  flex-grow: 1;
  background-position: center center;
  background-size: cover;
}
.annualReports .cards .top .purple-bar {
  display: flex;
  margin-left: auto;
  margin-bottom: 20px;
  margin-top: -32px;
}
.annualReports .cards .top h2 {
  font-family: var(--body-font-family);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: #fff;
  padding-right: 52px;
  z-index: 1;
  position: relative;
}
.annualReports .cards .top .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
.annualReports .cards .bottom-img img {
  display: flex;
  margin-left: auto;
  max-width: 118px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.annualReports .cards .bottom {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: space-between;
  padding: 15px 15px 20px 35px;
  background-color: #fff;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
.annualReports .cards .bottom span {
  font-family: var(--body-font-family);
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  color: var(--color-primary);
}

.support-page h2 {
  color: var(--color-secondary);
  font-family: var(--body-font-family);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 575px) {
  .support-page h2 {
    font-size: 22px;
    line-height: 30px;
  }
}
.support-page p {
  color: #000;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .support-page p {
    font-size: 16px;
    line-height: 24px;
  }
}
.support-page .btn {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 575px) {
  .support-page .btn {
    font-size: 14px;
  }
}

.interns {
  padding: 95px 0 90px;
}
@media (max-width: 575px) {
  .interns {
    padding: 55px 0 60px;
  }
}
.interns .col-left {
  max-width: 320px;
}
@media (max-width: 575px) {
  .interns .col-left {
    max-width: 100%;
  }
}
.interns .col-left h2 {
  margin-bottom: 15px;
}
.interns .col-left p {
  line-height: 28px;
}
.interns .col-left .cm_btn {
  margin-top: 31px;
  font-family: var(--body-font-family);
  padding: 9px 46px;
}
.interns .col-right .wrap {
  position: relative;
  max-width: 350px;
  width: 100%;
}
@media (max-width: 575px) {
  .interns .col-right .wrap {
    max-width: 100%;
    margin-top: 30px;
  }
}
.interns .col-right .wrap::after {
  content: "";
  background-image: url("../../assets/images/hist-rec.svg");
  position: absolute;
  width: 115px;
  background-size: 100% 100%;
  height: 141px;
  right: -40px;
  bottom: 40px;
}
@media (max-width: 767.98px) {
  .interns .col-right .wrap::after {
    width: 80px;
    height: 100px;
    right: -19px;
  }
}
.interns .col-right .wrap img {
  border-radius: 50px 150px;
}
@media (max-width: 767.98px) {
  .interns .col-right .wrap img {
    border-radius: 20px 120px;
  }
}

.annual_events {
  padding: 38px 0 65px;
}
.annual_events h2 {
  margin-bottom: 36px;
}
.annual_events .event_card {
  border-radius: 10px;
  background: #fff;
  transition: 0.4s all ease;
  box-shadow: 0px 0px 14px 0px rgba(38, 114, 108, 0.2);
  overflow: hidden;
  min-height: 500px;
}
.annual_events .event_card:hover {
  background: #BE77CE;
}
.annual_events .event_card:hover h3 {
  color: #fff !important;
}
.annual_events .event_card:hover p {
  color: #fff !important;
}
.annual_events .event_card:hover svg * {
  fill: #fff !important;
}
.annual_events .event_card .thumbnail {
  min-height: 270px;
  max-height: 270px;
  display: flex;
}
.annual_events .event_card .thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  width: 100%;
}
.annual_events .event_card .content {
  position: relative;
  padding: 20px 20px 35px 20px;
}
.annual_events .event_card .content h3 {
  color: #8917A3;
  font-family: Outfit;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin: 0 0 17px;
}
.annual_events .event_card .content p {
  max-width: calc(100% - 50px);
  color: #000;
  font-family: Lato;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.annual_events .event_card .content svg {
  width: 45px;
  height: 25px;
  right: 20px;
  bottom: 20px;
  position: absolute;
}

.memory_gifts {
  padding: 58px 0 95px;
  background-color: #FBEEFE;
}
@media (max-width: 575px) {
  .memory_gifts {
    padding: 45px 0 65px;
  }
}
.memory_gifts h2 {
  margin-bottom: 45px;
}
@media (max-width: 575px) {
  .memory_gifts h2 {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 26px;
  }
}
.memory_gifts .cards_wrapper {
  row-gap: 32px;
  -moz-column-gap: 25px;
       column-gap: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.memory_gifts .cards_wrapper .fund_card {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 14px 0px rgba(38, 114, 108, 0.2);
  position: relative;
  overflow: hidden;
}
.memory_gifts .cards_wrapper .fund_card:nth-child(1n+1) {
  width: calc(60% - 15px);
}
@media (max-width: 767.98px) {
  .memory_gifts .cards_wrapper .fund_card:nth-child(1n+1) {
    width: 100% !important;
  }
}
.memory_gifts .cards_wrapper .fund_card:nth-child(2n+1) {
  width: calc(60% - 15px);
}
@media (max-width: 767.98px) {
  .memory_gifts .cards_wrapper .fund_card:nth-child(2n+1) {
    width: 100%;
  }
}
.memory_gifts .cards_wrapper .fund_card:nth-child(3n+1) {
  width: calc(40% - 15px);
}
@media (max-width: 767.98px) {
  .memory_gifts .cards_wrapper .fund_card:nth-child(3n+1) {
    width: 100%;
  }
}
.memory_gifts .cards_wrapper .fund_card:nth-child(4n+1) {
  width: calc(40% - 15px);
}
@media (max-width: 767.98px) {
  .memory_gifts .cards_wrapper .fund_card:nth-child(4n+1) {
    width: 100%;
  }
}
.memory_gifts .cards_wrapper .fund_card .content {
  min-height: 234px;
  padding: 15px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
  background-position: top right;
  background-size: cover;
}
@media (max-width: 575px) {
  .memory_gifts .cards_wrapper .fund_card .content {
    padding: 30px 18px;
    background-position: bottom right;
    background-size: contain;
  }
}
.memory_gifts .cards_wrapper .fund_card .content h3 {
  color: #8917A3;
  font-family: Outfit;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  margin: 0 0 6px;
}
@media (max-width: 575px) {
  .memory_gifts .cards_wrapper .fund_card .content h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
.memory_gifts .cards_wrapper .fund_card .content p {
  color: #1E1E1E;
  font-family: Outfit;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}
@media (max-width: 575px) {
  .memory_gifts .cards_wrapper .fund_card .content p {
    font-size: 16px;
    line-height: 24px;
  }
}
.memory_gifts .cards_wrapper .fund_card .cta .cta-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px 10px 38px;
  min-height: 78px;
  background-color: #fff;
  z-index: 2;
  position: relative;
  transition: all 0.5s ease;
}
@media (max-width: 575px) {
  .memory_gifts .cards_wrapper .fund_card .cta .cta-link {
    -moz-column-gap: 10px;
         column-gap: 10px;
    padding: 10px 24px 10px 18px;
  }
}
.memory_gifts .cards_wrapper .fund_card .cta .cta-link .text {
  color: #8917A3;
  font-family: Outfit;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .memory_gifts .cards_wrapper .fund_card .cta .cta-link .text {
    font-size: 16px;
  }
}
.memory_gifts .cards_wrapper .fund_card .cta .cta-link:hover {
  background-color: #BE77CE;
}
.memory_gifts .cards_wrapper .fund_card .cta .cta-link:hover .text {
  color: #fff;
}
.memory_gifts .cards_wrapper .fund_card .cta .cta-link:hover svg path {
  fill: #fff;
}
.memory_gifts .cards_wrapper .fund_card a {
  transition: all 0.5s ease;
}
.memory_gifts .cards_wrapper .fund_card a .first_circle {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  overflow: visible;
}
.memory_gifts .cards_wrapper .fund_card a .first_circle ellipse {
  fill: #8917A3;
  transition: fill 0.5s ease-in-out;
}
.memory_gifts .cards_wrapper .fund_card a .second_circle {
  position: absolute;
  height: 100%;
  bottom: 60px;
  right: 0;
  overflow: visible;
  transform: rotate(0deg);
}
.memory_gifts .cards_wrapper .fund_card a .second_circle path {
  fill: #F3A959;
  transition: fill 0.5s ease-in-out;
}
.memory_gifts .cards_wrapper .fund_card a:hover .first_circle ellipse {
  fill: #F3A959;
}
.memory_gifts .cards_wrapper .fund_card a:hover .second_circle path {
  fill: #8917A3;
}
.memory_gifts .cards_wrapper .fund_card a:hover .cta-link {
  background-color: #BE77CE;
}
.memory_gifts .cards_wrapper .fund_card a:hover .cta-link .text {
  color: #fff;
}
.memory_gifts .cards_wrapper .fund_card a:hover .cta-link svg path {
  fill: #fff;
}

.page-default {
  padding-top: 50px;
}

.banner-top-inner {
  position: relative;
  padding: 0 25px;
}
.banner-top-inner .container {
  max-width: 1200px;
  position: relative;
  padding: 75px 50px 75px 157px;
}
@media (max-width: 991.98px) {
  .banner-top-inner .container {
    padding: 75px 50px 75px 90px;
  }
}
@media (max-width: 575px) {
  .banner-top-inner .container {
    padding: 55px 50px 55px 90px;
  }
}
@media (max-width: 380px) {
  .banner-top-inner .container {
    padding: 40px 0 40px 50px;
  }
}
.banner-top-inner .container::after {
  content: "";
  position: absolute;
  border-radius: 0 0 0 70px;
  background: linear-gradient(102deg, #F3A959 -6.08%, #8917A3 18.85%, #4799E1 49.08%, #4FAEA6 100%);
  width: 100vw;
  left: 0;
  height: 100%;
  top: 0;
  z-index: -1;
  animation: move 20s ease infinite;
}
@media (max-width: 575px) {
  .banner-top-inner .container::after {
    border-radius: 0 0 0 30px;
  }
}
@keyframes move {
  0% {
    width: 100vw;
  }
  50% {
    width: 200vw;
  }
  100% {
    width: 100vw;
  }
}
.banner-top-inner .content {
  width: 100%;
  margin: 0 auto;
}
.banner-top-inner .content h1 {
  font-family: var(--body-font-family);
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 4px;
}
@media (max-width: 767.98px) {
  .banner-top-inner .content h1 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 575px) {
  .banner-top-inner .content h1 {
    font-size: 28px;
    line-height: 35px;
    letter-spacing: 3px;
  }
}

.single-service-bnr .content {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.single-service-bnr .content img {
  background-color: #fff;
  padding: 28px;
  border-radius: 10px;
  max-width: 120px;
  width: 100%;
}

.expect-tabs {
  padding: 133px 0 84px;
}
@media (max-width: 767.98px) {
  .expect-tabs {
    padding: 60px 0 40px;
  }
}
.expect-tabs .container {
  max-width: 1000px;
}
.expect-tabs .cards {
  background-color: #fff;
  padding: 16px;
  box-shadow: 1px 1px 5px 4px #FBEEFE;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 12px;
  -moz-column-gap: 7px;
       column-gap: 7px;
  border: 1px solid rgba(0, 0, 0, 0.0705882353);
}
.expect-tabs .cards h3 {
  font-family: var(--body-font-family);
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: var(--color-primary);
}
@media (max-width: 575px) {
  .expect-tabs .cards h3 {
    font-size: 20px;
    line-height: 28px;
  }
}

.what-to-expect.active-expect {
  margin-top: 40px;
}
.what-to-expect .container {
  max-width: 1025px;
}
.what-to-expect .row {
  padding: 75px 42px 62px 70px;
  background-color: #FBEEFE;
}
@media (max-width: 767.98px) {
  .what-to-expect .row {
    padding: 35px 25px 35px;
  }
}
.what-to-expect .col-left {
  padding-right: 42px;
}
.what-to-expect .col-left h2 {
  font-family: var(--body-font-family);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: var(--color-secondary);
}
.what-to-expect .col-left p {
  font-family: var(--heading-font-family);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  margin: 28px 0 30px;
}
.what-to-expect .col-left ul {
  padding-left: 30px;
  row-gap: 11px;
  display: flex;
  flex-direction: column;
}
.what-to-expect .col-left ul li {
  list-style-type: none;
  color: #000;
  position: relative;
}
.what-to-expect .col-left ul li::before {
  content: "";
  background-image: url("../../assets/images/Ellipse.svg");
  position: absolute;
  width: 10px;
  height: 10px;
  left: -30px;
  top: 10px;
}
.what-to-expect .col-left ul li a {
  font-family: var(--sub-font-family);
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #000;
}

.identify-abuse {
  padding: 83px 0 83px;
}
@media (max-width: 767.98px) {
  .identify-abuse {
    padding: 52px 0 42px;
  }
}
.identify-abuse .container {
  max-width: 1025px;
}
@media (max-width: 767.98px) {
  .identify-abuse .col-left {
    display: flex;
  }
}
.identify-abuse .col-left .col-left-img {
  max-width: 350px;
  border-radius: 50px 150px;
}
@media (max-width: 575px) {
  .identify-abuse .col-left .col-left-img {
    border-radius: 20px 130px;
  }
}
.identify-abuse .col-right {
  padding-left: 15px;
}
@media (max-width: 767.98px) {
  .identify-abuse .col-right {
    margin-top: 20px;
  }
}
.identify-abuse .col-right h2 {
  font-family: var(--body-font-family);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: var(--color-secondary);
}
.identify-abuse .col-right p {
  font-family: var(--heading-font-family);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  margin: 28px 0 30px;
}
.identify-abuse .col-right ul {
  padding-left: 30px;
  row-gap: 11px;
  display: flex;
  flex-direction: column;
}
.identify-abuse .col-right ul li {
  list-style-type: none;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #000;
  position: relative;
}
.identify-abuse .col-right ul li::before {
  content: "";
  background-image: url("../../assets/images/Ellipse.svg");
  position: absolute;
  width: 10px;
  height: 10px;
  left: -30px;
  top: 10px;
}
.identify-abuse .col-right ul li a {
  font-family: var(--sub-font-family);
  color: #000;
}

.help-someone {
  background-color: var(--color-quaternary);
  padding: 57px 0 61px;
}
@media (max-width: 575px) {
  .help-someone {
    padding: 35px 0 25px;
  }
}
.help-someone .container {
  max-width: 1025px;
}
.help-someone .col-left-img {
  padding-right: 40px;
}
@media (max-width: 575px) {
  .help-someone .col-left-img {
    padding-right: 0;
  }
}
.help-someone .col-right {
  padding-left: 15px;
}
@media (max-width: 575px) {
  .help-someone .col-right {
    padding-left: 0;
  }
}
.help-someone .col-right h2 {
  font-family: var(--body-font-family);
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 767.98px) {
  .help-someone .col-right h2 {
    font-size: 28px;
    line-height: 36px;
    margin-top: 10px;
  }
}
.help-someone .col-right p {
  font-family: var(--sub-font-family);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
  margin: 28px 0 30px;
}
@media (max-width: 575px) {
  .help-someone .col-right p {
    margin: 10px 0 20px;
    font-size: 14px;
    line-height: 22px;
  }
}
.help-someone .col-right .white-btn {
  max-width: 174px;
}

.white-btn {
  font-family: var(--body-font-family);
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: var(--color-primary);
  background-color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  display: block;
  text-align: center;
}

.serv-tem-one {
  padding: 93px 0 67px;
}
@media (max-width: 767.98px) {
  .serv-tem-one {
    padding: 50px 0 35px;
  }
}
.serv-tem-one .container {
  max-width: 1025px;
}
.serv-tem-one .col-left .inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.serv-tem-one .col-left .inner img {
  width: 56px;
}
.serv-tem-one .col-left p {
  font-family: var(--heading-font-family);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  margin: 24px 0 17px;
}
@media (max-width: 575px) {
  .serv-tem-one .col-left p {
    font-size: 14px;
    line-height: 22px;
    margin: 15px 0 17px;
  }
}
.serv-tem-one .col-left .purple-btn {
  min-width: 174px;
}
@media (max-width: 575px) {
  .serv-tem-one .col-left .purple-btn {
    font-size: 14px;
    line-height: 20px;
    padding: 7px 10px;
  }
}
.serv-tem-one .col-right-img {
  max-width: 350px;
  border-radius: 50px 150px;
}
@media (max-width: 575px) {
  .serv-tem-one .col-right-img {
    max-width: 100%;
    border-radius: 20px 130px;
  }
}
@media (max-width: 767.98px) {
  .serv-tem-one .ser-row-one {
    flex-direction: column-reverse;
    row-gap: 15px;
  }
}

h2 {
  font-family: var(--body-font-family);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: var(--color-secondary);
}
@media (max-width: 575px) {
  h2 {
    font-size: 22px;
    line-height: 30px;
  }
}

.tem-two {
  padding: 0;
}
.tem-two .row {
  padding: 61px 61px 61px 37px;
  background-color: #FBEEFE;
}
@media (max-width: 575px) {
  .tem-two .row {
    padding: 31px 15px;
  }
}

.help-someone.services {
  margin: 108px 0 28px;
}
@media (max-width: 991.98px) {
  .help-someone.services {
    margin: 58px 0 0px;
  }
}

.serv-tem-one.justice-center {
  padding-top: 0;
  padding-bottom: 126px;
}
.serv-tem-one.justice-center .col-left {
  padding-right: 61px;
}

.banner-top-inner.blogs .container {
  max-width: 1300px;
}

.annual_events.news {
  padding: 64px 0 57px;
}
.annual_events.news .container {
  max-width: 1200px;
}
.annual_events.news .event_card {
  min-height: auto !important;
  height: 100%;
}
.annual_events.news .event_card a {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.annual_events.news .event_card .content {
  height: 100%;
}
.annual_events.news .event_card .content p {
  line-height: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 7px;
}
.annual_events.news .event_card .content span {
  color: #BE77CE;
  font-family: Lato;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}
.annual_events.news .pagination {
  margin-top: 57px;
  justify-content: center;
  gap: 10px;
}
.annual_events.news .pagination .current {
  color: #8917A3 !important;
}
.annual_events.news .pagination .page-numbers {
  color: #4799E1;
  font-family: Outfit !important;
  font-size: 16px !important;
  font-weight: 700;
  line-height: normal;
}

.annual_events.news .event_card:hover .content span {
  color: #fff;
}

@media (max-width: 575px) {
  .single-service-bnr .container {
    padding: 45px 50px 45px 60px;
  }
}
.single-service-bnr .content {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.single-service-bnr .content img {
  background-color: #fff;
  padding: 28px;
  border-radius: 10px;
  max-width: 120px;
  width: 100%;
}
@media (max-width: 575px) {
  .single-service-bnr .content img {
    padding: 15px;
    max-width: 80px;
  }
}

.we-are-here {
  padding: 63px 0 0;
}
.we-are-here .container {
  max-width: 1020px;
}
.we-are-here .col-left-img {
  max-width: 504px;
  border-radius: 50px 150px;
}
@media (max-width: 575px) {
  .we-are-here .col-left-img {
    border-radius: 20px 130px;
  }
}
@media (max-width: 767.98px) {
  .we-are-here .col-right {
    margin-top: 20px;
  }
}
.we-are-here .col-right h2 {
  font-family: var(--body-font-family);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 0 0 15px;
}
.we-are-here .col-right p {
  font-family: var(--heading-font-family);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  margin: 0 0 15px;
}

.singleReferrals {
  margin-top: 60px;
}
.singleReferrals .box {
  margin-bottom: 25px !important;
  padding: 23px 125px 30px 43px !important;
  min-height: 250px;
}
@media (max-width: 767.98px) {
  .singleReferrals .box {
    min-height: auto;
  }
}
@media (max-width: 575px) {
  .singleReferrals .box {
    padding: 22px 60px 25px 40px !important;
  }
}

.single-services .resources {
  margin-bottom: 80px;
}
.single-services .faqs {
  padding: 23px 0 85px !important;
}

.resources {
  margin-top: 80px;
}
@media (max-width: 767.98px) {
  .resources {
    padding-bottom: 60px;
    margin-top: 50px;
  }
}
.resources .container {
  max-width: 1030px;
}
.resources .title {
  font-family: var(--body-font-family);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 30px;
}
.resources .cards {
  box-shadow: 1px 1px 7px 2px #ecd3f1;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.resources .cards:hover .bottom {
  background-color: #BE77CE;
}
.resources .cards:hover .bottom span {
  color: #fff;
}
.resources .cards:hover .bottom svg path {
  fill: #fff;
}
.resources .cards .top {
  position: relative;
  padding: 42px 10px 55px 35px;
  background-color: #4FAEA6;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  flex-grow: 1;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 575px) {
  .resources .cards .top {
    padding: 42px 10px 75px 35px;
  }
}
.resources .cards .top .purple-bar {
  display: flex;
  margin-left: auto;
  margin-bottom: 20px;
  top: 45%;
  position: absolute;
  right: 10px;
}
.resources .cards .top h2 {
  font-family: var(--body-font-family);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: #fff;
  padding-right: 52px;
  position: relative;
  z-index: 1;
}
.resources .cards .top .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
.resources .cards .bottom-img img {
  display: flex;
  margin-left: auto;
  max-width: 118px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.resources .cards .bottom {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: space-between;
  padding: 15px 15px 20px 35px;
  background-color: #fff;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
.resources .cards .bottom span {
  font-family: var(--body-font-family);
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  color: var(--color-primary);
}

.singleEvent {
  margin-bottom: 40px;
}

.schoolPrograms {
  padding: 62px 0 115px !important;
}
.schoolPrograms h2 {
  font-size: 30px !important;
  line-height: 38px !important;
  margin-bottom: 0 !important;
}
.schoolPrograms .desc {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  text-align: center;
  max-width: 50%;
  margin: 0 auto;
  color: #000;
  margin-bottom: 36px;
}
@media (max-width: 575px) {
  .schoolPrograms .desc {
    max-width: 90%;
  }
}
.schoolPrograms .box {
  padding: 38px 21px 38px 34px !important;
  min-height: 370px !important;
  margin-bottom: 22px !important;
}
@media (max-width: 575px) {
  .schoolPrograms .box {
    min-height: auto !important;
  }
}

.page-single .banner-top-inner .container {
  max-width: 1300px;
}

.blog-img-wrapper {
  padding: 37px 0 86px;
}
.blog-img-wrapper .container {
  max-width: 974px;
}
.blog-img-wrapper .container .f-img-news {
  background-color: #FBEEFE;
  display: flex;
  justify-content: center;
}
.blog-img-wrapper .container .f-img-news img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 354px;
  width: 100%;
}

.news-content .container {
  max-width: 974px;
}
.news-content .container h2 {
  font-size: 30px;
}
.news-content .container p {
  color: #000;
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.news-content .container p br {
  display: none;
}
.news-content .container .post-categories {
  color: #BE77CE;
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-top: 1px solid #FBEEFE;
  border-bottom: 1px solid #FBEEFE;
  padding: 18px 0;
  margin: 30px 0 26px;
  display: flex;
  gap: 8px;
}
.news-content .container .post-categories a {
  color: #BE77CE;
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.news-content .container .post-categories span {
  display: flex;
  margin-left: auto;
  color: #7D2CAD;
  font-weight: 700;
  line-height: normal;
}

.page-single .navigation {
  padding-bottom: 51px;
}
.page-single .navigation .container {
  max-width: 974px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.page-single .navigation .container .prev-post a {
  color: #4799E1;
  font-family: Outfit;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
.page-single .navigation .container .next-post a {
  color: #4799E1;
  font-family: Outfit;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.single-event .body-controller {
  min-height: auto;
}

.event-hero-wrap {
  position: relative;
  padding: 110px 0 110px;
}
@media (max-width: 991.98px) {
  .event-hero-wrap {
    padding: 70px 0 110px;
  }
}
.event-hero-wrap .col-left h1 {
  color: white;
  font-size: 50px;
  font-weight: 700;
  line-height: 57px;
  font-family: var(--body-font-family);
  margin-bottom: 23px;
}
.event-hero-wrap .col-left p {
  color: white;
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  max-width: 518px;
  width: 100%;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .event-hero-wrap .col-left p {
    font-size: 14px;
    line-height: 24px;
  }
}
.event-hero-wrap .col-left a {
  font-family: var(--body-font-family);
  font-size: 18px;
  font-weight: 600;
  max-width: 281px;
  width: 100%;
}
.event-hero-wrap .col-right img {
  max-width: 317px;
  margin-left: auto;
  display: flex;
}
@media (max-width: 991.98px) {
  .event-hero-wrap .col-right img {
    margin-right: auto;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 30px;
    max-width: 220px;
  }
}
.event-hero-wrap::after {
  content: "";
  position: absolute;
  animation: move 20s ease infinite;
  background: linear-gradient(151deg, #f3a959 -6.08%, #8917a3 18.85%, #4799e1 49.08%, #4faea6);
  border-radius: 0 0 0 70px;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media (max-width: 575px) {
  .event-hero-wrap::after {
    border-radius: 0 0 0 30px;
  }
}

.tab-wrap {
  margin: -55px 0 64px;
}
.tab-wrap .left-col {
  display: flex;
  flex-direction: row;
  gap: 18px;
  background-color: white;
  box-shadow: 0px 3px 12px -3px rgba(0, 0, 0, 0.2509803922);
  padding: 18px 32px;
  border-radius: 10px;
  align-items: center;
}
@media (max-width: 991.98px) {
  .tab-wrap .left-col {
    align-items: start;
  }
}
@media (max-width: 575px) {
  .tab-wrap .left-col {
    align-items: center;
    padding: 18px 10px;
  }
}
.tab-wrap .left-col .img-col img {
  max-width: 61px;
  width: 100%;
}
.tab-wrap .left-col .text-col h4 {
  font-weight: 600;
  margin: 0;
  color: #8917A3;
}
.tab-wrap .left-col .text-col p {
  color: #8917A3;
  font-family: var(--body-font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}

.blocks-events .container {
  max-width: 1017px;
}
.blocks-events .container .wp-block-columns {
  margin-bottom: 63px;
}
@media (max-width: 767.98px) {
  .blocks-events .container .wp-block-columns {
    flex-direction: column-reverse;
  }
}
.blocks-events .container .wp-block-columns .wp-block-column:nth-child(even) .wp-block-image {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  position: relative;
}
@media (max-width: 767.98px) {
  .blocks-events .container .wp-block-columns .wp-block-column:nth-child(even) .wp-block-image {
    margin-right: auto;
  }
}
.blocks-events .container .wp-block-columns .wp-block-column:nth-child(even) .wp-block-image::before {
  content: "";
  background-image: url("../../assets/images/grnpill-nobg.svg");
  position: absolute;
  bottom: 48px;
  left: 38px;
  background-position: 100% 100%;
  width: 112px;
  height: 135px;
}
@media (max-width: 575px) {
  .blocks-events .container .wp-block-columns .wp-block-column:nth-child(even) .wp-block-image::before {
    bottom: -8px;
    left: auto;
    width: 90px;
    height: 110px;
    right: -50px;
    background-size: contain;
  }
}
.blocks-events .container .wp-block-columns .wp-block-column:nth-child(even) .wp-block-image::after {
  content: "";
  background-image: url("../../assets/images/yellow-pill.svg");
  position: absolute;
  bottom: 0;
  left: 5px;
  background-position: 100% 100%;
  width: 85px;
  height: 100px;
}
@media (max-width: 575px) {
  .blocks-events .container .wp-block-columns .wp-block-column:nth-child(even) .wp-block-image::after {
    bottom: auto;
    left: -25px;
    width: 68px;
    height: 80px;
    background-size: contain;
    top: 15px;
  }
}
.blocks-events .container .wp-block-columns .wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blocks-events .container .wp-block-columns .wp-block-column h2 {
  font-family: var(--body-font-family);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 575px) {
  .blocks-events .container .wp-block-columns .wp-block-column h2 {
    font-size: 22px;
    line-height: 30px;
  }
}
.blocks-events .container .wp-block-columns .wp-block-column p {
  color: #000;
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}
@media (max-width: 575px) {
  .blocks-events .container .wp-block-columns .wp-block-column p {
    font-size: 14px;
    line-height: 22px;
  }
}
.blocks-events .container .wp-block-columns .wp-block-column img {
  max-width: 350px;
  width: 100%;
  margin-left: auto;
  border-radius: 50px 175px;
  padding-left: 10px;
}
@media (max-width: 767.98px) {
  .blocks-events .container .wp-block-columns .wp-block-column img {
    padding-left: 0;
    max-width: 255px;
    border-radius: 50px 120px;
  }
}
.blocks-events .container .wp-block-columns:nth-child(even) .wp-block-column img {
  margin-left: 0;
  margin-right: auto;
  padding-left: 0;
  padding-right: 10px;
}
@media (max-width: 767.98px) {
  .blocks-events .container .wp-block-columns:nth-child(even) .wp-block-column img {
    margin-left: auto;
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  .blocks-events .container .wp-block-columns:nth-child(even) {
    flex-direction: column;
  }
}

.become-sponsor {
  background-color: #FBEEFE;
  padding: 94px 0 26px;
}
@media (max-width: 575px) {
  .become-sponsor {
    padding: 60px 0 26px;
  }
}
.become-sponsor .container {
  max-width: 1017px;
}
.become-sponsor .container .content {
  max-width: 621px;
  width: 100%;
  margin: 0 auto 45px;
}
.become-sponsor .container .content h2 {
  color: #4799E1;
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .become-sponsor .container .content h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
.become-sponsor .container .content p {
  color: #000;
  text-align: center;
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  max-width: 526px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .become-sponsor .container .content p {
    font-size: 14px;
    line-height: 22px;
  }
}
.become-sponsor .container .box {
  display: flex;
  flex-direction: row;
  gap: 24px;
  background-color: white;
  padding: 44px 43px 32px 27px;
  filter: drop-shadow(0px 0px 14px rgba(38, 114, 108, 0.2));
  height: 100%;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .become-sponsor .container .box {
    padding: 44px 20px 32px 20px;
  }
}
.become-sponsor .container .box .img-col {
  max-width: 80px;
  width: 100%;
}
.become-sponsor .container .box .content-col {
  display: flex;
  flex-direction: column;
}
.become-sponsor .container .box .content-col h3 {
  font-family: var(--sub-font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
@media (max-width: 991.98px) {
  .become-sponsor .container .box .content-col h3 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (max-width: 575px) {
  .become-sponsor .container .box .content-col h3 {
    font-size: 22px;
    line-height: 30px;
  }
}
.become-sponsor .container .box .content-col p {
  color: #252525;
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 30px;
  flex-grow: 1;
}
@media (max-width: 575px) {
  .become-sponsor .container .box .content-col p {
    font-size: 14px;
    line-height: 22px;
  }
}
.become-sponsor .container .box .content-col a {
  width: 100%;
  font-family: var(--body-font-family);
  font-size: 18px;
  font-weight: 600;
}
.become-sponsor .container .deadline {
  margin-top: 57px;
}
.become-sponsor .container .deadline p {
  color: #000;
  text-align: center;
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .become-sponsor .container .deadline p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
  }
}
.become-sponsor .container .deadline p a {
  color: #8917A3;
}

.service-text {
  padding: 29px 0 50px;
}
.service-text .container {
  max-width: 950px;
}
.service-text .content {
  padding: 46px 20px;
  background-color: #FBEEFE;
}
.service-text .content p {
  font-family: var(--body-font-family);
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  color: #000;
  max-width: 577px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.information-survivor {
  padding-bottom: 96px;
}
.information-survivor.active-survivor {
  margin-top: 100px;
}
@media (max-width: 767.98px) {
  .information-survivor {
    padding-bottom: 45px;
  }
}
.information-survivor .container {
  max-width: 815px;
}
.information-survivor .content h2 {
  font-family: var(--body-font-family);
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: var(--color-secondary);
  text-align: center;
  margin: 0 0 12px;
}
@media (max-width: 767.98px) {
  .information-survivor .content h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
.information-survivor .content p {
  font-family: var(--heading-font-family);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  margin-bottom: 25px;
}
@media (max-width: 767.98px) {
  .information-survivor .content p {
    font-size: 16px;
    line-height: 24px;
  }
}
.information-survivor #survivors-info {
  width: 100%;
  margin: 0 auto;
}
.information-survivor #survivors-info .accordion-item {
  background-color: #fff;
  box-shadow: 1px 1px 5px 4px #FBEEFE;
  border-radius: 12px;
  padding-left: 0;
  padding-right: 0;
  border: 1px solid rgba(0, 0, 0, 0.0705882353);
  margin-bottom: 20px;
  cursor: pointer;
}
.information-survivor #survivors-info .accordion-item .accordion-header {
  margin-bottom: 0;
  background-color: #fff;
  box-shadow: 1px 1px 5px 4px #FBEEFE;
  border-radius: 12px;
  outline: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.information-survivor #survivors-info .accordion-item .accordion-header .accordion-button {
  border-radius: 12px;
  font-family: var(--body-font-family);
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  color: var(--color-primary);
  padding: 18px 20px 20px;
  background-color: transparent;
  box-shadow: none;
  display: flex;
  justify-content: space-between;
}
.information-survivor #survivors-info .accordion-item .accordion-header .accordion-button::after {
  display: none;
}
.information-survivor #survivors-info .accordion-item .accordion-header .accordion-button img {
  transform: rotate(90deg);
}
.information-survivor #survivors-info .accordion-item .accordion-header .accordion-button.collapsed img {
  transform: rotate(0);
}
.information-survivor #survivors-info .accordion-item .accordion-header img {
  transition: all 0.3s ease;
}
.information-survivor #survivors-info .accordion-item .accordion-header.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.information-survivor #survivors-info .accordion-item .accordion-collapse {
  font-family: var(--sub-font-family);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  background-color: var(--color-quaternary);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.information-survivor #survivors-info .accordion-item .accordion-collapse .accordion-body p a {
  color: #252525;
}

.caregivers {
  background-color: var(--color-quaternary);
  padding: 45px 0;
}
.caregivers .container {
  max-width: 920px;
}
@media (max-width: 575px) {
  .caregivers .wrap {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767.98px) {
  .caregivers .col-left {
    margin-top: 15px;
  }
}
.caregivers .col-left h2 {
  font-family: var(--body-font-family);
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  color: #fff;
}
.caregivers .col-left p {
  font-family: var(--sub-font-family);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
  margin: 28px 0 30px;
}
.caregivers .col-left a {
  max-width: 174px;
}
.caregivers .col-right-img {
  max-width: 388px;
  border-radius: 50px 150px;
}
@media (max-width: 767.98px) {
  .caregivers .col-right-img {
    border-radius: 20px 130px;
  }
}

.white-btn {
  font-family: var(--body-font-family);
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: var(--color-primary);
  background-color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  width: 100%;
}
@media (max-width: 575px) {
  .white-btn {
    font-size: 14px;
    line-height: 22px;
  }
}

.resource-single .we-are-here {
  padding: 63px 0 65px;
}

@media (max-width: 767.98px) {
  .faqs {
    padding: 53px 0 35px;
  }
}
@media (max-width: 575px) {
  .faqs .title {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 767.98px) {
  .faqs .faqs-accordion {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .faqs .faqs-accordion .toggle h4 {
    font-size: 14px;
    line-height: 22px;
  }
}

.donate-form {
  padding-top: 32px;
}
.donate-form .container {
  max-width: 780px;
}
.donate-form .container .wrap h2 {
  margin: 40px 0 12px;
  color: var(--color-secondary);
  font-family: var(--body-font-family);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 575px) {
  .donate-form .container .wrap h2 {
    font-size: 22px;
  }
}
.donate-form .container .wrap p {
  font-family: var(--heading-font-family);
  font-size: 18px;
  color: #000;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 39px;
}

.shortcode {
  position: relative;
  min-height: 30vh;
}
.shortcode::after {
  content: "";
  background-image: url("../../assets/images/Pillgroup.svg");
  background-position: 100% 100%;
  position: absolute;
  right: -150px;
  bottom: 50px;
  width: 325px;
  height: 342px;
}
@media (max-width: 767.98px) {
  .shortcode::after {
    display: none;
  }
}

#gform_wrapper_1 {
  padding-bottom: 92px;
  max-width: 505px;
}
#gform_wrapper_1 .gform_required_legend {
  display: none;
}
#gform_wrapper_1 .gform-body input, #gform_wrapper_1 .gform-body select, #gform_wrapper_1 .gform-body .textarea, #gform_wrapper_1 .gform-body .ginput_card_field {
  background-color: #FBEEFE;
  padding: 7px 20px 7px 21px;
  color: var(--color-primary);
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  border: 0;
  border-radius: 5px;
  outline: 0;
}
@media (max-width: 575px) {
  #gform_wrapper_1 .gform-body input, #gform_wrapper_1 .gform-body select, #gform_wrapper_1 .gform-body .textarea, #gform_wrapper_1 .gform-body .ginput_card_field {
    font-size: 16px;
  }
}
#gform_wrapper_1 .gform-body input::-moz-placeholder {
  color: rgba(137, 23, 163, 0.3019607843);
  z-index: 1 !important;
  opacity: 1 !important;
}
#gform_wrapper_1 .gform-body input::placeholder {
  color: rgba(137, 23, 163, 0.3019607843);
  z-index: 1 !important;
  opacity: 1 !important;
}
#gform_wrapper_1 .gform-body select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  color: rgba(137, 23, 163, 0.3019607843);
}
#gform_wrapper_1 .gform-body select option {
  color: var(--color-primary);
}
#gform_wrapper_1 .gform-body select.selected-value {
  color: var(--color-primary) !important;
}
#gform_wrapper_1 .gform-body .donate-selection select {
  background-image: url("../../assets/images/select-arrow.svg");
  background-position: 99% 70%;
  background-repeat: no-repeat;
  padding-right: 20px;
}
#gform_wrapper_1 .gform-body .gform_fields {
  row-gap: 28px;
}
#gform_wrapper_1 .gform-body .gform_fields .gfield {
  font-family: var(--body-font-family);
  color: var(--color-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 12px;
}
#gform_wrapper_1 .gform-body .gform_fields .gfield .gfield_required_asterisk {
  color: var(--color-primary);
}
@media (max-width: 575px) {
  #gform_wrapper_1 .gform-body .gform_fields .gfield {
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  #gform_wrapper_1 .gform-body .gform_fields .gfield {
    font-size: 12px;
  }
}
#gform_wrapper_1 .gform-body .gform_fields .ginput_complex {
  row-gap: 28px;
}
#gform_wrapper_1 .gform-body .gform_fields .ginput_complex span {
  margin-bottom: 0;
}
#gform_wrapper_1 .gform_footer .button {
  border-radius: 5px;
  background-color: var(--color-primary);
  border: 0;
  padding: 9px 56px;
  font-family: var(--body-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #fff;
}
#gform_wrapper_1 .gform_footer .button:hover {
  background-color: #BE77CE !important;
  border: 0;
  color: #fff !important;
  box-shadow: 0px 0px 2px var(--color-primary);
}

.ways-to-give {
  background-color: #FBEEFE;
  padding: 82px 0 49px;
}
@media (max-width: 575px) {
  .ways-to-give {
    padding: 50px 0 40px;
  }
}
.ways-to-give .container {
  max-width: 1100px;
}
.ways-to-give .container h2 {
  color: var(--color-secondary);
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .ways-to-give .container h2 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 380px) {
  .ways-to-give .container h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
.ways-to-give .container .support-ways-txt {
  text-align: center;
  margin-bottom: 25px;
  color: #000;
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.other-ways .ways {
  box-shadow: 0px 0px 14px rgba(38, 114, 108, 0.2);
  background-color: #fff;
  margin-bottom: 55px;
  padding: 23px 95px 45px 43px;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .other-ways .ways {
    padding: 23px 25px 45px 25px;
    margin-bottom: 30px;
  }
}
.other-ways .ways .gv-icon {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 575px) {
  .other-ways .ways .gv-icon {
    margin-bottom: 15px;
  }
}
.other-ways .ways h3 {
  color: var(--color-primary);
  font-family: var(--sub-font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 6px;
}
@media (max-width: 575px) {
  .other-ways .ways h3 {
    font-size: 26px;
    line-height: 34px;
  }
}
.other-ways .ways p {
  color: #252525;
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 575px) {
  .other-ways .ways p {
    font-size: 16px;
    line-height: 24px;
  }
}
.other-ways .box {
  padding: 38px 21px 38px 34px;
  min-height: 370px;
  margin-bottom: 22px;
}
@media (max-width: 575px) {
  .other-ways .box {
    min-height: auto !important;
  }
}

.questionsSec {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 20px;
}
.questionsSec h3 {
  color: var(--color-secondary);
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 9px;
}
.questionsSec p {
  color: #1E1E1E;
  font-family: var(--body-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.questionsSec p a {
  color: var(--color-primary);
}

.request-form {
  padding: 40px 0;
}
.request-form .container {
  max-width: 780px;
}
.request-form .shortcode {
  position: relative;
}
.request-form .shortcode::after {
  content: "";
  background-image: url("../../assets/images/Pillgroup.svg");
  background-position: 100% 100%;
  position: absolute;
  right: -150px;
  bottom: 50px;
  width: 325px;
  height: 342px;
}
@media (max-width: 767.98px) {
  .request-form .shortcode::after {
    right: 0;
    bottom: 20px;
    width: 150px;
    height: 150px;
    background-size: contain;
  }
}
.request-form #gform_wrapper_2 {
  padding-bottom: 92px;
  max-width: 505px;
}
.request-form #gform_wrapper_2 .gform_required_legend {
  display: none;
}
.request-form #gform_wrapper_2 .gform-body input, .request-form #gform_wrapper_2 .gform-body select {
  background-color: #FBEEFE;
  padding: 7px 20px 7px 21px;
  color: var(--color-primary);
  font-family: var(--heading-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  border: 0;
  border-radius: 5px;
  outline: 0;
}
@media (max-width: 575px) {
  .request-form #gform_wrapper_2 .gform-body input, .request-form #gform_wrapper_2 .gform-body select {
    font-size: 16px;
  }
}
.request-form #gform_wrapper_2 .gform-body input::-moz-placeholder {
  color: var(--color-primary);
  z-index: 1 !important;
  opacity: 1 !important;
}
.request-form #gform_wrapper_2 .gform-body input::placeholder {
  color: var(--color-primary);
  z-index: 1 !important;
  opacity: 1 !important;
}
.request-form #gform_wrapper_2 .gform-body select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
}
.request-form #gform_wrapper_2 .gform-body .requestform-selection select {
  background-image: url("../../assets/images/select-arrow.svg");
  background-position: 99% 70%;
  background-repeat: no-repeat;
  padding-right: 20px;
}
.request-form #gform_wrapper_2 .gform-body .gform_fields {
  row-gap: 28px;
}
.request-form #gform_wrapper_2 .gform-body .gform_fields .gfield label {
  font-family: var(--body-font-family);
  color: var(--color-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 12px;
}
.request-form #gform_wrapper_2 .gform-body .gform_fields .gfield label .gfield_required_asterisk {
  color: var(--color-primary);
}
@media (max-width: 575px) {
  .request-form #gform_wrapper_2 .gform-body .gform_fields .gfield label {
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  .request-form #gform_wrapper_2 .gform-body .gform_fields .gfield label {
    font-size: 12px;
  }
}
.request-form #gform_wrapper_2 .gform-body .gform_fields .gfield .ginput_complex {
  row-gap: 28px;
}
.request-form #gform_wrapper_2 .gform-body .gform_fields .gfield .ginput_complex span {
  margin-bottom: 0;
}
.request-form #gform_wrapper_2 .gform_footer .button {
  border-radius: 5px;
  background-color: var(--color-primary);
  border: 0;
  padding: 9px 56px;
  font-family: var(--body-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #fff;
}
.request-form #gform_wrapper_2 .gform_footer .button:hover {
  background-color: #BE77CE !important;
  border: 0;
  color: #fff !important;
  box-shadow: 0px 0px 2px var(--color-primary);
}

.prevention-page .col-left p {
  line-height: 28px;
}
@media (max-width: 575px) {
  .prevention-page .col-left p {
    line-height: 22px;
  }
}
.prevention-page ul li {
  list-style-type: none;
  color: #000;
  position: relative;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 28px;
}
.prevention-page ul li::before {
  content: "";
  background-image: url("../../assets/images/Ellipse.svg");
  position: absolute;
  width: 10px;
  height: 10px;
  left: -30px;
  top: 10px;
}
@media (max-width: 575px) {
  .prevention-page ul li {
    font-size: 14px;
    line-height: 22px;
  }
}

.adv-program {
  padding: 49px 0 91px;
}
.adv-program .container {
  max-width: 1100px;
}
.adv-program .container h2 {
  color: var(--color-secondary);
  text-align: center;
  font-family: var(--body-font-family);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .adv-program .container h2 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 380px) {
  .adv-program .container h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
.adv-program .container .desc {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  text-align: center;
  max-width: 50%;
  margin: 0 auto;
  color: #000;
  margin-bottom: 36px;
}
@media (max-width: 575px) {
  .adv-program .container .desc {
    max-width: 90%;
  }
}
.adv-program .container .support-ways-txt {
  text-align: center;
  margin-bottom: 25px;
  color: #000;
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.adv-program .wrap {
  position: relative;
  width: 350px;
  max-width: 100%;
  float: right;
  margin-left: 11em;
}
@media (max-width: 991.98px) {
  .adv-program .wrap {
    margin-left: 3em;
  }
}
@media (max-width: 767.98px) {
  .adv-program .wrap {
    max-width: 100%;
    margin-bottom: 20px;
    float: none;
    margin-left: 0;
  }
}
.adv-program .wrap::after {
  content: "";
  background-image: url("../../assets/images/yellow-pill.svg");
  position: absolute;
  width: 85px;
  height: 100px;
  left: -30px;
  top: 10%;
}
@media (max-width: 767.98px) {
  .adv-program .wrap::after {
    left: -15px;
  }
}

.youth-emp .wrap {
  position: relative;
  max-width: 350px;
}
@media (max-width: 767.98px) {
  .youth-emp .wrap {
    margin-bottom: 20px;
  }
}
.youth-emp .wrap::after {
  content: "";
  background-image: url("../../assets/images/yellow-pill.svg");
  position: absolute;
  width: 85px;
  height: 100px;
  right: -60px;
  bottom: 10%;
}
@media (max-width: 575px) {
  .youth-emp .wrap::after {
    right: -30px;
  }
}

.itWork {
  padding: 120px 0 143px;
}
@media (max-width: 767.98px) {
  .itWork {
    padding: 60px 0 70px;
  }
}
@media (max-width: 767.98px) {
  .itWork .outer {
    flex-direction: column-reverse;
  }
}
.itWork .col-left .wrk_btn {
  font-family: var(--body-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 9px 27px 10px;
}
.itWork .wrap {
  max-width: 350px;
  position: relative;
}
@media (max-width: 575px) {
  .itWork .wrap {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.itWork .wrap::after {
  content: "";
  background-image: url("../../assets/images/grnpill-nobg.svg");
  position: absolute;
  width: 115px;
  height: 134px;
  right: -50px;
  bottom: 4%;
}
@media (max-width: 575px) {
  .itWork .wrap::after {
    right: -20px;
  }
}

/**
 * Styles that modify the default behavior of Gutenberg
 * It is highly recommended not to modify the core files
 * Any needed changes should be made from other files
 **/
/**
 * Layout code that should effect all Gutenberg
 **/
.custom-layout, .wp-block-cover .wp-block-cover__inner-container, .wp-block-group,
.wp-block-cover, .is-root-container,
.s-section,
.gutenberg-content {
  --section-width: var(--global-width, 1200px);
  --section-padding-horizontal: var(--global-gutter, 20px);
  --section-padding-vertical: var(--global-section-padding, 40px);
  --section-gap: var(--global-block-gap, 20px);
  display: grid;
  grid-template-columns: minmax(var(--section-padding-horizontal), 1fr) minmax(0, var(--section-width)) minmax(var(--section-padding-horizontal), 1fr);
  grid-template-areas: "start content end";
  row-gap: var(--section-gap);
  padding-top: var(--section-padding-vertical);
  padding-bottom: var(--section-padding-vertical);
  width: 100%;
  /**
  * Forces all first level children
  * to align to the center column and expand to take up the full width
  **/
}
.custom-layout > *, .wp-block-cover .wp-block-cover__inner-container > *, .wp-block-group > *,
.wp-block-cover > *, .is-root-container > *,
.s-section > *,
.gutenberg-content > * {
  grid-column: content/span 1;
  justify-self: stretch;
  max-width: 100%;
}

.is-root-container > * + * {
  margin-block-start: unset !important;
}
.is-root-container .alignfull {
  max-width: 100%;
  width: 100%;
  grid-column: start/end;
}
.is-root-container .alignwide {
  max-width: var(--global-width-wide);
  grid-column: start/end;
}
.is-root-container .alignleft {
  float: left;
  margin-right: auto;
}
.is-root-container .alignright {
  float: right;
  margin-left: auto;
}
.is-root-container .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  max-width: 100%;
  width: 100%;
  grid-column: start/end;
}

.alignwide {
  max-width: var(--global-width-wide);
  grid-column: start/end;
}

.alignleft {
  float: left;
  margin-right: auto;
}

.alignright {
  float: right;
  margin-left: auto;
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.wp-block-group,
.wp-block-cover {
  --section-width: var(--global-width, 1200px);
  --section-padding-horizontal: 0;
}

.gutenberg-content,
.is-root-container {
  padding-top: 0;
  padding-bottom: 0;
}

.wp-block-cover {
  padding-left: 0;
  padding-right: 0;
}
.wp-block-cover .wp-block-cover__inner-container {
  --section-gap: 0;
}
.wp-block-cover.alignfull {
  grid-column: start/end;
  width: 100%;
}
.wp-block-cover.alignfull > *:not(.wp-block-cover__inner-container) {
  grid-column: start/end;
}
.wp-block-cover .wp-block-cover__inner > * {
  align-content: center;
  justify-items: center;
}

.has-custom-content-position {
  display: grid;
}
.has-custom-content-position.is-position-center-right {
  justify-items: flex-end;
  align-content: center;
}
.has-custom-content-position.is-position-center-left {
  justify-items: flex-start;
  align-content: center;
}
.has-custom-content-position.is-position-center-center {
  justify-items: center;
  align-content: center;
}
.has-custom-content-position.is-position-bottom-center {
  justify-items: center;
  align-content: flex-end;
}
.has-custom-content-position.is-position-bottom-right {
  justify-items: flex-end;
  align-content: flex-end;
}
.has-custom-content-position.is-position-bottom-left {
  justify-items: flex-start;
  align-content: flex-end;
}
.has-custom-content-position.is-position-top-center {
  justify-items: center;
  align-content: flex-start;
}
.has-custom-content-position.is-position-top-left {
  justify-items: flex-start;
  align-content: flex-start;
}
.has-custom-content-position.is-position-top-right {
  justify-items: flex-end;
  align-content: flex-start;
}

.remove-block-gap {
  margin-top: calc(var(--global-block-gap) * -1);
  margin-bottom: calc(var(--global-block-gap) * -1);
}

.remove-block-gap-top {
  margin-top: calc(var(--global-block-gap) * -1);
}

.remove-block-gap-bottom {
  margin-bottom: calc(var(--global-block-gap) * -1);
}

.is-root-container .remove-block-gap {
  margin-top: calc(var(--global-block-gap) * -1) !important;
  margin-bottom: calc(var(--global-block-gap) * -1) !important;
}
.is-root-container .remove-block-gap-top {
  margin-top: calc(var(--global-block-gap) * -1) !important;
}
.is-root-container .remove-block-gap-bottom {
  margin-bottom: calc(var(--global-block-gap) * -1) !important;
}
.is-root-container.remove-block-gap-top:first-child {
  margin-top: 0;
}
.is-root-container.remove-block-gap-bottom:last-child {
  margin-bottom: 0;
}
.is-root-container.remove-block-gap:first-child {
  margin-top: 0;
}
.is-root-container.remove-block-gap:last-child {
  margin-bottom: 0;
}

.block-list-appender {
  width: 100%;
}

.block-editor-rich-text__editable {
  width: 100%;
}

.layout-type-default > *:not(.alignleft):not(.alignright),
.layout-type-default .layout-type-inherit > *:not(.alignleft):not(.alignright) {
  margin-left: auto;
  margin-right: auto;
}

.layout-type-default > .alignleft,
.layout-type-default .layout-type-inherit > .alignleft {
  float: left;
  margin-left: 0px;
  margin-right: var(--wp--custom--gap--large);
}

.layout-type-default > .alignright,
.layout-type-default .layout-type-inherit > .alignright {
  float: right;
  margin-left: var(--wp--custom--gap--large);
  margin-right: 0px;
}

.layout-type-flex {
  display: flex;
}

.layout-type-flex.is-wrap {
  flex-wrap: wrap;
}

.layout-type-flex.justify-left {
  justify-content: flex-start;
}

.layout-type-flex.justify-right {
  justify-content: flex-end;
}

.layout-type-flex.justify-center {
  justify-content: center;
}

.layout-type-flex.orientation-horizontal {
  align-items: center;
}

.layout-type-flex.orientation-horizontal.justify-space-between {
  justify-content: space-between;
}

.layout-type-flex.orientation-vertical {
  flex-direction: column;
}

.layout-type-flex > * {
  margin: 0px;
}

.block-editor-block-list__layout.is-root-container > :where(:not(.alignleft):not(.alignright)) {
  margin-left: unset !important;
  margin-right: unset !important;
}

.block-editor-block-list__layout.is-root-container > :where(:not(.alignleft):not(.alignright)) {
  max-width: 100% !important;
  width: var(--global-width) !important;
  margin-left: unset !important;
  margin-right: unset !important;
}

.wp-block-image {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

/**
 * Forces the React styles injected by Gutenberg to follow the PP3 Layout system.
 * TODO: Catch additional edge case issues.
 **/
.block-editor-block-list__layout.is-root-container > :where(:not(.alignleft):not(.alignright)) {
  margin-left: unset !important;
  margin-right: unset !important;
}

.block-editor-block-list__layout.is-root-container > :is(.alignwide) {
  width: 100% !important;
  max-width: var(--global-width-wide) !important;
}

.block-editor-block-list__layout.is-root-container > :where(:not(.alignleft):not(.alignright):not(.alignwide):not(.aligncenter)) {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: unset !important;
  margin-right: unset !important;
}/*# sourceMappingURL=app.css.map */