@charset "UTF-8";
/*------------------------------------*\
    $RESET
\*------------------------------------*/
/* Border-Box http:/paulirish.com/2012/box-sizing-border-box-ftw/ */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
ol,
ul,
li,
form,
legend,
label,
table,
header,
footer,
nav,
section,
figure {
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header,
footer,
nav,
section,
article,
hgroup,
figure {
  display: block;
}

ul {
  list-style: none;
}

/* Force Firefox to have an initial height */
[contenteditable]::before {
  content: "﻿";
  display: inline-block;
  width: 0;
}

a img {
  border-width: 0;
}

button {
  padding: unset;
  border: unset;
  background-color: unset;
}

img {
  vertical-align: top;
}

@font-face {
  font-family: "Hatton";
  src: local("Hatton-Medium"), url("../fonts/hatton/Hatton-medium.otf") format("opentype");
}
@font-face {
  font-family: "Hatton Bold";
  src: local("Hatton-Bold"), url("../fonts/hatton/Hatton-bold.otf") format("opentype");
}
:root {
  --color-almond-frost: #907b6b;
  --color-black-green: #1a2012;
  --color-cabbage-pont: #45523e;
  --color-cardinal: #b11939;
  --color-chalet-green: #587141;
  --color-champagne: #fcf3dd;
  --color-early-dawn: #fff7e7;
  --color-fern: #61b85d;
  --color-fuzzy-wuzzy-brown: #c35c69;
  --color-kabul: #56413b;
  --color-laurel: #6d886c;
  --color-marigold: #a58729;
  --color-pharlap: #a28075;
  --color-roman-coffee: #855c50;
  --color-rusty-nail: #8e6105;
  --color-saddle: #493526;
  --color-seashell-peach: #fff3ea;
  --color-silk: #bfb0a6;
  --color-tasman: #ccd4c6;
  --color-white-linen: #f8ebe7;
  --font-primary: "proxima-nova", sans-serif;
  --font-secondary: "Hatton";
  --font-third: "the-seasons", sans-serif;
  --container-max-width: 920px;
  --container-min-height: calc(100vh - 166px);
}

body {
  background-color: var(--color-seashell-peach);
  color: var(--color-rusty-nail);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
}
body.no-scroll {
  overflow-y: hidden;
  touch-action: none;
}

a:not(.the-links,
.header__dropdown a,
.header__logo-link,
.footer__links a),
.mailman {
  position: relative;
  color: var(--color-black-green);
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}
a:not(.the-links,
.header__dropdown a,
.header__logo-link,
.footer__links a)::before,
.mailman::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  top: calc(100% - 3px);
  left: 0;
  background-color: var(--color-black-green);
  transition: background-color 0.25s ease-in-out, height 0.25s ease-in-out;
}
a:not(.the-links,
.header__dropdown a,
.header__logo-link,
.footer__links a):hover,
.mailman:hover {
  color: var(--color-chalet-green);
}
a:not(.the-links,
.header__dropdown a,
.header__logo-link,
.footer__links a):hover::before,
.mailman:hover::before {
  height: 2px;
  background-color: var(--color-chalet-green);
}

button {
  cursor: pointer;
  padding: unset;
  border: unset;
  background-color: unset;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: normal;
}

/* =============================================================================
  @media-sizes
  ========================================================================== */
/* =============================================================================
  @global-classes
  ========================================================================== */
.visuallyhidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px !important;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* =============================================================================
  @the-links
  ========================================================================== */
