@font-face {
  font-family: "Poppins Light";
  src: url("../fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins Medium";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins Semi";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --help-dark: #154734;
  --help-green: #00993c;
  --help-yellow: #ffcb1c;
  --help-red: #db0031;
  --help-text: #333333;
  --help-soft: #F5FBF8;
  --shadow-card: 0px 0px 7px rgba(21, 71, 52, 0.17);
  --shadow-button: 0 3px 9px rgba(21, 71, 52, 0.14);
  --page-width: 1399px;
  --page-gutter: 22px;
  --help-medy: #554ed0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--help-text);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  background: #fff;
}

body.is-modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.page-shell {
  width: min(100% - var(--page-gutter) * 2, var(--page-width));
  margin-inline: auto;
}

.site-header {
  padding: 17px 0 28px;
}
@media (max-width: 760px) {
  .site-header {
    padding: 15px 0 !important;
  }
}
.site-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 32px;
}
.site-header__inner a {
  color: var(--help-dark);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  position: relative;
}
.site-header__inner a::after {
  top: 21px;
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--help-green);
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 153, 60)), to(rgb(0, 152, 59)));
  background: linear-gradient(90deg, rgb(0, 153, 60) 0%, rgb(0, 152, 59) 100%);
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
.site-header__inner a:hover {
  color: var(--help-green);
}
.site-header__inner a:hover::after {
  width: 100%;
}
@media (max-width: 760px) {
  .site-header__inner {
    gap: 15px;
  }
}

.top-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 218px;
  min-height: 32px;
  border: 1px solid var(--help-green);
  border-radius: 999px;
  padding: 0 22px;
  color: var(--help-green);
  font-size: 10.5px;
  font-family: "Poppins Light", sans-serif;
  line-height: 1;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 352px;
  overflow: hidden;
  border-radius: 12px 12px 160px 12px;
  background: #00983B;
  background: radial-gradient(circle, rgb(0, 152, 59) 0%, rgb(0, 76, 23) 100%);
  color: #fff;
}
.hero__logo {
  position: absolute;
  top: 35px;
  left: 34px;
  z-index: 2;
  width: 224px;
}
.hero__person {
  position: absolute;
  bottom: -26px;
  left: 23%;
  z-index: 1;
  width: 348px;
  max-width: none;
}
.hero__copy {
  position: relative;
  z-index: 2;
  margin-left: 52%;
  padding-top: 84px;
  padding-right: 60px;
  text-align: center;
}
.hero__title {
  margin: 0;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.04;
}
.hero__title .is-accent {
  color: var(--help-yellow);
}
.hero__badge {
  width: 238px;
  margin: 32px auto 0;
}

.intro {
  margin-top: 70px;
}
.intro-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(360px, 0.92fr) 28px minmax(0, 1.98fr);
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.98fr);
  gap: 28px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.intro-copy__title {
  margin: 0;
  color: var(--help-green);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.14;
}
.intro-copy__title strong {
  color: var(--help-dark);
  font-size: clamp(22px, 5vw, 32px);
}
.intro-copy__title img {
  display: inline-block;
  width: 28px;
  margin-left: 6px;
  vertical-align: -4px;
}
.intro-copy__alt {
  margin: 0;
  color: var(--help-green);
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 600;
  line-height: 1.14;
}
@media (max-width: 1337px) {
  .intro-copy__alt {
    font-size: clamp(20px, 5vw, 28px);
  }
}
@media (max-width: 760px) {
  .intro-copy__alt {
    font-size: 23px;
  }
}
.intro-copy__alt span {
  color: var(--help-dark);
  font-size: 38px;
}
@media (max-width: 1337px) {
  .intro-copy__alt span {
    font-size: 30px;
  }
}
@media (max-width: 760px) {
  .intro-copy__alt span {
    font-size: 28px;
  }
}
.intro-copy__text {
  max-width: 374px;
  margin: 20px 0 0;
  color: rgba(51, 51, 51, 0.72);
  font-size: 15px;
  line-height: 1.52;
}
@media (max-width: 760px) {
  .intro-copy__text {
    max-width: 100%;
  }
}

