@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,400;0,700;1,100;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,400;0,700;1,100;1,400;1,700&display=swap");
@font-face {
  font-family: AttenNew;
  src: url("/static/fonts/AttenNewRegular.otf") format("opentype");
}
@font-face {
  font-family: AttenNew;
  font-weight: bold;
  src: url("/static/fonts/AttenNewExtraBold.otf") format("opentype");
}
@font-face {
  font-family: OpenDyslexic;
  src: url("/static/fonts/OpenDyslexic-Regular.otf") format("opentype");
}
@font-face {
  font-family: OpenDyslexic;
  font-weight: bold;
  src: url("/static/fonts/OpenDyslexic-Bold.otf") format("opentype");
}
@font-face {
  font-family: OpenDyslexic;
  font-style: italic;
  src: url("/static/fonts/OpenDyslexic-Italic.otf") format("opentype");
}
@font-face {
  font-family: OpenDyslexic;
  font-style: italic;
  font-weight: bold;
  src: url("/static/fonts/OpenDyslexic-BoldItalic.otf") format("opentype");
}
body,
html {
  position: relative;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.3rem;
  font-family: "OpenDyslexic", sans-serif;
}

body .mytooltip {
  text-decoration: underline;
  text-decoration-style: dotted;
  cursor: help;
}

body #wrapper #topheader {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 80px 80px;
  grid-template-areas: "t" "b";
}

body #wrapper #topheader a {
  text-decoration: none;
  color: #E65359;
  font-weight: bold;
}

body #wrapper #topheader #sitelogo {
  height: 10rem;
  grid-area: t;
  place-self: start start;
  z-index: 5;
  -webkit-box-shadow: 6px 7px 5px -5px rgba(0, 0, 0, 0.27);
  -moz-box-shadow: 6px 7px 5px -5px rgba(0, 0, 0, 0.27);
  box-shadow: 6px 7px 5px -5px rgba(0, 0, 0, 0.27);
}

body #wrapper #topheader #contactrow {
  margin-right: 3rem;
  grid-area: t;
  display: flex;
  align-items: center;
  justify-items: center;
  place-self: center end;
}

body #wrapper #topheader #contactrow * {
  margin-left: 5px;
}

body #wrapper #topheader #contactrow a {
  max-height: 100%;
  display: grid;
}

body #wrapper #topheader #contactrow a img {
  place-self: center center;
  max-height: 100%;
  width: 30px;
}

body #wrapper #topheader #contactrow a .phoneicon {
  display: block;
}

body #wrapper #topheader #contactrow #searchbox input {
  border: 2px solid #E65359;
  height: 30px;
  padding-left: 10px;
}

body #wrapper #topheader #menuitems {
  grid-area: b;
  z-index: 3;
  place-self: center end;
  margin-right: 3rem;
}

body #wrapper #topheader #menuitems #themenu {
  display: flex;
  flex-wrap: wrap;
}

body #wrapper #topheader #menuitems #hamburger {
  display: none;
}

body #wrapper #topheader #menuitems #closemenu {
  display: none;
}

body #wrapper #topheader #menuitems a {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-left: 2px solid #E65359;
}

body #wrapper #topheader #menuitems #servicedropdown {
  position: relative;
  display: inline-block;
}

body #wrapper #topheader #menuitems #servicedropdown #servicebutton {
  border-left: 2px solid #E65359;
}

body #wrapper #topheader #menuitems #servicedropdown #dropdowncontent {
  display: none;
  position: absolute;
  background: #f6de96;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 1rem;
  font-size: 1vw;
  transition: display 0.5s;
}

body #wrapper #topheader #menuitems #servicedropdown #dropdowncontent a {
  border-left: none;
  padding-left: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  margin-top: 0.5rem;
  display: inline-block;
}

body #wrapper #topheader #menuitems #servicedropdown #dropdowncontent a:hover {
  background: rgba(255, 255, 255, 0.294);
}

body #wrapper #topheader #menuitems #servicedropdown:hover #dropdowncontent {
  display: block;
  transition: display 0.5s;
}

body #wrapper #topheader #menuitems #doifeeldropdown {
  position: relative;
  display: inline-block;
}

body #wrapper #topheader #menuitems #doifeeldropdown #doifeelbutton {
  border-left: 2px solid #E65359;
}

body #wrapper #topheader #menuitems #doifeeldropdown #dropdowncontentdoifeel {
  display: none;
  position: absolute;
  background: #f6de96;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 1rem;
  font-size: 1vw;
  transition: display 0.5s;
}

body #wrapper #topheader #menuitems #doifeeldropdown #dropdowncontentdoifeel a {
  border-left: none;
  padding-left: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  margin-top: 0.5rem;
  display: inline-block;
}

body #wrapper #topheader #menuitems #doifeeldropdown #dropdowncontentdoifeel a:hover {
  background: rgba(255, 255, 255, 0.294);
}

body #wrapper #topheader #menuitems #doifeeldropdown:hover #dropdowncontentdoifeel {
  display: block;
  transition: display 0.5s;
}

body #wrapper #topheader #menuitems :first-child {
  border-left: none;
}

body #wrapper #topheader #menuitems :last-child {
  padding-right: 0;
}

body #wrapper #topheader #rainbowdiv {
  grid-area: b;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: url(/static/img/skeleton/rainbow_rect_header.png);
  background-repeat: no-repeat;
  background-size: contain;
}

body #wrapper #topheader #colordiv {
  grid-area: b;
  width: 100%;
  height: 100%;
  background: #F9ADAD;
  z-index: 1;
}

@media screen and (max-width: 1000px) {
  body #wrapper #topheader #sitelogo {
    position: absolute;
    margin-left: 0;
    height: 11vh;
  }
}
@media screen and (max-width: 1300px) {
  body #wrapper #topheader {
    grid-template-rows: 50px 50px;
  }

  body #wrapper #topheader #contactrow {
    margin-right: 1rem;
    font-size: 1.2rem;
  }

  body #wrapper #topheader #contactrow .site-logo {
    font-size: 2rem;
  }

  body #wrapper #topheader #contactrow a .textnumber {
    display: none;
  }

  body #wrapper #topheader #contactrow a .phoneicon {
    display: block;
  }

  body #wrapper #topheader #menuitems {
    margin-right: 1rem;
    font-size: 1rem;
  }

  body #wrapper #topheader #menuitems a {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media screen and (max-width: 790px) {
  body #wrapper #topheader #sitelogo {
    height: 11vh;
    margin-left: 0;
    position: absolute;
  }

  body #wrapper #topheader #menuitems #themenu {
    display: block;
    position: fixed;
    background: #F9ADAD;
    right: -100vw;
    top: 0;
    width: 70vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 6.5vw;
    padding-bottom: 2rem;
    -webkit-box-shadow: -1px 2px 9px 3px rgba(0, 0, 0, 0.31);
    -moz-box-shadow: -1px 2px 9px 3px rgba(0, 0, 0, 0.31);
    box-shadow: -1px 2px 9px 3px rgba(0, 0, 0, 0.31);
    transition: right 0.2s;
  }

  body #wrapper #topheader #menuitems #themenu a {
    border: none;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid white;
    margin-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: white;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown {
    position: initial;
    display: initial;
    text-align: right;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown #servicebutton {
    border-left: none;
    border-bottom: 2px solid white;
    padding-bottom: 0.5rem;
    display: inline-block;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown #dropdowncontent.visible {
    display: block;
    position: absolute;
    right: 1rem;
    background: #f6de96;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    min-width: unset;
    box-shadow: unset;
    padding: 1;
    padding-right: 1rem;
    padding-left: 2rem;
    padding-bottom: 2rem;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown #dropdowncontent.visible a {
    color: #e65359;
    border-bottom: 2px solid #e65359;
    font-size: 4vw;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown:hover {
    cursor: pointer;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown:hover #dropdowncontent {
    display: none;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown:hover #dropdowncontent.visible {
    display: block;
    position: absolute;
  }

  body #wrapper #topheader #menuitems #themenu #doifeeldropdown {
    position: initial;
    display: initial;
    text-align: right;
  }

  body #wrapper #topheader #menuitems #themenu #doifeeldropdown #doifeelbutton {
    border-left: none;
    border-bottom: 2px solid white;
    padding-bottom: 0.5rem;
    display: inline-block;
  }

  body #wrapper #topheader #menuitems #themenu #doifeeldropdown #dropdowncontentdoifeel.visible {
    display: block;
    position: absolute;
    right: 1rem;
    background: #f6de96;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    min-width: unset;
    box-shadow: unset;
    padding: 1;
    padding-right: 1rem;
    padding-left: 2rem;
    padding-bottom: 2rem;
  }

  body #wrapper #topheader #menuitems #themenu #doifeeldropdown #dropdowncontentdoifeel.visible a {
    color: #e65359;
    border-bottom: 2px solid #e65359;
    font-size: 4vw;
  }

  body #wrapper #topheader #menuitems #themenu #doifeeldropdown:hover {
    cursor: pointer;
  }

  body #wrapper #topheader #menuitems #themenu #doifeeldropdown:hover #dropdowncontentdoifeel {
    display: none;
  }

  body #wrapper #topheader #menuitems #themenu #doifeeldropdown:hover #dropdowncontentdoifeel.visible {
    display: block;
    position: absolute;
  }

  body #wrapper #topheader #menuitems #themenu :last-child {
    border-bottom: none;
  }

  body #wrapper #topheader #menuitems #hamburger {
    display: initial;
    border-left: none;
    font-size: 1.5rem;
  }

  body #wrapper #topheader #menuitems #closemenu {
    display: initial;
  }

  body #wrapper #topheader #menuitems #themenu:target {
    right: 0;
    overflow-y: scroll;
  }
}
@media screen and (max-width: 500px) {
  body #wrapper #topheader #contactrow #searchbox {
    display: none;
  }
}
body #wrapper #footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  padding-left: 3rem;
  padding-bottom: 2rem;
  background-color: #F9ADAD;
}

