/* ====== FONTS ====== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --clr--indigo: 54, 17, 105; /* #361169 */
  --clr--lavender: 83, 32, 147; /* #532093 */
  --clr--purple: 146, 84, 214; /* #9254D6 */
  --clr--tangerine: 240, 151, 56; /* #F09738 */
  --clr--apricot: 247, 203, 138; /* #F7CB8A */
  --clr--black: 0, 0, 0; /* #000000 */
  --clr--anti--flash--white: 241, 241, 241; /* #F1F1F1 */
  --clr--white: 255, 255, 255; /* #ffffff */

  --fnt--open--sans: "Open Sans", sans-serif;
}

/* ====== SCROLL ====== */
::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}

::-webkit-scrollbar-track {
  background: rgba(var(--clr--anti--flash--white), .1);
  box-shadow: inset 2px 2px 3px rgba(rgb(var(--clr--purple)), 0.4);
}

::-webkit-scrollbar-thumb {
  background: rgb(var(--clr--tangerine));
  background: linear-gradient(0deg,rgba(var(--clr--tangerine), 1) 0%, rgba(var(--clr--purple), 1) 100%);
  box-shadow: inset 0px 0px 8px rgba(var(--clr--purple), 0.4);
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}

html,
body {
  color: rgb(var(--clr--indigo));
  font-size: clamp(16px, 1vw, 22px);;
  font-weight: 400;
  font-family: var(--fnt--open--sans);
  line-height: 1.2;
  background: rgb(var(--clr--white));
  padding: 0 !important;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 5px 0;
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: clamp(32px, 3vw, 82px);
}

h2 {
  font-size: clamp(24px, 1.8vw, 36px);
}

h3 {
  font-size: clamp(17px, 1vw, 32px);
}

h4 {
  font-size: clamp(17px, 1vw, 27px);
}

h5 {
  font-size: clamp(17px, 0.9vw, 23px);
}

h6 {
  line-height: 1.3;
}

p {
  font-size: clamp(16px, 1vw, 24px);
  line-height: 1.5;
}

p:nth-last-of-type(1) {
  margin-bottom: 0;
}

p:has(+ ul),
p:has(+ ol) {
  margin-bottom: .6rem !important;
}

ul, ol {
  font-size: clamp(16px, 1vw, 24px);
  line-height: 1.4;
  /* padding: 0; */
  /* margin: 0; */
}

.small,
small {
  display: inline-block;
  font-weight: 400;
  line-height: 1.2;
  font-size: 14px !important;
}

a {
  color: currentColor;
}

.desktop {
  display: block !important;
}

.mobile {
  display: none !important;
}

img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  max-width: 100%;
  position: relative;
}

img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(var(--clr--anti--flash--white));
  border: 2px dashed rgb(176, 176, 176);
}

section {
  position: relative;
  overflow: hidden;
}

.section-row {
  padding-block: 75px;
  position: relative;
}

.titles {
  margin-bottom: 1.75rem;
}

.titles > h1,
.titles > h2 {
  font-size: clamp(32px, 3.3vw, 72px);
  line-height: 1.1;
  font-weight: 400;
  text-align: center;
}

.titles__sub-heading {
  font-size: clamp(16px, 1.3vw, 36px);
  text-transform: unset;
  max-width: 700px;
}

.title-header {
  text-align: center;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.fw100 {
  font-weight: 100;
}

.fw300 {
  font-weight: 300;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700,
strong {
  font-weight: 700;
}

.fw900 {
  font-weight: 900;
}

.ls {
  letter-spacing: 1.5px;
}

.italic {
  font-style: italic;
}

.fnt--open--sans {
  font-family: var(--fnt--open--sans);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ====== COLORS ====== */
.clr--indigo {
  color: rgb(var(--clr--indigo)) !important;
}

.clr--lavender {
  color: rgb(var(--clr--lavender)) !important;
}

.clr--purple {
  color: rgb(var(--clr--purple)) !important;
}

.clr--tangerine {
  color: rgb(var(--clr--tangerine)) !important;
}

.clr--apricot {
  color: rgb(var(--clr--apricot)) !important;
}

.clr--black {
  color: rgb(var(--clr--black)) !important;
}

.clr--anti--flash--white {
  color: rgb(var(--clr--anti--flash--white)) !important;
}

.clr--white {
  color: rgb(var(--clr--white)) !important;
}

.bgclr--indigo {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--indigo));
}

.bgclr--lavender {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--lavender));
}

.bgclr--purple {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--purple));
}

.bgclr--tangerine {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--tangerine));
}

.bgclr--apricot {
  color: rgb(var(--clr--black));
  background-color: rgb(var(--clr--apricot));
}

.bgclr--black {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--black));
}