.the-links {
  /* https://codepen.io/MatthewShields/pen/WOEBPG */
  --outline-border-width: 2px;
  --outline-border-color: var(--color-rusty-nail);
  --sec-outline-border-color: var(--color-rusty-nail);
  --outline-text-color: var(--color-rusty-nail);
  --sec-outline-text-color: var(--color-rusty-nail);
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 16px 28px;
  border: var(--outline-border-width) var(--outline-border-color) solid;
  color: var(--outline-text-color);
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.35s ease-in-out;
}
.the-links:before, .the-links:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 0px;
  height: 0px;
  box-sizing: content-box;
  padding-left: var(--outline-border-width);
  transition: transform 0.25s ease-in-out;
}
.the-links:before {
  top: calc(var(--outline-border-width) * -1);
  left: calc(var(--outline-border-width) * -1);
  border-top: var(--outline-border-width) transparent solid;
  border-right: var(--outline-border-width) transparent solid;
}
.the-links:after {
  bottom: calc(var(--outline-border-width) * -1);
  right: calc(var(--outline-border-width) * -1);
  border-bottom: var(--outline-border-width) transparent solid;
  border-left: var(--outline-border-width) transparent solid;
}
.the-links:hover {
  color: var(--sec-outline-text-color);
  transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
  border-color: var(--outline-border-color);
  animation: outline-reset 0.35s 1 forwards;
}
.the-links:hover:before {
  animation: top-right-border 0.75s 1 0.35s forwards;
}
.the-links:hover:after {
  animation: bottom-left-border 0.75s 1 0.35s forwards;
}
.the-links--tandem:hover:after {
  animation: bottom-left-border 0.75s 1 0.35s forwards;
}
.the-links:active:before, .the-links:active:after {
  transform: scale(1.05);
}
.the-links.intro__actions-cta {
  --outline-border-color: var(--color-seashell-peach);
  --sec-outline-border-color: var(--color-seashell-peach);
  --outline-text-color: var(--color-seashell-peach);
  --sec-outline-text-color: var(--color-seashell-peach);
  font-style: italic;
}