body #wrapper #footer .footersection {
  display: flex;
  flex-direction: column;
}

body #wrapper #footer .footersection h4 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 0;
  padding-bottom: 1rem;
  font-family: AttenNew;
  color: #E65359;
}

body #wrapper #footer .footersection a {
  text-decoration: none;
  color: black;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-family: "OpenDyslexic", sans-serif;
  transition: color 0.5s;
}

body #wrapper #footer .footersection a:hover {
  color: #E65359;
  transition: color 0.1s;
}

body #wrapper #footer #footercontacts {
  padding-right: 1rem;
}

body #wrapper #footer #footercontacts a {
  border: 2px solid #E65359;
  border-radius: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  color: #E65359;
  font-weight: bold;
  transition: background 0.5s, color 0.15s;
}

body #wrapper #footer #footercontacts a:hover {
  background: #E65359;
  color: white;
}

@media screen and (max-width: 1250px) {
  body #wrapper #footer {
    display: flex;
    flex-wrap: wrap;
    padding-left: 1rem;
  }

  body #wrapper #footer .footersection {
    top: 0vh;
    right: 0vw;
  }

  body #wrapper #footer .footersection #footerservices {
    position: relative;
  }

  body #wrapper #footer .footersection iframe {
    width: 88vw;
  }
}
body #wrapper #footerservices {
  position: relative;
  margin-right: 4rem;
}

@font-face {
  font-family: AttenNew;
  src: url("/static/fonts/AttenNewRegular.otf") format("opentype");
}
@font-face {
  font-family: AttenNew;
  font-weight: bold;
  src: url("/static/fonts/AttenNewExtraBold.otf") format("opentype");
}
@font-face {
  font-family: OpenDyslexic;
  src: url("/static/fonts/OpenDyslexic-Regular.otf") format("opentype");
}
@font-face {
  font-family: OpenDyslexic;
  font-weight: bold;
  src: url("/static/fonts/OpenDyslexic-Bold.otf") format("opentype");
}
@font-face {
  font-family: OpenDyslexic;
  font-style: italic;
  src: url("/static/fonts/OpenDyslexic-Italic.otf") format("opentype");
}
@font-face {
  font-family: OpenDyslexic;
  font-style: italic;
  font-weight: bold;
  src: url("/static/fonts/OpenDyslexic-BoldItalic.otf") format("opentype");
}
body,
html {
  position: relative;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.3rem;
  font-family: "OpenDyslexic", sans-serif;
}

body .mytooltip {
  text-decoration: underline;
  text-decoration-style: dotted;
  cursor: help;
}

body #wrapper #topheader {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 80px 80px;
  grid-template-areas: "t" "b";
}

body #wrapper #topheader a {
  text-decoration: none;
  color: #e65359;
  font-weight: bold;
}

body #wrapper #topheader #sitelogo {
  height: 10rem;
  grid-area: t;
  place-self: start start;
  z-index: 5;
  box-shadow: 6px 7px 5px -5px rgba(0, 0, 0, 0.27);
}

body #wrapper #topheader #contactrow {
  margin-right: 3rem;
  grid-area: t;
  display: flex;
  align-items: center;
  justify-items: center;
  place-self: center end;
}

body #wrapper #topheader #contactrow * {
  margin-left: 5px;
}

body #wrapper #topheader #contactrow a {
  max-height: 100%;
  display: grid;
}

body #wrapper #topheader #contactrow a img {
  place-self: center center;
  max-height: 100%;
  width: 30px;
}

body #wrapper #topheader #contactrow a .phoneicon {
  display: block;
}

body #wrapper #topheader #contactrow #searchbox input {
  border: 2px solid #e65359;
  height: 30px;
  padding-left: 10px;
}

body #wrapper #topheader #menuitems {
  grid-area: b;
  z-index: 3;
  place-self: center end;
  margin-right: 3rem;
}

body #wrapper #topheader #menuitems #themenu {
  display: flex;
  flex-wrap: wrap;
}

body #wrapper #topheader #menuitems #themenu a {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-left: 2px solid #e65359;
}

body #wrapper #topheader #menuitems #themenu :first-child {
  border-left: none;
}

body #wrapper #topheader #menuitems #themenu :last-child {
  padding-right: 0;
}

body #wrapper #topheader #menuitems #hamburger, body #wrapper #topheader #menuitems #closemenu {
  display: none;
}

body #wrapper #topheader #menuitems #servicedropdown, body #wrapper #topheader #menuitems #doifeeldropdown {
  position: relative;
  display: inline-block;
}

body #wrapper #topheader #menuitems #servicedropdown #servicebutton, body #wrapper #topheader #menuitems #servicedropdown #doifeelbutton, body #wrapper #topheader #menuitems #doifeeldropdown #servicebutton, body #wrapper #topheader #menuitems #doifeeldropdown #doifeelbutton {
  border-left: 2px solid #e65359;
}

body #wrapper #topheader #menuitems #servicedropdown #dropdowncontent, body #wrapper #topheader #menuitems #servicedropdown #dropdowncontentdoifeel, body #wrapper #topheader #menuitems #doifeeldropdown #dropdowncontent, body #wrapper #topheader #menuitems #doifeeldropdown #dropdowncontentdoifeel {
  display: none;
  position: absolute;
  background: #f6de96;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 1rem;
  font-size: 1vw;
  transition: display 0.5s;
}

body #wrapper #topheader #menuitems #servicedropdown #dropdowncontent a, body #wrapper #topheader #menuitems #servicedropdown #dropdowncontentdoifeel a, body #wrapper #topheader #menuitems #doifeeldropdown #dropdowncontent a, body #wrapper #topheader #menuitems #doifeeldropdown #dropdowncontentdoifeel a {
  border-left: none;
  padding-left: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  margin-top: 0.5rem;
  display: inline-block;
}

body #wrapper #topheader #menuitems #servicedropdown #dropdowncontent a:hover, body #wrapper #topheader #menuitems #servicedropdown #dropdowncontentdoifeel a:hover, body #wrapper #topheader #menuitems #doifeeldropdown #dropdowncontent a:hover, body #wrapper #topheader #menuitems #doifeeldropdown #dropdowncontentdoifeel a:hover {
  background: rgba(255, 255, 255, 0.294);
}

body #wrapper #topheader #menuitems #servicedropdown:hover #dropdowncontent, body #wrapper #topheader #menuitems #servicedropdown:hover #dropdowncontentdoifeel, body #wrapper #topheader #menuitems #doifeeldropdown:hover #dropdowncontent, body #wrapper #topheader #menuitems #doifeeldropdown:hover #dropdowncontentdoifeel {
  display: block;
  transition: display 0.5s;
}

body #wrapper #topheader #rainbowdiv {
  grid-area: b;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: url(/static/img/skeleton/rainbow_rect_header.png);
  background-repeat: no-repeat;
  background-size: contain;
}

body #wrapper #topheader #colordiv {
  grid-area: b;
  width: 100%;
  height: 100%;
  background: #f9adad;
  z-index: 1;
}

body #wrapper #footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  padding-left: 3rem;
  padding-bottom: 2rem;
  background-color: #f9adad;
}

body #wrapper #footer .footersection {
  display: flex;
  flex-direction: column;
}

body #wrapper #footer .footersection h4 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 0;
  padding-bottom: 1rem;
  font-family: AttenNew;
  color: #e65359;
}

