@import url("fontawesome-all.min.css");


html {
    font-size: 16px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 3px solid #910101;
	outline-offset: 3px;
}


.fade-in-section {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.7s ease, transform 0.7s ease;
	will-change: opacity, transform;
}

.fade-in-section.is-visible {
	opacity: 1;
	transform: translateY(0);
}


@media (prefers-reduced-motion: reduce) {
	.fade-in-section {
		opacity: 1;
		transform: none;
		transition: none;
	}
}



body {
    font-family: "Lora", serif; /*"Libre Baskerville", serif */
    background-color: #eeeeee; /* Pref: #eeeeee */
    color: #313131; /* #3c3c3c */
}

.skip-link {
	position: absolute;
	top: -60px;
	left: 1rem;
	background: #0f1765;
	color: white;
	padding: 0.6rem 1rem;
	border-radius: 6px;
	text-decoration: none;
	transition: top 0.2s ease;
	z-index: 10000;
}

.skip-link:focus {
	top: 1rem;
}

#main {
    margin-bottom: 0;
}

hr {
    max-width: 80%;
    border:solid #b5b5b5 1px;
}

.content-section {
    margin: 30px;
}


/* Mobile first Nav-bar*/
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  position: relative;
  z-index: 1001;
}

.logo {
  display: block;
  height: auto;
  max-width: 200px;
}


.menu-toggle {
  position: relative;
  z-index: 1002;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #232323;
}











/* Hidden by default everywhere */
.navbar-fill-logo {
	display: none;
	width: 70px;
	height: auto;
	margin: 0 auto;
}

#navbar-fill {
	display: none;
}

@media screen and (max-width: 966px) {
	.nav-overlay.open #navbar-fill {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 1rem 0;
	}

	.navbar-fill-logo {
		display: block;
		width: 70px;
		height: auto;
		margin: 0 auto;
	}
}

@media screen and (min-width: 967px) {
	#navbar-fill,
	.navbar-fill-logo {
		display: none !important;
	}
}











.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.nav-overlay.open {
  display: flex;
}

.site-nav {
  background: #eeeeee;
  padding: 2rem 2.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid #910101;
  max-width: 90vw;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}


.nav-list li + li {
  margin-top: 0.5rem; /*1.25rem;*/
}

.nav-list a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  color: #0f1765; /*#1e1d1d;*/
  text-decoration: none;
  font-weight: 600;
}

/* tablet/desktop */
@media (min-width: 967px) {
    .menu-toggle {
        display: none;
    }

    .nav-overlay {
        position: static;
        inset: auto;
        display: block;
        background: transparent;
        z-index: auto;
        margin: 0 auto;
    }

    .site-nav {
        display: block;
        position: static;
        width: auto;
        background: transparent;
        border: none;
        padding: 0;
        text-align: left;
        box-shadow: none;
    }

    .nav-list {
        display: flex;
        gap: 0.2rem;
        align-items: center;
    }

    .nav-list li + li {
        margin-top: 0;
    }

    .nav-list a {
        font-size: 1.1rem;
        transition: color 0.14s ease;
    }

    .nav-list a:hover {
        color: #910101;
    }
}

@media (min-width: 1075px){
    #main {
        margin-bottom: -15em;
    }
}

/* desktop */
@media (min-width: 1200px){

    .nav-list {
        gap: 2rem
    }

    .nav-list a {
        font-size: 1.2rem;
    }
}

/* ---------------------------------------------------- */
/* ------------------ Hero section ----------------- */
/* ---------------------------------------------------- */

.container {
    margin: 10px 0 0 0; 
}

#intro-header {
    color: #910101;
    display: block;
    margin: 0em auto 0.5em auto;
    text-align: center;
    font-size: 1.8em;
}

#intro-paragraph {
    display: block;
    margin: 0em auto 0em auto;
    text-align: center;
    max-width: 48em;
}


/* ---------------------------------------------------- */
/* ---------------------- Services -------------------- */
/* ---------------------------------------------------- */

#service-header {
  color: #0f1765;
  margin: 0 auto 0.5em;
  text-align: center;
  font-size: 1.8em;
}

#service-intro-p {
  margin: 0 auto 2rem;
  text-align: center;
  max-width: 48em;
  padding: 0 1rem;
  color: #333333;
}

/* mobile-first layout */
#open-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
  width: 100%;
  max-width: 1200px;
  margin: 1em auto 5em auto;
  padding: 0 0rem;
}