.promo-card {
  position: relative;
  min-height: 332px;
  overflow: visible;
  border-radius: 35px;
  background: var(--help-green);
  color: #fff;
  -webkit-box-shadow: 0 2px 6px rgba(21, 71, 52, 0.08);
          box-shadow: 0 2px 6px rgba(21, 71, 52, 0.08);
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
.promo-card--benefits h2 {
  max-width: 290px;
  margin: 0;
  font-size: 24px;
  font-family: "Poppins Medium", sans-serif;
  font-weight: 800;
  line-height: 1.05;
}
@media (max-width: 760px) {
  .promo-card--benefits h2 {
    font-size: 20px;
    font-weight: 800;
  }
}
.promo-card--benefits .promo-card__eyebrow {
  max-width: 290px;
  margin: 4px 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}
.promo-card--benefits p:nth-of-type(2) {
  max-width: 288px;
  margin: 22px 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.52;
}
.promo-card--benefits .promo-card__strong {
  font-family: "Poppins Semi";
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.2;
}
.promo-card--benefits .promo-card__media {
  position: absolute;
  right: -3px;
  bottom: -1px;
  width: 136px;
}
.promo-card--slow h2 {
  max-width: 248px;
  margin: 0;
  font-size: 43px;
  font-weight: 900;
  line-height: 0.9;
}
@media (max-width: 760px) {
  .promo-card--slow h2 {
    font-size: 36px;
  }
}
.promo-card--slow h2 span {
  color: var(--help-dark);
}
.promo-card--slow p {
  margin: 10px 0 0;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.02;
}
.promo-card--slow .promo-card__media {
  position: absolute;
  right: 7px;
  bottom: 0;
  width: 170px;
}
@media (max-width: 1380px) {
  .promo-card--slow .promo-card__media {
    width: 140px;
  }
}
@media (max-width: 1230px) {
  .promo-card--slow .promo-card__media {
    width: 170px;
  }
}
@media (max-width: 991px) {
  .promo-card--slow .promo-card__media {
    width: 140px;
  }
}
@media (max-width: 760px) {
  .promo-card--slow .promo-card__media {
    width: 170px;
  }
}
@media (max-width: 460px) {
  .promo-card--slow .promo-card__media {
    width: 150px;
  }
}
.promo-card__flip-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  margin-top: 14px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.promo-card__inner {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  will-change: transform;
}
.promo-card:hover .promo-card__inner, .promo-card:focus-within .promo-card__inner {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.promo-card__face {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}
.promo-card--benefits .promo-card__face {
  padding: 30px 24px;
}
.promo-card--slow .promo-card__face {
  padding: 30px 26px;
}
.promo-card__face--back {
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  justify-items: start;
  gap: 14px;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.promo-card__face--back h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.02;
}
.promo-card__face--back p {
  max-width: 255px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}
@media (max-width: 1486px) {
  .promo-card__face--back p {
    max-width: 65%;
  }
}

.promo-carousel {
  display: -ms-grid;
  display: grid;
  gap: 28px;
  min-width: 0;
}

.promo-carousel__viewport {
  overflow: hidden;
}

.promo-carousel__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
  will-change: transform;
}

.promo-carousel__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 28px) / 2);
          flex: 0 0 calc((100% - 28px) / 2);
}

@media (max-width: 1230px) {
  .promo-carousel__slide {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.text-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: var(--help-green);
  font-size: 14px;
  line-height: 1;
}
.text-link img {
  width: 19px !important;
}
.text-link--light {
  padding: 0;
  border: 0;
  background: transparent;
  margin-top: 10px;
  gap: 6px;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.text-link--light img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  width: 19px;
}

.carousel-controls {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
  padding-left: 0;
}

.carousel-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.carousel-dots__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d9d9d9;
  -webkit-transition: width 0.28s ease, height 0.28s ease, background-color 0.2s ease, -webkit-transform 0.28s ease;
  transition: width 0.28s ease, height 0.28s ease, background-color 0.2s ease, -webkit-transform 0.28s ease;
  transition: width 0.28s ease, height 0.28s ease, background-color 0.2s ease, transform 0.28s ease;
  transition: width 0.28s ease, height 0.28s ease, background-color 0.2s ease, transform 0.28s ease, -webkit-transform 0.28s ease;
}
.carousel-dots__dot.is-active {
  width: 30px;
  height: 10px;
  background: var(--help-green);
  -webkit-animation: dot-grow 0.28s ease;
          animation: dot-grow 0.28s ease;
}