body #wrapper #footer .footersection a {
  text-decoration: none;
  color: black;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-family: "OpenDyslexic", sans-serif;
  transition: color 0.5s;
}

body #wrapper #footer .footersection a:hover {
  color: #e65359;
  transition: color 0.1s;
}

body #wrapper #footer #footercontacts {
  padding-right: 1rem;
}

body #wrapper #footer #footercontacts a {
  border: 2px solid #e65359;
  border-radius: 0.5rem;
  padding: 1rem;
  color: #e65359;
  font-weight: bold;
  transition: background 0.5s, color 0.15s;
}

body #wrapper #footer #footercontacts a:hover {
  background: #e65359;
  color: white;
}

body #wrapper #footer #footerservices {
  position: relative;
  margin-right: 4rem;
}

.onboarding-page {
  font-family: "OpenDyslexic", "Poppins", AttenNew, sans-serif;
  color: #022211;
}

.onboarding-page .hero {
  background: #7a2476;
  text-align: center;
  padding: 4rem 2rem;
}

.onboarding-page .hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.onboarding-page .hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.onboarding-page .hero .ctas .btn {
  margin: 0 0.5rem;
}

.onboarding-page .hero .ctas .btn-primary {
  background: #c43454;
  color: #fff;
}

.onboarding-page .hero .ctas .btn-secondary {
  background: #f6de96;
  color: #fff;
}

.onboarding-page .why {
  background: #fff;
  text-align: center;
  padding: 3rem 2rem;
}

.onboarding-page .why .card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f5f5f5;
  border-radius: 1.2rem;
  box-shadow: 1 8px 32px rgba(31, 38, 135, 0.13);
  max-width: 520px;
  min-width: 240px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.onboarding-page .why .card h1 {
  width: 100%;
  background: #eaeaea;
  margin: 0;
  padding: 2rem 1.5rem 1.2rem 1.5rem;
  font-weight: bold;
  color: #222;
  text-align: center;
  letter-spacing: 0.01em;
  border-radius: 1.2rem 1.2rem 0 0;
  z-index: 2;
  position: relative;
  font-family: "OpenDyslexic", "Poppins", AttenNew, sans-serif;
}

.onboarding-page .why .card .why-desc {
  width: 100%;
  min-height: 300px;
  background-color: #2daae2;
  color: #222;
  font-family: "OpenDyslexic", "Poppins", AttenNew, sans-serif;
  font-weight: 600;
  text-align: center;
  padding: 4rem 1.2rem 2.8rem 1.2rem;
  margin: 0;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
  border-radius: 0 0 1.2rem 1.2rem;
  box-sizing: border-box;
}

.onboarding-page .why .card .why-desc strong {
  color: #222;
  font-weight: bold;
}

.onboarding-page .why .card .why-desc::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100% 60px;
  z-index: 3;
  pointer-events: none;
}

.onboarding-page .why .card .why-bottom-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  padding: 0 2.2rem 1.1rem 2.2rem;
  box-sizing: border-box;
  pointer-events: none;
}

.onboarding-page .why .card .why-bottom-row .why-bottom-label {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 0.2rem;
  padding-top: 1em;
  min-width: 60px;
  text-align: center;
  opacity: 0.92;
  background: none;
  pointer-events: auto;
}

.onboarding-page .timeline {
  padding: 3rem 2rem;
}

.onboarding-page .timeline .timeline-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  gap: 0;
}

.onboarding-page .timeline .timeline-stepper .stepper-item {
  display: flex;
  align-items: center;
  position: relative;
}

.onboarding-page .timeline .timeline-stepper .stepper-item .stepper-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #7a2476;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #7a2476;
  font-weight: 600;
  position: relative;
  z-index: 2;
  transition: background 0.3s, border 0.3s, color 0.3s;
}

.onboarding-page .timeline .timeline-stepper .stepper-item.active .stepper-circle {
  background: #7a2476;
  color: #fff;
  border-color: #7a2476;
}

.onboarding-page .timeline .timeline-stepper .stepper-item.completed .stepper-circle {
  background: #fff;
  color: #7a2476;
  border-color: #7a2476;
}