.bgclr--anti--flash--white {
  color: rgb(var(--clr--black));
  background-color: rgb(var(--clr--anti--flash--white));
}

.bgclr--white {
  color: rgb(var(--clr--black));
  background-color: rgb(var(--clr--white));
}

/* Input Fields */
.form-control {
  color: rgb(var(--clr--black));
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  min-height: 30px;
  padding: 10px;
  background-color: rgb(var(--clr--white));
  border: 1px solid rgb(var(--clr--purple));
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: 0px 0px 2px 4px rgba(var(--clr--black), 0.05) inset;
}

textarea.form-control {
  min-height: 150px;
  box-shadow: 0px 0px 2px 4px rgba(var(--clr--black), 0.05) inset;
}

.form-control[type=radio] {
  width: 25px;
  height: 25px;
  min-height: unset;
  padding: unset;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.form-control:disabled {
  background-color: rgb(var(--clr--white), .2);
  opacity: .6;
}

.form-control:focus {
  color: rgb(var(--clr--black));
  background-color: rgb(var(--clr--white));
  border: 1px solid rgb(var(--clr--tangerine));
  outline: 0;
  box-shadow: none;
  transition: ease-in .3s;
  -webkit-transition: ease-in .3s;
  -moz-transition: ease-in .3s;
  -ms-transition: ease-in .3s;
  -o-transition: ease-in .3s;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid rgb(var(--clr--tangerine));
  -webkit-text-fill-color: var(--clr--black);
  box-shadow: 0 0 0px 1000px rgba(var(--clr--black), 0.1) inset;
  -webkit-box-shadow: 0 0 0px 1000px rgba(var(--clr--black), 0.1) inset;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  -moz-transition: background-color 5000s ease-in-out 0s;
  -ms-transition: background-color 5000s ease-in-out 0s;
  -o-transition: background-color 5000s ease-in-out 0s;
}

.invalid-feedback {
  color: rgb(var(--clr--white));
  font-size: 13px;
  text-align: center;
  background-color: rgb(220, 53, 69);
  padding: 5px 10px;
}

/* ====== BUTTONS ====== */
.btn {
  font-size: clamp(16px, 1vw, 24px);
  font-weight: 700 !important;
  color: rgb(var(--clr--indigo));
  line-height: 1.1;
  transition: ease-in .4s;
  -webkit-transition: ease-in .4s;
  -moz-transition: ease-in .4s;
  -ms-transition: ease-in .4s;
  -o-transition: ease-in .4s;
  width: fit-content;
  min-width: 200px;
  padding: 10px 30px !important;
  margin: 0 auto;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.btn:hover,
a:hover {
  text-decoration: none;
}

.btn-large {
  font-size: clamp(18px, 1.4vw, 41px);
  padding: 18px 60px !important;
  position: relative;
  z-index: 9;
}

.primary--btn {
  background-color: rgb(var(--clr--tangerine));
  border: 2px solid rgb(var(--clr--tangerine));
}

.primary--btn:hover,
.primary--btn:active,
.primary--btn:focus-visible {
  color: rgb(var(--clr--white)) !important;
  background-color: rgb(var(--clr--indigo)) !important;
  border: 2px solid rgb(var(--clr--indigo)) !important;
}

.primary--btn.disabled {
  background-color: rgba(var(--clr--tangerine), 0.6);
  border-color: rgba(var(--clr--tangerine), 0.6);
  cursor: not-allowed;
}

/* Grid laout */
.grid-two,
.grid-three,
.grid-four,
.grid-five {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}

.grid-two > * {
  width: calc((100% / 2) - 18px);
}

.grid-three > * {
  width: calc((100% / 3) - 24px);
}

.grid-four > * {
  width: calc((100% / 4) - 27px);
}

.grid-five > * {
  width: calc((100% / 5) - 28px);
}

/* OWL CAROUSEL */
.owl-loaded {
  width: 100%;
  position: relative;
}

.owl-stage-outer {
  overflow: hidden;
}

.owl-stage {
  display: flex;
}

.owl-item {
  padding: 50px 0 0;
  vertical-align: top;
  display: flex;
  justify-content: center;
}

.owl-nav {
  width: 100%;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  font-size: 36px;
  color: rgb(var(--clr--indigo));
  font-weight: 700;
  background-color: transparent;
  border: 0;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.owl-nav button.owl-prev {
  left: -50px;
}

.owl-nav button.owl-next {
  right: -50px;
}

.owl-dots {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.owl-dots button.owl-dot {
  width: 15px;
  aspect-ratio: 1 / 1;
  background: rgb(var(--clr--white));
  border: 3px solid rgb(var(--clr--lavender));
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.owl-dots button.owl-dot.active {
  background: rgba(var(--clr--lavender), .3);
}

.owl-loaded .disabled {
  display: none;
}

/* ====== HEADER ====== */
.header {
  width: 100%;
  background-color: rgb(var(--clr--indigo));
  padding: 10px 0;
  box-shadow: 0 3px 6px rgba(var(--clr--black), 0.05);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.header__fixed-header {
  background-color: rgb(var(--clr--indigo));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.header__inner-header {
  background-color: rgb(var(--clr--apricot));
}

.header__logo {
  max-width: 110px;
  padding: 0;
  line-height: 1;
  position: relative;
  transition: all 0.9s ease;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
}

.header__fixed-header .header__logo {
  max-width: 85px;
  padding: 0;
  transition: all 0.9s ease;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
}

.header__logo img {
  width: 100%;
  height: auto;
  position: relative;
}

/* ====== NAVIGATION ====== */
.header__navbar_collapse {
  justify-content: flex-end;
}

.header__navbar {
  justify-content: space-between;
  align-items: center;
}

.header__navbar--container {
  display: flex;
}

ul#header__navbar_menu,
ul#header__navbar_button {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__navbar_collapse.collapsing {
  height: unset !important;
}

.menu-item {
  padding: 0;
  background: transparent;
  position: relative;
}

.menu-item a {
  color: rgb(var(--clr--white));
  font-family: var(--fnt--open--sans);
  font-size: clamp(16px, 1.1vw, 22px);
  line-height: 1;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
}

.menu-item.menu-item-has-children a {
  padding: 10px 35px 10px 20px;
}

.header__inner-header .menu-item a {
  color: rgb(var(--clr--indigo));
}

.menu-item.menu-item-has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;
  color: rgb(var(--clr--white));
  position: absolute;
  right: 15px;
  top: 14px;
}

.header__inner-header .menu-item.menu-item-has-children > a::after {
  color: rgb(var(--clr--lavender));
}

.menu-item.current-menu-parent > a,
.menu-item.current-menu-item a,
.menu-item:hover a {
  color: rgb(var(--clr--white));
  text-decoration: underline;
  text-underline-offset: 3px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(var(--clr--white));
  text-decoration-thickness: 2px;
}

.header__inner-header .menu-item.current-menu-parent > a,
.header__inner-header .menu-item.current-menu-item a,
.header__inner-header .menu-item:hover a {
  color: rgb(var(--clr--indigo));
  -webkit-text-stroke-color: rgb(var(--clr--indigo));
}

.menu-item.current-menu-parent > a::after,
.menu-item.current-menu-item.menu-item-has-children > a::after,
.menu-item.menu-item-has-children:hover > a::after {
  color: rgb(var(--clr--white));
}

li.menu-item ul.sub-menu {
  width: 250px;
  padding: 5px;
  margin: 0;
  list-style: none;
  background: rgb(var(--clr--purple));
  border: none;
  position: absolute;
  z-index: 9;
  display: none;
  box-shadow: 0 2px 10px rgba(var(--clr--black), 0.2);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

li.menu-item:hover ul.sub-menu {
  display: block;
}

li.menu-item ul.sub-menu li a {
  color: rgb(var(--clr--white)) !important;
  font-size: 15px;
  font-weight: 600;
  text-underline-offset: 30px;
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: transparent;
  text-decoration: none;
  padding: 5px 15px;
  display: block;
}

li.menu-item ul.sub-menu li a:hover {
  color: rgb(var(--clr--white));
  background-color: rgb(var(--clr--lavender));
}

.nav-btn a {
  color: rgb(var(--clr--white)) !important;
  text-decoration: none;
  background-color: rgb(var(--clr--tangerine));
  padding: 12px 35px !important;
  margin-left: 15px;
  border: 2px solid rgb(var(--clr--tangerine));
  text-decoration: none !important;
  transition: ease-in .4s;
  -webkit-transition: ease-in .4s;
  -moz-transition: ease-in .4s;
  -ms-transition: ease-in .4s;
  -o-transition: ease-in .4s;
}

.nav-btn a:hover {
  background-color: rgb(var(--clr--lavender));
  border: 2px solid rgb(var(--clr--lavender));
  text-decoration: none !important;
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: rgb(var(--clr--white));
}

.nav-btn iframe {
  margin-left: 15px;
}

.header__navbar_toggler {
  width: calc(100% - 180px);
  padding: 13.5px 20px;
  border: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header__navbar_toggler:focus {
  box-shadow: unset;
}

.header__navbar_icon {
  background-color: rgb(var(--clr--white));
  width: 32px;
  height: 3px;
  margin: 4px 0;
  display: block;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.header__inner-header .header__navbar_icon {
  background-color: rgb(var(--clr--lavender));
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(1),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(1) {
  transform: rotate(45deg) translate(10px, 10px);
  -webkit-transform: rotate(45deg) translate(10px, 10px);
  -moz-transform: rotate(45deg) translate(10px, 10px);
  -ms-transform: rotate(45deg) translate(10px, 10px);
  -o-transform: rotate(45deg) translate(10px, 10px);
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(2),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(2) {
  opacity: 0;
}

.header__navbar .header__navbar_toggler[aria-expanded="true"] .header__navbar_icon:nth-of-type(3),
button.header__navbar_toggler.button-toggled .header__navbar_icon:nth-of-type(3) {
  transform: rotate(-45deg) translate(5px, -6px);
  -webkit-transform: rotate(-45deg) translate(5px, -6px);
  -moz-transform: rotate(-45deg) translate(5px, -6px);
  -ms-transform: rotate(-45deg) translate(5px, -6px);
  -o-transform: rotate(-45deg) translate(5px, -6px);
}

.header__navbar .header__navbar_toggler.collapsed .header__navbar_icon {
  opacity: 1 !important;
  transform: rotate(0deg) translate(0px, 0px) !important;
  -webkit-transform: rotate(0deg) translate(0px, 0px) !important;
  -moz-transform: rotate(0deg) translate(0px, 0px) !important;
  -ms-transform: rotate(0deg) translate(0px, 0px) !important;
  -o-transform: rotate(0deg) translate(0px, 0px) !important;
}

/* ====== Inner Header ====== */
.inner-header {
  background-color: rgb(var(--clr--apricot));
}

.inner-header__wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
}

.inner-header__wrapper_title {
  width: 60%;
}

.inner-header__wrapper_heading {
  text-align: left !important;
  padding-block: 2rem;
}

.inner-header__wrapper_sub-heading {
  font-size: 18px;
  font-weight: 500;
  text-align: right;
  position: relative;
  z-index: 9;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
}

.inner-header__wrapper_image {
  width: 40%;
  height: 360px;
}

.inner-header__wrapper_image-thumbnail {
  width: 40vw;
  max-width: 800px;
  position: absolute;
  bottom: 0;
  right: -50px;
}

/* ====== Hero ====== */
.gutter-top {
  padding-top: 90px;
}

.hero-banner {
  background: url("/wp-content/uploads/2026/01/hero-background-lg.png") no-repeat 100% 100% / cover;
}

.hero-banner__banner_content_title {
  color: rgb(var(--clr--white));
  text-align: left !important;
  margin-bottom: 35px;
}

.hero-banner__banner_content_title strong {
  font-weight: 700;
}

.hero-banner__banner_content .titles__sub-heading {
  color: rgb(var(--clr--white));
}

.hero-banner__banner {
  display: flex;
}

.hero-banner__banner_content {
  width: 50%;
  padding: 25px 0 25px calc(50vw - 650px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 9;
  justify-content: center;
}

.hero-banner__banner_content > * {
  max-width: 600px;
}

.hero-banner__banner_content_title {
  text-align: left !important;
  text-wrap: balance;
}

.hero-banner__banner_image {
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  z-index: 8;
}

.hero-banner__banner_image img {
  height: 580px;
  object-fit: cover;
  object-position: left;
}

/* ====== Daycare Program ====== */
.daycare-program {
  background-color: rgb(var(--clr--black));
}

.daycare-program__wrapper {
  color: rgb(var(--clr--white));
  text-align: center;
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  background: url("/wp-content/uploads/2026/01/daycare-program-icons.svg") no-repeat 50% 0;
}

.daycare-program__wrapper_highlighted-text {
  margin-top: 1rem;
}

.daycare-program__wrapper_highlighted-text p {
  color: rgb(var(--clr--tangerine));
  font-weight: 700;
  line-height: 2;
  max-width: fit-content;
  margin: 0 auto;
}

.daycare-program__wrapper_highlighted-text_underline {
  position: relative;
}

.daycare-program__wrapper_highlighted-text_underline:before {
  content: "";
  width: calc(100% + 20px);
  height: 30px;
  background: url("/wp-content/uploads/2026/01/text-underline.svg") no-repeat 0 100% / contain;
  position: absolute;
  left: -20px;
  bottom: -25px;
}

/* ====== Profound Developmental Delays ====== */
.profound-developmental {
  background-color: rgb(var(--clr--anti--flash--white));
}

.profound-developmental__wrapper_highlighted-text_underline {
  font-weight: 700;
  position: relative;
}

.profound-developmental__wrapper_highlighted-text_underline:before {
  content: "";
  width: 100%;
  height: 30px;
  background: url("/wp-content/uploads/2026/01/text-underline.svg") no-repeat 0 100% / contain;
  position: absolute;
  left: 0;
  bottom: -15px;
}

.profound-developmental__wrapper_notation {
  color: rgb(var(--clr--lavender));
  font-weight: 700;
  margin-block: 25px;
}

.profound-developmental__wrapper_grid {
  margin-top: 50px;
}

.profound-developmental__wrapper_grid_card {
  position: relative;
  aspect-ratio: 329 / 574;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.profound-developmental__wrapper_grid_card-color-shape {
  width: 100%;
  aspect-ratio: 329 / 574;
}

.profound-developmental__wrapper_grid_card-shape svg {
  width: 100%;
  height: auto;
  aspect-ratio: 329 / 574;
}

.profound-developmental__wrapper_grid_card-dplo svg {
  color: rgb(var(--clr--indigo));
}

.profound-developmental__wrapper_grid_card-lolp svg {
  color: rgb(var(--clr--apricot));
}

.profound-developmental__wrapper_grid_card-lpdo svg {
  color: rgb(var(--clr--lavender));
}

.profound-developmental__wrapper_grid_card-dodp svg {
  color: rgb(var(--clr--tangerine));
}

.clr--tangerine + .profound-developmental__wrapper_grid_card-copy p {
  color: rgb(var(--clr--indigo));
}

.clr--apricot + .profound-developmental__wrapper_grid_card-copy p {
  color: rgb(var(--clr--indigo));
}

.profound-developmental__wrapper_grid_card-image-shape {
  color: rgb(var(--clr--white));
  width: 100%;
  aspect-ratio: 329 / 574;
  padding: 35px 10px 60px 25px;
  background: var(--grid--card--bg) center / cover;
  -webkit-mask-image: url("/wp-content/uploads/2026/01/card-svg-shape.svg");
  mask-image: url("/wp-content/uploads/2026/01/card-svg-shape.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  top: 15px;
  left: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.profound-developmental__wrapper_grid_card-clicked {
  border-right: 20px solid transparent;
  left: -15px;
  overflow: auto;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.profound-developmental__wrapper_grid_card-dplo .profound-developmental__wrapper_grid_card-clicked {
  background: rgb(var(--clr--apricot));
}

.profound-developmental__wrapper_grid_card-lolp .profound-developmental__wrapper_grid_card-clicked {
  background: rgb(var(--clr--purple));
}

.profound-developmental__wrapper_grid_card-lpdo .profound-developmental__wrapper_grid_card-clicked {
  background: rgb(var(--clr--tangerine));
}

.profound-developmental__wrapper_grid_card-dodp .profound-developmental__wrapper_grid_card-clicked {
  background: rgb(var(--clr--indigo));
}

.profound-developmental__wrapper_grid_card-image-shape p {
  font-size: 15px;
  opacity: 0;
  pointer-events: none;
}

.profound-developmental__wrapper_grid_card-dplo .profound-developmental__wrapper_grid_card-image-shape p,
.profound-developmental__wrapper_grid_card-lpdo .profound-developmental__wrapper_grid_card-image-shape p {
  color: rgb(var(--clr--indigo));
}

.profound-developmental__wrapper_grid_card-clicked p {
  opacity: 1;
  pointer-events: all;
}

/* ====== What Happens ====== */
.what-happens {
  background-color: rgb(var(--clr--purple));
}

.what-happens__pbg {
  background-color: rgb(var(--clr--purple));
}

.what-happens__mpbg {
  background-color: rgb(var(--clr--lavender));
}

.what-happens__dpbg {
  background-color: rgb(var(--clr--indigo));
}

.what-happens__lobg {
  background-color: rgb(var(--clr--apricot));
}

.what-happens__obg {
  background-color: rgb(var(--clr--tangerine));
}

.what-happens__lgbg {
  background-color: rgb(var(--clr--anti--flash--white));
}

.what-happens__wbg {
  background-color: rgb(var(--clr--white));
}

.what-happens__bbg {
  background-color: rgb(var(--clr--black));
}

.what-happens__lobg *,
.what-happens__obg *,
.what-happens__lgbg *,
.what-happens__wbg * {
  color: rgb(var(--clr--indigo)) !important;
}

.what-happens__wrapper {
  display: flex;
  gap: 35px;
}

.what-happens__wrapper_copy {
  width: 480px;
}

.what-happens__wrapper_copy_heading {
  color: rgb(var(--clr--white));
  text-align: left !important;
}

.what-happens__wrapper_copy_graphic {
  width: 30vw;
  position: absolute;
  left: -100px;
  bottom: 60px;
}

.what-happens__wrapper_grid {
  width: calc(100% - 515px);
  row-gap: 45px;
}

.what-happens__wrapper_grid_card {
  color: rgb(var(--clr--white));
}

.what-happens__wrapper_grid_card:last-child:nth-child(odd) {
  flex-grow: 1;
}

.what-happens__wrapper_grid_card-icon {
  width: 135px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 20px;
}

.what-happens__wrapper_grid_card-heading {
  font-size: 21px;
  margin-bottom: 16px;
}

.what-happens__wrapper_grid_card p {
  font-size: 17px;
}

/* ====== Have your say ====== */
.share-your-story {
  background: url("/wp-content/uploads/2026/01/hys-right-pattern.svg") no-repeat 100% 60% / 200px;
}

.share-your-story__wrapper {
  display: flex;
  gap: 35px;
}

.share-your-story__wrapper_copy {
  width: 50%;
  padding-bottom: 350px;
}

.share-your-story__wrapper_copy-title {
  font-size: clamp(21px, 1.5vw, 36px) !important;
  font-weight: 700 !important;
  text-align: left !important;
}

.share-your-story__wrapper_copy-image {
  max-width: 50vw;
  height: 350px;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: -100px;
}

.share-your-story__wrapper_form-wrapper {
  width: 50%;
}

.share-your-story__wrapper_form_form-check-wrapper {
  margin-block: 15px;
  display: flex;
  justify-content: space-around;
  gap: 15px;
}

.share-your-story__wrapper_form_form-check {
  padding: 0;
}

.share-your-story__wrapper_form_form-check-label {
  font-size: 16px;
  min-height: 25px;
  padding-left: 35px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.have-you-say__input_iagree ~ .share-your-story__wrapper_form_form-label,
.have-you-say__input_iagree ~ .share-your-story__wrapper_form_form-label p {
  color: rgb(var(--clr--lavender));
  font-size: 16px;
}

.share-your-story__wrapper_form_form-checkmark {
  width: 25px;
  height: 25px;
  background-color: rgb(var(--clr--white));
  border: 1px solid rgb(var(--clr--purple));
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  box-shadow: 0px 0px 2px 4px rgba(var(--clr--black), 0.05) inset;
}

.share-your-story__wrapper_form_form-check-label input {
  display: none;
}

.share-your-story__wrapper_form_form-check-label input:checked ~ .share-your-story__wrapper_form_form-checkmark {
  background: rgb(var(--clr--purple)) url("/wp-content/uploads/2026/01/check-white.svg") no-repeat 4px 4px / 13px;
  border: 2px solid rgb(var(--clr--purple));
}

.share-your-story__wrapper_form_choices {
  display: flex;
  justify-content: center;
  margin: 20px 0 0;
}

.share-your-story__wrapper_form_iagree-choices {
  flex-direction: column;
  gap: 3px;
}

.share-your-story__wrapper_form_submit-button {
  font-size: 21px;
  padding-block: 15px !important;
  margin-top: 35px;
}

.share-your-story__wrapper_form_success-modal-content {
  background-color: rgb(var(--clr--apricot));
  min-height: 50vh;
}

.share-your-story__wrapper_form_success-wrapper {
  min-height: 50vh;
  padding: 3rem 7rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.share-your-story__wrapper_form_success_heading {
  color: rgb(var(--clr--lavender));
  font-size: clamp(32px, 3vw, 82px);
}

.share-your-story__wrapper_form_success-wrapper p {
  color: rgb(var(--clr--black));
  font-size: clamp(21px, 1.4vw, 28px);
}

.share-your-story__wrapper_form_success-wrapper_close-button {
  color: rgb(var(--clr--lavender));
  font-size: 28px;
  background-color: transparent;
  border: 0;
  position: absolute;
  top: 15px;
  right: 15px;
}

/* ====== How Did We Get ====== */
.how-did-get__wrapper {
  position: relative;
}

.how-did-get__wrapper_card {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  -webkit-transition: opacity 0.4s ease, transform 0.4s ease;
  -moz-transition: opacity 0.4s ease, transform 0.4s ease;
  -ms-transition: opacity 0.4s ease, transform 0.4s ease;
  -o-transition: opacity 0.4s ease, transform 0.4s ease;
}

.how-did-get__wrapper_card:nth-of-type(2) {
  background-image: url("/wp-content/uploads/2026/01/how-did-get-pattern-left.svg");
  background-repeat: no-repeat;
  background-position: 0 95%;
  background-size: 160px;
}

.how-did-get__wrapper_card:nth-of-type(3) {
  background-image: url("/wp-content/uploads/2026/01/how-did-get-pattern-right.svg");
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: 200px;
}

.how-did-get__wrapper_card:nth-of-type(5) {
  background-image: url("/wp-content/uploads/2026/01/how-did-get-pattern-left.svg"), url("/wp-content/uploads/2026/01/how-did-get-pattern-right.svg");
  background-repeat: no-repeat;
  background-position: 0 95%, 100% 50%;
  background-size: 160px, 200px;
}

.how-did-get__wrapper_card.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.how-did-get__wrapper_card-pbg,
.how-did-get__wrapper_card-pbgi {
  background-color: rgb(var(--clr--purple));
}

.how-did-get__wrapper_card-mpbg,
.how-did-get__wrapper_card-mpbgi {
  background-color: rgb(var(--clr--lavender));
}

.how-did-get__wrapper_card-dpbg,
.how-did-get__wrapper_card-dpbgi {
  background-color: rgb(var(--clr--indigo));
}

.how-did-get__wrapper_card-lobg,
.how-did-get__wrapper_card-lobgi {
  background-color: rgb(var(--clr--apricot));
}

.how-did-get__wrapper_card-obg,
.how-did-get__wrapper_card-obgi {
  background-color: rgb(var(--clr--tangerine));
}

.how-did-get__wrapper_card-lgbg,
.how-did-get__wrapper_card-lgbgi {
  background-color: rgb(var(--clr--anti--flash--white));
}

.how-did-get__wrapper_card-wbg,
.how-did-get__wrapper_card-wbgi {
  background-color: rgb(var(--clr--white));
}

.how-did-get__wrapper_card-bbg,
.how-did-get__wrapper_card-bbgi {
  background-color: rgb(var(--clr--black));
}

.how-did-get__wrapper_card-lobg *,
.how-did-get__wrapper_card-lobgi *,
.how-did-get__wrapper_card-obg *,
.how-did-get__wrapper_card-obgi *,
.how-did-get__wrapper_card-lgbg *,
.how-did-get__wrapper_card-lgbgi *,
.how-did-get__wrapper_card-wbg *,
.how-did-get__wrapper_card-wbgi * {
  color: rgb(var(--clr--indigo)) !important;
}

.how-did-get__wrapper_card-wrapper {
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.how-did-get__wrapper_card:nth-of-type(odd) .how-did-get__wrapper_card-wrapper {
  flex-direction: row;
}

.how-did-get__wrapper_card:nth-of-type(even) .how-did-get__wrapper_card-wrapper {
  flex-direction: row-reverse;
}

.how-did-get__wrapper_card-image {
  text-align: right;
  width: 40%;
  height: 100%;
  display: flex;
  align-content: flex-end;
  justify-content: flex-end;
}

.how-did-get__wrapper_card:nth-of-type(1) .how-did-get__wrapper_card-image img {
  padding-top: 30px;
}

.how-did-get__wrapper_card:nth-of-type(2) .how-did-get__wrapper_card-image img {
  height: 100%;
  object-fit: cover;
}

.how-did-get__wrapper_card:nth-of-type(3) .how-did-get__wrapper_card-image img,
.how-did-get__wrapper_card:nth-of-type(4) .how-did-get__wrapper_card-image img {
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.how-did-get__wrapper_card:nth-of-type(6) .how-did-get__wrapper_card-image img {
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

.how-did-get__wrapper_card-copy {
  width: 60%;
  padding: 3rem;
}

.how-did-get__wrapper_card-pbg .how-did-get__wrapper_card-copy,
.how-did-get__wrapper_card-mpbg .how-did-get__wrapper_card-copy,
.how-did-get__wrapper_card-dpbg .how-did-get__wrapper_card-copy,
.how-did-get__wrapper_card-lobg .how-did-get__wrapper_card-copy,
.how-did-get__wrapper_card-obg .how-did-get__wrapper_card-copy,
.how-did-get__wrapper_card-lgbg .how-did-get__wrapper_card-copy,
.how-did-get__wrapper_card-wbg .how-did-get__wrapper_card-copy,
.how-did-get__wrapper_card-bbg .how-did-get__wrapper_card-copy {
  width: 100%;
  max-width: 1320px;
  padding: 3rem !important;
  margin: 0 auto;
}

.how-did-get__wrapper_card-pbg .how-did-get__wrapper_card-image,
.how-did-get__wrapper_card-mpbg .how-did-get__wrapper_card-image,
.how-did-get__wrapper_card-dpbg .how-did-get__wrapper_card-image,
.how-did-get__wrapper_card-lobg .how-did-get__wrapper_card-image,
.how-did-get__wrapper_card-obg .how-did-get__wrapper_card-image,
.how-did-get__wrapper_card-lgbg .how-did-get__wrapper_card-image,
.how-did-get__wrapper_card-wbg .how-did-get__wrapper_card-image,
.how-did-get__wrapper_card-bbg .how-did-get__wrapper_card-image {
  display: none;
}

.how-did-get__wrapper_card:nth-of-type(odd) .how-did-get__wrapper_card-copy {
  padding-right: calc(50vw - 650px);
}

.how-did-get__wrapper_card:nth-of-type(even) .how-did-get__wrapper_card-copy {
  padding-left: calc(50vw - 650px);
}

.how-did-get__wrapper_card-copy-heading {
  color: rgb(var(--clr--white));
  font-size: clamp(32px, 2.2vw, 48px);
  font-weight: 500;
  line-height: 1.3;
  padding-bottom: 40px;
  margin-bottom: 15px;
}

.how-did-get__wrapper_highlighted-text_underline {
  position: relative;
}

.how-did-get__wrapper_highlighted-text_underline:before {
  content: "";
  width: 100%;
  height: 25px;
  background: url("/wp-content/uploads/2026/01/text-underline.svg") no-repeat 0 100% / contain;
  position: absolute;
  left: 0;
  bottom: -25px;
}

.how-did-get__wrapper_card-copy p {
  color: rgb(var(--clr--white));
  font-size: 21px;
}

.how-did-get__wrapper_card-obgi .how-did-get__wrapper_card-copy p {
  color: rgb(var(--clr--indigo));
}

.how-did-get__wrapper_card-copy_next-button {
  color: rgb(var(--clr--white));
  font-size: 21px;
  font-weight: 500 !important;
  min-width: fit-content;
  padding: 10px 0 !important;
  margin: 3rem 0 0;
  align-items: flex-end;
}

.how-did-get__wrapper_card-obgi .how-did-get__wrapper_card-copy_next-button {
  color: rgb(var(--clr--indigo));
}

.how-did-get__wrapper_card-copy_next-button:hover {
  color: rgb(var(--clr--white));
  gap: 30px;
}

.how-did-get__wrapper_card-obgi .how-did-get__wrapper_card-copy_next-button:hover {
  color: rgb(var(--clr--indigo));
}

/* ====== Child Deserves ====== */
.child-deserves {
  background: url("/wp-content/uploads/2026/01/child-deserves-background.png") no-repeat center center / cover;
}

.child-deserves__wrapper {
  display: flex;
  align-items: center;
  gap: 35px;
}

.child-deserves__wrapper_copy {
  width: 72%;
  padding-left: calc(50vw - 650px);
}

.child-deserves__wrapper_heading {
  color: rgb(var(--clr--white));
  font-weight: 700 !important;
  text-align: left !important;
  margin-bottom: 5rem;
}

.child-deserves__wrapper p {
  color: rgb(var(--clr--white));
}

.child-deserves__wrapper_image {
  width: 28%;
}

.child-deserves__wrapper_image img {
  width: 35vw;
  max-width: 750px;
}

/* ====== FAQs ====== */
.faq-section {
  background-color: rgb(var(--clr--anti--flash--white));
}

.faq-section__wrapper_heading {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.faq-section__wrapper_heading img {
  max-width: 45vw;
}

.faq-section__wrapper_heading p {
  font-size: clamp(18px, 1.2vw, 36px);
}

.faq-section__wrapper_accordion-item {
  border: 0;
}

.faq-section__wrapper_accordion-button {
  background: rgb(var(--clr--anti--flash--white));
  padding: 15px 25px;
  cursor: pointer;
}

.faq-section__wrapper_accordion-button::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 21px;
  line-height: 21px;
  color: rgb(var(--clr--lavender));
  background: transparent !important;
  width: 21px;
  height: 21px;
}

.faq-section__wrapper_accordion-button:not(.collapsed) {
  background: rgb(var(--clr--apricot));
  box-shadow: unset;
}

.faq-section__wrapper_accordion-button > * {
  color: rgb(var(--clr--lavender));
}

/* ====== Single Article ====== */
.single-article__wrapper h3 {
  font-size: clamp(21px, 1.4vw, 28px);
  font-weight: 600;
  margin: 25px 0 12px;
}

/* ====== 404 ====== */
.error-message {
  min-height: calc(100vh - 142px);
  display: flex;
  align-items: center;
}

.error-message__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.error-message__title {
  color: rgb(var(--clr--purple));
  font-size: clamp(60px, 7.5vw, 120px);
  font-weight: 900;
}

.error-message__content p {
  font-size: 20px;
  line-height: 35px;
}

.error-message__back-button {
  font-size: 20px;
  line-height: 35px;
  font-weight: 700;
}

/* ====== FOOTER ====== */
.footer {
  background: rgb(var(--clr--lavender));
  padding-block: 40px;
}

.footer__copyright {
  color: rgb(var(--clr--white));
  font-size: 15px;
  text-align: center;
}

.footer__copyright a {
  display: inline-block;
}

.footer__social-grid {
  width: 140px;
  margin: 20px auto 0;
  justify-content: center;
}

.footer__social-grid_icon {
  color: rgb(var(--clr--white));
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__social-grid_icon-in {
  font-size: 19px;
}

.footer__social-grid_icon:hover {
  color: rgb(var(--clr--tangerine));
}