@-webkit-keyframes dot-grow {
  0% {
    -webkit-transform: scaleX(0.65);
            transform: scaleX(0.65);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes dot-grow {
  0% {
    -webkit-transform: scaleX(0.65);
            transform: scaleX(0.65);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.carousel-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.icon-button {
  display: -ms-grid;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
}
@media (max-width: 760px) {
  .icon-button {
    width: 34px;
    height: 34px;
  }
}

.tabs-section {
  margin-top: 73px;
  text-align: start;
}

.tabs__panel {
  scroll-margin-top: 24px;
}

.tabs {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 4px;
  border-radius: 999px;
  background: var(--help-soft);
  border: 1px solid rgba(21, 71, 52, 0.0138);
  -webkit-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.03);
}
.tabs__button {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  background: transparent;
  color: rgba(21, 71, 52, 0.78);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.tabs__button.is-active {
  background: var(--help-green);
  color: #fff;
  -webkit-box-shadow: 0 2px 5px rgba(21, 71, 52, 0.14);
          box-shadow: 0 2px 5px rgba(21, 71, 52, 0.14);
  cursor: default;
}

.tabs__panel + .flex {
  margin-top: 72px;
}

.section-title {
  margin: 0 0 33px;
  color: var(--help-green);
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  line-height: 1.38;
  text-align: center;
}
.section-title span {
  color: var(--help-dark);
}

.business-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.04fr 1fr;
  grid-template-columns: 1.04fr 1fr;
  width: min(100%, 1168px);
  max-width: 1168px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(21, 71, 52, 0.08);
  border-radius: 18px 18px 44px 18px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 7px rgba(21, 71, 52, 0.17);
          box-shadow: 0px 0px 7px rgba(21, 71, 52, 0.17);
}
.business-card__media {
  overflow: hidden;
}
.business-card__media > img {
  width: 100%;
}
.business-card__summary h3, .business-card__content h3 {
  margin: 0;
  color: var(--help-dark);
  font-weight: 500;
}
.business-card__summary p, .business-card__content p {
  color: rgba(51, 51, 51, 0.75);
  font-size: 15px;
  line-height: 1.35;
}
.business-card__summary {
  padding: 34px 40px;
}
.business-card__summary h3 {
  font-size: clamp(18px, 5vw, 22px);
  line-height: 1.25;
}
.business-card__summary h3 strong {
  color: var(--help-green);
  font-weight: 800;
}
.business-card__summary p {
  margin: 18px 0 0;
}
.business-card__summary .text-link {
  margin-top: 28px;
}
.business-card__content {
  padding: 42px 40px 34px;
}
.business-card__content h3 {
  font-size: clamp(18px, 5vw, 24px);
  line-height: 1.2;
}
.business-card__content h3 strong {
  color: var(--help-green);
  font-weight: 800;
}
.business-card__content > p {
  margin: 20px 0 0;
}
.business-card__label {
  margin-top: 24px !important;
  color: var(--help-dark) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}
@media (max-width: 1337px) {
  .business-card__label {
    font-size: 14px !important;
  }
}

.feature-list {
  display: -ms-grid;
  display: grid;
  gap: 11px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--help-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 1337px) {
  .feature-list li {
    font-size: 12px;
  }
}
.feature-list img {
  width: 16px;
  height: 16px;
}

.form-card {
  margin-top: 28px;
  padding: 24px 26px 28px;
  border-radius: 31px;
  background: rgba(240, 240, 240, 0.7);
  text-align: center;
}
.form-card__title {
  margin: 0;
  color: var(--help-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}
.form-card__text {
  margin: 4px 0 0;
  color: var(--help-text);
  font-size: 15px;
}

.family-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  -ms-grid-rows: 1fr 28px 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 28px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.family-grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.family-grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.family-grid > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}

.family-grid > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}

.family-grid > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
}

.family-grid > *:nth-child(6) {
  -ms-grid-row: 1;
  -ms-grid-column: 11;
}

.family-grid > *:nth-child(7) {
  -ms-grid-row: 1;
  -ms-grid-column: 13;
}

.family-grid > *:nth-child(8) {
  -ms-grid-row: 1;
  -ms-grid-column: 15;
}

.family-grid > *:nth-child(9) {
  -ms-grid-row: 1;
  -ms-grid-column: 17;
}

.family-grid > *:nth-child(10) {
  -ms-grid-row: 1;
  -ms-grid-column: 19;
}

.family-grid > *:nth-child(11) {
  -ms-grid-row: 1;
  -ms-grid-column: 21;
}

.family-grid > *:nth-child(12) {
  -ms-grid-row: 1;
  -ms-grid-column: 23;
}

.family-grid > *:nth-child(13) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.family-grid > *:nth-child(14) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.family-grid > *:nth-child(15) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}

.family-grid > *:nth-child(16) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}

.family-grid > *:nth-child(17) {
  -ms-grid-row: 3;
  -ms-grid-column: 9;
}

.family-grid > *:nth-child(18) {
  -ms-grid-row: 3;
  -ms-grid-column: 11;
}

.family-grid > *:nth-child(19) {
  -ms-grid-row: 3;
  -ms-grid-column: 13;
}

.family-grid > *:nth-child(20) {
  -ms-grid-row: 3;
  -ms-grid-column: 15;
}

.family-grid > *:nth-child(21) {
  -ms-grid-row: 3;
  -ms-grid-column: 17;
}

.family-grid > *:nth-child(22) {
  -ms-grid-row: 3;
  -ms-grid-column: 19;
}

.family-grid > *:nth-child(23) {
  -ms-grid-row: 3;
  -ms-grid-column: 21;
}

.family-grid > *:nth-child(24) {
  -ms-grid-row: 3;
  -ms-grid-column: 23;
}

.family-intro {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1/span 4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/span 2;
  padding-top: 18px;
}
.family-intro h3 {
  max-width: 90%;
  margin: 0;
  color: var(--help-dark);
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 400;
  line-height: 1.38;
}
@media (max-width: 1337px) {
  .family-intro h3 {
    font-size: clamp(20px, 5vw, 28px);
    max-width: 100%;
  }
}
.family-intro__highlight {
  margin: 28px 0 0;
  color: var(--help-green);
  font-size: 20px;
  font-family: "Poppins Semi", sans-serif;
}
@media (max-width: 1337px) {
  .family-intro__highlight {
    font-size: 17px;
    margin: 18px 0 0;
  }
}
.family-intro p:last-child {
  max-width: 90%;
  margin: 18px 0 0;
  color: rgba(51, 51, 51, 0.75);
  font-size: 14px;
  line-height: 1.52;
}
@media (max-width: 1337px) {
  .family-intro p:last-child {
    margin: 10px 0 0;
    max-width: 100%;
  }
}