.onboarding-page .timeline .timeline-stepper .stepper-item.completed .stepper-circle::before {
  content: "✔";
  color: #7a2476;
  font-size: 1.3rem;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.onboarding-page .timeline .timeline-stepper .stepper-item.completed .stepper-number {
  opacity: 0;
}

.onboarding-page .timeline .timeline-stepper .stepper-item .stepper-number {
  z-index: 2;
  transition: opacity 0.2s;
}

.onboarding-page .timeline .timeline-stepper .stepper-item .stepper-line {
  width: 48px;
  height: 2px;
  background: #7a2476;
  margin: 0 0.2rem;
  z-index: 1;
}

.onboarding-page .timeline .timeline-step-content {
  max-width: 500px;
  margin: 0 auto;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel {
  display: none;
  text-align: center;
  animation: fadeInStep 0.4s;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #c43454;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel .next-step-btn, .onboarding-page .timeline .timeline-step-content .timeline-step-panel .prev-step-btn {
  background: #7a2476;
  color: #fff;
  border: none;
  padding: 0.6rem 1.6rem;
  border-radius: 0.4rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel .next-step-btn:hover, .onboarding-page .timeline .timeline-step-content .timeline-step-panel .prev-step-btn:hover {
  background: #c43454;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel .prev-step-btn {
  background: #33477a;
  color: #203431;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel .prev-step-btn:hover {
  background: #c43454;
  color: #fff;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel.active {
  display: block;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.onboarding-page .plans {
  background: rgb(254, 251, 243);
  padding: 3rem 2rem;
}

.onboarding-page .plans .plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.onboarding-page .plans .plan-card {
  perspective: 1000px;
}

.onboarding-page .plans .plan-card .card-inner {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.onboarding-page .plans .plan-card.combo .card-front {
  border: 3px solid #c43454;
}

.onboarding-page .plans .plan-card:hover .card-inner {
  transform: rotateY(180deg);
}

.onboarding-page .plans .plan-card .card-front, .onboarding-page .plans .plan-card .card-back {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.onboarding-page .plans .plan-card .card-front {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.onboarding-page .plans .plan-card .card-front h3 {
  margin-bottom: 0.5rem;
}

.onboarding-page .plans .plan-card .card-front .price {
  font-size: 1.2rem;
  color: #022211;
}

.onboarding-page .plans .plan-card .card-back {
  background: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
}

.onboarding-page .plans .plan-card .card-back ul.features {
  flex-grow: 1;
  list-style: disc inside;
  margin: 0;
  padding: 0;
}

.onboarding-page .plans .plan-card .card-back .prereq {
  font-style: italic;
  margin: 0.5rem 0;
}

.onboarding-page .plans .plan-card .card-back .book-btn {
  background: #c43454;
  color: #fff;
  border: none;
  padding: 0.5rem;
  border-radius: 0.3rem;
  cursor: pointer;
  align-self: center;
}

.onboarding-page .aftercare {
  padding: 3rem 2rem;
  text-align: center;
}

.onboarding-page .aftercare p {
  max-width: 600px;
  margin: auto;
}

.onboarding-page .plans-cards-section {
  background: #fff;
  padding: 3rem 2rem;
  font-family: "OpenDyslexic", "Poppins", AttenNew, sans-serif;
}

.onboarding-page .plans-cards-section .plans-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  margin-top: 2.5rem;
  width: 100%;
}

.onboarding-page .plans-cards-section .plan-card-new {
  margin: 1.5rem;
  flex: 1 1 320px;
  max-width: 340px;
  min-width: 260px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.25s, transform 0.25s;
  animation: cardFadeIn 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  will-change: transform, box-shadow;
  background: #f8b7bb !important;
  border-radius: 1.2rem;
}

.onboarding-page .plans-cards-section .plan-card-new:hover {
  box-shadow: 0 16px 40px rgba(31, 38, 135, 0.18);
  transform: translateY(-8px) scale(1.03);
}

.onboarding-page .plans-cards-section .plan-card-new .plan-sticky-note {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  width: 70px;
  height: 60px;
  border-radius: 0.4rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
  font-family: "Poppins", "OpenDyslexic", AttenNew, sans-serif;
  animation: stickyNoteDrop 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.onboarding-page .plans-cards-section .plan-card-new .plan-sticky-note .plan-sticky-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-top: 12px;
  margin-bottom: 0;
  letter-spacing: 1px;
  display: block;
  width: 100%;
  text-align: center;
  user-select: none;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-sticky-note .plan-paperclip {
  position: absolute;
  top: 0px;
  left: 10px;
  width: 28px;
  height: 28px;
  background: none;
  z-index: 3;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-sticky-note .plan-paperclip::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url('data:image/svg+xml;utf8,<svg width="28" height="28" xmlns="http://www.w3.org/2000/svg"><path d="M7 14c0-4 6-8 10-4l4 4c4 4-2 10-6 6l-6-6" fill="none" stroke="black" stroke-width="2.2" stroke-linecap="round"/></svg>') no-repeat center center;
  background-size: contain;
}

.onboarding-page .plans-cards-section .plan-card-new.plan-card-1 .plan-sticky-note {
  background: #2daae2 !important;
}

.onboarding-page .plans-cards-section .plan-card-new.plan-card-2 .plan-sticky-note {
  background: #cdd629 !important;
}

.onboarding-page .plans-cards-section .plan-card-new.plan-card-3 .plan-sticky-note {
  background: #c43454 !important;
}

.onboarding-page .plans-cards-section .plan-card-new.plan-card-4 .plan-sticky-note {
  background: #33477a !important;
}

.onboarding-page .plans-cards-section .plan-card-new.plan-card-5 .plan-sticky-note {
  background: #fee668 !important;
}

.onboarding-page .plans-cards-section .plan-card-new.plan-card-6 .plan-sticky-note {
  background: #318257 !important;
}

.onboarding-page .plans-cards-section .plan-card-new.plan-card-7 .plan-sticky-note {
  background: #7a2476 !important;
}

.onboarding-page .plans-cards-section .plan-card-new.plan-card-8 .plan-sticky-note {
  background: #f37826 !important;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-card-content {
  margin-top: 2.7rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "OpenDyslexic", "Poppins", AttenNew, sans-serif;
  padding: 1.2rem 0.7rem 1.2rem 0.7rem;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .plan-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #33477a;
  margin-bottom: 0.3rem;
  text-align: center;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .plan-card-price {
  font-size: 1.08rem;
  font-weight: 600;
  color: #2daae2;
  background: #eaf7fd;
  border-radius: 1rem;
  padding: 0.2rem 1rem;
  margin-bottom: 0.7rem;
  text-align: center;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .plan-card-features {
  list-style: disc inside;
  padding: 0;
  margin: 0 0 0.7rem 0;
  width: 100%;
  color: #444;
  font-size: 1.01rem;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .plan-card-features h5 {
  line-height: 1.6;
  margin-bottom: -10px !important;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .plan-card-prereq {
  font-style: italic;
  color: #024e26;
  font-size: 0.99rem;
  margin-bottom: 0.7rem;
  text-align: center;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .book-btn {
  display: inline-block;
  padding: 0.6em 1.5em;
  background: #2daae2;
  color: #fff;
  border-radius: 2em;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.7rem;
  font-family: "OpenDyslexic", "Poppins", AttenNew, sans-serif;
  transition: background 0.22s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.2s, transform 0.2s, color 0.18s cubic-bezier(0.4, 0.2, 0.2, 1);
  box-shadow: 0 4px 18px rgba(31, 38, 135, 0.1);
  min-width: 140px;
  min-height: 48px;
  letter-spacing: 0.04em;
  outline: none;
  will-change: transform, box-shadow, background, color;
  position: relative;
  overflow: hidden;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .book-btn:hover, .onboarding-page .plans-cards-section .plan-card-new .plan-card-content .book-btn:focus {
  background: #7a2476;
  color: #fff;
  box-shadow: 0 8px 32px rgba(122, 36, 118, 0.18);
  transform: translateY(-2px) scale(1.045);
  filter: brightness(1.08);
}

.onboarding-page .renewals {
  padding: 40px 0 !important;
}

.onboarding-page .renewals .renewal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 2.5rem;
}

.onboarding-page .renewals .renewal-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px 0 rgba(31, 38, 135, 0.1);
  border: none;
  min-width: 220px;
  max-width: 340px;
  width: 100%;
  padding: 2.2rem 1.5rem 2.2rem 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.22s, transform 0.22s;
  animation: cardFadeInRenewal 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  will-change: transform, box-shadow;
  position: relative;
}

.onboarding-page .renewals .renewal-item:hover {
  box-shadow: 0 16px 40px rgba(31, 38, 135, 0.15);
  transform: translateY(-8px) scale(1.03);
}

.onboarding-page .renewals .renewal-item .renewal-header,
.onboarding-page .renewals .renewal-item .renewal-price,
.onboarding-page .renewals .renewal-item .renewal-detail {
  font-family: "OpenDyslexic", "Poppins", AttenNew, sans-serif !important;
}

.onboarding-page .renewals .renewal-item .renewal-header {
  font-size: 1.18rem;
  font-weight: 700;
  color: #1a237e;
  text-align: center;
  margin-bottom: 0.7rem;
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
  font-family: "Poppins", "OpenDyslexic", AttenNew, sans-serif;
}

.onboarding-page .renewals .renewal-item .renewal-price {
  font-size: 1.08rem;
  font-weight: 600;
  color: #f6de96;
  background: #1976d2;
  border-radius: 1rem;
  padding: 0.4rem 1.2rem;
  margin-bottom: 0.7rem;
  text-align: center;
  display: inline-block;
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.1);
  transition: background 0.18s;
}

.onboarding-page .renewals .renewal-item .renewal-price:hover {
  background: #0d47a1;
}

.onboarding-page .renewals .renewal-item .renewal-detail {
  color: #444;
  font-size: 1.01rem;
  padding: 0 0.2rem;
  border-radius: 0 0 1.5rem 1.5rem;
  margin-top: 0.5rem;
  text-align: center;
  min-height: 60px;
  display: block;
  background: none;
  transition: color 0.18s;
}

.book-plan-btn {
  border-radius: 40px;
  border: none;
  background-color: #ec1763;
  color: #fff;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 5px;
  font-size: 1rem;
  cursor: pointer;
  font-family: "OpenDyslexic", "Poppins", AttenNew, sans-serif !important;
}

.book-plan-btn:hover {
  background-color: #f64d59;
  transition: background-color 0.3s ease;
}

.faq-collapsible {
  cursor: pointer;
  user-select: none;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
  padding: 1.2rem 2.2rem 1.2rem 1.5rem;
  background: #7a2476;
  color: #fff;
  border-radius: 1.1rem;
  font-size: 1.18rem;
  font-weight: 600;
  margin: 0 auto;
  margin-bottom: 0;
  box-shadow: 0 4px 18px rgba(31, 38, 135, 0.1);
  border: 1.5px solid #7a2476;
  outline: none;
  display: flex;
  align-items: center;
  min-height: 56px;
  max-width: 600px;
}

.faq-collapsible:after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #2daae2 url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="9" cy="9" r="9" fill="%2316b1e4"/><path d="M9 5V13" stroke="white" stroke-width="2" stroke-linecap="round"/><path d="M5 9H13" stroke="white" stroke-width="2" stroke-linecap="round"/></svg>') no-repeat center center;
  background-size: 22px 22px;
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.22s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.faq-collapsible.active:after {
  transform: translateY(-50%) rotate(135deg);
}

.faq-collapsible:focus {
  box-shadow: 0 0 0 2px #2daae2;
}

.faq-answer {
  display: none;
  margin: 0 auto 1.2rem auto;
  margin-top: 0;
  padding: 1.2rem 1.5rem 1.2rem 1.5rem;
  background: #fff;
  color: #203431;
  border-radius: 0 0 1.1rem 1.1rem;
  box-shadow: 0 4px 18px rgba(31, 38, 135, 0.1);
  font-size: 1.05rem;
  max-width: 600px;
  border: 1.5px solid #e2b800;
  border-top: none;
  transition: all 0.2s;
}

.faq-answer.active {
  display: block;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes stickyNoteDrop {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-30px) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) rotate(-6deg);
  }
}
@keyframes cardFadeInRenewal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 1300px) {
  body #wrapper #topheader {
    grid-template-rows: 50px 50px;
  }

  body #wrapper #topheader #contactrow {
    margin-right: 1rem;
    font-size: 1.2rem;
  }

  body #wrapper #topheader #contactrow .site-logo {
    font-size: 2rem;
  }

  body #wrapper #topheader #contactrow a .textnumber {
    display: none;
  }

  body #wrapper #topheader #contactrow a .phoneicon {
    display: block;
  }

  body #wrapper #topheader #menuitems {
    margin-right: 1rem;
    font-size: 1rem;
  }

  body #wrapper #topheader #menuitems a {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 1000px) {
  body #wrapper #topheader #sitelogo {
    position: absolute;
    margin-left: 0;
    height: 11vh;
  }
}
@media (max-width: 790px) {
  body #wrapper #topheader #sitelogo {
    height: 11vh;
    margin-left: 0;
    position: absolute;
  }

  body #wrapper #topheader #menuitems #themenu {
    display: block;
    position: fixed;
    background: #f9adad;
    right: -100vw;
    top: 0;
    width: 70vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 6.5vw;
    padding-bottom: 2rem;
    box-shadow: -1px 2px 9px 3px rgba(0, 0, 0, 0.31);
    transition: right 0.2s;
  }

  body #wrapper #topheader #menuitems #themenu a {
    border: none;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid white;
    margin-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: white;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown, body #wrapper #topheader #menuitems #themenu #doifeeldropdown {
    position: initial;
    display: initial;
    text-align: right;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown #servicebutton, body #wrapper #topheader #menuitems #themenu #servicedropdown #doifeelbutton, body #wrapper #topheader #menuitems #themenu #doifeeldropdown #servicebutton, body #wrapper #topheader #menuitems #themenu #doifeeldropdown #doifeelbutton {
    border-left: none;
    border-bottom: 2px solid white;
    padding-bottom: 0.5rem;
    display: inline-block;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown #dropdowncontent.visible, body #wrapper #topheader #menuitems #themenu #servicedropdown #dropdowncontentdoifeel.visible, body #wrapper #topheader #menuitems #themenu #doifeeldropdown #dropdowncontent.visible, body #wrapper #topheader #menuitems #themenu #doifeeldropdown #dropdowncontentdoifeel.visible {
    display: block;
    position: absolute;
    right: 1rem;
    background: #f6de96;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    min-width: unset;
    box-shadow: unset;
    padding: 1;
    padding-right: 1rem;
    padding-left: 2rem;
    padding-bottom: 2rem;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown #dropdowncontent.visible a, body #wrapper #topheader #menuitems #themenu #servicedropdown #dropdowncontentdoifeel.visible a, body #wrapper #topheader #menuitems #themenu #doifeeldropdown #dropdowncontent.visible a, body #wrapper #topheader #menuitems #themenu #doifeeldropdown #dropdowncontentdoifeel.visible a {
    color: #e65359;
    border-bottom: 2px solid #e65359;
    font-size: 4vw;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown:hover, body #wrapper #topheader #menuitems #themenu #doifeeldropdown:hover {
    cursor: pointer;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown:hover #dropdowncontent, body #wrapper #topheader #menuitems #themenu #servicedropdown:hover #dropdowncontentdoifeel, body #wrapper #topheader #menuitems #themenu #doifeeldropdown:hover #dropdowncontent, body #wrapper #topheader #menuitems #themenu #doifeeldropdown:hover #dropdowncontentdoifeel {
    display: none;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown:hover #dropdowncontent.visible, body #wrapper #topheader #menuitems #themenu #servicedropdown:hover #dropdowncontentdoifeel.visible, body #wrapper #topheader #menuitems #themenu #doifeeldropdown:hover #dropdowncontent.visible, body #wrapper #topheader #menuitems #themenu #doifeeldropdown:hover #dropdowncontentdoifeel.visible {
    display: block;
    position: absolute;
  }

  body #wrapper #topheader #menuitems #themenu :last-child {
    border-bottom: none;
  }

  body #wrapper #topheader #menuitems #hamburger {
    display: initial;
    border-left: none;
    font-size: 1.5rem;
  }

  body #wrapper #topheader #menuitems #closemenu {
    display: initial;
  }

  body #wrapper #topheader #menuitems #themenu:target {
    right: 0;
    overflow-y: scroll;
  }
}
@media (max-width: 1250px) {
  body #wrapper #footer {
    display: flex;
    flex-wrap: wrap;
    padding-left: 1rem;
  }

  body #wrapper #footer .footersection #footerservices {
    position: relative;
  }

  body #wrapper #footer .footersection iframe {
    width: 88vw;
  }
}
@media (max-width: 700px) {
  .onboarding-page .why .card .why-desc {
    font-size: 0.98rem;
    padding: 2.2rem 0.7rem 2.2rem 0.7rem;
    min-height: 220px;
    word-break: break-word;
  }

  .onboarding-page .why .card {
    padding: 0.5rem;
    max-width: 99vw;
  }

  .onboarding-page .why .card h1 {
    font-size: 1.25rem;
    padding: 1.2rem 0.7rem 0.8rem 0.7rem;
  }

  .onboarding-page .hero .ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .onboarding-page .hero .ctas .btn {
    margin: 0 0 0.7rem 0;
  }

  .onboarding-page .hero .ctas .btn:last-child {
    margin-bottom: 0;
  }

  .onboarding-page .plans-cards-section .plans-cards-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  .onboarding-page .plans-cards-section .plan-card-new {
    max-width: 98vw;
    min-width: 0;
    margin: 0.7rem 0;
  }

  .onboarding-page .vertical-timeline-plans .plans-timeline .vtimeline-row .vtimeline-content {
    align-items: center !important;
    text-align: center !important;
    margin: 0 0 1.2rem 0;
    max-width: 98vw;
  }
}
@media (max-width: 1200px) {
  .onboarding-page .plans-cards-section .plans-cards-grid {
    gap: 1.5rem;
  }

  .onboarding-page .plans-cards-section .plan-card-new {
    max-width: 98vw;
    min-width: 220px;
  }
}
@media (max-width: 900px) {
  .renewals .renewal-list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .renewals .renewal-item {
    max-width: 80vw;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .renewals .renewal-item {
    max-width: 80vw;
    min-width: 0;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
}
body,
html {
  position: relative;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.3rem;
  font-family: "OpenDyslexic", sans-serif;
}

body .mytooltip {
  text-decoration: underline;
  text-decoration-style: dotted;
  cursor: help;
}

body #wrapper #topheader {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 80px 80px;
  grid-template-areas: "t" "b";
}

body #wrapper #topheader a {
  text-decoration: none;
  color: #e65359;
  font-weight: bold;
}