@keyframes outline-reset {
  0% {
    border-color: var(--outline-border-color);
  }
  100% {
    border-color: transparent;
  }
}
@keyframes top-right-border {
  0% {
    border-color: var(--sec-outline-border-color);
    width: 0px;
    height: 0;
  }
  50% {
    width: 100%;
    height: 0;
  }
  100% {
    border-color: var(--sec-outline-border-color);
    width: 100%;
    height: 100%;
  }
}
@keyframes bottom-left-border {
  0% {
    border-color: var(--sec-outline-border-color);
    width: 0px;
    height: 0;
  }
  50% {
    width: 100%;
    height: 0;
  }
  100% {
    border-color: var(--sec-outline-border-color);
    width: 100%;
    height: 100%;
  }
}
.header {
  --dropdown-border-color: var(--color-rusty-nail);
  --dropdown-color-background: var(--color-early-dawn);
  --dropdown-color-font: var(--color-rusty-nail);
  /* black to color converter: https://codepen.io/sosuke/pen/Pjoqqp */
  --dropdown-color-icons: invert(37%) sepia(78%) saturate(534%) hue-rotate(2deg) brightness(88%) contrast(96%);
  --header-title-width: 246px;
  position: relative;
  z-index: 11;
  padding: 20px 24px;
  background-color: var(--color-early-dawn);
}
@media all and (min-width: 1024px) {
  .header {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
  }
}
@media all and (min-width: 1024px) {
  .header__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    padding: 8px 0;
    border: 2px solid var(--dropdown-border-color);
    background-color: var(--dropdown-color-background);
  }
}
.header__dropdown li {
  padding: 8px 24px;
}
@media all and (max-width: 1023px) {
  .header__dropdown li {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding: 8px 0;
  }
  .header__dropdown li::before {
    content: "";
    display: block;
    width: 28px;
    aspect-ratio: 1;
    margin-right: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    filter: var(--dropdown-color-icons);
  }
  .header__dropdown li:first-child::before {
    background-image: url(../images/nav__joint-play.png);
  }
  .header__dropdown li:nth-child(2)::before {
    background-image: url(../images/nav__coaching.png);
  }
}
.header__dropdown a {
  border-bottom: 1px solid transparent;
  color: var(--dropdown-color-font);
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
}
@media all and (min-width: 1024px) {
  .header__dropdown a {
    font-size: 13px;
  }
}
.header__dropdown a:hover {
  border-bottom-color: var(--dropdown-color-font);
}
.header__hamburger {
  appearance: none;
  cursor: pointer;
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  top: calc(50% - 17px);
  left: 15px;
  z-index: 12;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
  font-size: 0;
  text-indent: -9999px;
}
@media all and (min-width: 1024px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger-lines {
  display: block;
  position: absolute;
  height: 2px;
  top: 14px;
  left: 0;
  right: 0;
  background-color: var(--dropdown-border-color);
}
.header__hamburger-lines::before, .header__hamburger-lines::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  background-color: var(--dropdown-border-color);
  transition-delay: 0.2s, 0s;
  transition-duration: 0.2s, 0.2s;
}
.header__hamburger-lines::before {
  top: 8px;
  transition-property: top, transform;
}
.header__hamburger-lines::after {
  bottom: 8px;
  transition-property: bottom, transform;
}
.header__hamburger.is-active span {
  background: none;
}
.header__hamburger.is-active span::before, .header__hamburger.is-active span::after {
  transition-delay: 0s, 0.2s;
}
.header__hamburger.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}
.header__hamburger.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.header__item {
  position: relative;
  width: auto;
  margin: 0;
}
.header__item:hover .header__dropdown {
  display: block;
}
@media all and (max-width: 1023px) {
  .header__item {
    margin-top: 12px;
  }
  .header__item:nth-child(3) {
    width: 100%;
  }
  .header__item:nth-child(3) .header__link {
    font-size: 13px;
    text-transform: uppercase;
  }
  .header__item:not(:nth-child(3)) {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
  }
  .header__item:not(:nth-child(3))::before {
    content: "";
    display: block;
    width: 28px;
    aspect-ratio: 1;
    margin-right: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    filter: var(--dropdown-color-icons);
  }
  .header__item:first-child::before {
    background-image: url(../images/nav__home.png);
  }
  .header__item:nth-child(2)::before {
    background-image: url(../images/nav__about.png);
  }
  .header__item:nth-child(3)::before {
    background-image: url(../images/nav__coaching.png);
  }
  .header__item:nth-child(4)::before {
    background-image: url(../images/nav__faqs.png);
  }
  .header__item:nth-child(5)::before {
    background-image: url(../images/nav__contact.png);
  }
}
@media all and (min-width: 1024px) {
  .header__item {
    width: auto;
    margin: 0;
  }
  .header__item::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    top: 100%;
    left: 0;
  }
  .header__item:not(:first-child) {
    margin-left: 24px;
  }
}
.header__link {
  padding: 8px 28px;
  font-size: 15px;
  letter-spacing: 0.25px;
}
@media all and (min-width: 1024px) {
  .header__link {
    font-size: 13px;
  }
}
@media all and (max-width: 1023px) {
  .header__link.the-links {
    padding: 10px 0;
    border: none;
  }
}
.header__list {
  position: absolute;
  width: 320px;
  height: calc(100vh - 70px);
  top: 100%;
  left: 0;
  z-index: 12;
  border: 1px solid var(--dropdown-color-font);
  border-width: 1px 0 1px 0;
  background-color: var(--dropdown-color-background);
  transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out, top 0.3s ease-in-out;
}
@media all and (max-width: 1023px) {
  .header__list {
    pointer-events: none;
    top: calc(100% - 12px);
    padding: 16px;
    opacity: 0;
  }
  .header__list.nav-opened {
    pointer-events: all;
    top: 100%;
    opacity: 1;
  }
}
@media all and (min-width: 1024px) {
  .header__list {
    display: flex;
    flex-flow: row nowrap;
    list-style: none;
    position: relative;
    width: auto;
    height: unset;
    top: unset;
    left: unset;
    padding: 0;
    border: unset;
  }
}
.header__logo {
  width: 100%;
  font-family: var(--font-secondary);
  font-size: 24px;
  text-align: center;
}
@media all and (min-width: 1024px) {
  .header__logo {
    width: auto;
    text-align: unset;
  }
}
.header__logo-link {
  color: var(--color-rusty-nail);
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}
.header__logo-link:hover {
  color: var(--color-fern);
}
@media all and (max-width: 1023px) {
  .header__opened-background {
    display: block;
    position: fixed;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    background-color: black;
    transition: opacity 0.3s ease-in-out;
  }
  .header__opened-background.is-active {
    width: 100vw;
    height: 100vh;
    opacity: 0.65;
  }
}