.family-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  border-radius: 35px;
  background: #fff;
  -webkit-box-shadow: 0 0px 8px rgba(21, 71, 52, 0.16);
          box-shadow: 0 0px 8px rgba(21, 71, 52, 0.16);
}
.family-card:nth-of-type(1) {
  -ms-grid-column: 5;
  -ms-grid-column-span: 4;
  grid-column: 5/span 4;
  -ms-grid-row: 1;
  grid-row: 1;
}
.family-card:nth-of-type(2) {
  -ms-grid-column: 9;
  -ms-grid-column-span: 4;
  grid-column: 9/span 4;
  -ms-grid-row: 1;
  grid-row: 1;
}
.family-card:nth-of-type(3) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1/span 4;
  -ms-grid-row: 2;
  grid-row: 2;
}
.family-card:nth-of-type(4) {
  -ms-grid-column: 5;
  -ms-grid-column-span: 4;
  grid-column: 5/span 4;
  -ms-grid-row: 2;
  grid-row: 2;
}
.family-card:nth-of-type(5) {
  -ms-grid-column: 9;
  -ms-grid-column-span: 4;
  grid-column: 9/span 4;
  -ms-grid-row: 2;
  grid-row: 2;
}
.family-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.family-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px 22px 24px;
}
.family-card__body h3 {
  margin: 0;
  color: var(--help-dark);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 1337px) {
  .family-card__body h3 {
    font-size: 17px;
  }
}
.family-card__body h3 strong {
  color: var(--help-green);
  font-weight: 800;
}
.family-card__body p {
  margin: 10px 0 0;
  color: #154734;
  font-size: 14px;
  line-height: 1.52;
  font-weight: 500;
}
.family-card__body .text-link {
  margin-top: auto;
  padding-top: 14px;
}

.cta-strip {
  width: min(100% - 44px, 1399px);
  margin: 72px auto 48px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 260px 24px 1fr 24px auto 24px auto;
  grid-template-columns: 260px 1fr auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  min-height: 88px;
  border-radius: 22px;
  background: #F7F7F7;
  padding: 14px 32px;
}
@media (max-width: 1337px) {
  .cta-strip {
    gap: 15px;
  }
}
@media (max-width: 1180px) {
  .cta-strip {
    -ms-grid-columns: 200px 1fr auto auto;
    grid-template-columns: 200px 1fr auto auto;
  }
}
.cta-strip__brand {
  width: 207px;
}
.cta-strip__text {
  margin: 0;
  color: var(--help-dark);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}
@media (max-width: 1337px) {
  .cta-strip__text {
    font-size: 15px;
  }
}
.cta-strip__text span {
  font-weight: 400;
}
@media (max-width: 1337px) {
  .cta-strip__text span {
    font-size: 14px;
  }
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 150px;
  min-height: 34px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid var(--help-green);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.button--outline {
  color: var(--help-green);
  background: transparent;
}
.button--outline:hover {
  color: #154734;
  border-color: #154734;
}
.button--solid {
  color: #fff;
  background: var(--help-green);
}
.button--solid:hover {
  background: #154734;
  border-color: #154734;
}
.button--dark {
  color: #fff;
  background: #154734;
  border-color: #154734;
}
.button--dark:hover {
  background: #00993c;
  border-color: #00993c;
}
.button--white {
  border-color: #fff;
  color: #fff;
}
.button--white:hover {
  color: #00993c;
  border-color: #00993c;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal[aria-hidden=true] {
  visibility: hidden;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}
.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 814px);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  border-radius: 18px;
  background: #fff;
  padding: 34px 76px 62px;
  -webkit-box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
          box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  -webkit-transform: translateY(14px);
          transform: translateY(14px);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.modal.is-open .modal__dialog {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 15px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
}
.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 3px;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: #111;
}
.modal__close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal__header {
  text-align: center;
}
.modal__title {
  margin: 0;
  color: var(--help-dark);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.08;
}
.modal__lead {
  margin: 3px 0 0;
  color: rgba(51, 51, 51, 0.78);
  font-size: 13px;
  line-height: 1.25;
}