body #wrapper #topheader #sitelogo {
  height: 10rem;
  grid-area: t;
  place-self: start start;
  z-index: 5;
  -webkit-box-shadow: 6px 7px 5px -5px rgba(0, 0, 0, 0.27);
  -moz-box-shadow: 6px 7px 5px -5px rgba(0, 0, 0, 0.27);
  box-shadow: 6px 7px 5px -5px rgba(0, 0, 0, 0.27);
}

body #wrapper #topheader #contactrow {
  margin-right: 3rem;
  grid-area: t;
  display: flex;
  align-items: center;
  justify-items: center;
  place-self: center end;
}

body #wrapper #topheader #contactrow * {
  margin-left: 5px;
}

body #wrapper #topheader #contactrow a {
  max-height: 100%;
  display: grid;
}

body #wrapper #topheader #contactrow a img {
  place-self: center center;
  max-height: 100%;
  width: 30px;
}

body #wrapper #topheader #contactrow a .phoneicon {
  display: block;
}

body #wrapper #topheader #contactrow #searchbox input {
  border: 2px solid #e65359;
  height: 30px;
  padding-left: 10px;
}

body #wrapper #topheader #menuitems {
  grid-area: b;
  z-index: 3;
  place-self: center end;
  margin-right: 3rem;
}

body #wrapper #topheader #menuitems #themenu {
  display: flex;
  flex-wrap: wrap;
}

body #wrapper #topheader #menuitems #hamburger {
  display: none;
}

body #wrapper #topheader #menuitems #closemenu {
  display: none;
}

body #wrapper #topheader #menuitems a {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-left: 2px solid #e65359;
}

body #wrapper #topheader #menuitems #servicedropdown {
  position: relative;
  display: inline-block;
}

body #wrapper #topheader #menuitems #servicedropdown #servicebutton {
  border-left: 2px solid #e65359;
}

body #wrapper #topheader #menuitems #servicedropdown #dropdowncontent {
  display: none;
  position: absolute;
  background: #f6de96;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 1rem;
  font-size: 1vw;
  transition: display 0.5s;
}

body #wrapper #topheader #menuitems #servicedropdown #dropdowncontent a {
  border-left: none;
  padding-left: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  margin-top: 0.5rem;
  display: inline-block;
}

body #wrapper #topheader #menuitems #servicedropdown #dropdowncontent a:hover {
  background: rgba(255, 255, 255, 0.294);
}

body #wrapper #topheader #menuitems #servicedropdown:hover #dropdowncontent {
  display: block;
  transition: display 0.5s;
}

body #wrapper #topheader #menuitems #doifeeldropdown {
  position: relative;
  display: inline-block;
}

body #wrapper #topheader #menuitems #doifeeldropdown #doifeelbutton {
  border-left: 2px solid #e65359;
}

body #wrapper #topheader #menuitems #doifeeldropdown #dropdowncontentdoifeel {
  display: none;
  position: absolute;
  background: #f6de96;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 1rem;
  font-size: 1vw;
  transition: display 0.5s;
}