.about {
  background-color: var(--color-white-linen);
}
.about .header,
.about .footer, .about__main {
  background-color: var(--color-white-linen);
  color: var(--color-roman-coffee);
}
.about .header {
  --dropdown-border-color: var(--color-roman-coffee);
  --dropdown-color-background: var(--color-white-linen);
  --dropdown-color-font: var(--color-roman-coffee);
  --dropdown-color-icons: invert(38%) sepia(7%) saturate(2179%) hue-rotate(326deg) brightness(98%) contrast(88%);
}
.about .header .the-links {
  --outline-border-color: var(--color-roman-coffee);
  --sec-outline-border-color: var(--color-roman-coffee);
  --outline-text-color: var(--color-roman-coffee);
  --sec-outline-text-color: var(--color-roman-coffee);
}
.about .header__logo-link {
  color: var(--color-roman-coffee);
}
.about .header__logo-link:hover {
  color: var(--color-fern);
}
.about .footer__links img {
  filter: invert(38%) sepia(7%) saturate(2179%) hue-rotate(326deg) brightness(98%) contrast(88%);
}
@media all and (max-width: 639px) {
  .about__certs--desktop {
    display: none;
  }
}
@media all and (max-width: 639px) {
  .about__certs--mobile {
    margin-top: 32px;
  }
}
@media all and (min-width: 640px) {
  .about__certs--mobile {
    display: none;
  }
}
.about__certificates-header {
  font-family: var(--font-third);
  font-size: 24px;
}
@media all and (min-width: 640px) {
  .about__certificates-header {
    margin-top: 40px;
  }
}
.about__certificates-list {
  list-style: disc;
  padding-left: 20px;
}
.about__certificates-list li {
  margin-top: 10px;
}
.about__container {
  display: flex;
  flex-flow: column nowrap;
  max-width: var(--container-max-width);
  margin: 0 auto;
}
@media all and (min-width: 640px) {
  .about__container {
    flex-flow: row nowrap;
  }
}
.about__image {
  border-top-left-radius: 40%;
  border-top-right-radius: 40%;
  overflow: hidden;
}
.about__image-img {
  width: 100%;
  height: auto;
}
.about__sidebar {
  display: flow-root;
}
@media all and (max-width: 639px) {
  .about__sidebar {
    margin-top: 24px;
  }
}
@media all and (min-width: 640px) {
  .about__sidebar {
    width: 30%;
  }
}
.about__text {
  margin: 0 auto;
}
@media all and (min-width: 640px) {
  .about__text {
    width: 70%;
    padding-left: 40px;
  }
}
.about__text .main__text-center {
  text-align: center;
}
@media all and (max-width: 639px) {
  .about__text .main__header {
    margin-top: 32px;
    font-size: 32px;
  }
  .about__text .main__text-copy.first {
    margin-top: 12px;
  }
}
.about__title {
  font-family: var(--font-third);
  font-size: 40px;
}
@media all and (min-width: 640px) {
  .about__title {
    width: 0;
    height: 0;
    visibility: hidden;
  }
}

