:root {
  --white: white;
  --paragraphs: #615e5d;
  --heading: #1f1b1a;
  --green: #00a36c;
  --orange: #fb8c23;
  --border: #e8e3df;
  --background: #f4f2f0;
  --red: #ff3000;
  --blue: #16bed1;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-commerce-commerceaddtocartform {
  margin: 0 0 15px;
}

.w-commerce-commerceaddtocartoptionpillgroup {
  margin-bottom: 10px;
  display: flex;
}

.w-commerce-commerceaddtocartoptionpill {
  color: #000;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #000;
  margin-right: 10px;
  padding: 8px 15px;
}

.w-commerce-commerceaddtocartoptionpill.w--ecommerce-pill-selected {
  color: #fff;
  background-color: #000;
}

.w-commerce-commerceaddtocartoptionpill.w--ecommerce-pill-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commerceaddtocartquantityinput {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 60px;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 6px 8px 12px;
  line-height: 20px;
  display: block;
}

.w-commerce-commerceaddtocartquantityinput::placeholder {
  color: #999;
}

.w-commerce-commerceaddtocartquantityinput:focus {
  border-color: #3898ec;
  outline-style: none;
}

.w-commerce-commerceaddtocartbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  padding: 9px 15px;
  text-decoration: none;
  display: flex;
}

.w-commerce-commerceaddtocartbutton.w--ecommerce-add-to-cart-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commercebuynowbutton {
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3898ec;
  border-width: 0;
  border-radius: 0;
  align-items: center;
  margin-top: 10px;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}

.w-commerce-commercebuynowbutton.w--ecommerce-buy-now-disabled {
  color: #666;
  cursor: not-allowed;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  outline-style: none;
}

.w-commerce-commerceaddtocartoutofstock {
  background-color: #ddd;
  margin-top: 10px;
  padding: 10px;
}

.w-commerce-commerceaddtocarterror {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
}

@media screen and (max-width: 479px) {
  .w-commerce-commerceaddtocartquantityinput {
    font-size: 16px;
  }
}

body {
  background-color: var(--white);
  color: var(--paragraphs);
  flex-direction: column;
  font-family: Jost, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5em;
  display: flex;
}

h1 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 18px;
  font-family: Archivo, sans-serif;
  font-size: 57px;
  font-weight: 700;
  line-height: 1.12em;
}

h2 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 18px;
  font-family: Archivo, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.12em;
}

h3 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 18px;
  font-family: Archivo, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1em;
}

h4 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Archivo, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1em;
}

h5 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 12px;
  font-family: Archivo, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

h6 {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Archivo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2em;
}

p {
  margin-bottom: 22px;
  font-family: Open Sans, sans-serif;
}