body #wrapper #topheader #menuitems #doifeeldropdown #dropdowncontentdoifeel a {
  border-left: none;
  padding-left: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  margin-top: 0.5rem;
  display: inline-block;
}

body #wrapper #topheader #menuitems #doifeeldropdown #dropdowncontentdoifeel a:hover {
  background: rgba(255, 255, 255, 0.294);
}

body #wrapper #topheader #menuitems #doifeeldropdown:hover #dropdowncontentdoifeel {
  display: block;
  transition: display 0.5s;
}

body #wrapper #topheader #menuitems :first-child {
  border-left: none;
}

body #wrapper #topheader #menuitems :last-child {
  padding-right: 0;
}

body #wrapper #topheader #rainbowdiv {
  grid-area: b;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: url(/static/img/skeleton/rainbow_rect_header.png);
  background-repeat: no-repeat;
  background-size: contain;
}

body #wrapper #topheader #colordiv {
  grid-area: b;
  width: 100%;
  height: 100%;
  background: #f9adad;
  z-index: 1;
}

@media screen and (max-width: 1000px) {
  body #wrapper #topheader #sitelogo {
    position: absolute;
    margin-left: 0;
    height: 11vh;
  }
}
@media screen and (max-width: 1300px) {
  body #wrapper #topheader {
    grid-template-rows: 50px 50px;
  }

  body #wrapper #topheader #contactrow {
    margin-right: 1rem;
    font-size: 1.2rem;
  }

  body #wrapper #topheader #contactrow .site-logo {
    font-size: 2rem;
  }

  body #wrapper #topheader #contactrow a .textnumber {
    display: none;
  }

  body #wrapper #topheader #contactrow a .phoneicon {
    display: block;
  }

  body #wrapper #topheader #menuitems {
    margin-right: 1rem;
    font-size: 1rem;
  }

  body #wrapper #topheader #menuitems a {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media screen and (max-width: 790px) {
  body #wrapper #topheader #sitelogo {
    height: 11vh;
    margin-left: 0;
    position: absolute;
  }

  body #wrapper #topheader #menuitems #themenu {
    display: block;
    position: fixed;
    background: #f9adad;
    right: -100vw;
    top: 0;
    width: 70vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 6.5vw;
    padding-bottom: 2rem;
    -webkit-box-shadow: -1px 2px 9px 3px rgba(0, 0, 0, 0.31);
    -moz-box-shadow: -1px 2px 9px 3px rgba(0, 0, 0, 0.31);
    box-shadow: -1px 2px 9px 3px rgba(0, 0, 0, 0.31);
    transition: right 0.2s;
  }

  body #wrapper #topheader #menuitems #themenu a {
    border: none;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid white;
    margin-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: white;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown {
    position: initial;
    display: initial;
    text-align: right;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown #servicebutton {
    border-left: none;
    border-bottom: 2px solid white;
    padding-bottom: 0.5rem;
    display: inline-block;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown #dropdowncontent.visible {
    display: block;
    position: absolute;
    right: 1rem;
    background: #f6de96;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    min-width: unset;
    box-shadow: unset;
    padding: 1;
    padding-right: 1rem;
    padding-left: 2rem;
    padding-bottom: 2rem;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown #dropdowncontent.visible a {
    color: #e65359;
    border-bottom: 2px solid #e65359;
    font-size: 4vw;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown:hover {
    cursor: pointer;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown:hover #dropdowncontent {
    display: none;
  }

  body #wrapper #topheader #menuitems #themenu #servicedropdown:hover #dropdowncontent.visible {
    display: block;
    position: absolute;
  }

  body #wrapper #topheader #menuitems #themenu #doifeeldropdown {
    position: initial;
    display: initial;
    text-align: right;
  }

  body #wrapper #topheader #menuitems #themenu #doifeeldropdown #doifeelbutton {
    border-left: none;
    border-bottom: 2px solid white;
    padding-bottom: 0.5rem;
    display: inline-block;
  }

  body #wrapper #topheader #menuitems #themenu #doifeeldropdown #dropdowncontentdoifeel.visible {
    display: block;
    position: absolute;
    right: 1rem;
    background: #f6de96;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    min-width: unset;
    box-shadow: unset;
    padding: 1;
    padding-right: 1rem;
    padding-left: 2rem;
    padding-bottom: 2rem;
  }

  body #wrapper #topheader #menuitems #themenu #doifeeldropdown #dropdowncontentdoifeel.visible a {
    color: #e65359;
    border-bottom: 2px solid #e65359;
    font-size: 4vw;
  }

  body #wrapper #topheader #menuitems #themenu #doifeeldropdown:hover {
    cursor: pointer;
  }

  body #wrapper #topheader #menuitems #themenu #doifeeldropdown:hover #dropdowncontentdoifeel {
    display: none;
  }

  body #wrapper #topheader #menuitems #themenu #doifeeldropdown:hover #dropdowncontentdoifeel.visible {
    display: block;
    position: absolute;
  }

  body #wrapper #topheader #menuitems #themenu :last-child {
    border-bottom: none;
  }

  body #wrapper #topheader #menuitems #hamburger {
    display: initial;
    border-left: none;
    font-size: 1.5rem;
  }

  body #wrapper #topheader #menuitems #closemenu {
    display: initial;
  }

  body #wrapper #topheader #menuitems #themenu:target {
    right: 0;
    overflow-y: scroll;
  }
}
@media screen and (max-width: 500px) {
  body #wrapper #topheader #contactrow #searchbox {
    display: none;
  }
}
body #wrapper #footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  padding-left: 3rem;
  padding-bottom: 2rem;
  background-color: #f9adad;
}

body #wrapper #footer .footersection {
  display: flex;
  flex-direction: column;
}

body #wrapper #footer .footersection h4 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 0;
  padding-bottom: 1rem;
  font-family: AttenNew;
  color: #e65359;
}

body #wrapper #footer .footersection a {
  text-decoration: none;
  color: black;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-family: "OpenDyslexic", sans-serif;
  transition: color 0.5s;
}

body #wrapper #footer .footersection a:hover {
  color: #e65359;
  transition: color 0.1s;
}

body #wrapper #footer #footercontacts {
  padding-right: 1rem;
}

body #wrapper #footer #footercontacts a {
  border: 2px solid #e65359;
  border-radius: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  color: #e65359;
  font-weight: bold;
  transition: background 0.5s, color 0.15s;
}

body #wrapper #footer #footercontacts a:hover {
  background: #e65359;
  color: white;
}

@media screen and (max-width: 1250px) {
  body #wrapper #footer {
    display: flex;
    flex-wrap: wrap;
    padding-left: 1rem;
  }

  body #wrapper #footer .footersection {
    top: 0vh;
    right: 0vw;
  }

  body #wrapper #footer .footersection #footerservices {
    position: relative;
  }

  body #wrapper #footer .footersection iframe {
    width: 88vw;
  }
}
body #wrapper #footerservices {
  position: relative;
  margin-right: 4rem;
}

@font-face {
  font-family: AttenNew;
  src: url("/static/fonts/AttenNewRegular.otf") format("opentype");
}
@font-face {
  font-family: AttenNew;
  font-weight: bold;
  src: url("/static/fonts/AttenNewExtraBold.otf") format("opentype");
}
@font-face {
  font-family: OpenDyslexic;
  src: url("/static/fonts/OpenDyslexic-Regular.otf") format("opentype");
}
@font-face {
  font-family: OpenDyslexic;
  font-weight: bold;
  src: url("/static/fonts/OpenDyslexic-Bold.otf") format("opentype");
}
@font-face {
  font-family: OpenDyslexic;
  font-style: italic;
  src: url("/static/fonts/OpenDyslexic-Italic.otf") format("opentype");
}
@font-face {
  font-family: OpenDyslexic;
  font-style: italic;
  font-weight: bold;
  src: url("/static/fonts/OpenDyslexic-BoldItalic.otf") format("opentype");
}
.onboarding-page {
  font-family: "OpenDyslexic", "Poppins", AttenNew, sans-serif;
  color: #022211;
}

.onboarding-page .hero {
  background: #7a2476;
  text-align: center;
  padding: 4rem 2rem;
}

.onboarding-page .hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.onboarding-page .hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.onboarding-page .hero .ctas .btn {
  margin: 0 0.5rem;
}

.onboarding-page .hero .ctas .btn-primary {
  background: #c43454;
  color: #fff;
}

.onboarding-page .hero .ctas .btn-secondary {
  background: #f6de96;
  color: #fff;
}

.onboarding-page .why {
  background: #ffffff;
  text-align: center;
  padding: 3rem 2rem;
}