.contact {
  background-color: var(--color-white-linen);
}
.contact .header,
.contact .footer, .contact__main {
  background-color: var(--color-white-linen);
  color: var(--color-roman-coffee);
}
.contact .header {
  --dropdown-border-color: var(--color-roman-coffee);
  --dropdown-color-background: var(--color-white-linen);
  --dropdown-color-font: var(--color-roman-coffee);
  --dropdown-color-icons: invert(37%) sepia(8%) saturate(2133%) hue-rotate(327deg) brightness(99%) contrast(83%);
}
.contact .header .the-links {
  --outline-border-color: var(--color-roman-coffee);
  --sec-outline-border-color: var(--color-roman-coffee);
  --outline-text-color: var(--color-roman-coffee);
  --sec-outline-text-color: var(--color-roman-coffee);
}
.contact .header__logo-link {
  color: var(--color-roman-coffee);
}
.contact .header__logo-link:hover {
  color: var(--color-fern);
}
.contact .footer__links img {
  filter: invert(38%) sepia(7%) saturate(2179%) hue-rotate(326deg) brightness(98%) contrast(88%);
}
.contact__form {
  position: relative;
}
@media all and (min-width: 640px) {
  .contact__form {
    grid-column: 3/3;
  }
}
.contact__form input:not(.btn-submit),
.contact__form select,
.contact__form textarea {
  width: 100%;
  margin-top: 2px;
  padding: 8px;
  border: 2px solid var(--color-roman-coffee);
  background-color: transparent;
  color: var(--color-roman-coffee);
  font-family: var(--font-primary);
  font-size: 14px;
  vertical-align: top;
}
.contact__form input:not(.btn-submit):autofill, .contact__form input:not(.btn-submit):-webkit-autofill,
.contact__form select:autofill,
.contact__form select:-webkit-autofill,
.contact__form textarea:autofill,
.contact__form textarea:-webkit-autofill {
  background-color: #e7fde8 !important;
}
.contact__form input:not(.btn-submit):focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-color: white;
  outline-color: white;
  box-shadow: 0px 2px 5px rgba(255, 255, 255, 0.3);
}
.contact__form input:not(.btn-submit):required:valid,
.contact__form select:required:valid,
.contact__form textarea:required:valid {
  border-color: var(--color-chalet-green);
}
.contact__form input:not(.btn-submit)::placeholder,
.contact__form select::placeholder,
.contact__form textarea::placeholder {
  color: var(--color-almond-frost);
}
.contact__form label {
  display: block;
  font-size: 15px;
}
.contact__form select {
  font-size: 15px;
}
.contact__form textarea {
  height: 120px;
}
.contact__form-group {
  position: relative;
  margin-top: 40px;
}
.contact__form-group--age, .contact__form-group--child, .contact__form-group--grade {
  position: relative;
}
.contact__form-group--age {
  width: 30%;
}
@media all and (min-width: 640px) {
  .contact__form-group--age {
    width: 35%;
    min-width: 130px;
  }
}
.contact__form-group--child {
  flex: 1 1 50%;
}
.contact__form-group--grade {
  width: 70%;
}
@media all and (min-width: 640px) {
  .contact__form-group--grade {
    width: 65%;
  }
}
.contact__form-group--split {
  display: flex;
  flex-flow: row nowrap;
  gap: 0 24px;
}
.contact__form-subgroup {
  display: none;
  margin-top: 12px;
}
.contact__form-subgroup.show-group {
  display: block;
}
.contact__form .badge-wrapper {
  display: none;
}
.contact__form .contact__form-submit {
  cursor: pointer;
  margin-top: 32px;
  background-color: transparent;
}
.contact__form .contact__form-submit.the-links {
  --outline-border-color: var(--color-roman-coffee);
  --sec-outline-border-color: var(--color-roman-coffee);
  --outline-text-color: var(--color-roman-coffee);
  --sec-outline-text-color: var(--color-roman-coffee);
}
.contact__form .error,
.contact__form .form-error-message {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  color: var(--color-cardinal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.contact__form .error img,
.contact__form .form-error-message img {
  width: 16px;
  height: auto;
}
.contact__form .form-checkbox-item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 0 20px;
  margin-top: 12px;
}
.contact__form .form-checkbox-item input {
  width: 20px;
}
.contact__form .form-checkbox-item label {
  min-width: 180px;
}
.contact__form .form-sub-label {
  font-size: 13px;
  letter-spacing: 0.35px;
  opacity: 0.8;
}
.contact__form .form__notifications {
  background: var(--color-laurel);
  width: 100%;
  height: 101%;
  z-index: 2;
  border-radius: 5px;
  padding: 30px 15% 40px;
  color: white;
  text-align: center;
  /*
    display: none;
    position: absolute;
    top: 0;
    left: 0;
  */
}
@media all and (min-width: 640px) {
  .contact__form .form__notifications {
    padding: 30px 15%;
  }
}
.contact__form .form__notifications.show {
  display: block;
}
.contact__form .form__notifications.form__failure {
  background-color: var(--color-fuzzy-wuzzy-brown);
}
.contact__form .form__notifications.form__failure .main-message {
  color: var(--color-black-green);
}
.contact__form .form__notifications .message-container {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  height: 100%;
}
.contact__form .form__notifications .main-message {
  margin-bottom: 30px;
  color: var(--color-black-green);
  font: 36px/30px var(--font-third);
}
.contact__form .form__notifications p {
  font-size: 18px;
  line-height: 24px;
}
@media all and (min-width: 640px) {
  .contact__main {
    display: grid;
    grid-template-columns: auto 14% 46%;
    grid-template-rows: auto;
    max-width: var(--container-max-width);
    margin: 0 auto;
  }
}
@media all and (min-width: 640px) {
  .contact__sidebar {
    grid-column: 1/1;
  }
}
.contact__sidebar p:not(:first-of-type) {
  margin-top: 24px;
}
.contact__sidebar-disclaimer {
  font-style: italic;
}
.contact__sidebar-text {
  margin-top: 32px;
}
.contact__title {
  width: 0;
  height: 0;
  visibility: hidden;
}

.error-navigation-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 8px 16px;
  background-color: var(--color-cardinal);
  color: white;
}
.error-navigation-container.is-success {
  background-color: var(--color-tasman);
  color: var(--color-cabbage-pont);
}
.error-navigation-done-button, .error-navigation-next-button {
  margin-top: 12px;
  padding: 8px 20px;
}
@media all and (min-width: 640px) {
  .error-navigation-done-button, .error-navigation-next-button {
    margin-top: unset;
  }
}
.error-navigation-done-button {
  background-color: var(--color-cabbage-pont);
  color: white;
}
.error-navigation-inner {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 28px;
  text-align: center;
}
@media all and (min-width: 640px) {
  .error-navigation-inner {
    flex-direction: row;
    text-align: left;
  }
}
.error-navigation-message strong {
  padding: 2px 8px;
  border-radius: 18px;
  background-color: white;
  color: var(--color-saddle);
}
.error-navigation-next-button {
  padding: 8px 20px;
  background-color: white;
  color: var(--color-saddle);
}