a {
  color: var(--green);
  text-decoration: underline;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

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

ul, ol {
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 22px;
  padding-left: 34px;
}

li {
  padding-top: 4px;
  padding-bottom: 4px;
}

strong {
  color: var(--heading);
  font-weight: 600;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 2px solid var(--border);
  color: var(--heading);
  margin-bottom: 22px;
  margin-left: 12px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 22px;
  font-style: italic;
  line-height: 1.5em;
}

figure {
  border-radius: 10px;
  margin-top: 34px;
  margin-bottom: 34px;
  overflow: hidden;
}

figcaption {
  background-color: var(--background);
  color: var(--heading);
  text-align: center;
  margin-top: 0;
  padding: 12px 20px;
  font-size: 16px;
  line-height: 1.4em;
}

.navbar {
  z-index: 100;
  background-color: #0000;
  position: fixed;
  inset: 0% 0% auto;
}

.block-navbar {
  background-color: var(--white);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 2%;
  display: flex;
  box-shadow: 0 0 50px #3f2c272e;
}

.nav-group {
  justify-content: center;
  align-items: center;
  display: flex;
}

.brand {
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  padding: 5px;
  display: flex;
}

.logo {
  width: 175px;
  height: 45px;
}

.nav-menu {
  z-index: 10;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-nav {
  background-color: var(--green);
  color: var(--white);
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 13px 27px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
  transition: transform .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
}

.button-nav:hover {
  background-color: var(--green);
  color: var(--white);
  transform: scale(1.05);
}

.wave-navbar-dropdown {
  background-image: url('../images/wave_white_top_3.svg');
  background-position: 50%;
  background-repeat: repeat-x;
  background-size: auto;
  background-attachment: scroll;
  width: 100%;
  height: 36px;
  display: none;
  position: absolute;
}

.section-hero {
  background-color: var(--background);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 122px;
  padding-bottom: 36px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-hero.green {
  background-color: #0000;
  background-image: url('../images/texture.png'), linear-gradient(to bottom, var(--green), var(--green));
  background-position: 50%, 0 0;
  background-size: auto, auto;
}

.wave-white-1-down {
  z-index: 20;
  background-image: url('../images/wave_white_down_1.svg');
  background-position: 50%;
  background-repeat: repeat-x;
  background-size: auto;
  background-attachment: scroll;
  width: 100%;
  height: 36px;
  position: absolute;
  inset: auto 0% 0%;
}

.block-hero {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 650px;
  margin-top: 10px;
  margin-bottom: 35px;
  display: flex;
  position: relative;
}

.hero-title {
  margin-bottom: 28px;
  font-size: 70px;
  line-height: 1.05em;
}

.hero-title.white {
  color: var(--white);
  font-size: 44px;
}

.hero-title.white-font {
  color: var(--white);
  font-size: 65px;
}

.hero-paragraph {
  max-width: 600px;
  margin-bottom: 40px;
  font-size: 24px;
  line-height: 1.5em;
}

.hero-paragraph.white {
  color: var(--white);
  font-size: 20px;
}

.button-large {
    transition: background-color .3s 
cubic-bezier(.25, .46, .45, .94), transform .3s 
cubic-bezier(.25, .46, .45, .94);
    background-color: #00a36c;
    border-color: #00a36c;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    cursor: pointer;
    padding: 10px 30px;
    text-align: center;
    border-radius: 0;
}

.button-large:hover {
    transform: scale(1.05);
    background-color: #00a36ca6;
    border-color: #00a36ca6;
    opacity: 1;
    color: #fff;
}

.button-large.orange {
  background-color: var(--orange);
}

.button-large.orange:hover {
    background-color: #fb8c23a6;
}
.manage-care-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap:15px;
}
.manage-care-buttons.health {
  gap:10px;
}
.button-large.white {
  background-color: var(--white);
  color: var(--heading);
  transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94), transform .3s cubic-bezier(.25, .46, .45, .94);
}

.button-large.white:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.button-large.green {
  background-color: var(--green);
}

.button-large.green:hover, .button-large.blue {
  background-color: var(--blue);
}

.button-large.blue:hover {
  background-color: var(--green);
}
.gray-background{background-color: var(--background);}
.content {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1350px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 10px 25px;
  display: flex;
  position: relative;
}

.img-hero {
  perspective: 1000px;
  position: absolute;
  inset: 0%;
  transform: perspective(1000px);
}

.text-hero {
  z-index: 10;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.image-food-1 {
  z-index: 10;
  object-fit: contain;
  width: 500px;
  height: 500px;
  position: absolute;
  bottom: -228px;
  left: -506px;
}

.image-food-1.single-page {
  z-index: 9999;
  bottom: -394px;
  left: -101px;
}

.food-shadow-1 {
  z-index: 5;
  background-color: var(--heading);
  opacity: .3;
  filter: blur(80px);
  border-radius: 100%;
  width: 300px;
  height: 300px;
  position: absolute;
  bottom: -196px;
  left: -316px;
}

.food-shadow-1.single-page {
  bottom: -300px;
  left: -297px;
}

.image-food-2 {
  z-index: 10;
  object-fit: contain;
  width: 500px;
  height: 500px;
  position: absolute;
  top: -175px;
  right: -574px;
}

.image-food-2.single-page {
  vertical-align: baseline;
  margin-left: 0;
  margin-right: 0;
  top: -40px;
  right: -362px;
}

.image-food-3 {
  z-index: 10;
  object-fit: contain;
  width: 300px;
  height: 300px;
  position: absolute;
  top: -202px;
  left: -360px;
}

.image-food-3.single-page {
  top: -255px;
  left: -266px;
}

.food-shadow-3 {
  z-index: 5;
  background-color: var(--heading);
  opacity: .3;
  filter: blur(80px);
  border-radius: 100%;
  width: 150px;
  height: 150px;
  position: absolute;
  top: -56px;
  left: -109px;
}

.food-shadow-3.single-page {
  top: -103px;
  left: -53px;
}

.food-shadow-2 {
  z-index: 5;
  background-color: var(--heading);
  opacity: .3;
  filter: blur(80px);
  border-radius: 100%;
  width: 300px;
  height: 300px;
  position: absolute;
  top: -8px;
  right: -585px;
}

.food-shadow-2.single-page {
  top: -101px;
  right: -513px;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-height: none;
  margin-top: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.padding {
  padding-bottom: 36px;
}

.blob {
  object-fit: contain;
  width: 40px;
  height: 40px;
}

.feature {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.icon-red {
  width: 27px;
  height: 27px;
  position: absolute;
}

.icon-block {
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
  display: flex;
  position: relative;
}

.paragraph-small {
  max-width: 390px;
  font-size: 18px;
  line-height: 1.6em;
}

.grid-full {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  width: 100%;
}

.wave-white-2-top {
  z-index: 20;
  background-image: url('../images/wave_white_top_2.svg');
  background-position: 50%;
  background-repeat: repeat-x;
  background-size: auto;
  background-attachment: scroll;
  width: 100%;
  height: 36px;
  position: absolute;
  inset: 0% 0% auto;
}

.image-grid {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  min-height: 600px;
  max-height: 770px;
}

.block-full {
  background-color: var(--green);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10%;
  display: flex;
}
.healthcare-hero .block-full {
    background-image: linear-gradient(to bottom, #00a36c, #00a36c) !important;
    background-color: #00a36c !important;
}
.block-full-text {
  max-width: 650px;
}

.paragraph-white {
  color: var(--white);
  text-align: left;
  margin-bottom: 36px;
  padding-right: 0;
}

.title {
  margin-bottom: 20px;
  font-size: 40px;
}

.subtitle {
  color: var(--green);
  padding-left: 5px;
  padding-right: 5px;
  font-family: Homemade Apple, sans-serif;
  font-size: 18px;
  line-height: 1.3em;
}

.button {
  background-color: var(--green);
  color: var(--white);
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 20px 37px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94), transform .3s cubic-bezier(.25, .46, .45, .94);
}

.button:hover {
  background-color: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.button.orange {
  background-color: var(--orange);
  margin: 10px;
}

.button.orange:hover {
  background-color: var(--red);
}

.button.white {
  background-color: var(--white);
  color: var(--heading);
  transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94), transform .3s cubic-bezier(.25, .46, .45, .94);
}

.button.white:hover {
  background-color: var(--green);
  color: var(--white);
}

.button.green {
  background-color: var(--green);
  margin-top: 10px;
  margin-bottom: 10px;
}

.button.green:hover {
  background-color: var(--blue);
}

.button.blue {
  background-color: var(--blue);
  margin-top: 10px;
  margin-bottom: 10px;
}

.button.blue:hover {
  background-color: var(--green);
}

.grid-2-columns {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
  width: 100%;
}

.paragraph {
  margin-bottom: 20px;
}

.block-right {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 5%;
  display: flex;
}

.icon-list-red {
  width: 18px;
  height: 18px;
  margin-right: 14px;
}

.feature-list {
  flex-direction: row;
  align-items: center;
  margin-bottom: 17px;
  display: flex;
}

.feature-list-heading {
  margin-bottom: 0;
}

.blob-group {
  object-fit: contain;
}

.food-blob-group {
  perspective: 1000px;
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: relative;
}

.food-shadow-blob {
  z-index: 25;
  background-color: var(--heading);
  opacity: .3;
  filter: blur(80px);
  border-radius: 100%;
  width: 250px;
  height: 250px;
  margin-top: 130px;
  position: absolute;
}

.image-food-blob {
  z-index: 30;
  object-fit: contain;
  width: 85%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.image-food-blob.smaller-blob {
  width: 70%;
}

.block-center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 1000px;
  max-width: 1000px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.block-center.startclient_title {
  margin-bottom: 40px;
}

.section-background {
  background-color: var(--background);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}
.section-background.bg-white {
  background-color: var(--white);
}
.section-background.padding {
  background-color: var(--border);
  border-radius: 0;
  padding-bottom: 0;
}

.grid-4-columns {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
}

.testimonial {
  background-color: var(--white);
  text-align: center;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 32px;
  padding-bottom: 30px;
  padding-left: 25px;
  padding-right: 25px;
  font-family: Open Sans, sans-serif;
  display: flex;
}

.heading-testimonial {
  color: var(--heading);
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3em;
}

.paragraph-testimonial {
  max-width: 390px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.6em;
}

.image-testimonial {
  border-radius: 0%;
  width: 64px;
  height: 64px;
  margin-top: -32px;
  margin-bottom: 22px;
}

.accent-a {
  background-image: linear-gradient(#1f1b1aa8, #1f1b1aa8), url('../images/group-of-cheerful-senior-people-enjoying-in-conver-2024-12-13-18-35-51-utc.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}
.manage-care-cta .manage-care-buttons{
    justify-content: center;
  }
.accent-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 70px;
  line-height: 1.05em;
}

.accent-center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
}

.text-extra {
  font-family: Homemade Apple, sans-serif;
  font-weight: 400;
}

.grid-banner {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-image: url('../images/texture.png'), linear-gradient(to bottom, var(--orange), var(--orange));
  background-position: 50%, 0 0;
  background-size: auto, auto;
  border-radius: 10px;
  grid-template-rows: auto;
  align-items: stretch;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
  overflow: hidden;
}

.button-small {
  background-color: var(--orange);
  color: var(--white);
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 13px 27px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94), transform .3s cubic-bezier(.25, .46, .45, .94);
}

.button-small:hover {
  background-color: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.button-small.orange {
  background-color: var(--orange);
}

.button-small.orange:hover {
  background-color: var(--red);
}

.button-small.white {
  background-color: var(--white);
  color: var(--heading);
  transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94), transform .3s cubic-bezier(.25, .46, .45, .94);
}

.button-small.white:hover {
  background-color: var(--green);
  color: var(--white);
}

.button-small.green {
  background-color: var(--green);
}
.button-small.blue {
  background-color: var(--blue);
}

.button-small.blue:hover {
  background-color: var(--green);
}

.button-small.padding {
  margin-top: 10px;
  margin-bottom: 10px;
}

.grid-faq {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 780px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.gray-accordion .accordion-item {
  background-color: var(--background);
}
.accordion-item {
  background-color: var(--white);
  border-radius: 10px;
}

.accordion-heading {
  margin-bottom: 0;
  margin-right: 25px;
  font-size: 20px;
  line-height: 1.4;
}

.accordion-header {
  cursor: pointer;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  transition: padding .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.accordion-header:hover {
  padding-left: 28px;
}

.accordion-content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  overflow: hidden;
}

.paragraph-accordion {
  font-size: 18px;
  line-height: 1.6em;
}

.wave-grey-2-top {
  z-index: 20;
  background-image: url('../images/wave_grey_top_2.svg');
  background-position: 50%;
  background-repeat: repeat-x;
  background-size: auto;
  background-attachment: scroll;
  width: 100%;
  height: 36px;
  position: absolute;
  inset: 0% 0% auto;
}

.accent-b {
  background-image: linear-gradient(#1f1b1a59, #1f1b1a59), url('../images/image_3.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer {
  background-color: var(--border);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  display: flex;
  position: relative;
}

.content-footer {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1350px;
  padding: 40px 25px 50px;
  display: flex;
}

.footer-group {
  justify-content: center;
  align-items: center;
  display: flex;
}

.logo-footer {
  width: 175px;
  height: 45px;
  margin-right: 16px;
}

.form {
  grid-column-gap: 12px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 2.5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.form-block {
  width: 100%;
  max-width: 520px;
}

.text-field {
  border: 1px solid var(--border);
  background-color: var(--white);
  color: var(--heading);
  border-radius: 30px;
  height: 59px;
  margin-bottom: 0;
  padding: 14px 23px;
  font-size: 18px;
  line-height: 1.2em;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.text-field:focus {
  border-color: #ccc2ba;
}

.text-field::placeholder {
  color: #1f1b1a8c;
}

.text-field.margin {
  margin-bottom: 14px;
}
#wf-form-Get-Started textarea {
  height: 120px;
  resize: vertical;
}
.submit-button {
  background-color: var(--orange);
  color: var(--white);
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 20px 37px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94), transform .3s cubic-bezier(.25, .46, .45, .94);
}

.submit-button:hover {
  background-color: var(--red);
  color: var(--white);
  transform: scale(1.05);
}

.success-message {
  background-color: var(--green);
  border-radius: 10px;
  padding: 18px;
}

.text-success {
  color: var(--white);
}

.error-message {
  background-color: var(--red);
  border-radius: 10px;
  margin-top: 12px;
  padding-left: 15px;
  padding-right: 15px;
}

.text-error {
  color: var(--white);
}

.collection-list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
}

.collection-list-product {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.empty-state {
  background-color: var(--background);
  border-radius: 10px;
  padding: 16px;
}

.text-empty {
  color: var(--heading);
}

.product {
  border: 1px solid var(--border);
  background-color: var(--white);
  text-align: center;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.plan-thumbnail {
  object-fit: cover;
  width: 100%;
  height: 192px;
  transition: transform .3s cubic-bezier(.25, .46, .45, .94);
}

.plan-thumbnail:hover {
  transform: scale(1.05);
}

.price-block {
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 25px;
  display: flex;
}

.plan-price {
  color: var(--heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2em;
}

.plan-price-info {
  opacity: .5;
  color: var(--heading);
  text-align: left;
  margin-left: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
}

.link-product {
  perspective: 1000px;
  border-radius: 10px 10px 0 0;
  width: 100%;
  overflow: hidden;
}

.meals-text {
  color: var(--heading);
  margin-left: 3px;
  margin-right: 3px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
}

.meals {
  z-index: 10;
  background-color: var(--white);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-top: -16px;
  padding: 7px 12px;
  display: flex;
  position: relative;
  box-shadow: 0 8px 20px -8px #1f1b1a4d;
}

.product-name {
  margin-bottom: 0;
}

.link-product-name {
  margin-top: 38px;
  margin-bottom: 16px;
  text-decoration: none;
  transition-property: transform;
}

.link-product-name:hover {
  transform: scale(1.05);
}

.block-product {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 44px;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
}

.group {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 75px;
  display: flex;
}
.supporting-managers .group{margin-block: 0 2rem;}
.supporting-managers{padding-bottom: 2rem;}
.product-thumbnail {
  object-fit: cover;
  width: 100%;
  height: 340px;
  transition: transform .3s cubic-bezier(.25, .46, .45, .94);
}

.product-thumbnail:hover {
  transform: scale(1.05);
}

.product-price {
  color: var(--red);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2em;
}

.price-block-product {
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.text-compare-at-price {
  color: #1f1b1a66;
  margin-left: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  text-decoration: line-through;
}

.link-plan-name {
  margin-bottom: 12px;
  text-decoration: none;
  transition-property: transform;
}

.link-plan-name:hover {
  transform: scale(1.05);
}

.plan-name {
  margin-bottom: 0;
}

.add-to-cart {
  justify-content: center;
  align-items: center;
}

.default-state {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.field-label {
  margin-bottom: 0;
  margin-right: 10px;
  font-size: 18px;
  font-weight: 400;
}

.add-to-cart-button-small {
  background-color: var(--background);
  color: var(--heading);
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-left: 8px;
  margin-right: 8px;
  padding: 13px 27px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
  transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94), transform .3s cubic-bezier(.25, .46, .45, .94);
}

.add-to-cart-button-small:hover {
  background-color: var(--green);
  color: var(--white);
  transform: scale(1.05);
}

.buy-now-button-small {
  background-color: var(--background);
  color: var(--heading);
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 13px 27px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
  transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94), transform .3s cubic-bezier(.25, .46, .45, .94);
}

.buy-now-button-small:hover {
  background-color: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.quantity {
  border-color: var(--border);
  background-color: var(--white);
  color: var(--heading);
  border-radius: 50px;
  width: 68px;
  height: 42px;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.quantity:focus {
  border-color: #ccc2ba;
}

.block-add-to-cart {
  align-items: center;
  display: flex;
}

.out-of-stock-state {
  background-color: var(--background);
  border-radius: 10px;
  margin-top: 0;
  padding-left: 14px;
  padding-right: 14px;
}

.text-stock-state {
  color: var(--heading);
}

.image-cart-item {
  border-radius: 10px;
}

.cart-item-name {
  color: var(--heading);
  font-family: Archivo, sans-serif;
  font-size: 18px;
  line-height: 1.2em;
}

.text-subtotal {
  color: var(--heading);
  font-size: 20px;
  line-height: 1.5em;
}

.checkout-button {
  background-color: var(--green);
  color: var(--white);
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 20px 37px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94), transform .3s cubic-bezier(.25, .46, .45, .94);
}

.checkout-button:hover {
  background-color: var(--blue);
  color: var(--white);
  transform: scale(1.05);
}

.cart-error-message {
  border: 2px solid var(--red);
  background-color: #0000;
  border-radius: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

.cart-text-error {
  color: var(--red);
  text-align: center;
}

.accent-c {
  background-image: url('../images/texture.png'), linear-gradient(to bottom, var(--green), var(--green));
  background-position: 50%, 0 0;
  background-size: auto, auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.block-left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 70px 5%;
  display: flex;
}

.orange-texture {
  background-image: linear-gradient(to bottom, var(--orange), var(--orange));
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 700px;
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: 10%;
  padding: 60px 40px;
  display: flex;
}

.hero-title-small {
  margin-bottom: 10px;
  font-size: 44px;
  line-height: 1.05em;
}

.hero-title-small.white {
  color: var(--white);
  font-size: 44px;
}

.hero-grid-image {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #e8e3df73;
  background-image: url('../images/retirement-home-concept-with-nurse.jpg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  grid-template-rows: auto;
  width: 100%;
  min-height: 600px;
  transform: rotate(0);
}

.section-hero-optional {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  width: 100%;
  min-height: 500px;
}

.green-texture {
  background-image: linear-gradient(to bottom, var(--orange), var(--orange));
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 10%;
  display: flex;
}

.green-texture.green-bg {
  background-image: linear-gradient(to bottom, var(--green), var(--green));
}

.section-top {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 122px;
  padding-bottom: 36px;
  display: flex;
  position: relative;
}

.section-top.background {
  background-color: var(--background);
}

.grid-product-single {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  width: 100%;
}

.image-product-single {
  border-radius: 10px;
  width: 100%;
}

.product-price-wrapper {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.price {
  color: var(--red);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2em;
}

.block-product-single {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 7%;
  display: flex;
}

.add-to-cart-button {
  background-color: var(--green);
  color: var(--white);
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-left: 8px;
  margin-right: 8px;
  padding: 20px 37px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94), transform .3s cubic-bezier(.25, .46, .45, .94);
}

.add-to-cart-button:hover {
  background-color: var(--blue);
  color: var(--white);
  transform: scale(1.05);
}

.quantity-large {
  border-color: var(--border);
  background-color: var(--white);
  color: var(--heading);
  border-radius: 50px;
  width: 90px;
  height: 59px;
  margin-bottom: 0;
  margin-right: 0;
  padding: 14px 10px 14px 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.quantity-large:focus {
  border-color: #ccc2ba;
}

.buy-now-button {
  background-color: var(--background);
  color: var(--heading);
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 20px 37px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
  transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94), transform .3s cubic-bezier(.25, .46, .45, .94);
}

.buy-now-button:hover {
  background-color: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.rich-text-block-product {
  margin-bottom: 12px;
}

.paragraph-single-page {
  max-width: 530px;
  font-size: 24px;
  line-height: 1.5em;
}

.paragraph-single-page.white {
  color: var(--white);
}

.paragraph-single-page.top-padding {
  font-size: 18px;
}

.checkout-contents {
  margin-right: 0;
}

.checkout-sidebar {
  top: 150px;
}

.grid-checkout-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1350px;
  padding-bottom: 60px;
  padding-left: 25px;
  padding-right: 25px;
  display: grid;
}

.order-summary {
  background-color: var(--white);
  border-radius: 10px;
  padding-left: 25px;
  padding-right: 25px;
}

.block-content {
  background-color: #0000;
  border-bottom-style: none;
  border-left-style: none;
  border-right-style: none;
  padding-left: 0;
  padding-right: 0;
}

.block-header {
  border-style: none none solid;
  border-bottom-color: var(--border);
  background-color: #0000;
  padding: 20px 0;
}

.checkout-heading {
  margin-bottom: 0;
}

.discounts {
  border-style: solid none none;
  border-top-color: var(--border);
  padding: 25px 0 30px;
}

.field-label-discounts {
  color: var(--heading);
  font-family: Archivo, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.text-field-checkout {
  border: 1px solid var(--border);
  color: var(--heading);
  background-color: #f6f6f5;
  border-radius: 30px;
  height: 38px;
  margin-bottom: 10px;
  padding: 7px 16px;
  font-size: 18px;
  line-height: 1.2em;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.text-field-checkout:focus {
  border-color: #ccc2ba;
}

.text-field-checkout::placeholder {
  color: #1f1b1a8c;
}

.checkout-group {
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
}

.field-label-checkout {
  color: var(--heading);
  margin-top: 8px;
  font-family: Archivo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
}

.shipping-method {
  background-color: #0000;
  border-bottom-style: none;
  padding-left: 10px;
  padding-right: 0;
}

.field-label-shipping {
  color: var(--heading);
  margin-top: 8px;
  font-family: Archivo, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5em;
}

.shipping-method-list {
  border-left-style: none;
  border-right-style: none;
  margin-bottom: 20px;
}

.empty-state-shipping {
  background-color: #ff30001c;
  border-bottom-style: none;
  border-left-style: none;
  border-right-style: none;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 16px;
}

.text-empty-shipping {
  color: var(--red);
}

.checkout-price {
  font-size: 18px;
  font-weight: 500;
}

.text-quantity-order {
  color: #615e5dcc;
  font-size: 18px;
}

.paypal-checkout-form, .order-confirmation {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 0;
  display: flex;
}

.number-large {
  color: var(--red);
  font-size: 24px;
  font-weight: 700;
  line-height: 1em;
}

.grid-group {
  grid-column-gap: 0px;
  grid-row-gap: 65px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.grid-group.large {
  grid-row-gap: 100px;
}

.block-image-work {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.image-work {
  object-fit: cover;
  border-radius: 10px;
  flex: 1;
  width: 100%;
}

.work-number-b {
  background-color: var(--white);
  border-radius: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  display: flex;
  position: absolute;
  inset: 20px auto auto 20px;
  box-shadow: 0 10px 40px -3px #3f2c272e;
}

.page-content {
  width: 100%;
  max-width: 860px;
}

.page-content.center {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-section-full {
  background-color: var(--background);
  object-fit: cover;
  width: 100%;
  max-width: none;
  min-height: 400px;
  max-height: 70vh;
}

.block-image-food {
  z-index: 30;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  margin-left: 25px;
  margin-right: 25px;
  display: flex;
}

.image-food-about {
  z-index: 2;
  object-fit: contain;
  width: 480px;
}

.grid-4-columns-full {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: 36px;
  padding-left: 25px;
  padding-right: 25px;
}

.image-grid-full {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  min-height: 530px;
}

.block-contact-img {
  background-color: var(--background);
  background-image: url('../images/contact.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 600px;
  padding-top: 60px;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
}

.block-contact {
  background-color: var(--white);
  text-align: center;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 780px;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 55px 50px;
  display: flex;
}

.section-get-started {
  background-color: var(--background);
  background-image: url('../images/get_started.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: row;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  padding: 40px 25px 60px;
  display: flex;
  position: relative;
}

.grid-get-started {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: var(--white);
  border-radius: 10px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: .75fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 60%;
  margin-top: 40px;
  padding: 40px 0;
  display: grid;
}

.block-get-started-right {
  border-left: 1px none var(--border);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.form-block-started {
  width: 100%;
  max-width: 100%;
  margin-top: 15px;
  margin-bottom: 0;
}

.form-started {
  grid-column-gap: 12px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.block-get-started-left {
  border: 1px #000;
  justify-content: center;
  align-items: flex-start;
  margin-left: 0;
  padding-left: 30px;
}

.feature-option {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 22px;
  display: flex;
}

.text-feature-option {
  margin-left: 26px;
}

.block-single-page {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 860px;
  padding-top: 15px;
  display: flex;
  position: relative;
}

.space {
  background-color: var(--border);
  width: 100%;
  height: 1px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.grid-style-colors {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.style-color {
  border: 1px solid var(--border);
  background-color: var(--white);
  color: var(--heading);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 10px;
  display: flex;
}

.style-color.background {
  background-color: var(--background);
}

.style-color.border {
  background-color: var(--border);
}

.style-color.paragraphs {
  background-color: var(--paragraphs);
  color: var(--white);
}

.style-color.heading {
  background-color: var(--heading);
  color: var(--white);
}

.style-color.green {
  background-color: var(--green);
  color: var(--white);
}

.style-color.red {
  background-color: var(--red);
  color: var(--white);
}

.style-color.orange {
  background-color: var(--orange);
  color: var(--white);
}

.style-color.blue {
  background-color: var(--blue);
  color: var(--white);
}

.text-style-color {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
}

.style-buttons {
  background-color: var(--background);
  border-radius: 10px;
  align-items: center;
  margin-bottom: 14px;
  padding: 14px;
  display: flex;
}

.style-buttons.dark {
  background-color: var(--heading);
}

.grid-buttons {
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  place-items: center start;
}

.utility-page-wrap {
  background-image: url('../images/get_started.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  background-color: var(--white);
  text-align: center;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  width: 400px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 50px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.icon-utility-page {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.image-head-page {
  background-color: var(--border);
  background-image: linear-gradient(#1f1b1a59, #1f1b1a59), url('../images/how_it_works_page.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.section-2 {
  justify-content: center;
  display: flex;
}

.container {
  text-align: left;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.centered-heading {
  color: var(--green);
  text-align: center;
  margin-bottom: 16px;
}

.navbar-wrapper {
  text-align: center;
  justify-content: space-between;
  align-items: center;
  margin-left: 0;
  display: flex;
}

.nav-menu-two {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link-2 {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-2:hover {
  color: #1a1b1fbf;
}

.nav-link-2:focus-visible, .nav-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.pricing-overview {
  border-bottom: 1px solid #e4ebf3;
  border-radius: 0;
  margin-top: 0;
  padding: 40px 30px;
  position: relative;
}

.container-2 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-description {
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  grid-column-gap: 64px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.pricing-card-three {
  background-color: var(--white);
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  padding: 32px 10px;
  display: flex;
}

.pricing-card-three.green {
  border: 1px solid var(--green);
}

.pricing-card-three.orange {
  border: 1px solid var(--orange);
}

.pricing-card-three.blue {
  border: 1px solid var(--blue);
}

.pricing-image {
  object-fit: cover;
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.pricing-card-text {
  margin-bottom: 20px;
}

.heading-2 {
  font-size: 28px;
}

.heading-2.green {
  color: var(--green);
}

.heading-3 {
  font-size: 28px;
}

.heading-3.orange {
  color: var(--orange);
}

.heading-4 {
  font-size: 28px;
}

.heading-4.blue {
  color: var(--blue);
}

.div-block-3 {
  width: 100%;
  margin-left: 0;
}

.italic-text {
  font-size: 20px;
}

.top-padding {
  margin-top: 10px;
}

.features-list {
  background-color: #f4f2f0;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}
.features-list .features-left h3{margin-bottom: 0.8rem;}
.container-3 {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.features-wrapper-two {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.features-left {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 42%;
  display: flex;
}

.features-paragraph {
  margin-bottom: 24px;
}

.features-right {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 50%;
  margin-bottom: -16px;
  display: flex;
}

.features-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.features-image {
  object-fit: cover;
  align-self: flex-start;
  width: 40px;
  height: 40px;
  margin-right: 16px;
}

.list_title {
  color: #00a36c;
  font-family: Archivo, sans-serif;
  font-size: 25px;
}

.paragraph-2 {
  margin-bottom: 0;
}

.paragraph-3, .paragraph-4, .paragraph-5 {
  margin-bottom: 10px;
}

.heading-5 {
  font-size: 34px;
}
.manage-care-footer .footer-holder{
  padding-inline:15px;
}
.manage-care-footer .footer-holder .container{
  padding-inline:0;
  flex-wrap: wrap;
}
.manage-care-footer .footer-holder .container .row{
  margin-inline:0;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .hero-title.white-font {
      font-size: 56px;
  }
}
@media screen and (max-width: 991px) {
  .support-need-section    .block-left {
      padding-inline: 0;
  }
  .hero-grid-image{
    background-size: cover;
  }
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 33px;
  }

  h4 {
    font-size: 27px;
  }

  h5 {
    font-size: 22px;
  }

  .navbar {
    position: relative;
  }

  .block-navbar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-menu {
    background-color: var(--white);
    padding-top: 5px;
    padding-bottom: 15px;
  }

  .dropdown {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wave-navbar-dropdown {
    margin-top: 15px;
    display: block;
  }

  .icon-menu {
    font-size: 20px;
  }

  .menu-button {
    background-color: var(--background);
    color: var(--heading);
    border-radius: 50px;
    margin-left: 5px;
    padding: 12px;
    line-height: 1.2em;
    transition: color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
  }

  .menu-button.w--open {
    background-color: var(--orange);
    color: var(--white);
  }

  .section-hero {
    padding-top: 35px;
  }

  .block-hero {
    margin-top: 28px;
    margin-bottom: 28px;
  }

  .hero-title {
    font-size: 65px;
  }

  .hero-paragraph {
    font-size: 22px;
  }
  .health-care-features .grid-2-columns{padding-bottom: 20px;}
  .health-care-features .block-right{
    order: -1;
    padding:2rem 0 3rem;
  }
  .content {
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .image-food-1 {
    width: 400px;
    height: 400px;
    bottom: -271px;
    left: -282px;
  }

  .image-food-1.single-page {
    width: 350px;
    height: 350px;
    bottom: -300px;
    left: -266px;
  }

  .food-shadow-1 {
    width: 250px;
    height: 250px;
    bottom: -226px;
    left: -120px;
  }

  .food-shadow-1.single-page {
    width: 200px;
    height: 200px;
    bottom: -237px;
    left: -91px;
  }

  .image-food-2 {
    width: 400px;
    height: 400px;
    top: -219px;
    right: -348px;
  }

  .image-food-2.single-page {
    width: 350px;
    height: 350px;
    top: -277px;
    right: -232px;
  }

  .image-food-3 {
    width: 250px;
    height: 250px;
    left: -190px;
  }

  .image-food-3.single-page {
    top: -214px;
    left: -115px;
  }

  .food-shadow-3 {
    width: 120px;
    height: 120px;
    left: -82px;
  }

  .food-shadow-3.single-page {
    top: -111px;
    left: -21px;
  }

  .food-shadow-2 {
    width: 200px;
    height: 200px;
    right: -258px;
  }

  .food-shadow-2.single-page {
    right: -232px;
  }

  .section {
    flex-flow: column;
  }

  .grid-full {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .image-grid {
    padding-top: 0;
  }

  .block-full {
    padding: 50px 10%;
  }

  .grid-2-columns {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
  }

  .block-right {
    padding: 30px 5%;
  }

  .blob-group {
    align-self: center;
  }

  .food-shadow-blob {
    margin-top: -2px;
    display: none;
  }

  .image-food-blob {
    width: 80%;
  }

  .block-center, .block-center.startclient_title {
    min-width: auto;
    max-width: none;
  }

  .grid-4-columns {
    grid-column-gap: 15px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .testimonial {
    padding-left: 20px;
    padding-right: 20px;
  }

  .accent-title {
    font-size: 50px;
  }

  .accent-center {
    margin-block: 30px;
  }

  .content-footer {
    flex-direction: column;
  }

  .collection-list-product {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .group {
    margin-top: 20px;
  }

  .block-left {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 5%;
  }

  .orange-texture {
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 40px 35px;
  }

  .hero-title-small {
    margin-bottom: 20px;
  }

  .hero-grid-image {
    grid-template-columns: 2fr 1fr;
  }

  .section-hero-optional {
    margin-top: 0;
    padding-top: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .green-texture {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-top {
    padding-top: 35px;
  }

  .grid-product-single {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 24px;
  }

  .block-product-single {
    padding-left: 5%;
    padding-right: 5%;
  }

  .paragraph-single-page {
    font-size: 22px;
  }

  .checkout-sidebar {
    top: 30px;
  }

  .grid-checkout-container {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .grid-group {
    grid-row-gap: 40px;
  }

  .grid-group.large {
    grid-row-gap: 60px;
  }

  .grid-4-columns-full {
    grid-template-columns: 1fr 1fr;
  }

  .image-grid-full {
    min-height: 200px;
  }

  .section-get-started {
    padding-top: 40px;
  }

  .grid-get-started {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .block-get-started-right {
    border: 1px #000;
    padding-top: 50px;
    padding-left: 20px;
  }

  .feature-option {
    justify-content: center;
  }

  .container {
    max-width: 728px;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu-two {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link-2 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .container-2 {
    max-width: 728px;
  }

  .pricing-grid {
    grid-column-gap: 30px;
  }

  .container-3 {
    max-width: 728px;
  }

  .features-wrapper-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .features-left {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .features-right {
    max-width: 100%;
  }
  .supporting-managers  .block-right { order: -1;}
  .supporting-managers  .food-blob-group{padding-block:1rem;}
}

@media screen and (max-width: 767px) {
  .gray-accordion .content{margin-bottom: 0;}
 .support-need-section .block-left {
      padding-block: 0 50px;
  }
  .support-need-section .content {
      margin-bottom: 0;
      padding-bottom: 0;  
  }
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 29px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  .logo {
    width: 400px;
    height: 50px;
  }
  
  .health-care-features .block-right{padding-top: 0;}
  .button-nav {
    display: none;
  }

  .hero-title {
    margin-bottom: 20px;
    font-size: 57px;
  }

  .hero-paragraph {
    margin-bottom: 30px;
  }

  .content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .health-faqs-section .content {
    margin-bottom: 0;
    padding-bottom: 20px;
  }
  .image-food-1 {
    bottom: -297px;
    left: -250px;
  }

  .image-food-1.single-page {
    width: 300px;
    height: 300px;
    bottom: -283px;
    left: -150px;
  }

  .food-shadow-1.single-page {
    width: 150px;
    height: 150px;
    bottom: -181px;
    left: 24px;
  }

  .image-food-2 {
    top: -244px;
    right: -316px;
  }

  .image-food-2.single-page {
    width: 300px;
    height: 300px;
    top: -263px;
    right: -157px;
  }

  .image-food-3 {
    top: -193px;
    left: -155px;
  }

  .image-food-3.single-page {
    width: 200px;
    height: 200px;
    top: -205px;
    left: -5px;
  }

  .food-shadow-3.single-page {
    left: 69px;
  }

  .food-shadow-2.single-page {
    width: 150px;
    height: 150px;
    right: -87px;
  }

  .grid-full {
    grid-template-columns: 1fr;
  }

  .image-grid {
    min-height: 400px;
  }

  .block-full {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .healthcare-hero .block-full {
    padding: 30px 20px 50px;
  }
  .grid-2-columns {
    grid-template-columns: 1fr;
  }

  .blob-group {
    max-width: 500px;
  }

  .food-shadow-blob {
    display: none;
  }

  .image-food-blob {
    width: 70%;
  }

  .block-center {
    min-width: auto;
    max-width: none;
    display: block;
  }


  .grid-4-columns {
    grid-template-columns: 1fr;
  }

  .testimonial {
    padding-left: 15px;
    padding-right: 15px;
  }

  .accent-title {
    font-size: 57px;
  }

  .grid-banner {
    grid-template-columns: 1fr 2fr;
    margin-top: 20px;
  }

  .content-footer {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .footer-group {
    flex-direction: column;
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .logo-footer {
    margin-right: 0;
  }

  .price-block {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .link-product-name {
    margin-top: 28px;
  }

  .block-product {
    padding-left: 8%;
    padding-right: 8%;
  }

  .group {
    margin-top: 50px;
  }

  .block-product {
    padding-bottom: 30px;
  }

  .orange-texture {
    text-align: center;
    align-items: center;
    margin-right: 10%;
    padding: 50px 40px;
  }

  .hero-grid-image {
    min-height: 300px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .green-texture {
    padding: 80px 8%;
  }

  .block-product-single {
    padding: 30px 0%;
  }

  .grid-checkout-container {
    grid-template-columns: 1fr;
  }

  .number-large {
    font-size: 20px;
  }

  .grid-group.large {
    grid-row-gap: 50px;
  }

  .work-number-b {
    width: 50px;
    height: 50px;
  }

  .grid-4-columns-full {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .block-contact {
    padding: 40px;
  }

  .section-get-started {
    padding-top: 40px;
  }

  .grid-get-started {
    max-width: 100%;
    padding: 40px;
  }

  .grid-style-colors {
    grid-template-columns: 1fr 1fr;
  }

  .style-buttons {
    justify-content: center;
  }

  .grid-buttons {
    grid-auto-flow: row;
    justify-items: center;
  }

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-link-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .pricing-overview {
    border-radius: 0;
    margin-top: 0;
    padding: 60px 20px;
  }

  .container-2 {
    flex-flow: row;
    max-width: none;
    display: block;
  }

  .pricing-description {
    flex-flow: column;
    display: flex;
  }

  .div-block-4 {
    text-align: left;
  }
  .features-left {margin-bottom: 30px;}
  .features-list {
    padding: 40px 15px;
  }
  .features-list .block-center.startclient_title {
      margin-bottom: 10px;
  }
  .features-list .features-left h3 {
      font-size: 26px;
  }
  .features-left {
    justify-content: center;
    align-items: center;
  }

  .features-paragraph {
    text-align: center;
  }
    .supporting-managers .group {margin-top: 0;}
  .supporting-managers .food-blob-group{
    order: 0 !important;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .supporting-managers .block-left{
    padding-block: 0 50px;
    padding-inline:0;
  }
   
    .supporting-managers  .food-blob-group.top_padding {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 479px) {
  .supporting-managers .content{margin-bottom: 0;}
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 19px;
  }

  h6 {
    font-size: 17px;
  }

  .nav-group {
    justify-content: center;
    align-items: center;
  }

  .brand {
    margin-right: 5px;
  }

  .logo {
    width: 450px;
    height: 40px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-title.white {
    min-width: 100%;
    font-size: 55px;
  }

  .hero-title.white.small-text {
    font-size: 44px;
  }

  .hero-title.white-font {
    font-size: 46px;
  }

  .hero-paragraph {
    font-size: 20px;
  }

  .content {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .text-hero {
    width: 90%;
  }

  .image-food-1 {
    width: 300px;
    height: 300px;
    bottom: -263px;
    left: -161px;
  }

  .image-food-1.single-page {
    width: 200px;
    height: 200px;
    bottom: -112px;
    left: -109px;
  }

  .food-shadow-1 {
    width: 150px;
    height: 150px;
    bottom: -196px;
    left: -5px;
  }

  .image-food-2 {
    width: 300px;
    height: 300px;
    top: -248px;
    right: -154px;
  }

  .image-food-2.single-page {
    right: -180px;
  }

  .image-food-3 {
    width: 200px;
    height: 200px;
    top: -205px;
    left: -114px;
  }

  .image-food-3.single-page {
    left: -77px;
  }

  .food-shadow-3 {
    left: -35px;
  }

  .food-shadow-3.single-page {
    left: 4px;
  }

  .food-shadow-2 {
    width: 150px;
    height: 150px;
    top: -50px;
    right: -98px;
  }

  .food-shadow-2.single-page {
    right: -108px;
  }

  .blob {
    margin-left: 0;
  }

  .image-grid {
    min-height: 300px;
  }

  .block-full {
    padding: 70px 8%;
  }

  .paragraph-white {
    width: 100%;
    margin-bottom: 26px;
  }

  .title {
    font-size: 35px;
  }

  .grid-2-columns {
    grid-template-columns: .75fr;
    display: block;
  }
  .health-care-features .grid-2-columns,
  .case-manager-resources.grid-2-columns {
      grid-template-columns: 100%;
      display: grid;
  }
  .paragraph {
    margin-bottom: 26px;
  }

  .block-right {
    padding: 25px 0%;
  }

  .food-blob-group {
    min-height: 200px;
  }

  .image-food-blob {
    width: 90%;
  }

  .image-food-blob.smaller-blob {
    width: 85%;
  }

  .block-center {
    flex-flow: column;
    min-width: auto;
    max-width: none;
    display: flex;
  }

  .section-background {
    border-radius: 0;
    display: block;
  }

  .grid-4-columns {
    grid-row-gap: 25px;
    grid-template-columns: 1fr;
  }

  .accent-title {
    font-size: 38px;
  }

  .accent-center {
    margin-block:20px;
  }

  .grid-banner {
    grid-template-columns: 1fr;
  }

  .button-small {
    background-color: var(--orange);
    margin-top: 10px;
  }

  .form {
    grid-template-columns: 1fr;
  }

  .collection-list-product {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .price-block {
    flex-direction: column;
  }

  .group {
    margin-top: 40px;
  }

  .product-thumbnail {
    height: 250px;
  }

  .block-product {
    padding-left: 5%;
    padding-right: 5%;
  }

  .price-block-product {
    flex-direction: column;
  }

  .text-compare-at-price {
    margin-left: 0;
  }

  .field-label {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .quantity {
    margin-bottom: 10px;
  }

  .block-add-to-cart {
    flex-direction: column;
    align-items: center;
  }

  .image-cart-item {
    width: 53px;
  }

  .cart-item-name {
    font-size: 16px;
  }

  .block-left {
    padding: 25px 0%;
  }

  .orange-texture {
    margin-left: 5%;
    margin-right: 5%;
    padding: 30px 25px;
  }

  .hero-title-small.white {
    font-size: 35px;
  }

  .hero-grid-image {
    grid-template-columns: 2fr 1fr;
    grid-auto-flow: row;
  }

  .green-texture {
    padding: 70px 7%;
  }

  .price {
    font-size: 20px;
  }

  .block-product-single {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .quantity-large {
    margin-bottom: 10px;
  }

  .paragraph-single-page {
    font-size: 20px;
  }

  .grid-checkout-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .order-summary, .checkout-group {
    padding-left: 20px;
    padding-right: 20px;
  }

  .checkout-price, .text-quantity-order {
    font-size: 16px;
  }

  .grid-group.large {
    grid-row-gap: 40px;
  }

  .work-number-b {
    width: 40px;
    height: 40px;
    top: 10px;
    left: 10px;
  }

  .block-image-food {
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
  }

  .grid-4-columns-full {
    margin-bottom: 25px;
  }

  .block-contact-img {
    padding-left: 10px;
    padding-right: 10px;
  }

  .block-contact {
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 30px 25px;
  }

  .section-get-started {
    padding-left: 10px;
    padding-right: 10px;
  }

  .grid-get-started {
    max-width: 100%;
    margin-left: 0;
    padding: 30px 10px;
  }

  .block-get-started-right {
    border: 1px #000;
    padding-top: 20px;
    padding-right: 0;
  }
  .getstarted-section .block-get-started-right {
    padding-right: 20px;
  }
  .form-block-started {
    margin-top: 5px;
  }

  .block-get-started-left {
    border: 1px #000;
    border-top: 1px solid #00000036;
    padding-top: 20px;
    padding-left: 0;
  }
  .supporting-managers .group {
        margin-top: 0;
    }
  .supporting-managers  .block-left{padding-block: 10px 40px;}
  .feature-option {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }

  .text-feature-option {
    margin-left: 0;
  }

  .grid-style-colors {
    grid-template-columns: 1fr;
  }

  .utility-page-content {
    padding: 30px;
  }

  .add-to-cart-single {
    width: 100%;
  }

  .container {
    max-width: none;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

  .nav-menu-two {
    flex-direction: column;
  }

  .container-2 {
    max-width: none;
  }

  .pricing-description {
    font-size: 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .div-block-3 {
    align-self: auto;
  }

  .div-block-4 {
    text-align: center;
  }

  .container-3 {
    max-width: none;
  }

  .features-paragraph {
    font-size: 17px;
    line-height: 1.5em;
  }

  .features-right {
    margin-bottom: -30px;
  }

  .features-block-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .features-image {
    margin-bottom: 10px;
  }

  .heading-5 {
    text-align: left;
    font-size: 30px;
  }
}

#w-node-_6d6d61b0-a174-3f22-272c-dc9d4aa8b7f7-fb190832 {
  order: 1;
  align-self: stretch;
}

#w-node-df564970-075a-05f2-cfc7-7571e43a8475-fb190839 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1eea834f-990a-7912-4b3e-4b05bcba27dc-fb19083a, #w-node-c13e801a-b9c1-3866-e5ba-9c75496dd6f5-fb19083a, #w-node-_01ff4ff1-a804-651c-51ce-87d9e9a4a1c4-fb19083a {
  align-self: stretch;
}

#w-node-_01ff4ff1-a804-651c-51ce-87d9e9a4a1cf-fb19083a, #w-node-d1e5646a-12e0-9f03-d7fa-c50e41511367-fb190845, #w-node-d1e5646a-12e0-9f03-d7fa-c50e41511371-fb190845, #w-node-d1e5646a-12e0-9f03-d7fa-c50e4151137b-fb190845 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1eea834f-990a-7912-4b3e-4b05bcba27dc-53aac926, #w-node-c13e801a-b9c1-3866-e5ba-9c75496dd6f5-53aac926, #w-node-_01ff4ff1-a804-651c-51ce-87d9e9a4a1c4-53aac926 {
  align-self: stretch;
}

#w-node-_01ff4ff1-a804-651c-51ce-87d9e9a4a1cf-53aac926 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_6d6d61b0-a174-3f22-272c-dc9d4aa8b7f7-fb190832 {
    order: 1;
  }

  #w-node-b7f95260-069c-b58d-c5ff-8a5e2263f10d-fb190832 {
    align-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-b182ff71-176c-791a-66fd-af74a7686386-fb190839 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-df564970-075a-05f2-cfc7-7571e43a8471-fb190839 {
    order: -9999;
  }
  .faq-individuals-section .content{
    margin-bottom: 0;
    padding-block: 0;
  }
  
}

@media screen and (max-width: 479px) {
  .manage-care-buttons {gap:10px}
  #w-node-c13e801a-b9c1-3866-e5ba-9c75496dd6ec-fb19083a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_01ff4ff1-a804-651c-51ce-87d9e9a4a193-fb19083a {
    place-self: auto;
  }

  #w-node-c13e801a-b9c1-3866-e5ba-9c75496dd6ec-53aac926 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