.onboarding-page .why .card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f5f5f5;
  border-radius: 1.2rem;
  box-shadow: 1 8px 32px rgba(31, 38, 135, 0.13);
  max-width: 520px;
  min-width: 240px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.onboarding-page .why .card h1 {
  width: 100%;
  background: #eaeaea;
  margin: 0;
  padding: 2rem 1.5rem 1.2rem 1.5rem;
  font-weight: bold;
  color: #222;
  text-align: center;
  letter-spacing: 0.01em;
  border-radius: 1.2rem 1.2rem 0 0;
  z-index: 2;
  position: relative;
  font-family: "OpenDyslexic", "Poppins", AttenNew, sans-serif;
}

.onboarding-page .why .card .why-desc {
  width: 100%;
  height: 300px;
  background-color: #16b1e4;
  color: #222;
  font-family: "OpenDyslexic", "Poppins", AttenNew, sans-serif;
  font-weight: 600;
  text-align: center;
  padding: 4rem 1.2rem 2.8rem 1.2rem;
  margin: 0;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
  border-radius: 0 0 1.2rem 1.2rem;
  box-sizing: border-box;
  /* Add space for the wave */
}

.onboarding-page .why .card .why-desc strong {
  color: #222;
  font-weight: bold;
}

.onboarding-page .why .card .why-desc::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  width: 100%;
  /* background: url('data:image/svg+xml;utf8,<svg width="100%" height="60" viewBox="0 0 340 60" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 20 Q85 60 170 20 T340 20 V60 H0 V20 Z" fill="white" fill-opacity="0.25"/></svg>'); */
  background-repeat: no-repeat;
  background-size: 100% 60px;
  z-index: 3;
  pointer-events: none;
}

.onboarding-page .why .card .why-bottom-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  padding: 0 2.2rem 1.1rem 2.2rem;
  box-sizing: border-box;
  pointer-events: none;
}

.onboarding-page .why .card .why-bottom-label {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 0.2rem;
  padding-top: 1em;
  min-width: 60px;
  text-align: center;
  opacity: 0.92;
  background: none;
  pointer-events: auto;
}

.onboarding-page .timeline {
  padding: 3rem 2rem;
}

.onboarding-page .timeline .timeline-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  gap: 0;
}

.onboarding-page .timeline .timeline-stepper .stepper-item {
  display: flex;
  align-items: center;
  position: relative;
}

.onboarding-page .timeline .timeline-stepper .stepper-item .stepper-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #7a2476;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #7a2476;
  font-weight: 600;
  position: relative;
  z-index: 2;
  transition: background 0.3s, border 0.3s, color 0.3s;
}

.onboarding-page .timeline .timeline-stepper .stepper-item.active .stepper-circle {
  background: #7a2476;
  color: #fff;
  border-color: #7a2476;
}

.onboarding-page .timeline .timeline-stepper .stepper-item.completed .stepper-circle {
  background: #fff;
  color: #7a2476;
  border-color: #7a2476;
}

