:root {
  --text-dark: rgb(43, 34, 36);
  --text-dark-08: rgb(43, 34, 36, 0.8);
  --text-dark-06: rgb(43, 34, 36, 0.6);
  --text-dark-04: rgb(43, 34, 36, 0.4);
  --text-dark-02: rgb(43, 34, 36, 0.2);
  --text-light: rgb(255, 255, 255);
  --text-light-08: rgb(255, 255, 255, 0.8);
  --text-light-06: rgb(255, 255, 255, 0.6);
  --text-light-04: rgb(255, 255, 255, 0.4);
  --text-light-02: rgb(255, 255, 255, 0.2);
  --primary-color: #cd1b1b;
  --secondary-color: #ff9e81;
  --tertiary-color: #ffe8eb;
  --off-black: #2b2224;
  --off-white: #f2f2f2;
  --white-bg: #ffffff;
  --error: #ff6f6f;
  --error-light: #ffefef;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
}
*::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 62.5%;
  font-family: "Open Sans", sans-serif;
}

body {
  font-size: 1rem;
  width: 100%;
  color: var(--text-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

p {
  margin: 0;
  font-size: 1.4rem;
}

.container {
  display: flow-root;
  font-size: clamp(1.25rem, 1.1346rem + 0.3205vw, 1.4rem);
  max-width: 121rem;
  padding: 5em 1.6em;
  margin: 0 auto;
}

.section-heading {
  font-weight: 800;
  font-size: 3em;
  color: var(--text-dark);
  margin: 0.3em 0 0.6em;
  position: relative;
}
.section-heading::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1.8em;
  height: max(0.1em, 3.4px);
  background-color: var(--primary-color);
  border-radius: 5em;
  top: -0.2em;
  left: 0;
}

.section-heading--light {
  color: var(--text-light);
}
.section-heading--light::before {
  background-color: var(--secondary-color);
}

.main-cta__wrap {
  border-radius: 0.5em;
  overflow: hidden;
  display: block;
  width: max-content;
}

.main-cta {
  display: inline-block;
  text-decoration: none;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.2em;
  font-family: "Montserrat", sans-serif;
  padding: 0.9em 1.2em;
  cursor: pointer;
  --pseudo-top: 0;
  --pseudo-left: 0;
  transform: scale(1);
}
.main-cta::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 200%;
  height: auto;
  aspect-ratio: 1;
  background-color: var(--primary-color);
  mix-blend-mode: screen;
  border-radius: 50%;
  top: 0;
  left: 0;
  top: var(--pseudo-top);
  left: var(--pseudo-left);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 200ms ease-in;
  z-index: 4;
  pointer-events: none;
}
.main-cta:hover::before, .main-cta:focus::before, .main-cta:focus-within::before {
  transform: translate(-50%, -50%) scale(1);
}
.main-cta:active {
  opacity: 0.7;
}

.flashes {
  position: fixed;
  padding: 3em;
  background-color: var(--error);
  z-index: 6;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 8em;
  text-align: center;
  transition: 200ms ease-in-out;
  cursor: pointer;
}
.flashes:active {
  opacity: 0.9;
}
.flashes p {
  max-width: 120rem;
}

.general-link {
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
  display: inline;
  background-image: linear-gradient(var(--primary-color), var(--primary-color));
  background-size: 100% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 200ms ease-out;
}
.general-link:active {
  opacity: 0.7;
}
.general-link:hover, .general-link:focus {
  background-size: 0 2px;
  background-position: 100% 100%;
}

.general-link[target=_blank]::after {
  content: "";
  height: 0.8em;
  width: 0.8em;
  display: inline-block;
  margin-left: 0.3em;
  background-image: url(../images/external-link.svg);
  background-repeat: no-repeat;
}

.general-text {
  line-height: 1.6em;
  font-size: 1.3em;
}

.general-text + .general-text {
  margin-top: 0.8em;
}

.general-img {
  margin: 3em auto 4em;
  width: clamp(300px, 70%, 100%);
  max-width: 100% !important;
  display: block;
}