.service-listing {
  display: flex;
  flex-direction: column;
  background: #ffffff; /*#ffffff;*/
  border-radius: 12px;
  padding: 2rem 1rem;
  margin: 0;
  min-height: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.service-listing > img {
  display: block;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 10px;
  transition: transform 0.14s ease, outline 0.14s ease;
}

.service-listing > img:hover {
  transform: scale(1.05);
  outline: 3px solid #910101;
}

.service-listing > h4 {
  width: max-content;
  margin: 1rem auto;
  font-size: 1.4em;
  font-weight: 800;
  color: #910101;
}

.service-listing > .service-desc {
  width: 100%;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  padding: 0;
  line-height: 1.6;
  text-align: left;
}

#open-services > .service-listing > ul {
  list-style-type: none;
  width: max-content;
  margin: 0 auto 1.5rem;
  padding: 0;
  font-weight: 600;
}

#open-services > .service-listing > ul > li {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.learn-more {
  margin-top: auto;
}

.service-listing > .learn-more > button {
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  padding: 8px 24px;
  font-size: 1.05em;
  color: #f4f4f4;
  background-color: #0f1765;
  border: solid #1e32e0 4px;
  border-radius: 12px;
  font-family: inherit;
  transition: transform 0.14s ease;
  cursor: pointer;
}

.service-listing > .learn-more > button:hover {
  transform: scale(1.05);
}

.expand-content[hidden] {
	display: none;
}

.expand-content {
	margin-top: 2rem;
}

.expand-content.open {
	display: block;
}

/* slightly roomier phones / small tablets */
@media (min-width: 480px) {
  .service-listing {
    padding: 1.25rem;
  }
}

/* tablet */
@media (min-width: 768px) {
  #open-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

/* desktop */
@media (min-width: 1024px) {
  #open-services {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .service-listing {
    padding: 1.5rem;
  }

  #subjects-listing > .learn-more > button,
  #college-prep-listing > .learn-more > button {
    border: solid #5e0202 4px;
    background-color: #910101;
    color: #eeeeee;
  }
}



/* --------------------------------------------------------- */
/* -------------------- Pricing Section -------------------- */
/* --------------------------------------------------------- */

#pricing-header {
  color: #910101;
  margin: 0 auto 0.5em;
  text-align: center;
  font-size: 1.8em;
}

#pricing-tiers,
#pricing-tiers-nonstandard {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin: 20px auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.tier-card {
    /*border: 3px solid #0f1765;*/
    border: 2px solid #0f1765;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    overflow: hidden;
    transition: transform 0.14s ease,
                border-color 0.14s ease,
                font-weight 0.14s ease;
    font-weight: 500;
    box-sizing: border-box;
}

.tier-card:hover {
    transform: scale(1.05) translateY(-4px);
    font-weight: 600;
}

.tier-card .tier-cap-fill,
.tier-card .tier-card-content,
.tier-card .cost-val-div {
    transition: transform 0.2s ease,
                background-color 0.14s ease,
                color 0.14s ease,
                font-weight 0.14s ease;
}

.tier-card:hover .tier-cap-fill {
    background-color: #0f1765;
    color: #eeeeee;
}

.tier-card:hover .tier-card-content {
    /*background-color: #910101;
    color: #eeeeee;*/

    background-color: #f8f8fb;
    color: #222222;
}

.tier-card:hover .cost-val-div {
    background-color: #a7efb0;
    color: #eeeeee;
    transform: scale(1.05);
    font-weight: 700;
}

.tier-cap-fill {
    width: 100%;
    /*background-color: #bfc2dd;
    color: #292929;*/
    background-color: #eedcdc;
    color: #2a2929;
    margin: 0;
    padding: 10px 0;
    transition: background-color 0.14s ease;
    box-sizing: border-box;
}

.tier-cap-fill:hover {
    background-color: #0f1765;
}

.tier-category-txt {
    text-align: center;
    /*
    font-size: 1.15em;
    font-weight: 500;
    margin: 0 0 10px 0;*/
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0;
}

.description {
    /*background-color: #dedcdc;*/
    background-color: #efeff3;
    padding: 10px 10px;
}

.description > p {
    font-size: 0.95em;
    margin: 0;
    line-height: 1.5;
}

.tier-card-content {
    width: 100%;
    /*background-color: #dab5b5;*/
    background-color: #f8f8fb;
    color: #222222;
    margin: 0;
    padding: 5px 0 5px 0;
    font-size: 0.9em;
    line-height: 1.45;
    font-weight: 600;
    flex-grow: 1;
    box-sizing: border-box;
}