@media all and (max-width: 639px) {
  .thank-you .contact__main {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto 32px auto;
  }
}
@media all and (max-width: 639px) {
  .thank-you .contact__form {
    grid-row: 1/1;
  }
}
@media all and (max-width: 639px) {
  .thank-you .contact__sidebar {
    grid-row: 3/3;
  }
}
.thank-you .form__notifications p:last-child {
  margin-top: 16px;
}

.faq {
  background-color: var(--color-white-linen);
}
.faq .header,
.faq .footer, .faq__main {
  background-color: var(--color-white-linen);
  color: var(--color-roman-coffee);
}
.faq .header {
  --dropdown-border-color: var(--color-roman-coffee);
  --dropdown-color-background: var(--color-white-linen);
  --dropdown-color-font: var(--color-roman-coffee);
  --dropdown-color-icons: invert(37%) sepia(8%) saturate(2133%) hue-rotate(327deg) brightness(99%) contrast(83%);
}
.faq .header .the-links {
  --outline-border-color: var(--color-roman-coffee);
  --sec-outline-border-color: var(--color-roman-coffee);
  --outline-text-color: var(--color-roman-coffee);
  --sec-outline-text-color: var(--color-roman-coffee);
}
.faq .header__logo-link {
  color: var(--color-roman-coffee);
}
.faq .header__logo-link:hover {
  color: var(--color-fern);
}
.faq .footer__links img {
  filter: invert(38%) sepia(7%) saturate(2179%) hue-rotate(326deg) brightness(98%) contrast(88%);
}
.faq .btn__insurance-qs {
  border-bottom: 1px solid var(--color-cabbage-pont);
  color: var(--color-cabbage-pont);
}
.faq .btn__insurance-qs::after {
  content: "↓";
  display: inline;
}
.faq .btn__insurance-qs.expanded::after {
  content: "↑";
}
.faq .main__text-copy {
  margin-top: 20px;
  padding-left: 16px;
}
.faq .main__text--first {
  margin-top: 8px;
}
.faq .main__text-list--payment {
  padding-left: 16px;
  list-style-type: circle;
}
.faq .main__text-list--payment li {
  margin-left: 24px;
}
.faq .main__text--qs {
  position: relative;
  margin-top: 8px;
  padding-left: 32px;
}
.faq .main__text--qs::before {
  content: "•";
  display: block;
  position: absolute;
  top: -1px;
  left: 19px;
}
.faq__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}
.faq__insurance-qs {
  max-height: 0;
  padding-top: 12px;
  opacity: 0;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.faq__insurance-qs.expanded {
  max-height: 400px;
  opacity: 1;
}
@media all and (min-width: 640px) {
  .faq__insurance-qs.expanded {
    max-height: 220px;
  }
}
.faq__text-question {
  margin-top: 60px;
  font-size: 18px;
  font-weight: 700;
}
.faq__text-question--first {
  margin-top: 32px;
}

/*
old styles

background-color: var(--color-champagne);

.header,
.footer,
&__main {
  background-color: var(--color-champagne);
  color: var(--color-marigold);
}

.header {
  --dropdown-border-color: var(--color-marigold);
  --dropdown-color-background: var(--color-champagne);
  --dropdown-color-font: var(--color-marigold);
  --dropdown-color-icons: invert(59%) sepia(17%) saturate(1634%) hue-rotate(8deg) brightness(87%) contrast(85%);

  .the-links {
    --outline-border-color: var(--color-marigold);
    --sec-outline-border-color: var(--color-marigold);
    --outline-text-color: var(--color-marigold);
    --sec-outline-text-color: var(--color-marigold);
  }

  &__logo-link {
    color: var(--color-marigold);

    &:hover {
      color: var(--color-fern);
    }
  }
}
*/
.parenting {
  background-color: white;
}
.parenting .header,
.parenting .footer, .parenting__main {
  background-color: white;
  color: var(--color-kabul);
}
.parenting .main__img-text .text-overlap {
  color: white;
}
.parenting .main__img-text .text-overlap::before {
  background-color: var(--color-roman-coffee);
  opacity: 0.65;
}
.parenting .header {
  --dropdown-border-color: var(--color-kabul);
  --dropdown-color-background: white;
  --dropdown-color-font: var(--color-kabul);
  --dropdown-color-icons: invert(24%) sepia(12%) saturate(1020%) hue-rotate(327deg) brightness(94%) contrast(87%);
}
.parenting .header .the-links {
  --outline-border-color: var(--color-kabul);
  --sec-outline-border-color: var(--color-kabul);
  --outline-text-color: var(--color-kabul);
  --sec-outline-text-color: var(--color-kabul);
}
.parenting .header__logo-link {
  color: var(--color-kabul);
}
.parenting .header__logo-link:hover {
  color: var(--color-fern);
}
.parenting .footer__links img {
  filter: invert(24%) sepia(12%) saturate(1020%) hue-rotate(327deg) brightness(94%) contrast(87%);
}
.parenting__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}
.parenting__container .main__text-copy {
  margin-top: 20px;
}
.parenting__list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 40px 20px;
  margin-top: 48px;
}
@media all and (min-width: 640px) {
  .parenting__list {
    gap: 60px 20px;
    max-width: 650px;
    margin: 48px auto 0;
  }
}
@media all and (min-width: 640px) {
  .parenting__list.slim li {
    width: calc((100% - 100px) / 3);
  }
}
.parenting__list li {
  width: calc((100% - 40px) / 3);
  font-size: 13px;
  text-align: center;
}
@media all and (min-width: 640px) {
  .parenting__list li {
    width: calc((100% - 100px) / 4);
  }
}
.parenting__list span {
  display: block;
  margin-top: 12px;
}
.parenting__list-icon {
  width: auto;
  height: 90px;
}
.parenting__text {
  margin: 0 auto;
}
.parenting__timing {
  display: flex;
  margin-top: 4px;
  padding-left: 24px;
}
@media all and (min-width: 640px) {
  .parenting__timing {
    padding-left: 40px;
  }
}
.parenting__timing::before {
  content: "•";
  padding-right: 16px;
}
.parenting__timing:first-child {
  margin-top: 8px;
}