.tippy-tooltip {
  border-bottom: 0.1em dotted var(--text-dark);
}

.fa-check {
  color: var(--primary-color);
}

.fa-xmark {
  color: var(--text-dark-04);
}

.fa-dollar-sign + .fa-dollar-sign {
  margin-left: 0.1em;
}

.fa-circle + .fa-circle {
  margin-left: 0.2em;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  display: block;
  height: 7em;
  width: 100%;
  background: var(--white-bg);
  transform: translateY(0);
  transition: 300ms ease-out;
  z-index: 5;
}

.header-hidden {
  transform: translateY(-100%);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(1.25rem, 1.1346rem + 0.3205vw, 1.4rem);
  margin: 0 auto;
  height: 100%;
  max-width: 120rem;
  padding: 0 1.6em;
}

.logo__link {
  display: flex;
  align-items: center;
  gap: 0.3em;
  text-decoration: none;
  font-size: 2.6rem;
}

a.logo__link:active {
  opacity: 0.7;
}

.logo__img {
  width: 1.3em;
  height: 1.3em;
}

.logo__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1em;
  color: var(--primary-color);
}

.open-main-nav {
  padding: 1em;
  margin-right: -1em;
  background: none;
  border: none;
  cursor: pointer;
}

.open-main-nav__img {
  position: relative;
  width: 3.2em;
  height: 2.2em;
}
.open-main-nav__img:active {
  opacity: 0.7;
}

.open-main-nav__item {
  position: absolute;
  width: 100%;
  height: 18%;
  border-radius: 5em;
  right: 0;
  top: 0;
  background-color: var(--primary-color);
  transition: 200ms ease-in-out;
}

.open-main-nav__item:nth-child(2),
.open-main-nav__item:nth-child(3) {
  top: 40%;
}

.open-main-nav__item:nth-child(4) {
  top: 80%;
  width: 70%;
}

.main-nav {
  position: fixed;
  top: 7rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 7rem);
  background-color: var(--white-bg);
  place-items: center;
  display: none;
  transition: 300ms ease-out;
}

.main-nav--opened {
  display: grid;
}

.main-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  list-style-type: none;
  flex-direction: column;
}

.main-nav__item {
  color: var(--text-dark);
}

.main-nav__item--active {
  color: var(--primary-color);
}

.main-nav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline-block;
  width: 100%;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  padding: 1em;
  transition: 200ms ease-in-out;
}
.main-nav__link:active {
  opacity: 0.7;
}
.main-nav__link:hover, .main-nav__link:focus {
  color: var(--primary-color);
}

.open-main-nav--opened .open-main-nav__item:nth-child(1),
.open-main-nav--opened .open-main-nav__item:nth-child(4) {
  top: 40%;
  opacity: 0;
}
.open-main-nav--opened .open-main-nav__item:nth-child(2) {
  transform: rotate(45deg);
}
.open-main-nav--opened .open-main-nav__item:nth-child(3) {
  transform: rotate(-45deg);
}

@media only screen and (min-width: 1000px) {
  .open-main-nav {
    display: none;
  }
  .main-nav {
    display: grid;
    position: relative;
    transform: translateY(0);
    height: 100%;
    width: auto;
    inset: auto;
  }
  .main-nav__list {
    flex-direction: row;
    font-size: 1.4rem;
    height: 100%;
  }
  .main-nav__link {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main-nav__item {
    height: 100%;
    position: relative;
  }
  .main-nav__item::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 0.2em;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: 200ms ease-in-out;
    border-radius: 5em 5em 0 0;
    pointer-events: none;
  }
  .main-nav__item--active {
    background-color: var(--tertiary-color);
  }
  .main-nav__item--active::after {
    opacity: 1;
  }
}
.footer {
  background-color: var(--off-black);
  width: 100%;
  overflow-x: hidden;
  z-index: "footer";
}