.onboarding-page .timeline .timeline-stepper .stepper-item.completed .stepper-circle::before {
  content: "✔";
  color: #7a2476;
  font-size: 1.3rem;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.onboarding-page .timeline .timeline-stepper .stepper-item.completed .stepper-number {
  opacity: 0;
}

.onboarding-page .timeline .timeline-stepper .stepper-item .stepper-number {
  z-index: 2;
  transition: opacity 0.2s;
}

.onboarding-page .timeline .timeline-stepper .stepper-item .stepper-line {
  width: 48px;
  height: 2px;
  background: #7a2476;
  margin: 0 0.2rem;
  z-index: 1;
}

.onboarding-page .timeline .timeline-step-content {
  max-width: 500px;
  margin: 0 auto;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel {
  display: none;
  text-align: center;
  animation: fadeInStep 0.4s;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #c43454;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel .next-step-btn,
.onboarding-page .timeline .timeline-step-content .timeline-step-panel .prev-step-btn {
  background: #7a2476;
  color: #fff;
  border: none;
  padding: 0.6rem 1.6rem;
  border-radius: 0.4rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel .next-step-btn:hover,
.onboarding-page .timeline .timeline-step-content .timeline-step-panel .prev-step-btn:hover {
  background: #c43454;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel .prev-step-btn {
  background: #33477a;
  color: #203431;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel .prev-step-btn:hover {
  background: #c43454;
  color: #fff;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel.active {
  display: block;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.onboarding-page .plans {
  background: rgb(254, 252, 244);
  padding: 3rem 2rem;
}

.onboarding-page .plans .plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.onboarding-page .plans .plan-card {
  perspective: 1000px;
}

.onboarding-page .plans .plan-card .card-inner {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.onboarding-page .plans .plan-card.combo .card-front {
  border: 3px solid #c43454;
}

.onboarding-page .plans .plan-card:hover .card-inner {
  transform: rotateY(180deg);
}

.onboarding-page .plans .plan-card .card-front,
.onboarding-page .plans .plan-card .card-back {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.onboarding-page .plans .plan-card .card-front {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.onboarding-page .plans .plan-card .card-front h3 {
  margin-bottom: 0.5rem;
}

.onboarding-page .plans .plan-card .card-front .price {
  font-size: 1.2rem;
  color: #022211;
}

.onboarding-page .plans .plan-card .card-back {
  background: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
}

.onboarding-page .plans .plan-card .card-back ul.features {
  flex-grow: 1;
  list-style: disc inside;
  margin: 0;
  padding: 0;
}

.onboarding-page .plans .plan-card .card-back .prereq {
  font-style: italic;
  margin: 0.5rem 0;
}

.onboarding-page .plans .plan-card .card-back .book-btn {
  background: #c43454;
  color: #fff;
  border: none;
  padding: 0.5rem;
  border-radius: 0.3rem;
  cursor: pointer;
  align-self: center;
}

.onboarding-page .aftercare {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

.onboarding-page .aftercare p {
  max-width: 600px;
  margin: auto;
}

@media (max-width: 700px) {
  .onboarding-page .vertical-timeline-plans .plans-timeline .vtimeline-row .vtimeline-content {
    align-items: center !important;
    text-align: center !important;
    margin: 0 0 1.2rem 0;
    max-width: 98vw;
  }
}
.onboarding-page .plans-cards-section {
  background: #fff;
  padding: 3rem 2rem;
  font-family: "OpenDyslexic", "Poppins", AttenNew, sans-serif;
}

.onboarding-page .plans-cards-section .plans-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  margin-top: 2.5rem;
  width: 100%;
}

.onboarding-page .plans-cards-section .plan-card-new {
  margin: 1.5rem;
  flex: 1 1 320px;
  max-width: 340px;
  min-width: 260px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.25s, transform 0.25s;
  animation: cardFadeIn 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  will-change: transform, box-shadow;
  background: #f8b7bb !important;
  /* border: 2px solid #f0056b; */
  border-radius: 1.2rem;
}

.onboarding-page .plans-cards-section .plan-card-new:hover {
  box-shadow: 0 16px 40px rgba(31, 38, 135, 0.18);
  transform: translateY(-8px) scale(1.03);
}

.onboarding-page .plans-cards-section .plan-card-new .plan-sticky-note {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  width: 70px;
  height: 60px;
  border-radius: 0.4rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
  font-family: "Poppins", "OpenDyslexic", AttenNew, sans-serif;
  animation: stickyNoteDrop 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.onboarding-page .plans-cards-section .plan-card-new .plan-sticky-note .plan-sticky-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-top: 12px;
  margin-bottom: 0;
  letter-spacing: 1px;
  display: block;
  width: 100%;
  text-align: center;
  user-select: none;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-sticky-note .plan-paperclip {
  position: absolute;
  top: 0px;
  left: 10px;
  width: 28px;
  height: 28px;
  background: none;
  z-index: 3;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-sticky-note .plan-paperclip::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url('data:image/svg+xml;utf8,<svg width="28" height="28" xmlns="http://www.w3.org/2000/svg"><path d="M7 14c0-4 6-8 10-4l4 4c4 4-2 10-6 6l-6-6" fill="none" stroke="black" stroke-width="2.2" stroke-linecap="round"/></svg>') no-repeat center center;
  background-size: contain;
}

.onboarding-page .plans-cards-section .plan-card-new.plan-card-1 .plan-sticky-note {
  background: #2daae2 !important;
}

.onboarding-page .plans-cards-section .plan-card-new.plan-card-2 .plan-sticky-note {
  background: #cdd629 !important;
}

.onboarding-page .plans-cards-section .plan-card-new.plan-card-3 .plan-sticky-note {
  background: #c43454 !important;
}

.onboarding-page .plans-cards-section .plan-card-new.plan-card-4 .plan-sticky-note {
  background: #33477a !important;
}

.onboarding-page .plans-cards-section .plan-card-new.plan-card-5 .plan-sticky-note {
  background: #fee668 !important;
}

.onboarding-page .plans-cards-section .plan-card-new.plan-card-6 .plan-sticky-note {
  background: #318257 !important;
}

.onboarding-page .plans-cards-section .plan-card-new.plan-card-7 .plan-sticky-note {
  background: #7a2476 !important;
}

.onboarding-page .plans-cards-section .plan-card-new.plan-card-8 .plan-sticky-note {
  background: #f37826 !important;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-card-content {
  margin-top: 2.7rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "OpenDyslexic", "Poppins", AttenNew, sans-serif;
  padding: 1.2rem 0.7rem 1.2rem 0.7rem;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .plan-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #33477a;
  margin-bottom: 0.3rem;
  text-align: center;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .plan-card-price {
  font-size: 1.08rem;
  font-weight: 600;
  color: #16b1e4;
  background: #eaf7fd;
  border-radius: 1rem;
  padding: 0.2rem 1rem;
  margin-bottom: 0.7rem;
  text-align: center;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .plan-card-features {
  list-style: disc inside;
  padding: 0;
  margin: 0 0 0.7rem 0;
  width: 100%;
  color: #444;
  font-size: 1.01rem;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .plan-card-features h5 {
  line-height: 1.6;
  margin-bottom: -10px !important;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .plan-card-prereq {
  font-style: italic;
  color: #024e26;
  font-size: 0.99rem;
  margin-bottom: 0.7rem;
  text-align: center;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .book-btn {
  display: inline-block;
  padding: 0.6em 1.5em;
  background: #16b1e4;
  color: #fff;
  border-radius: 2em;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.7rem;
  font-family: "OpenDyslexic", "Poppins", AttenNew, sans-serif;
  transition: background 0.22s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.2s, transform 0.2s, color 0.18s cubic-bezier(0.4, 0.2, 0.2, 1);
  box-shadow: 0 4px 18px rgba(31, 38, 135, 0.1);
  min-width: 140px;
  min-height: 48px;
  letter-spacing: 0.04em;
  outline: none;
  will-change: transform, box-shadow, background, color;
  position: relative;
  overflow: hidden;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .book-btn:hover,
.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .book-btn:focus {
  background: #7a2476;
  color: #fff;
  box-shadow: 0 8px 32px rgba(122, 36, 118, 0.18);
  transform: translateY(-2px) scale(1.045);
  filter: brightness(1.08);
}

@media (max-width: 1200px) {
  .onboarding-page .plans-cards-section .plans-cards-grid {
    gap: 1.5rem;
  }

  .onboarding-page .plans-cards-section .plan-card-new {
    max-width: 98vw;
    min-width: 220px;
  }
}
@media (max-width: 700px) {
  .onboarding-page .hero .ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .onboarding-page .hero .ctas .btn {
    margin: 0 0 0.7rem 0;
  }

  .onboarding-page .hero .ctas .btn:last-child {
    margin-bottom: 0;
  }
}
@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Modern pill-style button inspired by the attached image */
.onboarding-page .btn,
.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .book-btn,
.onboarding-page .timeline .timeline-step-content .timeline-step-panel .next-step-btn,
.onboarding-page .timeline .timeline-step-content .timeline-step-panel .prev-step-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 48px;
  padding: 0.7em 2.2em;
  border-radius: 2em;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  outline: none;
  box-shadow: 0 4px 18px rgba(31, 38, 135, 0.1);
  background: linear-gradient(90deg, #ffc600 0%, #ff9800 100%);
  color: #fff;
  cursor: pointer;
  transition: background 0.22s cubic-bezier(0.4, 0.2, 0.2, 1), color 0.18s cubic-bezier(0.4, 0.2, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0.2, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0.2, 0.2, 1);
  will-change: transform, box-shadow, background, color;
  position: relative;
  overflow: hidden;
}

.onboarding-page .btn.btn-primary {
  background: linear-gradient(90deg, #ffc600 0%, #ff9800 100%);
  color: #fff;
}

.onboarding-page .btn.btn-secondary {
  background: linear-gradient(90deg, #ff9800 0%, #ffc600 100%);
  color: #fff;
}

.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .book-btn {
  background: linear-gradient(90deg, #ff9800 0%, #ff3d00 100%);
  color: #fff;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel .next-step-btn {
  background: #33477a;
  color: #fff;
}

.onboarding-page .timeline .timeline-step-content .timeline-step-panel .prev-step-btn {
  background: #318257;
  color: #fff;
}

.onboarding-page .btn:hover,
.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .book-btn:hover,
.onboarding-page .timeline .timeline-step-content .timeline-step-panel .next-step-btn:hover,
.onboarding-page .timeline .timeline-step-content .timeline-step-panel .prev-step-btn:hover {
  box-shadow: 0 8px 32px rgba(255, 152, 0, 0.18);
  transform: translateY(-2px) scale(1.045);
  filter: brightness(1.08);
  background-position: right center;
}

.onboarding-page .btn:active,
.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .book-btn:active,
.onboarding-page .timeline .timeline-step-content .timeline-step-panel .next-step-btn:active,
.onboarding-page .timeline .timeline-step-content .timeline-step-panel .prev-step-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(255, 152, 0, 0.1);
}

.onboarding-page .btn .btn-icon,
.onboarding-page .plans-cards-section .plan-card-new .plan-card-content .book-btn .btn-icon,
.onboarding-page .timeline .timeline-step-content .timeline-step-panel .next-step-btn .btn-icon,
.onboarding-page .timeline .timeline-step-content .timeline-step-panel .prev-step-btn .btn-icon {
  margin-right: 0.7em;
  font-size: 1.3em;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
}

/* Renewals section: simple animated cards like the image, no icons */
.renewals {
  padding: 40px 0 !important;
}

.renewals .renewal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 2.5rem;
}

.renewals .renewal-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px 0 rgba(31, 38, 135, 0.1);
  border: none;
  min-width: 220px;
  max-width: 340px;
  width: 100%;
  padding: 2.2rem 1.5rem 2.2rem 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.22s, transform 0.22s;
  animation: cardFadeInRenewal 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  will-change: transform, box-shadow;
  position: relative;
}

.renewals .renewal-item:hover {
  box-shadow: 0 16px 40px rgba(31, 38, 135, 0.15);
  transform: translateY(-8px) scale(1.03);
}

.renewals .renewal-header,
.renewals .renewal-price,
.renewals .renewal-detail {
  font-family: "OpenDyslexic", "Poppins", AttenNew, sans-serif !important;
}

.renewals .renewal-header {
  font-size: 1.18rem;
  font-weight: 700;
  color: #1a237e;
  text-align: center;
  margin-bottom: 0.7rem;
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
  font-family: "Poppins", "OpenDyslexic", AttenNew, sans-serif;
}

.renewals .renewal-price {
  font-size: 1.08rem;
  font-weight: 600;
  color: #f6de96;
  background: #1976d2;
  border-radius: 1rem;
  padding: 0.4rem 1.2rem;
  margin-bottom: 0.7rem;
  text-align: center;
  display: inline-block;
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.1);
  transition: background 0.18s;
}

.renewals .renewal-item:hover .renewal-price {
  background: #0d47a1;
}

.renewals .renewal-detail {
  color: #444;
  font-size: 1.01rem;
  padding: 0 0.2rem;
  border-radius: 0 0 1.5rem 1.5rem;
  margin-top: 0.5rem;
  text-align: center;
  min-height: 60px;
  display: block;
  background: none;
  transition: color 0.18s;
}

@media (max-width: 900px) {
  .renewals .renewal-list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .renewals .renewal-item {
    max-width: 80vw;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .renewals .renewal-item {
    max-width: 80vw;
    min-width: 0;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
}
@keyframes cardFadeInRenewal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.book-plan-btn {
  border-radius: 40px;
  border: none;
  background-color: #ec1763;
  color: #fff;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 5px;
  font-size: 1rem;
  cursor: pointer;
  font-family: "OpenDyslexic", "Poppins", AttenNew, sans-serif !important;
}

.book-plan-btn:hover {
  background-color: #f64d59;
  transition: background-color 0.3s ease;
}

.onboarding-page .why .card .why-desc {
  min-height: 300px;
}

@media (max-width: 700px) {
  .onboarding-page .why .card .why-desc {
    font-size: 0.98rem;
    padding: 2.2rem 0.7rem 2.2rem 0.7rem;
    min-height: 220px;
    word-break: break-word;
  }

  .onboarding-page .why .card {
    padding: 0.5rem;
    max-width: 99vw;
  }

  .onboarding-page .why .card h1 {
    font-size: 1.25rem;
    padding: 1.2rem 0.7rem 0.8rem 0.7rem;
  }
}
/*# sourceMappingURL=onboarding_plan.css.map */

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