.tier-card > .tier-card-content > ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.tier-card > .tier-card-content > ul > li {
    margin: 10px 0 0 0;
    padding: 0 15px 0 15px;
    border-bottom: 1px solid #767676;
}

.tier-card > .tier-card-content > ul > li#no-bottom-border {
    border-bottom: none;
}

.tier-card > .tier-card-content > ul > ul {
    list-style: none;
    padding: 0 10px 0 30px;
    margin: 0;
}

.tier-card > .tier-card-content > ul > ul > li {
    margin-top: 5px;
}

.cost-val-div {
    margin-top: auto;
    padding: 10px 0;
    /*background-color: #eeeeee;*/
    background-color: #ffffff;
    border-top: 1px solid #d8d8df;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.cost-val-text {
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    /*font-weight: 900;
    font-size: 1.35em;*/
    font-size: 1.55rem;
    font-weight: 800;
    color: #0f1765;
}

.pricing-learn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin: 50px auto;
    padding: 0 1rem;
    box-sizing: border-box;
    font-family: inherit;
}

.pricing-learn-button {
    width: 100%;
    max-width: 320px;
    margin: 0;
}

.pricing-learn-button > #group-rate-learn,
.pricing-learn-button > #nontrad-learn {
    width: 100%;
    background-color: #0f1765;
    border: 3px #1e32e0 solid;
    color: #eeeeee;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1em;
    font-family: "Lora", serif;
    letter-spacing: 0.2pt;
    border-radius: 10px;
    transition: transform 0.14s ease,
                background-color 0.14s ease,
                border-color 0.14s ease;
    box-sizing: border-box;
}

#group-rate-learn:hover,
#nontrad-learn:hover {
    transform: scale(1.05);
    background-color: #910101;
    border-color: #5e0202;
}

/* tablet and up: buttons side by side */
@media (min-width: 700px) {
    .pricing-learn {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        padding: 0;
    }

    .pricing-learn-button {
        width: auto;
        max-width: none;
    }

    .pricing-learn-button > #group-rate-learn,
    .pricing-learn-button > #nontrad-learn {
        width: auto;
    }
}

#pricing-tiers,
#pricing-tiers-nonstandard {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin: 20px auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.tier-card {
    width: 100%;
    max-width: 300px;
}

/* desktop */
@media (min-width: 1024px) {
    #pricing-tiers,
    #pricing-tiers-nonstandard {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 1.25rem;
        width: 100%;
        max-width: 1200px;
        margin: 20px auto;
        padding: 0 1rem;
    }

    .tier-card {
        width: 300px;
        max-width: 300px;
    }
}

#pricing-tiers-nonstandard.hidden-tiers {
  display: none;
}

#pricing-tiers-nonstandard.hidden-tiers.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  margin: 20px auto;
  padding: 1.5rem 1rem 0 1rem;
  border-top: 1px solid #0f1765;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  #pricing-tiers-nonstandard.hidden-tiers.open {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 1.25rem;
    max-width: 1200px;
    padding: 1.5rem 1rem 0 1rem;
  }
}





/* --------------------------------------------------------- */
/* -------------------- Resources Section ------------------ */
/* --------------------------------------------------------- */

#ed-fin-header {
  color: #0f1765;
  margin: 0 auto 0.5em;
  text-align: center;
  font-size: 1.8em;
}

.section-bridge {
  max-width: 52rem;
  margin: 0 auto 2rem;
  padding: 0 1rem;
  text-align: center;
  line-height: 1.6;
  color: #333333;
  font-size: 1rem;
}

#scholarship-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.finance-card {
  background: #f8f8fb;
  border: 2px solid #d9dce8;
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.finance-card h4 {
  margin: 0 0 1rem 0;
  color: #910101;
  font-size: 1.25rem;
}

.finance-card p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.finance-card ul {
  margin: 0;
  padding-left: 1.25rem;
}

.finance-card li + li {
  margin-top: 0.75rem;
}

.finance-card a {
  color: #0f1765;
  font-weight: 600;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

.resource-note {
  color: #910101;
  font-style: italic;
  font-weight: 600;
  font-size: 0.92rem;
  margin-right: 0.3rem;
}

/* 529 Tool */
.plan529-cap {
  height: 10px;
  margin-top: 1rem;
  background: linear-gradient(90deg, #0f1765, #910101);
  border-radius: 10px 10px 0 0;
}

.plan529-content {
  background: #fff1f1;
  border: 2px solid #d9dce8;
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 1.25rem;
}

#plan529-title {
  margin: 0 0 0.75rem 0;
  color: #0f1765;
  font-size: 1.25rem;
  text-align: center;
}

.plan529-text,
.plan529-note,
.plan529-disclaimer {
  line-height: 1.6;
}

.plan529-note {
  margin-top: 1rem;
  color: #242424;
  font-size: 0.95rem;
}

.plan529-disclaimer {
  margin-top: 0.75rem;
  color: #666666;
  font-size: 0.92rem;
}

.plan529-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1rem;
}