.footer__container {
  display: flow-root;
  font-size: clamp(1.25rem, 1.1346rem + 0.3205vw, 1.4rem);
  max-width: 120rem;
  padding: 5em 1.6em;
  margin: 0 auto;
}

.footer-nav,
.footer-about {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-nav__item,
.footer-about__item {
  display: flow-root;
  padding: 1.2em 0;
}

.footer-nav__item {
  position: relative;
}
.footer-nav__item::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: calc(100vw - var(--scrollbar-width));
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: var(--off-white);
}
.footer-nav__item .footer__chapter-name:hover, .footer-nav__item .footer__chapter-name:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-nav__toggle-sub {
  position: absolute;
  width: 10em;
  height: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.footer-nav__toggle-sub span {
  transition: 200ms ease-in-out;
  position: absolute;
  top: 2em;
  right: 0;
  width: 2em;
  height: 0.2em;
  border-radius: 5em;
  background-color: var(--text-light);
  transform-origin: center;
}
.footer-nav__toggle-sub span:nth-child(1) {
  transform: rotate(45deg);
}
.footer-nav__toggle-sub span:nth-child(2) {
  transform: rotate(135deg);
}

.footer-nav__toggle-sub--closed span:nth-child(1) {
  transform: rotate(0deg);
}
.footer-nav__toggle-sub--closed span:nth-child(2) {
  transform: rotate(90deg);
}

.footer__chapter-name {
  display: flow-root;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  color: var(--text-light);
  font-weight: 600;
  text-decoration: none;
}
.footer__chapter-name:not(:is(p)):active {
  opacity: 0.7;
}

.footer-about__links-wrap {
  margin-top: 0.4em;
  display: flex;
  flex-direction: column;
}

.footer-nav__links-wrap {
  margin-top: 0.4em;
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 200ms ease-out;
}
.footer-nav__links-wrap div {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.footer-nav__links-wrap--closed {
  grid-template-rows: 0fr;
}

.footer__subheading {
  color: var(--text-light-06);
  font-size: 1.4rem;
  padding: 0.3em 0;
  text-decoration: none;
}

a.footer__subheading {
  transition: 200ms ease-in-out;
}
a.footer__subheading:hover, a.footer__subheading:focus {
  color: var(--text-light);
}
a.footer__subheading:active {
  opacity: 0.7;
}

.footer-about {
  padding-top: 1.5em;
}

.footer-nav {
  padding-bottom: 1.5em;
}

.footer-about__socials-wrap {
  display: flex;
  align-items: center;
  gap: 0.4em;
  margin-left: -0.3em;
  padding: 0.3em 0;
}

.footer-about__social {
  padding: 0.3em;
}
.footer-about__social path {
  fill: var(--text-light-06);
  transition: 200ms ease-in-out;
}
.footer-about__social:hover path, .footer-about__social:focus path {
  fill: var(--text-light);
}

.logo--mono {
  filter: grayscale(1);
}
.logo--mono .logo__text {
  color: var(--text-light);
}
.logo--mono .logo__link {
  font-size: 3rem;
}

.credentials__text {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light-04);
  margin-top: 3em;
}
.credentials__text a {
  color: var(--text-light-04);
}
.credentials__text a:active {
  opacity: 0.7;
}
.credentials__text a:focus, .credentials__text a:hover {
  text-decoration: none;
}

@media only screen and (min-width: 1000px) {
  .footer-nav__toggle-sub {
    display: none;
  }
  .footer-nav__item::after {
    display: none;
  }
  .footer-nav__links-wrap--closed {
    grid-template-rows: 1fr;
  }
  .footer-nav,
  .footer-about {
    flex-direction: row;
    gap: 2.5%;
    justify-content: flex-start;
  }
  .footer-about__item,
  .footer-nav__item {
    width: 18%;
  }
  .footer-about__item--span-2 {
    width: 38.5%;
  }
  .footer-about {
    position: relative;
  }
  .footer-about::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - var(--scrollbar-width));
    height: 1px;
    background-color: var(--text-light-06);
  }
}/*# sourceMappingURL=health.css.map */