.offerings__section-additional {
  margin-top: 72px;
}
.offerings__title {
  font-family: var(--font-third);
  font-size: 40px;
}
@media all and (min-width: 640px) {
  .offerings__title {
    width: 0;
    height: 0;
    visibility: hidden;
  }
}

/**
 Global styles
**/
.footer {
  padding: 64px 12px 16px 12px;
  font-size: 13px;
  text-align: center;
}
.footer__cr {
  margin-top: 16px;
}
.footer__links {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 24px 0;
  width: min-content;
  margin: auto;
}
@media all and (min-width: 640px) {
  .footer__links {
    flex-flow: row nowrap;
    gap: 0 32px;
  }
}
.footer__links img {
  width: 100%;
  height: auto;
  filter: invert(37%) sepia(78%) saturate(534%) hue-rotate(2deg) brightness(88%) contrast(96%);
}
.footer__links-bridges, .footer__links-headway, .footer__links-psych-today, .footer__links-zencare {
  width: 120px;
  text-decoration: none;
}

.mailman {
  cursor: pointer;
}

.main__header {
  font-family: var(--font-third);
  font-size: 40px;
}
@media all and (min-width: 640px) {
  .main__header {
    font-size: 48px;
  }
}
@media all and (min-width: 640px) {
  .main__img-text {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-rows: auto;
    gap: 0 24px;
  }
}
.main__img-text .image-content img {
  width: 100%;
  height: auto;
}
.main__img-text .text-overlap {
  position: relative;
  top: 50%;
  margin-top: -50%;
  color: white;
}
@media all and (max-width: 639px) {
  .main__img-text .text-overlap {
    display: inline-block;
    width: 100%;
    padding-left: 12px;
  }
}
@media all and (min-width: 640px) {
  .main__img-text .text-overlap {
    position: absolute;
    width: 145%;
    top: 50%;
    left: -45%;
    margin: 0;
    padding: 20px;
    transform: translate(0, -50%);
  }
}
.main__img-text .text-overlap::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: var(--color-roman-coffee);
  opacity: 0.65;
}
.main__img-text .text-overlap__txt {
  position: relative;
  z-index: 1;
}
.main-section {
  min-height: var(--container-min-height);
  padding: 24px 20px;
}
@media all and (min-width: 640px) {
  .main-section {
    padding: 48px 20px 0;
  }
}
.main__text-copy {
  margin-top: 32px;
  font-size: 16px;
}
.main__text--emphasis {
  font-size: 18px;
  font-style: italic;
}
.main__text--footnote {
  font-style: italic;
}