.contact-form {
  margin-top: 49px;
}
.contact-form__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  row-gap: 24px;
}
.contact-form__field {
  display: -ms-grid;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
.contact-form__field span,
.contact-form__field legend {
  color: rgba(51, 51, 51, 0.9);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
.contact-form__field input[type=text],
.contact-form__field input[type=tel],
.contact-form__field input[type=email],
.contact-form__field input[type=number] {
  width: 100%;
  height: 40px;
  border: 1px solid #d8d8d8;
  border-radius: 9px;
  padding: 0 10px;
  color: var(--help-text);
  font-size: 12px;
  font-weight: 600;
  outline: 0;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.contact-form__field input[type=text]::-webkit-input-placeholder, .contact-form__field input[type=tel]::-webkit-input-placeholder, .contact-form__field input[type=email]::-webkit-input-placeholder, .contact-form__field input[type=number]::-webkit-input-placeholder {
  color: #c9c9c9;
}
.contact-form__field input[type=text]::-moz-placeholder, .contact-form__field input[type=tel]::-moz-placeholder, .contact-form__field input[type=email]::-moz-placeholder, .contact-form__field input[type=number]::-moz-placeholder {
  color: #c9c9c9;
}
.contact-form__field input[type=text]:-ms-input-placeholder, .contact-form__field input[type=tel]:-ms-input-placeholder, .contact-form__field input[type=email]:-ms-input-placeholder, .contact-form__field input[type=number]:-ms-input-placeholder {
  color: #c9c9c9;
}
.contact-form__field input[type=text]::-ms-input-placeholder, .contact-form__field input[type=tel]::-ms-input-placeholder, .contact-form__field input[type=email]::-ms-input-placeholder, .contact-form__field input[type=number]::-ms-input-placeholder {
  color: #c9c9c9;
}
.contact-form__field input[type=text]::placeholder,
.contact-form__field input[type=tel]::placeholder,
.contact-form__field input[type=email]::placeholder,
.contact-form__field input[type=number]::placeholder {
  color: #c9c9c9;
}
.contact-form__field input[type=text]:focus,
.contact-form__field input[type=tel]:focus,
.contact-form__field input[type=email]:focus,
.contact-form__field input[type=number]:focus {
  border-color: var(--help-green);
  -webkit-box-shadow: 0 0 0 3px rgba(0, 153, 60, 0.12);
          box-shadow: 0 0 0 3px rgba(0, 153, 60, 0.12);
}
.contact-form__radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 22px;
     -moz-column-gap: 22px;
          column-gap: 22px;
  row-gap: 10px;
}
.contact-form__radio-group legend {
  width: 100%;
  margin-bottom: 4px;
}
.contact-form__radio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: rgba(51, 51, 51, 0.35);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.contact-form__radio input {
  position: absolute;
  opacity: 0;
}
.contact-form__radio span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: inherit;
}
.contact-form__radio span::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #d6d6d6;
  border-radius: 999px;
  background: #fff;
  -webkit-box-shadow: inset 0 0 0 4px #fff;
          box-shadow: inset 0 0 0 4px #fff;
}
.contact-form__radio input:checked + span {
  color: #111;
}
.contact-form__radio input:checked + span::after {
  border-color: var(--help-green);
  background: var(--help-green);
}
.contact-form__radio input:focus-visible + span::after {
  outline: 2px solid var(--help-yellow);
  outline-offset: 2px;
}
.contact-form__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: min(100%, 266px);
  min-height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 53px auto 0;
  border: 0;
  border-radius: 999px;
  background: var(--help-green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.contact-form__thanks {
  display: none;
  min-height: 300px;
  place-content: center;
  text-align: center;
}
.contact-form__thanks h3 {
  margin: 0;
  color: var(--help-dark);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}
.contact-form__thanks p {
  max-width: 430px;
  margin: 14px auto 0;
  color: rgba(51, 51, 51, 0.78);
  font-size: 14px;
  line-height: 1.45;
}
.contact-form__thanks:focus {
  outline: 0;
}

.modal.is-submitted .modal__header,
.modal.is-submitted .contact-form {
  display: none;
}
.modal.is-submitted .contact-form__thanks {
  display: -ms-grid;
  display: grid;
}

.site-footer .button--white {
  font-size: 11px;
}

.site-footer {
  background: #1A5F3D;
  color: #fff;
  padding: 36px 0;
}
.site-footer a {
  color: white;
}
.site-footer__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 122px 46px 1fr 46px 1fr 46px minmax(190px, 1.25fr) 46px 1px 46px minmax(240px, 280px);
  grid-template-columns: 122px 1fr 1fr minmax(190px, 1.25fr) 1px minmax(240px, 280px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 46px;
     -moz-column-gap: 46px;
          column-gap: 46px;
  row-gap: 28px;
}
@media (max-width: 1067px) {
  .site-footer__grid {
    -ms-grid-columns: 92px 24px 1fr 24px 1fr 24px minmax(170px, 1.2fr) 24px 1px 24px minmax(190px, 220px);
    grid-template-columns: 92px 1fr 1fr minmax(170px, 1.2fr) 1px minmax(190px, 220px);
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
.site-footer__brand {
  width: 108px;
  margin-bottom: 20px;
}
.site-footer__divider {
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.34);
  -ms-grid-column-align: center;
      justify-self: center;
  margin-inline: 12px;
}
.site-footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 12px;
}
.site-footer__socials img {
  width: 40px;
  height: 40px;
}
.site-footer__stores {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 12px;
}
.site-footer__stores img {
  height: 26px;
  width: auto;
}
.site-footer__copyright {
  margin: 10px 0 0;
  text-align: right;
  font-size: 9px;
  opacity: 0.88;
}

.footer-item {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  line-height: 1.2;
}
.footer-item p {
  margin: 0;
  font-size: 11px;
}
.footer-item strong {
  display: block;
  margin-top: 2px;
  font-size: 18px;
  line-height: 1;
}
.footer-item img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-carousel,
.footer-carousel__track {
  display: contents;
}

.footer-carousel__dots {
  display: none;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 25px;
  z-index: 20;
  display: -ms-grid;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(21, 71, 52, 0.08);
  border-radius: 999px;
  background: #fff;
  -webkit-box-shadow: 0 4px 14px rgba(21, 71, 52, 0.16);
          box-shadow: 0 4px 14px rgba(21, 71, 52, 0.16);
  cursor: pointer;
}
@media (max-width: 760px) {
  .scroll-top {
    width: 38px;
    height: 38px;
  }
}
.scroll-top::before {
  content: "";
  width: 13px;
  height: 13px;
  margin-top: 6px;
  border-left: 3px solid var(--help-green);
  border-top: 3px solid var(--help-green);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 760px) {
  .scroll-top::before {
    width: 10px;
    height: 10px;
  }
}
.scroll-top:hover {
  background: var(--help-green);
}
.scroll-top:hover::before {
  border-color: #fff;
}
.scroll-top:focus-visible {
  outline: 2px solid var(--help-yellow);
  outline-offset: 2px;
}

@media (max-width: 920px) {
  :root {
    --page-width: 860px;
  }
  .hero {
    min-height: 296px;
  }
  .hero__logo {
    top: 32px;
    left: 28px;
    width: 162px;
  }
  .hero__person {
    left: 29%;
    bottom: -20px;
    width: 276px;
  }
  .hero__copy {
    margin-left: 50%;
    padding-top: 78px;
    padding-right: 36px;
  }
  .hero__title {
    font-size: 38px;
  }
  .hero__badge {
    width: 184px;
    margin-top: 24px;
  }
  .intro-grid {
    -ms-grid-columns: minmax(0, 1fr) 18px minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
  }
  .promo-card {
    min-height: 296px;
  }
  .business-card {
    max-width: 860px;
  }
  .family-grid {
    -ms-grid-columns: minmax(0, 1fr) 25px minmax(0, 1fr) 25px minmax(0, 1fr) 25px minmax(0, 1fr) 25px minmax(0, 1fr) 25px minmax(0, 1fr) 25px minmax(0, 1fr) 25px minmax(0, 1fr) 25px minmax(0, 1fr) 25px minmax(0, 1fr) 25px minmax(0, 1fr) 25px minmax(0, 1fr);
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 25px;
  }
  .cta-strip {
    -ms-grid-columns: 220px 14px 1fr 14px auto 14px auto;
    grid-template-columns: 220px 1fr auto auto;
    gap: 14px;
    padding-inline: 24px;
  }
  .site-footer__grid {
    -ms-grid-columns: 92px 24px 1fr 24px 1fr 24px minmax(170px, 1.2fr) 24px 1px 24px minmax(190px, 220px);
    grid-template-columns: 92px 1fr 1fr minmax(170px, 1.2fr) 1px minmax(190px, 220px);
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
@media (min-width: 921px) {
  :root {
    --page-gutter: 120px;
  }
  .site-header {
    padding: 15px;
  }
  .hero {
    min-height: 389px;
  }
  .hero__logo {
    top: 38px;
    left: 36px;
    width: 214px;
  }
  .hero__person {
    left: 25%;
    bottom: 0;
    width: 326px;
  }
  .hero__copy {
    margin-left: 49%;
    padding-top: 96px;
    padding-right: 44px;
  }
  .hero__title {
    font-size: clamp(22px, 5vw, 42px);
    line-height: 1.18;
  }
  .hero__badge {
    width: 294px;
    margin-top: 28px;
  }
  .cta-strip {
    width: min(100% - var(--page-gutter) * 2, var(--page-width));
  }
}
@media (max-width: 1320px) {
  .hero {
    min-height: 389px;
  }
  .hero__logo {
    top: 32px;
    left: 32px;
    width: 190px;
  }
  .hero__person {
    left: 23%;
    width: 326px;
  }
  .hero__title {
    font-size: clamp(22px, 5vw, 32px);
    line-height: 1.38;
  }
  .hero__badge {
    width: 234px;
  }
}
@media (max-width: 1184px) {
  .hero__person {
    left: 21%;
    width: 306px;
  }
}
@media (max-width: 1129px) {
  .hero__copy {
    margin-left: 49%;
    padding-top: 46px;
    padding-right: 44px;
  }
  .color--yellow {
    font-size: 38px;
    line-height: 1.18;
  }
}
@media (max-width: 1083px) {
  .hero__logo {
    top: 28px;
    left: 28px;
    width: 163px;
  }
  .hero__person {
    left: 19%;
    width: 246px;
  }
}
@media (max-width: 1152px) {
  .cta-strip {
    width: min(100% - 22px, 682px);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    min-height: 220px;
    margin-top: 56px;
    padding: 18px 20px 28px;
    text-align: center;
  }
  .cta-strip__text {
    max-width: 390px;
  }
  .cta-strip .button {
    width: 172px;
  }
}
@media (max-width: 1067px) {
  .family-grid {
    -ms-grid-rows: auto (1fr)[2];
    grid-template-rows: auto repeat(2, 1fr);
  }
  .family-intro {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .family-card:nth-of-type(1), .family-card:nth-of-type(2) {
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .family-card:nth-of-type(1) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 6;
    grid-column: 1/span 6;
  }
  .family-card:nth-of-type(2) {
    -ms-grid-column: 7;
    -ms-grid-column-span: 6;
    grid-column: 7/span 6;
  }
  .family-card:nth-of-type(3), .family-card:nth-of-type(4), .family-card:nth-of-type(5) {
    -ms-grid-row: 3;
    grid-row: 3;
  }
  .family-card:nth-of-type(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/span 4;
  }
  .family-card:nth-of-type(4) {
    -ms-grid-column: 5;
    -ms-grid-column-span: 4;
    grid-column: 5/span 4;
  }
  .family-card:nth-of-type(5) {
    -ms-grid-column: 9;
    -ms-grid-column-span: 4;
    grid-column: 9/span 4;
  }
}
@media (max-width: 1199px) {
  .site-footer__grid {
    -ms-grid-columns: minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 30px;
  }
  .site-footer__brand {
    grid-column: 1/-1;
    margin: 0;
    -ms-grid-row-align: center;
        align-self: center;
  }
  .site-footer__divider {
    display: none;
  }
  .site-footer__right {
    grid-column: 1/-1;
    width: 100%;
  }
  .site-footer__socials,
  .site-footer__stores,
  .site-footer__copyright {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
@media (max-width: 760px) {
  .site-header {
    padding-bottom: 20px;
  }
  .site-header__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: none;
  }
  .top-link {
    min-width: 0;
    padding-inline: 22px;
  }
  .hero {
    min-height: 610px;
    border-radius: 0 10px 78px 0;
  }
  .hero__logo {
    top: 32px;
    left: 28px;
    width: 106px;
  }
}
@media (max-width: 760px) and (max-width: 760px) {
  .hero__logo {
    width: 110px;
    display: block;
    margin: 30px auto;
    position: unset;
  }
}
@media (max-width: 760px) {
  .hero__person {
    left: 50%;
    bottom: 0;
    width: 218px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .hero__copy {
    position: absolute;
    top: 38%;
    left: 50%;
    margin-left: 0;
    width: 100%;
    padding: 0 15px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .hero__title {
    font-size: 30px;
    line-height: 1.1;
  }
  .hero__badge {
    width: 186px;
    margin-top: 14px;
  }
  .intro-grid,
  .family-grid,
  .business-card,
  .cta-strip,
  .site-footer__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .family-grid {
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
  .promo-carousel__slide {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .intro {
    margin-top: 46px;
  }
  .carousel-controls {
    padding-left: 0;
  }
  .business-card__summary,
  .business-card__content {
    padding: 28px 24px;
  }
  .family-intro {
    grid-column: auto;
    grid-row: auto;
  }
  .family-card:nth-of-type(1), .family-card:nth-of-type(2), .family-card:nth-of-type(3), .family-card:nth-of-type(4), .family-card:nth-of-type(5) {
    grid-column: auto;
    grid-row: auto;
  }
  .cta-strip {
    justify-items: center;
    text-align: center;
  }
  .site-footer__grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    justify-items: stretch;
    row-gap: 28px;
  }
  .site-footer__divider {
    display: none;
  }
  .site-footer__brand {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column-align: start;
        justify-self: start;
    width: 92px;
  }
  .site-footer__right {
    display: contents;
  }
  .site-footer__socials {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 18px;
    -ms-grid-column-align: end;
        justify-self: end;
  }
  .site-footer__socials img {
    width: 42px;
    height: 42px;
  }
  .footer-carousel {
    display: block;
    grid-column: 1/-1;
    -ms-grid-row: 2;
    grid-row: 2;
    overflow: hidden;
    width: 100%;
    max-width: 260px;
    -ms-grid-column-align: center;
        justify-self: center;
    cursor: -webkit-grab;
    cursor: grab;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
  }
  .footer-carousel__track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: -webkit-transform 0.28s ease;
    transition: -webkit-transform 0.28s ease;
    transition: transform 0.28s ease;
    transition: transform 0.28s ease, -webkit-transform 0.28s ease;
    will-change: transform;
  }
  .footer-carousel.is-dragging {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
  .footer-carousel.is-dragging .footer-carousel__track {
    -webkit-transition: none;
    transition: none;
  }
  .footer-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .footer-item p {
    font-size: 12px;
  }
  .footer-item strong {
    font-size: 24px;
    letter-spacing: 0.01em;
  }
  .footer-item img {
    width: 52px;
    height: 52px;
  }
  .footer-carousel__dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
    margin-top: 18px;
  }
  .footer-carousel__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #000;
    cursor: pointer;
    opacity: 1;
  }
  .footer-carousel__dot.is-active {
    background: #fff;
  }
  .site-footer__stores {
    grid-column: 1/-1;
    -ms-grid-row: 3;
    grid-row: 3;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 14px;
  }
  .site-footer__copyright {
    grid-column: 1/-1;
    -ms-grid-row: 4;
    grid-row: 4;
    text-align: center;
    font-size: 12px;
  }
  .button--white {
    -ms-grid-column-align: center;
        justify-self: center;
  }
  .modal {
    padding: 12px;
  }
  .modal__dialog {
    max-height: calc(100vh - 24px);
    padding: 46px 22px 34px;
    border-radius: 15px;
  }
  .modal__title {
    font-size: 16px;
    line-height: 1.08;
  }
  .modal__lead {
    display: none;
  }
  .contact-form {
    margin-top: 28px;
  }
  .contact-form__grid {
    -ms-grid-columns: minmax(0, 1fr) 12px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    row-gap: 16px;
  }
  .contact-form__field {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
  .contact-form__field--half {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
  .contact-form__field--rut {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .contact-form__field--workers {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .contact-form__field--phone {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .contact-form__field--insurance {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .contact-form__field:not(.contact-form__field--half) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .contact-form__field:nth-of-type(3) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .contact-form__field:nth-of-type(4) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .contact-form__field:nth-of-type(6) {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .contact-form__field span, .contact-form__field legend {
    font-size: 11px;
  }
  .contact-form__field input[type=text], .contact-form__field input[type=tel], .contact-form__field input[type=email], .contact-form__field input[type=number] {
    height: 38px;
    font-size: 11px;
  }
  .contact-form__submit {
    margin-top: 32px;
  }
  .contact-form__radio-group {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
  .contact-form__radio {
    font-size: 11px;
  }
  .contact-form__thanks {
    min-height: 240px;
  }
  .contact-form__thanks h3 {
    font-size: clamp(18px, 5vw, 22px);
  }
  .contact-form__thanks p {
    font-size: 13px;
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ps-60 {
  padding-left: 60px;
}
@media (max-width: 1337px) {
  .ps-60 {
    padding-left: 30px;
  }
}
@media (max-width: 768px) {
  .ps-60 {
    padding-left: 0px;
  }
}

.heart-1 {
  top: 11px;
  right: -47px;
  width: 40px;
}
@media (max-width: 1337px) {
  .heart-1 {
    top: 8px;
    right: -37px;
    width: 30px;
  }
}
@media (max-width: 760px) {
  .heart-1 {
    width: 35px;
  }
}

.color--green {
  color: var(--help-green) !important;
}
.color--dark {
  color: var(--help-dark) !important;
}
.color--yellow {
  color: var(--help-yellow) !important;
}
.color--medy {
  color: var(--help-medy) !important;
}

.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 4px !important;
}
.mt-2 {
  margin-top: 8px !important;
}
.mt-3 {
  margin-top: 12px !important;
}
.mt-4 {
  margin-top: 16px !important;
}
.mt-5 {
  margin-top: 20px !important;
}
.mt-6 {
  margin-top: 24px !important;
}

.bg--light {
  background-color: var(--help-soft) !important;
}

.fw-thin {
  font-weight: 300 !important;
}

.field-error {
  display: none;
  min-height: 11px;
  margin-top: -4px;
  color: #dc2626;
  font-size: 10px;
  font-weight: 500;
}

.is-invalid + .field-error {
  display: block;
}

.is-invalid {
  border: 1px solid #dc2626 !important;
}

.is-valid {
  border: 1px solid #16a34a !important;
}

@-webkit-keyframes dots {
  0% {
    content: "Enviando";
  }
  25% {
    content: "Enviando.";
  }
  50% {
    content: "Enviando..";
  }
  75% {
    content: "Enviando...";
  }
  100% {
    content: "Enviando";
  }
}

@keyframes dots {
  0% {
    content: "Enviando";
  }
  25% {
    content: "Enviando.";
  }
  50% {
    content: "Enviando..";
  }
  75% {
    content: "Enviando...";
  }
  100% {
    content: "Enviando";
  }
}
.loading-dots::after {
  content: "Enviando";
  -webkit-animation: dots 1.2s infinite steps(4);
          animation: dots 1.2s infinite steps(4);
}

.grecaptcha-badge {
  visibility: hidden;
}

.fsz-38 {
  font-size: clamp(22px, 5vw, 38px) !important;
}
.fsz-35 {
  font-size: clamp(24px, 5vw, 35px) !important;
}