#state529 {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #c7cada;
  border-radius: 10px;
  background: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  color: #313131;
}

#state529:focus {
  outline: none;
  border-color: #0f1765;
  box-shadow: 0 0 0 3px rgba(15, 23, 101, 0.12);
}

#open529Link {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 3px solid #1e32e0;
  border-radius: 10px;
  background: #0f1765;
  color: #eeeeee;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.14s ease,
              background-color 0.14s ease,
              border-color 0.14s ease;
}

#open529Link:hover {
  transform: scale(1.03);
  background-color: #910101;
  border-color: #5e0202;
}

/* screen-reader helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* tablet / desktop */
@media (min-width: 680px) {
  #scholarship-content {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }

  .finance-card,
  .plan529-content {
    padding: 1.5rem;
  }

  .plan529-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.85rem;
    align-items: end;
  }

  #open529Link {
    width: auto;
    min-width: 150px;
  }
}


/* --------------------------------------------------------- */
/* ------------------------ About Us ----------------------- */
/* --------------------------------------------------------- */


#about-us-header {
  color: #910101;
  margin: 0 auto 0.5em;
  text-align: center;
  font-size: 1.8em;
}


#short-description,
#long-description {
	transition: opacity 0.3s ease;
}

/* Mobile default */
@media screen and (max-width: 736px) {
    button.about-us-expand {
        display: block;
        width: fit-content;
        margin: 0 auto;
        background-color: #0f1765;
        border: 3px solid #1e32e0;
        border-radius: 10px;
        padding: 1em 2em;
        color: #eeeeee;
        font-family: inherit;
        font-weight: 600;
        font-size: 1rem;
    }

	#short-description {
		display: block;
        
	}

	#long-description {
		display: none;
        
	}

	.about-us-expand {
		display: inline-block;
	}
}

/* Tablet/Desktop */
@media screen and (min-width: 737px) {
	#short-description {
		display: none;
	}

	#long-description {
		display: block;
        max-width: 60em;
        margin: 0 auto;
        
	}

	.about-us-expand {
		display: none;
	}
}



/* --------------------------------------------------------- */
/* ---------------------- Consultation --------------------- */
/* --------------------------------------------------------- */


#consult-header {
    color: #0f1765;
    margin: 0 auto 0.5em;
    text-align: center;
    font-size: 1.8em;
}


#consult-description {
  max-width: 52rem;
  margin: 0 auto 2rem;
  padding: 0 1rem;
  text-align: center;
  line-height: 1.6;
  color: #333333;
  font-size: 1rem;
}






/* --------------------------------------------------------- */
/* ------------------------ Footer ------------------------- */
/* --------------------------------------------------------- */



#footer {
  background-color: #eeeeee;
  color: #0f1765;
  margin: 0 0 5em 0;
  padding: 0rem 1.5rem 0 1.5rem;
  text-align: center;
}

#footer img {
    max-width: 10em;
}

/* contact block */
#contact-info {
  margin-bottom: 1.5rem;
}

.contact {
  margin: 0.25rem 0;
  font-size: 0.95rem;
}

/* brand styling */
#ns-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

#northmind {
  color: #0f1765;
}

#studies {
  color: #910101;
}

/* icons */
.icons {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.icons li {
  display: inline-block;
}

.icons a {
  color: #000000;
  font-size: 1.2rem;
  transition: transform 0.14s ease, color 0.14s ease;
}

.icons a:hover {
  color: #910101;
  transform: scale(1.15);
}

/* copyright */
.copyright {
  list-style: none;
  padding: 0;
  display: block;
  width:fit-content;
  margin: 1.5rem auto 0 auto;
  font-size: 0.85rem;
  color: #494949;
}

.legal-stuff,
#legal-div > a {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    gap: 1em;
    justify-content: space-around;
    color: #666666;
    text-decoration: none;
}

/* desktop layout */
@media (min-width: 768px) {
  #footer {
    text-align: left;
  }

  #footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #contact-info {
    text-align: center;
  }
}