/**
 Homepage styles
**/
.hero {
  background: var(--color-seashell-peach) url(../images/hero__background.png) center no-repeat;
  background-size: cover;
}
.hero--alt .hero__blurb {
  align-self: center;
  margin-top: unset;
  padding: 16px;
}
@media all and (max-width: 639px) {
  .hero--alt .hero__blurb {
    font-size: 14px;
  }
}
.hero--alt .hero__blurb::before {
  opacity: 1;
}
.hero--alt .hero__content-container {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto 1fr;
  gap: 24px 0;
  min-height: calc(100vh - 352px);
}
@media all and (max-width: 639px) {
  .hero--alt .hero__content-container {
    padding: 48px 24px 20px;
  }
}
@media all and (min-width: 640px) {
  .hero--alt .hero__content-container {
    min-height: calc(100vh - 183px);
  }
}
.hero--alt .hero__titles {
  place-content: center;
}
.hero__content, .hero__image {
  width: 100%;
}
.hero__blurb {
  position: relative;
  width: 80%;
  margin: 48px auto 0;
  padding: 8px;
  font-size: 18px;
}
.hero__blurb::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--color-early-dawn);
  opacity: 0.7;
}
@media all and (min-width: 640px) {
  .hero__blurb {
    margin-top: 48px;
    width: 45%;
  }
}
.hero__blurb-text {
  position: relative;
}
.hero__content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  position: relative;
}
.hero__content-container {
  position: relative;
  z-index: 2;
  padding: 94px 24px 64px;
  text-align: center;
}
@media all and (min-width: 640px) {
  .hero__content-container {
    padding-top: 64px;
  }
}
.hero__cta {
  margin-top: 64px;
  background-color: var(--color-early-dawn);
}
@media all and (min-width: 640px) {
  .hero__cta {
    margin-top: 24px;
  }
}
.hero__header {
  font-family: "Hatton Bold";
  font-size: 42px;
}
@media all and (min-width: 640px) {
  .hero__header {
    font-size: 80px;
  }
}
.hero__image {
  display: none;
  aspect-ratio: 1.75;
}
.hero__image-img {
  width: 100%;
  height: auto;
}
.hero__main {
  max-width: max-content;
  margin: 0 auto;
}
.hero__titles {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  gap: 12px 0;
  position: relative;
  margin-top: 20px;
  padding: 0 8px;
  font-family: "Hatton";
  font-size: 20px;
}
@media all and (min-width: 640px) {
  .hero__titles {
    flex-flow: row wrap;
    gap: unset;
    padding: 8px;
  }
  .hero__titles::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--color-early-dawn);
    opacity: 0.7;
  }
}
.hero__titles-diamond {
  position: relative;
  top: 2px;
  color: var(--color-rusty-nail);
  font-size: 14px;
}
.hero__titles p {
  position: relative;
}

.home .footer {
  background-color: var(--color-early-dawn);
  color: var(--color-rusty-nail);
}

.intro {
  padding: 16px 16px 48px;
  background-color: var(--color-early-dawn);
  color: var(--color-rusty-nail);
}
@media all and (min-width: 640px) {
  .intro__actions {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
  }
}
@media all and (max-width: 639px) {
  .intro__actions-cta {
    margin-top: 24px;
  }
}
.intro__actions .the-links {
  --outline-border-color: var(--color-rusty-nail);
  --sec-outline-border-color: var(--color-rusty-nail);
  --outline-text-color: var(--color-rusty-nail);
  --sec-outline-text-color: var(--color-rusty-nail);
}
@media all and (min-width: 640px) {
  .intro__block {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-rows: auto;
    gap: 0 24px;
  }
}
.intro__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}
.intro__quote {
  position: relative;
  align-self: center;
  font-family: var(--font-third);
  font-size: 40px;
}
@media all and (min-width: 640px) {
  .intro__quote {
    font-size: 48px;
  }
}
.intro__quote-break {
  display: block;
}
.intro__quote-line {
  position: relative;
  z-index: 1;
}
.intro__quote-symbol {
  display: none;
  height: 24px;
  font-size: 48px;
}
.intro__quote-symbol:first-child {
  margin-bottom: 16px;
}
.intro__quote-symbol:last-child {
  margin-top: 8px;
}
.intro__quote-text {
  display: inline-block;
  width: 100%;
  padding: 12px;
}
